diff --git a/README.md b/README.md index f44f2032c..c0f1012b2 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,15 @@ # The 2023 r/place Atlas -The 2023 r/place Atlas is a project aiming to chart all the artworks created during the r/place April Fools event on Reddit in 2023. It is made with information to each artwork of the canvas provided by the community. +The 2023 r/place Atlas is an interactive map aiming to chart all the artworks created during the r/place April Fools event on Reddit in 2023. It is made with information to each artwork of the canvas provided by the community. -This project was established by Roland Rytz for the event in 2017, and further developed and maintained by the Place Atlas team and contributors. +This project was established by Roland Rytz for the event in 2017, and further developed and maintained by the [Place Atlas Initiative](https://place-atlas.stefanocoding.me) and [contributors](https://github.com/placeAtlas/atlas-2023/graphs/contributors). + +Read more about the project from [the announcement on Reddit](https://www.reddit.com/r/placeAtlas2023/comments/154z3q4). This project is licensed under the [GNU Affero General Public License v3.0](LICENSE). -You can check out the website by visiting [2023.place-atlas.stefanocoding.me](https://2023.place-atlas.stefanocoding.me/). If you want to keep distance from GitHub, you may visit [r/placeAtlas2023](https://www.reddit.com/r/placeAtlas2023/). +You can check out the website by visiting [2023.place-atlas.stefanocoding.me](https://2023.place-atlas.stefanocoding.me/). The subreddit, [r/placeAtlas2023](https://www.reddit.com/r/placeAtlas2023/), is available for communications via Reddit. ## Contributing @@ -26,11 +28,14 @@ Please read [CONTRIBUTING.md](CONTRIBUTING.md) to learn how to submit a new entr ## Contributors +> [!NOTE] +> For more credits, including entry contributors, please see [the Credits sections on the About page](https://2023.place-atlas.stefanocoding.me/about#credits). + [![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat)](#contributors) -Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): +Many thanks to these wonderful people for contributing on the scope of this repository. ([emoji key](https://allcontributors.org/docs/en/emoji-key)). diff --git a/netlify.toml b/netlify.toml index d90c58bb9..8839807b7 100644 --- a/netlify.toml +++ b/netlify.toml @@ -9,3 +9,7 @@ [context.deploy-preview] command = "FILE=tools/ci/build-preview.sh; rm -rf dist/; if [ -f $FILE ]; then bash $FILE; else cp -r web/ dist/; fi" ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF data/patches/ web/ tools/ .parcelrc netlify.toml package-lock.json package.json postcss.config.js" + +[context.branch-deploy] + command = "FILE=tools/ci/build-preview.sh; rm -rf dist/; if [ -f $FILE ]; then bash $FILE; else cp -r web/ dist/; fi" + ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF data/patches/ web/ tools/ .parcelrc netlify.toml package-lock.json package.json postcss.config.js" diff --git a/package.json b/package.json index 9fc9651ba..4c12cf83d 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,8 @@ }, "parcelIgnore": [ "sw.js", - "_img/.+" + "_img/.+", + "atlas.json" ], "browserslist": [ ">= 0.5%", diff --git a/tools/extend_entry_times.py b/tools/extend_entry_times.py index 497b8da7d..ed1c14b19 100644 --- a/tools/extend_entry_times.py +++ b/tools/extend_entry_times.py @@ -18,7 +18,6 @@ if len(pre_extend_times) == 0: pre_extend_times.append(post_extend_time - 1) pre_extend_times.append(post_extend_time - 2) -post_extend_time = str(post_extend_time) while not os.path.exists('README.md'): os.chdir('..') @@ -40,29 +39,72 @@ def per_line_entries(entries: list, file: TextIOWrapper): def extend_time_key(items): for key, value in list(items.items()): + old_key = key + if key == '': - del items[key] - items[f'{pre_extend_times[0]}-{post_extend_time}'] = value - continue + key = f'{pre_extend_times[0]}-{post_extend_time}' elif key == '250' or key == '254' or key == '254-258': - del items[key] - items[f'250-258'] = value - continue + key = '250-258' times = key.split(', ') - for time in times: + new_times = [] + to_add_tfc = 0 + + for time in times.copy(): + + # Parse keys for analysis + variation = '' + start_time = None + end_time = None + if ':' in time: + variation = time[:time.find(':')] + time = time[time.find(':') + 1:] + elif time.isalpha(): + variation = time + time = '' if '-' in time: - end_time = time[time.find('-') + 1:] - else: - end_time = time - if int(end_time) in pre_extend_times: - if '-' in key: - new_key = key.replace(end_time, post_extend_time) + start_time = int(time[:time.find('-')]) + end_time = int(time[time.find('-') + 1:]) + elif time: + start_time = end_time = int(time) + + # Extend default canvas periods + if end_time in pre_extend_times: + end_time = post_extend_time + + # Rebuild period string before adding it + if start_time and end_time: + if start_time == end_time: + time = str(start_time) else: - new_key = key.replace(end_time, f'{key}-{post_extend_time}') - del items[key] - items[new_key] = value - break + time = f'{start_time}-{end_time}' + else: + time = '' + + if time == '': + time = variation + else: + if variation: + time = f'{variation}:{time}' + + new_times.append(time) + + # Extend default canvas to TFC + if variation == 'T': + to_add_tfc = -1 + if variation == '' and start_time <= 250 and 250 <= end_time: + if to_add_tfc == 0: + to_add_tfc = 1 + + if to_add_tfc == 1: + new_times.append('T') + + new_times = list(filter(lambda x: x, list(dict.fromkeys(new_times)))) + key = ', '.join(new_times) + + if old_key != key: + del items[old_key] + items[key] = value for entry in atlas_data: if not entry['id'] in exclude_extend: diff --git a/tools/unused/smallifier.html b/tools/unused/smallifier.html index 53aa22792..78359a015 100644 --- a/tools/unused/smallifier.html +++ b/tools/unused/smallifier.html @@ -1,8 +1,7 @@ - diff --git a/web/_css/style.css b/web/_css/style.css index 93e383da2..5883acc1e 100644 --- a/web/_css/style.css +++ b/web/_css/style.css @@ -1,7 +1,7 @@ /*! * The 2023 r/place Atlas * Copyright (c) 2017 Roland Rytz - * Copyright (c) 2023 Place Atlas contributors + * Copyright (c) 2023 Place Atlas Initiative and contributors * Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) */ @@ -266,12 +266,12 @@ body[data-init-done] .listTransitioning #innerContainer { } #variantControls { - flex: 1 0 auto; + flex: 2 0 auto; } #timeControls { position: relative; - flex: 6 0 300px; + flex: 12 0 300px; } #bottomBar.no-time-slider #timeControls { @@ -448,13 +448,25 @@ body:not([data-dev]) .show-only-on-dev { display: none !important } +#objectsList, +#offcanvasList, +#offcanvasDraw, +#closeObjectsListButton { + margin-top: var(--global-top-padding); +} + +.copyleft { + display: inline-block; + transform: rotateY(180deg); +} + /* about.html */ -#credits a { +#entry-contributors-wrapper a { text-decoration: none; } -#credits a:hover { +#entry-contributors-wrapper a:hover { text-decoration: underline; } diff --git a/web/_headers b/web/_headers index 881b275a5..ed8d9f92c 100644 --- a/web/_headers +++ b/web/_headers @@ -1,8 +1,21 @@ /* Access-Control-Allow-Origin: * - -/_img/canvas/*/*.png - cache-control: public, max-age=604800 + +# Hashed resources: 1 year and immutable + +/_js/* + Cache-Control: public, immutable, max-age=31536000 + +/_css/* + Cache-Control: public, immutable, max-age=31536000 + +# Canvas images: 1 year + +/_img/canvas/* + Cache-Control: public, max-age=31536000 /_img/canvas/*.png - cache-control: public, max-age=604800 + Cache-Control: public, max-age=31536000 + +/_img/canvas/*/*.png + Cache-Control: public, max-age=31536000 diff --git a/web/_img/canvas/tfc/base.png b/web/_img/canvas/tfc/base.png new file mode 100644 index 000000000..de91a5a8a Binary files /dev/null and b/web/_img/canvas/tfc/base.png differ diff --git a/web/_js/about.js b/web/_js/about.js index 65a148488..2131a0b2c 100644 --- a/web/_js/about.js +++ b/web/_js/about.js @@ -1,11 +1,11 @@ /*! * The 2023 r/place Atlas * Copyright (c) 2017 Roland Rytz - * Copyright (c) 2023 Place Atlas contributors + * Copyright (c) 2023 Place Atlas Initiative and contributors * Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) */ -const contributorsEl = document.querySelector('#contributors-wrapper') +const contributorsEl = document.querySelector('#entry-contributors-wrapper') // const gitHubEl = document.createElement("i") @@ -34,6 +34,8 @@ fetch('all-authors.txt') userEl.href = 'https://reddit.com/user/' + contributor userEl.textContent = contributor } + userEl.target = '_blank' + userEl.rel = 'noreferrer' contributorsEl.appendChild(userEl) contributorsEl.appendChild(document.createTextNode(' ')) } diff --git a/web/_js/config.js b/web/_js/config.js index b3c7800db..ba2534545 100644 --- a/web/_js/config.js +++ b/web/_js/config.js @@ -314,6 +314,22 @@ const variationsConfig = { ], icon: '' }, + tfc: { + name: "The Final Clean", + code: "T", + default: 0, + drawablePeriods: [0, 0], + drawableRegions: [ + [[0, 0], [-1500, -1000, 1499, 999]], + ], + versions: [ + { + timestamp: "Final", + url: "./_img/canvas/tfc/base.png", + } + ], + icon: '' + } } window.variationsConfig = variationsConfig @@ -328,7 +344,7 @@ window.useNumericalId = useNumericalId console.info(`%cThe 2023 r/place Atlas %cCopyright (c) 2017 Roland Rytz -Copyright (c) 2023 Place Atlas contributors +Copyright (c) 2023 Place Atlas Initiative and contributors Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) https://2023.place-atlas.stefanocoding.me/ diff --git a/web/_js/main/atlas.js b/web/_js/main/atlas.js index e840ce37b..ec00a635d 100644 --- a/web/_js/main/atlas.js +++ b/web/_js/main/atlas.js @@ -1,7 +1,7 @@ /*! * The 2023 r/place Atlas * Copyright (c) 2017 Roland Rytz - * Copyright (c) 2023 Place Atlas contributors + * Copyright (c) 2023 Place Atlas Initiative and contributors * Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) */ diff --git a/web/_js/main/draw.js b/web/_js/main/draw.js index 808641bf8..68befb673 100644 --- a/web/_js/main/draw.js +++ b/web/_js/main/draw.js @@ -1,7 +1,7 @@ /*! * The 2023 r/place Atlas * Copyright (c) 2017 Roland Rytz - * Copyright (c) 2023 Place Atlas contributors + * Copyright (c) 2023 Place Atlas Initiative and contributors * Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) */ diff --git a/web/_js/main/infoblock.js b/web/_js/main/infoblock.js index 496069621..0540aceae 100644 --- a/web/_js/main/infoblock.js +++ b/web/_js/main/infoblock.js @@ -1,7 +1,7 @@ /*! * The 2023 r/place Atlas * Copyright (c) 2017 Roland Rytz - * Copyright (c) 2023 Place Atlas contributors + * Copyright (c) 2023 Place Atlas Initiative and contributors * Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) */ diff --git a/web/_js/main/main.js b/web/_js/main/main.js index 180b3cdef..8cbf88139 100644 --- a/web/_js/main/main.js +++ b/web/_js/main/main.js @@ -1,7 +1,7 @@ /*! * The 2023 r/place Atlas * Copyright (c) 2017 Roland Rytz - * Copyright (c) 2023 Place Atlas contributors + * Copyright (c) 2023 Place Atlas Initiative and contributors * Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) */ @@ -100,6 +100,17 @@ async function init() { } } + // Experimental: TemplateManager support + // Add a .json file of TemplateManager on the "template" URL param. + // e.g. ?template=https://osu.place/e/osuplace2023.json + // CORS bypass is required (e.g. a proxy, CORS Anywhere). + if (params.get("template")) { + const [ templateDatas ] = await loadTemplateData(params.get("template")) + const templateLayers = await loadTemplateImages(templateDatas) + additionalLayers.push(...templateLayers) + updateAdditionalLayer(additionalLayers) + } + if (mode === "about") window.location.replace("./about.html") // For Reviewing Reddit Changes @@ -520,18 +531,31 @@ function generateAtlasAll(atlas = atlasAll) { return newAtlas } -// Announcement system +// Notice system + +const noticeEl = document.querySelector("#headerNotice") +const noticeButton = noticeEl.querySelector('[role=button]') +const noticeText = noticeEl.querySelector('p').textContent.trim() -const announcementEl = document.querySelector("#headerAnnouncement") -const announcementButton = announcementEl.querySelector('[role=button]') -const announcementText = announcementEl.querySelector('p').textContent.trim() +const resizeGlobalTopPadding = () => { + document.body.style.setProperty("--global-top-padding", noticeEl.offsetHeight + 'px') +} + +if (window.localStorage.getItem('announcement-closed')) { + window.localStorage.setItem('closed-notice', window.localStorage.getItem('announcement-closed')) + window.localStorage.removeItem('announcement-closed') +} -if (announcementText && announcementText !== window.localStorage.getItem('announcement-closed')) { - announcementButton.click() - document.querySelector('#objectsList').style.marginTop = '2.8rem' +if (noticeText && noticeText !== window.localStorage.getItem('closed-notice')) { + noticeButton.click() + setTimeout(() => { + document.body.style.setProperty("--global-top-padding", noticeEl.offsetHeight + 'px') + }, 500) + window.addEventListener('resize', resizeGlobalTopPadding) } -announcementEl.querySelector('[role=button]').addEventListener('click', () => { - window.localStorage.setItem('announcement-closed', announcementText) - document.querySelector('#objectsList').style.marginTop = '0' +noticeEl.querySelector('[role=button]').addEventListener('click', () => { + window.localStorage.setItem('closed-notice', noticeText) + window.removeEventListener('resize', resizeGlobalTopPadding) + document.body.style.setProperty("--global-top-padding", null) }) diff --git a/web/_js/main/overlap.js b/web/_js/main/overlap.js index c53ae5817..d44af9e3f 100644 --- a/web/_js/main/overlap.js +++ b/web/_js/main/overlap.js @@ -1,7 +1,7 @@ /*! * The 2023 r/place Atlas * Copyright (c) 2017 Roland Rytz - * Copyright (c) 2023 Place Atlas contributors + * Copyright (c) 2023 Place Atlas Initiative and contributors * Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) */ diff --git a/web/_js/main/stats.js b/web/_js/main/stats.js index badb78bcd..42717ef7e 100644 --- a/web/_js/main/stats.js +++ b/web/_js/main/stats.js @@ -1,7 +1,7 @@ /*! * The 2023 r/place Atlas * Copyright (c) 2017 Roland Rytz - * Copyright (c) 2023 Place Atlas contributors + * Copyright (c) 2023 Place Atlas Initiative and contributors * Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) */ diff --git a/web/_js/main/time.js b/web/_js/main/time.js index d4f12ed23..9ddb01e4f 100644 --- a/web/_js/main/time.js +++ b/web/_js/main/time.js @@ -1,7 +1,7 @@ /*! * The 2023 r/place Atlas * Copyright (c) 2017 Roland Rytz - * Copyright (c) 2023 Place Atlas contributors + * Copyright (c) 2023 Place Atlas Initiative and contributors * Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) */ @@ -35,6 +35,9 @@ window.currentPeriod = currentPeriod let atlasDisplay = {} window.atlasDisplay = atlasDisplay +const additionalLayers = [] +const additionalLayerCanvas = document.createElement('canvas') + // SETUP if (variationsConfig[currentVariation].versions.length === 1) bottomBar.classList.add('no-time-slider') @@ -131,13 +134,21 @@ async function updateBackground(newPeriod = currentPeriod, newVariation = curren } })) - if (currentUpdateIndex !== myUpdateIndex) { + if (myAbortController.signal.aborted || newPeriod !== currentPeriod || newVariation !== currentVariation || currentUpdateIndex !== myUpdateIndex) { return false } - + for (const imageLayer of layers) { context.drawImage(imageLayer, 0, 0) } + + context.drawImage(additionalLayerCanvas, 0, 0) + + if (myAbortController.signal.aborted || newPeriod !== currentPeriod || newVariation !== currentVariation || currentUpdateIndex !== myUpdateIndex) { + return false + } + + if (currentUpdateIndex !== myUpdateIndex) return [configObject, newPeriod, newVariation] const blob = await new Promise(resolve => canvas.toBlob(resolve)) canvasUrl = URL.createObjectURL(blob) image.src = canvasUrl @@ -402,3 +413,24 @@ function getNearestPeriod(entry, targetPeriod, targetVariation) { return [ nearestPeriod, nearestVariation, nearestKey ] } + +const updateAdditionalLayer = () => { + const layers = additionalLayers + const canvas = additionalLayerCanvas + const context = additionalLayerCanvas.getContext('2d') + canvas.width = 0 + canvas.height = 0 + + + for (const layer of layers) { + if (!layer.imageLayer) continue + canvas.width = Math.max(layer.x + layer.imageLayer.width, canvas.width) + canvas.height = Math.max(layer.y + layer.imageLayer.height, canvas.height) + } + + for (const layer of layers) { + if (!layer.imageLayer) continue + context.drawImage(layer.imageLayer, layer.x, layer.y) + console.log(layer.imageLayer) + } +} diff --git a/web/_js/main/view.js b/web/_js/main/view.js index e51fa062c..5b7b230ab 100644 --- a/web/_js/main/view.js +++ b/web/_js/main/view.js @@ -1,7 +1,7 @@ /*! * The 2023 r/place Atlas * Copyright (c) 2017 Roland Rytz - * Copyright (c) 2023 Place Atlas contributors + * Copyright (c) 2023 Place Atlas Initiative and contributors * Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt) */ @@ -137,7 +137,7 @@ offcanvasList.addEventListener('hidden.bs.offcanvas', e => { closeObjectsListButton.addEventListener("click", clearObjectsList) -bottomBar.addEventListener("mouseover", () => { +container.addEventListener("mouseleave", () => { if (!fixed) clearObjectsList() }) @@ -595,7 +595,7 @@ function updateHovering(e, tapped) { const pos = updateCoordsDisplay(e) if (!(pos[0] <= canvasSize.x + canvasOffset.x + 200 && pos[0] >= canvasOffset.x - 200 && pos[1] <= canvasSize.y + canvasOffset.y + 200 && pos[1] >= canvasOffset.x - 200)) return - + let newHovered = [] for (const entry of Object.values(atlasDisplay)) { if (pointIsInPolygon(pos, entry.path)) newHovered.push(entry) @@ -787,7 +787,7 @@ function initGlobal() { } }) - document.addEventListener('timeupdate', event => { + document.addEventListener('timeupdate', () => { updateHash() }) } @@ -837,3 +837,77 @@ function initViewGlobal() { drawButton.href = "./?mode=draw" + formatHash(null, event.detail.period, event.detail.variation) }) } + + +async function loadTemplateData(initUrl, datas, blacklistUrls, level = 0) { + datas ??= {} + blacklistUrls ??= new Set() + + if (datas[initUrl] || blacklistUrls.has(initUrl)) return [ datas, blacklistUrls ] + + datas[initUrl] = {} + + try { + const data = await (await fetch(initUrl)).json() + datas[initUrl] = data + for (const blacklisted of data?.blacklist) { + blacklistUrls.add(blacklisted.url) + } + await Promise.all(data?.whitelist.map(async wl => { + const [ wlDatas, wlBlacklistUrls ] = await loadTemplateData(wl.url, datas, blacklistUrls, level + 1) + Object.assign(datas, wlDatas) + blacklistUrls.add(...wlBlacklistUrls) + })) + } catch (e) {} + + return [ datas, [...blacklistUrls] ] +} + +async function loadTemplateImages(datas) { + + const templates = [] + + for (const data of Object.values(datas)) { + if (!data?.templates) continue + for (const template of data?.templates) { + templates.push(template) + } + } + + await Promise.all(templates.map(async (template, i) => { + + if (!template.sources) return + + for (const source of template.sources) { + try { + const sourceResponse = await (await fetch(source)).blob() + template.blob = URL.createObjectURL(sourceResponse) + break + } catch (e) {} + } + delete template.sources + + if (!template.blob) return + + const imageLayer = new Image() + await new Promise(resolve => { + imageLayer.onload = () => { + template.imageLayer = imageLayer + delete template.blob + resolve() + } + imageLayer.onerror = () => { + delete template + resolve() + } + imageLayer.src = template.blob + }) + })) + + for (const layer of templates) { + if (!layer.imageLayer) delete layer + } + + return templates + +} diff --git a/web/about.html b/web/about.html index 3a926e38a..d967ef99c 100644 --- a/web/about.html +++ b/web/about.html @@ -1,7 +1,7 @@ @@ -10,8 +10,8 @@ About - The 2023 r/place Atlas - - + + @@ -23,13 +23,13 @@ - + - + - + @@ -62,8 +62,8 @@ diff --git a/web/atlas.json b/web/atlas.json index 8337899af..945701ad1 100644 --- a/web/atlas.json +++ b/web/atlas.json @@ -1,173 +1,173 @@ [ -{"id": 1, "name": "Pikmin 4", "description": "Pikmin 4 is a game made by Nintendo, and the fourth mainline game in the Pikmin series. This art commemorates Pikmin 4's release on July 21, 2023 on Nintendo Switch after 10 years since the previous entry.\n\nThis art was created by the Discord server Benny the Pikmin.", "links": {"website": ["https://en.wikipedia.org/wiki/Pikmin_4"], "subreddit": ["Pikmin"], "discord": ["4jcm5DXPEJ"]}, "path": {"4-15": [[55, 335], [97, 335], [97, 344], [55, 344]], "195-258": [[-1048, 251], [-1007, 251], [-1007, 241], [-1048, 241]]}, "center": {"4-15": [76, 340], "195-258": [-1027, 246]}}, -{"id": 2, "name": "Spamton", "description": "Spamton, full name Spamton G. Spamton, is a character from the game Deltarune. He is a Darkner from the Cyber World, and is initially encountered in Cyber City, where he is fought as a miniboss.\n\nIf Kris helps him enter the Queen's Mansion's basement (either through the LoadedDisk or freezing Berdly), he transforms into Spamton NEO, which serves as Chapter 2's bonus boss on a normal route and the main antagonist and final boss of the Chapter 2 Snowgrave Route. As a bonus boss, he holds one of the Shadow Crystals.", "links": {"website": ["https://deltarune.fandom.com/wiki/Spamton"], "subreddit": ["Deltarune"], "discord": ["BVEPXFcF"]}, "path": {"2-8": [[454, 411], [455, 410], [455, 404], [454, 403], [454, 402], [457, 398], [473, 398], [474, 397], [476, 397], [476, 403], [475, 404], [475, 412], [470, 417], [470, 424], [463, 432], [457, 432], [457, 426], [456, 416], [455, 415], [240, 415], [240, 411]], "71-93": [[-196, -259], [-196, -206], [-134, -206], [-134, -201], [-137, -198], [-139, -198], [-139, -196], [-137, -194], [-135, -194], [-132, -197], [-128, -187], [-125, -187], [-122, -190], [-120, -197], [-118, -193], [-113, -193], [-113, -195], [-116, -198], [-119, -204], [-118, -204], [-113, -208], [-113, -209], [-115, -211], [-115, -213], [-114, -214], [-114, -222], [-116, -222], [-117, -221], [-122, -221], [-123, -222], [-129, -222], [-134, -218], [-134, -216], [-133, -216], [-133, -210], [-191, -210], [-191, -221], [-192, -222], [-193, -224], [-193, -256], [-177, -256], [-177, -330], [-180, -330], [-180, -259]], "104-258": [[-557, -115], [-561, -112], [-561, -103], [-562, -102], [-635, -102], [-635, -98], [-560, -98], [-560, -95], [-564, -90], [-565, -90], [-567, -88], [-565, -86], [-562, -86], [-559, -89], [-554, -80], [-551, -80], [-547, -89], [-543, -85], [-542, -85], [-540, -87], [-545, -94], [-545, -96], [-540, -100], [-540, -101], [-542, -103], [-544, -103], [-544, -105], [-541, -107], [-540, -110], [-540, -115]]}, "center": {"2-8": [465, 408], "71-93": [-124, -212], "104-258": [-553, -105]}}, -{"id": 4, "name": "Bad Apple!! (Music Video)", "description": "Animated pixel art of \"Bad Apple!!\": the iconic music video for a 2007 cover of a song from the soundtrack of the 4th Touhou Project game. The music video exploded in popularity for its smooth-flowing silhouette animation and its ability to be animated on anything only using black and white.\n\nThe \"Bad Apple!!\" artwork changed frames every 39 seconds with the goal of recreating the music video on time-lapse. The project was a rousing success.\n\nFollowing the completion of the music video, the artwork briefly sent the message \"Botting is Cringe\" to 1337 Coding School, who had attempted to copy the manual work of the Touhou community using automation. The final image is the originally planned 東方 end card.", "links": {"website": ["https://www.youtube.com/watch?v=IKXDyKWXBhk"], "subreddit": ["touhou", "osuplace", "ItPlaysBadApple"], "discord": ["apl"]}, "path": {"2-258": [[147, 203], [147, 230], [191, 230], [191, 219], [191, 218], [192, 217], [192, 215], [193, 214], [193, 212], [194, 211], [194, 210], [196, 208], [196, 207], [197, 206], [197, 205], [198, 205], [200, 203], [203, 203], [203, 172], [203, 171], [160, 171], [160, 203]]}, "center": {"2-258": [181, 192]}}, -{"id": 5, "name": "Neuro-sama Fumo (Plushie)", "description": "Neuro-sama (ネウローサマ) is an English-speaking AI-powered VTuber who streams on Twitch. She was created by a game developer named Vedal, and her character was designed by an illustrator named anny. Neuro-sama can chat, sing, react to videos and photos, play games, and collaborate with other people.\n\nDuring the event, the Neuro-sama community, known internally as The Swarm, created The Trinity Alliance alongside the Genshin Impact, Deep Rock Galactic, and Sea of Thieves communities. Various accessories on this plushie symbolize members of the Alliance.", "links": {"website": ["https://www.twitch.tv/vedal987"], "subreddit": ["neuroSama"], "discord": ["neurosama"]}, "path": {"8-258": [[-88, 359], [-91, 362], [-89, 371], [-89, 380], [-85, 387], [-85, 391], [-86, 395], [-89, 398], [-86, 403], [-80, 401], [-73, 404], [-66, 405], [-63, 403], [-56, 403], [-49, 400], [-46, 394], [-45, 387], [-45, 385], [-41, 382], [-39, 377], [-42, 372], [-41, 365], [-44, 359], [-49, 356], [-53, 354], [-60, 358], [-64, 357], [-63, 352], [-66, 351], [-71, 355], [-73, 356], [-82, 355], [-87, 356]]}, "center": {"8-258": [-66, 378]}}, -{"id": 6, "name": "Red Pikmin", "description": "Red Pikmin are a type of Pikmin in the Pikmin games that are immune to fire. They are the first type of Pikmin introduced in the games.\n\nThis was supposed to be a cute Pikmin reference and is now expanding his nose to take over r/place.", "links": {"website": ["https://www.pikminwiki.com/Red_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"2-26": [[198, 59], [196, 61], [196, 65], [194, 67], [194, 73], [196, 74], [197, 75], [197, 93], [196, 95], [196, 99], [198, 100], [198, 104], [197, 104], [197, 108], [193, 108], [189, 113], [189, 120], [194, 124], [205, 124], [210, 120], [210, 113], [213, 108], [207, 102], [206, 102], [206, 98], [228, 98], [228, 96], [207, 96], [206, 92], [201, 90], [201, 74], [204, 71], [204, 68], [202, 65], [202, 59]], "27-29": [[198, 79], [198, 90], [196, 94], [196, 96], [200, 101], [200, 104], [205, 106], [205, 99], [208, 98], [206, 93], [200, 90], [200, 79]], "30-258": [[199, 68], [197, 70], [197, 90], [195, 93], [195, 96], [197, 98], [208, 98], [208, 94], [200, 86], [200, 80], [204, 76], [204, 70], [205, 69], [205, 68]]}, "center": {"2-26": [201, 115], "27-29": [201, 96], "30-258": [200, 93]}}, -{"id": 7, "name": "Connection lost", "description": "The \"Connection lost... Please wait - attempting to reestablish.\" message originates from RuneScape, a popular free massively multiplayer online role-playing game (MMORPG). This message appears in the top-left corner of the screen when the player's network connection to the RuneScape servers is lost.\n\nThe use of this message has been a staple of r/place since its inception, and can be considered a tradition, much like the r/placestart taskbar.", "links": {"website": ["https://oldschool.runescape.com/", "https://en.wikipedia.org/wiki/Old_School_RuneScape"], "subreddit": ["2007scape"]}, "path": {"3-71": [[-501, -501], [-501, -480], [-376, -480], [-376, -501]], "72-88": [[-501, -501], [-501, -467], [-272, -467], [-272, -501]], "89-98": [[-1001, -501], [-1001, -480], [-872, -480], [-872, -500]], "107-119": [[-1001, -501], [-1001, -467], [-772, -467], [-772, -501]], "171-258": [[-1500, -1000], [-1500, -966], [-1272, -966], [-1272, -1000]]}, "center": {"3-71": [-438, -490], "72-88": [-386, -484], "89-98": [-990, -490], "107-119": [-886, -484], "171-258": [-1386, -983]}}, -{"id": 8, "name": "Oranje Boven", "description": "Oranje Boven (Orange Above) is a well-known short song in the Netherlands. It is symbolized by the orange stripe above the flag of the Netherlands.", "links": {"website": ["https://nl.wikipedia.org/wiki/Oranje_boven_(lied)"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"1-54": [[-377, -501], [-377, -480], [500, -480], [500, -501]], "55-68": [[-377, -501], [-377, -480], [1000, -480], [1000, -501]], "69-87": [[-102, -501], [-102, -480], [1000, -482], [1000, -501]], "88-103": [[-873, -501], [-873, -480], [1000, -480], [1000, -501]], "104-116": [[-773, -501], [-773, -480], [1000, -480], [1000, -501]], "117-140": [[-1001, -521], [-1001, -480], [-623, -480], [-623, -500], [-582, -500], [-582, -480], [999, -480], [999, -501], [-131, -501], [-131, -521], [-228, -521], [-228, -501], [-582, -501], [-582, -521]], "141-201": [[-815, -521], [-815, -501], [-858, -501], [-858, -480], [1000, -480], [1000, -501], [681, -501], [681, -521], [-670, -521], [-670, -501], [-719, -501], [-719, -521]], "202-258": [[-815, -521], [-815, -501], [-858, -501], [-858, -480], [1406, -480], [1406, -521], [1001, -521], [1001, -501], [681, -501], [681, -521], [-670, -521], [-670, -501], [-719, -501], [-719, -521]]}, "center": {"1-54": [62, -490], "55-68": [312, -490], "69-87": [-91, -490], "88-103": [64, -490], "104-116": [114, -490], "117-140": [-160, -500], "141-201": [24, -500], "202-258": [270, -500]}}, -{"id": 9, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe. This flag is used both by the Kingdom of the Netherlands and by its constituent nation, the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"1-54": [[-501, -481], [-501, -450], [500, -452], [500, -481]], "55-86": [[-501, -481], [-501, -450], [1000, -450], [1000, -481]], "87-108": [[-1001, -481], [-1001, -450], [1000, -450], [1000, -481]], "109-140": [[-1001, -469], [-1001, -450], [1000, -450], [1000, -481], [-773, -481], [-773, -470]], "141-201": [[-858, -481], [-858, -450], [999, -450], [999, -481]], "202-258": [[-858, -481], [-858, -450], [1406, -450], [1406, -481]]}, "center": {"1-54": [-485, -465], "55-86": [250, -465], "87-108": [0, -465], "109-140": [38, -465], "141-201": [71, -465], "202-258": [274, -465]}}, -{"id": 10, "name": "Flag of Germany (Hauptflagge)", "description": "Germany is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"1-54": [[-501, -451], [-501, -390], [500, -390], [500, -451]], "55-86": [[-501, -451], [-501, -390], [1000, -390], [1000, -451]], "87-170": [[-1001, -451], [-1001, -390], [1000, -390], [1000, -451]], "171-201": [[-1500, -451], [-1500, -390], [999, -390], [999, -451]], "202-258": [[1499, -450], [-1500, -450], [-1500, -391], [1499, -391]]}, "center": {"1-54": [0, -420], "55-86": [250, -420], "87-170": [0, -420], "171-201": [-250, -420], "202-258": [0, -420]}}, -{"id": 11, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"1-154": [[-501, -368], [-501, 500], [-368, 500], [-368, -368]], "155-258": [[-501, -368], [-501, 971], [-368, 971], [-368, -368]]}, "center": {"1-154": [-434, 66], "155-258": [-434, 302]}}, -{"id": 12, "name": "Flag of Belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium"]}, "path": {"2-50": [[-369, -368], [-369, -78], [-334, -78], [-334, -368]], "51-258": [[-368, -368], [-369, -57], [-334, -57], [-334, -368]]}, "center": {"2-50": [-351, -223], "51-258": [-351, -123]}}, +{"id": 1, "name": "Pikmin 4", "description": "Pikmin 4 is a game made by Nintendo, and the fourth mainline game in the Pikmin series. This art commemorates Pikmin 4's release on July 21, 2023 on Nintendo Switch after 10 years since the previous entry.\n\nThis art was created by the Discord server Benny the Pikmin.", "links": {"website": ["https://en.wikipedia.org/wiki/Pikmin_4"], "subreddit": ["Pikmin"], "discord": ["4jcm5DXPEJ"]}, "path": {"4-15": [[55, 335], [97, 335], [97, 344], [55, 344]], "195-258, T": [[-1048, 251], [-1007, 251], [-1007, 241], [-1048, 241]]}, "center": {"4-15": [76, 340], "195-258, T": [-1027, 246]}}, +{"id": 2, "name": "Spamton", "description": "Spamton, full name Spamton G. Spamton, is a character from the game Deltarune. He is a Darkner from the Cyber World, and is initially encountered in Cyber City, where he is fought as a miniboss.\n\nIf Kris helps him enter the Queen's Mansion's basement (either through the LoadedDisk or freezing Berdly), he transforms into Spamton NEO, which serves as Chapter 2's bonus boss on a normal route and the main antagonist and final boss of the Chapter 2 Snowgrave Route. As a bonus boss, he holds one of the Shadow Crystals.", "links": {"website": ["https://deltarune.fandom.com/wiki/Spamton"], "subreddit": ["Deltarune"], "discord": ["BVEPXFcF"]}, "path": {"2-8": [[454, 411], [455, 410], [455, 404], [454, 403], [454, 402], [457, 398], [473, 398], [474, 397], [476, 397], [476, 403], [475, 404], [475, 412], [470, 417], [470, 424], [463, 432], [457, 432], [457, 426], [456, 416], [455, 415], [240, 415], [240, 411]], "71-93": [[-196, -259], [-196, -206], [-134, -206], [-134, -201], [-137, -198], [-139, -198], [-139, -196], [-137, -194], [-135, -194], [-132, -197], [-128, -187], [-125, -187], [-122, -190], [-120, -197], [-118, -193], [-113, -193], [-113, -195], [-116, -198], [-119, -204], [-118, -204], [-113, -208], [-113, -209], [-115, -211], [-115, -213], [-114, -214], [-114, -222], [-116, -222], [-117, -221], [-122, -221], [-123, -222], [-129, -222], [-134, -218], [-134, -216], [-133, -216], [-133, -210], [-191, -210], [-191, -221], [-192, -222], [-193, -224], [-193, -256], [-177, -256], [-177, -330], [-180, -330], [-180, -259]], "104-258, T": [[-557, -115], [-561, -112], [-561, -103], [-562, -102], [-635, -102], [-635, -98], [-560, -98], [-560, -95], [-564, -90], [-565, -90], [-567, -88], [-565, -86], [-562, -86], [-559, -89], [-554, -80], [-551, -80], [-547, -89], [-543, -85], [-542, -85], [-540, -87], [-545, -94], [-545, -96], [-540, -100], [-540, -101], [-542, -103], [-544, -103], [-544, -105], [-541, -107], [-540, -110], [-540, -115]]}, "center": {"2-8": [465, 408], "71-93": [-124, -212], "104-258, T": [-553, -105]}}, +{"id": 4, "name": "Bad Apple!! (Music Video)", "description": "Animated pixel art of \"Bad Apple!!\": the iconic music video for a 2007 cover of a song from the soundtrack of the 4th Touhou Project game. The music video exploded in popularity for its smooth-flowing silhouette animation and its ability to be animated on anything only using black and white.\n\nThe \"Bad Apple!!\" artwork changed frames every 39 seconds with the goal of recreating the music video on time-lapse. The project was a rousing success.\n\nFollowing the completion of the music video, the artwork briefly sent the message \"Botting is Cringe\" to 1337 Coding School, who had attempted to copy the manual work of the Touhou community using automation. The final image is the originally planned 東方 end card.", "links": {"website": ["https://www.youtube.com/watch?v=IKXDyKWXBhk"], "subreddit": ["touhou", "osuplace", "ItPlaysBadApple"], "discord": ["apl"]}, "path": {"2-258, T": [[147, 203], [147, 230], [191, 230], [191, 219], [191, 218], [192, 217], [192, 215], [193, 214], [193, 212], [194, 211], [194, 210], [196, 208], [196, 207], [197, 206], [197, 205], [198, 205], [200, 203], [203, 203], [203, 172], [203, 171], [160, 171], [160, 203]]}, "center": {"2-258, T": [181, 192]}}, +{"id": 5, "name": "Neuro-sama Fumo (Plushie)", "description": "Neuro-sama (ネウローサマ) is an English-speaking AI-powered VTuber who streams on Twitch. She was created by a game developer named Vedal, and her character was designed by an illustrator named anny. Neuro-sama can chat, sing, react to videos and photos, play games, and collaborate with other people.\n\nDuring the event, the Neuro-sama community, known internally as The Swarm, created The Trinity Alliance alongside the Genshin Impact, Deep Rock Galactic, and Sea of Thieves communities. Various accessories on this plushie symbolize members of the Alliance.", "links": {"website": ["https://www.twitch.tv/vedal987"], "subreddit": ["neuroSama"], "discord": ["neurosama"]}, "path": {"8-258, T": [[-88, 359], [-91, 362], [-89, 371], [-89, 380], [-85, 387], [-85, 391], [-86, 395], [-89, 398], [-86, 403], [-80, 401], [-73, 404], [-66, 405], [-63, 403], [-56, 403], [-49, 400], [-46, 394], [-45, 387], [-45, 385], [-41, 382], [-39, 377], [-42, 372], [-41, 365], [-44, 359], [-49, 356], [-53, 354], [-60, 358], [-64, 357], [-63, 352], [-66, 351], [-71, 355], [-73, 356], [-82, 355], [-87, 356]]}, "center": {"8-258, T": [-66, 378]}}, +{"id": 6, "name": "Red Pikmin", "description": "Red Pikmin are a type of Pikmin in the Pikmin games that are immune to fire. They are the first type of Pikmin introduced in the games.\n\nThis was supposed to be a cute Pikmin reference and is now expanding his nose to take over r/place.", "links": {"website": ["https://www.pikminwiki.com/Red_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"2-26": [[198, 59], [196, 61], [196, 65], [194, 67], [194, 73], [196, 74], [197, 75], [197, 93], [196, 95], [196, 99], [198, 100], [198, 104], [197, 104], [197, 108], [193, 108], [189, 113], [189, 120], [194, 124], [205, 124], [210, 120], [210, 113], [213, 108], [207, 102], [206, 102], [206, 98], [228, 98], [228, 96], [207, 96], [206, 92], [201, 90], [201, 74], [204, 71], [204, 68], [202, 65], [202, 59]], "27-29": [[198, 79], [198, 90], [196, 94], [196, 96], [200, 101], [200, 104], [205, 106], [205, 99], [208, 98], [206, 93], [200, 90], [200, 79]], "30-258, T": [[199, 68], [197, 70], [197, 90], [195, 93], [195, 96], [197, 98], [208, 98], [208, 94], [200, 86], [200, 80], [204, 76], [204, 70], [205, 69], [205, 68]]}, "center": {"2-26": [201, 115], "27-29": [201, 96], "30-258, T": [200, 93]}}, +{"id": 7, "name": "Connection lost", "description": "The \"Connection lost... Please wait - attempting to reestablish.\" message originates from RuneScape, a popular free massively multiplayer online role-playing game (MMORPG). This message appears in the top-left corner of the screen when the player's network connection to the RuneScape servers is lost.\n\nThe use of this message has been a staple of r/place since its inception, and can be considered a tradition, much like the r/placestart taskbar.", "links": {"website": ["https://oldschool.runescape.com/", "https://en.wikipedia.org/wiki/Old_School_RuneScape"], "subreddit": ["2007scape"]}, "path": {"3-71": [[-501, -501], [-501, -480], [-376, -480], [-376, -501]], "72-88": [[-501, -501], [-501, -467], [-272, -467], [-272, -501]], "89-98": [[-1001, -501], [-1001, -480], [-872, -480], [-872, -500]], "107-119": [[-1001, -501], [-1001, -467], [-772, -467], [-772, -501]], "171-258, T": [[-1500, -1000], [-1500, -966], [-1272, -966], [-1272, -1000]]}, "center": {"3-71": [-438, -490], "72-88": [-386, -484], "89-98": [-990, -490], "107-119": [-886, -484], "171-258, T": [-1386, -983]}}, +{"id": 8, "name": "Oranje Boven", "description": "Oranje Boven (Orange Above) is a well-known short song in the Netherlands. It is symbolized by the orange stripe above the flag of the Netherlands.", "links": {"website": ["https://nl.wikipedia.org/wiki/Oranje_boven_(lied)"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"1-54": [[-377, -501], [-377, -480], [500, -480], [500, -501]], "55-68": [[-377, -501], [-377, -480], [1000, -480], [1000, -501]], "69-87": [[-102, -501], [-102, -480], [1000, -482], [1000, -501]], "88-103": [[-873, -501], [-873, -480], [1000, -480], [1000, -501]], "104-116": [[-773, -501], [-773, -480], [1000, -480], [1000, -501]], "117-140": [[-1001, -521], [-1001, -480], [-623, -480], [-623, -500], [-582, -500], [-582, -480], [999, -480], [999, -501], [-131, -501], [-131, -521], [-228, -521], [-228, -501], [-582, -501], [-582, -521]], "141-201": [[-815, -521], [-815, -501], [-858, -501], [-858, -480], [1000, -480], [1000, -501], [681, -501], [681, -521], [-670, -521], [-670, -501], [-719, -501], [-719, -521]], "202-258, T": [[-815, -521], [-815, -501], [-858, -501], [-858, -480], [1406, -480], [1406, -521], [1001, -521], [1001, -501], [681, -501], [681, -521], [-670, -521], [-670, -501], [-719, -501], [-719, -521]]}, "center": {"1-54": [62, -490], "55-68": [312, -490], "69-87": [-91, -490], "88-103": [64, -490], "104-116": [114, -490], "117-140": [-160, -500], "141-201": [24, -500], "202-258, T": [270, -500]}}, +{"id": 9, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe. This flag is used both by the Kingdom of the Netherlands and by its constituent nation, the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"1-54": [[-501, -481], [-501, -450], [500, -452], [500, -481]], "55-86": [[-501, -481], [-501, -450], [1000, -450], [1000, -481]], "87-108": [[-1001, -481], [-1001, -450], [1000, -450], [1000, -481]], "109-140": [[-1001, -469], [-1001, -450], [1000, -450], [1000, -481], [-773, -481], [-773, -470]], "141-201": [[-858, -481], [-858, -450], [999, -450], [999, -481]], "202-258, T": [[-858, -481], [-858, -450], [1406, -450], [1406, -481]]}, "center": {"1-54": [-485, -465], "55-86": [250, -465], "87-108": [0, -465], "109-140": [38, -465], "141-201": [71, -465], "202-258, T": [274, -465]}}, +{"id": 10, "name": "Flag of Germany (Hauptflagge)", "description": "Germany is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"1-54": [[-501, -451], [-501, -390], [500, -390], [500, -451]], "55-86": [[-501, -451], [-501, -390], [1000, -390], [1000, -451]], "87-170": [[-1001, -451], [-1001, -390], [1000, -390], [1000, -451]], "171-201": [[-1500, -451], [-1500, -390], [999, -390], [999, -451]], "202-258, T": [[1499, -450], [-1500, -450], [-1500, -391], [1499, -391]]}, "center": {"1-54": [0, -420], "55-86": [250, -420], "87-170": [0, -420], "171-201": [-250, -420], "202-258, T": [0, -420]}}, +{"id": 11, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"1-154": [[-501, -368], [-501, 500], [-368, 500], [-368, -368]], "155-258, T": [[-501, -368], [-501, 971], [-368, 971], [-368, -368]]}, "center": {"1-154": [-434, 66], "155-258, T": [-434, 302]}}, +{"id": 12, "name": "Flag of Belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium"]}, "path": {"2-50": [[-369, -368], [-369, -78], [-334, -78], [-334, -368]], "51-258, T": [[-368, -368], [-369, -57], [-334, -57], [-334, -368]]}, "center": {"2-50": [-351, -223], "51-258, T": [-351, -123]}}, {"id": 13, "name": "Flag of Belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium"]}, "path": {"2-4": [[-501, -370], [-502, -283], [-488, -277], [-470, -287], [-470, -351], [-469, -351], [-469, -370]]}, "center": {"2-4": [-486, -297]}}, -{"id": 14, "name": "Flag of the United Kingdom", "description": "The United Kingdom is a country in northwestern Europe. Its flag is known as the Union Flag, unless on a ship, then it is the Union Jack.", "links": {"website": ["https://en.wikipedia.org/wiki/United_Kingdom", "https://en.wikipedia.org/wiki/Flag_of_the_United_Kingdom"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"2-15": [[-320, -335], [-320, -259], [-177, -259], [-177, -335]], "16-77, 80-258": [[-320, -330], [-320, -259], [-177, -259], [-177, -330]]}, "center": {"2-15": [-248, -297], "16-77, 80-258": [-248, -294]}}, -{"id": 15, "name": "Flag of Norway", "description": "Norway is a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Norway", "https://en.wikipedia.org/wiki/Flag_of_Norway"], "subreddit": ["Norge", "nordics", "place_nordicunion"]}, "path": {"3-20": [[-177, -279], [0, -279], [0, -368], [-165, -368], [-165, -309], [-177, -309]], "21-50": [[-177, -279], [-13, -279], [-13, -291], [-8, -295], [0, -300], [0, -368], [-165, -368], [-165, -310], [-177, -310]], "51-258": [[-177, -279], [-13, -279], [-13, -291], [-8, -295], [0, -300], [0, -349], [-26, -349], [-26, -368], [-165, -368], [-165, -310], [-177, -310]]}, "center": {"3-20": [-88, -323], "21-50": [-88, -323], "51-258": [-88, -323]}}, -{"id": 16, "name": "Flag of Finland", "description": "Finland is a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["Suomi", "nordics", "place_nordicunion"]}, "path": {"3-22": [[0, -368], [0, -279], [146, -279], [146, -302], [98, -302], [98, -368]], "23-36": [[0, -368], [0, -300], [5, -299], [5, -296], [8, -296], [13, -292], [19, -292], [19, -283], [17, -281], [17, -279], [145, -279], [145, -314], [87, -314], [87, -368]], "37-50": [[0, -368], [0, -300], [5, -299], [5, -296], [8, -296], [13, -292], [19, -292], [19, -283], [17, -281], [17, -279], [146, -279], [146, -368]], "51-258": [[0, -368], [0, -300], [5, -299], [5, -296], [8, -296], [13, -292], [19, -292], [19, -283], [17, -281], [17, -279], [186, -279], [186, -314], [160, -340], [160, -347], [146, -347], [146, -368]]}, "center": {"3-22": [45, -323], "23-36": [45, -325], "37-50": [73, -323], "51-258": [93, -323]}}, -{"id": 17, "name": "Flag of Sweden", "description": "Sweden is a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden", "https://en.wikipedia.org/wiki/Flag_of_Sweden"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"3-22": [[0, -279], [0, -178], [91, -178], [91, -206], [146, -206], [146, -279]], "23-54": [[0, -178], [91, -178], [91, -206], [146, -206], [146, -279], [16, -279], [16, -265], [14, -262], [6, -260], [0, -260]], "55-70": [[0, -261], [0, -251], [3, -251], [3, -178], [91, -178], [91, -206], [214, -206], [214, -221], [197, -221], [197, -259], [186, -259], [186, -279], [19, -279], [16, -278], [16, -265], [14, -263], [5, -261]], "71-258": [[0, -261], [0, -251], [3, -251], [3, -178], [91, -178], [91, -206], [250, -205], [251, -195], [279, -195], [279, -193], [289, -193], [288, -224], [287, -224], [284, -227], [259, -227], [259, -234], [230, -234], [230, -251], [185, -251], [186, -259], [145, -259], [145, -267], [153, -267], [153, -279], [18, -279], [16, -277], [17, -265], [14, -263], [8, -261]]}, "center": {"3-22": [49, -230], "23-54": [48, -228], "55-70": [51, -231], "71-258": [51, -231]}}, -{"id": 18, "name": "Flag of Denmark", "description": "Denmark is a country in Northern Europe. Its flag is known as the Dannebrog.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark", "https://en.wikipedia.org/wiki/Flag_of_Denmark"], "subreddit": ["Denmark", "nordics", "place_nordicunion"]}, "path": {"3-19": [[-177, -279], [-177, -259], [-196, -259], [-196, -231], [0, -231], [0, -279]], "20-56": [[-177, -279], [-177, -259], [-196, -259], [-196, -231], [0, -231], [0, -260], [-6, -260], [-15, -263], [-15, -279]], "57-258": [[-177, -279], [-177, -259], [-196, -259], [-196, -191], [-179, -191], [-179, -178], [-3, -178], [-3, -251], [0, -251], [0, -259], [-3, -259], [-3, -261], [-15, -263], [-15, -267], [-14, -268], [-14, -273], [-19, -279]]}, "center": {"3-19": [-98, -255], "20-56": [-98, -255], "57-258": [-98, -228]}}, +{"id": 14, "name": "Flag of the United Kingdom", "description": "The United Kingdom is a country in northwestern Europe. Its flag is known as the Union Flag, unless on a ship, then it is the Union Jack.", "links": {"website": ["https://en.wikipedia.org/wiki/United_Kingdom", "https://en.wikipedia.org/wiki/Flag_of_the_United_Kingdom"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"2-15": [[-320, -335], [-320, -259], [-177, -259], [-177, -335]], "16-77, 80-258, T": [[-320, -330], [-320, -259], [-177, -259], [-177, -330]]}, "center": {"2-15": [-248, -297], "16-77, 80-258, T": [-248, -294]}}, +{"id": 15, "name": "Flag of Norway", "description": "Norway is a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Norway", "https://en.wikipedia.org/wiki/Flag_of_Norway"], "subreddit": ["Norge", "nordics", "place_nordicunion"]}, "path": {"3-20": [[-177, -279], [0, -279], [0, -368], [-165, -368], [-165, -309], [-177, -309]], "21-50": [[-177, -279], [-13, -279], [-13, -291], [-8, -295], [0, -300], [0, -368], [-165, -368], [-165, -310], [-177, -310]], "51-258, T": [[-177, -279], [-13, -279], [-13, -291], [-8, -295], [0, -300], [0, -349], [-26, -349], [-26, -368], [-165, -368], [-165, -310], [-177, -310]]}, "center": {"3-20": [-88, -323], "21-50": [-88, -323], "51-258, T": [-88, -323]}}, +{"id": 16, "name": "Flag of Finland", "description": "Finland is a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["Suomi", "nordics", "place_nordicunion"]}, "path": {"3-22": [[0, -368], [0, -279], [146, -279], [146, -302], [98, -302], [98, -368]], "23-36": [[0, -368], [0, -300], [5, -299], [5, -296], [8, -296], [13, -292], [19, -292], [19, -283], [17, -281], [17, -279], [145, -279], [145, -314], [87, -314], [87, -368]], "37-50": [[0, -368], [0, -300], [5, -299], [5, -296], [8, -296], [13, -292], [19, -292], [19, -283], [17, -281], [17, -279], [146, -279], [146, -368]], "51-258, T": [[0, -368], [0, -300], [5, -299], [5, -296], [8, -296], [13, -292], [19, -292], [19, -283], [17, -281], [17, -279], [186, -279], [186, -314], [160, -340], [160, -347], [146, -347], [146, -368]]}, "center": {"3-22": [45, -323], "23-36": [45, -325], "37-50": [73, -323], "51-258, T": [93, -323]}}, +{"id": 17, "name": "Flag of Sweden", "description": "Sweden is a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden", "https://en.wikipedia.org/wiki/Flag_of_Sweden"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"3-22": [[0, -279], [0, -178], [91, -178], [91, -206], [146, -206], [146, -279]], "23-54": [[0, -178], [91, -178], [91, -206], [146, -206], [146, -279], [16, -279], [16, -265], [14, -262], [6, -260], [0, -260]], "55-70": [[0, -261], [0, -251], [3, -251], [3, -178], [91, -178], [91, -206], [214, -206], [214, -221], [197, -221], [197, -259], [186, -259], [186, -279], [19, -279], [16, -278], [16, -265], [14, -263], [5, -261]], "71-258, T": [[0, -261], [0, -251], [3, -251], [3, -178], [91, -178], [91, -206], [250, -205], [251, -195], [279, -195], [279, -193], [289, -193], [288, -224], [287, -224], [284, -227], [259, -227], [259, -234], [230, -234], [230, -251], [185, -251], [186, -259], [145, -259], [145, -267], [153, -267], [153, -279], [18, -279], [16, -277], [17, -265], [14, -263], [8, -261]]}, "center": {"3-22": [49, -230], "23-54": [48, -228], "55-70": [51, -231], "71-258, T": [51, -231]}}, +{"id": 18, "name": "Flag of Denmark", "description": "Denmark is a country in Northern Europe. Its flag is known as the Dannebrog.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark", "https://en.wikipedia.org/wiki/Flag_of_Denmark"], "subreddit": ["Denmark", "nordics", "place_nordicunion"]}, "path": {"3-19": [[-177, -279], [-177, -259], [-196, -259], [-196, -231], [0, -231], [0, -279]], "20-56": [[-177, -279], [-177, -259], [-196, -259], [-196, -231], [0, -231], [0, -260], [-6, -260], [-15, -263], [-15, -279]], "57-258, T": [[-177, -279], [-177, -259], [-196, -259], [-196, -191], [-179, -191], [-179, -178], [-3, -178], [-3, -251], [0, -251], [0, -259], [-3, -259], [-3, -261], [-15, -263], [-15, -267], [-14, -268], [-14, -273], [-19, -279]]}, "center": {"3-19": [-98, -255], "20-56": [-98, -255], "57-258, T": [-98, -228]}}, {"id": 19, "name": "Flag of Ireland", "description": "The Republic of Ireland is a country in northwestern Europe. It consists of most of the island of Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"1-23": [[146, -303], [146, -206], [185, -206], [185, -303]], "24-43": [[146, -333], [146, -206], [186, -206], [186, -333]]}, "center": {"1-23": [166, -254], "24-43": [166, -269]}}, -{"id": 20, "name": "Flag of Ukraine", "description": "Ukraine is a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"1-258": [[-335, -169], [-335, -79], [91, -79], [91, -176], [-238, -176], [-238, -168], [-303, -168], [-303, -169]]}, "center": {"1-258": [-122, -127]}}, +{"id": 20, "name": "Flag of Ukraine", "description": "Ukraine is a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"1-258, T": [[-335, -169], [-335, -79], [91, -79], [91, -176], [-238, -176], [-238, -168], [-303, -168], [-303, -169]]}, "center": {"1-258, T": [-122, -127]}}, {"id": 21, "name": "Flag of Poland", "description": "Poland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Flag_of_Poland"], "subreddit": ["Polska", "poland"]}, "path": {"7-41": [[-196, -231], [-196, -178], [0, -178], [0, -231]], "42-61": [[-196, -231], [-196, -178], [0, -178], [0, -211], [-27, -211], [-27, -231]]}, "center": {"7-41": [-98, -204], "42-61": [-98, -204]}}, {"id": 22, "name": "Flag of Poland", "description": "Poland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Flag_of_Poland"], "subreddit": ["Polska", "poland"]}, "path": {"14-19": [[338, -186], [338, -131], [339, -131], [339, -120], [500, -120], [500, -186]]}, "center": {"14-19": [419, -153]}}, -{"id": 23, "name": "Flag of the Czech Republic", "description": "The Czech Republic, also known as Czechia, is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Czech_Republic", "https://en.wikipedia.org/wiki/Flag_of_the_Czech_Republic"], "subreddit": ["czech"]}, "path": {"1-7": [[439, -199], [439, -156], [500, -156], [500, -199]], "19-24, 33-258, 8-13": [[399, -186], [399, -120], [500, -120], [500, -186]]}, "center": {"1-7": [470, -177], "19-24, 33-258, 8-13": [450, -153]}}, -{"id": 24, "name": "Flag of Spain", "description": "Spain (Spanish: España) is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Flag_of_Spain"], "subreddit": ["esPlace", "spain"]}, "path": {"7-14": [[-368, -72], [-368, -46], [335, -46], [349, -29], [413, -29], [425, -57], [425, -72]], "2-6": [[347, -64], [346, -29], [500, -29], [500, -65], [431, -65], [431, -64]], "22-36": [[91, -75], [91, -47], [249, -47], [249, -72], [204, -72], [200, -75]], "38-54": [[91, -47], [455, -47], [455, -71], [91, -71]], "55-66": [[91, -47], [884, -47], [884, -72], [91, -71]], "67-258": [[851, -71], [91, -71], [91, -47], [851, -47]]}, "center": {"7-14": [385, -50], "2-6": [472, -47], "22-36": [170, -61], "38-54": [273, -59], "55-66": [854, -59], "67-258": [471, -59]}}, -{"id": 25, "name": "Flag of Germany", "description": "Germany is a country in Central Europe. The flag's connection to the southern flag community is unofficial, as it was made by the hivemind. With the approval of the Suedflaggen Community, numerous German universities and colleges have adopted the right Suedflagge. Previously, the hivemind had persistently included the phrase \"FUCK SPEZ\" until it was removed by the German educational institutions.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placesuedflagge", "tumunich", "KaIT", "hs_karlsruhe", "tuhh", "HTWK_Leipzig", "RuhrUniBochum", "rwth", "tudortmund"], "discord": ["nTDtPfwGNS"]}, "path": {"1-5": [[-501, -81], [-501, -56], [500, -64], [500, -78]], "6-25": [[-368, -80], [-368, -55], [500, -57], [500, -80]], "26-50": [[-368, -80], [-368, -55], [-134, -55], [-134, -59], [92, -58], [93, -80]], "51-258": [[-334, -80], [-334, -57], [91, -57], [91, -80]]}, "center": {"1-5": [-488, -68], "6-25": [-355, -67], "26-50": [-155, -67], "51-258": [-121, -68]}}, -{"id": 26, "name": "Flag of Austria", "description": "Austria is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"1-2": [[-501, -42], [-501, -26], [-326, -26], [-326, -42]], "3-23": [[-368, -56], [-368, -26], [439, -26], [440, -56]], "24-258": [[-367, -56], [-367, -26], [82, -27], [91, -32], [77, -36], [90, -41], [79, -46], [92, -52], [77, -57]]}, "center": {"1-2": [-413, -34], "3-23": [36, -41], "24-258": [-141, -42]}}, -{"id": 27, "name": "Flag of Hungary", "description": "Hungary is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary"], "discord": ["pixelhu"]}, "path": {"3-12": [[-368, -32], [-368, -16], [347, -16], [347, -32]], "1-2": [[-501, -32], [-501, -2], [-479, -14], [-437, -16], [-259, -17], [-259, -32]], "13-23": [[-365, -37], [-365, -13], [-360, -7], [-334, -7], [-265, -16], [386, -16], [386, -37]], "24-72": [[-365, -37], [-365, -13], [-364, -6], [-191, -6], [-191, -36]], "73-258": [[-368, -37], [-368, -6], [-270, -6], [-270, -37]]}, "center": {"3-12": [-10, -24], "1-2": [-490, -21], "13-23": [-350, -22], "24-72": [-349, -21], "73-258": [-319, -21]}}, -{"id": 28, "name": "Flag of Turkey", "description": "Turkey is a country in Southeastern Europe and Western Asia. The national flag of Turkey, officially the Turkish flag (Turkish: Türk bayrağı), is a red flag featuring a white star and crescent.\nPattern at the back represents map of Turkiye and famous Turkish rug \"kilim\" patterns.", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://en.wikipedia.org/wiki/Flag_of_Turkey"], "subreddit": ["Turkey"]}, "path": {"3-11": [[-368, 293], [-368, 445], [-262, 445], [-262, 300], [-317, 300], [-322, 293]], "1-2": [[-32, -309], [-32, -273], [25, -273], [25, -309]], "12-19": [[-364, 293], [-364, 445], [-169, 445], [-169, 350], [-216, 350], [-216, 293]], "20-25": [[-364, 293], [-364, 445], [-169, 445], [-169, 293]], "27-34": [[-364, 356], [-364, 445], [-216, 445], [-216, 356]], "35-63": [[-364, 291], [-364, 445], [-166, 445], [-166, 291]], "64-68": [[-364, 291], [-364, 445], [-97, 445], [-97, 291]], "69-258": [[-364, 445], [-364, 292], [-168, 291], [-167, 388], [-170, 390], [-169, 433], [-169, 436], [-167, 438], [-165, 444]]}, "center": {"3-11": [-315, 369], "1-2": [-3, -291], "12-19": [-289, 369], "20-25": [-266, 369], "27-34": [-290, 401], "35-63": [-265, 368], "64-68": [-230, 368], "69-258": [-287, 368]}}, -{"id": 29, "name": "Flag of Romania", "description": "Romania is a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania", "https://en.wikipedia.org/wiki/Flag_of_Romania"], "subreddit": ["okprietenretardat"]}, "path": {"18-20": [[164, 230], [164, 411], [201, 411], [201, 251], [193, 240], [191, 230]], "2-17": [[164, 230], [164, 500], [201, 500], [201, 251], [194, 239], [191, 230]], "21-28": [[167, 230], [167, 282], [200, 282], [200, 253], [193, 243], [189, 230]], "35-47": [[-364, -6], [-364, 169], [-343, 169], [-343, -6]], "48-59": [[-364, -6], [-364, 169], [-343, 169], [-343, 146], [-309, 146], [-309, 137], [-270, 137], [-270, 70], [-343, 70], [-343, -6]], "60-96": [[-364, 70], [-364, 146], [-270, 146], [-270, 70]], "97-104": [[-368, 70], [-368, 264], [-343, 264], [-343, 176], [-270, 176], [-270, 70]], "105-258": [[-368, 70], [-368, 176], [-270, 176], [-270, 70]]}, "center": {"18-20": [183, 323], "2-17": [183, 365], "21-28": [183, 258], "35-47": [-353, 82], "48-59": [-328, 106], "60-96": [-317, 108], "97-104": [-319, 119], "105-258": [-319, 123]}}, +{"id": 23, "name": "Flag of the Czech Republic", "description": "The Czech Republic, also known as Czechia, is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Czech_Republic", "https://en.wikipedia.org/wiki/Flag_of_the_Czech_Republic"], "subreddit": ["czech"]}, "path": {"1-7": [[439, -199], [439, -156], [500, -156], [500, -199]], "19-24, 33-258, 8-13, T": [[399, -186], [399, -120], [500, -120], [500, -186]]}, "center": {"1-7": [470, -177], "19-24, 33-258, 8-13, T": [450, -153]}}, +{"id": 24, "name": "Flag of Spain", "description": "Spain (Spanish: España) is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Flag_of_Spain"], "subreddit": ["esPlace", "spain"]}, "path": {"7-14": [[-368, -72], [-368, -46], [335, -46], [349, -29], [413, -29], [425, -57], [425, -72]], "2-6": [[347, -64], [346, -29], [500, -29], [500, -65], [431, -65], [431, -64]], "22-36": [[91, -75], [91, -47], [249, -47], [249, -72], [204, -72], [200, -75]], "38-54": [[91, -47], [455, -47], [455, -71], [91, -71]], "55-66": [[91, -47], [884, -47], [884, -72], [91, -71]], "67-258, T": [[851, -71], [91, -71], [91, -47], [851, -47]]}, "center": {"7-14": [385, -50], "2-6": [472, -47], "22-36": [170, -61], "38-54": [273, -59], "55-66": [854, -59], "67-258, T": [471, -59]}}, +{"id": 25, "name": "Flag of Germany", "description": "Germany is a country in Central Europe. The flag's connection to the southern flag community is unofficial, as it was made by the hivemind. With the approval of the Suedflaggen Community, numerous German universities and colleges have adopted the right Suedflagge. Previously, the hivemind had persistently included the phrase \"FUCK SPEZ\" until it was removed by the German educational institutions.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placesuedflagge", "tumunich", "KaIT", "hs_karlsruhe", "tuhh", "HTWK_Leipzig", "RuhrUniBochum", "rwth", "tudortmund"], "discord": ["nTDtPfwGNS"]}, "path": {"1-5": [[-501, -81], [-501, -56], [500, -64], [500, -78]], "6-25": [[-368, -80], [-368, -55], [500, -57], [500, -80]], "26-50": [[-368, -80], [-368, -55], [-134, -55], [-134, -59], [92, -58], [93, -80]], "51-258, T": [[-334, -80], [-334, -57], [91, -57], [91, -80]]}, "center": {"1-5": [-488, -68], "6-25": [-355, -67], "26-50": [-155, -67], "51-258, T": [-121, -68]}}, +{"id": 26, "name": "Flag of Austria", "description": "Austria is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"1-2": [[-501, -42], [-501, -26], [-326, -26], [-326, -42]], "3-23": [[-368, -56], [-368, -26], [439, -26], [440, -56]], "24-258, T": [[-367, -56], [-367, -26], [82, -27], [91, -32], [77, -36], [90, -41], [79, -46], [92, -52], [77, -57]]}, "center": {"1-2": [-413, -34], "3-23": [36, -41], "24-258, T": [-141, -42]}}, +{"id": 27, "name": "Flag of Hungary", "description": "Hungary is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary"], "discord": ["pixelhu"]}, "path": {"3-12": [[-368, -32], [-368, -16], [347, -16], [347, -32]], "1-2": [[-501, -32], [-501, -2], [-479, -14], [-437, -16], [-259, -17], [-259, -32]], "13-23": [[-365, -37], [-365, -13], [-360, -7], [-334, -7], [-265, -16], [386, -16], [386, -37]], "24-72": [[-365, -37], [-365, -13], [-364, -6], [-191, -6], [-191, -36]], "73-258, T": [[-368, -37], [-368, -6], [-270, -6], [-270, -37]]}, "center": {"3-12": [-10, -24], "1-2": [-490, -21], "13-23": [-350, -22], "24-72": [-349, -21], "73-258, T": [-319, -21]}}, +{"id": 28, "name": "Flag of Turkey", "description": "Turkey is a country in Southeastern Europe and Western Asia. The national flag of Turkey, officially the Turkish flag (Turkish: Türk bayrağı), is a red flag featuring a white star and crescent.\nPattern at the back represents map of Turkiye and famous Turkish rug \"kilim\" patterns.", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://en.wikipedia.org/wiki/Flag_of_Turkey"], "subreddit": ["Turkey"]}, "path": {"3-11": [[-368, 293], [-368, 445], [-262, 445], [-262, 300], [-317, 300], [-322, 293]], "1-2": [[-32, -309], [-32, -273], [25, -273], [25, -309]], "12-19": [[-364, 293], [-364, 445], [-169, 445], [-169, 350], [-216, 350], [-216, 293]], "20-25": [[-364, 293], [-364, 445], [-169, 445], [-169, 293]], "27-34": [[-364, 356], [-364, 445], [-216, 445], [-216, 356]], "35-63": [[-364, 291], [-364, 445], [-166, 445], [-166, 291]], "64-68": [[-364, 291], [-364, 445], [-97, 445], [-97, 291]], "69-258, T": [[-364, 445], [-364, 292], [-168, 291], [-167, 388], [-170, 390], [-169, 433], [-169, 436], [-167, 438], [-165, 444]]}, "center": {"3-11": [-315, 369], "1-2": [-3, -291], "12-19": [-289, 369], "20-25": [-266, 369], "27-34": [-290, 401], "35-63": [-265, 368], "64-68": [-230, 368], "69-258, T": [-287, 368]}}, +{"id": 29, "name": "Flag of Romania", "description": "Romania is a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania", "https://en.wikipedia.org/wiki/Flag_of_Romania"], "subreddit": ["okprietenretardat"]}, "path": {"18-20": [[164, 230], [164, 411], [201, 411], [201, 251], [193, 240], [191, 230]], "2-17": [[164, 230], [164, 500], [201, 500], [201, 251], [194, 239], [191, 230]], "21-28": [[167, 230], [167, 282], [200, 282], [200, 253], [193, 243], [189, 230]], "35-47": [[-364, -6], [-364, 169], [-343, 169], [-343, -6]], "48-59": [[-364, -6], [-364, 169], [-343, 169], [-343, 146], [-309, 146], [-309, 137], [-270, 137], [-270, 70], [-343, 70], [-343, -6]], "60-96": [[-364, 70], [-364, 146], [-270, 146], [-270, 70]], "97-104": [[-368, 70], [-368, 264], [-343, 264], [-343, 176], [-270, 176], [-270, 70]], "105-258, T": [[-368, 70], [-368, 176], [-270, 176], [-270, 70]]}, "center": {"18-20": [183, 323], "2-17": [183, 365], "21-28": [183, 258], "35-47": [-353, 82], "48-59": [-328, 106], "60-96": [-317, 108], "97-104": [-319, 119], "105-258, T": [-319, 123]}}, {"id": 30, "name": "Flag of Poland", "description": "Poland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Flag_of_Poland"], "subreddit": ["Polska", "poland"]}, "path": {"15-16": [[250, 335], [250, 415], [400, 415], [400, 335]], "17-20": [[250, 335], [250, 411], [264, 411], [264, 413], [400, 414], [400, 335], [372, 335], [372, 352], [309, 352], [309, 335]]}, "center": {"15-16": [325, 375], "17-20": [285, 378]}}, -{"id": 31, "name": "Flag of Vietnam", "description": "Vietnam is a country in Southeast Asia. This flag of Vietnam were built and maintained by Place Vietnam. It features a yellow five-pointed star on a red background. Accompanying the flag is a dark red S-shaped landmass that represents the shape of Vietnam itself, along with the disputed Paracel Islands (Hoang Sa) and Spratly Islands (Truong Sa). Also on the flag are three iconic images: \"Chim Lạc\" - Vietnamese mythical bird, Immaculate Conception Cathedral Basilica (Nhà thờ chính tòa Đức Bà Sài Gòn), and Ho Chi Minh Mausoleum (Lăng Chủ tịch Hồ Chí Minh), which are famous architectural works of historical, cultural, and religious significance in Vietnam. At first, Khuê Constellation Pavilion was built first on the flag, but got replaced with the Ho Chi Minh Mausoleum later.\n\nOn July 21, around 20:00 GMT, the flag got raided by Twitch streamers Punz and GrandPooBear. As it was early morning for the Vietnamese, they were able to capture it and began to expand on it. 5 hours later, on July 22, around 1:00 GMT, Place Vietnam launched a counter-attack against the streamers to retake their land. The attack lasted for around 3 hours and 30 minutes, with Place Vietnam eventually rebuilinding their flag. Afterward, the flag went through multiple design changes and lasted for the rest of the event.", "links": {"website": ["https://en.wikipedia.org/wiki/Vietnam", "https://en.wikipedia.org/wiki/Flag_of_Vietnam"], "subreddit": ["placevietnam"], "discord": ["placevietnam"]}, "path": {"29-258": [[147, 230], [191, 230], [191, 257], [147, 257], [147, 249]]}, "center": {"29-258": [169, 244]}}, +{"id": 31, "name": "Flag of Vietnam", "description": "Vietnam is a country in Southeast Asia. This flag of Vietnam were built and maintained by Place Vietnam. It features a yellow five-pointed star on a red background. Accompanying the flag is a dark red S-shaped landmass that represents the shape of Vietnam itself, along with the disputed Paracel Islands (Hoang Sa) and Spratly Islands (Truong Sa). Also on the flag are three iconic images: \"Chim Lạc\" - Vietnamese mythical bird, Immaculate Conception Cathedral Basilica (Nhà thờ chính tòa Đức Bà Sài Gòn), and Ho Chi Minh Mausoleum (Lăng Chủ tịch Hồ Chí Minh), which are famous architectural works of historical, cultural, and religious significance in Vietnam. At first, Khuê Constellation Pavilion was built first on the flag, but got replaced with the Ho Chi Minh Mausoleum later.\n\nOn July 21, around 20:00 GMT, the flag got raided by Twitch streamers Punz and GrandPooBear. As it was early morning for the Vietnamese, they were able to capture it and began to expand on it. 5 hours later, on July 22, around 1:00 GMT, Place Vietnam launched a counter-attack against the streamers to retake their land. The attack lasted for around 3 hours and 30 minutes, with Place Vietnam eventually rebuilinding their flag. Afterward, the flag went through multiple design changes and lasted for the rest of the event.", "links": {"website": ["https://en.wikipedia.org/wiki/Vietnam", "https://en.wikipedia.org/wiki/Flag_of_Vietnam"], "subreddit": ["placevietnam"], "discord": ["placevietnam"]}, "path": {"29-258, T": [[147, 230], [191, 230], [191, 257], [147, 257], [147, 249]]}, "center": {"29-258, T": [169, 244]}}, {"id": 32, "name": "Flag of Palestine", "description": "Palestine is a state in the Middle East. Its territory, including the holy city of Jerusalem, is disputed with Israel.", "links": {"website": ["https://en.wikipedia.org/wiki/State_of_Palestine", "https://en.wikipedia.org/wiki/Flag_of_Palestine"], "subreddit": ["Palestine"]}, "path": {"10-19": [[454, 335], [454, 361], [500, 361], [500, 335]], "90-98": [[-868, 235], [-868, 245], [-835, 245], [-835, 235]], "99-109": [[-868, 226], [-868, 245], [-835, 245], [-835, 226]], "110-115": [[-877, 226], [-877, 245], [-827, 245], [-827, 226]], "141-168": [[359, -859], [359, -843], [392, -843], [392, -859]]}, "center": {"10-19": [477, 348], "90-98": [-851, 240], "99-109": [-851, 236], "110-115": [-852, 236], "141-168": [376, -851]}}, -{"id": 33, "name": "Flag of the United States", "description": "The United States is a country in North America.\nThis is the primary flag of r/AmericanFlagInPlace. The Americans fended off streamers, coordinated attacks, and formed alliances with many other comminutes.", "links": {"website": ["https://en.wikipedia.org/wiki/United_States", "https://en.wikipedia.org/wiki/Flag_of_the_United_States"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"1-15": [[250, 335], [250, 415], [400, 415], [400, 335]], "16-19": [[30, 381], [30, 455], [55, 455], [55, 432], [147, 432], [147, 411], [164, 411], [164, 381]], "24-258": [[-187, 96], [-187, 176], [2, 176], [2, 96]]}, "center": {"1-15": [325, 375], "16-19": [118, 407], "24-258": [-92, 136]}}, +{"id": 33, "name": "Flag of the United States", "description": "The United States is a country in North America.\nThis is the primary flag of r/AmericanFlagInPlace. The Americans fended off streamers, coordinated attacks, and formed alliances with many other comminutes.", "links": {"website": ["https://en.wikipedia.org/wiki/United_States", "https://en.wikipedia.org/wiki/Flag_of_the_United_States"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"1-15": [[250, 335], [250, 415], [400, 415], [400, 335]], "16-19": [[30, 381], [30, 455], [55, 455], [55, 432], [147, 432], [147, 411], [164, 411], [164, 381]], "24-258, T": [[-187, 96], [-187, 176], [2, 176], [2, 96]]}, "center": {"1-15": [325, 375], "16-19": [118, 407], "24-258, T": [-92, 136]}}, {"id": 34, "name": "Flag of Brazil", "description": "Brazil (Portuguese: Brasil) is a country in South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Brazil", "https://en.wikipedia.org/wiki/Flag_of_Brazil"], "subreddit": ["brasil"]}, "path": {"2-11": [[363, 121], [363, 175], [419, 175], [419, 121]], "12-21": [[329, 129], [329, 175], [424, 175], [424, 157], [419, 157], [419, 129]]}, "center": {"2-11": [391, 148], "12-21": [377, 152]}}, -{"id": 35, "name": "Flag of Azerbaijan", "description": "Azerbaijan is a country in the Caucasus region of Eastern Europe and Western Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Azerbaijan", "https://en.wikipedia.org/wiki/Flag_of_Azerbaijan"], "subreddit": ["placeazerbaijan", "azerbaijan"]}, "path": {"7-34": [[-364, 445], [-364, 463], [-238, 463], [-238, 445]], "35-56": [[-364, 445], [-364, 463], [-131, 463], [-134, 446]], "57-76": [[-364, 461], [-85, 461], [-85, 451], [-89, 451], [-89, 445], [-364, 445]], "77-82": [[-362, 445], [-362, 461], [-222, 461], [-222, 445]], "84-112": [[-368, 445], [-368, 461], [-81, 461], [-81, 451], [-79, 448], [-79, 445]], "113-133": [[-368, 445], [-368, 461], [-133, 461], [-133, 446]], "134-258": [[-368, 445], [-368, 461], [-98, 461], [-98, 446], [-165, 446], [-165, 445], [-390, 445], [-390, 461], [-368, 461]]}, "center": {"7-34": [-301, 454], "35-56": [-355, 454], "57-76": [-224, 453], "77-82": [-292, 453], "84-112": [-223, 453], "113-133": [-360, 453], "134-258": [-244, 453]}}, -{"id": 36, "name": "Flag of Bulgaria", "description": "Bulgaria is a country in Southeast Europe. The flag of Bulgaria is a tricolour consisting of three equal-sized horizontal bands of (from top to bottom) white, green, and red. The flag was first adopted after the 1877-1878 Russo-Turkish War, when Bulgaria gained de facto independence. The national flag at times was charged with the state emblem, especially during the communist era. The current flag was re-established with the 1991 Constitution of Bulgaria and was confirmed in a 1998 law.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria", "https://en.wikipedia.org/wiki/Flag_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"5-19": [[132, 258], [132, 308], [164, 308], [164, 258]], "34-58": [[-343, -6], [-343, 42], [-270, 42], [-270, -6]], "59-258": [[-368, -6], [-368, 42], [-270, 42], [-270, -6]]}, "center": {"5-19": [148, 283], "34-58": [-306, 18], "59-258": [-319, 18]}}, +{"id": 35, "name": "Flag of Azerbaijan", "description": "Azerbaijan is a country in the Caucasus region of Eastern Europe and Western Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Azerbaijan", "https://en.wikipedia.org/wiki/Flag_of_Azerbaijan"], "subreddit": ["placeazerbaijan", "azerbaijan"]}, "path": {"7-34": [[-364, 445], [-364, 463], [-238, 463], [-238, 445]], "35-56": [[-364, 445], [-364, 463], [-131, 463], [-134, 446]], "57-76": [[-364, 461], [-85, 461], [-85, 451], [-89, 451], [-89, 445], [-364, 445]], "77-82": [[-362, 445], [-362, 461], [-222, 461], [-222, 445]], "84-112": [[-368, 445], [-368, 461], [-81, 461], [-81, 451], [-79, 448], [-79, 445]], "113-133": [[-368, 445], [-368, 461], [-133, 461], [-133, 446]], "134-258, T": [[-368, 445], [-368, 461], [-98, 461], [-98, 446], [-165, 446], [-165, 445], [-390, 445], [-390, 461], [-368, 461]]}, "center": {"7-34": [-301, 454], "35-56": [-355, 454], "57-76": [-224, 453], "77-82": [-292, 453], "84-112": [-223, 453], "113-133": [-360, 453], "134-258, T": [-244, 453]}}, +{"id": 36, "name": "Flag of Bulgaria", "description": "Bulgaria is a country in Southeast Europe. The flag of Bulgaria is a tricolour consisting of three equal-sized horizontal bands of (from top to bottom) white, green, and red. The flag was first adopted after the 1877-1878 Russo-Turkish War, when Bulgaria gained de facto independence. The national flag at times was charged with the state emblem, especially during the communist era. The current flag was re-established with the 1991 Constitution of Bulgaria and was confirmed in a 1998 law.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria", "https://en.wikipedia.org/wiki/Flag_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"5-19": [[132, 258], [132, 308], [164, 308], [164, 258]], "34-58": [[-343, -6], [-343, 42], [-270, 42], [-270, -6]], "59-258, T": [[-368, -6], [-368, 42], [-270, 42], [-270, -6]]}, "center": {"5-19": [148, 283], "34-58": [-306, 18], "59-258, T": [-319, 18]}}, {"id": 37, "name": "Flag of Chile", "description": "Chile is a country in western South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Flag_of_Chile"], "subreddit": ["chile"]}, "path": {"7-23": [[-83, 482], [-83, 500], [92, 500], [92, 487], [-11, 487], [-26, 484], [-29, 484], [-34, 487], [-55, 487], [-66, 481]], "24-27": [[-143, 479], [-143, 500], [55, 500], [55, 481], [-58, 481], [-58, 479]], "28-41": [[-203, 479], [-203, 500], [31, 500], [31, 479], [-131, 479], [-140, 474], [-140, 477], [-146, 484], [-153, 489], [-159, 491], [-168, 491], [-178, 487], [-181, 489], [-188, 489], [-189, 479]], "42-55": [[-186, 478], [-186, 500], [-29, 500], [-29, 487], [-41, 492], [-53, 492], [-75, 481], [-82, 483], [-93, 478]], "56-71": [[-186, 499], [28, 499], [28, 479], [-7, 479], [-7, 487], [-29, 487], [-42, 493], [-65, 490], [-84, 470], [-84, 463], [-186, 463]], "72-90": [[-222, 445], [-222, 500], [27, 500], [27, 479], [0, 479], [0, 445]], "97-103": [[-171, 461], [-171, 500], [-34, 500], [-34, 490], [-37, 490], [-41, 492], [-53, 492], [-66, 487], [-76, 477], [-82, 461]], "104-138": [[-203, 461], [-203, 500], [-2, 500], [-2, 461], [-12, 461], [-12, 470], [-8, 468], [-7, 468], [-7, 480], [-16, 485], [-27, 484], [-35, 490], [-41, 492], [-57, 492], [-76, 477], [-81, 472], [-81, 461]]}, "center": {"7-23": [-67, 491], "24-27": [-69, 490], "28-41": [-136, 489], "42-55": [-109, 489], "56-71": [-132, 481], "72-90": [-97, 473], "97-103": [-112, 481], "104-138": [-105, 481]}}, -{"id": 38, "name": "Flag of Lithuania", "description": "Lithuania is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Flag_of_Lithuania"], "subreddit": ["lithuania", "BalticStates"]}, "path": {"84-258, 9-71": [[-74, 445], [-77, 452], [-77, 466], [-67, 481], [-59, 486], [-55, 487], [-51, 487], [-40, 471], [-40, 469], [-41, 469], [-44, 471], [-51, 471], [-57, 467], [-68, 449]]}, "center": {"84-258, 9-71": [-60, 475]}}, +{"id": 38, "name": "Flag of Lithuania", "description": "Lithuania is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Flag_of_Lithuania"], "subreddit": ["lithuania", "BalticStates"]}, "path": {"84-258, 9-71, T": [[-74, 445], [-77, 452], [-77, 466], [-67, 481], [-59, 486], [-55, 487], [-51, 487], [-40, 471], [-40, 469], [-41, 469], [-44, 471], [-51, 471], [-57, 467], [-68, 449]]}, "center": {"84-258, 9-71, T": [-60, 475]}}, {"id": 39, "name": "Flag of Lithuania", "description": "Lithuania is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Flag_of_Lithuania"], "subreddit": ["lithuania", "BalticStates"]}, "path": {"3-17": [[-134, 479], [-136, 485], [-136, 489], [-120, 489], [-117, 492], [-95, 492], [-95, 491], [68, 491], [68, 492], [114, 492], [114, 479]]}, "center": {"3-17": [79, 486]}}, -{"id": 40, "name": "Flag of Latvia", "description": "Latvia is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Latvia", "https://en.wikipedia.org/wiki/Flag_of_Latvia"], "subreddit": ["latvia", "BalticStates"]}, "path": {"13-258": [[-42, 447], [-17, 446], [-16, 463], [-32, 487], [-41, 491], [-51, 491], [-39, 470], [-35, 462], [-32, 455], [-37, 450]]}, "center": {"13-258": [-25, 461]}}, +{"id": 40, "name": "Flag of Latvia", "description": "Latvia is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Latvia", "https://en.wikipedia.org/wiki/Flag_of_Latvia"], "subreddit": ["latvia", "BalticStates"]}, "path": {"13-258, T": [[-42, 447], [-17, 446], [-16, 463], [-32, 487], [-41, 491], [-51, 491], [-39, 470], [-35, 462], [-32, 455], [-37, 450]]}, "center": {"13-258, T": [-25, 461]}}, {"id": 41, "name": "Flag of Latvia", "description": "Latvia is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Latvia", "https://en.wikipedia.org/wiki/Flag_of_Latvia"], "subreddit": ["latvia", "BalticStates"]}, "path": {"2-16": [[-95, 468], [-109, 475], [-117, 475], [-117, 479], [92, 479], [92, 468]], "17-20": [[-12, 468], [-12, 479], [92, 479], [92, 468]]}, "center": {"2-16": [-12, 474], "17-20": [40, 474]}}, -{"id": 42, "name": "Flag of Estonia", "description": "Estonia is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia", "https://en.wikipedia.org/wiki/Flag_of_Estonia"], "subreddit": ["Eesti", "BalticStates"]}, "path": {"4-258": [[-53, 427], [-66, 433], [-72, 439], [-74, 444], [-61, 460], [-60, 460], [-60, 455], [-57, 450], [-51, 446], [-20, 446], [-20, 443], [-28, 434], [-35, 429], [-43, 427]]}, "center": {"4-258": [-49, 437]}}, +{"id": 42, "name": "Flag of Estonia", "description": "Estonia is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia", "https://en.wikipedia.org/wiki/Flag_of_Estonia"], "subreddit": ["Eesti", "BalticStates"]}, "path": {"4-258, T": [[-53, 427], [-66, 433], [-72, 439], [-74, 444], [-61, 460], [-60, 460], [-60, 455], [-57, 450], [-51, 446], [-20, 446], [-20, 443], [-28, 434], [-35, 429], [-43, 427]]}, "center": {"4-258, T": [-49, 437]}}, {"id": 43, "name": "Flag of Estonia", "description": "Estonia is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia", "https://en.wikipedia.org/wiki/Flag_of_Estonia"], "subreddit": ["Eesti", "BalticStates"]}, "path": {"18-23": [[-15, 455], [-15, 459], [-12, 464], [-12, 469], [92, 469], [92, 455]], "2-17": [[-86, 455], [-89, 461], [-92, 467], [-92, 468], [104, 468], [104, 455]]}, "center": {"18-23": [39, 462], "2-17": [6, 462]}}, {"id": 44, "name": "Löded Diper", "description": "Löded Diper is a fictional band from the book series Diary Of A Wimpy Kid.", "links": {"website": ["https://diary-of-a-wimpy-kid.fandom.com/wiki/Home"], "subreddit": ["LodedDiper"]}, "path": {"15-20": [[237, 365], [237, 370], [246, 370], [246, 365]], "11-14": [[237, 365], [237, 377], [246, 377], [246, 365]]}, "center": {"15-20": [242, 368], "11-14": [242, 371]}}, {"id": 45, "name": "minecraft reverse T", "description": "", "links": {}, "path": {"17-18": [[473, 366], [475, 366], [474, 366], [474, 364]]}, "center": {"17-18": [474, 365]}}, -{"id": 46, "name": "Flag of Portugal", "description": "Portugal is a country in Southwestern Europe. The flag of Portugal has a rectangular bicolour with a field divided into green on the hoist, and red on the fly. The lesser version of the national coat of arms of Portugal (armillary sphere and Portuguese shield) is centered over the colour boundary at equal distance from the upper and lower edges.\n\nIn this edition of r/place, r/portugal didn't participate in protest of the upcoming Reddit API restrictions. Members of the Portuguese community created a new Discord community to coordinate r/place efforts, TugaPlace, that brought the attention of Portuguese Twitch streamers to r/place. In the beginning, there was a lack of communication between the community and the streamers, which caused the destruction of their ally Foxhole. Tensions grew after a mass ban wave of around 200 users in one night, including one of TugaPlace's co-owners. Two factions emerged on TugaPlace: the streamers and Discord mods who sided with them, and another group of mods and veteran r/place artists. After a series of controversial votes on the flag's design, some users and mods accused the streamers of rigging the vote, and were banned as well. These users subsequently formed a new community, originally named TugaPlaceOG and later changed to Place_PT, and started drawing azulejos (tiles) elsewhere.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal", "https://en.wikipedia.org/wiki/Flag_of_Portugal"], "subreddit": ["portugal", "Place_PT"], "discord": ["TugaPlace", "UqQ2j8PDzn"]}, "path": {"7-16": [[302, 233], [302, 265], [385, 265], [385, 233]], "17-54": [[281, 204], [281, 361], [500, 361], [500, 204]], "55-258": [[281, 204], [616, 204], [616, 361], [281, 361]]}, "center": {"7-16": [344, 249], "17-54": [391, 283], "55-258": [449, 283]}}, +{"id": 46, "name": "Flag of Portugal", "description": "Portugal is a country in Southwestern Europe. The flag of Portugal has a rectangular bicolour with a field divided into green on the hoist, and red on the fly. The lesser version of the national coat of arms of Portugal (armillary sphere and Portuguese shield) is centered over the colour boundary at equal distance from the upper and lower edges.\n\nIn this edition of r/place, r/portugal didn't participate in protest of the upcoming Reddit API restrictions. Members of the Portuguese community created a new Discord community to coordinate r/place efforts, TugaPlace, that brought the attention of Portuguese Twitch streamers to r/place. In the beginning, there was a lack of communication between the community and the streamers, which caused the destruction of their ally Foxhole. Tensions grew after a mass ban wave of around 200 users in one night, including one of TugaPlace's co-owners. Two factions emerged on TugaPlace: the streamers and Discord mods who sided with them, and another group of mods and veteran r/place artists. After a series of controversial votes on the flag's design, some users and mods accused the streamers of rigging the vote, and were banned as well. These users subsequently formed a new community, originally named TugaPlaceOG and later changed to Place_PT, and started drawing azulejos (tiles) elsewhere.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal", "https://en.wikipedia.org/wiki/Flag_of_Portugal"], "subreddit": ["portugal", "Place_PT"], "discord": ["TugaPlace", "UqQ2j8PDzn"]}, "path": {"7-16": [[302, 233], [302, 265], [385, 265], [385, 233]], "17-54": [[281, 204], [281, 361], [500, 361], [500, 204]], "55-258, T": [[281, 204], [616, 204], [616, 361], [281, 361]]}, "center": {"7-16": [344, 249], "17-54": [391, 283], "55-258, T": [449, 283]}}, {"id": 47, "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"3-18": [[323, 204], [323, 251], [399, 251], [399, 250], [500, 250], [500, 204]], "24-61": [[281, 129], [281, 188], [424, 188], [424, 129]]}, "center": {"3-18": [347, 228], "24-61": [353, 159]}}, -{"id": 48, "name": "Snow blower", "description": "A snow blower or snowblower or snow thrower is a machine for removing snow from an area where it is problematic, such as a driveway, sidewalk, roadway, railroad track, ice rink, or runway.", "links": {"website": ["https://en.wikipedia.org/wiki/Snow_blower#References"], "subreddit": ["Quebec"]}, "path": {"174-258": [[490, 146], [488, 162], [526, 163], [536, 136], [536, 125], [521, 125], [519, 137], [508, 150], [507, 153], [500, 153], [498, 152], [493, 148]]}, "center": {"174-258": [519, 153]}}, -{"id": 49, "name": "Flag of Greece", "description": "Greece, officially the Hellenic Republic, is a country in Southeast Europe. It is situated on the southern tip of the Balkans, and is located at the crossroads of Europe, Asia, and Africa.\n\nIn the process of the creation of the flag and its subsequent designs, it had to combat the void and was victim to at least a dozen raids, primarily from Turkish Tik-Tok streamers such as Baskoss and Özgür Karip (as can be seen by heat maps). \n\nConsequently, the community was forced to scale back their designs and planned expansion into a portion of the Romanian flag (as was agreed with r/place Romania Discord). \n\nNonetheless, despite the hurdles of having a small and somewhat disorganized team and the endless raids, the flag and its designs survived until the very end, thanks in no small part to the help provided by Romania's, Bulgaria's, Turkey's, and other countrys' discord servers.", "links": {"website": ["https://en.wikipedia.org/wiki/Greece", "https://en.wikipedia.org/wiki/Flag_of_Greece"], "subreddit": ["GreecePlace", "greece"], "discord": ["BWh2CCvM"]}, "path": {"2-18": [[419, 129], [419, 148], [500, 148], [500, 129]], "19-21": [[410, 129], [410, 148], [500, 148], [500, 129]], "47-58": [[-343, 42], [-343, 70], [-270, 70], [-270, 42]], "41-46": [[-343, 38], [-343, 49], [-335, 52], [-317, 49], [-320, 41], [-324, 39], [-331, 39], [-332, 38]], "59-258": [[-368, 42], [-368, 70], [-270, 70], [-270, 42]]}, "center": {"2-18": [460, 139], "19-21": [455, 139], "47-58": [-306, 56], "41-46": [-335, 45], "59-258": [-319, 56]}}, +{"id": 48, "name": "Snow blower", "description": "A snow blower or snowblower or snow thrower is a machine for removing snow from an area where it is problematic, such as a driveway, sidewalk, roadway, railroad track, ice rink, or runway.", "links": {"website": ["https://en.wikipedia.org/wiki/Snow_blower#References"], "subreddit": ["Quebec"]}, "path": {"174-258, T": [[490, 146], [488, 162], [526, 163], [536, 136], [536, 125], [521, 125], [519, 137], [508, 150], [507, 153], [500, 153], [498, 152], [493, 148]]}, "center": {"174-258, T": [519, 153]}}, +{"id": 49, "name": "Flag of Greece", "description": "Greece, officially the Hellenic Republic, is a country in Southeast Europe. It is situated on the southern tip of the Balkans, and is located at the crossroads of Europe, Asia, and Africa.\n\nIn the process of the creation of the flag and its subsequent designs, it had to combat the void and was victim to at least a dozen raids, primarily from Turkish Tik-Tok streamers such as Baskoss and Özgür Karip (as can be seen by heat maps). \n\nConsequently, the community was forced to scale back their designs and planned expansion into a portion of the Romanian flag (as was agreed with r/place Romania Discord). \n\nNonetheless, despite the hurdles of having a small and somewhat disorganized team and the endless raids, the flag and its designs survived until the very end, thanks in no small part to the help provided by Romania's, Bulgaria's, Turkey's, and other countrys' discord servers.", "links": {"website": ["https://en.wikipedia.org/wiki/Greece", "https://en.wikipedia.org/wiki/Flag_of_Greece"], "subreddit": ["GreecePlace", "greece"], "discord": ["BWh2CCvM"]}, "path": {"2-18": [[419, 129], [419, 148], [500, 148], [500, 129]], "19-21": [[410, 129], [410, 148], [500, 148], [500, 129]], "47-58": [[-343, 42], [-343, 70], [-270, 70], [-270, 42]], "41-46": [[-343, 38], [-343, 49], [-335, 52], [-317, 49], [-320, 41], [-324, 39], [-331, 39], [-332, 38]], "59-258, T": [[-368, 42], [-368, 70], [-270, 70], [-270, 42]]}, "center": {"2-18": [460, 139], "19-21": [455, 139], "47-58": [-306, 56], "41-46": [-335, 45], "59-258, T": [-319, 56]}}, {"id": 50, "name": "Flag of Colombia", "description": "Colombia is a country on the northwest coast of South America.\nThe flag in question was destroyed by the 1337 Coding School bots.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"2-7": [[468, 107], [468, 129], [500, 129], [500, 107]], "8-19": [[329, 97], [329, 129], [500, 129], [500, 107], [468, 107], [468, 97]], "20-54": [[205, 96], [205, 124], [209, 124], [209, 129], [500, 129], [500, 96]], "55-104": [[205, 98], [884, 98], [884, 129], [205, 129]], "105-112": [[172, 98], [172, 129], [884, 129], [884, 96]], "113-128": [[114, 98], [114, 129], [998, 129], [998, 96]]}, "center": {"2-7": [484, 118], "8-19": [409, 113], "20-54": [353, 113], "55-104": [545, 114], "105-112": [832, 113], "113-128": [939, 113]}}, -{"id": 51, "name": "Flag of Italy", "description": "Italy, officially the Republic of Italy (Repubblica Italiana), is a country in Southern Europe.\n\nThe eastern italian flag on r/place 2023 was grounds for the Great Italo-Peruvian war. On day 1, peruvian streamer CapitanGato (unaffiliated with r/peru) took the alleged mild overlap of the italian and peruvian flags as a national offense. A five day time-zone determined bloodbath ensued. Flags were taken, pixel arts were destroyed. But in the end, with the joined help of the surrounding communities, italy achieved victory.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy", "Italia"], "discord": ["italy"]}, "path": {"2-10": [[288, 1], [282, 8], [282, 15], [285, 18], [285, 51], [280, 51], [280, 72], [362, 72], [362, 13], [338, 7], [310, 7], [292, 5], [291, 1]], "11-34": [[275, -10], [279, 81], [293, 81], [293, 96], [369, 96], [369, -10]], "117-134": [[51, 132], [51, 244], [84, 244], [84, 132]], "135-258, 35-116": [[51, 32], [51, 250], [84, 250], [84, 32]]}, "center": {"2-10": [322, 40], "11-34": [323, 36], "117-134": [68, 188], "135-258, 35-116": [68, 141]}}, -{"id": 52, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America. Its flag features Mexico's coat of arms, depicting a golden eagle eating a snake on a cactus. This symbol is based on a legend from the ancient Aztec people, signifying the place where the Aztecs should build their empire.\n\nRed, white, and green are the colors of the national army in Mexico. The central emblem is the Mexican coat of arms, based on the Aztec symbol for Tenochtitlan (now Mexico City), the center of the Aztec Empire. It recalls the legend of an eagle sitting on a cactus while devouring a serpent that signaled to the Aztecs where to found their city, Tenochtitlan.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"45": [[-270, -6], [-270, 71], [-191, 73], [-192, -6]], "46-68": [[-270, -6], [-191, -6], [-191, 125], [-206, 125], [-206, 134], [-246, 134], [-246, 128], [-258, 129], [-258, 146], [-270, 146]], "69-71": [[-270, -6], [-191, -6], [-191, 127], [-206, 127], [-206, 134], [-246, 134], [-246, 169], [-270, 169]], "72-73": [[-270, -27], [-270, 169], [-191, 169], [-191, -27]], "74-93": [[-270, -27], [-191, -27], [-191, 242], [-215, 242], [-215, 255], [-239, 255], [-239, 276], [-270, 276]], "95-245": [[-270, -27], [-270, 176], [-189, 176], [-189, 98], [-191, 98], [-191, -27]], "21-44": [[-270, -25], [-271, 71], [-191, 72], [-191, -26]], "246-258": [[-270, 87], [-269, 176], [-191, 176], [-190, 97], [-191, 97], [-192, 86]]}, "center": {"45": [-231, 33], "46-68": [-231, 64], "69-71": [-231, 71], "72-73": [-230, 71], "74-93": [-231, 52], "95-245": [-230, 109], "21-44": [-231, 23], "246-258": [-230, 131]}}, -{"id": 53, "name": "Flag of Armenia", "description": "Armenia is a country in the Caucasus region of Eastern Europe and Western Asia. This flag was originally a little to the right, but neighboring Bonjwa helped relocate and protect it.", "links": {"website": ["https://en.wikipedia.org/wiki/Armenia", "https://en.wikipedia.org/wiki/Flag_of_Armenia"], "subreddit": ["armenia"]}, "path": {"12-16": [[-334, -348], [-334, -335], [-288, -335], [-288, -348]], "1-11": [[-281, -356], [-281, -343], [-219, -343], [-219, -356]], "17-258": [[-334, -343], [-334, -330], [-288, -330], [-288, -343]]}, "center": {"12-16": [-311, -341], "1-11": [-250, -349], "17-258": [-311, -336]}}, -{"id": 54, "name": "osu!", "description": "osu! is a free-to-play rhythm game created by Dean \"peppy\" Herbert and released in 2007. It was originally created for Microsoft Windows and has since been ported to macOS, Linux, Android, and iOS.\n\nThe garish, large, and flat pink osu! logo has been an iconic and controversial fixture of r/place ever since its original incarnation in 2017.", "links": {"website": ["https://osu.ppy.sh/", "https://en.wikipedia.org/wiki/Osu!"], "subreddit": ["osuplace", "osugame"]}, "path": {"4-258": [[223, 190], [222, 191], [219, 191], [218, 192], [215, 192], [214, 193], [212, 193], [211, 194], [210, 195], [209, 195], [208, 196], [207, 196], [205, 198], [204, 198], [203, 199], [203, 203], [199, 203], [198, 204], [198, 205], [196, 207], [196, 208], [195, 209], [195, 210], [194, 211], [194, 212], [193, 213], [193, 214], [192, 215], [192, 217], [191, 218], [191, 222], [190, 223], [190, 229], [191, 230], [191, 236], [192, 237], [192, 238], [193, 239], [193, 242], [194, 243], [194, 244], [196, 246], [196, 247], [198, 249], [198, 250], [204, 256], [205, 256], [207, 258], [208, 258], [210, 260], [211, 260], [212, 261], [214, 261], [215, 262], [217, 262], [219, 263], [222, 263], [223, 264], [230, 264], [231, 263], [236, 263], [237, 262], [239, 262], [240, 261], [242, 261], [243, 260], [244, 260], [246, 258], [247, 258], [249, 256], [250, 256], [256, 250], [256, 249], [258, 247], [258, 246], [259, 245], [259, 244], [261, 242], [261, 240], [262, 239], [262, 236], [263, 235], [263, 232], [264, 231], [264, 230], [263, 229], [264, 228], [264, 226], [263, 225], [263, 222], [262, 221], [262, 215], [261, 214], [261, 213], [260, 212], [260, 211], [259, 210], [259, 209], [258, 208], [258, 207], [256, 205], [256, 204], [250, 198], [249, 198], [247, 196], [246, 196], [245, 195], [244, 195], [242, 193], [240, 193], [239, 192], [237, 192], [236, 191], [232, 191], [231, 190]]}, "center": {"4-258": [227, 227]}}, +{"id": 51, "name": "Flag of Italy", "description": "Italy, officially the Republic of Italy (Repubblica Italiana), is a country in Southern Europe.\n\nThe eastern italian flag on r/place 2023 was grounds for the Great Italo-Peruvian war. On day 1, peruvian streamer CapitanGato (unaffiliated with r/peru) took the alleged mild overlap of the italian and peruvian flags as a national offense. A five day time-zone determined bloodbath ensued. Flags were taken, pixel arts were destroyed. But in the end, with the joined help of the surrounding communities, italy achieved victory.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy", "Italia"], "discord": ["italy"]}, "path": {"2-10": [[288, 1], [282, 8], [282, 15], [285, 18], [285, 51], [280, 51], [280, 72], [362, 72], [362, 13], [338, 7], [310, 7], [292, 5], [291, 1]], "11-34": [[275, -10], [279, 81], [293, 81], [293, 96], [369, 96], [369, -10]], "117-134": [[51, 132], [51, 244], [84, 244], [84, 132]], "135-258, 35-116, T": [[51, 32], [51, 250], [84, 250], [84, 32]]}, "center": {"2-10": [322, 40], "11-34": [323, 36], "117-134": [68, 188], "135-258, 35-116, T": [68, 141]}}, +{"id": 52, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America. Its flag features Mexico's coat of arms, depicting a golden eagle eating a snake on a cactus. This symbol is based on a legend from the ancient Aztec people, signifying the place where the Aztecs should build their empire.\n\nRed, white, and green are the colors of the national army in Mexico. The central emblem is the Mexican coat of arms, based on the Aztec symbol for Tenochtitlan (now Mexico City), the center of the Aztec Empire. It recalls the legend of an eagle sitting on a cactus while devouring a serpent that signaled to the Aztecs where to found their city, Tenochtitlan.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"45": [[-270, -6], [-270, 71], [-191, 73], [-192, -6]], "46-68": [[-270, -6], [-191, -6], [-191, 125], [-206, 125], [-206, 134], [-246, 134], [-246, 128], [-258, 129], [-258, 146], [-270, 146]], "69-71": [[-270, -6], [-191, -6], [-191, 127], [-206, 127], [-206, 134], [-246, 134], [-246, 169], [-270, 169]], "72-73": [[-270, -27], [-270, 169], [-191, 169], [-191, -27]], "74-93": [[-270, -27], [-191, -27], [-191, 242], [-215, 242], [-215, 255], [-239, 255], [-239, 276], [-270, 276]], "95-245": [[-270, -27], [-270, 176], [-189, 176], [-189, 98], [-191, 98], [-191, -27]], "21-44": [[-270, -25], [-271, 71], [-191, 72], [-191, -26]], "246-258, T": [[-270, 87], [-269, 176], [-191, 176], [-190, 97], [-191, 97], [-192, 86]]}, "center": {"45": [-231, 33], "46-68": [-231, 64], "69-71": [-231, 71], "72-73": [-230, 71], "74-93": [-231, 52], "95-245": [-230, 109], "21-44": [-231, 23], "246-258, T": [-230, 131]}}, +{"id": 53, "name": "Flag of Armenia", "description": "Armenia is a country in the Caucasus region of Eastern Europe and Western Asia. This flag was originally a little to the right, but neighboring Bonjwa helped relocate and protect it.", "links": {"website": ["https://en.wikipedia.org/wiki/Armenia", "https://en.wikipedia.org/wiki/Flag_of_Armenia"], "subreddit": ["armenia"]}, "path": {"12-16": [[-334, -348], [-334, -335], [-288, -335], [-288, -348]], "1-11": [[-281, -356], [-281, -343], [-219, -343], [-219, -356]], "17-258, T": [[-334, -343], [-334, -330], [-288, -330], [-288, -343]]}, "center": {"12-16": [-311, -341], "1-11": [-250, -349], "17-258, T": [-311, -336]}}, +{"id": 54, "name": "osu!", "description": "osu! is a free-to-play rhythm game created by Dean \"peppy\" Herbert and released in 2007. It was originally created for Microsoft Windows and has since been ported to macOS, Linux, Android, and iOS.\n\nThe garish, large, and flat pink osu! logo has been an iconic and controversial fixture of r/place ever since its original incarnation in 2017.", "links": {"website": ["https://osu.ppy.sh/", "https://en.wikipedia.org/wiki/Osu!"], "subreddit": ["osuplace", "osugame"]}, "path": {"4-258, T": [[223, 190], [222, 191], [219, 191], [218, 192], [215, 192], [214, 193], [212, 193], [211, 194], [210, 195], [209, 195], [208, 196], [207, 196], [205, 198], [204, 198], [203, 199], [203, 203], [199, 203], [198, 204], [198, 205], [196, 207], [196, 208], [195, 209], [195, 210], [194, 211], [194, 212], [193, 213], [193, 214], [192, 215], [192, 217], [191, 218], [191, 222], [190, 223], [190, 229], [191, 230], [191, 236], [192, 237], [192, 238], [193, 239], [193, 242], [194, 243], [194, 244], [196, 246], [196, 247], [198, 249], [198, 250], [204, 256], [205, 256], [207, 258], [208, 258], [210, 260], [211, 260], [212, 261], [214, 261], [215, 262], [217, 262], [219, 263], [222, 263], [223, 264], [230, 264], [231, 263], [236, 263], [237, 262], [239, 262], [240, 261], [242, 261], [243, 260], [244, 260], [246, 258], [247, 258], [249, 256], [250, 256], [256, 250], [256, 249], [258, 247], [258, 246], [259, 245], [259, 244], [261, 242], [261, 240], [262, 239], [262, 236], [263, 235], [263, 232], [264, 231], [264, 230], [263, 229], [264, 228], [264, 226], [263, 225], [263, 222], [262, 221], [262, 215], [261, 214], [261, 213], [260, 212], [260, 211], [259, 210], [259, 209], [258, 208], [258, 207], [256, 205], [256, 204], [250, 198], [249, 198], [247, 196], [246, 196], [245, 195], [244, 195], [242, 193], [240, 193], [239, 192], [237, 192], [236, 191], [232, 191], [231, 190]]}, "center": {"4-258, T": [227, 227]}}, {"id": 55, "name": "Rainbow flag", "description": "A pride flag representing the LGBT community as a whole.", "links": {"website": ["https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)", "https://en.wikipedia.org/wiki/LGBT"]}, "path": {"2-14": [[273, 165], [273, 199], [326, 199], [326, 165]], "15-23": [[282, 165], [282, 200], [329, 200], [329, 165]]}, "center": {"2-14": [300, 182], "15-23": [306, 183]}}, -{"id": 56, "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica", "ticos"]}, "path": {"2-12": [[19, 57], [15, 62], [15, 78], [13, 78], [13, 80], [15, 83], [63, 83], [65, 78], [63, 57]], "13-20": [[25, 66], [25, 82], [43, 82], [43, 83], [110, 83], [113, 73], [110, 66]], "21-41": [[-142, 65], [-142, 84], [-32, 84], [-32, 83], [59, 83], [59, 82], [111, 82], [111, 65]], "42-60": [[-142, 65], [-142, 84], [3, 84], [3, 83], [51, 83], [51, 65]], "61-258": [[-79, 32], [-79, 84], [2, 84], [2, 83], [51, 83], [51, 32]]}, "center": {"2-12": [39, 70], "13-20": [69, 75], "21-41": [-37, 75], "42-60": [-45, 75], "61-258": [-14, 58]}}, -{"id": 57, "name": "Flag of Switzerland", "description": "Switzerland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "Switzerland"], "discord": ["vQ3P3DXf"]}, "path": {"7-258": [[210, -368], [210, -334], [248, -334], [248, -368], [183, -368], [183, -358], [210, -358], [212, -385], [31, -388], [19, -380], [13, -377], [14, -372], [15, -369], [211, -367], [335, -370], [403, -371], [402, -377], [391, -385], [381, -387], [260, -388], [252, -395], [233, -406], [223, -397], [217, -402], [200, -386]]}, "center": {"7-258": [235, -385]}}, -{"id": 58, "name": "Flag of India", "description": "India is a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace", "mandirplace"]}, "path": {"1-8": [[287, -293], [287, -179], [345, -179], [345, -199], [500, -199], [500, -292]], "21-26": [[305, -288], [305, -279], [407, -279], [426, -283], [426, -288]], "27-258": [[287, -288], [287, -193], [500, -192], [500, -288]]}, "center": {"1-8": [334, -245], "21-26": [364, -283], "27-258": [394, -240]}}, -{"id": 59, "name": "Destiny", "description": "Steven Kenneth \"Destiny\" Bonnell II is a gaming and politics Twitch streamer and YouTuber.", "links": {"website": ["https://destiny.gg/", "https://en.wikipedia.org/wiki/Destiny_(streamer)"], "subreddit": ["Destiny"]}, "path": {"4": [[93, -205], [93, -191], [96, -191], [96, -136], [161, -136], [161, -205]], "9-18": [[91, -206], [91, -100], [251, -100], [250, -178], [185, -178], [185, -206]], "7-8": [[91, -206], [91, -135], [248, -136], [248, -178], [185, -178], [185, -206]], "5-6": [[91, -135], [185, -135], [184, -206], [91, -206]], "2-3": [[95, -205], [95, -201], [96, -201], [96, -191], [161, -191], [161, -205], [95, -205], [95, -201]], "19-258": [[91, -206], [91, -99], [249, -99], [249, -206]]}, "center": {"4": [128, -172], "9-18": [142, -151], "7-8": [150, -171], "5-6": [138, -170], "2-3": [128, -198], "19-258": [170, -152]}}, -{"id": 60, "name": "Transgender flag", "description": "A pride flag representing the transgender community. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"], "subreddit": ["transplace"]}, "path": {"3-18": [[90, 40], [77, 51], [77, 81], [87, 88], [191, 88], [191, 81], [198, 77], [201, 83], [205, 83], [207, 81], [212, 81], [215, 83], [236, 83], [237, 78], [248, 78], [248, 40]], "19-43": [[108, 40], [108, 88], [186, 88], [195, 78], [209, 78], [214, 83], [236, 83], [236, 75], [248, 65], [248, 40]], "44-258": [[115, 37], [279, 37], [279, 68], [198, 68], [191, 77], [185, 77], [185, 90], [115, 90]]}, "center": {"3-18": [163, 64], "19-43": [132, 64], "44-258": [142, 64]}}, +{"id": 56, "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica", "ticos"]}, "path": {"2-12": [[19, 57], [15, 62], [15, 78], [13, 78], [13, 80], [15, 83], [63, 83], [65, 78], [63, 57]], "13-20": [[25, 66], [25, 82], [43, 82], [43, 83], [110, 83], [113, 73], [110, 66]], "21-41": [[-142, 65], [-142, 84], [-32, 84], [-32, 83], [59, 83], [59, 82], [111, 82], [111, 65]], "42-60": [[-142, 65], [-142, 84], [3, 84], [3, 83], [51, 83], [51, 65]], "61-258, T": [[-79, 32], [-79, 84], [2, 84], [2, 83], [51, 83], [51, 32]]}, "center": {"2-12": [39, 70], "13-20": [69, 75], "21-41": [-37, 75], "42-60": [-45, 75], "61-258, T": [-14, 58]}}, +{"id": 57, "name": "Flag of Switzerland", "description": "Switzerland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "Switzerland"], "discord": ["vQ3P3DXf"]}, "path": {"7-258, T": [[210, -368], [210, -334], [248, -334], [248, -368], [183, -368], [183, -358], [210, -358], [212, -385], [31, -388], [19, -380], [13, -377], [14, -372], [15, -369], [211, -367], [335, -370], [403, -371], [402, -377], [391, -385], [381, -387], [260, -388], [252, -395], [233, -406], [223, -397], [217, -402], [200, -386]]}, "center": {"7-258, T": [235, -385]}}, +{"id": 58, "name": "Flag of India", "description": "India is a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace", "mandirplace"]}, "path": {"1-8": [[287, -293], [287, -179], [345, -179], [345, -199], [500, -199], [500, -292]], "21-26": [[305, -288], [305, -279], [407, -279], [426, -283], [426, -288]], "27-258, T": [[287, -288], [287, -193], [500, -192], [500, -288]]}, "center": {"1-8": [334, -245], "21-26": [364, -283], "27-258, T": [394, -240]}}, +{"id": 59, "name": "Destiny", "description": "Steven Kenneth \"Destiny\" Bonnell II is a gaming and politics Twitch streamer and YouTuber.", "links": {"website": ["https://destiny.gg/", "https://en.wikipedia.org/wiki/Destiny_(streamer)"], "subreddit": ["Destiny"]}, "path": {"4": [[93, -205], [93, -191], [96, -191], [96, -136], [161, -136], [161, -205]], "9-18": [[91, -206], [91, -100], [251, -100], [250, -178], [185, -178], [185, -206]], "7-8": [[91, -206], [91, -135], [248, -136], [248, -178], [185, -178], [185, -206]], "5-6": [[91, -135], [185, -135], [184, -206], [91, -206]], "2-3": [[95, -205], [95, -201], [96, -201], [96, -191], [161, -191], [161, -205], [95, -205], [95, -201]], "19-258, T": [[91, -206], [91, -99], [249, -99], [249, -206]]}, "center": {"4": [128, -172], "9-18": [142, -151], "7-8": [150, -171], "5-6": [138, -170], "2-3": [128, -198], "19-258, T": [170, -152]}}, +{"id": 60, "name": "Transgender flag", "description": "A pride flag representing the transgender community. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"], "subreddit": ["transplace"]}, "path": {"3-18": [[90, 40], [77, 51], [77, 81], [87, 88], [191, 88], [191, 81], [198, 77], [201, 83], [205, 83], [207, 81], [212, 81], [215, 83], [236, 83], [237, 78], [248, 78], [248, 40]], "19-43": [[108, 40], [108, 88], [186, 88], [195, 78], [209, 78], [214, 83], [236, 83], [236, 75], [248, 65], [248, 40]], "44-258, T": [[115, 37], [279, 37], [279, 68], [198, 68], [191, 77], [185, 77], [185, 90], [115, 90]]}, "center": {"3-18": [163, 64], "19-43": [132, 64], "44-258, T": [142, 64]}}, {"id": 61, "name": "Transgender flag", "description": "A pride flag representing the transgender community. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"], "subreddit": ["transplace"]}, "path": {"2-17": [[250, 72], [250, 118], [417, 118], [417, 72]]}, "center": {"2-17": [334, 95]}}, -{"id": 62, "name": "Flag of Canada", "description": "Canada is a country in North America sharing the largest land border in the world along with the United States. The maple leaf is the national symbol of Canada and is prominently displayed in Canada's flag.\n\nThis was the original flag location of r/placecanada but was later abandoned and dubbed the \"decoy flag\" after the Moroccan 1337 Coding School took over and constantly overwrote any changes made to it. After all other Canadian flag locations got destroyed, r/placecanada returned and managed to get a new flag set up with the help of Germany and Touhou.\n\nThe maple leaf on the Canadian flag has become a meme in r/place. In both the 2022 and 2023 versions, Canadians struggled to draw the leaf and trolls purposefully messed the leaf up. However in 2023, after a few days, the leaf was successfully completed with the help of r/placeDE and stayed pristine until the very end.", "links": {"website": ["https://en.wikipedia.org/wiki/Canada", "https://en.wikipedia.org/wiki/Flag_of_Canada"], "subreddit": ["placecanada", "canada"], "discord": ["placecanada"]}, "path": {"2-21": [[90, 165], [90, 195], [140, 195], [140, 165]], "22-53": [[90, 165], [90, 196], [141, 196], [141, 165]], "54-258": [[159, 150], [159, 196], [90, 196], [90, 150]]}, "center": {"2-21": [115, 180], "22-53": [116, 181], "54-258": [125, 173]}}, +{"id": 62, "name": "Flag of Canada", "description": "Canada is a country in North America sharing the largest land border in the world along with the United States. The maple leaf is the national symbol of Canada and is prominently displayed in Canada's flag.\n\nThis was the original flag location of r/placecanada but was later abandoned and dubbed the \"decoy flag\" after the Moroccan 1337 Coding School took over and constantly overwrote any changes made to it. After all other Canadian flag locations got destroyed, r/placecanada returned and managed to get a new flag set up with the help of Germany and Touhou.\n\nThe maple leaf on the Canadian flag has become a meme in r/place. In both the 2022 and 2023 versions, Canadians struggled to draw the leaf and trolls purposefully messed the leaf up. However in 2023, after a few days, the leaf was successfully completed with the help of r/placeDE and stayed pristine until the very end.", "links": {"website": ["https://en.wikipedia.org/wiki/Canada", "https://en.wikipedia.org/wiki/Flag_of_Canada"], "subreddit": ["placecanada", "canada"], "discord": ["placecanada"]}, "path": {"2-21": [[90, 165], [90, 195], [140, 195], [140, 165]], "22-53": [[90, 165], [90, 196], [141, 196], [141, 165]], "54-258, T": [[159, 150], [159, 196], [90, 196], [90, 150]]}, "center": {"2-21": [115, 180], "22-53": [116, 181], "54-258, T": [125, 173]}}, {"id": 63, "name": "Flag of Denmark", "description": "Denmark is a country in Northern Europe. Its flag is known as the Dannebrog.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark", "https://en.wikipedia.org/wiki/Flag_of_Denmark"], "subreddit": ["Denmark"]}, "path": {"2-20": [[0, 378], [0, 413], [30, 413], [30, 378]]}, "center": {"2-20": [15, 396]}}, {"id": 64, "name": "Flag of Bolivia", "description": "Bolivia is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Flag_of_Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"18-22": [[-7, 474], [-11, 485], [-11, 488], [55, 488], [55, 474]]}, "center": {"18-22": [22, 481]}}, {"id": 65, "name": "Project Moon", "description": "Project Moon is an indie South Korean game developer known for the games Lobotomy Corporation, Library of Ruina, and Limbus Company.", "links": {"website": ["https://projectmoon.studio/"], "subreddit": ["Project_Moon", "LobotomyCorp", "libraryofruina", "LimbusCompany"]}, "path": {"19-52": [[408, 30], [408, 51], [455, 51], [455, 30]]}, "center": {"19-52": [432, 41]}}, -{"id": 66, "name": "Flag of Scotland", "description": "Scotland is a country in the United Kingdom. The national flag of Scotland is known as St. Andrew's Cross.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland", "https://en.wikipedia.org/wiki/Flag_of_Scotland"], "subreddit": ["Scotland"]}, "path": {"3-258": [[-334, -222], [-334, -205], [-303, -205], [-303, -222]]}, "center": {"3-258": [-318, -213]}}, -{"id": 67, "name": "Flag of Wales", "description": "Wales is one of the countries in the United Kingdom. Its flag features the Dragon of Cadwaladr, also known as Y Ddraig Goch (The Red Dragon).", "links": {"website": ["https://en.wikipedia.org/wiki/Wales", "https://en.wikipedia.org/wiki/Flag_of_Wales"], "subreddit": ["Wales"]}, "path": {"10-17": [[-334, -205], [-334, -188], [-303, -188], [-303, -205]], "18-258": [[-334, -205], [-334, -178], [-303, -178], [-303, -205]]}, "center": {"10-17": [-318, -196], "18-258": [-318, -191]}}, -{"id": 68, "name": "OMORI", "description": "OMORI is a psychological horror indie role-playing game made by OMOCAT and released on Steam on December 25, 2020 after six years of development. In the EarthBound-inspired game, the main character and his colorful group of friends venture through a dream-like world.", "links": {"website": ["https://www.omori-game.com/", "https://store.steampowered.com/app/1150690/OMORI/", "https://en.wikipedia.org/wiki/Omori_(video_game)"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"4-258": [[-303, -259], [-303, -168], [-238, -168], [-238, -178], [-196, -178], [-196, -259]]}, "center": {"4-258": [-259, -216]}}, +{"id": 66, "name": "Flag of Scotland", "description": "Scotland is a country in the United Kingdom. The national flag of Scotland is known as St. Andrew's Cross.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland", "https://en.wikipedia.org/wiki/Flag_of_Scotland"], "subreddit": ["Scotland"]}, "path": {"3-258, T": [[-334, -222], [-334, -205], [-303, -205], [-303, -222]]}, "center": {"3-258, T": [-318, -213]}}, +{"id": 67, "name": "Flag of Wales", "description": "Wales is one of the countries in the United Kingdom. Its flag features the Dragon of Cadwaladr, also known as Y Ddraig Goch (The Red Dragon).", "links": {"website": ["https://en.wikipedia.org/wiki/Wales", "https://en.wikipedia.org/wiki/Flag_of_Wales"], "subreddit": ["Wales"]}, "path": {"10-17": [[-334, -205], [-334, -188], [-303, -188], [-303, -205]], "18-258, T": [[-334, -205], [-334, -178], [-303, -178], [-303, -205]]}, "center": {"10-17": [-318, -196], "18-258, T": [-318, -191]}}, +{"id": 68, "name": "OMORI", "description": "OMORI is a psychological horror indie role-playing game made by OMOCAT and released on Steam on December 25, 2020 after six years of development. In the EarthBound-inspired game, the main character and his colorful group of friends venture through a dream-like world.", "links": {"website": ["https://www.omori-game.com/", "https://store.steampowered.com/app/1150690/OMORI/", "https://en.wikipedia.org/wiki/Omori_(video_game)"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"4-258, T": [[-303, -259], [-303, -168], [-238, -168], [-238, -178], [-196, -178], [-196, -259]]}, "center": {"4-258, T": [-259, -216]}}, {"id": 69, "name": "Döner kebab", "description": "A döner kebab is a popular dish in Germany where meat, salad, and sauce are stuffed into a partially sliced flatbread. This drawing can be found on most German Döner kebab paper packaging.", "links": {"website": ["https://en.wikipedia.org/wiki/Doner_kebab"]}, "path": {"5-18": [[185, -288], [185, -178], [287, -178], [287, -288]], "19-24": [[186, -285], [186, -206], [251, -206], [251, -193], [287, -193], [287, -285]]}, "center": {"5-18": [236, -233], "19-24": [226, -245]}}, {"id": 70, "name": "Hololive", "description": "Hololive Production is a virtual YouTuber (VTuber) agency owned by Japanese tech entertainment company Cover Corporation. In addition to acting as a multi-channel network, Hololive Production also handles merchandising especially in music production and concert organization. The brand gained popularity as a talent agency for popular VTubers, managing 75 talents as of January 2023. Among them are the most subscribed active VTubers in Japan (Houshou Marine), Southeast Asia (Kobo Kanaeru), and North America (Gawr Gura). The star-like logo on the right depicts Holostars, the male-only branch, while \"Hololive\" represents the female-only unit.", "links": {"website": ["https://en.hololive.tv/", "https://en.wikipedia.org/wiki/Hololive_Production"], "subreddit": ["Hololive"], "discord": ["vtubersplace", "holofans"]}, "path": {"2-16": [[-166, 389], [-169, 392], [-169, 433], [-165, 437], [-163, 437], [-133, 422], [-130, 420], [-129, 420], [-129, 422], [-36, 422], [-36, 406], [-130, 406], [-163, 389]], "17-68": [[-166, 389], [-169, 392], [-169, 434], [-165, 437], [-164, 437], [-131, 420], [-129, 420], [-129, 422], [-74, 422], [-74, 406], [-130, 406], [-159, 391], [-164, 389]], "69-98": [[-74, 405], [-74, 422], [-130, 422], [-161, 438], [-166, 439], [-169, 437], [-170, 436], [-170, 390], [-166, 388], [-164, 388], [-130, 405], [-101, 405]], "99-151": [[-166, 389], [-166, 437], [-164, 437], [-135, 422], [-58, 422], [-58, 406], [-131, 406], [-162, 390]]}, "center": {"2-16": [-152, 413], "17-68": [-153, 413], "69-98": [-152, 414], "99-151": [-151, 413]}}, -{"id": 71, "name": "NIJISANJI", "description": "NIJISANJI is a VTuber agency featuring a variety of talented influencers who create exciting content. The objective of this project is to accelerate the beginning of the next generation of entertainment through various activities and services such as events, goods and digital content, original music, etc. Currently, over 200 VTubers are active, regularly creating unique content on various video streaming platforms such as YouTube.", "links": {"website": ["https://www.nijisanji.jp/en", "https://en.wikipedia.org/wiki/Nijisanji"], "subreddit": ["Nijisanji"], "discord": ["vtubersplace"]}, "path": {"2-55": [[-163, 438], [-163, 443], [-167, 443], [-169, 445], [-174, 445], [-181, 451], [-187, 464], [-187, 471], [-183, 480], [-183, 482], [-186, 489], [-185, 490], [-179, 487], [-176, 487], [-167, 491], [-159, 491], [-150, 487], [-143, 481], [-139, 470], [-138, 470], [-138, 468], [-135, 467], [-135, 462], [-138, 452], [-143, 445], [-159, 438]], "88-258": [[-648, -297], [-655, -294], [-663, -287], [-668, -277], [-668, -268], [-664, -259], [-664, -256], [-667, -250], [-667, -248], [-665, -248], [-657, -252], [-651, -248], [-635, -248], [-630, -251], [-623, -257], [-618, -271], [-614, -274], [-614, -280], [-618, -288], [-625, -296], [-634, -301], [-640, -301]]}, "center": {"2-55": [-163, 467], "88-258": [-643, -273]}}, +{"id": 71, "name": "NIJISANJI", "description": "NIJISANJI is a VTuber agency featuring a variety of talented influencers who create exciting content. The objective of this project is to accelerate the beginning of the next generation of entertainment through various activities and services such as events, goods and digital content, original music, etc. Currently, over 200 VTubers are active, regularly creating unique content on various video streaming platforms such as YouTube.", "links": {"website": ["https://www.nijisanji.jp/en", "https://en.wikipedia.org/wiki/Nijisanji"], "subreddit": ["Nijisanji"], "discord": ["vtubersplace"]}, "path": {"2-55": [[-163, 438], [-163, 443], [-167, 443], [-169, 445], [-174, 445], [-181, 451], [-187, 464], [-187, 471], [-183, 480], [-183, 482], [-186, 489], [-185, 490], [-179, 487], [-176, 487], [-167, 491], [-159, 491], [-150, 487], [-143, 481], [-139, 470], [-138, 470], [-138, 468], [-135, 467], [-135, 462], [-138, 452], [-143, 445], [-159, 438]], "88-258, T": [[-648, -297], [-655, -294], [-663, -287], [-668, -277], [-668, -268], [-664, -259], [-664, -256], [-667, -250], [-667, -248], [-665, -248], [-657, -252], [-651, -248], [-635, -248], [-630, -251], [-623, -257], [-618, -271], [-614, -274], [-614, -280], [-618, -288], [-625, -296], [-634, -301], [-640, -301]]}, "center": {"2-55": [-163, 467], "88-258, T": [-643, -273]}}, {"id": 72, "name": "VShojo", "description": "VShojo is a VTuber organization founded by TheGunrun and based in San Francisco, California, United States. VShojo brands itself as a talent-first VTuber company. Unlike Japan-based VTuber organizations, VShojo primarily uses Twitch for livestreaming, with YouTube reserved primarily for highlight clips and edited content.", "links": {"website": ["https://www.vshojo.com/", "https://en.wikipedia.org/wiki/VShojo"], "subreddit": ["VShojo"], "discord": ["vtubersplace"]}, "path": {"3-60, 71-90": [[-133, 430], [-133, 435], [-132, 436], [-132, 443], [-133, 443], [-133, 447], [-134, 448], [-134, 454], [-125, 473], [-110, 473], [-109, 474], [-106, 474], [-101, 472], [-93, 467], [-86, 454], [-86, 440], [-85, 440], [-85, 428], [-101, 428], [-106, 426], [-113, 426], [-116, 429], [-124, 429], [-125, 430]]}, "center": {"3-60, 71-90": [-110, 451]}}, -{"id": 73, "name": "Flag of Brazil", "description": "The national flag of Brazil is a blue disc depicting a starry sky (which includes the Southern Cross) spanned by a curved band inscribed with the national motto \"Ordem e Progresso\" (\"Order and Progress\"), within a yellow rhombus, on a green field. It was officially adopted on 19 November 1889 — four days after the Proclamation of the Republic, to replace the flag of the Empire of Brazil. \n\nThere are 2 possible meanings for the flag's colors: the popular meaning and the original meaning.\n\nPopular meaning: green - represents the Brazilian vegetation; yellow - represents gold and riches; blue - represents the Brazilian sky and rivers; white - represents the desire for peace.\n\nOriginal Meaning: Green refers to the House of Bragança, dynasty of Dom Pedro I, first emperor of Brazil. The yellow, on the other hand, refers to the House of Habsburg, dynasty of Empress Maria Leopoldina of Austria, wife of Dom Pedro I.\n\nEach star, corresponding to a Brazilian Federal Unit, is sized in proportion relative to its geographic size, and, according to Brazilian Law, the flag must be updated in case of the creation or extinction of a state. At the time the flag was first adopted in 1889, it had 21 stars. It then received one more star in 1960 (representing the state of Guanabara), then another in 1968 (representing Acre), and finally four more stars in 1992 (representing Amapá, Roraima, Rondônia and Tocantins), totaling 27 stars in its current version.", "links": {"website": ["https://www.gov.br/mre/pt-br/consulado-washington/consulate-general-of-brazil-in-washington-dc/the-brazilian-flag"], "subreddit": ["Brasil"]}, "path": {"21-153": [[147, 282], [264, 282], [264, 498], [147, 499]], "18-20": [[147, 411], [147, 499], [264, 499], [264, 411]], "155-258": [[147, 282], [147, 596], [264, 596], [264, 282]]}, "center": {"21-153": [206, 391], "18-20": [206, 455], "155-258": [206, 439]}}, -{"id": 74, "name": "North Atlantic Treaty Organization", "description": "The North Atlantic Treaty Organization (NATO) is an intergovernmental military alliance between 31 member states. 29 countries are in Europe and 2 are in North America.", "links": {"website": ["https://www.nato.int/", "https://en.wikipedia.org/wiki/NATO"], "subreddit": ["BalticStates", "Eesti", "latvia", "lithuania"]}, "path": {"3-76, 84-258": [[-51, 446], [-56, 449], [-59, 453], [-60, 457], [-60, 460], [-58, 466], [-53, 470], [-50, 471], [-45, 471], [-39, 467], [-36, 464], [-36, 460], [-35, 459], [-35, 456], [-38, 451], [-43, 446]]}, "center": {"3-76, 84-258": [-48, 458]}}, -{"id": 75, "name": "Bluey", "description": "Bluey is a wholesome Australian children's cartoon featuring a blue heeler family.", "links": {"website": ["https://en.wikipedia.org/wiki/Bluey_(2018_TV_series)"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"3-13": [[-98, 240], [-94, 240], [-95, 231], [-104, 231], [-104, 222], [-101, 218], [-101, 216], [-104, 213], [-106, 213], [-109, 216], [-110, 215], [-110, 209], [-111, 208], [-111, 201], [-122, 201], [-127, 206], [-128, 206], [-130, 202], [-136, 196], [-139, 196], [-143, 202], [-144, 202], [-145, 196], [-153, 196], [-153, 206], [-152, 207], [-152, 209], [-155, 209], [-155, 211], [-161, 211], [-164, 214], [-164, 219], [-162, 219], [-161, 228], [-163, 228], [-166, 232], [-166, 238], [-158, 238], [-157, 239], [-153, 239], [-149, 237], [-148, 237], [-148, 241], [-145, 247], [-130, 247], [-128, 249], [-123, 247], [-115, 247], [-115, 249], [-111, 251], [-104, 251], [-104, 241]], "14-25": [[-98, 240], [-94, 240], [-95, 231], [-104, 231], [-104, 222], [-101, 218], [-101, 216], [-104, 213], [-106, 213], [-109, 216], [-110, 215], [-110, 209], [-111, 208], [-111, 201], [-122, 201], [-127, 206], [-128, 206], [-130, 202], [-136, 196], [-139, 196], [-143, 202], [-144, 202], [-145, 196], [-153, 196], [-153, 206], [-152, 207], [-152, 209], [-155, 209], [-155, 211], [-161, 211], [-164, 214], [-164, 219], [-162, 219], [-161, 228], [-163, 228], [-166, 232], [-166, 238], [-158, 238], [-158, 244], [-157, 244], [-157, 250], [-166, 250], [-166, 265], [-95, 265], [-95, 254], [-97, 254], [-97, 247], [-99, 247], [-99, 242]], "26-258": [[-166, 193], [-166, 265], [-95, 265], [-95, 193]]}, "center": {"3-13": [-127, 227], "14-25": [-131, 237], "26-258": [-130, 229]}}, -{"id": 76, "name": "Black Company", "description": "Black Company is the group that organized the part of the API protests that took place on the /r/place canvas on behalf of r/Save3rdPartyApps.\n\nr/Save3rdPartyApps is a subreddit protesting the pricing changes to Reddit's API, which have effectively killed off many 3rd-party Reddit apps.", "links": {"subreddit": ["PlaceAPI", "Save3rdPartyApps"], "discord": ["4sKvzQJpNZ"]}, "path": {"2-258": [[-78, -10], [-78, 32], [77, 32], [77, -10]]}, "center": {"2-258": [0, 11]}}, +{"id": 73, "name": "Flag of Brazil", "description": "The national flag of Brazil is a blue disc depicting a starry sky (which includes the Southern Cross) spanned by a curved band inscribed with the national motto \"Ordem e Progresso\" (\"Order and Progress\"), within a yellow rhombus, on a green field. It was officially adopted on 19 November 1889 — four days after the Proclamation of the Republic, to replace the flag of the Empire of Brazil. \n\nThere are 2 possible meanings for the flag's colors: the popular meaning and the original meaning.\n\nPopular meaning: green - represents the Brazilian vegetation; yellow - represents gold and riches; blue - represents the Brazilian sky and rivers; white - represents the desire for peace.\n\nOriginal Meaning: Green refers to the House of Bragança, dynasty of Dom Pedro I, first emperor of Brazil. The yellow, on the other hand, refers to the House of Habsburg, dynasty of Empress Maria Leopoldina of Austria, wife of Dom Pedro I.\n\nEach star, corresponding to a Brazilian Federal Unit, is sized in proportion relative to its geographic size, and, according to Brazilian Law, the flag must be updated in case of the creation or extinction of a state. At the time the flag was first adopted in 1889, it had 21 stars. It then received one more star in 1960 (representing the state of Guanabara), then another in 1968 (representing Acre), and finally four more stars in 1992 (representing Amapá, Roraima, Rondônia and Tocantins), totaling 27 stars in its current version.", "links": {"website": ["https://www.gov.br/mre/pt-br/consulado-washington/consulate-general-of-brazil-in-washington-dc/the-brazilian-flag"], "subreddit": ["Brasil"]}, "path": {"21-153": [[147, 282], [264, 282], [264, 498], [147, 499]], "18-20": [[147, 411], [147, 499], [264, 499], [264, 411]], "155-258, T": [[147, 282], [147, 596], [264, 596], [264, 282]]}, "center": {"21-153": [206, 391], "18-20": [206, 455], "155-258, T": [206, 439]}}, +{"id": 74, "name": "North Atlantic Treaty Organization", "description": "The North Atlantic Treaty Organization (NATO) is an intergovernmental military alliance between 31 member states. 29 countries are in Europe and 2 are in North America.", "links": {"website": ["https://www.nato.int/", "https://en.wikipedia.org/wiki/NATO"], "subreddit": ["BalticStates", "Eesti", "latvia", "lithuania"]}, "path": {"3-76, 84-258, T": [[-51, 446], [-56, 449], [-59, 453], [-60, 457], [-60, 460], [-58, 466], [-53, 470], [-50, 471], [-45, 471], [-39, 467], [-36, 464], [-36, 460], [-35, 459], [-35, 456], [-38, 451], [-43, 446]]}, "center": {"3-76, 84-258, T": [-48, 458]}}, +{"id": 75, "name": "Bluey", "description": "Bluey is a wholesome Australian children's cartoon featuring a blue heeler family.", "links": {"website": ["https://en.wikipedia.org/wiki/Bluey_(2018_TV_series)"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"3-13": [[-98, 240], [-94, 240], [-95, 231], [-104, 231], [-104, 222], [-101, 218], [-101, 216], [-104, 213], [-106, 213], [-109, 216], [-110, 215], [-110, 209], [-111, 208], [-111, 201], [-122, 201], [-127, 206], [-128, 206], [-130, 202], [-136, 196], [-139, 196], [-143, 202], [-144, 202], [-145, 196], [-153, 196], [-153, 206], [-152, 207], [-152, 209], [-155, 209], [-155, 211], [-161, 211], [-164, 214], [-164, 219], [-162, 219], [-161, 228], [-163, 228], [-166, 232], [-166, 238], [-158, 238], [-157, 239], [-153, 239], [-149, 237], [-148, 237], [-148, 241], [-145, 247], [-130, 247], [-128, 249], [-123, 247], [-115, 247], [-115, 249], [-111, 251], [-104, 251], [-104, 241]], "14-25": [[-98, 240], [-94, 240], [-95, 231], [-104, 231], [-104, 222], [-101, 218], [-101, 216], [-104, 213], [-106, 213], [-109, 216], [-110, 215], [-110, 209], [-111, 208], [-111, 201], [-122, 201], [-127, 206], [-128, 206], [-130, 202], [-136, 196], [-139, 196], [-143, 202], [-144, 202], [-145, 196], [-153, 196], [-153, 206], [-152, 207], [-152, 209], [-155, 209], [-155, 211], [-161, 211], [-164, 214], [-164, 219], [-162, 219], [-161, 228], [-163, 228], [-166, 232], [-166, 238], [-158, 238], [-158, 244], [-157, 244], [-157, 250], [-166, 250], [-166, 265], [-95, 265], [-95, 254], [-97, 254], [-97, 247], [-99, 247], [-99, 242]], "26-258, T": [[-166, 193], [-166, 265], [-95, 265], [-95, 193]]}, "center": {"3-13": [-127, 227], "14-25": [-131, 237], "26-258, T": [-130, 229]}}, +{"id": 76, "name": "Black Company", "description": "Black Company is the group that organized the part of the API protests that took place on the /r/place canvas on behalf of r/Save3rdPartyApps.\n\nr/Save3rdPartyApps is a subreddit protesting the pricing changes to Reddit's API, which have effectively killed off many 3rd-party Reddit apps.", "links": {"subreddit": ["PlaceAPI", "Save3rdPartyApps"], "discord": ["4sKvzQJpNZ"]}, "path": {"2-258, T": [[-78, -10], [-78, 32], [77, 32], [77, -10]]}, "center": {"2-258, T": [0, 11]}}, {"id": 77, "name": "Deep Rock Galactic", "description": "Deep Rock Galactic is a 1-4-player co-op first-person shooter (FPS) game featuring badass space dwarves, 100% destructible environments, procedurally-generated caves, and endless hordes of alien monsters.", "links": {"website": ["https://www.deeprockgalactic.com/", "https://en.wikipedia.org/wiki/Deep_Rock_Galactic"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic"]}, "path": {"2-14": [[-95, 323], [-95, 334], [47, 334], [47, 323]], "15-38": [[-95, 323], [-95, 334], [29, 334], [29, 323]]}, "center": {"2-14": [-24, 329], "15-38": [-33, 329]}}, {"id": 78, "name": "Factorio", "description": "Factorio is a factory simulation game.", "links": {"website": ["https://factorio.com/", "https://en.wikipedia.org/wiki/Factorio"], "subreddit": ["factorio"], "discord": ["factorio", "256GTXgN"]}, "path": {"16-165": [[-94, 334], [-94, 353], [-41, 353], [-41, 334]]}, "center": {"16-165": [-67, 344]}}, -{"id": 79, "name": "Stardew Valley", "description": "Stardew Valley (SDV) is a simulation role-playing game about owning and working a farm. It was developed by Eric \"Concerned Ape\" Barone, initially releasing for Windows in February 2016 before being ported to several other computer, console, and mobile platforms.", "links": {"website": ["https://www.stardewvalley.net/", "https://en.wikipedia.org/wiki/Stardew_Valley"], "subreddit": ["StardewValley"], "discord": ["stardewvalley", "5TyCKk8h"]}, "path": {"5-13": [[-33, 349], [-33, 355], [25, 355], [25, 349]], "14-22": [[-42, 342], [-42, 352], [-88, 352], [-88, 358], [-64, 358], [-64, 360], [30, 360], [30, 356], [26, 356], [26, 342], [23, 342], [21, 340], [21, 337], [19, 335], [-26, 335], [-28, 337], [-28, 341], [-29, 342]], "23-29": [[-42, 346], [-42, 352], [-88, 352], [-88, 360], [4, 360], [4, 342], [-4, 342], [-6, 340], [-6, 337], [-8, 335], [-26, 335], [-28, 337], [-28, 340], [-31, 340], [-31, 342], [-35, 346]], "30-258": [[-36, 338], [30, 338], [30, 400], [22, 400], [22, 398], [28, 398], [28, 384], [16, 375], [16, 360], [-39, 360], [-39, 357], [-36, 357]]}, "center": {"5-13": [-4, 352], "14-22": [0, 348], "23-29": [-18, 348], "30-258": [-8, 349]}}, -{"id": 80, "name": "My Little Pony", "description": "My Little Pony is an animated TV series featuring ponies.", "links": {"website": ["https://en.wikipedia.org/wiki/My_Little_Pony"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"1-98": [[-75, 205], [-80, 208], [-80, 211], [-82, 213], [-82, 214], [-92, 224], [-92, 227], [-78, 241], [-78, 248], [-77, 249], [-77, 256], [9, 256], [11, 254], [11, 250], [18, 247], [18, 242], [26, 238], [26, 228], [23, 225], [19, 225], [16, 222], [12, 222], [12, 215], [8, 210], [-6, 210], [-7, 209], [-9, 209], [-17, 212], [-19, 215], [-29, 215], [-30, 214], [-30, 212], [-31, 211], [-31, 209], [-33, 207], [-36, 207], [-36, 204], [-39, 201], [-42, 201], [-42, 200], [-46, 200], [-50, 203], [-50, 211], [-55, 211], [-55, 209], [-61, 208], [-71, 205]], "117-119": [[-501, -661], [-501, -610], [-425, -610], [-425, -661]], "120-258": [[-601, -636], [-601, -610], [-425, -610], [-425, -636]]}, "center": {"1-98": [-43, 233], "117-119": [-463, -635], "120-258": [-513, -623]}}, -{"id": 81, "name": "Geometry Dash", "description": "Geometry Dash is a series of platforming games.", "links": {"website": ["https://en.wikipedia.org/wiki/Geometry_Dash"], "subreddit": ["geometrydash"], "discord": ["hZj5evMRZr"]}, "path": {"65-67": [[-166, 265], [-166, 291], [-95, 291], [-95, 265]], "1-64, 68-258": [[-166, 264], [-166, 356], [-95, 356], [-95, 264]]}, "center": {"65-67": [-130, 278], "1-64, 68-258": [-130, 310]}}, -{"id": 82, "name": "Anny Star", "description": "Anny (エンニー) is a female English VTuber and Twitch streamer. She has been streaming on Twitch since 17 January 2016, but didn't make her VTuber debut until 13 March 2021. She is a fox girl attending art school in Japan. \n\nShe's usually depicted wearing the star in her hair.", "links": {"website": ["https://www.anny.live/", "https://www.twitch.tv/anny"], "subreddit": ["annyfox"]}, "path": {"18-96": [[-107, 387], [-107, 406], [-89, 406], [-89, 387]], "97-258": [[-109, 387], [-109, 406], [-91, 406], [-91, 387]]}, "center": {"18-96": [-98, 397], "97-258": [-100, 397]}}, +{"id": 79, "name": "Stardew Valley", "description": "Stardew Valley (SDV) is a simulation role-playing game about owning and working a farm. It was developed by Eric \"Concerned Ape\" Barone, initially releasing for Windows in February 2016 before being ported to several other computer, console, and mobile platforms.", "links": {"website": ["https://www.stardewvalley.net/", "https://en.wikipedia.org/wiki/Stardew_Valley"], "subreddit": ["StardewValley"], "discord": ["stardewvalley", "5TyCKk8h"]}, "path": {"5-13": [[-33, 349], [-33, 355], [25, 355], [25, 349]], "14-22": [[-42, 342], [-42, 352], [-88, 352], [-88, 358], [-64, 358], [-64, 360], [30, 360], [30, 356], [26, 356], [26, 342], [23, 342], [21, 340], [21, 337], [19, 335], [-26, 335], [-28, 337], [-28, 341], [-29, 342]], "23-29": [[-42, 346], [-42, 352], [-88, 352], [-88, 360], [4, 360], [4, 342], [-4, 342], [-6, 340], [-6, 337], [-8, 335], [-26, 335], [-28, 337], [-28, 340], [-31, 340], [-31, 342], [-35, 346]], "30-258, T": [[-36, 338], [30, 338], [30, 400], [22, 400], [22, 398], [28, 398], [28, 384], [16, 375], [16, 360], [-39, 360], [-39, 357], [-36, 357]]}, "center": {"5-13": [-4, 352], "14-22": [0, 348], "23-29": [-18, 348], "30-258, T": [-8, 349]}}, +{"id": 80, "name": "My Little Pony", "description": "My Little Pony is an animated TV series featuring ponies.", "links": {"website": ["https://en.wikipedia.org/wiki/My_Little_Pony"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"1-98": [[-75, 205], [-80, 208], [-80, 211], [-82, 213], [-82, 214], [-92, 224], [-92, 227], [-78, 241], [-78, 248], [-77, 249], [-77, 256], [9, 256], [11, 254], [11, 250], [18, 247], [18, 242], [26, 238], [26, 228], [23, 225], [19, 225], [16, 222], [12, 222], [12, 215], [8, 210], [-6, 210], [-7, 209], [-9, 209], [-17, 212], [-19, 215], [-29, 215], [-30, 214], [-30, 212], [-31, 211], [-31, 209], [-33, 207], [-36, 207], [-36, 204], [-39, 201], [-42, 201], [-42, 200], [-46, 200], [-50, 203], [-50, 211], [-55, 211], [-55, 209], [-61, 208], [-71, 205]], "117-119": [[-501, -661], [-501, -610], [-425, -610], [-425, -661]], "120-258, T": [[-601, -636], [-601, -610], [-425, -610], [-425, -636]]}, "center": {"1-98": [-43, 233], "117-119": [-463, -635], "120-258, T": [-513, -623]}}, +{"id": 81, "name": "Geometry Dash", "description": "Geometry Dash is a series of platforming games.", "links": {"website": ["https://en.wikipedia.org/wiki/Geometry_Dash"], "subreddit": ["geometrydash"], "discord": ["hZj5evMRZr"]}, "path": {"65-67": [[-166, 265], [-166, 291], [-95, 291], [-95, 265]], "1-64, 68-258, T": [[-166, 264], [-166, 356], [-95, 356], [-95, 264]]}, "center": {"65-67": [-130, 278], "1-64, 68-258, T": [-130, 310]}}, +{"id": 82, "name": "Anny Star", "description": "Anny (エンニー) is a female English VTuber and Twitch streamer. She has been streaming on Twitch since 17 January 2016, but didn't make her VTuber debut until 13 March 2021. She is a fox girl attending art school in Japan. \n\nShe's usually depicted wearing the star in her hair.", "links": {"website": ["https://www.anny.live/", "https://www.twitch.tv/anny"], "subreddit": ["annyfox"]}, "path": {"18-96": [[-107, 387], [-107, 406], [-89, 406], [-89, 387]], "97-258, T": [[-109, 387], [-109, 406], [-91, 406], [-91, 387]]}, "center": {"18-96": [-98, 397], "97-258, T": [-100, 397]}}, {"id": 83, "name": "Christ the Redeemer", "description": "One of the most iconic statues in Brazil & one of the 7 Wonders of the World. Resembling our Lord and Savior Jesus Christ.", "links": {"subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"115": [[224, 430], [223, 368], [222, 367], [222, 354], [223, 351], [227, 349], [234, 349], [236, 348], [243, 348], [246, 346], [250, 343], [253, 339], [254, 338], [257, 338], [260, 337], [263, 336], [264, 331], [261, 331], [258, 331], [255, 330], [254, 329], [253, 331], [252, 332], [241, 332], [237, 332], [231, 331], [222, 330], [217, 329], [215, 327], [214, 325], [214, 319], [214, 316], [213, 312], [212, 309], [209, 308], [205, 308], [204, 310], [202, 312], [202, 314], [201, 317], [202, 320], [201, 323], [201, 327], [200, 329], [195, 331], [193, 331], [179, 331], [173, 332], [166, 332], [163, 332], [161, 331], [153, 330], [149, 331], [148, 333], [150, 336], [153, 338], [162, 338], [163, 338], [165, 341], [168, 344], [171, 345], [177, 345], [180, 346], [185, 348], [188, 349], [189, 353], [189, 354], [189, 358], [189, 363], [190, 367], [190, 371], [191, 375], [192, 378], [193, 381], [193, 384], [192, 387], [191, 391], [192, 398], [192, 405], [191, 410], [192, 415], [191, 419], [190, 424], [189, 430], [189, 431], [204, 423], [210, 423]]}, "center": {"115": [206, 346]}}, -{"id": 84, "name": "foolishWallshark", "description": "foolishWallshark is an emote of a shark, mascot of Twitch streamer Foolish_Gamers (real name Noah Brown). He is known for his variety streams and his content for the game Minecraft.", "links": {"website": ["https://www.twitchmetrics.net/e/307736730-foolishWallshark", "https://www.twitch.tv/foolish_gamers"], "subreddit": ["FoolishGamers"]}, "path": {"23-258": [[62, 284], [59, 287], [59, 309], [55, 315], [55, 319], [62, 319], [62, 324], [63, 324], [63, 332], [61, 334], [61, 336], [70, 336], [70, 335], [83, 335], [83, 331], [85, 326], [92, 322], [92, 315], [87, 310], [87, 308], [89, 308], [89, 303], [71, 285], [69, 284]]}, "center": {"23-258": [73, 307]}}, -{"id": 85, "name": "Deep Rock Galactic", "description": "Deep Rock Galactic is a 1-4-player co-op first-person shooter (FPS) game featuring badass space dwarves, 100% destructible environments, procedurally-generated caves, and endless hordes of alien monsters.", "links": {"website": ["https://www.deeprockgalactic.com/", "https://en.wikipedia.org/wiki/Deep_Rock_Galactic"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic"]}, "path": {"8-22": [[-41, 360], [-41, 371], [-39, 371], [-39, 378], [18, 378], [18, 376], [17, 376], [17, 360]], "23-28": [[-41, 361], [-41, 371], [-39, 371], [-39, 378], [1, 378], [1, 360]], "29-113": [[16, 360], [-40, 360], [-40, 371], [16, 371]], "115-258": [[16, 356], [-40, 356], [-40, 373], [16, 373]]}, "center": {"8-22": [-11, 369], "23-28": [-19, 369], "29-113": [-12, 366], "115-258": [-12, 365]}}, +{"id": 84, "name": "foolishWallshark", "description": "foolishWallshark is an emote of a shark, mascot of Twitch streamer Foolish_Gamers (real name Noah Brown). He is known for his variety streams and his content for the game Minecraft.", "links": {"website": ["https://www.twitchmetrics.net/e/307736730-foolishWallshark", "https://www.twitch.tv/foolish_gamers"], "subreddit": ["FoolishGamers"]}, "path": {"23-258, T": [[62, 284], [59, 287], [59, 309], [55, 315], [55, 319], [62, 319], [62, 324], [63, 324], [63, 332], [61, 334], [61, 336], [70, 336], [70, 335], [83, 335], [83, 331], [85, 326], [92, 322], [92, 315], [87, 310], [87, 308], [89, 308], [89, 303], [71, 285], [69, 284]]}, "center": {"23-258, T": [73, 307]}}, +{"id": 85, "name": "Deep Rock Galactic", "description": "Deep Rock Galactic is a 1-4-player co-op first-person shooter (FPS) game featuring badass space dwarves, 100% destructible environments, procedurally-generated caves, and endless hordes of alien monsters.", "links": {"website": ["https://www.deeprockgalactic.com/", "https://en.wikipedia.org/wiki/Deep_Rock_Galactic"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic"]}, "path": {"8-22": [[-41, 360], [-41, 371], [-39, 371], [-39, 378], [18, 378], [18, 376], [17, 376], [17, 360]], "23-28": [[-41, 361], [-41, 371], [-39, 371], [-39, 378], [1, 378], [1, 360]], "29-113": [[16, 360], [-40, 360], [-40, 371], [16, 371]], "115-258, T": [[16, 356], [-40, 356], [-40, 373], [16, 373]]}, "center": {"8-22": [-11, 369], "23-28": [-19, 369], "29-113": [-12, 366], "115-258, T": [-12, 365]}}, {"id": 86, "name": "r/NapoleonFR", "description": "This French flag was created by a community that supports Napoleon. Napoleon was the first emperor of the French between 1804-1815, he conquered Europe from Spain to Moscow via Italy, Denmark, the northern Balkans, Germany, Austria, Poland... Thanks to him, the ideas of the revolution spread throughout Europe. In 1815, Napoleon lost to a coalition including England, the Austrian Empire, Prussia, Russia, Sweden, Spain, Portugal, ...", "links": {"subreddit": ["NapoleonFR"], "discord": ["tNABApw3"]}, "path": {"15-17": [[-365, 463], [-368, 466], [-368, 500], [-357, 500], [-357, 463]], "18-106": [[-368, 463], [-305, 463], [-305, 500], [-368, 500], [-377, 492], [-378, 490], [-378, 485], [-375, 480], [-368, 480]], "121-153": [[-306, 462], [-306, 500], [-368, 500], [-368, 462]]}, "center": {"15-17": [-362, 482], "18-106": [-341, 482], "121-153": [-337, 481]}}, -{"id": 87, "name": "r/place_brff", "description": "r/place_brff is a subreddit for r/place art organized by Russian streamer Bratishkinoff.", "links": {"website": ["https://www.twitch.tv/bratishkinoff"], "subreddit": ["place_brff"]}, "path": {"14-89": [[-364, 167], [-364, 291], [-215, 291], [-215, 167], [-249, 167], [-249, 162], [-251, 159], [-253, 159], [-256, 167], [-289, 167], [-289, 161], [-291, 157], [-293, 157], [-295, 160], [-295, 167]], "90-104": [[-343, 176], [-343, 264], [-368, 264], [-368, 291], [-215, 291], [-215, 176]], "105-258": [[-368, 176], [-368, 289], [-215, 289], [-215, 176]]}, "center": {"14-89": [-293, 229], "90-104": [-282, 234], "105-258": [-291, 233]}}, +{"id": 87, "name": "r/place_brff", "description": "r/place_brff is a subreddit for r/place art organized by Russian streamer Bratishkinoff.", "links": {"website": ["https://www.twitch.tv/bratishkinoff"], "subreddit": ["place_brff"]}, "path": {"14-89": [[-364, 167], [-364, 291], [-215, 291], [-215, 167], [-249, 167], [-249, 162], [-251, 159], [-253, 159], [-256, 167], [-289, 167], [-289, 161], [-291, 157], [-293, 157], [-295, 160], [-295, 167]], "90-104": [[-343, 176], [-343, 264], [-368, 264], [-368, 291], [-215, 291], [-215, 176]], "105-258, T": [[-368, 176], [-368, 289], [-215, 289], [-215, 176]]}, "center": {"14-89": [-293, 229], "90-104": [-282, 234], "105-258, T": [-291, 233]}}, {"id": 88, "name": "Link", "description": "Link is a fictional character and the main protagonist of Nintendo's video game series The Legend of Zelda. He appears in several incarnations over the course of the games, and also features in other Nintendo media, including merchandising comic books and animated series. He is one of Nintendo's main icons.", "links": {"website": ["https://en.wikipedia.org/wiki/Link_(The_Legend_of_Zelda)"], "subreddit": ["zelda"]}, "path": {"9-25": [[213, -7], [213, 0], [211, 2], [211, 5], [213, 7], [214, 7], [214, 9], [224, 9], [224, 6], [227, 6], [227, 1], [226, 0], [226, -6], [224, -6], [222, -8], [217, -8], [216, -7]]}, "center": {"9-25": [219, -1]}}, -{"id": 89, "name": "Triforce", "description": "The Triforce is the ultimate source of power in The Legend of Zelda game series, and serves as the balance that weighs the three forces: power, wisdom, and courage.", "links": {"website": ["https://en.wikipedia.org/wiki/Triforce", "https://zeldapedia.wiki/wiki/Triforce"], "subreddit": ["zelda"]}, "path": {"1-25": [[260, -9], [231, 20], [231, 21], [289, 21], [289, 20]], "26-31": [[260, -9], [246, 5], [246, 21], [289, 21], [289, 20]], "37-258": [[101, 482], [85, 498], [85, 499], [117, 499], [117, 498]]}, "center": {"1-25": [260, 9], "26-31": [260, 9], "37-258": [101, 492]}}, +{"id": 89, "name": "Triforce", "description": "The Triforce is the ultimate source of power in The Legend of Zelda game series, and serves as the balance that weighs the three forces: power, wisdom, and courage.", "links": {"website": ["https://en.wikipedia.org/wiki/Triforce", "https://zeldapedia.wiki/wiki/Triforce"], "subreddit": ["zelda"]}, "path": {"1-25": [[260, -9], [231, 20], [231, 21], [289, 21], [289, 20]], "26-31": [[260, -9], [246, 5], [246, 21], [289, 21], [289, 20]], "37-258, T": [[101, 482], [85, 498], [85, 499], [117, 499], [117, 498]]}, "center": {"1-25": [260, 9], "26-31": [260, 9], "37-258, T": [101, 492]}}, {"id": 90, "name": "Master Sword", "description": "The Master Sword, also known as the Blade of Evil's Bane, is an iconic sword in the game series The Legend of Zelda. It first appeared in the 1991 game The Legend of Zelda: A Link to the Past.", "links": {"website": ["https://en.wikipedia.org/wiki/Master_Sword", "https://www.zeldadungeon.net/wiki/Master_Sword"], "subreddit": ["zelda"]}, "path": {"14-30": [[249, -20], [246, -17], [246, -16], [247, -16], [247, -10], [245, -10], [241, -5], [241, -3], [243, -3], [246, -6], [246, 67], [247, 67], [251, 52], [251, 44], [253, 39], [252, -6], [255, -3], [257, -5], [257, -6], [253, -10], [251, -10], [251, -16], [252, -16], [252, -17]], "63-71": [[102, 446], [95, 453], [95, 462], [91, 464], [89, 468], [89, 472], [91, 475], [93, 475], [94, 476], [94, 482], [109, 482], [109, 476], [110, 474], [115, 474], [115, 468], [109, 461], [109, 453]], "73-75": [[98, 434], [98, 442], [93, 440], [90, 440], [87, 443], [87, 445], [90, 448], [94, 448], [95, 447], [98, 447], [98, 479], [106, 479], [106, 434]]}, "center": {"14-30": [249, 38], "63-71": [102, 469], "73-75": [102, 444]}}, -{"id": 91, "name": "Yellow Pikmin", "description": "Yellow Pikmin are a type of Pikmin from the game Pikmin. They are immune to electricity.", "links": {"website": ["https://www.pikminwiki.com/Yellow_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"2-30": [[216, 60], [214, 64], [214, 66], [213, 66], [211, 68], [207, 68], [207, 70], [206, 70], [206, 74], [207, 74], [207, 80], [205, 82], [197, 82], [197, 84], [203, 89], [205, 89], [208, 92], [208, 94], [207, 94], [207, 96], [215, 96], [215, 91], [230, 91], [230, 89], [218, 89], [223, 85], [223, 82], [218, 82], [211, 79], [211, 75], [214, 75], [219, 69], [219, 67]], "31-258": [[206, 68], [204, 70], [204, 73], [208, 73], [208, 81], [206, 83], [199, 83], [199, 84], [207, 91], [210, 97], [211, 96], [215, 96], [215, 92], [216, 92], [218, 90], [218, 88], [223, 84], [223, 83], [215, 83], [212, 79], [212, 74], [213, 73], [213, 71], [210, 68]]}, "center": {"2-30": [211, 86], "31-258": [210, 87]}}, -{"id": 92, "name": "Purple Pikmin", "description": "Purple Pikmin are a type of Pikmin in the game Pikmin. They are a strong and slow Pikmin type.", "links": {"website": ["https://www.pikminwiki.com/Purple_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"19-26": [[217, 93], [217, 98], [213, 98], [209, 101], [212, 104], [212, 109], [210, 112], [210, 115], [212, 115], [212, 113], [223, 113], [225, 115], [226, 115], [226, 109], [227, 109], [225, 104], [228, 101], [224, 98], [220, 98], [220, 96], [222, 93], [226, 93], [226, 91], [220, 90], [215, 91], [215, 94]], "36-258": [[196, 73], [189, 80], [188, 82], [188, 85], [187, 85], [184, 88], [185, 89], [185, 99], [187, 101], [195, 101], [197, 99], [197, 89], [198, 88], [198, 87], [196, 84], [196, 80], [197, 79], [197, 73]]}, "center": {"19-26": [219, 106], "36-258": [191, 94]}}, +{"id": 91, "name": "Yellow Pikmin", "description": "Yellow Pikmin are a type of Pikmin from the game Pikmin. They are immune to electricity.", "links": {"website": ["https://www.pikminwiki.com/Yellow_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"2-30": [[216, 60], [214, 64], [214, 66], [213, 66], [211, 68], [207, 68], [207, 70], [206, 70], [206, 74], [207, 74], [207, 80], [205, 82], [197, 82], [197, 84], [203, 89], [205, 89], [208, 92], [208, 94], [207, 94], [207, 96], [215, 96], [215, 91], [230, 91], [230, 89], [218, 89], [223, 85], [223, 82], [218, 82], [211, 79], [211, 75], [214, 75], [219, 69], [219, 67]], "31-258, T": [[206, 68], [204, 70], [204, 73], [208, 73], [208, 81], [206, 83], [199, 83], [199, 84], [207, 91], [210, 97], [211, 96], [215, 96], [215, 92], [216, 92], [218, 90], [218, 88], [223, 84], [223, 83], [215, 83], [212, 79], [212, 74], [213, 73], [213, 71], [210, 68]]}, "center": {"2-30": [211, 86], "31-258, T": [210, 87]}}, +{"id": 92, "name": "Purple Pikmin", "description": "Purple Pikmin are a type of Pikmin in the game Pikmin. They are a strong and slow Pikmin type.", "links": {"website": ["https://www.pikminwiki.com/Purple_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"19-26": [[217, 93], [217, 98], [213, 98], [209, 101], [212, 104], [212, 109], [210, 112], [210, 115], [212, 115], [212, 113], [223, 113], [225, 115], [226, 115], [226, 109], [227, 109], [225, 104], [228, 101], [224, 98], [220, 98], [220, 96], [222, 93], [226, 93], [226, 91], [220, 90], [215, 91], [215, 94]], "36-258, T": [[196, 73], [189, 80], [188, 82], [188, 85], [187, 85], [184, 88], [185, 89], [185, 99], [187, 101], [195, 101], [197, 99], [197, 89], [198, 88], [198, 87], [196, 84], [196, 80], [197, 79], [197, 73]]}, "center": {"19-26": [219, 106], "36-258, T": [191, 94]}}, {"id": 93, "name": "Sonic the Hedgehog", "description": "Sonic the Hedgehog is the titular protagonist of the Sonic the Hedgehog video game series published by Japanese company Sega. The franchise follows Sonic, an anthropomorphic blue hedgehog who battles the evil Doctor Eggman, a mad scientist. The main Sonic the Hedgehog games are platformers mostly developed by Sonic Team; other games, developed by various studios, include spin-offs in the racing, fighting, party and sports genres. The franchise also incorporates printed media, animations, feature films, and merchandise.", "links": {"website": ["https://en.wikipedia.org/wiki/Sonic_the_Hedgehog_(character)"], "subreddit": ["SonicTheHedgehog"]}, "path": {"12-34": [[444, -225], [444, -222], [450, -215], [450, -213], [449, -212], [449, -202], [455, -197], [457, -191], [454, -187], [454, -181], [450, -177], [450, -176], [459, -168], [470, -164], [477, -164], [477, -186], [489, -186], [489, -189], [499, -197], [499, -216], [489, -226], [488, -226], [488, -228], [490, -230], [490, -233], [488, -235], [485, -235], [484, -236], [480, -236], [464, -229], [459, -225]]}, "center": {"12-34": [474, -208]}}, {"id": 94, "name": "Goofy", "description": "Goofy is a cartoon character created by Disney.", "links": {"website": ["https://en.wikipedia.org/wiki/Goofy"]}, "path": {"14-26": [[362, -209], [360, -206], [360, -192], [340, -161], [340, -152], [366, -129], [371, -129], [404, -161], [398, -172], [390, -181], [390, -186], [391, -187], [391, -194], [389, -196], [389, -198], [392, -203], [392, -208], [383, -213], [378, -213], [373, -207], [369, -207], [367, -209]]}, "center": {"14-26": [372, -164]}}, {"id": 95, "name": "r/burdurland", "description": "r/burdurland is a Turkish subreddit where people post memes. It was founded by Porçay, a Turkish YouTuber and comedian.", "links": {"subreddit": ["burdurland"]}, "path": {"12-17": [[256, -72], [256, -179], [338, -179], [338, -72]]}, "center": {"12-17": [297, -125]}}, {"id": 96, "name": "Purple Guy", "description": "William Afton, also known as the Purple Guy and The Employee, is the main antagonist of the Five Nights at Freddy's franchise. He is the co-founder of Fazbear Entertainment and a serial killer who targets infants and young children. He is directly responsible for all of the incidents and tragedies throughout the series.", "links": {"website": ["https://fivenightsatfreddys.fandom.com/wiki/William_Afton"], "subreddit": ["fivenightsatfreddys"]}, "path": {"15-69": [[140, 95], [138, 97], [138, 105], [136, 107], [136, 129], [147, 129], [147, 116], [152, 113], [152, 100], [153, 100], [153, 95], [152, 95], [152, 85], [150, 85], [150, 95]]}, "center": {"15-69": [144, 109]}}, -{"id": 97, "name": "Hatsune Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.", "links": {"website": ["https://en.wikipedia.org/wiki/Hatsune_Miku"], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"2-258": [[203, 140], [201, 142], [201, 145], [199, 147], [199, 156], [203, 169], [203, 191], [239, 191], [239, 176], [234, 147], [229, 141], [225, 138], [223, 138], [222, 139], [212, 139], [211, 140]]}, "center": {"2-258": [218, 158]}}, -{"id": 98, "name": "Talking Heads", "description": "Talking Heads was a rock band from New York City, New York, United States.", "links": {"website": ["https://talkingheadsofficial.com/", "https://en.wikipedia.org/wiki/Talking_Heads"], "subreddit": ["talkingheads"]}, "path": {"9-258": [[90, 138], [90, 150], [121, 150], [121, 138]]}, "center": {"9-258": [106, 144]}}, -{"id": 99, "name": "dimden.dev", "description": "dimden.dev is a small website maintained by Dimden and a small community backing him.", "links": {"website": ["https://dimden.dev/"], "discord": ["k4u7ddk"]}, "path": {"9-20": [[-31, 413], [-31, 425], [29, 425], [29, 413]], "21-44": [[-31, 413], [-31, 425], [0, 425], [0, 413]], "91-258": [[-720, 250], [-662, 250], [-662, 257], [-720, 257]]}, "center": {"9-20": [-1, 419], "21-44": [-15, 419], "91-258": [-691, 254]}}, +{"id": 97, "name": "Hatsune Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.", "links": {"website": ["https://en.wikipedia.org/wiki/Hatsune_Miku"], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"2-258, T": [[203, 140], [201, 142], [201, 145], [199, 147], [199, 156], [203, 169], [203, 191], [239, 191], [239, 176], [234, 147], [229, 141], [225, 138], [223, 138], [222, 139], [212, 139], [211, 140]]}, "center": {"2-258, T": [218, 158]}}, +{"id": 98, "name": "Talking Heads", "description": "Talking Heads was a rock band from New York City, New York, United States.", "links": {"website": ["https://talkingheadsofficial.com/", "https://en.wikipedia.org/wiki/Talking_Heads"], "subreddit": ["talkingheads"]}, "path": {"9-258, T": [[90, 138], [90, 150], [121, 150], [121, 138]]}, "center": {"9-258, T": [106, 144]}}, +{"id": 99, "name": "dimden.dev", "description": "dimden.dev is a small website maintained by Dimden and a small community backing him.", "links": {"website": ["https://dimden.dev/"], "discord": ["k4u7ddk"]}, "path": {"9-20": [[-31, 413], [-31, 425], [29, 425], [29, 413]], "21-44": [[-31, 413], [-31, 425], [0, 425], [0, 413]], "91-258, T": [[-720, 250], [-662, 250], [-662, 257], [-720, 257]]}, "center": {"9-20": [-1, 419], "21-44": [-15, 419], "91-258, T": [-691, 254]}}, {"id": 100, "name": "Holostars", "description": "Holostars is the male branch of Hololive.", "links": {"website": ["https://holostars.hololivepro.com/en/", "https://hololive.wiki/wiki/Holostars"], "subreddit": ["Holostars", "Hololive"], "discord": ["vtubersplace", "holofans"]}, "path": {"17-66, 71-96": [[-74, 406], [-74, 422], [-57, 422], [-57, 406]]}, "center": {"17-66, 71-96": [-65, 414]}}, -{"id": 101, "name": "Technoblade", "description": "Technoblade was a YouTuber for the game Minecraft known for his competitiveness and funny humor. He was part of the Minecraft content creator group Sleepy Bois Inc. (SBI), and also a part of the Minecraft series Dream SMP, where he was part of the anarchist organization The Syndicate. He contracted cancer in 2021, and passed away in June 2022.", "links": {"website": ["https://www.youtube.com/channel/UCFAiFyGs6oDiF1Nf-rRJpZA", "https://en.wikipedia.org/wiki/Technoblade", "https://youtube.fandom.com/wiki/Technoblade"], "subreddit": ["Technoblade"]}, "path": {"2-19": [[-216, 279], [-216, 347], [-164, 347], [-164, 279]], "20-25": [[-216, 279], [-216, 293], [-165, 293], [-165, 279], [-178, 279], [-178, 242], [-215, 242], [-215, 279]], "26-39": [[-216, 279], [-216, 356], [-165, 356], [-165, 279], [-178, 279], [-178, 242], [-215, 242], [-215, 279]], "40-258": [[-215, 242], [-215, 291], [-165, 291], [-165, 279], [-178, 279], [-178, 242]]}, "center": {"2-19": [-190, 313], "20-25": [-197, 261], "26-39": [-190, 319], "40-258": [-196, 268]}}, +{"id": 101, "name": "Technoblade", "description": "Technoblade was a YouTuber for the game Minecraft known for his competitiveness and funny humor. He was part of the Minecraft content creator group Sleepy Bois Inc. (SBI), and also a part of the Minecraft series Dream SMP, where he was part of the anarchist organization The Syndicate. He contracted cancer in 2021, and passed away in June 2022.", "links": {"website": ["https://www.youtube.com/channel/UCFAiFyGs6oDiF1Nf-rRJpZA", "https://en.wikipedia.org/wiki/Technoblade", "https://youtube.fandom.com/wiki/Technoblade"], "subreddit": ["Technoblade"]}, "path": {"2-19": [[-216, 279], [-216, 347], [-164, 347], [-164, 279]], "20-25": [[-216, 279], [-216, 293], [-165, 293], [-165, 279], [-178, 279], [-178, 242], [-215, 242], [-215, 279]], "26-39": [[-216, 279], [-216, 356], [-165, 356], [-165, 279], [-178, 279], [-178, 242], [-215, 242], [-215, 279]], "40-258, T": [[-215, 242], [-215, 291], [-165, 291], [-165, 279], [-178, 279], [-178, 242]]}, "center": {"2-19": [-190, 313], "20-25": [-197, 261], "26-39": [-190, 319], "40-258, T": [-196, 268]}}, {"id": 102, "name": "One Piece", "description": "One Piece is a long-running manga and anime series. It depicts the exploits of a group of pirates led by Monkey D. Luffy.", "links": {"website": ["https://en.wikipedia.org/wiki/One_Piece"], "subreddit": ["OnePiece"]}, "path": {"12-26": [[-309, 137], [-309, 167], [-259, 167]], "27-61": [[-309, 137], [-309, 167], [-247, 167], [-247, 168], [-211, 168], [-211, 134], [-248, 134], [-248, 137]], "62-71": [[-309, 169], [-206, 169], [-206, 133], [-246, 133], [-246, 169], [-270, 169], [-270, 146], [-309, 146]], "72-81": [[-309, 169], [-270, 169], [-270, 146], [-309, 146]], "82-99": [[-307, 146], [-307, 169], [-258, 169], [-258, 146]]}, "center": {"12-26": [-298, 156], "27-61": [-239, 151], "62-71": [-228, 151], "72-81": [-289, 158], "82-99": [-282, 158]}}, -{"id": 103, "name": "Knook", "description": "A Knook, a fusion between a chess knight and a chess rook.\n\nFrom the subreddit r/AnarchyChess. It started a series of fake chess pieces made humorously. The Knook was even the subreddit logo at one point.", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"67-258": [[324, -152], [327, -152], [327, -151], [329, -151], [329, -152], [331, -152], [331, -151], [333, -151], [333, -152], [336, -152], [336, -150], [335, -150], [335, -149], [334, -149], [334, -141], [335, -141], [335, -139], [336, -139], [336, -137], [337, -137], [337, -135], [323, -135], [323, -137], [324, -137], [324, -140], [322, -140], [322, -141], [321, -141], [321, -143], [322, -143], [322, -145], [323, -145], [323, -147], [322, -147], [322, -148], [321, -148], [325, -148], [325, -150], [324, -150]]}, "center": {"67-258": [328, -143]}}, -{"id": 104, "name": "N7", "description": "N7 is a vocational code in the Systems Alliance military from the game series Mass Effect.", "links": {"website": ["https://masseffect.fandom.com/wiki/N7"], "subreddit": ["masseffect"]}, "path": {"9-258": [[370, -339], [370, -325], [406, -325], [406, -339]]}, "center": {"9-258": [388, -332]}}, -{"id": 105, "name": "Mass Relay", "description": "A Mass Relay is a form of faster-than-light (FTL) travel from the Mass Effect games.", "links": {"website": ["https://masseffect.fandom.com/wiki/Mass_Relay"], "subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"17-61": [[387, -346], [402, -346], [402, -339], [387, -339]], "62-258": [[390, -346], [406, -346], [406, -339], [390, -339]]}, "center": {"17-61": [395, -342], "62-258": [398, -342]}}, +{"id": 103, "name": "Knook", "description": "A Knook, a fusion between a chess knight and a chess rook.\n\nFrom the subreddit r/AnarchyChess. It started a series of fake chess pieces made humorously. The Knook was even the subreddit logo at one point.", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"67-258, T": [[324, -152], [327, -152], [327, -151], [329, -151], [329, -152], [331, -152], [331, -151], [333, -151], [333, -152], [336, -152], [336, -150], [335, -150], [335, -149], [334, -149], [334, -141], [335, -141], [335, -139], [336, -139], [336, -137], [337, -137], [337, -135], [323, -135], [323, -137], [324, -137], [324, -140], [322, -140], [322, -141], [321, -141], [321, -143], [322, -143], [322, -145], [323, -145], [323, -147], [322, -147], [322, -148], [321, -148], [325, -148], [325, -150], [324, -150]]}, "center": {"67-258, T": [328, -143]}}, +{"id": 104, "name": "N7", "description": "N7 is a vocational code in the Systems Alliance military from the game series Mass Effect.", "links": {"website": ["https://masseffect.fandom.com/wiki/N7"], "subreddit": ["masseffect"]}, "path": {"9-258, T": [[370, -339], [370, -325], [406, -325], [406, -339]]}, "center": {"9-258, T": [388, -332]}}, +{"id": 105, "name": "Mass Relay", "description": "A Mass Relay is a form of faster-than-light (FTL) travel from the Mass Effect games.", "links": {"website": ["https://masseffect.fandom.com/wiki/Mass_Relay"], "subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"17-61": [[387, -346], [402, -346], [402, -339], [387, -339]], "62-258, T": [[390, -346], [406, -346], [406, -339], [390, -339]]}, "center": {"17-61": [395, -342], "62-258, T": [398, -342]}}, {"id": 106, "name": "Red", "description": "Red is the most basic type of bird and the protagonist in the mobile game Angry Birds. He is a desert cardinal native to Bird Island with a short-tempered and rude personality.", "links": {"website": ["https://angrybirds.fandom.com/wiki/Red"], "subreddit": ["AngryBirds", "Suomi", "nordics", "place_nordicunion"]}, "path": {"7-109": [[39, -348], [39, -344], [38, -344], [38, -340], [35, -340], [35, -334], [37, -334], [37, -333], [52, -333], [52, -341], [48, -345], [47, -345], [46, -346], [46, -348]]}, "center": {"7-109": [44, -339]}}, {"id": 107, "name": "Angry Birds", "description": "Angry Birds is a game about flinging birds at buildings to destroy them. It was made by Finnish game studio Rovio Entertainment.", "links": {"website": ["https://www.angrybirds.com/", "https://en.wikipedia.org/wiki/Angry_Birds"], "subreddit": ["AngryBirds", "Suomi", "nordics", "place_nordicunion"]}, "path": {"15-25": [[39, -348], [39, -344], [38, -344], [38, -340], [35, -340], [35, -333], [89, -333], [89, -343], [83, -349], [79, -353], [76, -353], [73, -351], [73, -349], [60, -349], [60, -348]], "26-49": [[39, -348], [39, -344], [38, -344], [38, -340], [35, -340], [35, -333], [89, -333], [89, -343], [83, -349], [79, -353], [76, -353], [73, -351], [73, -349], [65, -349], [65, -351], [59, -358], [55, -354], [54, -352], [54, -348]], "50-100": [[40, -350], [38, -347], [38, -342], [37, -340], [35, -340], [35, -335], [40, -332], [86, -332], [90, -338], [90, -344], [87, -349], [83, -349], [83, -354], [77, -354], [73, -352], [73, -349], [41, -349]], "101-109": [[42, -348], [36, -340], [36, -336], [39, -332], [93, -332], [96, -336], [96, -340], [93, -344], [91, -344], [91, -349], [79, -349], [79, -350], [74, -350], [74, -349], [71, -349], [71, -348]]}, "center": {"15-25": [78, -342], "26-49": [60, -342], "50-100": [78, -341], "101-109": [76, -341]}}, {"id": 108, "name": "Bomb", "description": "Bomb is one of the bird characters in the game Angry Birds. He is able to explode.", "links": {"website": ["https://angrybirds.fandom.com/wiki/Bomb"], "subreddit": ["AngryBirds", "Suomi", "Nordics", "place_nordicunion"]}, "path": {"101-147": [[88, -349], [85, -347], [85, -343], [83, -340], [83, -334], [85, -332], [93, -332], [96, -336], [96, -340], [93, -344], [91, -344], [91, -349]]}, "center": {"101-147": [90, -338]}}, {"id": 109, "name": "The Blues", "description": "The Blues are bird characters in the game Angry Birds. They are able to split into three.", "links": {"website": ["https://angrybirds.fandom.com/wiki/The_Blues"], "subreddit": ["AngryBirds", "Suomi", "nordics", "place_nordicunion"]}, "path": {"18-93": [[73, -352], [73, -350], [76, -348], [71, -343], [71, -338], [76, -333], [85, -333], [89, -337], [89, -343], [79, -353], [76, -353], [75, -352]], "99-109": [[71, -350], [71, -345], [69, -343], [69, -335], [72, -332], [80, -332], [83, -335], [83, -343], [79, -346], [79, -349], [77, -351], [76, -350]]}, "center": {"18-93": [80, -341], "99-109": [76, -340]}}, -{"id": 110, "name": "Human dignity shall be inviolable!", "description": "\"Human dignity shall be inviolable!\" (German: Die Würde des Menschen ist unantastbar!) is the first sentence of Article 1 of the Basic Law for the Federal Republic of Germany (German: Grundgesetz für die Bundesrepublik Deutschland), the German constitution. The phrase was originally written in German, English and Russian, but the Russian text was later replaced with Ukrainian. It is covered by the \"Ewigkeitsklausel\" or eternity clause of the Basic Law and is what the entire basic law was written around.", "links": {"website": ["https://en.wikipedia.org/wiki/Basic_Law_for_the_Federal_Republic_of_Germany"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"4-258": [[175, -450], [172, -447], [172, -394], [175, -391], [178, -391], [179, -392], [261, -392], [261, -401], [280, -401], [280, -409], [233, -409], [233, -421], [281, -421], [281, -429], [254, -429], [254, -441], [286, -441], [286, -449], [179, -449], [178, -450]]}, "center": {"4-258": [202, -420]}}, -{"id": 111, "name": "Leibniz-Keks", "description": "Leibniz-Keks (German: Butterkeks) is a German cookie brand.", "links": {"website": ["https://en.wikipedia.org/wiki/Leibniz-Keks"], "subreddit": ["placeDE", "de"]}, "path": {"9-258": [[50, -448], [50, -412], [98, -412], [98, -448]]}, "center": {"9-258": [74, -430]}}, -{"id": 112, "name": "u/spez ist ein hurensohn", "description": "\"u/spez ist ein hurensohn\" is German for \"u/spez is a son of a bitch\". This disparaging message against u/spez (Steve Huffman, CEO of Reddit) was written to protest the recent pricing changes to Reddit's API that killed many 3rd-party Reddit apps.", "links": {"website": ["https://en.wikipedia.org/wiki/Steve_Huffman"], "subreddit": ["placeDE", "de"]}, "path": {"2-258": [[-137, -449], [-137, -429], [-138, -429], [-138, -392], [-14, -392], [-14, -409], [-60, -409], [-60, -432], [-48, -432], [-46, -434], [-46, -449]]}, "center": {"2-258": [-109, -420]}}, +{"id": 110, "name": "Human dignity shall be inviolable!", "description": "\"Human dignity shall be inviolable!\" (German: Die Würde des Menschen ist unantastbar!) is the first sentence of Article 1 of the Basic Law for the Federal Republic of Germany (German: Grundgesetz für die Bundesrepublik Deutschland), the German constitution. The phrase was originally written in German, English and Russian, but the Russian text was later replaced with Ukrainian. It is covered by the \"Ewigkeitsklausel\" or eternity clause of the Basic Law and is what the entire basic law was written around.", "links": {"website": ["https://en.wikipedia.org/wiki/Basic_Law_for_the_Federal_Republic_of_Germany"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"4-258, T": [[175, -450], [172, -447], [172, -394], [175, -391], [178, -391], [179, -392], [261, -392], [261, -401], [280, -401], [280, -409], [233, -409], [233, -421], [281, -421], [281, -429], [254, -429], [254, -441], [286, -441], [286, -449], [179, -449], [178, -450]]}, "center": {"4-258, T": [202, -420]}}, +{"id": 111, "name": "Leibniz-Keks", "description": "Leibniz-Keks (German: Butterkeks) is a German cookie brand.", "links": {"website": ["https://en.wikipedia.org/wiki/Leibniz-Keks"], "subreddit": ["placeDE", "de"]}, "path": {"9-258, T": [[50, -448], [50, -412], [98, -412], [98, -448]]}, "center": {"9-258, T": [74, -430]}}, +{"id": 112, "name": "u/spez ist ein hurensohn", "description": "\"u/spez ist ein hurensohn\" is German for \"u/spez is a son of a bitch\". This disparaging message against u/spez (Steve Huffman, CEO of Reddit) was written to protest the recent pricing changes to Reddit's API that killed many 3rd-party Reddit apps.", "links": {"website": ["https://en.wikipedia.org/wiki/Steve_Huffman"], "subreddit": ["placeDE", "de"]}, "path": {"2-258, T": [[-137, -449], [-137, -429], [-138, -429], [-138, -392], [-14, -392], [-14, -409], [-60, -409], [-60, -432], [-48, -432], [-46, -434], [-46, -449]]}, "center": {"2-258, T": [-109, -420]}}, {"id": 113, "name": "Mark Rutte", "description": "Mark Rutte is the current prime minister of the Netherlands. He recently resigned from his post after his government collapsed in an immigration dispute, but he remains as a caretaker prime minister until new elections are held.\n\nAlso, Mark Rutte is The Netherlands longest serving prime minister and for many as the only known prime minister in their lifetimes. He held the post since 2010 and remained so for 13 consecutive years.", "links": {"website": ["https://en.wikipedia.org/wiki/Mark_Rutte"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"256-258": [[476, -500], [465, -493], [465, -483], [468, -471], [471, -464], [471, -462], [458, -453], [458, -452], [470, -452], [472, -450], [487, -450], [490, -452], [490, -456], [499, -456], [499, -457], [488, -462], [488, -472], [491, -474], [493, -484], [493, -489], [491, -493], [485, -499], [482, -500], [478, -500], [491, -454], [499, -454], [487, -463], [487, -473], [492, -492], [477, -500], [464, -494], [462, -488], [463, -483], [465, -480], [470, -464], [471, -460], [470, -459], [454, -452], [470, -451], [500, -450], [499, -456], [488, -463], [464, -493]]}, "center": {"256-258": [474, -491]}}, -{"id": 114, "name": "Youtuber Jules Surprised Pikachu", "description": "Surprised Pikachu, a.k.a. Shocked Pikachu, is a meme featuring the character Pikachu from the Pokémon franchise with its mouth open, expressing surprise. The meme is used in when a predictable outcome to a situation nevertheless leaves one surprised. It was added to honor German Youtuber Jules who made a fantastic recap of last year's r/place history. The shocked Pikachu with sunglasses is his profile picture on Youtube.", "links": {"website": ["https://knowyourmeme.com/memes/surprised-pikachu", "https://youtu.be/JRvmpw3yH14"], "subreddit": ["placeDE", "de"]}, "path": {"6-258": [[-4, -431], [-2, -424], [0, -421], [1, -421], [3, -419], [3, -417], [0, -410], [0, -403], [2, -400], [2, -393], [0, -391], [0, -390], [44, -390], [44, -393], [42, -393], [36, -415], [36, -418], [44, -427], [45, -429], [45, -431], [35, -431], [25, -425], [12, -425], [7, -431]]}, "center": {"6-258": [19, -408]}}, +{"id": 114, "name": "Youtuber Jules Surprised Pikachu", "description": "Surprised Pikachu, a.k.a. Shocked Pikachu, is a meme featuring the character Pikachu from the Pokémon franchise with its mouth open, expressing surprise. The meme is used in when a predictable outcome to a situation nevertheless leaves one surprised. It was added to honor German Youtuber Jules who made a fantastic recap of last year's r/place history. The shocked Pikachu with sunglasses is his profile picture on Youtube.", "links": {"website": ["https://knowyourmeme.com/memes/surprised-pikachu", "https://youtu.be/JRvmpw3yH14"], "subreddit": ["placeDE", "de"]}, "path": {"6-258, T": [[-4, -431], [-2, -424], [0, -421], [1, -421], [3, -419], [3, -417], [0, -410], [0, -403], [2, -400], [2, -393], [0, -391], [0, -390], [44, -390], [44, -393], [42, -393], [36, -415], [36, -418], [44, -427], [45, -429], [45, -431], [35, -431], [25, -425], [12, -425], [7, -431]]}, "center": {"6-258, T": [19, -408]}}, {"id": 115, "name": "Natalan", "description": "Natalan is a Latin American streamer.\n\nNatalan and his community created this art piece of Hello Kitty with a blinking eye reminiscent of Sans from the game Undertale.", "links": {"website": ["https://twitch.tv/natalan"], "subreddit": ["natalan"]}, "path": {"25-35": [[249, 55], [289, 55], [289, 86], [249, 86]]}, "center": {"25-35": [269, 71]}}, {"id": 116, "name": "Blue Pikmin", "description": "Blue Pikmin are a type of Pikmin from the game Pikmin that can swim. All other Pikmin drown shortly after entering water.", "links": {"website": ["https://www.pikminwiki.com/Blue_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"10-24": [[195, 77], [190, 81], [190, 87], [186, 90], [186, 94], [189, 98], [189, 109], [194, 109], [197, 107], [198, 103], [198, 101], [196, 99], [196, 94], [198, 91], [194, 87], [194, 83], [198, 83], [198, 79]], "25-37": [[193, 74], [190, 79], [190, 88], [188, 88], [186, 90], [186, 95], [195, 95], [198, 91], [193, 88], [193, 84], [198, 80], [198, 77]]}, "center": {"10-24": [191, 93], "25-37": [191, 91]}}, -{"id": 117, "name": "Greysexual flag", "description": "Greysexual or greyasexual, also spelled graysexual or grayasexual (shortened to grey ace or grace) is a sexual orientation on the asexual spectrum, referring to those who relate to asexuality, yet feel that there are parts of their experience that aren't fully described by the word asexual. A common reason someone may identify as greysexual is that they experience sexual attraction but very infrequently. Some greysexual individuals may only feel sexual attraction once or twice in their life. Others may experience it more frequently, but still not as frequently as allosexual individuals.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Greysexual"]}, "path": {"73-258": [[169, 95], [169, 101], [174, 101], [174, 95]]}, "center": {"73-258": [172, 98]}}, -{"id": 118, "name": "Zubin Sedghi", "description": "The bassist of Tally Hall, with a blue tie.", "links": {"website": ["https://tallyhall.fandom.com/wiki/Zubin_Sedghi"], "subreddit": ["tallyhall"]}, "path": {"16-42": [[80, 89], [77, 92], [77, 102], [85, 102], [85, 92]], "43-258": [[86, 89], [83, 92], [83, 102], [91, 102], [91, 92], [88, 89]]}, "center": {"16-42": [81, 96], "43-258": [87, 96]}}, -{"id": 119, "name": "Ross Federman", "description": "The drummer of Tally Hall, with a gray tie.", "links": {"website": ["https://tallyhall.fandom.com/wiki/Ross_Federman"], "subreddit": ["tallyhall"]}, "path": {"17-44": [[86, 89], [83, 92], [83, 102], [91, 102], [91, 92], [88, 89]], "45-258": [[92, 89], [89, 92], [89, 102], [97, 102], [97, 92], [94, 89]]}, "center": {"17-44": [87, 96], "45-258": [93, 96]}}, -{"id": 120, "name": "Joe Hawley", "description": "A guitarist of Tally Hall, with a red tie.", "links": {"website": ["https://tallyhall.fandom.com/wiki/Joe_Hawley"], "subreddit": ["tallyhall"]}, "path": {"17-44": [[92, 89], [89, 92], [89, 102], [97, 102], [97, 92], [94, 89]], "45-258": [[98, 89], [95, 92], [95, 102], [103, 102], [103, 92], [100, 89]]}, "center": {"17-44": [93, 96], "45-258": [99, 96]}}, -{"id": 121, "name": "Rob Cantor", "description": "A guitarist of Tally Hall, with a yellow tie.", "links": {"website": ["https://tallyhall.fandom.com/wiki/Rob_Cantor", "https://en.wikipedia.org/wiki/Rob_Cantor"], "subreddit": ["tallyhall"]}, "path": {"18-44": [[98, 89], [95, 92], [95, 102], [103, 102], [103, 92], [100, 89]], "45-258": [[104, 89], [101, 92], [101, 102], [109, 102], [109, 92], [106, 89]]}, "center": {"18-44": [99, 96], "45-258": [105, 96]}}, -{"id": 122, "name": "Andrew Horowitz", "description": "The keyboardist of Tally Hall, with a green tie.", "links": {"website": ["https://tallyhall.fandom.com/wiki/Andrew_Horowitz", "https://en.wikipedia.org/wiki/Andrew_Horowitz"], "subreddit": ["tallyhall"]}, "path": {"18-44": [[104, 89], [101, 92], [101, 102], [109, 102], [109, 92], [106, 89]], "45-258": [[110, 89], [107, 92], [107, 102], [115, 102], [115, 92], [112, 89]]}, "center": {"18-44": [105, 96], "45-258": [111, 96]}}, -{"id": 123, "name": "Coat of arms of Iceland", "description": "Iceland is an island country in the North Atlantic Ocean.", "links": {"subreddit": ["Iceland", "nordics", "place_nordicunion"], "discord": ["nordics"]}, "path": {"18-258": [[-3, -301], [3, -301], [3, -299], [4, -300], [5, -301], [6, -300], [7, -299], [7, -298], [6, -297], [6, -296], [10, -296], [10, -295], [12, -295], [12, -294], [15, -294], [15, -291], [15, -290], [14, -290], [14, -286], [15, -286], [15, -289], [16, -289], [16, -292], [20, -292], [20, -286], [19, -286], [19, -284], [20, -284], [20, -279], [17, -279], [17, -263], [16, -263], [16, -262], [13, -262], [13, -261], [8, -261], [8, -260], [-8, -260], [-8, -261], [-14, -261], [-14, -262], [-15, -262], [-15, -263], [-16, -263], [-16, -267], [-15, -268], [-15, -273], [-16, -274], [-17, -275], [-18, -276], [-18, -277], [-19, -278], [-19, -281], [-16, -281], [-15, -280], [-14, -280], [-13, -281], [-12, -282], [-13, -283], [-13, -287], [-11, -287], [-11, -289], [-14, -289], [-14, -290], [-15, -290], [-15, -294], [-12, -294], [-12, -295], [-10, -295], [-10, -296], [-6, -296], [-6, -299], [-3, -299]]}, "center": {"18-258": [2, -275]}}, -{"id": 124, "name": "Coat of arms of Estonia", "description": "Estonia is a country in Northeastern Europe and one of the Baltic states. The coat of arms of Estonia features three blue lions on a golden shield.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Estonia"], "subreddit": ["Eesti", "BalticStates"]}, "path": {"4-16": [[-61, 422], [-61, 430], [-54, 436], [-50, 437], [-45, 437], [-42, 435], [-42, 430], [-35, 425], [-35, 422]], "17-258": [[-53, 411], [-57, 416], [-57, 422], [-61, 422], [-61, 430], [-54, 436], [-50, 437], [-45, 437], [-40, 435], [-35, 431], [-35, 426], [-34, 425], [-34, 422], [-38, 416], [-42, 411]]}, "center": {"4-16": [-50, 429], "17-258": [-46, 425]}}, -{"id": 125, "name": "Coat of arms of Lithuania", "description": "Lithuania is a country in Northeastern Europe and one of the Baltic states. The coat of arms of Lithuania features a mounted knight.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Lithuania"], "subreddit": ["lithuania", "BalticStates"]}, "path": {"118-258, 15-32, 46-58, 84-98, 101-112": [[-78, 459], [-80, 461], [-82, 461], [-90, 468], [-90, 472], [-87, 472], [-87, 474], [-91, 474], [-95, 478], [-95, 480], [-92, 483], [-90, 481], [-87, 481], [-84, 484], [-81, 484], [-80, 482], [-74, 482], [-69, 486], [-66, 486], [-66, 480], [-65, 480], [-63, 478], [-63, 471], [-65, 469], [-68, 469], [-68, 466], [-72, 465], [-72, 464], [-58, 464], [-58, 460], [-77, 460]]}, "center": {"118-258, 15-32, 46-58, 84-98, 101-112": [-77, 473]}}, -{"id": 126, "name": "Coat of arms of Latvia", "description": "Latvia is a country in Northeastern Europe and one of the Baltic states. The coat of arms of Latvia features a red lion and a silver griffin.", "links": {"website": ["https://en.wikipedia.org/wiki/Latvia", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Latvia"], "subreddit": ["latvia", "BalticStates"]}, "path": {"111-258, 11-24, 36-69": [[-23, 460], [-26, 463], [-26, 468], [-28, 468], [-30, 466], [-32, 468], [-32, 476], [-29, 481], [-29, 483], [-23, 487], [-13, 487], [-9, 484], [-6, 477], [-6, 474], [-5, 473], [-5, 466], [-7, 466], [-9, 468], [-11, 468], [-11, 464], [-14, 461], [-16, 461], [-18, 459], [-19, 459], [-20, 460]]}, "center": {"111-258, 11-24, 36-69": [-19, 476]}}, -{"id": 127, "name": "Flag of Catalonia", "description": "Catalonia is an autonomous community in Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Catalonia", "https://en.wikipedia.org/wiki/Flag_of_Catalonia"], "subreddit": ["catalunya"]}, "path": {"9-18": [[424, 157], [424, 204], [452, 204], [452, 157]], "19-45": [[424, 129], [424, 204], [452, 204], [452, 129]], "58-62": [[631, 129], [631, 204], [659, 204], [659, 129]], "63-258": [[631, 129], [631, 244], [651, 244], [651, 243], [645, 237], [635, 213], [635, 204], [634, 203], [634, 193], [638, 175], [645, 161], [656, 149], [656, 143], [656, 141], [658, 138], [659, 96], [631, 96]]}, "center": {"9-18": [438, 181], "19-45": [438, 167], "58-62": [645, 167], "63-258": [645, 118]}}, -{"id": 128, "name": "Flag of Paraguay", "description": "Paraguay is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguay", "https://en.wikipedia.org/wiki/Flag_of_Paraguay"], "subreddit": ["Paraguay"]}, "path": {"11-13": [[419, 189], [419, 204], [433, 204], [433, 194], [434, 193], [434, 189]], "14-56": [[281, 188], [281, 204], [424, 204], [424, 188]], "57-258": [[424, 187], [424, 204], [309, 204], [309, 203], [310, 202], [312, 201], [314, 200], [316, 199], [317, 198], [317, 187]]}, "center": {"11-13": [426, 197], "14-56": [353, 196], "57-258": [369, 196]}}, -{"id": 129, "name": "foolishWallshark", "description": "foolishWallshark is an emote of a shark, mascot of Twitch streamer Foolish_Gamers (real name Noah Brown). He is known for his variety streams and his content for the game Minecraft.", "links": {"website": ["https://www.twitchmetrics.net/e/307736730-foolishWallshark", "https://www.twitch.tv/foolish_gamers"], "subreddit": ["FoolishGamers"]}, "path": {"22-258": [[332, 361], [332, 412], [368, 412], [368, 361]]}, "center": {"22-258": [350, 387]}}, -{"id": 130, "name": "Hytale", "description": "Hytale is an upcoming voxel sandbox role-playing game developed by Hypixel Studios. Production began in 2015 by developers from Hypixel, a multiplayer server for the game Minecraft. The developers received funding and assistance from Riot Games, who later acquired the studio in 2020.", "links": {"website": ["https://hytale.com/", "https://en.wikipedia.org/wiki/Hytale"], "subreddit": ["HytaleInfo"], "discord": ["WSjqdz3"]}, "path": {"2-31": [[-253, 67], [-255, 69], [-255, 72], [-254, 73], [-254, 87], [-245, 96], [-242, 96], [-236, 90], [-236, 86], [-197, 86], [-197, 75], [-235, 75], [-235, 69], [-237, 67]], "32-48": [[-253, 76], [-255, 78], [-255, 80], [-253, 80], [-252, 81], [-252, 94], [-248, 98], [-244, 98], [-244, 102], [-242, 102], [-238, 98], [-238, 93], [-197, 93], [-197, 84], [-236, 84], [-236, 76]], "66-107": [[508, -31], [508, -24], [507, -23], [507, -15], [511, -9], [516, -4], [518, -4], [518, -1], [522, -1], [528, -7], [532, -17], [532, -22], [530, -24], [530, -31]], "111-258": [[619, -37], [619, -23], [621, -23], [626, -21], [628, -21], [630, -23], [633, -23], [633, -37]]}, "center": {"2-31": [-244, 80], "32-48": [-244, 87], "66-107": [519, -18], "111-258": [626, -30]}}, +{"id": 117, "name": "Greysexual flag", "description": "Greysexual or greyasexual, also spelled graysexual or grayasexual (shortened to grey ace or grace) is a sexual orientation on the asexual spectrum, referring to those who relate to asexuality, yet feel that there are parts of their experience that aren't fully described by the word asexual. A common reason someone may identify as greysexual is that they experience sexual attraction but very infrequently. Some greysexual individuals may only feel sexual attraction once or twice in their life. Others may experience it more frequently, but still not as frequently as allosexual individuals.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Greysexual"]}, "path": {"73-258, T": [[169, 95], [169, 101], [174, 101], [174, 95]]}, "center": {"73-258, T": [172, 98]}}, +{"id": 118, "name": "Zubin Sedghi", "description": "The bassist of Tally Hall, with a blue tie.", "links": {"website": ["https://tallyhall.fandom.com/wiki/Zubin_Sedghi"], "subreddit": ["tallyhall"]}, "path": {"16-42": [[80, 89], [77, 92], [77, 102], [85, 102], [85, 92]], "43-258, T": [[86, 89], [83, 92], [83, 102], [91, 102], [91, 92], [88, 89]]}, "center": {"16-42": [81, 96], "43-258, T": [87, 96]}}, +{"id": 119, "name": "Ross Federman", "description": "The drummer of Tally Hall, with a gray tie.", "links": {"website": ["https://tallyhall.fandom.com/wiki/Ross_Federman"], "subreddit": ["tallyhall"]}, "path": {"17-44": [[86, 89], [83, 92], [83, 102], [91, 102], [91, 92], [88, 89]], "45-258, T": [[92, 89], [89, 92], [89, 102], [97, 102], [97, 92], [94, 89]]}, "center": {"17-44": [87, 96], "45-258, T": [93, 96]}}, +{"id": 120, "name": "Joe Hawley", "description": "A guitarist of Tally Hall, with a red tie.", "links": {"website": ["https://tallyhall.fandom.com/wiki/Joe_Hawley"], "subreddit": ["tallyhall"]}, "path": {"17-44": [[92, 89], [89, 92], [89, 102], [97, 102], [97, 92], [94, 89]], "45-258, T": [[98, 89], [95, 92], [95, 102], [103, 102], [103, 92], [100, 89]]}, "center": {"17-44": [93, 96], "45-258, T": [99, 96]}}, +{"id": 121, "name": "Rob Cantor", "description": "A guitarist of Tally Hall, with a yellow tie.", "links": {"website": ["https://tallyhall.fandom.com/wiki/Rob_Cantor", "https://en.wikipedia.org/wiki/Rob_Cantor"], "subreddit": ["tallyhall"]}, "path": {"18-44": [[98, 89], [95, 92], [95, 102], [103, 102], [103, 92], [100, 89]], "45-258, T": [[104, 89], [101, 92], [101, 102], [109, 102], [109, 92], [106, 89]]}, "center": {"18-44": [99, 96], "45-258, T": [105, 96]}}, +{"id": 122, "name": "Andrew Horowitz", "description": "The keyboardist of Tally Hall, with a green tie.", "links": {"website": ["https://tallyhall.fandom.com/wiki/Andrew_Horowitz", "https://en.wikipedia.org/wiki/Andrew_Horowitz"], "subreddit": ["tallyhall"]}, "path": {"18-44": [[104, 89], [101, 92], [101, 102], [109, 102], [109, 92], [106, 89]], "45-258, T": [[110, 89], [107, 92], [107, 102], [115, 102], [115, 92], [112, 89]]}, "center": {"18-44": [105, 96], "45-258, T": [111, 96]}}, +{"id": 123, "name": "Coat of arms of Iceland", "description": "Iceland is an island country in the North Atlantic Ocean.", "links": {"subreddit": ["Iceland", "nordics", "place_nordicunion"], "discord": ["nordics"]}, "path": {"18-258, T": [[-3, -301], [3, -301], [3, -299], [4, -300], [5, -301], [6, -300], [7, -299], [7, -298], [6, -297], [6, -296], [10, -296], [10, -295], [12, -295], [12, -294], [15, -294], [15, -291], [15, -290], [14, -290], [14, -286], [15, -286], [15, -289], [16, -289], [16, -292], [20, -292], [20, -286], [19, -286], [19, -284], [20, -284], [20, -279], [17, -279], [17, -263], [16, -263], [16, -262], [13, -262], [13, -261], [8, -261], [8, -260], [-8, -260], [-8, -261], [-14, -261], [-14, -262], [-15, -262], [-15, -263], [-16, -263], [-16, -267], [-15, -268], [-15, -273], [-16, -274], [-17, -275], [-18, -276], [-18, -277], [-19, -278], [-19, -281], [-16, -281], [-15, -280], [-14, -280], [-13, -281], [-12, -282], [-13, -283], [-13, -287], [-11, -287], [-11, -289], [-14, -289], [-14, -290], [-15, -290], [-15, -294], [-12, -294], [-12, -295], [-10, -295], [-10, -296], [-6, -296], [-6, -299], [-3, -299]]}, "center": {"18-258, T": [2, -275]}}, +{"id": 124, "name": "Coat of arms of Estonia", "description": "Estonia is a country in Northeastern Europe and one of the Baltic states. The coat of arms of Estonia features three blue lions on a golden shield.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Estonia"], "subreddit": ["Eesti", "BalticStates"]}, "path": {"4-16": [[-61, 422], [-61, 430], [-54, 436], [-50, 437], [-45, 437], [-42, 435], [-42, 430], [-35, 425], [-35, 422]], "17-258, T": [[-53, 411], [-57, 416], [-57, 422], [-61, 422], [-61, 430], [-54, 436], [-50, 437], [-45, 437], [-40, 435], [-35, 431], [-35, 426], [-34, 425], [-34, 422], [-38, 416], [-42, 411]]}, "center": {"4-16": [-50, 429], "17-258, T": [-46, 425]}}, +{"id": 125, "name": "Coat of arms of Lithuania", "description": "Lithuania is a country in Northeastern Europe and one of the Baltic states. The coat of arms of Lithuania features a mounted knight.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Lithuania"], "subreddit": ["lithuania", "BalticStates"]}, "path": {"118-258, 15-32, 46-58, 84-98, 101-112, T": [[-78, 459], [-80, 461], [-82, 461], [-90, 468], [-90, 472], [-87, 472], [-87, 474], [-91, 474], [-95, 478], [-95, 480], [-92, 483], [-90, 481], [-87, 481], [-84, 484], [-81, 484], [-80, 482], [-74, 482], [-69, 486], [-66, 486], [-66, 480], [-65, 480], [-63, 478], [-63, 471], [-65, 469], [-68, 469], [-68, 466], [-72, 465], [-72, 464], [-58, 464], [-58, 460], [-77, 460]]}, "center": {"118-258, 15-32, 46-58, 84-98, 101-112, T": [-77, 473]}}, +{"id": 126, "name": "Coat of arms of Latvia", "description": "Latvia is a country in Northeastern Europe and one of the Baltic states. The coat of arms of Latvia features a red lion and a silver griffin.", "links": {"website": ["https://en.wikipedia.org/wiki/Latvia", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Latvia"], "subreddit": ["latvia", "BalticStates"]}, "path": {"111-258, 11-24, 36-69, T": [[-23, 460], [-26, 463], [-26, 468], [-28, 468], [-30, 466], [-32, 468], [-32, 476], [-29, 481], [-29, 483], [-23, 487], [-13, 487], [-9, 484], [-6, 477], [-6, 474], [-5, 473], [-5, 466], [-7, 466], [-9, 468], [-11, 468], [-11, 464], [-14, 461], [-16, 461], [-18, 459], [-19, 459], [-20, 460]]}, "center": {"111-258, 11-24, 36-69, T": [-19, 476]}}, +{"id": 127, "name": "Flag of Catalonia", "description": "Catalonia is an autonomous community in Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Catalonia", "https://en.wikipedia.org/wiki/Flag_of_Catalonia"], "subreddit": ["catalunya"]}, "path": {"9-18": [[424, 157], [424, 204], [452, 204], [452, 157]], "19-45": [[424, 129], [424, 204], [452, 204], [452, 129]], "58-62": [[631, 129], [631, 204], [659, 204], [659, 129]], "63-258, T": [[631, 129], [631, 244], [651, 244], [651, 243], [645, 237], [635, 213], [635, 204], [634, 203], [634, 193], [638, 175], [645, 161], [656, 149], [656, 143], [656, 141], [658, 138], [659, 96], [631, 96]]}, "center": {"9-18": [438, 181], "19-45": [438, 167], "58-62": [645, 167], "63-258, T": [645, 118]}}, +{"id": 128, "name": "Flag of Paraguay", "description": "Paraguay is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguay", "https://en.wikipedia.org/wiki/Flag_of_Paraguay"], "subreddit": ["Paraguay"]}, "path": {"11-13": [[419, 189], [419, 204], [433, 204], [433, 194], [434, 193], [434, 189]], "14-56": [[281, 188], [281, 204], [424, 204], [424, 188]], "57-258, T": [[424, 187], [424, 204], [309, 204], [309, 203], [310, 202], [312, 201], [314, 200], [316, 199], [317, 198], [317, 187]]}, "center": {"11-13": [426, 197], "14-56": [353, 196], "57-258, T": [369, 196]}}, +{"id": 129, "name": "foolishWallshark", "description": "foolishWallshark is an emote of a shark, mascot of Twitch streamer Foolish_Gamers (real name Noah Brown). He is known for his variety streams and his content for the game Minecraft.", "links": {"website": ["https://www.twitchmetrics.net/e/307736730-foolishWallshark", "https://www.twitch.tv/foolish_gamers"], "subreddit": ["FoolishGamers"]}, "path": {"22-258, T": [[332, 361], [332, 412], [368, 412], [368, 361]]}, "center": {"22-258, T": [350, 387]}}, +{"id": 130, "name": "Hytale", "description": "Hytale is an upcoming voxel sandbox role-playing game developed by Hypixel Studios. Production began in 2015 by developers from Hypixel, a multiplayer server for the game Minecraft. The developers received funding and assistance from Riot Games, who later acquired the studio in 2020.", "links": {"website": ["https://hytale.com/", "https://en.wikipedia.org/wiki/Hytale"], "subreddit": ["HytaleInfo"], "discord": ["WSjqdz3"]}, "path": {"2-31": [[-253, 67], [-255, 69], [-255, 72], [-254, 73], [-254, 87], [-245, 96], [-242, 96], [-236, 90], [-236, 86], [-197, 86], [-197, 75], [-235, 75], [-235, 69], [-237, 67]], "32-48": [[-253, 76], [-255, 78], [-255, 80], [-253, 80], [-252, 81], [-252, 94], [-248, 98], [-244, 98], [-244, 102], [-242, 102], [-238, 98], [-238, 93], [-197, 93], [-197, 84], [-236, 84], [-236, 76]], "66-107": [[508, -31], [508, -24], [507, -23], [507, -15], [511, -9], [516, -4], [518, -4], [518, -1], [522, -1], [528, -7], [532, -17], [532, -22], [530, -24], [530, -31]], "111-258, T": [[619, -37], [619, -23], [621, -23], [626, -21], [628, -21], [630, -23], [633, -23], [633, -37]]}, "center": {"2-31": [-244, 80], "32-48": [-244, 87], "66-107": [519, -18], "111-258, T": [626, -30]}}, {"id": 131, "name": "Deep Space Airships", "description": "Deep Space Airships, a.k.a drednot.io or Dredark, is a free multiplayer ship construction and combat game. Build a flying battleship with your friends and conquer the skies!", "links": {"website": ["https://drednot.io/"], "subreddit": ["DredarkContraptions"]}, "path": {"14-28": [[-299, 130], [-299, 137], [-261, 137], [-261, 130]]}, "center": {"14-28": [-280, 134]}}, {"id": 132, "name": "Flag of Algeria", "description": "Algeria is a country in North Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Algeria", "https://en.wikipedia.org/wiki/Flag_of_Algeria"], "subreddit": ["algeria"]}, "path": {"24-27": [[-272, 121], [-272, 130], [-265, 130], [-265, 121]]}, "center": {"24-27": [-268, 126]}}, -{"id": 133, "name": "Vivy", "description": "The main character of the anime Vivy: Fluorite Eyes Song\nIn the far future where AIs go rogue and eradicate humanity, a scientist in his last moment manage to send a messenger 100 years to the past to ask for help with stopping the apocalypse from Vivy, a songstress android performing at an amusement park", "links": {"website": ["https://en.wikipedia.org/wiki/Vivy:_Fluorite_Eye%27s_Song"], "subreddit": ["Vivy"]}, "path": {"23-26": [[127, -26], [127, -20], [137, -20], [137, -26]], "27-28": [[127, -26], [127, -20], [146, -20], [146, -26]], "29-47": [[124, -26], [124, -16], [170, -16], [170, -26]], "48-119": [[124, -26], [124, -10], [174, -10], [174, -26]], "120-258": [[98, -9], [118, -9], [118, 33], [98, 33]]}, "center": {"23-26": [132, -23], "27-28": [137, -23], "29-47": [147, -21], "48-119": [149, -18], "120-258": [108, 12]}}, +{"id": 133, "name": "Vivy", "description": "The main character of the anime Vivy: Fluorite Eyes Song\nIn the far future where AIs go rogue and eradicate humanity, a scientist in his last moment manage to send a messenger 100 years to the past to ask for help with stopping the apocalypse from Vivy, a songstress android performing at an amusement park", "links": {"website": ["https://en.wikipedia.org/wiki/Vivy:_Fluorite_Eye%27s_Song"], "subreddit": ["Vivy"]}, "path": {"23-26": [[127, -26], [127, -20], [137, -20], [137, -26]], "27-28": [[127, -26], [127, -20], [146, -20], [146, -26]], "29-47": [[124, -26], [124, -16], [170, -16], [170, -26]], "48-119": [[124, -26], [124, -10], [174, -10], [174, -26]], "120-258, T": [[98, -9], [118, -9], [118, 33], [98, 33]]}, "center": {"23-26": [132, -23], "27-28": [137, -23], "29-47": [147, -21], "48-119": [149, -18], "120-258, T": [108, 12]}}, {"id": 134, "name": "Tetris Logo", "description": "The logo for a puzzle video game created in 1985 by Alexey Pajitnov, a Soviet software engineer.", "links": {"website": ["https://tetris.com/"], "subreddit": ["tetris"]}, "path": {"2-28": [[256, 148], [256, 157], [257, 158], [260, 159], [260, 160], [262, 161], [273, 161], [274, 160], [274, 159], [276, 158], [278, 158], [279, 160], [302, 160], [302, 148], [279, 148]]}, "center": {"2-28": [270, 154]}}, {"id": 135, "name": "Infinity for Reddit", "description": "Infinity is a third-party app made by Docile Alligator.", "links": {"subreddit": ["PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80": [[-30, 31], [-26, 31], [-26, 30], [-24, 30], [-24, 29], [-23, 29], [-23, 23], [-24, 23], [-24, 22], [-26, 22], [-26, 21], [-30, 21], [-30, 22], [-32, 22], [-32, 23], [-33, 23], [-33, 29], [-32, 29], [-32, 30], [-30, 30]]}, "center": {"10-80": [-28, 26]}}, {"id": 136, "name": "Fuck Spez", "description": "Fuck Spez is a protest to the change of API", "links": {"subreddit": ["PlaceAPI", "Save3rdPartyApps"]}, "path": {"26": [[-215, 214], [-200, 214], [-198, 208], [-190, 201], [-189, 194], [-187, 186], [-184, 183], [-183, 184], [-180, 184], [-169, 189], [-171, 192], [-171, 206], [-168, 215], [-167, 222], [-165, 193], [-97, 194], [-95, 207], [-81, 197], [-50, 204], [-45, 199], [-55, 197], [-54, 191], [-53, 186], [-51, 182], [-42, 179], [-35, 179], [-34, 175], [-18, 182], [-17, 191], [-14, 199], [-15, 208], [4, 212], [8, 210], [12, 215], [13, 223], [16, 222], [19, 226], [23, 223], [27, 226], [26, 229], [27, 235], [25, 239], [23, 251], [29, 257], [29, 270], [68, 269], [69, 253], [79, 253], [84, 252], [101, 254], [108, 255], [115, 257], [121, 260], [122, 270], [151, 270], [151, 258], [175, 257], [175, 282], [280, 282], [280, 236], [260, 236], [260, 246], [256, 252], [240, 262], [221, 264], [211, 261], [204, 255], [192, 241], [190, 231], [148, 230], [147, 233], [119, 233], [119, 227], [89, 229], [90, 190], [84, 190], [79, 161], [82, 106], [50, 106], [48, 123], [7, 124], [5, 84], [-13, 85], [-11, 67], [-4, 67], [-3, 65], [109, 64], [106, 31], [77, 34], [77, -10], [118, -10], [119, -16], [92, -16], [91, -81], [-78, -81], [-78, -59], [-144, -59], [-142, 70], [-142, 73], [-270, 72], [-271, 91], [-254, 113], [-250, 118], [-243, 137], [-239, 167], [-215, 167]]}, "center": {"26": [-67, 16]}}, {"id": 137, "name": "Creeper", "description": "A creeper is an iconic hostile mob in the game Minecraft, a sandbox video game developed by Mojang Studios in Sweden. Creepers approach the player and explode.", "links": {"website": ["https://minecraft.fandom.com/wiki/Creeper", "https://en.wikipedia.org/wiki/Creeper_(Minecraft)"], "subreddit": ["Minecraft"]}, "path": {"21-27": [[435, -88], [435, -78], [437, -78], [437, -74], [435, -72], [435, -68], [444, -68], [444, -72], [442, -74], [442, -78], [444, -78], [444, -88]]}, "center": {"21-27": [440, -83]}}, {"id": 138, "name": "Relay for Reddit", "description": "Relay is a third-party app created by DBrady.", "links": {"subreddit": ["PlaceAPI", "Save3rdPartyApps"]}, "path": {"11-80": [[44, 29], [44, 23], [45, 23], [45, 22], [47, 22], [47, 21], [51, 21], [51, 22], [53, 22], [53, 23], [54, 23], [54, 29], [53, 29], [53, 30], [51, 30], [51, 31], [47, 31], [47, 30], [45, 30], [45, 29]]}, "center": {"11-80": [49, 26]}}, -{"id": 139, "name": "Coat of arms of Austria", "description": "The coat of arms of Austria features a crowned black eagle. The eagle wears the so called \"Mauerkrone\" (Wallcrown) to represent the Bourgeoisie, hold Hammer and Sickle to represent Workers and Peasants and features broken chains to represent freedom from Nazi opression.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"14-258": [[-279, -55], [-279, -36], [-277, -32], [-271, -26], [-260, -26], [-253, -33], [-252, -36], [-252, -55], [-259, -55], [-260, -56], [-271, -56], [-272, -55]]}, "center": {"14-258": [-265, -42]}}, -{"id": 140, "name": "NAVI", "description": "Natus Vincere (Latin for \"born to win\"), better known as NAVI or Na'Vi, is a Ukrainian esports organization.", "links": {"website": ["https://navi.gg/en/", "https://en.wikipedia.org/wiki/Natus_Vincere"], "subreddit": ["natusvincere", "placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"17-258": [[-319, -139], [-323, -134], [-323, -103], [-321, -100], [-314, -100], [-309, -102], [-244, -126], [-242, -128], [-242, -159], [-245, -162], [-252, -162]]}, "center": {"17-258": [-303, -124]}}, -{"id": 141, "name": "Flag of England", "description": "England is one of the countries in the United Kingdom. Its national flag is known as St. George's Cross.", "links": {"website": ["https://en.wikipedia.org/wiki/England", "https://en.wikipedia.org/wiki/Flag_of_England"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"24-258": [[-334, -330], [-334, -322], [-320, -322], [-320, -330]]}, "center": {"24-258": [-327, -326]}}, -{"id": 142, "name": "Flag of Scotland", "description": "Scotland is a country in the United Kingdom. The national flag of Scotland is known as St. Andrew's Cross.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland", "https://en.wikipedia.org/wiki/Flag_of_Scotland"], "subreddit": ["Scotland", "ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"19-258": [[-334, -322], [-334, -315], [-320, -315], [-320, -322]]}, "center": {"19-258": [-327, -318]}}, -{"id": 143, "name": "Flag of Wales", "description": "Wales is one of the countries in the United Kingdom. Its flag features the Dragon of Cadwaladr, also known as Y Ddraig Goch (The Red Dragon).", "links": {"website": ["https://en.wikipedia.org/wiki/Wales", "https://en.wikipedia.org/wiki/Flag_of_Wales"], "subreddit": ["Wales", "ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"25-258": [[-334, -315], [-334, -307], [-320, -307], [-320, -315]]}, "center": {"25-258": [-327, -311]}}, -{"id": 144, "name": "Ulster Banner", "description": "The Ulster Banner is an unofficial flag of Northern Ireland, a part of the United Kingdom on the island of Ireland. Northern Ireland has no official flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Northern_Ireland", "https://en.wikipedia.org/wiki/Ulster_Banner"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"25-258": [[-334, -307], [-334, -299], [-320, -299], [-320, -307]]}, "center": {"25-258": [-327, -303]}}, -{"id": 145, "name": "Flag of Cornwall", "description": "Cornwall is one of the Celtic nations, home to the Cornish people, and has a distinct cultural heritage and identity. The flag of Cornwall is known as St. Piran's flag. Whilst part of England and the United Kingdom, Cornwall was granted national minority status in 2014 in recognition of the unique identity of the Cornish, a status shared by the Scots, Welsh and Irish.", "links": {"website": ["https://en.wikipedia.org/wiki/Cornwall", "https://en.wikipedia.org/wiki/Saint_Piran%27s_Flag"], "subreddit": ["Cornwall", "ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"26-258": [[-334, -283], [-334, -275], [-320, -275], [-320, -283]]}, "center": {"26-258": [-327, -279]}}, +{"id": 139, "name": "Coat of arms of Austria", "description": "The coat of arms of Austria features a crowned black eagle. The eagle wears the so called \"Mauerkrone\" (Wallcrown) to represent the Bourgeoisie, hold Hammer and Sickle to represent Workers and Peasants and features broken chains to represent freedom from Nazi opression.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"14-258, T": [[-279, -55], [-279, -36], [-277, -32], [-271, -26], [-260, -26], [-253, -33], [-252, -36], [-252, -55], [-259, -55], [-260, -56], [-271, -56], [-272, -55]]}, "center": {"14-258, T": [-265, -42]}}, +{"id": 140, "name": "NAVI", "description": "Natus Vincere (Latin for \"born to win\"), better known as NAVI or Na'Vi, is a Ukrainian esports organization.", "links": {"website": ["https://navi.gg/en/", "https://en.wikipedia.org/wiki/Natus_Vincere"], "subreddit": ["natusvincere", "placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"17-258, T": [[-319, -139], [-323, -134], [-323, -103], [-321, -100], [-314, -100], [-309, -102], [-244, -126], [-242, -128], [-242, -159], [-245, -162], [-252, -162]]}, "center": {"17-258, T": [-303, -124]}}, +{"id": 141, "name": "Flag of England", "description": "England is one of the countries in the United Kingdom. Its national flag is known as St. George's Cross.", "links": {"website": ["https://en.wikipedia.org/wiki/England", "https://en.wikipedia.org/wiki/Flag_of_England"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"24-258, T": [[-334, -330], [-334, -322], [-320, -322], [-320, -330]]}, "center": {"24-258, T": [-327, -326]}}, +{"id": 142, "name": "Flag of Scotland", "description": "Scotland is a country in the United Kingdom. The national flag of Scotland is known as St. Andrew's Cross.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland", "https://en.wikipedia.org/wiki/Flag_of_Scotland"], "subreddit": ["Scotland", "ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"19-258, T": [[-334, -322], [-334, -315], [-320, -315], [-320, -322]]}, "center": {"19-258, T": [-327, -318]}}, +{"id": 143, "name": "Flag of Wales", "description": "Wales is one of the countries in the United Kingdom. Its flag features the Dragon of Cadwaladr, also known as Y Ddraig Goch (The Red Dragon).", "links": {"website": ["https://en.wikipedia.org/wiki/Wales", "https://en.wikipedia.org/wiki/Flag_of_Wales"], "subreddit": ["Wales", "ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"25-258, T": [[-334, -315], [-334, -307], [-320, -307], [-320, -315]]}, "center": {"25-258, T": [-327, -311]}}, +{"id": 144, "name": "Ulster Banner", "description": "The Ulster Banner is an unofficial flag of Northern Ireland, a part of the United Kingdom on the island of Ireland. Northern Ireland has no official flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Northern_Ireland", "https://en.wikipedia.org/wiki/Ulster_Banner"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"25-258, T": [[-334, -307], [-334, -299], [-320, -299], [-320, -307]]}, "center": {"25-258, T": [-327, -303]}}, +{"id": 145, "name": "Flag of Cornwall", "description": "Cornwall is one of the Celtic nations, home to the Cornish people, and has a distinct cultural heritage and identity. The flag of Cornwall is known as St. Piran's flag. Whilst part of England and the United Kingdom, Cornwall was granted national minority status in 2014 in recognition of the unique identity of the Cornish, a status shared by the Scots, Welsh and Irish.", "links": {"website": ["https://en.wikipedia.org/wiki/Cornwall", "https://en.wikipedia.org/wiki/Saint_Piran%27s_Flag"], "subreddit": ["Cornwall", "ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"26-258, T": [[-334, -283], [-334, -275], [-320, -275], [-320, -283]]}, "center": {"26-258, T": [-327, -279]}}, {"id": 146, "name": "Flag of Brittany", "description": "Brittany is the westernmost region of France and a region of Celtic ethnicity and culture. The Breton flag, also known as Gwenn-ha-du, features nine stripes representing the nine Breton districts, along with eleven ermines. \nThis was the first spot in which Bretons of r/Bretagne and the PlaceBZH discord server settled, before being replaced.", "links": {"website": ["https://en.wikipedia.org/wiki/Brittany", "https://en.wikipedia.org/wiki/Flag_of_Brittany"], "subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"22-27": [[-334, -178], [-334, -168], [-313, -168], [-313, -178]]}, "center": {"22-27": [-323, -173]}}, -{"id": 147, "name": "Oida", "description": "A universal Austrian word which is usually used at the beginning or at the end of a sentence. It can be used to address someone or to emphasize on something. A related English word is \"dude\".", "links": {"website": ["https://www.urbandictionary.com/define.php?term=Oida"], "subreddit": ["placeAustria", "Austria"]}, "path": {"17-258": [[-246, -47], [-248, -45], [-248, -38], [-246, -36], [-230, -36], [-228, -38], [-228, -45], [-230, -47]]}, "center": {"17-258": [-238, -41]}}, -{"id": 148, "name": "OMORI", "description": "OMORI is the titular deuteragonist in the game OMORI. OMORI can be controlled by the player during the night, where WHITE SPACE can be explored. When OMORI is in the lead, he can cut down obstacles with his knife.", "links": {"website": ["https://omori.fandom.com/wiki/OMORI"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"9-258": [[-261, -230], [-264, -228], [-267, -224], [-267, -221], [-268, -220], [-268, -218], [-262, -213], [-264, -211], [-264, -209], [-263, -208], [-263, -205], [-260, -202], [-255, -202], [-252, -205], [-252, -208], [-251, -209], [-251, -211], [-253, -213], [-247, -218], [-247, -220], [-248, -221], [-248, -228], [-251, -231], [-252, -230]]}, "center": {"9-258": [-258, -221]}}, -{"id": 149, "name": "SOMETHING", "description": "SOMETHING is an entity central to the game's plot in the 2020 video game OMORI.\n\nSOMETHING IN THE DOORWAY\nSOMETHING taunts _____ as he falls.\nSOMETHING listens to _____'s struggle.\nSOMETHING is trying to talk to you...", "links": {"website": ["https://omori.fandom.com/wiki/SOMETHING"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"11-73": [[-241, -258], [-244, -255], [-245, -252], [-245, -237], [-244, -237], [-244, -227], [-239, -224], [-235, -226], [-235, -231], [-239, -231], [-239, -244], [-235, -246], [-235, -252], [-236, -253], [-236, -255], [-239, -258]], "171-258": [[-1352, -369], [-1352, -247], [-1337, -247], [-1328, -257], [-1325, -257], [-1325, -247], [-1319, -247], [-1318, -228], [-1313, -228], [-1312, -247], [-1279, -247], [-1279, -369]]}, "center": {"11-73": [-240, -249], "171-258": [-1315, -298]}}, -{"id": 150, "name": "MARI", "description": "MARI is a major supporting character and the sister of protagonist SUNNY in the indie role-playing game OMORI. She was initially added in the canvas as her headspace version, and later was changed to her normal version.", "links": {"website": ["https://omori.fandom.com/wiki/MARI"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"10-258": [[-291, -230], [-295, -227], [-298, -222], [-298, -210], [-293, -203], [-293, -201], [-291, -199], [-284, -199], [-282, -201], [-282, -204], [-281, -204], [-277, -210], [-277, -222], [-279, -226], [-282, -229], [-284, -230]]}, "center": {"10-258": [-287, -214]}}, -{"id": 151, "name": "AUBREY", "description": "AUBREY is one of the deuteragonists in the indie role-playing game OMORI.", "links": {"website": ["https://omori.fandom.com/wiki/AUBREY"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"11-258": [[-262, -200], [-266, -196], [-267, -194], [-267, -191], [-268, -190], [-268, -188], [-266, -186], [-266, -178], [-263, -175], [-263, -172], [-261, -170], [-254, -170], [-252, -172], [-252, -175], [-249, -178], [-249, -186], [-247, -188], [-247, -190], [-248, -191], [-248, -195], [-249, -196], [-249, -200]]}, "center": {"11-258": [-257, -189]}}, -{"id": 152, "name": "HERO", "description": "HERO is one of the three deuteragonists in the indie game OMORI.", "links": {"website": ["https://omori.fandom.com/wiki/HERO"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"12-258": [[-292, -198], [-296, -196], [-300, -192], [-301, -190], [-301, -186], [-300, -185], [-300, -181], [-296, -181], [-296, -180], [-295, -179], [-295, -176], [-296, -175], [-296, -172], [-294, -170], [-280, -170], [-278, -172], [-278, -174], [-281, -177], [-282, -176], [-284, -176], [-286, -179], [-286, -180], [-283, -183], [-283, -186], [-281, -186], [-281, -190], [-280, -191], [-280, -195], [-283, -195], [-288, -198]]}, "center": {"12-258": [-291, -188]}}, -{"id": 153, "name": "KEL", "description": "KEL is a supporting character from the 2020 game OMORI. He has a pet rock named HECTOR. \"Helllloooooooooooo? SUNNY? Are you there? Do you remember me? It's your old friend, KEL!\"", "links": {"website": ["https://omori.fandom.com/wiki/KEL"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"9-71": [[-213, -238], [-218, -233], [-218, -225], [-215, -222], [-215, -221], [-217, -221], [-220, -218], [-218, -216], [-214, -216], [-214, -210], [-212, -208], [-205, -208], [-203, -210], [-203, -214], [-202, -214], [-200, -216], [-200, -217], [-203, -220], [-203, -221], [-198, -226], [-198, -228], [-199, -229], [-199, -233], [-204, -238]], "72-258": [[-212, -248], [-215, -246], [-218, -242], [-218, -231], [-219, -229], [-219, -228], [-217, -226], [-214, -226], [-214, -220], [-212, -218], [-205, -218], [-203, -220], [-203, -223], [-202, -224], [-200, -226], [-200, -227], [-203, -230], [-203, -231], [-198, -236], [-198, -238], [-200, -243], [-202, -246], [-205, -248]]}, "center": {"9-71": [-209, -229], "72-258": [-209, -238]}}, -{"id": 154, "name": "BASIL", "description": "BASIL is a major supporting character in the indie psychological horror role-playing game OMORI, released in late 2020. BASIL is drawn wearing the flower crown he was first introduced with.", "links": {"website": ["https://omori.fandom.com/wiki/BASIL"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"9-258": [[-291, -259], [-295, -256], [-297, -256], [-301, -252], [-302, -250], [-297, -245], [-297, -243], [-295, -241], [-294, -241], [-294, -238], [-293, -237], [-293, -234], [-290, -230], [-285, -230], [-283, -232], [-283, -234], [-281, -238], [-281, -241], [-280, -241], [-278, -243], [-278, -245], [-274, -250], [-279, -256], [-284, -259]]}, "center": {"9-258": [-287, -249]}}, +{"id": 147, "name": "Oida", "description": "A universal Austrian word which is usually used at the beginning or at the end of a sentence. It can be used to address someone or to emphasize on something. A related English word is \"dude\".", "links": {"website": ["https://www.urbandictionary.com/define.php?term=Oida"], "subreddit": ["placeAustria", "Austria"]}, "path": {"17-258, T": [[-246, -47], [-248, -45], [-248, -38], [-246, -36], [-230, -36], [-228, -38], [-228, -45], [-230, -47]]}, "center": {"17-258, T": [-238, -41]}}, +{"id": 148, "name": "OMORI", "description": "OMORI is the titular deuteragonist in the game OMORI. OMORI can be controlled by the player during the night, where WHITE SPACE can be explored. When OMORI is in the lead, he can cut down obstacles with his knife.", "links": {"website": ["https://omori.fandom.com/wiki/OMORI"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"9-258, T": [[-261, -230], [-264, -228], [-267, -224], [-267, -221], [-268, -220], [-268, -218], [-262, -213], [-264, -211], [-264, -209], [-263, -208], [-263, -205], [-260, -202], [-255, -202], [-252, -205], [-252, -208], [-251, -209], [-251, -211], [-253, -213], [-247, -218], [-247, -220], [-248, -221], [-248, -228], [-251, -231], [-252, -230]]}, "center": {"9-258, T": [-258, -221]}}, +{"id": 149, "name": "SOMETHING", "description": "SOMETHING is an entity central to the game's plot in the 2020 video game OMORI.\n\nSOMETHING IN THE DOORWAY\nSOMETHING taunts _____ as he falls.\nSOMETHING listens to _____'s struggle.\nSOMETHING is trying to talk to you...", "links": {"website": ["https://omori.fandom.com/wiki/SOMETHING"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"11-73": [[-241, -258], [-244, -255], [-245, -252], [-245, -237], [-244, -237], [-244, -227], [-239, -224], [-235, -226], [-235, -231], [-239, -231], [-239, -244], [-235, -246], [-235, -252], [-236, -253], [-236, -255], [-239, -258]], "171-258, T": [[-1352, -369], [-1352, -247], [-1337, -247], [-1328, -257], [-1325, -257], [-1325, -247], [-1319, -247], [-1318, -228], [-1313, -228], [-1312, -247], [-1279, -247], [-1279, -369]]}, "center": {"11-73": [-240, -249], "171-258, T": [-1315, -298]}}, +{"id": 150, "name": "MARI", "description": "MARI is a major supporting character and the sister of protagonist SUNNY in the indie role-playing game OMORI. She was initially added in the canvas as her headspace version, and later was changed to her normal version.", "links": {"website": ["https://omori.fandom.com/wiki/MARI"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"10-258, T": [[-291, -230], [-295, -227], [-298, -222], [-298, -210], [-293, -203], [-293, -201], [-291, -199], [-284, -199], [-282, -201], [-282, -204], [-281, -204], [-277, -210], [-277, -222], [-279, -226], [-282, -229], [-284, -230]]}, "center": {"10-258, T": [-287, -214]}}, +{"id": 151, "name": "AUBREY", "description": "AUBREY is one of the deuteragonists in the indie role-playing game OMORI.", "links": {"website": ["https://omori.fandom.com/wiki/AUBREY"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"11-258, T": [[-262, -200], [-266, -196], [-267, -194], [-267, -191], [-268, -190], [-268, -188], [-266, -186], [-266, -178], [-263, -175], [-263, -172], [-261, -170], [-254, -170], [-252, -172], [-252, -175], [-249, -178], [-249, -186], [-247, -188], [-247, -190], [-248, -191], [-248, -195], [-249, -196], [-249, -200]]}, "center": {"11-258, T": [-257, -189]}}, +{"id": 152, "name": "HERO", "description": "HERO is one of the three deuteragonists in the indie game OMORI.", "links": {"website": ["https://omori.fandom.com/wiki/HERO"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"12-258, T": [[-292, -198], [-296, -196], [-300, -192], [-301, -190], [-301, -186], [-300, -185], [-300, -181], [-296, -181], [-296, -180], [-295, -179], [-295, -176], [-296, -175], [-296, -172], [-294, -170], [-280, -170], [-278, -172], [-278, -174], [-281, -177], [-282, -176], [-284, -176], [-286, -179], [-286, -180], [-283, -183], [-283, -186], [-281, -186], [-281, -190], [-280, -191], [-280, -195], [-283, -195], [-288, -198]]}, "center": {"12-258, T": [-291, -188]}}, +{"id": 153, "name": "KEL", "description": "KEL is a supporting character from the 2020 game OMORI. He has a pet rock named HECTOR. \"Helllloooooooooooo? SUNNY? Are you there? Do you remember me? It's your old friend, KEL!\"", "links": {"website": ["https://omori.fandom.com/wiki/KEL"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"9-71": [[-213, -238], [-218, -233], [-218, -225], [-215, -222], [-215, -221], [-217, -221], [-220, -218], [-218, -216], [-214, -216], [-214, -210], [-212, -208], [-205, -208], [-203, -210], [-203, -214], [-202, -214], [-200, -216], [-200, -217], [-203, -220], [-203, -221], [-198, -226], [-198, -228], [-199, -229], [-199, -233], [-204, -238]], "72-258, T": [[-212, -248], [-215, -246], [-218, -242], [-218, -231], [-219, -229], [-219, -228], [-217, -226], [-214, -226], [-214, -220], [-212, -218], [-205, -218], [-203, -220], [-203, -223], [-202, -224], [-200, -226], [-200, -227], [-203, -230], [-203, -231], [-198, -236], [-198, -238], [-200, -243], [-202, -246], [-205, -248]]}, "center": {"9-71": [-209, -229], "72-258, T": [-209, -238]}}, +{"id": 154, "name": "BASIL", "description": "BASIL is a major supporting character in the indie psychological horror role-playing game OMORI, released in late 2020. BASIL is drawn wearing the flower crown he was first introduced with.", "links": {"website": ["https://omori.fandom.com/wiki/BASIL"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"9-258, T": [[-291, -259], [-295, -256], [-297, -256], [-301, -252], [-302, -250], [-297, -245], [-297, -243], [-295, -241], [-294, -241], [-294, -238], [-293, -237], [-293, -234], [-290, -230], [-285, -230], [-283, -232], [-283, -234], [-281, -238], [-281, -241], [-280, -241], [-278, -243], [-278, -245], [-274, -250], [-279, -256], [-284, -259]]}, "center": {"9-258, T": [-287, -249]}}, {"id": 155, "name": "William Afton", "description": "William Afton, also known as the Purple Guy and The Employee, is the main antagonist of the Five Nights at Freddy's franchise. He is the co-founder of Fazbear Entertainment and a serial killer who targets infants and young children. He is directly responsible for all of the incidents and tragedies throughout the series.", "links": {"website": ["https://fivenightsatfreddys.fandom.com/wiki/William_Afton"], "subreddit": ["fivenightsatfreddys"]}, "path": {"27-64": [[-28, 216], [-20, 216], [-20, 215], [-19, 215], [-19, 214], [-18, 214], [-18, 204], [-19, 204], [-19, 203], [-29, 203], [-29, 204], [-30, 204], [-30, 214], [-29, 214], [-29, 215], [-28, 215]]}, "center": {"27-64": [-24, 209]}}, {"id": 156, "name": "Rainbow Road", "description": "Rainbow Road is the final race track in all Mario Kart games.\n\nRainbow Road, returning from previous r/place events and drawn by r/ainbowroad, is an initiative to draw a rainbow trail/road on the canvas and extend it as long as possible.", "links": {"website": ["https://www.mariowiki.com/Rainbow_Road"], "subreddit": ["ainbowroad"]}, "path": {"22-31": [[-95, 230], [-91, 229], [-92, 224], [-79, 210], [-83, 212], [-83, 208], [-73, 205], [-61, 209], [-57, 207], [-54, 211], [-53, 215], [-50, 211], [-49, 209], [-52, 207], [-53, 206], [-52, 203], [-50, 201], [-46, 199], [-51, 197], [-52, 198], [-54, 198], [-54, 191], [-52, 187], [-54, 181], [-54, 177], [-50, 179], [-45, 178], [-34, 177], [-23, 180], [15, 129], [47, 158], [84, 194], [58, 223], [62, 228], [90, 195], [18, 123], [5, 123], [5, 98], [-11, 83], [-19, 82], [-71, 33], [-78, 32], [-78, 20], [-134, -34], [-110, -56], [-115, -60], [-141, -39], [-162, -56], [-191, -31], [-219, -57], [-226, -46], [-223, -43], [-217, -51], [-193, -26], [-187, -26], [-162, -52], [-78, 29], [1, 116], [-41, 153], [-93, 206]], "61-64": [[86, -11], [67, -28], [54, -29], [39, -14], [23, -28], [18, -28], [2, -14], [-15, -28], [-19, -28], [-29, -16], [-40, -27], [-48, -28], [-60, -16], [-60, -11], [-78, -10], [-78, 32], [-56, 32], [-52, 39], [-54, 42], [-58, 41], [-60, 42], [-61, 47], [-59, 49], [-54, 49], [-48, 47], [-51, 48], [-51, 53], [-43, 63], [-39, 66], [-34, 67], [-23, 66], [-19, 66], [-14, 64], [-8, 64], [0, 64], [10, 64], [22, 64], [34, 65], [42, 64], [49, 65], [50, 63], [51, 32], [-56, 32], [-78, 32], [-78, -11], [-56, -11], [-54, -10], [-45, -21], [-44, -22], [-33, -11], [-25, -10], [-15, -23], [-2, -11], [8, -10], [20, -24], [20, -25], [36, -10], [44, -10], [58, -24], [73, -11]]}, "center": {"22-31": [-26, 159], "61-64": [-30, 49]}}, {"id": 157, "name": "The Miraculous", "description": "4 symbols from the french animated childrens show Miraculous: Tales from Ladybug and Cat Noir.\n\nFrom left to right the symbols represent the Miraculous of the bee, of the butterfly, of the black cat and of the ladybug.", "links": {"subreddit": ["miraculousladybug"]}, "path": {"21-37": [[70, -280], [65, -283], [66, -292], [72, -296], [123, -295], [124, -299], [124, -301], [126, -299], [128, -299], [130, -301], [130, -299], [132, -296], [136, -291], [137, -283], [132, -280], [130, -279], [69, -280], [71, -281]]}, "center": {"21-37": [127, -288]}}, {"id": 158, "name": "LIMBO", "description": "LIMBO is a level in the video game Geometry Dash, which is known as the hardest memory level in the game.\nIn this you always find the word \"FOCUS\" and the keys at the end.\nThe level is a collab hosted by MindCap, an Egyptian Geometry Dash player.", "links": {"subreddit": ["geometrydash"]}, "path": {"27-64": [[-128, 379], [-96, 379], [-96, 354], [-128, 354]]}, "center": {"27-64": [-112, 367]}}, -{"id": 159, "name": "Bluey Heeler", "description": "Bluey Heeler is the titular character of the Australian children's cartoon Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Bluey_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"3-258": [[-165, 236], [-163, 238], [-158, 238], [-157, 239], [-152, 239], [-150, 237], [-148, 237], [-148, 242], [-147, 243], [-147, 247], [-137, 247], [-137, 243], [-140, 240], [-140, 239], [-137, 239], [-133, 235], [-124, 228], [-124, 222], [-129, 222], [-130, 221], [-130, 212], [-128, 209], [-128, 204], [-137, 195], [-139, 195], [-139, 200], [-141, 200], [-141, 199], [-146, 199], [-149, 197], [-153, 197], [-153, 199], [-150, 204], [-150, 208], [-154, 212], [-160, 212], [-163, 215], [-163, 216], [-160, 219], [-158, 219], [-158, 221], [-160, 224], [-160, 229], [-163, 229], [-165, 232]]}, "center": {"3-258": [-144, 224]}}, -{"id": 160, "name": "Bingo Heeler", "description": "Bingo Heeler is the sister of the main character Bluey from the Australian children's cartoon Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Bingo_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"4-258": [[-122, 201], [-128, 207], [-130, 213], [-130, 220], [-125, 223], [-125, 228], [-134, 234], [-134, 239], [-128, 239], [-128, 243], [-124, 246], [-118, 246], [-117, 247], [-112, 247], [-110, 245], [-110, 244], [-112, 242], [-112, 240], [-108, 237], [-104, 237], [-100, 239], [-97, 239], [-95, 237], [-95, 233], [-97, 231], [-102, 231], [-103, 230], [-103, 228], [-106, 225], [-106, 222], [-101, 218], [-101, 216], [-105, 213], [-106, 213], [-108, 215], [-110, 215], [-110, 211], [-111, 211], [-111, 201], [-113, 201], [-118, 206], [-118, 207], [-120, 207], [-120, 201]]}, "center": {"4-258": [-115, 229]}}, -{"id": 161, "name": "Croissant", "description": "A croissant is a crescent-shaped pastry commonly associated with France. \n\nThis croissant was drawn to thank memesdecentralises, a French instagram community that shares memes about not living in Paris and that greatly helped to build art on the French flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Croissant"], "subreddit": ["placeFR", "france", "memesdecentralises"], "discord": ["placeFR"]}, "path": {"10-258": [[-485, 399], [-498, 411], [-498, 414], [-499, 415], [-499, 425], [-498, 426], [-498, 431], [-496, 431], [-495, 432], [-495, 434], [-489, 439], [-482, 439], [-482, 432], [-483, 431], [-483, 423], [-482, 422], [-482, 420], [-478, 414], [-472, 414], [-471, 415], [-470, 415], [-467, 413], [-464, 413], [-461, 411], [-461, 407], [-467, 400], [-470, 398]]}, "center": {"10-258": [-489, 415]}}, +{"id": 159, "name": "Bluey Heeler", "description": "Bluey Heeler is the titular character of the Australian children's cartoon Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Bluey_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"3-258, T": [[-165, 236], [-163, 238], [-158, 238], [-157, 239], [-152, 239], [-150, 237], [-148, 237], [-148, 242], [-147, 243], [-147, 247], [-137, 247], [-137, 243], [-140, 240], [-140, 239], [-137, 239], [-133, 235], [-124, 228], [-124, 222], [-129, 222], [-130, 221], [-130, 212], [-128, 209], [-128, 204], [-137, 195], [-139, 195], [-139, 200], [-141, 200], [-141, 199], [-146, 199], [-149, 197], [-153, 197], [-153, 199], [-150, 204], [-150, 208], [-154, 212], [-160, 212], [-163, 215], [-163, 216], [-160, 219], [-158, 219], [-158, 221], [-160, 224], [-160, 229], [-163, 229], [-165, 232]]}, "center": {"3-258, T": [-144, 224]}}, +{"id": 160, "name": "Bingo Heeler", "description": "Bingo Heeler is the sister of the main character Bluey from the Australian children's cartoon Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Bingo_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"4-258, T": [[-122, 201], [-128, 207], [-130, 213], [-130, 220], [-125, 223], [-125, 228], [-134, 234], [-134, 239], [-128, 239], [-128, 243], [-124, 246], [-118, 246], [-117, 247], [-112, 247], [-110, 245], [-110, 244], [-112, 242], [-112, 240], [-108, 237], [-104, 237], [-100, 239], [-97, 239], [-95, 237], [-95, 233], [-97, 231], [-102, 231], [-103, 230], [-103, 228], [-106, 225], [-106, 222], [-101, 218], [-101, 216], [-105, 213], [-106, 213], [-108, 215], [-110, 215], [-110, 211], [-111, 211], [-111, 201], [-113, 201], [-118, 206], [-118, 207], [-120, 207], [-120, 201]]}, "center": {"4-258, T": [-115, 229]}}, +{"id": 161, "name": "Croissant", "description": "A croissant is a crescent-shaped pastry commonly associated with France. \n\nThis croissant was drawn to thank memesdecentralises, a French instagram community that shares memes about not living in Paris and that greatly helped to build art on the French flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Croissant"], "subreddit": ["placeFR", "france", "memesdecentralises"], "discord": ["placeFR"]}, "path": {"10-258, T": [[-485, 399], [-498, 411], [-498, 414], [-499, 415], [-499, 425], [-498, 426], [-498, 431], [-496, 431], [-495, 432], [-495, 434], [-489, 439], [-482, 439], [-482, 432], [-483, 431], [-483, 423], [-482, 422], [-482, 420], [-478, 414], [-472, 414], [-471, 415], [-470, 415], [-467, 413], [-464, 413], [-461, 411], [-461, 407], [-467, 400], [-470, 398]]}, "center": {"10-258, T": [-489, 415]}}, {"id": 162, "name": "Flag of Uruguay", "description": "Uruguay is a country in the south part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Flag_of_Uruguay"], "subreddit": ["uruguay"]}, "path": {"21-30": [[127, -40], [127, -33], [137, -33], [137, -40]]}, "center": {"21-30": [132, -36]}}, {"id": 163, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America. Its flag features Mexico's coat of arms, depicting a golden eagle eating a snake on a cactus. This symbol is based on a legend from the ancient Aztec people, signifying the place where the Aztecs should build their empire.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"21-30": [[127, -47], [127, -40], [137, -40], [137, -47]]}, "center": {"21-30": [132, -43]}}, {"id": 164, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"21-31": [[118, -40], [118, -33], [127, -33], [127, -40]]}, "center": {"21-31": [123, -36]}}, {"id": 165, "name": "Flag of Ecuador", "description": "Ecuador is a country in northwestern South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador", "https://en.wikipedia.org/wiki/Flag_of_Ecuador"], "subreddit": ["ecuador"]}, "path": {"21-32": [[109, -40], [109, -33], [118, -33], [118, -40]]}, "center": {"21-32": [114, -36]}}, -{"id": 166, "name": "Flag of Peru", "description": "Peru is a country on the west coast of South America. Created by the discord server of rperu and allies.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru", "https://en.wikipedia.org/wiki/Flag_of_Peru"], "subreddit": ["PERU"], "discord": ["rperu"]}, "path": {"80-99": [[-191, -26], [-191, 72], [-191, 96], [-139, 97], [-139, -26]], "100-242, 25-28, 29-79": [[-191, -26], [-191, 72], [-191, 96], [-48, 97], [-48, 87], [-142, 86], [-142, -26]], "244-258": [[-191, 96], [-16, 97], [-17, 85], [-191, 86]]}, "center": {"80-99": [-165, 36], "100-242, 25-28, 29-79": [-167, -1], "244-258": [-29, 91]}}, +{"id": 166, "name": "Flag of Peru", "description": "Peru is a country on the west coast of South America. Created by the discord server of rperu and allies.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru", "https://en.wikipedia.org/wiki/Flag_of_Peru"], "subreddit": ["PERU"], "discord": ["rperu"]}, "path": {"80-99": [[-191, -26], [-191, 72], [-191, 96], [-139, 97], [-139, -26]], "100-242, 25-28, 29-79": [[-191, -26], [-191, 72], [-191, 96], [-48, 97], [-48, 87], [-142, 86], [-142, -26]], "244-258, T": [[-191, 96], [-16, 97], [-17, 85], [-191, 86]]}, "center": {"80-99": [-165, 36], "100-242, 25-28, 29-79": [-167, -1], "244-258, T": [-29, 91]}}, {"id": 167, "name": "Flag of Peru", "description": "Peru is a country on the west coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru", "https://en.wikipedia.org/wiki/Flag_of_Peru"], "subreddit": ["PERU"]}, "path": {"21-32": [[100, -40], [100, -33], [109, -33], [109, -40]]}, "center": {"21-32": [105, -36]}}, {"id": 168, "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["argentina"]}, "path": {"21-32": [[91, -47], [91, -40], [100, -40], [100, -47]]}, "center": {"21-32": [96, -43]}}, {"id": 169, "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica"]}, "path": {"21-33": [[91, -40], [91, -33], [100, -33], [100, -40]]}, "center": {"21-33": [96, -36]}}, -{"id": 170, "name": "Flag of Cuba", "description": "Cuba is an island country in the Caribbean Sea.\n\nThis design also contains:\n\n- the national bird \"Tocororo\",\n- a \"cohiba\" tobacco, flagship brand of Cuban tobacco,`\n- a royal palm, recognized as Cuba's national tree, which is in critical danger of extinction,\n- and the map of Cuba.\n\nArt by u/Barnesound", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Cuba", "https://en.wikipedia.org/wiki/Cuba"], "subreddit": ["Cuba"], "discord": ["jv7FMhAW"]}, "path": {"22-33": [[100, -33], [100, -26], [109, -26], [109, -33]], "60": [[91, -26], [91, -16], [97, -16], [97, -26]], "61-62": [[91, -26], [110, -26], [110, -16], [91, -16]], "63": [[91, -26], [91, -13], [110, -13], [110, -26]], "64": [[91, -26], [124, -26], [124, -13], [91, -13]], "65-98": [[91, -26], [91, -10], [98, -10], [98, -12], [124, -12], [124, -26]], "99-119": [[78, -26], [78, -10], [124, -10], [124, -26]], "120-151": [[70, -26], [70, -10], [118, -10], [118, -26]], "152-258": [[118, -26], [118, -10], [39, -10], [39, -26]]}, "center": {"22-33": [105, -29], "60": [94, -21], "61-62": [101, -21], "63": [101, -19], "64": [108, -19], "65-98": [108, -19], "99-119": [101, -18], "120-151": [94, -18], "152-258": [79, -18]}}, +{"id": 170, "name": "Flag of Cuba", "description": "Cuba is an island country in the Caribbean Sea.\n\nThis design also contains:\n\n- the national bird \"Tocororo\",\n- a \"cohiba\" tobacco, flagship brand of Cuban tobacco,`\n- a royal palm, recognized as Cuba's national tree, which is in critical danger of extinction,\n- and the map of Cuba.\n\nArt by u/Barnesound", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Cuba", "https://en.wikipedia.org/wiki/Cuba"], "subreddit": ["Cuba"], "discord": ["jv7FMhAW"]}, "path": {"22-33": [[100, -33], [100, -26], [109, -26], [109, -33]], "60": [[91, -26], [91, -16], [97, -16], [97, -26]], "61-62": [[91, -26], [110, -26], [110, -16], [91, -16]], "63": [[91, -26], [91, -13], [110, -13], [110, -26]], "64": [[91, -26], [124, -26], [124, -13], [91, -13]], "65-98": [[91, -26], [91, -10], [98, -10], [98, -12], [124, -12], [124, -26]], "99-119": [[78, -26], [78, -10], [124, -10], [124, -26]], "120-151": [[70, -26], [70, -10], [118, -10], [118, -26]], "152-258, T": [[118, -26], [118, -10], [39, -10], [39, -26]]}, "center": {"22-33": [105, -29], "60": [94, -21], "61-62": [101, -21], "63": [101, -19], "64": [108, -19], "65-98": [108, -19], "99-119": [101, -18], "120-151": [94, -18], "152-258, T": [79, -18]}}, {"id": 171, "name": "Flag of Honduras", "description": "Honduras is a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Honduras", "https://en.wikipedia.org/wiki/Flag_of_Honduras"], "subreddit": ["honduras"]}, "path": {"23-31": [[118, -33], [118, -26], [127, -26], [127, -33]]}, "center": {"23-31": [123, -29]}}, {"id": 172, "name": "Flag of Colombia", "description": "Colombia is a country on the northwest coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"21-31": [[109, -47], [109, -40], [118, -40], [118, -47]]}, "center": {"21-31": [114, -43]}}, {"id": 173, "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["argentina"]}, "path": {"27-30": [[127, -33], [127, -26], [137, -26], [137, -33]]}, "center": {"27-30": [132, -29]}}, @@ -180,26 +180,26 @@ {"id": 181, "name": "Flag of Japan", "description": "Japan is an island country in East Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Japan", "https://en.wikipedia.org/wiki/Flag_of_Japan"]}, "path": {"26-28": [[100, -26], [100, -19], [109, -19], [109, -26]]}, "center": {"26-28": [105, -22]}}, {"id": 182, "name": "Flag of the Dominican Republic", "description": "The Dominican Republic is a country in the Caribbean region of the Americas.", "links": {"website": ["https://en.wikipedia.org/wiki/Dominican_Republic", "https://en.wikipedia.org/wiki/Flag_of_the_Dominican_Republic"], "subreddit": ["Dominican"]}, "path": {"24-29": [[111, 90], [111, 104], [130, 104], [130, 90]], "30-117": [[114, 90], [137, 90], [137, 105], [114, 105]]}, "center": {"24-29": [121, 97], "30-117": [126, 98]}}, {"id": 183, "name": "Flag of Panama", "description": "Panama is a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Panama", "https://en.wikipedia.org/wiki/Flag_of_Panama"], "subreddit": ["Panama"]}, "path": {"22-26": [[171, -26], [171, -20], [180, -20], [180, -26]], "27-51": [[170, -26], [170, -16], [189, -16], [189, -26]]}, "center": {"22-26": [176, -23], "27-51": [180, -21]}}, -{"id": 184, "name": "Flag of Bolivia", "description": "Bolivia is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Flag_of_Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"22": [[189, -40], [189, -33], [198, -33], [198, -40]], "23-25": [[171, -40], [171, -33], [249, -33], [249, -40]], "26-30": [[137, -47], [137, -26], [217, -26], [230, -47]], "31-62": [[91, -47], [91, -26], [231, -26], [231, -47]], "63-73": [[91, -47], [91, -26], [288, -26], [288, -47]], "74-258": [[91, -47], [91, -26], [390, -26], [415, -40], [415, -47]]}, "center": {"22": [194, -36], "23-25": [210, -36], "26-30": [184, -36], "31-62": [161, -36], "63-73": [190, -36], "74-258": [249, -36]}}, -{"id": 185, "name": "Flag of Uruguay", "description": "Uruguay is a country in the south part of South America.\n\nThis flag was created by the Uruguayan discord server URUplace with help of the ''Needy Streamer Overload'' fandom from the NSOplace discord server to represent Uruguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Flag_of_Uruguay"], "subreddit": ["uruguay"], "discord": ["q8G3rKefzH", "NEV247Uy6r"]}, "path": {"5-20": [[201, 371], [201, 402], [250, 402], [250, 371]], "27-29": [[250, 129], [250, 152], [281, 152], [281, 129]], "30-258": [[239, 129], [314, 129], [322, 134], [304, 140], [286, 160], [281, 173], [281, 159], [255, 159], [252, 168], [245, 169], [239, 180]]}, "center": {"5-20": [226, 387], "27-29": [266, 141], "30-258": [270, 144]}}, +{"id": 184, "name": "Flag of Bolivia", "description": "Bolivia is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Flag_of_Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"22": [[189, -40], [189, -33], [198, -33], [198, -40]], "23-25": [[171, -40], [171, -33], [249, -33], [249, -40]], "26-30": [[137, -47], [137, -26], [217, -26], [230, -47]], "31-62": [[91, -47], [91, -26], [231, -26], [231, -47]], "63-73": [[91, -47], [91, -26], [288, -26], [288, -47]], "74-258, T": [[91, -47], [91, -26], [390, -26], [415, -40], [415, -47]]}, "center": {"22": [194, -36], "23-25": [210, -36], "26-30": [184, -36], "31-62": [161, -36], "63-73": [190, -36], "74-258, T": [249, -36]}}, +{"id": 185, "name": "Flag of Uruguay", "description": "Uruguay is a country in the south part of South America.\n\nThis flag was created by the Uruguayan discord server URUplace with help of the ''Needy Streamer Overload'' fandom from the NSOplace discord server to represent Uruguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Flag_of_Uruguay"], "subreddit": ["uruguay"], "discord": ["q8G3rKefzH", "NEV247Uy6r"]}, "path": {"5-20": [[201, 371], [201, 402], [250, 402], [250, 371]], "27-29": [[250, 129], [250, 152], [281, 152], [281, 129]], "30-258, T": [[239, 129], [314, 129], [322, 134], [304, 140], [286, 160], [281, 173], [281, 159], [255, 159], [252, 168], [245, 169], [239, 180]]}, "center": {"5-20": [226, 387], "27-29": [266, 141], "30-258, T": [270, 144]}}, {"id": 186, "name": "Baguette", "description": "A baguette is a long, thin bread that originated in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Baguette"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"4-32": [[-390, 478], [-356, 444], [-349, 444], [-349, 446], [-384, 483], [-387, 483], [-390, 481]], "33-50": [[-369, 457], [-390, 478], [-390, 481], [-388, 483], [-384, 483], [-368, 467], [-368, 457]], "51-54": [[-334, 423], [-339, 428], [-340, 428], [-390, 478], [-390, 480], [-387, 483], [-384, 483], [-331, 429]], "58-109": [[-390, 476], [-385, 482], [-367, 464], [-367, 456], [-368, 456]]}, "center": {"4-32": [-385, 479], "33-50": [-378, 471], "51-54": [-383, 476], "58-109": [-384, 476]}}, -{"id": 187, "name": "The Knight", "description": "The player character of the original Hollow Knight game.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Knight"], "subreddit": ["HKPlace", "HollowKnight"], "discord": ["RKWC7ZUVnz"]}, "path": {"13-14": [[-328, 252], [-332, 256], [-332, 258], [-330, 260], [-330, 268], [-329, 269], [-329, 287], [-320, 288], [-317, 288], [-317, 266], [-316, 265], [-316, 260], [-314, 258], [-314, 256], [-318, 252]], "24-68": [[-241, 264], [-241, 291], [-215, 291], [-215, 264]], "69-258": [[-239, 255], [-215, 255], [-215, 291], [-239, 291]]}, "center": {"13-14": [-323, 261], "24-68": [-228, 278], "69-258": [-227, 273]}}, +{"id": 187, "name": "The Knight", "description": "The player character of the original Hollow Knight game.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Knight"], "subreddit": ["HKPlace", "HollowKnight"], "discord": ["RKWC7ZUVnz"]}, "path": {"13-14": [[-328, 252], [-332, 256], [-332, 258], [-330, 260], [-330, 268], [-329, 269], [-329, 287], [-320, 288], [-317, 288], [-317, 266], [-316, 265], [-316, 260], [-314, 258], [-314, 256], [-318, 252]], "24-68": [[-241, 264], [-241, 291], [-215, 291], [-215, 264]], "69-258, T": [[-239, 255], [-215, 255], [-215, 291], [-239, 291]]}, "center": {"13-14": [-323, 261], "24-68": [-228, 278], "69-258, T": [-227, 273]}}, {"id": 188, "name": "Froggy Chair", "description": "The Froggy Chair is a piece of furniture from the Nintendo game series Animal Crossing. It became a meme because of its goofy appearance.", "links": {"website": ["https://nookipedia.com/wiki/Ithttps://knowyourmeme.com/memes/froggy-chairem:Froggy_Chair_(New_Horizons)", "https://knowyourmeme.com/memes/froggy-chair"]}, "path": {"23-29": [[374, -69], [371, -65], [371, -57], [370, -56], [370, -39], [372, -37], [376, -37], [377, -25], [382, -25], [382, -23], [384, -23], [384, -36], [390, -36], [390, -41], [391, -42], [391, -54], [388, -61], [387, -61], [387, -68], [385, -70], [380, -70], [379, -69]]}, "center": {"23-29": [381, -46]}}, -{"id": 189, "name": "The Blue Corner", "description": "Returning from previous r/place events, this group's goal is to make the bottom-right portion of the canvas in Dark Blue, with a defensive but also diplomatic game plan. \n\nLike past r/place events, The Blue Corner and their members that call themselves as The Blue Corner Knights, needed to defend their portion of the canvas from different threats during the whole event, but also needed to move in each expansion of the canvas in which a new Bottom Right Corner was created.\n\nIn total, The Blue Corner Knights had to create and hold 4 portions of the canvas, one bigger than the last one, but also leaving behind in each movement their territory for other community. During the whole event, The Blue Corner needed to do dimplomacy with their neighbors, but also they created new and solidified a huge number of old alliances, in order to have peace, defend their place and endure until the Reddit Official Final Canvas Snapshot.\n\nThese alliances included The NATO Coalition (USA, Ukraine, India, UK, Vietnam, etc.), QSMP (Which community in a symbol of friendship kept the 12x12 Blue square known as The Blue Corner Memorial), Argentina, Mexico, France, Morocco, Germany, The Nordic Union (Denmark, Finland, Sweden, Norway and Iceland), P3ACE, ForniteBR, Task Bar, and many others like the streamers Bratishkinoff, MixiGaming, ElSpreen, Cellbit and Wilbur. \n\nAll these allies contributed to defend The Blue Corner in diferent stages of the event, mainly against attacks of bots like the Rainbow and the Right Edge of the Task Bar.\n\nSimilarly, The Blue Corner came to aid of their allies in many instances when they needed, at the expense of even losing their place. Despite having to make the greatest of the sacrifices, The Blue Corner Knights fulfilled their vows with their allies in many ocasions, like The Attack to the Right Flag of France, The AOL Attack and the xQc Red Dragon Flame Attack in the Second Flag of USA, The Vietnamese Rogue Expansion, The Defense of Lionel Messi, The SHOTBOW Bot Attack and The Rebuilding of Denmark.\n\nAnd also this is the last and definitive Blue Corner of 2023 r/place.", "links": {"subreddit": ["TheBlueCorner"], "discord": ["FTQxY5F2Bq"]}, "path": {"11-54": [[488, 487], [499, 487], [499, 499], [488, 499]], "2-5": [[424, 435], [500, 435], [500, 499], [424, 500]], "55-152": [[942, 442], [1000, 442], [1000, 500], [942, 500]], "155-201": [[899, 898], [1000, 898], [1000, 1000], [899, 1000]], "202-205": [[1499, 899], [1399, 899], [1399, 999], [1499, 999]], "206-213": [[1401, 899], [1401, 971], [1482, 971], [1482, 1000], [1500, 1000], [1499, 899]], "214-258": [[1401, 899], [1401, 999], [1499, 999], [1499, 899]]}, "center": {"11-54": [494, 493], "2-5": [462, 467], "55-152": [971, 471], "155-201": [950, 949], "202-205": [1449, 949], "206-213": [1437, 935], "214-258": [1450, 949]}}, +{"id": 189, "name": "The Blue Corner", "description": "Returning from previous r/place events, this group's goal is to make the bottom-right portion of the canvas in Dark Blue, with a defensive but also diplomatic game plan. \n\nLike past r/place events, The Blue Corner and their members that call themselves as The Blue Corner Knights, needed to defend their portion of the canvas from different threats during the whole event, but also needed to move in each expansion of the canvas in which a new Bottom Right Corner was created.\n\nIn total, The Blue Corner Knights had to create and hold 4 portions of the canvas, one bigger than the last one, but also leaving behind in each movement their territory for other community. During the whole event, The Blue Corner needed to do dimplomacy with their neighbors, but also they created new and solidified a huge number of old alliances, in order to have peace, defend their place and endure until the Reddit Official Final Canvas Snapshot.\n\nThese alliances included The NATO Coalition (USA, Ukraine, India, UK, Vietnam, etc.), QSMP (Which community in a symbol of friendship kept the 12x12 Blue square known as The Blue Corner Memorial), Argentina, Mexico, France, Morocco, Germany, The Nordic Union (Denmark, Finland, Sweden, Norway and Iceland), P3ACE, ForniteBR, Task Bar, and many others like the streamers Bratishkinoff, MixiGaming, ElSpreen, Cellbit and Wilbur. \n\nAll these allies contributed to defend The Blue Corner in diferent stages of the event, mainly against attacks of bots like the Rainbow and the Right Edge of the Task Bar.\n\nSimilarly, The Blue Corner came to aid of their allies in many instances when they needed, at the expense of even losing their place. Despite having to make the greatest of the sacrifices, The Blue Corner Knights fulfilled their vows with their allies in many ocasions, like The Attack to the Right Flag of France, The AOL Attack and the xQc Red Dragon Flame Attack in the Second Flag of USA, The Vietnamese Rogue Expansion, The Defense of Lionel Messi, The SHOTBOW Bot Attack and The Rebuilding of Denmark.\n\nAnd also this is the last and definitive Blue Corner of 2023 r/place.", "links": {"subreddit": ["TheBlueCorner"], "discord": ["FTQxY5F2Bq"]}, "path": {"11-54": [[488, 487], [499, 487], [499, 499], [488, 499]], "2-5": [[424, 435], [500, 435], [500, 499], [424, 500]], "55-152": [[942, 442], [1000, 442], [1000, 500], [942, 500]], "155-201": [[899, 898], [1000, 898], [1000, 1000], [899, 1000]], "202-205": [[1499, 899], [1399, 899], [1399, 999], [1499, 999]], "206-213": [[1401, 899], [1401, 971], [1482, 971], [1482, 1000], [1500, 1000], [1499, 899]], "214-258, T": [[1401, 899], [1401, 999], [1499, 999], [1499, 899]]}, "center": {"11-54": [494, 493], "2-5": [462, 467], "55-152": [971, 471], "155-201": [950, 949], "202-205": [1449, 949], "206-213": [1437, 935], "214-258, T": [1450, 949]}}, {"id": 191, "name": "Vault Boy", "description": "Vault Boy is the mascot of the Fallout games.", "links": {"website": ["https://en.wikipedia.org/wiki/Vault_Boy"], "subreddit": ["Fallout"]}, "path": {"24-39": [[260, -234], [260, -206], [287, -206], [287, -234]]}, "center": {"24-39": [274, -220]}}, {"id": 192, "name": "H3H3 Productions", "description": "H3H3 Productions is a YouTube comedy channel focused on internet culture.", "links": {"website": ["https://www.youtube.com/user/h3h3Productions"], "subreddit": ["h3h3productions"]}, "path": {"7-20": [[201, 264], [201, 308], [223, 308], [223, 307], [309, 307], [309, 265], [281, 265], [281, 257], [235, 257], [235, 261]], "21-35": [[191, 233], [191, 256], [196, 256], [196, 282], [281, 282], [281, 232], [271, 232], [265, 227], [263, 229], [256, 245], [247, 256], [236, 260], [219, 260], [207, 256], [196, 245], [192, 233]], "36-46": [[265, 230], [281, 230], [281, 282], [196, 282], [196, 256], [204, 256], [221, 265], [236, 265], [251, 258], [261, 243], [264, 230]], "47-54": [[263, 233], [281, 233], [281, 281], [176, 282], [175, 258], [191, 257], [191, 242], [194, 242], [197, 249], [203, 257], [215, 262], [227, 264], [239, 263], [259, 249], [263, 239]]}, "center": {"7-20": [255, 282], "21-35": [263, 264], "36-46": [265, 266], "47-54": [264, 265]}}, -{"id": 193, "name": "osu!", "description": "The original, default, and most popular ruleset in osu! Players must click circles, slide sliders, and spin spinners to the beat of the music.", "links": {"website": ["https://osu.ppy.sh/wiki/en/Game_mode/osu%21"], "subreddit": ["osuplace", "osugame"]}, "path": {"6-258": [[244, 175], [240, 179], [239, 182], [239, 187], [242, 191], [246, 194], [251, 194], [257, 189], [259, 185], [253, 175]]}, "center": {"6-258": [248, 184]}}, -{"id": 194, "name": "osu!mania", "description": "osu!mania is a game mode which consists of a piano-like style of clicking notes to the beat, similar to the Beatmania IIDX game series. The number of keys ranges from 1 to 9 (2 to 18 with the use of dual stages), with 4 keys and 7 keys being more popular among players.", "links": {"website": ["https://osu.ppy.sh/wiki/en/Game_mode#osu!mania"], "subreddit": ["osuplace", "osugame"]}, "path": {"6-258": [[261, 184], [258, 186], [252, 193], [252, 196], [254, 199], [259, 203], [263, 203], [271, 196], [271, 194], [268, 190], [268, 187], [266, 185], [263, 185], [262, 184]]}, "center": {"6-258": [261, 194]}}, +{"id": 193, "name": "osu!", "description": "The original, default, and most popular ruleset in osu! Players must click circles, slide sliders, and spin spinners to the beat of the music.", "links": {"website": ["https://osu.ppy.sh/wiki/en/Game_mode/osu%21"], "subreddit": ["osuplace", "osugame"]}, "path": {"6-258, T": [[244, 175], [240, 179], [239, 182], [239, 187], [242, 191], [246, 194], [251, 194], [257, 189], [259, 185], [253, 175]]}, "center": {"6-258, T": [248, 184]}}, +{"id": 194, "name": "osu!mania", "description": "osu!mania is a game mode which consists of a piano-like style of clicking notes to the beat, similar to the Beatmania IIDX game series. The number of keys ranges from 1 to 9 (2 to 18 with the use of dual stages), with 4 keys and 7 keys being more popular among players.", "links": {"website": ["https://osu.ppy.sh/wiki/en/Game_mode#osu!mania"], "subreddit": ["osuplace", "osugame"]}, "path": {"6-258, T": [[261, 184], [258, 186], [252, 193], [252, 196], [254, 199], [259, 203], [263, 203], [271, 196], [271, 194], [268, 190], [268, 187], [266, 185], [263, 185], [262, 184]]}, "center": {"6-258, T": [261, 194]}}, {"id": 195, "name": "osu!taiko", "description": "In this osu! game mode, players must hit different drums to the beat of the music. Largely inspired by the Japanese rhythm game Taiko no Tatsujin.", "links": {"website": ["https://osu.ppy.sh/wiki/en/Game_mode#osu!taiko"], "subreddit": ["osuplace", "osugame"]}, "path": {"254-258, 7-56": [[269, 197], [261, 204], [261, 210], [263, 213], [266, 216], [273, 216], [279, 212], [280, 210], [280, 204], [278, 201], [273, 197]]}, "center": {"254-258, 7-56": [271, 207]}}, {"id": 196, "name": "osu!catch", "description": "Likely the least popular osu! game mode, osu!catch has players catching fruit in a basket. Nobody really knows if it's inspired by any other rhythm game.", "links": {"website": ["https://osu.ppy.sh/wiki/en/Game_mode#osu!catch"], "subreddit": ["osuplace", "osugame"]}, "path": {"7-18": [[269, 215], [266, 218], [265, 220], [265, 225], [268, 230], [272, 233], [277, 233], [282, 229], [284, 226], [284, 220], [282, 217], [279, 214]], "19-56": [[269, 215], [265, 220], [265, 226], [267, 229], [272, 233], [277, 233], [281, 230], [281, 216], [279, 214], [275, 214]]}, "center": {"7-18": [275, 224], "19-56": [273, 224]}}, -{"id": 197, "name": "Shouko Komi", "description": "Shouko Komi is a protagonist in the manga/anime Komi Can't Communicate (Japanese: Komi-san wa, Komyushō Desu) by Oda Tomohito. She has a communication disorder, making it hard to communicate with others.", "links": {"website": ["https://komisan.fandom.com/wiki/Komi_Shouko"], "subreddit": ["Komi_San_Place", "Komi_san"]}, "path": {"3-258": [[256, 158], [254, 160], [254, 166], [252, 169], [247, 169], [245, 171], [245, 175], [248, 177], [250, 177], [251, 176], [253, 176], [255, 178], [255, 180], [259, 185], [262, 185], [266, 186], [271, 197], [278, 197], [278, 187], [281, 179], [281, 157], [276, 157], [272, 160], [263, 160], [261, 158]]}, "center": {"3-258": [268, 173]}}, -{"id": 198, "name": "Moons", "description": "Moons are the version of Reddit Community Points used by r/CryptoCurrency. They also function as a real cryptocurrency, trading under the symbol xMOON. Moons are named after the meme expression \"to the moon\", describing a cryptocurrency or stock rocketing upwards in value \"to the moon\".", "links": {"website": ["https://www.coinbase.com/price/moon"], "subreddit": ["CryptoCurrency"]}, "path": {"7-10": [[457, -133], [457, -113], [476, -113], [476, -124], [477, -124], [477, -133]], "11-43": [[455, -121], [455, -92], [481, -92], [481, -121]], "95-258": [[-869, -368], [-869, -367], [-868, -367], [-868, -366], [-866, -366], [-867, -364], [-867, -361], [-868, -361], [-869, -359], [-870, -359], [-870, -313], [-866, -313], [-866, -307], [-880, -307], [-880, -286], [-855, -286], [-856, -292], [-858, -297], [-859, -306], [-857, -313], [-851, -318], [-845, -321], [-852, -322], [-856, -322], [-859, -323], [-865, -325], [-867, -329], [-867, -333], [-865, -339], [-861, -341], [-858, -342], [-858, -343], [-840, -343], [-839, -342], [-837, -341], [-835, -341], [-834, -344], [-834, -350], [-835, -352], [-835, -355], [-835, -357], [-834, -357], [-834, -359], [-833, -360], [-833, -365], [-831, -366], [-830, -368], [-830, -369], [-869, -369], [-869, -367]]}, "center": {"7-10": [467, -123], "11-43": [468, -106], "95-258": [-855, -356]}}, +{"id": 197, "name": "Shouko Komi", "description": "Shouko Komi is a protagonist in the manga/anime Komi Can't Communicate (Japanese: Komi-san wa, Komyushō Desu) by Oda Tomohito. She has a communication disorder, making it hard to communicate with others.", "links": {"website": ["https://komisan.fandom.com/wiki/Komi_Shouko"], "subreddit": ["Komi_San_Place", "Komi_san"]}, "path": {"3-258, T": [[256, 158], [254, 160], [254, 166], [252, 169], [247, 169], [245, 171], [245, 175], [248, 177], [250, 177], [251, 176], [253, 176], [255, 178], [255, 180], [259, 185], [262, 185], [266, 186], [271, 197], [278, 197], [278, 187], [281, 179], [281, 157], [276, 157], [272, 160], [263, 160], [261, 158]]}, "center": {"3-258, T": [268, 173]}}, +{"id": 198, "name": "Moons", "description": "Moons are the version of Reddit Community Points used by r/CryptoCurrency. They also function as a real cryptocurrency, trading under the symbol xMOON. Moons are named after the meme expression \"to the moon\", describing a cryptocurrency or stock rocketing upwards in value \"to the moon\".", "links": {"website": ["https://www.coinbase.com/price/moon"], "subreddit": ["CryptoCurrency"]}, "path": {"7-10": [[457, -133], [457, -113], [476, -113], [476, -124], [477, -124], [477, -133]], "11-43": [[455, -121], [455, -92], [481, -92], [481, -121]], "95-258, T": [[-869, -368], [-869, -367], [-868, -367], [-868, -366], [-866, -366], [-867, -364], [-867, -361], [-868, -361], [-869, -359], [-870, -359], [-870, -313], [-866, -313], [-866, -307], [-880, -307], [-880, -286], [-855, -286], [-856, -292], [-858, -297], [-859, -306], [-857, -313], [-851, -318], [-845, -321], [-852, -322], [-856, -322], [-859, -323], [-865, -325], [-867, -329], [-867, -333], [-865, -339], [-861, -341], [-858, -342], [-858, -343], [-840, -343], [-839, -342], [-837, -341], [-835, -341], [-834, -344], [-834, -350], [-835, -352], [-835, -355], [-835, -357], [-834, -357], [-834, -359], [-833, -360], [-833, -365], [-831, -366], [-830, -368], [-830, -369], [-869, -369], [-869, -367]]}, "center": {"7-10": [467, -123], "11-43": [468, -106], "95-258, T": [-855, -356]}}, {"id": 199, "name": "Red Pikmin", "description": "Red Pikmin are a type of Pikmin in the Pikmin games that are immune to fire. They are the first type of Pikmin introduced in the games.", "links": {"website": ["https://www.pikminwiki.com/Red_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"24-38": [[109, -501], [109, -496], [107, -494], [107, -492], [106, -491], [106, -489], [110, -483], [110, -480], [120, -480], [120, -483], [119, -484], [119, -486], [121, -488], [124, -488], [124, -492], [122, -492], [117, -496], [117, -501]]}, "center": {"24-38": [114, -490]}}, {"id": 200, "name": "Blue Pikmin", "description": "Blue Pikmin are a type of Pikmin from the game Pikmin that can swim. All other Pikmin drown shortly after entering water.", "links": {"website": ["https://www.pikminwiki.com/Blue_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"28-38": [[97, -501], [97, -499], [98, -498], [98, -496], [94, -493], [94, -483], [95, -483], [95, -482], [97, -480], [97, -479], [99, -477], [105, -477], [105, -487], [107, -491], [107, -494], [102, -497], [102, -498], [104, -500], [104, -501]]}, "center": {"28-38": [100, -490]}}, {"id": 202, "name": "Pierogi", "description": "A pierogi is a popular type of dumpling in Poland.", "links": {"website": ["https://en.wikipedia.org/wiki/Pierogi"], "subreddit": ["Polska", "poland"]}, "path": {"15-60": [[-185, -192], [-188, -189], [-190, -185], [-190, -184], [-186, -181], [-177, -181], [-173, -184], [-173, -185], [-176, -190], [-179, -192]]}, "center": {"15-60": [-181, -186]}}, {"id": 203, "name": "AMC", "description": "AMC is an American chain of movie theaters.", "links": {"website": ["https://en.wikipedia.org/wiki/AMC_Theatres"]}, "path": {"18-41": [[476, -186], [476, -175], [500, -175], [500, -186]]}, "center": {"18-41": [488, -180]}}, -{"id": 204, "name": "Flag of Georgia", "description": "Georgia is a country in the Caucasus region of Eastern Europe and Western Asia. It was originally a banner of the medieval Kingdom of Georgia, readopted as the official state flag in 2004.", "links": {"website": ["https://en.wikipedia.org/wiki/Georgia_(country)", "https://en.wikipedia.org/wiki/Flag_of_Georgia_(country)"], "subreddit": ["Sakartvelo"]}, "path": {"21-30": [[395, -42], [395, -34], [409, -34], [409, -42]], "58-78": [[-196, -191], [-196, -178], [-179, -178], [-179, -191]], "79-258": [[-196, -192], [-196, -178], [-173, -178], [-173, -192]]}, "center": {"21-30": [402, -38], "58-78": [-187, -184], "79-258": [-184, -185]}}, -{"id": 205, "name": "Flag of Basque Country", "description": "The Basque flag or ikurriña (also spelled ikurrina) is considered and used informally as a national or cultural symbol by the Basques and for the regions of the Basque Country (Euskal Herria), an autonomous community of Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Basque_Country_(autonomous_community)", "https://en.wikipedia.org/wiki/Basque_Country_(greater_region)"]}, "path": {"23-30": [[407, -47], [407, -41], [413, -41], [413, -47]], "56-61": [[277, -202], [277, -192], [287, -192], [287, -202]], "49-55": [[278, -201], [278, -193], [286, -193], [286, -201]], "62-258": [[273, -202], [273, -191], [290, -191], [290, -202]]}, "center": {"23-30": [410, -44], "56-61": [282, -197], "49-55": [282, -197], "62-258": [282, -196]}}, +{"id": 204, "name": "Flag of Georgia", "description": "Georgia is a country in the Caucasus region of Eastern Europe and Western Asia. It was originally a banner of the medieval Kingdom of Georgia, readopted as the official state flag in 2004.", "links": {"website": ["https://en.wikipedia.org/wiki/Georgia_(country)", "https://en.wikipedia.org/wiki/Flag_of_Georgia_(country)"], "subreddit": ["Sakartvelo"]}, "path": {"21-30": [[395, -42], [395, -34], [409, -34], [409, -42]], "58-78": [[-196, -191], [-196, -178], [-179, -178], [-179, -191]], "79-258, T": [[-196, -192], [-196, -178], [-173, -178], [-173, -192]]}, "center": {"21-30": [402, -38], "58-78": [-187, -184], "79-258, T": [-184, -185]}}, +{"id": 205, "name": "Flag of Basque Country", "description": "The Basque flag or ikurriña (also spelled ikurrina) is considered and used informally as a national or cultural symbol by the Basques and for the regions of the Basque Country (Euskal Herria), an autonomous community of Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Basque_Country_(autonomous_community)", "https://en.wikipedia.org/wiki/Basque_Country_(greater_region)"]}, "path": {"23-30": [[407, -47], [407, -41], [413, -41], [413, -47]], "56-61": [[277, -202], [277, -192], [287, -192], [287, -202]], "49-55": [[278, -201], [278, -193], [286, -193], [286, -201]], "62-258, T": [[273, -202], [273, -191], [290, -191], [290, -202]]}, "center": {"23-30": [410, -44], "56-61": [282, -197], "49-55": [282, -197], "62-258, T": [282, -196]}}, {"id": 206, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"24-43": [[456, 24], [456, 39], [499, 39], [499, 24]], "47-60": [[492, 29], [492, 96], [499, 96], [499, 29]], "61-126": [[491, 69], [491, 96], [501, 96], [501, 30], [378, 30], [358, 41], [358, 44], [393, 44], [400, 34], [402, 33], [404, 33], [413, 41], [416, 42], [430, 42], [431, 41], [436, 41], [442, 44], [452, 44], [452, 51], [465, 51], [465, 63], [478, 63], [478, 69]]}, "center": {"24-43": [478, 32], "47-60": [496, 63], "61-126": [484, 47]}}, {"id": 207, "name": "Girls' Frontline", "description": "Girls' Frontline is a turn-based strategy gacha game for mobile, developed by China-based studio MICA Team. In the game, players control androids known as \"T-Dolls\" who all carry versions of real-life firearms.", "links": {"website": ["https://gf.sunborngame.com/", "https://en.wikipedia.org/wiki/Girls%27_Frontline"], "subreddit": ["girlsfrontline"]}, "path": {"24-49": [[298, 86], [298, 95], [357, 95], [357, 86]]}, "center": {"24-49": [328, 91]}}, {"id": 208, "name": "Fortnite", "description": "Fortnite is a battle royale game.", "links": {"website": ["https://www.epicgames.com/fortnite/en-US/home", "https://en.wikipedia.org/wiki/Fortnite"], "subreddit": ["fortnite"]}, "path": {"19-47": [[114, 101], [114, 123], [136, 123], [136, 101]], "48-56": [[114, 105], [114, 130], [136, 130], [136, 105]]}, "center": {"19-47": [125, 112], "48-56": [125, 118]}}, @@ -208,43 +208,43 @@ {"id": 211, "name": "Gomu Gomu no Mi", "description": "A devil fruit from One Piece. When eaten, it gives a person's body the properties of rubber. Protagonist Monkey D. Luffy eats one at the start of the series.", "links": {"website": ["https://onepiece.fandom.com/wiki/Gomu_Gomu_no_Mi"], "subreddit": ["OnePiece"]}, "path": {"18-99": [[-307, 148], [-307, 152], [-302, 152], [-306, 156], [-306, 161], [-302, 165], [-297, 165], [-293, 161], [-293, 152], [-292, 152], [-292, 148]]}, "center": {"18-99": [-299, 158]}}, {"id": 212, "name": "Mera Mera no Mi", "description": "A devil fruit in One Piece. When eaten, it allows a person to control fire.", "links": {"website": ["https://onepiece.fandom.com/wiki/Mera_Mera_no_Mi"], "subreddit": ["OnePiece"]}, "path": {"19-99": [[-291, 147], [-291, 156], [-292, 157], [-292, 161], [-288, 165], [-281, 165], [-277, 160], [-277, 148], [-286, 148], [-286, 147]]}, "center": {"19-99": [-284, 158]}}, {"id": 213, "name": "Ope Ope no Mi", "description": "A devil fruit from One Piece. When eaten, it gives a person the ability to manipulate the physical configurations of objects and living beings.", "links": {"website": ["https://onepiece.fandom.com/wiki/Ope_Ope_no_Mi"], "subreddit": ["OnePiece"]}, "path": {"71-81": [[-273, 148], [-275, 150], [-275, 153], [-277, 155], [-277, 157], [-272, 163], [-270, 163], [-270, 148]], "19-70, 82-96": [[-274, 148], [-274, 152], [-277, 155], [-277, 157], [-275, 160], [-269, 166], [-268, 166], [-261, 159], [-260, 157], [-260, 155], [-262, 153], [-262, 149], [-270, 149], [-270, 148]]}, "center": {"71-81": [-273, 156], "19-70, 82-96": [-268, 157]}}, -{"id": 214, "name": "Shibby", "description": "Shibby is an ASMR hypnosis (hypnokink) content creator.", "links": {"website": ["https://shibbydex.com/"], "subreddit": ["ShibbySays"]}, "path": {"8-21": [[-368, 117], [-368, 137], [-345, 137], [-345, 117]], "22-40": [[-364, 117], [-364, 141], [-345, 141], [-345, 117]], "156-258": [[-222, 548], [-222, 567], [-203, 567], [-203, 548]]}, "center": {"8-21": [-356, 127], "22-40": [-354, 129], "156-258": [-212, 558]}}, -{"id": 215, "name": "Flag of Réunion", "description": "Réunion is an island in the Indian Ocean and a French overseas department/region. This is the unofficial flag of the island.", "links": {"website": ["https://en.wikipedia.org/wiki/R%C3%A9union", "https://en.wikipedia.org/wiki/Flag_of_R%C3%A9union"], "subreddit": ["reunionisland", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"24-55": [[-471, 272], [-471, 279], [-461, 279], [-461, 272]], "56-116": [[-471, 272], [-471, 279], [-433, 279], [-433, 272]], "117-151": [[-461, 272], [-461, 279], [-447, 279], [-447, 272]], "152-198": [[-469, 254], [-469, 267], [-461, 267], [-461, 279], [-449, 279], [-449, 254]], "199-258": [[-461, 272], [-461, 279], [-451, 279], [-451, 272]]}, "center": {"24-55": [-466, 276], "56-116": [-452, 276], "117-151": [-454, 276], "152-198": [-456, 261], "199-258": [-456, 276]}}, -{"id": 216, "name": "Flag of Brittany", "description": "Brittany is the westernmost region of France and a region of Celtic ethnicity and culture. The Breton flag, also known as Gwenn-ha-du, features nine stripes representing the nine Breton districts, along with eleven ermines. The flag was designed in 1923 by Morvan Marchal.", "links": {"website": ["https://en.wikipedia.org/wiki/Brittany", "https://en.wikipedia.org/wiki/Flag_of_Brittany"], "subreddit": ["Bretagne", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"45-54": [[-479, 279], [-479, 286], [-442, 286], [-442, 279]], "55-81": [[-488, 279], [-488, 289], [-304, 289], [-304, 279]], "82-88": [[-488, 279], [-488, 291], [-385, 291], [-385, 279]], "89-95": [[-497, 272], [-497, 291], [-391, 291], [-391, 279], [-420, 279], [-420, 281], [-432, 282], [-436, 277], [-451, 277], [-451, 272]], "96-126": [[-488, 279], [-488, 291], [-461, 291], [-461, 290], [-439, 290], [-439, 279]], "127-172": [[-501, 266], [-501, 289], [-469, 289], [-469, 279], [-473, 279], [-473, 266]], "177-258, 24-44": [[-470, 279], [-470, 286], [-461, 286], [-461, 279]]}, "center": {"45-54": [-460, 283], "55-81": [-396, 284], "82-88": [-436, 285], "89-95": [-468, 282], "96-126": [-470, 285], "127-172": [-485, 278], "177-258, 24-44": [-465, 283]}}, -{"id": 217, "name": "Flag of Martinique", "description": "Martinique is an island in the Caribbean Sea. It is an overseas territory of France.", "links": {"website": ["https://en.wikipedia.org/wiki/Martinique", "https://en.wikipedia.org/wiki/Flag_of_Martinique"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"82-88": [[-489, 272], [-489, 279], [-471, 279], [-471, 272]], "128-141": [[-489, 271], [-489, 280], [-474, 280], [-474, 271]], "173-258, 24-81, 94-127": [[-489, 272], [-489, 279], [-480, 279], [-480, 272]]}, "center": {"82-88": [-480, 276], "128-141": [-481, 276], "173-258, 24-81, 94-127": [-484, 276]}}, -{"id": 218, "name": "Flag of Corsica", "description": "Corsica is an island in the Mediterranean Sea that is part of France.", "links": {"website": ["https://en.wikipedia.org/wiki/Corsica", "https://en.wikipedia.org/wiki/Flag_and_coat_of_arms_of_Corsica"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"200-258, 24-28, 41-48": [[-382, 279], [-382, 286], [-372, 286], [-372, 279]]}, "center": {"200-258, 24-28, 41-48": [-377, 283]}}, +{"id": 214, "name": "Shibby", "description": "Shibby is an ASMR hypnosis (hypnokink) content creator.", "links": {"website": ["https://shibbydex.com/"], "subreddit": ["ShibbySays"]}, "path": {"8-21": [[-368, 117], [-368, 137], [-345, 137], [-345, 117]], "22-40": [[-364, 117], [-364, 141], [-345, 141], [-345, 117]], "156-258, T": [[-222, 548], [-222, 567], [-203, 567], [-203, 548]]}, "center": {"8-21": [-356, 127], "22-40": [-354, 129], "156-258, T": [-212, 558]}}, +{"id": 215, "name": "Flag of Réunion", "description": "Réunion is an island in the Indian Ocean and a French overseas department/region. This is the unofficial flag of the island.", "links": {"website": ["https://en.wikipedia.org/wiki/R%C3%A9union", "https://en.wikipedia.org/wiki/Flag_of_R%C3%A9union"], "subreddit": ["reunionisland", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"24-55": [[-471, 272], [-471, 279], [-461, 279], [-461, 272]], "56-116": [[-471, 272], [-471, 279], [-433, 279], [-433, 272]], "117-151": [[-461, 272], [-461, 279], [-447, 279], [-447, 272]], "152-198": [[-469, 254], [-469, 267], [-461, 267], [-461, 279], [-449, 279], [-449, 254]], "199-258, T": [[-461, 272], [-461, 279], [-451, 279], [-451, 272]]}, "center": {"24-55": [-466, 276], "56-116": [-452, 276], "117-151": [-454, 276], "152-198": [-456, 261], "199-258, T": [-456, 276]}}, +{"id": 216, "name": "Flag of Brittany", "description": "Brittany is the westernmost region of France and a region of Celtic ethnicity and culture. The Breton flag, also known as Gwenn-ha-du, features nine stripes representing the nine Breton districts, along with eleven ermines. The flag was designed in 1923 by Morvan Marchal.", "links": {"website": ["https://en.wikipedia.org/wiki/Brittany", "https://en.wikipedia.org/wiki/Flag_of_Brittany"], "subreddit": ["Bretagne", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"45-54": [[-479, 279], [-479, 286], [-442, 286], [-442, 279]], "55-81": [[-488, 279], [-488, 289], [-304, 289], [-304, 279]], "82-88": [[-488, 279], [-488, 291], [-385, 291], [-385, 279]], "89-95": [[-497, 272], [-497, 291], [-391, 291], [-391, 279], [-420, 279], [-420, 281], [-432, 282], [-436, 277], [-451, 277], [-451, 272]], "96-126": [[-488, 279], [-488, 291], [-461, 291], [-461, 290], [-439, 290], [-439, 279]], "127-172": [[-501, 266], [-501, 289], [-469, 289], [-469, 279], [-473, 279], [-473, 266]], "177-258, 24-44, T": [[-470, 279], [-470, 286], [-461, 286], [-461, 279]]}, "center": {"45-54": [-460, 283], "55-81": [-396, 284], "82-88": [-436, 285], "89-95": [-468, 282], "96-126": [-470, 285], "127-172": [-485, 278], "177-258, 24-44, T": [-465, 283]}}, +{"id": 217, "name": "Flag of Martinique", "description": "Martinique is an island in the Caribbean Sea. It is an overseas territory of France.", "links": {"website": ["https://en.wikipedia.org/wiki/Martinique", "https://en.wikipedia.org/wiki/Flag_of_Martinique"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"82-88": [[-489, 272], [-489, 279], [-471, 279], [-471, 272]], "128-141": [[-489, 271], [-489, 280], [-474, 280], [-474, 271]], "173-258, 24-81, 94-127, T": [[-489, 272], [-489, 279], [-480, 279], [-480, 272]]}, "center": {"82-88": [-480, 276], "128-141": [-481, 276], "173-258, 24-81, 94-127, T": [-484, 276]}}, +{"id": 218, "name": "Flag of Corsica", "description": "Corsica is an island in the Mediterranean Sea that is part of France.", "links": {"website": ["https://en.wikipedia.org/wiki/Corsica", "https://en.wikipedia.org/wiki/Flag_and_coat_of_arms_of_Corsica"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"200-258, 24-28, 41-48, T": [[-382, 279], [-382, 286], [-372, 286], [-372, 279]]}, "center": {"200-258, 24-28, 41-48, T": [-377, 283]}}, {"id": 219, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America. Its flag features Mexico's coat of arms, depicting a golden eagle eating a snake on a cactus. This symbol is based on a legend from the ancient Aztec people, signifying the place where the Aztecs should build their empire.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"29-40": [[-382, 279], [-382, 286], [-372, 286], [-372, 279]]}, "center": {"29-40": [-377, 283]}}, -{"id": 220, "name": "Flag of Auvergne", "description": "Auvergne is a cultural region in central France.", "links": {"website": ["https://en.wikipedia.org/wiki/Auvergne"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"161-198": [[-461, 279], [-461, 299], [-449, 299], [-449, 279]], "199-201": [[-461, 279], [-461, 286], [-451, 286], [-451, 279], [-412, 279], [-412, 286], [-402, 286], [-402, 279]], "92-121": [[-413, 270], [-413, 286], [-403, 286]], "122-134": [[-407, 270], [-407, 286], [-403, 286], [-403, 270]], "82-91": [[-413, 272], [-413, 279], [-403, 279], [-403, 272]], "202-258, 25-63": [[-412, 279], [-412, 286], [-402, 286], [-402, 279]]}, "center": {"161-198": [-455, 289], "199-201": [-408, 283], "92-121": [-410, 282], "122-134": [-405, 278], "82-91": [-408, 276], "202-258, 25-63": [-407, 283]}}, +{"id": 220, "name": "Flag of Auvergne", "description": "Auvergne is a cultural region in central France.", "links": {"website": ["https://en.wikipedia.org/wiki/Auvergne"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"161-198": [[-461, 279], [-461, 299], [-449, 299], [-449, 279]], "199-201": [[-461, 279], [-461, 286], [-451, 286], [-451, 279], [-412, 279], [-412, 286], [-402, 286], [-402, 279]], "92-121": [[-413, 270], [-413, 286], [-403, 286]], "122-134": [[-407, 270], [-407, 286], [-403, 286], [-403, 270]], "82-91": [[-413, 272], [-413, 279], [-403, 279], [-403, 272]], "202-258, 25-63, T": [[-412, 279], [-412, 286], [-402, 286], [-402, 279]]}, "center": {"161-198": [-455, 289], "199-201": [-408, 283], "92-121": [-410, 282], "122-134": [-405, 278], "82-91": [-408, 276], "202-258, 25-63, T": [-407, 283]}}, {"id": 221, "name": "Flag of Switzerland", "description": "Switzerland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"29-31": [[-442, 279], [-442, 286], [-432, 286], [-432, 279]]}, "center": {"29-31": [-437, 283]}}, -{"id": 222, "name": "Flag of Alsace", "description": "Alsace is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Alsace", "https://en.wikipedia.org/wiki/Flag_of_Alsace"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"168-258, 24-140": [[-497, 279], [-497, 286], [-488, 286], [-488, 279]]}, "center": {"168-258, 24-140": [-492, 283]}}, -{"id": 223, "name": "Flag of Aquitaine", "description": "Aquitaine is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Aquitaine", "https://en.wikipedia.org/wiki/Flag_of_Aquitaine"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"197-258, 24-30, 38-48": [[-451, 279], [-451, 286], [-442, 286], [-442, 279]]}, "center": {"197-258, 24-30, 38-48": [-446, 283]}}, -{"id": 224, "name": "Flag of Burgundy", "description": "Burgundy is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Burgundy"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"200-258, 24-35, 43-55": [[-403, 272], [-403, 279], [-394, 279], [-394, 272]]}, "center": {"200-258, 24-35, 43-55": [-398, 276]}}, -{"id": 225, "name": "Flag of Centre-Val de Loire", "description": "Centre-Val de Loire is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Centre-Val_de_Loire"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"204-258, 25-28, 40-96": [[-423, 272], [-423, 279], [-413, 279], [-413, 272]]}, "center": {"204-258, 25-28, 40-96": [-418, 276]}}, -{"id": 226, "name": "Flag of Franche-Comté", "description": "Franche-Comté is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Franche-Comt%C3%A9", "https://en.wikipedia.org/wiki/Flag_of_Franche-Comt%C3%A9"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"170-258, 24-53, 95-102": [[-488, 279], [-488, 286], [-479, 286], [-479, 279]]}, "center": {"170-258, 24-53, 95-102": [-483, 283]}}, -{"id": 227, "name": "Flag of Midi-Pyrénées", "description": "Midi-Pyrénées is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Midi-Pyr%C3%A9n%C3%A9es"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"197-258, 24-28": [[-442, 279], [-442, 286], [-432, 286], [-432, 279]]}, "center": {"197-258, 24-28": [-437, 283]}}, -{"id": 228, "name": "Flag of Limousin", "description": "Limousin is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Limousin"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"197-258, 25-33, 44-46": [[-432, 279], [-432, 286], [-422, 286], [-422, 279]]}, "center": {"197-258, 25-33, 44-46": [-427, 283]}}, -{"id": 229, "name": "Flag of Lorraine", "description": "Lorraine is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Lorraine"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"24-74": [[-384, 272], [-384, 279], [-373, 279], [-373, 272]], "95-113": [[-386, 272], [-386, 279], [-370, 279], [-370, 272]], "200-258": [[-384, 272], [-384, 279], [-372, 279], [-372, 272]]}, "center": {"24-74": [-378, 276], "95-113": [-378, 276], "200-258": [-378, 276]}}, -{"id": 230, "name": "Flag of Normandy", "description": "Normandy is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Normandy_(administrative_region)", "https://en.wikipedia.org/wiki/Flag_of_Normandy"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"198-258, 24-65, 69-75": [[-413, 272], [-413, 279], [-403, 279], [-403, 272]]}, "center": {"198-258, 24-65, 69-75": [-408, 276]}}, -{"id": 231, "name": "Flag of Nord-Pas-de-Calais", "description": "Nord-Pas-de-Calais is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Nord-Pas-de-Calais"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"200-258, 25-30, 40-56": [[-394, 272], [-394, 279], [-384, 279], [-384, 272]]}, "center": {"200-258, 25-30, 40-56": [-389, 276]}}, -{"id": 233, "name": "Flag of Picardy", "description": "Picardy is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Picardy", "https://en.wikipedia.org/wiki/Flag_of_Picardy"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"197-258, 24-59": [[-442, 272], [-442, 279], [-433, 279], [-433, 272]]}, "center": {"197-258, 24-59": [-437, 276]}}, -{"id": 234, "name": "Flag of Poitou-Charentes", "description": "Poitou-Charentes is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Poitou-Charentes"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"203-258, 24-32, 50-52": [[-461, 279], [-461, 286], [-451, 286], [-451, 279]]}, "center": {"203-258, 24-32, 50-52": [-456, 283]}}, -{"id": 235, "name": "Flag of Provence-Alpes-Côte d'Azur", "description": "Provence-Alpes-Côte d'Azur is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Provence-Alpes-C%C3%B4te_d%27Azur"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"203-258, 24-29": [[-392, 279], [-392, 286], [-382, 286], [-382, 279]]}, "center": {"203-258, 24-29": [-387, 283]}}, -{"id": 236, "name": "Flag of Rhône-Alpes", "description": "Rhône-Alpes is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Rh%C3%B4ne-Alpes"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"199-258, 24-37, 43-49": [[-422, 279], [-422, 286], [-412, 286], [-412, 279]]}, "center": {"199-258, 24-37, 43-49": [-417, 283]}}, -{"id": 237, "name": "Flag of Languedoc-Roussillon", "description": "Languedoc-Roussillon is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Languedoc-Roussillon"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"201-258, 24-47": [[-402, 279], [-402, 286], [-392, 286], [-392, 279]]}, "center": {"201-258, 24-47": [-397, 283]}}, +{"id": 222, "name": "Flag of Alsace", "description": "Alsace is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Alsace", "https://en.wikipedia.org/wiki/Flag_of_Alsace"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"168-258, 24-140, T": [[-497, 279], [-497, 286], [-488, 286], [-488, 279]]}, "center": {"168-258, 24-140, T": [-492, 283]}}, +{"id": 223, "name": "Flag of Aquitaine", "description": "Aquitaine is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Aquitaine", "https://en.wikipedia.org/wiki/Flag_of_Aquitaine"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"197-258, 24-30, 38-48, T": [[-451, 279], [-451, 286], [-442, 286], [-442, 279]]}, "center": {"197-258, 24-30, 38-48, T": [-446, 283]}}, +{"id": 224, "name": "Flag of Burgundy", "description": "Burgundy is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Burgundy"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"200-258, 24-35, 43-55, T": [[-403, 272], [-403, 279], [-394, 279], [-394, 272]]}, "center": {"200-258, 24-35, 43-55, T": [-398, 276]}}, +{"id": 225, "name": "Flag of Centre-Val de Loire", "description": "Centre-Val de Loire is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Centre-Val_de_Loire"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"204-258, 25-28, 40-96, T": [[-423, 272], [-423, 279], [-413, 279], [-413, 272]]}, "center": {"204-258, 25-28, 40-96, T": [-418, 276]}}, +{"id": 226, "name": "Flag of Franche-Comté", "description": "Franche-Comté is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Franche-Comt%C3%A9", "https://en.wikipedia.org/wiki/Flag_of_Franche-Comt%C3%A9"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"170-258, 24-53, 95-102, T": [[-488, 279], [-488, 286], [-479, 286], [-479, 279]]}, "center": {"170-258, 24-53, 95-102, T": [-483, 283]}}, +{"id": 227, "name": "Flag of Midi-Pyrénées", "description": "Midi-Pyrénées is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Midi-Pyr%C3%A9n%C3%A9es"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"197-258, 24-28, T": [[-442, 279], [-442, 286], [-432, 286], [-432, 279]]}, "center": {"197-258, 24-28, T": [-437, 283]}}, +{"id": 228, "name": "Flag of Limousin", "description": "Limousin is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Limousin"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"197-258, 25-33, 44-46, T": [[-432, 279], [-432, 286], [-422, 286], [-422, 279]]}, "center": {"197-258, 25-33, 44-46, T": [-427, 283]}}, +{"id": 229, "name": "Flag of Lorraine", "description": "Lorraine is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Lorraine"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"24-74": [[-384, 272], [-384, 279], [-373, 279], [-373, 272]], "95-113": [[-386, 272], [-386, 279], [-370, 279], [-370, 272]], "200-258, T": [[-384, 272], [-384, 279], [-372, 279], [-372, 272]]}, "center": {"24-74": [-378, 276], "95-113": [-378, 276], "200-258, T": [-378, 276]}}, +{"id": 230, "name": "Flag of Normandy", "description": "Normandy is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Normandy_(administrative_region)", "https://en.wikipedia.org/wiki/Flag_of_Normandy"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"198-258, 24-65, 69-75, T": [[-413, 272], [-413, 279], [-403, 279], [-403, 272]]}, "center": {"198-258, 24-65, 69-75, T": [-408, 276]}}, +{"id": 231, "name": "Flag of Nord-Pas-de-Calais", "description": "Nord-Pas-de-Calais is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Nord-Pas-de-Calais"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"200-258, 25-30, 40-56, T": [[-394, 272], [-394, 279], [-384, 279], [-384, 272]]}, "center": {"200-258, 25-30, 40-56, T": [-389, 276]}}, +{"id": 233, "name": "Flag of Picardy", "description": "Picardy is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Picardy", "https://en.wikipedia.org/wiki/Flag_of_Picardy"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"197-258, 24-59, T": [[-442, 272], [-442, 279], [-433, 279], [-433, 272]]}, "center": {"197-258, 24-59, T": [-437, 276]}}, +{"id": 234, "name": "Flag of Poitou-Charentes", "description": "Poitou-Charentes is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Poitou-Charentes"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"203-258, 24-32, 50-52, T": [[-461, 279], [-461, 286], [-451, 286], [-451, 279]]}, "center": {"203-258, 24-32, 50-52, T": [-456, 283]}}, +{"id": 235, "name": "Flag of Provence-Alpes-Côte d'Azur", "description": "Provence-Alpes-Côte d'Azur is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Provence-Alpes-C%C3%B4te_d%27Azur"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"203-258, 24-29, T": [[-392, 279], [-392, 286], [-382, 286], [-382, 279]]}, "center": {"203-258, 24-29, T": [-387, 283]}}, +{"id": 236, "name": "Flag of Rhône-Alpes", "description": "Rhône-Alpes is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Rh%C3%B4ne-Alpes"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"199-258, 24-37, 43-49, T": [[-422, 279], [-422, 286], [-412, 286], [-412, 279]]}, "center": {"199-258, 24-37, 43-49, T": [-417, 283]}}, +{"id": 237, "name": "Flag of Languedoc-Roussillon", "description": "Languedoc-Roussillon is a region in France.", "links": {"website": ["https://en.wikipedia.org/wiki/Languedoc-Roussillon"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"201-258, 24-47, T": [[-402, 279], [-402, 286], [-392, 286], [-392, 279]]}, "center": {"201-258, 24-47, T": [-397, 283]}}, {"id": 238, "name": "Cristiano Ronaldo", "description": "Cristiano Ronaldo is a Portuguese association football (soccer) player, often considered one of the greatest football players of all time. His jersey number is 7.", "links": {"website": ["https://en.wikipedia.org/wiki/Cristiano_Ronaldo"], "discord": ["TugaPlace"]}, "path": {"25-46": [[419, 267], [413, 272], [412, 275], [412, 276], [417, 281], [417, 283], [405, 291], [392, 304], [380, 311], [379, 316], [379, 317], [381, 319], [382, 319], [408, 300], [411, 304], [411, 321], [408, 325], [408, 329], [405, 332], [405, 334], [398, 341], [389, 358], [389, 361], [396, 361], [398, 358], [398, 355], [399, 353], [421, 330], [426, 330], [432, 336], [434, 342], [437, 346], [445, 356], [445, 361], [450, 361], [450, 348], [443, 339], [438, 329], [434, 316], [434, 305], [435, 303], [442, 310], [443, 310], [451, 319], [453, 319], [456, 316], [456, 315], [451, 308], [435, 292], [429, 285], [427, 285], [424, 283], [424, 282], [428, 276], [426, 270], [424, 267]]}, "center": {"25-46": [423, 298]}}, -{"id": 239, "name": "QSMP", "description": "The QSMP (Quackity Survival Multiplayer) is a survival multiplayer server in the game Minecraft featuring many Minecraft-focused YouTubers who speak various languages. It is known as \"the world's first multilingual Minecraft server\".", "links": {"website": ["https://qsmp.fandom.com/wiki/QSMP"]}, "path": {"4-258": [[381, 414], [381, 500], [500, 500], [500, 414]]}, "center": {"4-258": [441, 457]}}, -{"id": 240, "name": "ratge/borpaBuff", "description": "This art depicts two conjoined emotes, ratge and borpaBuff, from the Twitch extension BetterTTV. ratge, a variant on the Pepe the Frog meme, is an emote popularized by streamer NymN and part of the animal variants of the Okayge and Okayeg emotes.", "links": {"website": ["https://betterttv.com/emotes/614cf857b63cc97ee6d2fdfc", "https://betterttv.com/emotes/60b03524f8b3f62601c345c6"], "subreddit": ["RedditAndChill"]}, "path": {"18-258": [[55, 432], [55, 500], [147, 500], [147, 432]]}, "center": {"18-258": [101, 466]}}, -{"id": 241, "name": "Rainbow Dash", "description": "Rainbow Dash is one of the main ponies (Mane 6) in My Little Pony: Friendship is Magic, Generation 4 of My Little Pony. She represents the element of loyalty, and is depicted here saluting to the future and the world.", "links": {"website": ["https://mlp.fandom.com/wiki/Rainbow_Dash"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"155-162": [[618, 805], [611, 809], [610, 810], [610, 815], [601, 824], [601, 827], [615, 841], [615, 848], [617, 850], [658, 850], [661, 848], [661, 845], [659, 842], [656, 839], [652, 837], [649, 837], [648, 838], [643, 838], [637, 842], [636, 842], [635, 841], [635, 839], [639, 822], [639, 818], [640, 817], [640, 813], [638, 809], [636, 807], [635, 807], [633, 809], [631, 809], [624, 805]], "1-64, 73-98": [[-78, 206], [-81, 209], [-81, 212], [-83, 215], [-92, 224], [-92, 227], [-78, 241], [-78, 250], [-35, 250], [-32, 248], [-32, 245], [-35, 241], [-41, 237], [-44, 237], [-45, 238], [-50, 238], [-56, 242], [-57, 242], [-58, 241], [-58, 239], [-54, 224], [-54, 218], [-53, 217], [-53, 213], [-55, 209], [-57, 207], [-58, 207], [-59, 209], [-62, 209], [-69, 205], [-74, 205], [-75, 206]], "163-258": [[518, 850], [511, 853], [510, 854], [510, 860], [501, 869], [501, 872], [515, 886], [515, 893], [517, 895], [561, 895], [561, 890], [559, 887], [556, 884], [552, 882], [549, 882], [548, 883], [543, 883], [537, 887], [536, 887], [535, 884], [539, 869], [539, 863], [540, 862], [540, 858], [538, 854], [536, 852], [535, 852], [533, 854], [531, 854], [524, 850]]}, "center": {"155-162": [622, 824], "1-64, 73-98": [-71, 225], "163-258": [522, 870]}}, -{"id": 242, "name": "Derpy Hooves", "description": "Derpy Hooves is a background character from the TV series My Little Pony: Friendship is Magic. Derpy was first noticed by fans in 2010 for her cross-eyed look in the pilot episode of the show, and became a fan favorite ever since.", "links": {"website": ["https://mlp.fandom.com/wiki/Derpy"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"71-98, 8-64": [[-11, 209], [-19, 215], [-21, 218], [-21, 227], [-14, 233], [-18, 233], [-20, 235], [-20, 237], [-11, 241], [-11, 242], [-15, 246], [-16, 248], [-16, 251], [-13, 253], [-8, 253], [-5, 250], [0, 250], [0, 252], [3, 255], [8, 255], [11, 252], [11, 250], [14, 250], [14, 248], [16, 248], [18, 246], [18, 244], [26, 238], [26, 236], [25, 235], [25, 229], [26, 228], [26, 224], [23, 224], [19, 226], [19, 224], [17, 222], [16, 222], [11, 227], [11, 223], [12, 222], [12, 216], [9, 210], [-2, 210], [-3, 209]], "120-258": [[-601, -636], [-601, -610], [-575, -610], [-575, -636]]}, "center": {"71-98, 8-64": [-3, 225], "120-258": [-588, -623]}}, -{"id": 243, "name": "Twilight Sparkle", "description": "Twilight Sparkle is one of the main ponies (Mane 6) from the TV series My Little Pony: Friendship is Magic, Generation 4 of the My Little Pony series. She is a unicorn representing the element of magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Twilight_Sparkle"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-119": [[-501, -661], [-501, -635], [-475, -635], [-475, -661]], "74-98, 8-64": [[-48, 200], [-52, 206], [-52, 207], [-50, 207], [-50, 211], [-50, 214], [-52, 216], [-52, 218], [-54, 220], [-54, 222], [-52, 224], [-50, 224], [-50, 218], [-52, 218], [-52, 216], [-50, 214], [-50, 211], [-31, 211], [-31, 209], [-33, 207], [-36, 207], [-36, 204], [-39, 201], [-41, 201], [-42, 200]], "120-258": [[-576, -636], [-576, -610], [-550, -610], [-550, -636]]}, "center": {"117-119": [-488, -648], "74-98, 8-64": [-44, 206], "120-258": [-563, -623]}}, -{"id": 244, "name": "Sunny Starscout", "description": "Sunny Starscout is one of the main ponies (Mane 5) from Generation 5 of My Little Pony.", "links": {"website": ["https://mlp.fandom.com/wiki/Sunny_Starscout"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"156-163": [[661, 814], [661, 835], [654, 835], [654, 837], [656, 839], [658, 839], [660, 837], [660, 835], [661, 835], [661, 832], [663, 832], [665, 834], [669, 834], [672, 830], [672, 824], [670, 821], [668, 819], [665, 819], [665, 816], [663, 814]], "73-98, 8-64": [[-32, 214], [-32, 233], [-29, 233], [-28, 234], [-24, 234], [-21, 230], [-21, 224], [-25, 219], [-28, 219], [-28, 216], [-30, 214]], "164-258": [[561, 859], [561, 880], [554, 880], [554, 882], [556, 884], [558, 884], [560, 882], [560, 880], [561, 880], [561, 878], [564, 878], [565, 879], [569, 879], [572, 875], [572, 869], [568, 864], [565, 864], [565, 861], [563, 859]]}, "center": {"156-163": [666, 826], "73-98, 8-64": [-27, 225], "164-258": [566, 871]}}, -{"id": 245, "name": "The Elements of Harmony: A Reference Guide", "description": "The Elements of Harmony: A Reference Guide is a book that appears in the TV series My Little Pony: Friendship is Magic.\n\nOn r/place, the image on the cover of this book periodically changed, telling the story of Friendship is Magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Literature#The_Elements_of_Harmony"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"7-64, 73-98": [[-50, 211], [-50, 214], [-52, 216], [-52, 217], [-50, 219], [-50, 227], [-52, 229], [-52, 230], [-50, 232], [-50, 235], [-32, 235], [-32, 211]], "164-258": [[542, 855], [542, 858], [540, 860], [540, 862], [542, 864], [542, 871], [540, 873], [540, 876], [542, 878], [542, 881], [562, 881], [562, 855]]}, "center": {"7-64, 73-98": [-41, 223], "164-258": [552, 868]}}, -{"id": 246, "name": "Genshin Impact", "description": "Genshin Impact is an action role-playing game developed by Chinese developer miHoYo and first published in 2020. The game features an anime-style open-world environment and an action-based battle system using elemental magic and character-switching.\n\nThis artwork in particular was notable for being raided over fifty times, many of them being by the Russian streamer Bratishkinoff.", "links": {"website": ["https://genshin.hoyoverse.com/en/", "https://en.wikipedia.org/wiki/Genshin_Impact"], "subreddit": ["Genshin_Impact"], "discord": ["sumeru"]}, "path": {"2-34": [[-94, 255], [-94, 266], [-95, 266], [-95, 323], [29, 323], [29, 255]], "35-258": [[-95, 248], [-95, 350], [-95, 357], [-40, 357], [-40, 339], [-40, 338], [29, 338], [29, 248], [-88, 248]]}, "center": {"2-34": [-33, 289], "35-258": [-49, 293]}}, +{"id": 239, "name": "QSMP", "description": "The QSMP (Quackity Survival Multiplayer) is a survival multiplayer server in the game Minecraft featuring many Minecraft-focused YouTubers who speak various languages. It is known as \"the world's first multilingual Minecraft server\".", "links": {"website": ["https://qsmp.fandom.com/wiki/QSMP"]}, "path": {"4-258, T": [[381, 414], [381, 500], [500, 500], [500, 414]]}, "center": {"4-258, T": [441, 457]}}, +{"id": 240, "name": "ratge/borpaBuff", "description": "This art depicts two conjoined emotes, ratge and borpaBuff, from the Twitch extension BetterTTV. ratge, a variant on the Pepe the Frog meme, is an emote popularized by streamer NymN and part of the animal variants of the Okayge and Okayeg emotes.", "links": {"website": ["https://betterttv.com/emotes/614cf857b63cc97ee6d2fdfc", "https://betterttv.com/emotes/60b03524f8b3f62601c345c6"], "subreddit": ["RedditAndChill"]}, "path": {"18-258, T": [[55, 432], [55, 500], [147, 500], [147, 432]]}, "center": {"18-258, T": [101, 466]}}, +{"id": 241, "name": "Rainbow Dash", "description": "Rainbow Dash is one of the main ponies (Mane 6) in My Little Pony: Friendship is Magic, Generation 4 of My Little Pony. She represents the element of loyalty, and is depicted here saluting to the future and the world.", "links": {"website": ["https://mlp.fandom.com/wiki/Rainbow_Dash"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"155-162": [[618, 805], [611, 809], [610, 810], [610, 815], [601, 824], [601, 827], [615, 841], [615, 848], [617, 850], [658, 850], [661, 848], [661, 845], [659, 842], [656, 839], [652, 837], [649, 837], [648, 838], [643, 838], [637, 842], [636, 842], [635, 841], [635, 839], [639, 822], [639, 818], [640, 817], [640, 813], [638, 809], [636, 807], [635, 807], [633, 809], [631, 809], [624, 805]], "1-64, 73-98": [[-78, 206], [-81, 209], [-81, 212], [-83, 215], [-92, 224], [-92, 227], [-78, 241], [-78, 250], [-35, 250], [-32, 248], [-32, 245], [-35, 241], [-41, 237], [-44, 237], [-45, 238], [-50, 238], [-56, 242], [-57, 242], [-58, 241], [-58, 239], [-54, 224], [-54, 218], [-53, 217], [-53, 213], [-55, 209], [-57, 207], [-58, 207], [-59, 209], [-62, 209], [-69, 205], [-74, 205], [-75, 206]], "163-258, T": [[518, 850], [511, 853], [510, 854], [510, 860], [501, 869], [501, 872], [515, 886], [515, 893], [517, 895], [561, 895], [561, 890], [559, 887], [556, 884], [552, 882], [549, 882], [548, 883], [543, 883], [537, 887], [536, 887], [535, 884], [539, 869], [539, 863], [540, 862], [540, 858], [538, 854], [536, 852], [535, 852], [533, 854], [531, 854], [524, 850]]}, "center": {"155-162": [622, 824], "1-64, 73-98": [-71, 225], "163-258, T": [522, 870]}}, +{"id": 242, "name": "Derpy Hooves", "description": "Derpy Hooves is a background character from the TV series My Little Pony: Friendship is Magic. Derpy was first noticed by fans in 2010 for her cross-eyed look in the pilot episode of the show, and became a fan favorite ever since.", "links": {"website": ["https://mlp.fandom.com/wiki/Derpy"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"71-98, 8-64": [[-11, 209], [-19, 215], [-21, 218], [-21, 227], [-14, 233], [-18, 233], [-20, 235], [-20, 237], [-11, 241], [-11, 242], [-15, 246], [-16, 248], [-16, 251], [-13, 253], [-8, 253], [-5, 250], [0, 250], [0, 252], [3, 255], [8, 255], [11, 252], [11, 250], [14, 250], [14, 248], [16, 248], [18, 246], [18, 244], [26, 238], [26, 236], [25, 235], [25, 229], [26, 228], [26, 224], [23, 224], [19, 226], [19, 224], [17, 222], [16, 222], [11, 227], [11, 223], [12, 222], [12, 216], [9, 210], [-2, 210], [-3, 209]], "120-258, T": [[-601, -636], [-601, -610], [-575, -610], [-575, -636]]}, "center": {"71-98, 8-64": [-3, 225], "120-258, T": [-588, -623]}}, +{"id": 243, "name": "Twilight Sparkle", "description": "Twilight Sparkle is one of the main ponies (Mane 6) from the TV series My Little Pony: Friendship is Magic, Generation 4 of the My Little Pony series. She is a unicorn representing the element of magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Twilight_Sparkle"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-119": [[-501, -661], [-501, -635], [-475, -635], [-475, -661]], "74-98, 8-64": [[-48, 200], [-52, 206], [-52, 207], [-50, 207], [-50, 211], [-50, 214], [-52, 216], [-52, 218], [-54, 220], [-54, 222], [-52, 224], [-50, 224], [-50, 218], [-52, 218], [-52, 216], [-50, 214], [-50, 211], [-31, 211], [-31, 209], [-33, 207], [-36, 207], [-36, 204], [-39, 201], [-41, 201], [-42, 200]], "120-258, T": [[-576, -636], [-576, -610], [-550, -610], [-550, -636]]}, "center": {"117-119": [-488, -648], "74-98, 8-64": [-44, 206], "120-258, T": [-563, -623]}}, +{"id": 244, "name": "Sunny Starscout", "description": "Sunny Starscout is one of the main ponies (Mane 5) from Generation 5 of My Little Pony.", "links": {"website": ["https://mlp.fandom.com/wiki/Sunny_Starscout"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"156-163": [[661, 814], [661, 835], [654, 835], [654, 837], [656, 839], [658, 839], [660, 837], [660, 835], [661, 835], [661, 832], [663, 832], [665, 834], [669, 834], [672, 830], [672, 824], [670, 821], [668, 819], [665, 819], [665, 816], [663, 814]], "73-98, 8-64": [[-32, 214], [-32, 233], [-29, 233], [-28, 234], [-24, 234], [-21, 230], [-21, 224], [-25, 219], [-28, 219], [-28, 216], [-30, 214]], "164-258, T": [[561, 859], [561, 880], [554, 880], [554, 882], [556, 884], [558, 884], [560, 882], [560, 880], [561, 880], [561, 878], [564, 878], [565, 879], [569, 879], [572, 875], [572, 869], [568, 864], [565, 864], [565, 861], [563, 859]]}, "center": {"156-163": [666, 826], "73-98, 8-64": [-27, 225], "164-258, T": [566, 871]}}, +{"id": 245, "name": "The Elements of Harmony: A Reference Guide", "description": "The Elements of Harmony: A Reference Guide is a book that appears in the TV series My Little Pony: Friendship is Magic.\n\nOn r/place, the image on the cover of this book periodically changed, telling the story of Friendship is Magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Literature#The_Elements_of_Harmony"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"7-64, 73-98": [[-50, 211], [-50, 214], [-52, 216], [-52, 217], [-50, 219], [-50, 227], [-52, 229], [-52, 230], [-50, 232], [-50, 235], [-32, 235], [-32, 211]], "164-258, T": [[542, 855], [542, 858], [540, 860], [540, 862], [542, 864], [542, 871], [540, 873], [540, 876], [542, 878], [542, 881], [562, 881], [562, 855]]}, "center": {"7-64, 73-98": [-41, 223], "164-258, T": [552, 868]}}, +{"id": 246, "name": "Genshin Impact", "description": "Genshin Impact is an action role-playing game developed by Chinese developer miHoYo and first published in 2020. The game features an anime-style open-world environment and an action-based battle system using elemental magic and character-switching.\n\nThis artwork in particular was notable for being raided over fifty times, many of them being by the Russian streamer Bratishkinoff.", "links": {"website": ["https://genshin.hoyoverse.com/en/", "https://en.wikipedia.org/wiki/Genshin_Impact"], "subreddit": ["Genshin_Impact"], "discord": ["sumeru"]}, "path": {"2-34": [[-94, 255], [-94, 266], [-95, 266], [-95, 323], [29, 323], [29, 255]], "35-258, T": [[-95, 248], [-95, 350], [-95, 357], [-40, 357], [-40, 339], [-40, 338], [29, 338], [29, 248], [-88, 248]]}, "center": {"2-34": [-33, 289], "35-258, T": [-49, 293]}}, {"id": 247, "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"29-37": [[2, 127], [2, 152], [47, 152], [47, 141], [58, 141], [58, 129], [31, 129], [28, 127]]}, "center": {"29-37": [15, 140]}}, {"id": 248, "name": "Flag of Colombia", "description": "Colombia is a country on the northwest coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"31-36": [[58, 137], [58, 147], [85, 147], [88, 139], [88, 137]]}, "center": {"31-36": [73, 142]}}, {"id": 249, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America. Its flag features Mexico's coat of arms, depicting a golden eagle eating a snake on a cactus. This symbol is based on a legend from the ancient Aztec people, signifying the place where the Aztecs should build their empire.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"31-34": [[57, 123], [57, 138], [82, 138], [82, 135], [78, 131], [78, 123]]}, "center": {"31-34": [70, 131]}}, {"id": 250, "name": "FapParaMoarr", "description": "FapParaMoarr is a Mexican streamer and mod.", "links": {"website": ["https://www.twitch.tv/fapparamoarr"], "subreddit": ["fapparamoar"]}, "path": {"28-48": [[84, 130], [84, 136], [119, 136], [119, 130]]}, "center": {"28-48": [102, 133]}}, -{"id": 251, "name": "Taylor Swift", "description": "Taylor Swift is an American singer-songwriter. The 13, her favorite number is the center of our piece. Colors representing her 10 studio albums surround our art.", "links": {"website": ["https://taylorswift.com/", "https://en.wikipedia.org/wiki/Taylor_Swift"], "subreddit": ["swiftierplace"], "discord": ["nHJRXk2DcA"]}, "path": {"30-37": [[-364, 291], [-364, 317], [-339, 317], [-339, 291]], "95-258": [[-526, -276], [-526, -250], [-501, -250], [-501, -276]]}, "center": {"30-37": [-351, 304], "95-258": [-513, -263]}}, +{"id": 251, "name": "Taylor Swift", "description": "Taylor Swift is an American singer-songwriter. The 13, her favorite number is the center of our piece. Colors representing her 10 studio albums surround our art.", "links": {"website": ["https://taylorswift.com/", "https://en.wikipedia.org/wiki/Taylor_Swift"], "subreddit": ["swiftierplace"], "discord": ["nHJRXk2DcA"]}, "path": {"30-37": [[-364, 291], [-364, 317], [-339, 317], [-339, 291]], "95-258, T": [[-526, -276], [-526, -250], [-501, -250], [-501, -276]]}, "center": {"30-37": [-351, 304], "95-258, T": [-513, -263]}}, {"id": 252, "name": "TWRP", "description": "TWRP (Tupper Ware Remix Party) is a Canadian rock/funk band originally from Halifax, Nova Scotia. Their lineup consists of keyboardist and vocalist Doctor Sung, guitarist Lord Phobos, bassist Commander Meouch, and drummer Havve Hogan.", "links": {"website": ["https://linktr.ee/twrpband", "https://en.wikipedia.org/wiki/TWRP_(band)"], "subreddit": ["TWRP"]}, "path": {"29-40": [[-364, 167], [-364, 177], [-324, 177], [-324, 167]]}, "center": {"29-40": [-344, 172]}}, {"id": 253, "name": "Flag of Spain", "description": "Spain (Spanish: España) is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Flag_of_Spain"], "subreddit": ["esPlace", "spain"]}, "path": {"21-22": [[91, -33], [91, -26], [127, -26], [127, -33]], "23-27, 30-33": [[91, -33], [91, -26], [100, -26], [100, -33]]}, "center": {"21-22": [109, -29], "23-27, 30-33": [96, -29]}}, {"id": 254, "name": "420", "description": "420 is a meme symbolizing the consumption of marijuana/weed, particularly at the time 4:20 PM or on the day April 20 (4/20).", "links": {"website": ["https://en.wikipedia.org/wiki/420_(cannabis_culture)", "https://knowyourmeme.com/memes/events/420"]}, "path": {"22-37": [[78, 23], [78, 33], [97, 33], [97, 23]]}, "center": {"22-37": [88, 28]}}, @@ -252,11 +252,11 @@ {"id": 257, "name": "Joey for Reddit", "description": "A third-party Reddit client developed by u/codesForLiving", "links": {"subreddit": ["joeyforreddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80": [[-18, 21], [-22, 24], [-22, 28], [-18, 31], [-16, 31], [-12, 28], [-12, 24], [-15, 21]]}, "center": {"10-80": [-17, 26]}}, {"id": 258, "name": "Bubbles", "description": "Bubbles is a bird character in the game Angry Birds. He is able to inflate his entire body.", "links": {"website": ["https://angrybirds.fandom.com/wiki/Bubbles"], "subreddit": ["AngryBirds", "Suomi", "nordics", "place_nordicunion"]}, "path": {"26-47": [[58, -357], [55, -354], [55, -353], [54, -352], [57, -349], [61, -349], [62, -350], [65, -350], [65, -351], [59, -358]]}, "center": {"26-47": [59, -353]}}, {"id": 259, "name": "Bonjwa", "description": "Bonjwa is a German variety Twitch streamer and YouTuber. The main part shows Mental (right) and Fischersnet (left) in a recent and already iconic IRL situation. Two icons represent touristhistories (face on the chair) and kekluck (the eye on the shirt) as well as Peepo the dog. The french press stands for the CEO Honor.", "links": {"website": ["https://www.youtube.com/@BonjwaDE", "https://www.twitch.tv/bonjwa"], "discord": ["bonjwa"]}, "path": {"1-6": [[-205, -390], [-211, -387], [-215, -383], [-217, -378], [-217, -372], [-214, -366], [-209, -362], [-205, -360], [-199, -360], [-195, -362], [-189, -368], [-187, -372], [-187, -378], [-190, -384], [-194, -387], [-199, -390]], "7-148": [[-312, -368], [-312, -343], [-288, -343], [-288, -330], [-177, -330], [-177, -368], [-233, -368], [-233, -378], [-235, -381], [-242, -385], [-253, -385], [-260, -380], [-261, -377], [-265, -377], [-270, -382], [-278, -382], [-286, -379], [-287, -376], [-287, -368]]}, "center": {"1-6": [-202, -375], "7-148": [-253, -354]}}, -{"id": 260, "name": "Patriotic Dragonite", "description": "Dragonite is a Dragon/Flying-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue). It has become a symbol of Spanish patriotism on many memes featuring it in front of a Spanish flag.", "links": {"website": ["https://twitter.com/ladamadel_lago/status/1143813408141316096", "https://bulbapedia.bulbagarden.net/wiki/Dragonite_(Pok%C3%A9mon)"], "subreddit": ["esPlace", "spain"]}, "path": {"74-98": [[338, -68], [338, -47], [348, -47], [351, -50], [351, -53], [348, -56], [348, -65], [344, -70]], "50-73, 99-258": [[320, -73], [320, -64], [319, -64], [319, -58], [322, -56], [324, -56], [324, -49], [323, -48], [323, -47], [350, -47], [350, -49], [351, -50], [351, -53], [348, -56], [348, -65], [343, -71], [342, -70], [329, -70], [323, -73]]}, "center": {"74-98": [343, -53], "50-73, 99-258": [335, -59]}}, +{"id": 260, "name": "Patriotic Dragonite", "description": "Dragonite is a Dragon/Flying-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue). It has become a symbol of Spanish patriotism on many memes featuring it in front of a Spanish flag.", "links": {"website": ["https://twitter.com/ladamadel_lago/status/1143813408141316096", "https://bulbapedia.bulbagarden.net/wiki/Dragonite_(Pok%C3%A9mon)"], "subreddit": ["esPlace", "spain"]}, "path": {"74-98": [[338, -68], [338, -47], [348, -47], [351, -50], [351, -53], [348, -56], [348, -65], [344, -70]], "50-73, 99-258, T": [[320, -73], [320, -64], [319, -64], [319, -58], [322, -56], [324, -56], [324, -49], [323, -48], [323, -47], [350, -47], [350, -49], [351, -50], [351, -53], [348, -56], [348, -65], [343, -71], [342, -70], [329, -70], [323, -73]]}, "center": {"74-98": [343, -53], "50-73, 99-258, T": [335, -59]}}, {"id": 261, "name": "Scarlet macaw", "description": "The scarlet macaw (Spanish: guacamaya bandera) is a large red, yellow, and blue Central and South American parrot, a member of a large group of Neotropical parrots called macaws. It is native to humid evergreen forests of the Neotropics. Its range extends from south-eastern Mexico to Peru, Ecuador, Colombia, Bolivia, Venezuela, and Brazil.", "links": {"website": ["https://en.wikipedia.org/wiki/Scarlet_macaw"], "subreddit": ["Colombia"]}, "path": {"29-47": [[392, 97], [388, 102], [388, 107], [383, 113], [381, 113], [381, 116], [376, 121], [376, 122], [384, 122], [384, 125], [391, 125], [391, 121], [395, 121], [401, 114], [401, 108], [400, 107], [400, 101], [396, 97]], "76-128": [[654, 99], [650, 104], [650, 109], [647, 113], [645, 113], [645, 116], [644, 116], [644, 120], [648, 124], [658, 124], [658, 121], [659, 121], [662, 118], [663, 116], [663, 110], [662, 109], [662, 103], [658, 99]]}, "center": {"29-47": [392, 113], "76-128": [656, 114]}}, {"id": 262, "name": "Colombian coffee", "description": "Colombia is the third-largest producer of coffee beans in the world. Colombian coffee is known for its distinct, mild flavor profile.", "links": {"website": ["https://en.wikipedia.org/wiki/Coffee_production_in_Colombia"], "subreddit": ["Colombia"]}, "path": {"28-126": [[440, 97], [437, 101], [437, 108], [440, 112], [443, 112], [447, 108], [449, 108], [449, 97]]}, "center": {"28-126": [443, 103]}}, {"id": 263, "name": "Colombian Declaration of Independence", "description": "On July 20, 1810, Colombia declared independence from the Spanish Empire.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombian_Declaration_of_Independence"], "subreddit": ["Colombia"]}, "path": {"25-98": [[459, 99], [459, 108], [497, 108], [497, 99]]}, "center": {"25-98": [478, 104]}}, -{"id": 264, "name": "Flag of Guatemala", "description": "Guatemala is a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Guatemala", "https://en.wikipedia.org/wiki/Flag_of_Guatemala"], "subreddit": ["guatemala"]}, "path": {"27-35": [[234, 77], [234, 96], [289, 96], [289, 85], [250, 85], [250, 77]], "118-154": [[-1001, 428], [-1001, 500], [-935, 500], [-935, 428]], "155-170": [[-1001, 365], [-1001, 618], [-935, 618], [-935, 365]], "171-258": [[-1082, 365], [-935, 365], [-935, 619], [-1030, 619], [-1030, 618], [-1024, 614], [-1024, 607], [-1023, 606], [-1023, 595], [-1022, 594], [-1022, 587], [-1026, 587], [-1037, 596], [-1043, 599], [-1055, 599], [-1079, 607], [-1082, 607]]}, "center": {"27-35": [242, 88], "118-154": [-968, 464], "155-170": [-968, 492], "171-258": [-1008, 492]}}, +{"id": 264, "name": "Flag of Guatemala", "description": "Guatemala is a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Guatemala", "https://en.wikipedia.org/wiki/Flag_of_Guatemala"], "subreddit": ["guatemala"]}, "path": {"27-35": [[234, 77], [234, 96], [289, 96], [289, 85], [250, 85], [250, 77]], "118-154": [[-1001, 428], [-1001, 500], [-935, 500], [-935, 428]], "155-170": [[-1001, 365], [-1001, 618], [-935, 618], [-935, 365]], "171-258, T": [[-1082, 365], [-935, 365], [-935, 619], [-1030, 619], [-1030, 618], [-1024, 614], [-1024, 607], [-1023, 606], [-1023, 595], [-1022, 594], [-1022, 587], [-1026, 587], [-1037, 596], [-1043, 599], [-1055, 599], [-1079, 607], [-1082, 607]]}, "center": {"27-35": [242, 88], "118-154": [-968, 464], "155-170": [-968, 492], "171-258, T": [-1008, 492]}}, {"id": 265, "name": "VA-11 HALL-A: Cyberpunk Bartender Action", "description": "VA-11 HALL-A: Cyberpunk Bartender Action is an indie bartender simulation game (\"booze em' up\") about waifus, technology, and post-dystopia life. It was developed by Sukeban Games.", "links": {"website": ["https://store.steampowered.com/app/447530/VA11_HallA_Cyberpunk_Bartender_Action/"], "subreddit": ["waifubartending"]}, "path": {"29-42": [[356, 86], [356, 96], [406, 96], [406, 86]]}, "center": {"29-42": [381, 91]}}, {"id": 266, "name": "Portuguese guitar", "description": "This is a traditional guitar from Portugal. There are two variants, the Lisbon guitar and the Coimbra guitar. The difference can mainly be seen in the head of the guitar; the one depicted here can't be specified, so it just represents the Portuguese guitar as a whole.", "links": {"website": ["https://en.wikipedia.org/wiki/Portuguese_guitar"], "discord": ["TugaPlace"]}, "path": {"23-56": [[298, 239], [304, 239], [309, 233], [310, 225], [315, 221], [314, 211], [299, 206], [285, 211], [285, 226], [292, 239]]}, "center": {"23-56": [298, 220]}}, {"id": 267, "name": "Flag of Peru", "description": "Peru is a country on the west coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru", "https://en.wikipedia.org/wiki/Flag_of_Peru"], "subreddit": ["PERU"]}, "path": {"33-43": [[247, -16], [247, 96], [311, 96], [311, -16]]}, "center": {"33-43": [279, 40]}}, @@ -279,77 +279,77 @@ {"id": 284, "name": "Menorah", "description": "A temple menorah is one of the most important symbols of the religion of Judaism.", "links": {"website": ["https://en.wikipedia.org/wiki/Temple_menorah"]}, "path": {"22-42": [[480, -175], [480, -155], [500, -155], [500, -175]], "45-212": [[379, -193], [379, -172], [399, -172], [399, -193]]}, "center": {"22-42": [490, -165], "45-212": [389, -182]}}, {"id": 285, "name": "Super Smash Bros.", "description": "Super Smash Bros. is a crossover fighting game series made by Nintendo.", "links": {"website": ["https://en.wikipedia.org/wiki/Super_Smash_Bros."], "subreddit": ["smashbros"]}, "path": {"29-48": [[237, -252], [233, -248], [232, -246], [232, -243], [236, -239], [242, -239], [246, -243], [246, -246], [243, -250], [240, -252]]}, "center": {"29-48": [239, -245]}}, {"id": 286, "name": "Mario", "description": "Mario is an Italian plumber and the titular character in Nintendo's Mario franchise.", "links": {"website": ["https://en.wikipedia.org/wiki/Mario", "https://www.mariowiki.com/Mario"], "subreddit": []}, "path": {"27-36": [[16, -326], [13, -322], [13, -317], [12, -316], [12, -309], [25, -309], [25, -321], [23, -323], [23, -324], [20, -326]]}, "center": {"27-36": [19, -315]}}, -{"id": 287, "name": "Green Bay Packers", "description": "The Green Bay Packers are a historic American football team based in Green Bay, Wisconsin, United States that competes in the National Football League (NFL).\n\nIt is the third-oldest franchise in the NFL, dating back to 1919, and is the only non-profit, community-owned major league professional sports team based in the United States.\n\nGO PACK GO!", "links": {"website": ["https://www.packers.com/", "https://en.wikipedia.org/wiki/Green_Bay_Packers"], "subreddit": ["GreenBayPackers"]}, "path": {"28-61": [[418, -368], [418, -358], [434, -358], [434, -368]], "69-91": [[415, -369], [415, -358], [418, -356], [429, -356], [434, -364], [434, -369]], "157-258": [[-5, 872], [-5, 893], [22, 893], [22, 885], [30, 885], [30, 872]]}, "center": {"28-61": [426, -363], "69-91": [425, -362], "157-258": [6, 883]}}, -{"id": 288, "name": "BTS", "description": "Bangtan Sonyeondan (BTS) is South Korea's hottest boy band.", "links": {"website": ["https://www.youtube.com/watch?v=7m-4u4GONsA", "https://en.wikipedia.org/wiki/BTS"], "subreddit": ["bangtan"]}, "path": {"26-42": [[480, -155], [480, -132], [500, -132], [500, -155]], "47-58": [[379, -172], [379, -142], [399, -142], [399, -172]], "59-61": [[379, -172], [399, -172], [399, -154], [379, -154]], "62-77": [[399, -172], [399, -154], [353, -154], [353, -176], [379, -176], [379, -172]], "78-258": [[339, -176], [339, -154], [399, -154], [399, -172], [379, -172], [379, -176]]}, "center": {"26-42": [490, -143], "47-58": [389, -157], "59-61": [389, -163], "62-77": [364, -165], "78-258": [369, -165]}}, -{"id": 289, "name": "FEZ", "description": "The fez from FEZ (made by the FEZ: community projects discord server) moved 4 times\n\n#1 in the original canvas, taken over by anime\n\n#2 near number one, moved shortly after the first one died, another country took that spot, and didn't defend it well\n\n#3 during the final expansion it was put on the right side, it was taken over by a dog\n\n#4 near the end of r/place it was put at the bottom left, it went grey scale in the 2nd to last phase", "links": {"subreddit": ["FEZ"], "discord": ["wwVB86HhJz"]}, "path": {"11-15": [[-207, 234], [-200, 234], [-200, 240], [-207, 240]], "2-9": [[-318, 279], [-308, 279], [-308, 289], [-318, 289]], "202-207": [[1428, -637], [1429, -637], [1429, -638], [1433, -638], [1433, -634], [1429, -634], [1429, -635], [1428, -635]], "250-258": [[-1500, 968], [-1500, 964], [-1495, 964], [-1495, 968]]}, "center": {"11-15": [-203, 237], "2-9": [-313, 284], "202-207": [1431, -636], "250-258": [-1497, 966]}}, -{"id": 290, "name": "DIN-Logo", "description": "DIN stands for Deutsches Institut für Normung (German Institute for Standardisation Registered Association), which is the German national standards organization. DIN develops and publishes standards for various fields of technology, science, and society. DIN standards are widely used in Germany and Europe, and some of them have been adopted internationally.", "links": {"website": ["https://en.wikipedia.org/wiki/Deutsches_Institut_f%C3%BCr_Normung"], "subreddit": ["placeDE", "de", "dingore"], "discord": ["placeDE"]}, "path": {"56-258": [[-307, -450], [-307, -431], [-284, -431], [-284, -450], [-284, -449]]}, "center": {"56-258": [-296, -440]}}, +{"id": 287, "name": "Green Bay Packers", "description": "The Green Bay Packers are a historic American football team based in Green Bay, Wisconsin, United States that competes in the National Football League (NFL).\n\nIt is the third-oldest franchise in the NFL, dating back to 1919, and is the only non-profit, community-owned major league professional sports team based in the United States.\n\nGO PACK GO!", "links": {"website": ["https://www.packers.com/", "https://en.wikipedia.org/wiki/Green_Bay_Packers"], "subreddit": ["GreenBayPackers"]}, "path": {"28-61": [[418, -368], [418, -358], [434, -358], [434, -368]], "69-91": [[415, -369], [415, -358], [418, -356], [429, -356], [434, -364], [434, -369]], "157-258, T": [[-5, 872], [-5, 893], [22, 893], [22, 885], [30, 885], [30, 872]]}, "center": {"28-61": [426, -363], "69-91": [425, -362], "157-258, T": [6, 883]}}, +{"id": 288, "name": "BTS", "description": "Bangtan Sonyeondan (BTS) is South Korea's hottest boy band.", "links": {"website": ["https://www.youtube.com/watch?v=7m-4u4GONsA", "https://en.wikipedia.org/wiki/BTS"], "subreddit": ["bangtan"]}, "path": {"26-42": [[480, -155], [480, -132], [500, -132], [500, -155]], "47-58": [[379, -172], [379, -142], [399, -142], [399, -172]], "59-61": [[379, -172], [399, -172], [399, -154], [379, -154]], "62-77": [[399, -172], [399, -154], [353, -154], [353, -176], [379, -176], [379, -172]], "78-258, T": [[339, -176], [339, -154], [399, -154], [399, -172], [379, -172], [379, -176]]}, "center": {"26-42": [490, -143], "47-58": [389, -157], "59-61": [389, -163], "62-77": [364, -165], "78-258, T": [369, -165]}}, +{"id": 289, "name": "FEZ", "description": "The fez from FEZ (made by the FEZ: community projects discord server) moved 4 times\n\n#1 in the original canvas, taken over by anime\n\n#2 near number one, moved shortly after the first one died, another country took that spot, and didn't defend it well\n\n#3 during the final expansion it was put on the right side, it was taken over by a dog\n\n#4 near the end of r/place it was put at the bottom left, it went grey scale in the 2nd to last phase", "links": {"subreddit": ["FEZ"], "discord": ["wwVB86HhJz"]}, "path": {"11-15": [[-207, 234], [-200, 234], [-200, 240], [-207, 240]], "2-9": [[-318, 279], [-308, 279], [-308, 289], [-318, 289]], "202-207": [[1428, -637], [1429, -637], [1429, -638], [1433, -638], [1433, -634], [1429, -634], [1429, -635], [1428, -635]], "250-258, T": [[-1500, 968], [-1500, 964], [-1495, 964], [-1495, 968]]}, "center": {"11-15": [-203, 237], "2-9": [-313, 284], "202-207": [1431, -636], "250-258, T": [-1497, 966]}}, +{"id": 290, "name": "DIN-Logo", "description": "DIN stands for Deutsches Institut für Normung (German Institute for Standardisation Registered Association), which is the German national standards organization. DIN develops and publishes standards for various fields of technology, science, and society. DIN standards are widely used in Germany and Europe, and some of them have been adopted internationally.", "links": {"website": ["https://en.wikipedia.org/wiki/Deutsches_Institut_f%C3%BCr_Normung"], "subreddit": ["placeDE", "de", "dingore"], "discord": ["placeDE"]}, "path": {"56-258, T": [[-307, -450], [-307, -431], [-284, -431], [-284, -450], [-284, -449]]}, "center": {"56-258, T": [-296, -440]}}, {"id": 291, "name": "Ana", "description": "Ana is a party member and one of the main characters in EarthBound Beginnings. She uses frying pans as her weapon and joins the player's party after you return her hat to her.", "links": {"subreddit": ["EarthBound"], "discord": ["EarthBound"]}, "path": {"36-42": [[-169, -232], [-172, -232], [-172, -233], [-171, -235], [-174, -238], [-174, -240], [-171, -244], [-173, -246], [-174, -245], [-175, -245], [-176, -247], [-175, -249], [-176, -251], [-173, -254], [-171, -256], [-170, -257], [-166, -257], [-164, -256], [-163, -254], [-161, -252], [-161, -248], [-160, -246], [-161, -245], [-162, -245], [-163, -246], [-165, -244], [-162, -240], [-162, -238], [-165, -234], [-164, -232]]}, "center": {"36-42": [-168, -250]}}, -{"id": 292, "name": "Road trip to the Mont-Saint-Michel", "description": "This canvas has been built by PlaceFR to represent two french symbols associated with the countryside: the Citroën 2CV, driving on a road with a view on the Mont-Saint-Michel.\n\nThis art was the very first being drawn on the french flag, due to it being planned in advance.\n\nInitially, this canvas was supposed to be evolutive, with multiple changes in the background to show several french monuments outside Paris, but the french spread and the overload of projects caused the backdrop to stay until the very end, with only an evolution in colors.", "links": {"website": ["https://en.wikipedia.org/wiki/Mont-Saint-Michel"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"6-258": [[-479, 420], [-479, 488], [-390, 488], [-391, 419], [-399, 418]]}, "center": {"6-258": [-425, 453]}}, -{"id": 293, "name": "Josephine Baker", "description": "Freda Josephine Baker (née McDonald; June 3, 1906 – April 12, 1975), naturalised as Joséphine Baker, was an American-born French dancer, singer and actress. Her career was centered primarily in Europe, mostly in her adopted France. She was the first black woman to star in a major motion picture, the 1927 silent film Siren of the Tropics, directed by Mario Nalpas and Henri Étiévant. She aided the French Resistance during World War II. After the war, she was awarded the Resistance Medal by the French Committee of National Liberation, the Croix de Guerre by the French military, and was named a Chevalier of the Légion d'honneur by General Charles de Gaulle.", "links": {"website": ["https://en.wikipedia.org/wiki/Josephine_Baker", "https://www.artphotolimited.com/themes/concert-et-musique/musique-jazz/musique-jazz-francais/josephine-baker/photo/bridgeman-images/josephine-baker-en-spectacle"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"19-258": [[-500, -126], [-490, -123], [-482, -125], [-458, -112], [-462, -120], [-460, -126], [-456, -129], [-454, -120], [-445, -112], [-445, -108], [-440, -107], [-446, -120], [-446, -124], [-455, -139], [-457, -148], [-450, -152], [-446, -146], [-439, -139], [-436, -130], [-429, -129], [-423, -124], [-421, -115], [-419, -108], [-415, -106], [-409, -103], [-399, -99], [-393, -93], [-387, -91], [-396, -90], [-394, -85], [-403, -85], [-409, -83], [-419, -73], [-423, -58], [-425, -46], [-445, -58], [-445, -82], [-444, -89], [-452, -98], [-452, -102], [-462, -106], [-470, -96], [-473, -90], [-478, -91], [-474, -106], [-468, -109], [-483, -119], [-495, -112], [-501, -114], [-501, -126]]}, "center": {"19-258": [-426, -91]}}, -{"id": 294, "name": "Dicks - Emote used by Streamer Mahluna", "description": "An emote by the German-speaking streamer Mahluna, mostly in a humorous context", "links": {"website": ["https://twitch.tv/mahluna"], "subreddit": ["mahluna"], "discord": ["SaprE59GvH"]}, "path": {"5-258": [[248, -331], [248, -368], [357, -367], [357, -331], [249, -331]]}, "center": {"5-258": [285, -349]}}, +{"id": 292, "name": "Road trip to the Mont-Saint-Michel", "description": "This canvas has been built by PlaceFR to represent two french symbols associated with the countryside: the Citroën 2CV, driving on a road with a view on the Mont-Saint-Michel.\n\nThis art was the very first being drawn on the french flag, due to it being planned in advance.\n\nInitially, this canvas was supposed to be evolutive, with multiple changes in the background to show several french monuments outside Paris, but the french spread and the overload of projects caused the backdrop to stay until the very end, with only an evolution in colors.", "links": {"website": ["https://en.wikipedia.org/wiki/Mont-Saint-Michel"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"6-258, T": [[-479, 420], [-479, 488], [-390, 488], [-391, 419], [-399, 418]]}, "center": {"6-258, T": [-425, 453]}}, +{"id": 293, "name": "Josephine Baker", "description": "Freda Josephine Baker (née McDonald; June 3, 1906 – April 12, 1975), naturalised as Joséphine Baker, was an American-born French dancer, singer and actress. Her career was centered primarily in Europe, mostly in her adopted France. She was the first black woman to star in a major motion picture, the 1927 silent film Siren of the Tropics, directed by Mario Nalpas and Henri Étiévant. She aided the French Resistance during World War II. After the war, she was awarded the Resistance Medal by the French Committee of National Liberation, the Croix de Guerre by the French military, and was named a Chevalier of the Légion d'honneur by General Charles de Gaulle.", "links": {"website": ["https://en.wikipedia.org/wiki/Josephine_Baker", "https://www.artphotolimited.com/themes/concert-et-musique/musique-jazz/musique-jazz-francais/josephine-baker/photo/bridgeman-images/josephine-baker-en-spectacle"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"19-258, T": [[-500, -126], [-490, -123], [-482, -125], [-458, -112], [-462, -120], [-460, -126], [-456, -129], [-454, -120], [-445, -112], [-445, -108], [-440, -107], [-446, -120], [-446, -124], [-455, -139], [-457, -148], [-450, -152], [-446, -146], [-439, -139], [-436, -130], [-429, -129], [-423, -124], [-421, -115], [-419, -108], [-415, -106], [-409, -103], [-399, -99], [-393, -93], [-387, -91], [-396, -90], [-394, -85], [-403, -85], [-409, -83], [-419, -73], [-423, -58], [-425, -46], [-445, -58], [-445, -82], [-444, -89], [-452, -98], [-452, -102], [-462, -106], [-470, -96], [-473, -90], [-478, -91], [-474, -106], [-468, -109], [-483, -119], [-495, -112], [-501, -114], [-501, -126]]}, "center": {"19-258, T": [-426, -91]}}, +{"id": 294, "name": "Dicks - Emote used by Streamer Mahluna", "description": "An emote by the German-speaking streamer Mahluna, mostly in a humorous context", "links": {"website": ["https://twitch.tv/mahluna"], "subreddit": ["mahluna"], "discord": ["SaprE59GvH"]}, "path": {"5-258, T": [[248, -331], [248, -368], [357, -367], [357, -331], [249, -331]]}, "center": {"5-258, T": [285, -349]}}, {"id": 295, "name": "ENS Rennes", "description": "Logo of the french school École Normale Supérieure de Rennes", "links": {"website": ["https://www.ens-rennes.fr/"]}, "path": {"1-12": [[-254, 342], [-254, 358], [-239, 358], [-239, 342]]}, "center": {"1-12": [-246, 350]}}, -{"id": 296, "name": "Jet Lag: The Game", "description": "A travel game show produced by Wendover Productions on YouTube and Nebula.", "links": {"website": ["https://go.nebula.tv/jetlag", "https://www.youtube.com/@jetlagthegame", "https://nebula.tv/jetlag"], "subreddit": ["JetLagTheGame", "Nebula"], "discord": ["jetlag"]}, "path": {"5-12": [[276, 447], [276, 446], [274, 446], [274, 445], [272, 445], [272, 444], [271, 444], [271, 443], [269, 443], [269, 442], [267, 442], [267, 428], [269, 428], [269, 427], [270, 427], [271, 427], [271, 426], [272, 426], [272, 425], [274, 425], [274, 424], [276, 424], [276, 423], [279, 423], [279, 424], [281, 424], [281, 425], [283, 425], [283, 426], [284, 426], [284, 427], [286, 427], [286, 428], [288, 428], [288, 442], [286, 442], [286, 443], [284, 443], [284, 444], [283, 444], [283, 445], [281, 445], [281, 446], [279, 446], [279, 447]], "13-17": [[255, 428], [269, 428], [269, 427], [271, 427], [271, 426], [272, 426], [272, 425], [273, 425], [273, 424], [275, 424], [275, 423], [280, 423], [280, 424], [282, 424], [282, 425], [283, 425], [283, 426], [284, 426], [284, 427], [286, 427], [286, 428], [300, 428], [300, 429], [301, 429], [301, 431], [302, 431], [302, 439], [301, 439], [301, 441], [300, 441], [300, 442], [287, 442], [287, 443], [284, 443], [284, 444], [283, 444], [283, 445], [281, 445], [281, 446], [279, 446], [279, 447], [276, 447], [276, 446], [274, 446], [274, 445], [272, 445], [272, 444], [271, 444], [271, 443], [268, 443], [268, 442], [255, 442], [255, 441], [254, 441], [254, 440], [253, 440], [253, 430], [254, 430], [254, 429], [255, 429]], "2-4": [[366, 385], [366, 390], [382, 390], [382, 374], [366, 374], [366, 390]], "29-41": [[-330, -494], [-329, -494], [-329, -496], [-327, -496], [-327, -497], [-326, -497], [-326, -498], [-325, -498], [-325, -499], [-322, -499], [-322, -500], [-317, -500], [-317, -499], [-314, -499], [-314, -498], [-313, -498], [-313, -497], [-312, -497], [-312, -496], [-310, -496], [-310, -495], [-310, -494], [-309, -494], [-309, -482], [-310, -482], [-310, -481], [-311, -481], [-311, -480], [-312, -480], [-312, -479], [-314, -479], [-314, -478], [-315, -478], [-315, -477], [-317, -477], [-317, -476], [-322, -476], [-322, -477], [-323, -477], [-323, -478], [-325, -478], [-325, -479], [-326, -479], [-326, -480], [-328, -480], [-328, -481], [-329, -481], [-329, -482], [-330, -482]], "43-45": [[269, -175], [270, -175], [270, -176], [271, -176], [271, -177], [273, -177], [274, -178], [274, -179], [275, -179], [276, -179], [276, -180], [277, -180], [277, -181], [282, -181], [282, -180], [283, -180], [283, -179], [285, -179], [285, -178], [286, -178], [286, -177], [288, -177], [288, -176], [289, -176], [289, -175], [290, -175], [290, -163], [289, -163], [289, -162], [288, -162], [288, -161], [286, -161], [286, -160], [285, -160], [285, -159], [283, -159], [283, -158], [281, -158], [281, -157], [278, -157], [278, -158], [276, -158], [276, -159], [274, -159], [274, -160], [273, -160], [273, -161], [271, -161], [271, -162], [270, -162], [270, -163], [269, -163], [269, -169]], "46-47": [[269, -176], [270, -176], [270, -177], [272, -177], [272, -178], [274, -178], [274, -179], [275, -179], [276, -179], [276, -180], [277, -180], [277, -181], [282, -181], [282, -180], [283, -180], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [291, -181], [291, -180], [293, -180], [293, -179], [295, -179], [295, -178], [297, -178], [297, -177], [298, -177], [298, -176], [299, -176], [299, -175], [300, -175], [300, -164], [299, -164], [300, -163], [299, -163], [299, -161], [297, -161], [297, -160], [296, -160], [296, -159], [294, -159], [294, -158], [292, -158], [291, -157], [287, -157], [287, -158], [286, -158], [286, -159], [284, -159], [284, -158], [282, -158], [282, -157], [277, -157], [277, -158], [276, -158], [276, -159], [273, -159], [273, -160], [272, -160], [272, -161], [271, -161], [271, -162], [270, -162], [270, -163], [269, -163]], "48-49": [[255, -176], [280, -176], [281, -176], [281, -177], [282, -177], [282, -178], [283, -178], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [292, -181], [292, -180], [294, -180], [294, -179], [296, -179], [296, -178], [297, -178], [297, -177], [298, -177], [298, -176], [325, -176], [325, -174], [326, -174], [326, -172], [327, -172], [327, -166], [328, -166], [329, -166], [329, -165], [332, -165], [332, -164], [333, -164], [333, -163], [334, -163], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [299, -157], [299, -162], [298, -162], [298, -161], [297, -161], [297, -160], [296, -160], [296, -159], [294, -159], [294, -158], [292, -158], [292, -157], [287, -157], [287, -158], [285, -158], [285, -159], [283, -159], [283, -160], [282, -160], [282, -161], [281, -161], [281, -162], [280, -162], [254, -162], [254, -163], [253, -163], [253, -164], [252, -164], [252, -172], [253, -172], [253, -173], [253, -174], [254, -174], [254, -175], [255, -175], [255, -176], [258, -176]], "50-56": [[255, -176], [280, -176], [281, -176], [281, -177], [282, -177], [282, -178], [283, -178], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [292, -181], [292, -180], [294, -180], [294, -179], [296, -179], [296, -178], [297, -178], [297, -177], [298, -177], [298, -176], [325, -176], [325, -174], [326, -174], [326, -172], [327, -172], [327, -166], [328, -166], [329, -166], [329, -165], [332, -165], [332, -164], [333, -164], [333, -163], [334, -163], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [299, -157], [299, -162], [298, -162], [298, -161], [297, -161], [297, -160], [296, -160], [296, -159], [294, -159], [294, -158], [292, -158], [292, -157], [287, -157], [287, -158], [285, -158], [285, -159], [283, -159], [283, -160], [282, -160], [282, -161], [281, -161], [281, -162], [280, -162], [254, -162], [254, -163], [253, -163], [253, -164], [252, -164], [252, -172], [253, -172], [253, -173], [253, -174], [254, -174], [254, -175], [255, -175], [255, -176], [258, -176], [254, -179], [255, -179], [255, -180], [256, -180], [256, -181], [260, -181], [260, -182], [267, -182], [267, -183], [269, -183], [269, -184], [270, -184], [270, -185], [271, -185], [271, -186], [275, -186], [276, -186], [276, -176], [279, -176], [279, -188], [336, -188], [336, -185], [337, -185], [337, -182], [337, -181], [334, -181], [334, -164], [254, -177], [253, -177], [253, -179], [254, -179], [254, -180]], "57-61": [[255, -176], [280, -176], [281, -176], [281, -177], [283, -177], [283, -178], [284, -178], [284, -179], [286, -179], [286, -180], [288, -180], [288, -181], [291, -181], [291, -180], [293, -180], [293, -179], [295, -179], [295, -178], [296, -178], [296, -177], [298, -177], [298, -176], [333, -176], [333, -175], [334, -175], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [299, -157], [299, -161], [296, -161], [296, -160], [295, -160], [295, -159], [293, -159], [293, -158], [291, -158], [291, -157], [288, -157], [288, -158], [286, -158], [286, -159], [284, -159], [284, -160], [283, -160], [283, -161], [281, -161], [281, -162], [254, -162], [254, -163], [253, -165], [252, -165], [252, -173], [253, -173], [253, -174], [253, -175], [254, -175], [255, -175]], "62-63": [[255, -176], [281, -176], [281, -177], [282, -177], [282, -178], [284, -178], [284, -179], [286, -179], [286, -180], [288, -180], [288, -181], [291, -181], [291, -180], [293, -180], [293, -179], [295, -179], [295, -178], [297, -178], [297, -177], [298, -177], [298, -176], [326, -176], [326, -174], [327, -174], [327, -166], [327, -165], [326, -165], [326, -164], [333, -164], [333, -163], [334, -163], [334, -156], [299, -156], [298, -156], [298, -154], [297, -154], [297, -151], [296, -151], [296, -147], [295, -147], [295, -143], [294, -143], [294, -141], [293, -141], [293, -140], [286, -140], [286, -141], [285, -141], [285, -142], [284, -142], [284, -143], [283, -143], [283, -147], [282, -147], [282, -153], [281, -153], [281, -159], [280, -159], [280, -160], [280, -162], [255, -162], [255, -163], [254, -163], [254, -164], [253, -164], [253, -165], [253, -166], [252, -166], [252, -172], [253, -172], [253, -174], [254, -174], [254, -175], [255, -175]], "64-65": [[254, -176], [281, -176], [281, -177], [282, -177], [282, -178], [283, -178], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [292, -181], [292, -180], [294, -180], [294, -179], [296, -179], [296, -178], [297, -178], [297, -177], [298, -177], [298, -176], [307, -176], [307, -177], [308, -177], [308, -179], [306, -179], [306, -180], [303, -180], [303, -181], [299, -181], [299, -182], [298, -182], [298, -183], [297, -183], [297, -188], [298, -188], [298, -189], [298, -188], [299, -188], [299, -187], [299, -186], [300, -186], [300, -185], [301, -185], [301, -184], [318, -184], [318, -183], [319, -183], [319, -182], [320, -182], [320, -181], [321, -181], [320, -181], [320, -180], [319, -180], [319, -179], [308, -179], [308, -177], [309, -177], [308, -176], [317, -176], [317, -177], [318, -177], [318, -178], [318, -176], [325, -176], [325, -175], [326, -175], [326, -173], [327, -173], [327, -166], [326, -166], [326, -165], [326, -164], [333, -164], [333, -163], [334, -163], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [299, -157], [299, -160], [297, -160], [297, -152], [296, -152], [296, -145], [295, -145], [295, -144], [294, -144], [294, -143], [292, -143], [292, -142], [288, -142], [288, -143], [286, -143], [286, -144], [284, -144], [284, -146], [283, -146], [283, -150], [282, -150], [282, -154], [281, -154], [281, -162], [254, -162], [254, -163], [253, -163], [253, -165], [252, -165], [252, -173], [253, -173], [253, -175], [254, -175]], "66-82": [[254, -176], [281, -176], [281, -177], [282, -177], [282, -178], [283, -178], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [292, -181], [292, -180], [294, -180], [294, -179], [296, -179], [296, -178], [297, -178], [297, -177], [298, -177], [298, -176], [306, -176], [306, -177], [307, -177], [307, -178], [307, -179], [305, -179], [305, -180], [302, -180], [302, -181], [299, -181], [299, -182], [298, -182], [298, -183], [297, -183], [297, -188], [298, -188], [298, -189], [298, -188], [299, -188], [299, -187], [299, -186], [300, -186], [300, -185], [301, -185], [301, -184], [319, -184], [319, -183], [320, -183], [320, -182], [321, -182], [321, -181], [322, -181], [321, -181], [321, -180], [319, -180], [319, -179], [307, -179], [307, -177], [308, -177], [307, -177], [307, -176], [317, -176], [317, -177], [318, -177], [318, -178], [318, -176], [319, -176], [319, -177], [319, -176], [321, -176], [325, -176], [325, -175], [326, -175], [326, -174], [327, -174], [327, -166], [326, -166], [326, -165], [326, -164], [332, -164], [332, -165], [332, -166], [331, -166], [331, -167], [330, -167], [330, -168], [329, -168], [329, -170], [330, -170], [330, -171], [331, -171], [331, -172], [332, -172], [332, -171], [334, -171], [334, -172], [335, -172], [335, -171], [336, -171], [336, -170], [337, -170], [337, -168], [336, -168], [336, -167], [335, -167], [335, -166], [334, -166], [334, -165], [333, -165], [333, -164], [333, -163], [334, -163], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [299, -157], [299, -160], [297, -160], [297, -154], [296, -154], [296, -150], [295, -150], [295, -146], [294, -146], [294, -144], [293, -144], [293, -143], [292, -143], [292, -142], [287, -142], [287, -143], [284, -143], [284, -144], [283, -144], [283, -150], [282, -150], [282, -154], [281, -154], [281, -161], [280, -161], [280, -162], [255, -162], [255, -163], [254, -163], [254, -164], [253, -164], [253, -166], [252, -166], [252, -172], [253, -172], [253, -173], [253, -174], [254, -174], [254, -175]], "83-91": [[254, -176], [281, -176], [281, -177], [282, -177], [282, -178], [283, -178], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [292, -181], [292, -180], [294, -180], [294, -179], [296, -179], [296, -178], [297, -178], [297, -177], [298, -177], [298, -176], [306, -176], [306, -177], [307, -177], [307, -179], [306, -179], [306, -180], [302, -180], [302, -181], [298, -181], [298, -182], [297, -182], [297, -189], [298, -189], [299, -189], [299, -187], [300, -187], [300, -186], [301, -186], [301, -185], [302, -185], [302, -184], [319, -184], [319, -183], [320, -183], [320, -182], [321, -182], [321, -181], [320, -181], [320, -180], [319, -180], [319, -179], [307, -179], [307, -177], [308, -177], [307, -177], [307, -176], [317, -176], [317, -177], [318, -177], [318, -178], [318, -177], [319, -177], [318, -177], [318, -176], [325, -176], [325, -175], [325, -174], [326, -174], [326, -173], [327, -173], [327, -164], [332, -164], [332, -165], [332, -166], [331, -166], [331, -167], [330, -167], [330, -168], [329, -168], [329, -170], [330, -170], [330, -171], [331, -171], [331, -172], [332, -172], [332, -171], [333, -171], [334, -171], [334, -172], [335, -172], [335, -171], [336, -171], [336, -170], [337, -170], [337, -168], [336, -168], [336, -167], [335, -167], [335, -166], [334, -166], [334, -165], [333, -165], [333, -163], [334, -163], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [300, -158], [299, -158], [299, -162], [299, -161], [297, -161], [297, -160], [296, -160], [296, -159], [294, -159], [294, -158], [292, -158], [291, -158], [291, -157], [287, -157], [287, -158], [286, -158], [286, -159], [284, -159], [284, -160], [283, -160], [283, -161], [281, -161], [281, -162], [254, -162], [254, -163], [253, -163], [253, -165], [252, -165], [252, -173], [253, -173], [253, -175], [254, -175]], "92-258": [[255, -176], [281, -176], [281, -177], [283, -177], [283, -178], [284, -178], [284, -179], [286, -179], [286, -180], [288, -180], [288, -181], [291, -181], [291, -180], [293, -180], [293, -179], [295, -179], [295, -178], [296, -178], [296, -177], [298, -177], [298, -176], [307, -176], [307, -177], [308, -177], [308, -179], [306, -179], [306, -180], [303, -180], [303, -181], [298, -181], [298, -182], [297, -182], [297, -188], [299, -188], [299, -186], [300, -186], [300, -185], [301, -185], [301, -184], [319, -184], [319, -183], [320, -183], [320, -182], [321, -182], [321, -181], [322, -181], [321, -181], [321, -180], [320, -180], [320, -179], [319, -179], [308, -179], [308, -177], [309, -177], [308, -177], [308, -176], [317, -176], [317, -177], [318, -177], [318, -178], [319, -178], [319, -177], [318, -177], [318, -176], [324, -176], [324, -175], [325, -175], [325, -174], [326, -174], [326, -173], [327, -173], [327, -172], [328, -172], [328, -166], [327, -166], [327, -164], [332, -164], [332, -165], [332, -166], [331, -166], [331, -167], [330, -167], [330, -168], [329, -168], [329, -170], [330, -170], [330, -171], [331, -171], [331, -172], [332, -172], [332, -171], [334, -171], [334, -172], [335, -172], [335, -171], [336, -171], [336, -170], [337, -170], [337, -167], [336, -167], [336, -166], [335, -166], [335, -165], [334, -165], [334, -162], [335, -162], [335, -158], [334, -158], [334, -157], [333, -157], [333, -156], [332, -156], [332, -155], [320, -155], [320, -156], [300, -156], [300, -157], [299, -157], [299, -161], [296, -161], [296, -160], [295, -160], [295, -159], [293, -159], [293, -158], [291, -158], [291, -157], [288, -157], [288, -158], [286, -158], [286, -159], [284, -159], [284, -160], [283, -160], [283, -161], [281, -161], [281, -162], [280, -162], [255, -162], [255, -163], [254, -163], [254, -164], [253, -164], [253, -165], [252, -165], [252, -172], [253, -172], [253, -173], [253, -175], [254, -175], [254, -176], [255, -176], [252, -173]]}, "center": {"5-12": [278, 435], "13-17": [278, 435], "2-4": [374, 382], "29-41": [-319, -488], "43-45": [280, -169], "46-47": [289, -169], "48-49": [290, -169], "50-56": [262, -169], "57-61": [290, -169], "62-63": [291, -166], "64-65": [290, -169], "66-82": [290, -169], "83-91": [290, -169], "92-258": [289, -169]}}, -{"id": 297, "name": "La liberté", "description": "Liberty Leading the People (French: La Liberté guidant le peuple is a painting by Eugène Delacroix commemorating the July Revolution of 1830, which toppled King Charles X. A woman of the people with a Phrygian cap personifying the concept of Liberty leads a varied group of people forward over a barricade and the bodies of the fallen, holding the flag of the French Revolution – the tricolour, which again became France's national flag after these events – in one hand and brandishing a bayonetted musket with the other. The figure of Liberty is also viewed as a symbol of France and the French Republic known as Marianne. The painting is sometimes wrongly thought to depict the French Revolution of 1789.", "links": {"website": ["https://en.wikipedia.org/wiki/Liberty_Leading_the_People", "https://fr.wikipedia.org/wiki/La_Libert%C3%A9_guidant_le_peuple#/media/Fichier:Eug%C3%A8ne_Delacroix_-_Le_28_Juillet._La_Libert%C3%A9_guidant_le_peuple.jpg"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"18-258": [[-501, -164], [-488, -157], [-480, -159], [-478, -168], [-466, -167], [-463, -163], [-451, -171], [-446, -163], [-444, -157], [-446, -145], [-430, -132], [-409, -135], [-408, -154], [-421, -165], [-422, -170], [-419, -175], [-419, -183], [-424, -189], [-428, -202], [-448, -205], [-456, -211], [-501, -200]]}, "center": {"18-258": [-463, -188]}}, -{"id": 298, "name": "Apollo for Reddit", "description": "Reddit third-party client built for iOS developed by Christian Selig (u/iamthatis). Shut down on July 1, 2023 following Reddit CEO Steve Huffman (u/spez)'s highly controversial API changes.", "links": {"website": ["https://apolloapp.io"], "subreddit": ["ApolloApp", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"9-77, 91-258": [[-73, 21], [-77, 24], [-77, 28], [-73, 31], [-71, 31], [-67, 28], [-67, 24], [-70, 21]]}, "center": {"9-77, 91-258": [-72, 26]}}, -{"id": 299, "name": "Jeanne d'Arc", "description": "Joan of Arc (c. 1412 – 30 May 1431) is a patron saint of France, honored as a defender of the French nation for her role in the siege of Orléans and her insistence on the coronation of Charles VII of France during the Hundred Years' War. Claiming to be acting under divine guidance, she became a military leader who transcended gender roles and gained recognition as a savior of France", "links": {"website": ["https://en.wikipedia.org/wiki/Joan_of_Arc", "https://fr.wikipedia.org/wiki/Jeanne_d%27Arc_au_sacre_du_roi_Charles_VII#/media/Fichier:Ingres_coronation_charles_vii.jpg"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"18-258": [[-485, -108], [-482, -119], [-481, -124], [-485, -135], [-499, -148], [-500, -169], [-487, -145], [-479, -166], [-470, -170], [-464, -164], [-466, -150], [-462, -144], [-456, -145], [-453, -132], [-480, -91], [-485, -109]]}, "center": {"18-258": [-469, -132]}}, +{"id": 296, "name": "Jet Lag: The Game", "description": "A travel game show produced by Wendover Productions on YouTube and Nebula.", "links": {"website": ["https://go.nebula.tv/jetlag", "https://www.youtube.com/@jetlagthegame", "https://nebula.tv/jetlag"], "subreddit": ["JetLagTheGame", "Nebula"], "discord": ["jetlag"]}, "path": {"5-12": [[276, 447], [276, 446], [274, 446], [274, 445], [272, 445], [272, 444], [271, 444], [271, 443], [269, 443], [269, 442], [267, 442], [267, 428], [269, 428], [269, 427], [270, 427], [271, 427], [271, 426], [272, 426], [272, 425], [274, 425], [274, 424], [276, 424], [276, 423], [279, 423], [279, 424], [281, 424], [281, 425], [283, 425], [283, 426], [284, 426], [284, 427], [286, 427], [286, 428], [288, 428], [288, 442], [286, 442], [286, 443], [284, 443], [284, 444], [283, 444], [283, 445], [281, 445], [281, 446], [279, 446], [279, 447]], "13-17": [[255, 428], [269, 428], [269, 427], [271, 427], [271, 426], [272, 426], [272, 425], [273, 425], [273, 424], [275, 424], [275, 423], [280, 423], [280, 424], [282, 424], [282, 425], [283, 425], [283, 426], [284, 426], [284, 427], [286, 427], [286, 428], [300, 428], [300, 429], [301, 429], [301, 431], [302, 431], [302, 439], [301, 439], [301, 441], [300, 441], [300, 442], [287, 442], [287, 443], [284, 443], [284, 444], [283, 444], [283, 445], [281, 445], [281, 446], [279, 446], [279, 447], [276, 447], [276, 446], [274, 446], [274, 445], [272, 445], [272, 444], [271, 444], [271, 443], [268, 443], [268, 442], [255, 442], [255, 441], [254, 441], [254, 440], [253, 440], [253, 430], [254, 430], [254, 429], [255, 429]], "2-4": [[366, 385], [366, 390], [382, 390], [382, 374], [366, 374], [366, 390]], "29-41": [[-330, -494], [-329, -494], [-329, -496], [-327, -496], [-327, -497], [-326, -497], [-326, -498], [-325, -498], [-325, -499], [-322, -499], [-322, -500], [-317, -500], [-317, -499], [-314, -499], [-314, -498], [-313, -498], [-313, -497], [-312, -497], [-312, -496], [-310, -496], [-310, -495], [-310, -494], [-309, -494], [-309, -482], [-310, -482], [-310, -481], [-311, -481], [-311, -480], [-312, -480], [-312, -479], [-314, -479], [-314, -478], [-315, -478], [-315, -477], [-317, -477], [-317, -476], [-322, -476], [-322, -477], [-323, -477], [-323, -478], [-325, -478], [-325, -479], [-326, -479], [-326, -480], [-328, -480], [-328, -481], [-329, -481], [-329, -482], [-330, -482]], "43-45": [[269, -175], [270, -175], [270, -176], [271, -176], [271, -177], [273, -177], [274, -178], [274, -179], [275, -179], [276, -179], [276, -180], [277, -180], [277, -181], [282, -181], [282, -180], [283, -180], [283, -179], [285, -179], [285, -178], [286, -178], [286, -177], [288, -177], [288, -176], [289, -176], [289, -175], [290, -175], [290, -163], [289, -163], [289, -162], [288, -162], [288, -161], [286, -161], [286, -160], [285, -160], [285, -159], [283, -159], [283, -158], [281, -158], [281, -157], [278, -157], [278, -158], [276, -158], [276, -159], [274, -159], [274, -160], [273, -160], [273, -161], [271, -161], [271, -162], [270, -162], [270, -163], [269, -163], [269, -169]], "46-47": [[269, -176], [270, -176], [270, -177], [272, -177], [272, -178], [274, -178], [274, -179], [275, -179], [276, -179], [276, -180], [277, -180], [277, -181], [282, -181], [282, -180], [283, -180], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [291, -181], [291, -180], [293, -180], [293, -179], [295, -179], [295, -178], [297, -178], [297, -177], [298, -177], [298, -176], [299, -176], [299, -175], [300, -175], [300, -164], [299, -164], [300, -163], [299, -163], [299, -161], [297, -161], [297, -160], [296, -160], [296, -159], [294, -159], [294, -158], [292, -158], [291, -157], [287, -157], [287, -158], [286, -158], [286, -159], [284, -159], [284, -158], [282, -158], [282, -157], [277, -157], [277, -158], [276, -158], [276, -159], [273, -159], [273, -160], [272, -160], [272, -161], [271, -161], [271, -162], [270, -162], [270, -163], [269, -163]], "48-49": [[255, -176], [280, -176], [281, -176], [281, -177], [282, -177], [282, -178], [283, -178], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [292, -181], [292, -180], [294, -180], [294, -179], [296, -179], [296, -178], [297, -178], [297, -177], [298, -177], [298, -176], [325, -176], [325, -174], [326, -174], [326, -172], [327, -172], [327, -166], [328, -166], [329, -166], [329, -165], [332, -165], [332, -164], [333, -164], [333, -163], [334, -163], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [299, -157], [299, -162], [298, -162], [298, -161], [297, -161], [297, -160], [296, -160], [296, -159], [294, -159], [294, -158], [292, -158], [292, -157], [287, -157], [287, -158], [285, -158], [285, -159], [283, -159], [283, -160], [282, -160], [282, -161], [281, -161], [281, -162], [280, -162], [254, -162], [254, -163], [253, -163], [253, -164], [252, -164], [252, -172], [253, -172], [253, -173], [253, -174], [254, -174], [254, -175], [255, -175], [255, -176], [258, -176]], "50-56": [[255, -176], [280, -176], [281, -176], [281, -177], [282, -177], [282, -178], [283, -178], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [292, -181], [292, -180], [294, -180], [294, -179], [296, -179], [296, -178], [297, -178], [297, -177], [298, -177], [298, -176], [325, -176], [325, -174], [326, -174], [326, -172], [327, -172], [327, -166], [328, -166], [329, -166], [329, -165], [332, -165], [332, -164], [333, -164], [333, -163], [334, -163], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [299, -157], [299, -162], [298, -162], [298, -161], [297, -161], [297, -160], [296, -160], [296, -159], [294, -159], [294, -158], [292, -158], [292, -157], [287, -157], [287, -158], [285, -158], [285, -159], [283, -159], [283, -160], [282, -160], [282, -161], [281, -161], [281, -162], [280, -162], [254, -162], [254, -163], [253, -163], [253, -164], [252, -164], [252, -172], [253, -172], [253, -173], [253, -174], [254, -174], [254, -175], [255, -175], [255, -176], [258, -176], [254, -179], [255, -179], [255, -180], [256, -180], [256, -181], [260, -181], [260, -182], [267, -182], [267, -183], [269, -183], [269, -184], [270, -184], [270, -185], [271, -185], [271, -186], [275, -186], [276, -186], [276, -176], [279, -176], [279, -188], [336, -188], [336, -185], [337, -185], [337, -182], [337, -181], [334, -181], [334, -164], [254, -177], [253, -177], [253, -179], [254, -179], [254, -180]], "57-61": [[255, -176], [280, -176], [281, -176], [281, -177], [283, -177], [283, -178], [284, -178], [284, -179], [286, -179], [286, -180], [288, -180], [288, -181], [291, -181], [291, -180], [293, -180], [293, -179], [295, -179], [295, -178], [296, -178], [296, -177], [298, -177], [298, -176], [333, -176], [333, -175], [334, -175], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [299, -157], [299, -161], [296, -161], [296, -160], [295, -160], [295, -159], [293, -159], [293, -158], [291, -158], [291, -157], [288, -157], [288, -158], [286, -158], [286, -159], [284, -159], [284, -160], [283, -160], [283, -161], [281, -161], [281, -162], [254, -162], [254, -163], [253, -165], [252, -165], [252, -173], [253, -173], [253, -174], [253, -175], [254, -175], [255, -175]], "62-63": [[255, -176], [281, -176], [281, -177], [282, -177], [282, -178], [284, -178], [284, -179], [286, -179], [286, -180], [288, -180], [288, -181], [291, -181], [291, -180], [293, -180], [293, -179], [295, -179], [295, -178], [297, -178], [297, -177], [298, -177], [298, -176], [326, -176], [326, -174], [327, -174], [327, -166], [327, -165], [326, -165], [326, -164], [333, -164], [333, -163], [334, -163], [334, -156], [299, -156], [298, -156], [298, -154], [297, -154], [297, -151], [296, -151], [296, -147], [295, -147], [295, -143], [294, -143], [294, -141], [293, -141], [293, -140], [286, -140], [286, -141], [285, -141], [285, -142], [284, -142], [284, -143], [283, -143], [283, -147], [282, -147], [282, -153], [281, -153], [281, -159], [280, -159], [280, -160], [280, -162], [255, -162], [255, -163], [254, -163], [254, -164], [253, -164], [253, -165], [253, -166], [252, -166], [252, -172], [253, -172], [253, -174], [254, -174], [254, -175], [255, -175]], "64-65": [[254, -176], [281, -176], [281, -177], [282, -177], [282, -178], [283, -178], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [292, -181], [292, -180], [294, -180], [294, -179], [296, -179], [296, -178], [297, -178], [297, -177], [298, -177], [298, -176], [307, -176], [307, -177], [308, -177], [308, -179], [306, -179], [306, -180], [303, -180], [303, -181], [299, -181], [299, -182], [298, -182], [298, -183], [297, -183], [297, -188], [298, -188], [298, -189], [298, -188], [299, -188], [299, -187], [299, -186], [300, -186], [300, -185], [301, -185], [301, -184], [318, -184], [318, -183], [319, -183], [319, -182], [320, -182], [320, -181], [321, -181], [320, -181], [320, -180], [319, -180], [319, -179], [308, -179], [308, -177], [309, -177], [308, -176], [317, -176], [317, -177], [318, -177], [318, -178], [318, -176], [325, -176], [325, -175], [326, -175], [326, -173], [327, -173], [327, -166], [326, -166], [326, -165], [326, -164], [333, -164], [333, -163], [334, -163], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [299, -157], [299, -160], [297, -160], [297, -152], [296, -152], [296, -145], [295, -145], [295, -144], [294, -144], [294, -143], [292, -143], [292, -142], [288, -142], [288, -143], [286, -143], [286, -144], [284, -144], [284, -146], [283, -146], [283, -150], [282, -150], [282, -154], [281, -154], [281, -162], [254, -162], [254, -163], [253, -163], [253, -165], [252, -165], [252, -173], [253, -173], [253, -175], [254, -175]], "66-82": [[254, -176], [281, -176], [281, -177], [282, -177], [282, -178], [283, -178], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [292, -181], [292, -180], [294, -180], [294, -179], [296, -179], [296, -178], [297, -178], [297, -177], [298, -177], [298, -176], [306, -176], [306, -177], [307, -177], [307, -178], [307, -179], [305, -179], [305, -180], [302, -180], [302, -181], [299, -181], [299, -182], [298, -182], [298, -183], [297, -183], [297, -188], [298, -188], [298, -189], [298, -188], [299, -188], [299, -187], [299, -186], [300, -186], [300, -185], [301, -185], [301, -184], [319, -184], [319, -183], [320, -183], [320, -182], [321, -182], [321, -181], [322, -181], [321, -181], [321, -180], [319, -180], [319, -179], [307, -179], [307, -177], [308, -177], [307, -177], [307, -176], [317, -176], [317, -177], [318, -177], [318, -178], [318, -176], [319, -176], [319, -177], [319, -176], [321, -176], [325, -176], [325, -175], [326, -175], [326, -174], [327, -174], [327, -166], [326, -166], [326, -165], [326, -164], [332, -164], [332, -165], [332, -166], [331, -166], [331, -167], [330, -167], [330, -168], [329, -168], [329, -170], [330, -170], [330, -171], [331, -171], [331, -172], [332, -172], [332, -171], [334, -171], [334, -172], [335, -172], [335, -171], [336, -171], [336, -170], [337, -170], [337, -168], [336, -168], [336, -167], [335, -167], [335, -166], [334, -166], [334, -165], [333, -165], [333, -164], [333, -163], [334, -163], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [299, -157], [299, -160], [297, -160], [297, -154], [296, -154], [296, -150], [295, -150], [295, -146], [294, -146], [294, -144], [293, -144], [293, -143], [292, -143], [292, -142], [287, -142], [287, -143], [284, -143], [284, -144], [283, -144], [283, -150], [282, -150], [282, -154], [281, -154], [281, -161], [280, -161], [280, -162], [255, -162], [255, -163], [254, -163], [254, -164], [253, -164], [253, -166], [252, -166], [252, -172], [253, -172], [253, -173], [253, -174], [254, -174], [254, -175]], "83-91": [[254, -176], [281, -176], [281, -177], [282, -177], [282, -178], [283, -178], [283, -179], [285, -179], [285, -180], [287, -180], [287, -181], [292, -181], [292, -180], [294, -180], [294, -179], [296, -179], [296, -178], [297, -178], [297, -177], [298, -177], [298, -176], [306, -176], [306, -177], [307, -177], [307, -179], [306, -179], [306, -180], [302, -180], [302, -181], [298, -181], [298, -182], [297, -182], [297, -189], [298, -189], [299, -189], [299, -187], [300, -187], [300, -186], [301, -186], [301, -185], [302, -185], [302, -184], [319, -184], [319, -183], [320, -183], [320, -182], [321, -182], [321, -181], [320, -181], [320, -180], [319, -180], [319, -179], [307, -179], [307, -177], [308, -177], [307, -177], [307, -176], [317, -176], [317, -177], [318, -177], [318, -178], [318, -177], [319, -177], [318, -177], [318, -176], [325, -176], [325, -175], [325, -174], [326, -174], [326, -173], [327, -173], [327, -164], [332, -164], [332, -165], [332, -166], [331, -166], [331, -167], [330, -167], [330, -168], [329, -168], [329, -170], [330, -170], [330, -171], [331, -171], [331, -172], [332, -172], [332, -171], [333, -171], [334, -171], [334, -172], [335, -172], [335, -171], [336, -171], [336, -170], [337, -170], [337, -168], [336, -168], [336, -167], [335, -167], [335, -166], [334, -166], [334, -165], [333, -165], [333, -163], [334, -163], [334, -157], [333, -157], [333, -156], [300, -156], [300, -157], [300, -158], [299, -158], [299, -162], [299, -161], [297, -161], [297, -160], [296, -160], [296, -159], [294, -159], [294, -158], [292, -158], [291, -158], [291, -157], [287, -157], [287, -158], [286, -158], [286, -159], [284, -159], [284, -160], [283, -160], [283, -161], [281, -161], [281, -162], [254, -162], [254, -163], [253, -163], [253, -165], [252, -165], [252, -173], [253, -173], [253, -175], [254, -175]], "92-258, T": [[255, -176], [281, -176], [281, -177], [283, -177], [283, -178], [284, -178], [284, -179], [286, -179], [286, -180], [288, -180], [288, -181], [291, -181], [291, -180], [293, -180], [293, -179], [295, -179], [295, -178], [296, -178], [296, -177], [298, -177], [298, -176], [307, -176], [307, -177], [308, -177], [308, -179], [306, -179], [306, -180], [303, -180], [303, -181], [298, -181], [298, -182], [297, -182], [297, -188], [299, -188], [299, -186], [300, -186], [300, -185], [301, -185], [301, -184], [319, -184], [319, -183], [320, -183], [320, -182], [321, -182], [321, -181], [322, -181], [321, -181], [321, -180], [320, -180], [320, -179], [319, -179], [308, -179], [308, -177], [309, -177], [308, -177], [308, -176], [317, -176], [317, -177], [318, -177], [318, -178], [319, -178], [319, -177], [318, -177], [318, -176], [324, -176], [324, -175], [325, -175], [325, -174], [326, -174], [326, -173], [327, -173], [327, -172], [328, -172], [328, -166], [327, -166], [327, -164], [332, -164], [332, -165], [332, -166], [331, -166], [331, -167], [330, -167], [330, -168], [329, -168], [329, -170], [330, -170], [330, -171], [331, -171], [331, -172], [332, -172], [332, -171], [334, -171], [334, -172], [335, -172], [335, -171], [336, -171], [336, -170], [337, -170], [337, -167], [336, -167], [336, -166], [335, -166], [335, -165], [334, -165], [334, -162], [335, -162], [335, -158], [334, -158], [334, -157], [333, -157], [333, -156], [332, -156], [332, -155], [320, -155], [320, -156], [300, -156], [300, -157], [299, -157], [299, -161], [296, -161], [296, -160], [295, -160], [295, -159], [293, -159], [293, -158], [291, -158], [291, -157], [288, -157], [288, -158], [286, -158], [286, -159], [284, -159], [284, -160], [283, -160], [283, -161], [281, -161], [281, -162], [280, -162], [255, -162], [255, -163], [254, -163], [254, -164], [253, -164], [253, -165], [252, -165], [252, -172], [253, -172], [253, -173], [253, -175], [254, -175], [254, -176], [255, -176], [252, -173]]}, "center": {"5-12": [278, 435], "13-17": [278, 435], "2-4": [374, 382], "29-41": [-319, -488], "43-45": [280, -169], "46-47": [289, -169], "48-49": [290, -169], "50-56": [262, -169], "57-61": [290, -169], "62-63": [291, -166], "64-65": [290, -169], "66-82": [290, -169], "83-91": [290, -169], "92-258, T": [289, -169]}}, +{"id": 297, "name": "La liberté", "description": "Liberty Leading the People (French: La Liberté guidant le peuple is a painting by Eugène Delacroix commemorating the July Revolution of 1830, which toppled King Charles X. A woman of the people with a Phrygian cap personifying the concept of Liberty leads a varied group of people forward over a barricade and the bodies of the fallen, holding the flag of the French Revolution – the tricolour, which again became France's national flag after these events – in one hand and brandishing a bayonetted musket with the other. The figure of Liberty is also viewed as a symbol of France and the French Republic known as Marianne. The painting is sometimes wrongly thought to depict the French Revolution of 1789.", "links": {"website": ["https://en.wikipedia.org/wiki/Liberty_Leading_the_People", "https://fr.wikipedia.org/wiki/La_Libert%C3%A9_guidant_le_peuple#/media/Fichier:Eug%C3%A8ne_Delacroix_-_Le_28_Juillet._La_Libert%C3%A9_guidant_le_peuple.jpg"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"18-258, T": [[-501, -164], [-488, -157], [-480, -159], [-478, -168], [-466, -167], [-463, -163], [-451, -171], [-446, -163], [-444, -157], [-446, -145], [-430, -132], [-409, -135], [-408, -154], [-421, -165], [-422, -170], [-419, -175], [-419, -183], [-424, -189], [-428, -202], [-448, -205], [-456, -211], [-501, -200]]}, "center": {"18-258, T": [-463, -188]}}, +{"id": 298, "name": "Apollo for Reddit", "description": "Reddit third-party client built for iOS developed by Christian Selig (u/iamthatis). Shut down on July 1, 2023 following Reddit CEO Steve Huffman (u/spez)'s highly controversial API changes.", "links": {"website": ["https://apolloapp.io"], "subreddit": ["ApolloApp", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"9-77, 91-258, T": [[-73, 21], [-77, 24], [-77, 28], [-73, 31], [-71, 31], [-67, 28], [-67, 24], [-70, 21]]}, "center": {"9-77, 91-258, T": [-72, 26]}}, +{"id": 299, "name": "Jeanne d'Arc", "description": "Joan of Arc (c. 1412 – 30 May 1431) is a patron saint of France, honored as a defender of the French nation for her role in the siege of Orléans and her insistence on the coronation of Charles VII of France during the Hundred Years' War. Claiming to be acting under divine guidance, she became a military leader who transcended gender roles and gained recognition as a savior of France", "links": {"website": ["https://en.wikipedia.org/wiki/Joan_of_Arc", "https://fr.wikipedia.org/wiki/Jeanne_d%27Arc_au_sacre_du_roi_Charles_VII#/media/Fichier:Ingres_coronation_charles_vii.jpg"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"18-258, T": [[-485, -108], [-482, -119], [-481, -124], [-485, -135], [-499, -148], [-500, -169], [-487, -145], [-479, -166], [-470, -170], [-464, -164], [-466, -150], [-462, -144], [-456, -145], [-453, -132], [-480, -91], [-485, -109]]}, "center": {"18-258, T": [-469, -132]}}, {"id": 300, "name": "Ogcn", "description": "Here are the abreviation letter of the Olympic Gymnast Club Nice. This football club is playing in 1st french division and is located in the southern east of France. The club is playing in the stadium called : Allianz Riviera.", "links": {"website": ["https://www.ogcnice.com/"], "subreddit": ["ogcnice"]}, "path": {"47-68": [[370, -325], [370, -320], [387, -320], [387, -325]]}, "center": {"47-68": [379, -322]}}, -{"id": 301, "name": "Ninten", "description": "Ninten is the main protagonist of the game EarthBound Beginnings. He is a boy from the suburbs of Podunk who suffers from asthma and uses items such as baseball bats, boomerangs, and slingshots as his weapons.", "links": {"website": ["https://earthbound.fandom.com/wiki/Ninten"], "subreddit": ["earthbound"], "discord": ["earthbound"]}, "path": {"21-44": [[-191, -232], [-191, -233], [-190, -234], [-190, -235], [-191, -236], [-191, -237], [-192, -240], [-190, -244], [-189, -245], [-193, -249], [-193, -251], [-192, -255], [-189, -257], [-188, -258], [-182, -258], [-180, -256], [-178, -253], [-178, -251], [-184, -244], [-182, -244], [-180, -240], [-180, -238], [-181, -236], [-182, -234], [-181, -232]], "50-258": [[262, -192], [258, -187], [258, -185], [260, -185], [260, -176], [271, -176], [271, -185], [273, -185], [273, -187], [270, -192]]}, "center": {"21-44": [-186, -251], "50-258": [266, -184]}}, -{"id": 302, "name": "Simone Veil", "description": "Simone Veil was a French magistrate, Holocaust survivor, and politician who served as Health Minister in several governments and was President of the European Parliament from 1979 to 1982, the first woman to hold that office. As health minister, she is best remembered for advancing women's rights in France, in particular for the 1975 law that legalized abortion, today known as Veil Act", "links": {"website": ["https://en.wikipedia.org/wiki/Simone_Veil", "https://blogs.mediapart.fr/thierry-paul-valette/blog/300617/lettre-emmanuel-macron-simone-veil-au-pantheon"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"18-258": [[-501, -44], [-477, -57], [-478, -77], [-473, -97], [-460, -101], [-450, -99], [-442, -85], [-444, -69], [-445, -56], [-449, -53], [-449, -49], [-429, -44], [-474, -8], [-501, -9], [-500, -44]]}, "center": {"18-258": [-479, -32]}}, -{"id": 303, "name": "Takagi-san", "description": "The female main character of the animated series, \"Teasing Master Takagi-San\"", "links": {"subreddit": ["Takagi_san"], "discord": ["DSszkGyD"]}, "path": {"42-258": [[428, -367], [429, -339], [433, -325], [452, -325], [453, -329], [469, -328], [469, -338], [456, -338], [456, -352], [454, -355], [454, -362], [459, -369]]}, "center": {"42-258": [442, -346]}}, -{"id": 304, "name": "u/spez Functie Elders", "description": "\"Functie Elders\" or \"Function Elsewhere\" refers to a political controversy in The Netherlands. When a politician walked outside during the 2021 formation, a Photographer took a picture showing a document, on it were written the following words: \"Positie Omtzigt, Functie Elders\", or \"Position Omtzigt (politician) Function Elsewhere\". This angered a lot of people. As a parody, on the canvas r/placenl recreated it as a text bubble, with u/spez instead of Omtzigt. Showing that they don't support the new API changes, and would rather have u/spez do something else than leading Reddit.", "links": {"website": ["https://en.wikipedia.org/wiki/2021%E2%80%932022_Dutch_cabinet_formation"], "subreddit": ["placenl"], "discord": ["placenl"]}, "path": {"45-258": [[365, -495], [365, -489], [367, -487], [453, -487], [458, -484], [459, -484], [460, -485], [460, -486], [457, -491], [457, -495], [455, -497], [367, -497]]}, "center": {"45-258": [412, -492]}}, -{"id": 305, "name": "Celebrating French women", "description": "Famous/glorious french women. From top left to bottom right: Jeanne d'Arc (Joan of Arc, French folk heroine and saint), La Liberté guidant le peuple (Liberty Leading the People,\nPainting by Eugène Delacroix), Marie Curie (Polish-French physicist and chemist), Josephine Baker (American-born French dancer, singer and actress), Simone Veil (French politician), Sophie Adenot (French engineer, helicopter pilot, and astronaut).\n\nThomas Pesquet (French astronaut appearing on 2022 r/place canvas) proposed the idea to honor french women this year. This design created by u/Foxintoxx ensued by taking feedback from the\u0001r/PlaceFR discord adn was subsequently shared by supporters of the project until it was added to the French overlay and drawn by the community of french streamer Le Bouseuh.", "links": {"website": ["https://twitter.com/Thom_astro/status/1681949898319572993", "https://www.reddit.com/r/placeFR/comments/1552f9y/design_mise_%C3%A0_lhonneur_femme_fran%C3%A7ais/", "https://www.reddit.com/r/placeFR/comments/15526da/version_finale_pour_les_femmes_francaises/", "https://www.twitch.tv/lebouseuh/clip/NastySnappyGerbilKappaClaus-hWFLNmL3UGn2cQ6Y?filter=clips&range=7d&sort=time"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"36-258": [[-500, -8], [-368, -8], [-369, -208], [-500, -204]]}, "center": {"36-258": [-434, -107]}}, -{"id": 306, "name": "The Lurch of Us", "description": "This amphibian with an axe is the trademark of German youtuber and streamer Gronkh. It originated from his Forest let's play where he butchered amphibians with the red survival axe while screaming \"Survival!\". It now is printed onto merchandise with the phrase \"The Lurch of Us\". Gronkh.tv is his own website where his Twitch streams are uploaded.\nThis little artwork was created during his livestream on 20th July.", "links": {"website": ["https://gronkh.tv/"], "subreddit": ["Gronkh"]}, "path": {"10-22": [[275, -289], [258, -289], [258, -292], [244, -307], [241, -307], [239, -298], [239, -292], [247, -296], [242, -289], [228, -289], [221, -292], [221, -296], [231, -304], [244, -319], [246, -319], [244, -316], [244, -314], [249, -313], [253, -310], [253, -313], [249, -329], [285, -330], [285, -289]], "23-258": [[287, -330], [249, -330], [249, -321], [240, -321], [240, -311], [228, -311], [228, -301], [227, -300], [227, -299], [225, -299], [224, -298], [223, -298], [223, -297], [222, -297], [222, -296], [221, -296], [221, -295], [221, -294], [222, -294], [222, -293], [223, -293], [223, -292], [224, -291], [225, -290], [226, -289], [227, -289], [228, -289], [229, -288], [230, -287], [236, -282], [243, -288], [245, -289], [245, -282], [252, -275], [250, -272], [250, -264], [251, -259], [252, -256], [253, -255], [253, -249], [247, -244], [247, -240], [249, -240], [250, -238], [255, -238], [256, -239], [258, -243], [261, -238], [263, -238], [266, -239], [268, -242], [268, -243], [265, -246], [266, -249], [268, -255], [271, -260], [274, -263], [280, -263], [284, -261], [285, -259], [288, -261], [288, -330]]}, "center": {"10-22": [269, -305], "23-258": [264, -303]}}, -{"id": 307, "name": "Paulaner Spezi", "description": "Paulaner Spezi is a popular soft drink popular in Germany made by a mix of Cola and orange juice.", "links": {"website": ["https://en.wikipedia.org/wiki/Spezi"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"4-14": [[311, -443], [307, -443], [302, -439], [301, -402], [305, -398], [329, -398], [332, -402], [332, -438], [327, -443]], "15-258": [[326, -437], [307, -437], [302, -433], [301, -394], [304, -392], [329, -392], [332, -394], [332, -432]]}, "center": {"4-14": [317, -420], "15-258": [317, -414]}}, -{"id": 308, "name": "Marie Curie", "description": "Marie Curie, born Maria Salomea Skłodowska, (7 November 1867 – 4 July 1934) was a Polish and naturalized-French physicist and chemist who conducted pioneering research on radioactivity. She was the first woman to win a Nobel Prize, the first person to win a Nobel Prize twice, and the only person to win a Nobel Prize in two scientific fields. Her husband, Pierre Curie, was a co-winner of her first Nobel Prize, making them the first-ever married couple to win the Nobel Prize and launching the Curie family legacy of five Nobel Prizes. She was, in 1906, the first woman to become a professor at the University of Paris", "links": {"website": ["https://en.wikipedia.org/wiki/Marie_Curie", "https://i.insider.com/531e357d69bedd681cffd56c?width=500&format=jpeg&auto=webp"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"18-258": [[-448, -157], [-447, -143], [-441, -139], [-435, -129], [-428, -129], [-423, -121], [-416, -120], [-412, -122], [-411, -104], [-397, -99], [-389, -93], [-394, -92], [-396, -86], [-388, -80], [-384, -69], [-386, -65], [-377, -65], [-368, -77], [-385, -98], [-383, -102], [-369, -102], [-372, -128], [-384, -142], [-389, -142], [-384, -149], [-384, -160], [-393, -165], [-405, -165], [-409, -158], [-407, -145], [-404, -139], [-401, -138], [-428, -132], [-437, -144], [-442, -149], [-444, -159]]}, "center": {"18-258": [-392, -120]}}, +{"id": 301, "name": "Ninten", "description": "Ninten is the main protagonist of the game EarthBound Beginnings. He is a boy from the suburbs of Podunk who suffers from asthma and uses items such as baseball bats, boomerangs, and slingshots as his weapons.", "links": {"website": ["https://earthbound.fandom.com/wiki/Ninten"], "subreddit": ["earthbound"], "discord": ["earthbound"]}, "path": {"21-44": [[-191, -232], [-191, -233], [-190, -234], [-190, -235], [-191, -236], [-191, -237], [-192, -240], [-190, -244], [-189, -245], [-193, -249], [-193, -251], [-192, -255], [-189, -257], [-188, -258], [-182, -258], [-180, -256], [-178, -253], [-178, -251], [-184, -244], [-182, -244], [-180, -240], [-180, -238], [-181, -236], [-182, -234], [-181, -232]], "50-258, T": [[262, -192], [258, -187], [258, -185], [260, -185], [260, -176], [271, -176], [271, -185], [273, -185], [273, -187], [270, -192]]}, "center": {"21-44": [-186, -251], "50-258, T": [266, -184]}}, +{"id": 302, "name": "Simone Veil", "description": "Simone Veil was a French magistrate, Holocaust survivor, and politician who served as Health Minister in several governments and was President of the European Parliament from 1979 to 1982, the first woman to hold that office. As health minister, she is best remembered for advancing women's rights in France, in particular for the 1975 law that legalized abortion, today known as Veil Act", "links": {"website": ["https://en.wikipedia.org/wiki/Simone_Veil", "https://blogs.mediapart.fr/thierry-paul-valette/blog/300617/lettre-emmanuel-macron-simone-veil-au-pantheon"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"18-258, T": [[-501, -44], [-477, -57], [-478, -77], [-473, -97], [-460, -101], [-450, -99], [-442, -85], [-444, -69], [-445, -56], [-449, -53], [-449, -49], [-429, -44], [-474, -8], [-501, -9], [-500, -44]]}, "center": {"18-258, T": [-479, -32]}}, +{"id": 303, "name": "Takagi-san", "description": "The female main character of the animated series, \"Teasing Master Takagi-San\"", "links": {"subreddit": ["Takagi_san"], "discord": ["DSszkGyD"]}, "path": {"42-258, T": [[428, -367], [429, -339], [433, -325], [452, -325], [453, -329], [469, -328], [469, -338], [456, -338], [456, -352], [454, -355], [454, -362], [459, -369]]}, "center": {"42-258, T": [442, -346]}}, +{"id": 304, "name": "u/spez Functie Elders", "description": "\"Functie Elders\" or \"Function Elsewhere\" refers to a political controversy in The Netherlands. When a politician walked outside during the 2021 formation, a Photographer took a picture showing a document, on it were written the following words: \"Positie Omtzigt, Functie Elders\", or \"Position Omtzigt (politician) Function Elsewhere\". This angered a lot of people. As a parody, on the canvas r/placenl recreated it as a text bubble, with u/spez instead of Omtzigt. Showing that they don't support the new API changes, and would rather have u/spez do something else than leading Reddit.", "links": {"website": ["https://en.wikipedia.org/wiki/2021%E2%80%932022_Dutch_cabinet_formation"], "subreddit": ["placenl"], "discord": ["placenl"]}, "path": {"45-258, T": [[365, -495], [365, -489], [367, -487], [453, -487], [458, -484], [459, -484], [460, -485], [460, -486], [457, -491], [457, -495], [455, -497], [367, -497]]}, "center": {"45-258, T": [412, -492]}}, +{"id": 305, "name": "Celebrating French women", "description": "Famous/glorious french women. From top left to bottom right: Jeanne d'Arc (Joan of Arc, French folk heroine and saint), La Liberté guidant le peuple (Liberty Leading the People,\nPainting by Eugène Delacroix), Marie Curie (Polish-French physicist and chemist), Josephine Baker (American-born French dancer, singer and actress), Simone Veil (French politician), Sophie Adenot (French engineer, helicopter pilot, and astronaut).\n\nThomas Pesquet (French astronaut appearing on 2022 r/place canvas) proposed the idea to honor french women this year. This design created by u/Foxintoxx ensued by taking feedback from the\u0001r/PlaceFR discord adn was subsequently shared by supporters of the project until it was added to the French overlay and drawn by the community of french streamer Le Bouseuh.", "links": {"website": ["https://twitter.com/Thom_astro/status/1681949898319572993", "https://www.reddit.com/r/placeFR/comments/1552f9y/design_mise_%C3%A0_lhonneur_femme_fran%C3%A7ais/", "https://www.reddit.com/r/placeFR/comments/15526da/version_finale_pour_les_femmes_francaises/", "https://www.twitch.tv/lebouseuh/clip/NastySnappyGerbilKappaClaus-hWFLNmL3UGn2cQ6Y?filter=clips&range=7d&sort=time"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"36-258, T": [[-500, -8], [-368, -8], [-369, -208], [-500, -204]]}, "center": {"36-258, T": [-434, -107]}}, +{"id": 306, "name": "The Lurch of Us", "description": "This amphibian with an axe is the trademark of German youtuber and streamer Gronkh. It originated from his Forest let's play where he butchered amphibians with the red survival axe while screaming \"Survival!\". It now is printed onto merchandise with the phrase \"The Lurch of Us\". Gronkh.tv is his own website where his Twitch streams are uploaded.\nThis little artwork was created during his livestream on 20th July.", "links": {"website": ["https://gronkh.tv/"], "subreddit": ["Gronkh"]}, "path": {"10-22": [[275, -289], [258, -289], [258, -292], [244, -307], [241, -307], [239, -298], [239, -292], [247, -296], [242, -289], [228, -289], [221, -292], [221, -296], [231, -304], [244, -319], [246, -319], [244, -316], [244, -314], [249, -313], [253, -310], [253, -313], [249, -329], [285, -330], [285, -289]], "23-258, T": [[287, -330], [249, -330], [249, -321], [240, -321], [240, -311], [228, -311], [228, -301], [227, -300], [227, -299], [225, -299], [224, -298], [223, -298], [223, -297], [222, -297], [222, -296], [221, -296], [221, -295], [221, -294], [222, -294], [222, -293], [223, -293], [223, -292], [224, -291], [225, -290], [226, -289], [227, -289], [228, -289], [229, -288], [230, -287], [236, -282], [243, -288], [245, -289], [245, -282], [252, -275], [250, -272], [250, -264], [251, -259], [252, -256], [253, -255], [253, -249], [247, -244], [247, -240], [249, -240], [250, -238], [255, -238], [256, -239], [258, -243], [261, -238], [263, -238], [266, -239], [268, -242], [268, -243], [265, -246], [266, -249], [268, -255], [271, -260], [274, -263], [280, -263], [284, -261], [285, -259], [288, -261], [288, -330]]}, "center": {"10-22": [269, -305], "23-258, T": [264, -303]}}, +{"id": 307, "name": "Paulaner Spezi", "description": "Paulaner Spezi is a popular soft drink popular in Germany made by a mix of Cola and orange juice.", "links": {"website": ["https://en.wikipedia.org/wiki/Spezi"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"4-14": [[311, -443], [307, -443], [302, -439], [301, -402], [305, -398], [329, -398], [332, -402], [332, -438], [327, -443]], "15-258, T": [[326, -437], [307, -437], [302, -433], [301, -394], [304, -392], [329, -392], [332, -394], [332, -432]]}, "center": {"4-14": [317, -420], "15-258, T": [317, -414]}}, +{"id": 308, "name": "Marie Curie", "description": "Marie Curie, born Maria Salomea Skłodowska, (7 November 1867 – 4 July 1934) was a Polish and naturalized-French physicist and chemist who conducted pioneering research on radioactivity. She was the first woman to win a Nobel Prize, the first person to win a Nobel Prize twice, and the only person to win a Nobel Prize in two scientific fields. Her husband, Pierre Curie, was a co-winner of her first Nobel Prize, making them the first-ever married couple to win the Nobel Prize and launching the Curie family legacy of five Nobel Prizes. She was, in 1906, the first woman to become a professor at the University of Paris", "links": {"website": ["https://en.wikipedia.org/wiki/Marie_Curie", "https://i.insider.com/531e357d69bedd681cffd56c?width=500&format=jpeg&auto=webp"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"18-258, T": [[-448, -157], [-447, -143], [-441, -139], [-435, -129], [-428, -129], [-423, -121], [-416, -120], [-412, -122], [-411, -104], [-397, -99], [-389, -93], [-394, -92], [-396, -86], [-388, -80], [-384, -69], [-386, -65], [-377, -65], [-368, -77], [-385, -98], [-383, -102], [-369, -102], [-372, -128], [-384, -142], [-389, -142], [-384, -149], [-384, -160], [-393, -165], [-405, -165], [-409, -158], [-407, -145], [-404, -139], [-401, -138], [-428, -132], [-437, -144], [-442, -149], [-444, -159]]}, "center": {"18-258, T": [-392, -120]}}, {"id": 309, "name": "Lloyd", "description": "Lloyd is one of the main and playable characters from EarthBound Beginnings. They use guns as weapons and unlike Ninten and Ana, Lloyd cannot use PSI abilities.", "links": {"subreddit": ["EarthBound"], "discord": ["EarthBound"]}, "path": {"36-41": [[-149, -231], [-149, -235], [-145, -240], [-145, -241], [-147, -243], [-143, -247], [-142, -253], [-146, -257], [-154, -257], [-157, -255], [-158, -251], [-153, -243], [-156, -237], [-154, -234], [-155, -231]]}, "center": {"36-41": [-149, -250]}}, -{"id": 310, "name": "Sophie Adenot", "description": "Sophie Adenot is a French engineer, helicopter pilot, and astronaut. A French Air and Space Force helicopter pilot with the rank of lieutenant colonel, Adenot became France's first female helicopter test pilot in 2018. In 2022, she was chosen as a member of the European Astronaut Corps.", "links": {"website": ["https://en.wikipedia.org/wiki/Sophie_Adenot", "https://www.campusfrance.org/sites/default/files/styles/desktop_visuel_principal_page/public/medias/images/2022-12/Portrait_de_Sophie_Adenot.jpg?itok=Pwv31olK"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"18-70": [[-400, -86], [-410, -84], [-414, -76], [-410, -69], [-409, -59], [-407, -52], [-419, -43], [-432, -43], [-448, -29], [-473, -10], [-368, -9], [-368, -34], [-386, -46], [-389, -55], [-384, -72], [-387, -84], [-400, -87], [-399, -87], [-400, -87]], "71-258": [[-406, -83], [-411, -59], [-407, -49], [-412, -47], [-412, -11], [-369, -10], [-367, -35], [-388, -46], [-385, -65], [-384, -79], [-394, -86]]}, "center": {"18-70": [-400, -31], "71-258": [-394, -29]}}, +{"id": 310, "name": "Sophie Adenot", "description": "Sophie Adenot is a French engineer, helicopter pilot, and astronaut. A French Air and Space Force helicopter pilot with the rank of lieutenant colonel, Adenot became France's first female helicopter test pilot in 2018. In 2022, she was chosen as a member of the European Astronaut Corps.", "links": {"website": ["https://en.wikipedia.org/wiki/Sophie_Adenot", "https://www.campusfrance.org/sites/default/files/styles/desktop_visuel_principal_page/public/medias/images/2022-12/Portrait_de_Sophie_Adenot.jpg?itok=Pwv31olK"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"18-70": [[-400, -86], [-410, -84], [-414, -76], [-410, -69], [-409, -59], [-407, -52], [-419, -43], [-432, -43], [-448, -29], [-473, -10], [-368, -9], [-368, -34], [-386, -46], [-389, -55], [-384, -72], [-387, -84], [-400, -87], [-399, -87], [-400, -87]], "71-258, T": [[-406, -83], [-411, -59], [-407, -49], [-412, -47], [-412, -11], [-369, -10], [-367, -35], [-388, -46], [-385, -65], [-384, -79], [-394, -86]]}, "center": {"18-70": [-400, -31], "71-258, T": [-394, -29]}}, {"id": 312, "name": "Flag of Bangladesh", "description": "Bangladesh is a country in South Asia, to the East of India on the Bay of Bengal.\n\nThe art depicts the flag of Bangladesh with the Shaheed Minar (National Monument) and 1971 (its independence year).", "links": {"website": ["https://en.wikipedia.org/wiki/Bangladesh", "https://en.wikipedia.org/wiki/Flag_of_Bangladesh"], "subreddit": ["bangladesh"]}, "path": {"29": [[114, 160], [127, 160], [127, 165], [114, 165]], "32": [[106, 160], [127, 160], [127, 165], [106, 165]], "35": [[106, 150], [128, 150], [128, 165], [106, 165]], "36": [[106, 150], [141, 150], [141, 158], [142, 158], [142, 165], [106, 165]], "43": [[90, 150], [150, 150], [150, 159], [142, 159], [142, 165], [90, 165]], "44": [[90, 150], [142, 150], [142, 159], [141, 160], [141, 161], [142, 161], [142, 164], [141, 165], [90, 165]], "21-24": [[120, 160], [126, 160], [126, 165], [120, 165]], "25-26": [[118, 160], [140, 160], [140, 165], [118, 165]], "27-28": [[117, 160], [127, 160], [127, 165], [117, 165]], "30-31": [[112, 160], [127, 160], [127, 165], [112, 165]], "33-34": [[106, 150], [118, 150], [118, 160], [127, 160], [127, 165], [106, 165]], "37-42": [[90, 150], [142, 150], [142, 165], [90, 165]], "45-53": [[90, 150], [141, 150], [141, 165], [90, 165]]}, "center": {"29": [121, 163], "32": [117, 163], "35": [117, 158], "36": [124, 158], "43": [120, 158], "44": [116, 158], "21-24": [123, 163], "25-26": [129, 163], "27-28": [122, 163], "30-31": [120, 163], "33-34": [112, 156], "37-42": [116, 158], "45-53": [116, 158]}}, {"id": 313, "name": "r/Morocco", "description": "Flag of Morocco", "links": {"subreddit": ["Morocco"], "discord": ["r-morocco"]}, "path": {"42-58": [[148, 239], [125, 239], [125, 257], [148, 257]]}, "center": {"42-58": [137, 248]}}, -{"id": 315, "name": "Spez du Wappler", "description": "An Insult to Reddit CEO u/spez. Roughly translating to \"Spez you Wanker!\"", "links": {"subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"37-258": [[-360, -54], [-280, -54], [-280, -48], [-360, -48]]}, "center": {"37-258": [-320, -51]}}, -{"id": 316, "name": "Flag of Slovenia", "description": "Slovenia is a country in Central Europe that contains parts of the Alps mountain range, thick forests, historic cities, and a short coastline on the Adriatic Sea. The flag of Slovenia features the Slovene coat of arms, shaped like a shield with a blue background representing the sky. The coat of arms features three yellow stars representing the Counts of Celje, a noble dynasty that ruled over parts of present-day Slovenia in the late Middle Ages. Underneath the stars is a depiction of Mount Triglav, the highest mountain in Slovenia, and at the bottom are wavy lines depicting rivers and the sea.", "links": {"website": ["https://en.wikipedia.org/wiki/Slovenia", "https://en.wikipedia.org/wiki/Flag_of_Slovenia"], "subreddit": ["Slovenia"]}, "path": {"51-54": [[399, -120], [399, -83], [455, -83], [455, -120]], "55-66": [[399, -120], [464, -120], [464, -75], [399, -75]], "67-258": [[399, -120], [399, -68], [463, -68], [464, -118], [458, -118], [458, -119], [457, -119], [457, -120]]}, "center": {"51-54": [427, -101], "55-66": [432, -97], "67-258": [432, -94]}}, -{"id": 317, "name": "Flag of Slovakia", "description": "Slovakia is a country in Central Europe. The Slovak flag features the coat of arms of Slovakia (Slovensky statny znak), containing a silver double cross standing on three peaks resembling the Tatra, Matra, and Fatra mountains.", "links": {"website": ["https://en.wikipedia.org/wiki/Slovakia", "https://en.wikipedia.org/wiki/Flag_of_Slovakia"], "subreddit": ["Slovakia"]}, "path": {"51-57": [[339, -120], [339, -83], [399, -83], [399, -120]], "58-65": [[339, -120], [399, -120], [399, -75], [339, -75]], "66-258": [[339, -120], [339, -75], [345, -69], [399, -69], [399, -120]]}, "center": {"51-57": [369, -101], "58-65": [369, -97], "66-258": [369, -94]}}, +{"id": 315, "name": "Spez du Wappler", "description": "An Insult to Reddit CEO u/spez. Roughly translating to \"Spez you Wanker!\"", "links": {"subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"37-258, T": [[-360, -54], [-280, -54], [-280, -48], [-360, -48]]}, "center": {"37-258, T": [-320, -51]}}, +{"id": 316, "name": "Flag of Slovenia", "description": "Slovenia is a country in Central Europe that contains parts of the Alps mountain range, thick forests, historic cities, and a short coastline on the Adriatic Sea. The flag of Slovenia features the Slovene coat of arms, shaped like a shield with a blue background representing the sky. The coat of arms features three yellow stars representing the Counts of Celje, a noble dynasty that ruled over parts of present-day Slovenia in the late Middle Ages. Underneath the stars is a depiction of Mount Triglav, the highest mountain in Slovenia, and at the bottom are wavy lines depicting rivers and the sea.", "links": {"website": ["https://en.wikipedia.org/wiki/Slovenia", "https://en.wikipedia.org/wiki/Flag_of_Slovenia"], "subreddit": ["Slovenia"]}, "path": {"51-54": [[399, -120], [399, -83], [455, -83], [455, -120]], "55-66": [[399, -120], [464, -120], [464, -75], [399, -75]], "67-258, T": [[399, -120], [399, -68], [463, -68], [464, -118], [458, -118], [458, -119], [457, -119], [457, -120]]}, "center": {"51-54": [427, -101], "55-66": [432, -97], "67-258, T": [432, -94]}}, +{"id": 317, "name": "Flag of Slovakia", "description": "Slovakia is a country in Central Europe. The Slovak flag features the coat of arms of Slovakia (Slovensky statny znak), containing a silver double cross standing on three peaks resembling the Tatra, Matra, and Fatra mountains.", "links": {"website": ["https://en.wikipedia.org/wiki/Slovakia", "https://en.wikipedia.org/wiki/Flag_of_Slovakia"], "subreddit": ["Slovakia"]}, "path": {"51-57": [[339, -120], [339, -83], [399, -83], [399, -120]], "58-65": [[339, -120], [399, -120], [399, -75], [339, -75]], "66-258, T": [[339, -120], [339, -75], [345, -69], [399, -69], [399, -120]]}, "center": {"51-57": [369, -101], "58-65": [369, -97], "66-258, T": [369, -94]}}, {"id": 318, "name": "Battle for Dream Island", "description": "Battle for Dream Island (BFDI for short) is an American animated reality TV viewer-voting web series created by Michael Huang and Cary Huang, who are most known by their YouTube channel name, jacknjellify. The series is about a competition between inanimate, anthropomorphic objects. It premiered on January 1, 2010, and is currently airing its fifth season. The entire series is uploaded on YouTube, on the channel jacknjellify.", "links": {"website": ["http://www.bfdi.tv/"], "subreddit": ["BattleForDreamIsland"]}, "path": {"47-52": [[419, 69], [419, 65], [419, 51], [455, 51], [457, 53], [460, 52], [463, 53], [465, 55], [465, 56], [464, 56], [464, 57], [463, 63], [477, 63], [477, 69]], "22-46": [[423, 51], [423, 65], [419, 65], [419, 68], [416, 71], [416, 73], [419, 76], [423, 76], [423, 69], [477, 69], [477, 63], [464, 63], [464, 57], [459, 57], [459, 51]], "53-126": [[455, 51], [455, 63], [454, 63], [454, 69], [477, 69], [477, 63], [466, 63], [466, 56], [464, 51]]}, "center": {"47-52": [446, 60], "22-46": [432, 60], "53-126": [460, 63]}}, -{"id": 319, "name": "Flag of the Sámi people", "description": "Flag for the Sámi people from the region of Sápmi in the northern parts of Norway, Sweden and Finland. The remnants of a sámi girl wearing Ohcejot gákti is still visible on the blue side of the flag.", "links": {"subreddit": ["saamipeople"]}, "path": {"51-258": [[-27, -211], [-27, -251], [27, -251], [27, -211], [27, -177], [-27, -177]]}, "center": {"51-258": [0, -214]}}, -{"id": 320, "name": "r/placeAustria Discord Link", "description": "A shortened Link to the Discord Server of r/placeAustria", "links": {"subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"13-258": [[-360, -38], [-360, -45], [-286, -46], [-284, -38], [-359, -37]]}, "center": {"13-258": [-343, -41]}}, -{"id": 321, "name": "Ariane 6", "description": "Ariane 6 is a European expendable launch system under development since the early 2010s by ArianeGroup on behalf of the European Space Agency (ESA).", "links": {"website": ["https://en.wikipedia.org/wiki/Ariane_6"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"15-258": [[-446, 411], [-446, 384], [-440, 372], [-441, 317], [-438, 297], [-431, 297], [-426, 315], [-428, 373], [-421, 384], [-421, 420], [-446, 419]]}, "center": {"15-258": [-434, 387]}}, -{"id": 322, "name": "Doctor Who 60th Anniversary Area", "description": "This small area depicts a TARDIS, surrounded by a multicoloured scarf (belonging to the fourth doctor), a sonic screwdriver (belonging to the eleventh and twelfth doctors) and the number 60 (due to the fact that 2023 marks the 60th anniversary of the first Doctor Who episode broadcast on 23/11/63). Unrelated to Doctor Who, but related to the team behind this area, there is a small Python logo and two purple hearts. While the purple hearts themselves are unrelated to Doctor Who, the number of them represents the two hearts that The Doctor (and all Time Lords) have.", "links": {"subreddit": ["DoctorWhumour", "TARDISplace"], "discord": ["ZWYTA6TEUs"]}, "path": {"250-258": [[261, -161], [276, -161], [276, -143], [261, -143]]}, "center": {"250-258": [269, -152]}}, -{"id": 324, "name": "Shinkansen", "description": "The Shinkansen is a high-speed railway system in Japan.\n\nThis art was created by fans of Jet Lag: The Game to commemorate the sixth season of the show set in Japan. In it, contestants made heavy use of the Shinkansen train network to traverse Tokyo and the entire country to play a game of capture the flag.", "links": {"website": ["https://www.youtube.com/@jetlagthegame", "https://nebula.tv/jetlag"], "subreddit": ["JetLagTheGame"], "discord": ["jetlag"]}, "path": {"51-56": [[253, -176], [253, -179], [286, -188], [334, -188], [334, -176], [299, -176], [291, -181], [288, -181], [279, -176]], "121-258": [[-903, 5], [-904, 5], [-962, 5], [-962, 4], [-985, 4], [-985, 3], [-983, 3], [-983, 2], [-981, 2], [-981, 1], [-979, 1], [-979, 0], [-971, 0], [-971, -1], [-969, -1], [-969, -2], [-967, -2], [-967, -3], [-964, -3], [-964, -4], [-962, -4], [-962, -6], [-893, -6]]}, "center": {"51-56": [307, -182], "121-258": [-935, 0]}}, -{"id": 325, "name": "Fietspad Sign", "description": "A sign signifying a dedicated cycle track. A compulsory cycle track can be recognized by a blue round sign with a white bicycle. There are also rectangular blue signs that have the word 'Fietspad' printed on them, like the one depicted here. They indicate the presence of a cycling track that is not mandatory.", "links": {"subreddit": ["PlaceNL"]}, "path": {"45-53": [[284, -498], [281, -495], [281, -486], [284, -483], [319, -483], [322, -486], [322, -495], [319, -498]], "54-258": [[277, -498], [274, -495], [274, -486], [277, -483], [312, -483], [315, -486], [315, -495], [312, -498]]}, "center": {"45-53": [302, -490], "54-258": [295, -490]}}, -{"id": 326, "name": "GP Explorer", "description": "The GP Explorer (aka Grand Prix Explorer) is a Formula 4 car competition between french youtubers, streamers and influencers, organized by the french YouTuber Squeezie, which is the biggest french Youtuber with over 18M subscribers.\n\nStarting from a donation milestone at Z Event 2020, the project came to fruition through the help of the Circuit Bugatti, the Automobile Club de l'Ouest (ACO), and the French Federation of Automobile Sports (FFSA) to help train these newcomers to drive racecars.\n\nThe first edition was held on October 8, 2022 at the Circuit Bugatti in Le Mans. Broadcasted live on Twitch, it reached a peak of over one million viewers - a first for a french speaking livestream on the internet and the all-time record for french streamers at the time.\n\nThe GP Explorer will host a second edition, taking place again on the Circuit Bugatti on September 9, 2023.\n\nThis art shows the logo of the GP Explorer, the layout of the track, the logos of the 12 racing teams taking part in 2023, and a small hall of fame (which was taken over) before showing \"Le Mans\" during the final day.", "links": {"website": ["https://en.wikipedia.org/wiki/GP_Explorer", "https://fr.wikipedia.org/wiki/GP_Explorer", "https://gp-explorer.fr/"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"16-60": [[-470, 74], [-470, 24], [-468, 15], [-462, 7], [-457, 4], [-453, 2], [-435, 2], [-434, 2], [-431, 2], [-429, 0], [-426, 0], [-424, 1], [-421, 4], [-418, 2], [-415, 0], [-413, 0], [-411, 2], [-409, 5], [-407, 2], [-404, 1], [-399, 2], [-397, 5], [-399, 8], [-402, 10], [-398, 14], [-399, 18], [-401, 20], [-402, 21], [-399, 25], [-398, 26], [-400, 30], [-400, 32], [-396, 32], [-396, 75], [-470, 75]], "61-258": [[-470, 10], [-396, 10], [-396, 86], [-470, 87]]}, "center": {"16-60": [-434, 40], "61-258": [-433, 49]}}, -{"id": 327, "name": "ORF", "description": "ORF, short for \"Österreichischer Rundfunk\" (Austrian Broadcasting), is the Austrian national broadcaster.", "links": {"website": ["https://en.wikipedia.org/wiki/ORF_(broadcaster)"], "subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"39-258": [[-245, -54], [-246, -53], [-246, -49], [-245, -48], [-244, -47], [-243, -47], [-235, -47], [-234, -48], [-234, -50], [-233, -50], [-232, -51], [-231, -54], [-232, -55], [-244, -55]]}, "center": {"39-258": [-238, -51]}}, -{"id": 328, "name": "Flag of Ireland", "description": "The Republic of Ireland is a country in northwestern Europe. It consists of most of the island of Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"51-54": [[339, -83], [279, -83], [279, -156], [339, -156]], "55-258": [[279, -193], [279, -75], [339, -75], [339, -193]]}, "center": {"51-54": [309, -119], "55-258": [309, -134]}}, -{"id": 329, "name": "Austrian-Shaped Wiener Schitzel", "description": "A Schnitzel in the shape of Austria.", "links": {"subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"18-258": [[-225, -41], [-225, -37], [-224, -36], [-223, -35], [-222, -34], [-221, -34], [-220, -33], [-218, -33], [-217, -32], [-209, -32], [-208, -31], [-198, -31], [-197, -32], [-196, -33], [-195, -34], [-193, -34], [-192, -35], [-191, -36], [-190, -37], [-190, -46], [-192, -48], [-193, -48], [-194, -49], [-195, -49], [-196, -50], [-198, -50], [-199, -51], [-200, -51], [-203, -49], [-207, -49], [-209, -47], [-209, -46], [-210, -45], [-210, -42], [-212, -42], [-213, -40], [-213, -41], [-215, -41], [-216, -42], [-217, -42], [-218, -43], [-219, -44], [-221, -44]]}, "center": {"18-258": [-202, -40]}}, -{"id": 330, "name": "1337 Coding School", "description": "1337 Coding School is the first school to provide IT training in Morocco completely free of charge, open and accessible to anyone between the ages of 18 and 30. The school does not require an IT degree or extensive IT training for admission.", "links": {"website": ["https://1337.ma"], "subreddit": ["Morocco"], "discord": ["r-morocco"]}, "path": {"43-45": [[436, 37], [362, 67], [358, 122], [434, 82], [434, 37], [361, 70], [357, 69], [357, 122], [356, 134], [356, 142], [323, 158], [324, 163], [313, 169], [313, 202], [397, 203], [406, 194], [399, 191], [400, 185], [396, 183], [394, 181], [393, 149], [367, 136], [360, 140], [361, 118]], "46-56": [[434, -40], [367, -7], [360, -4], [360, -6], [358, -5], [357, 70], [324, 85], [324, 90], [314, 95], [314, 131], [354, 151], [408, 123], [400, 119], [402, 116], [404, 113], [400, 111], [396, 112], [395, 116], [394, 115], [394, 109], [393, 75], [367, 63], [360, 67], [360, 46], [434, 9]], "57-101": [[429, -46], [355, -9], [351, -9], [351, 65], [319, 80], [318, 85], [308, 90], [308, 127], [348, 146], [402, 118], [396, 115], [396, 114], [399, 111], [399, 109], [395, 105], [393, 105], [389, 109], [389, 105], [390, 104], [390, 78], [389, 77], [389, 70], [364, 59], [362, 59], [355, 63], [355, 42], [429, 4]], "102-258": [[429, -46], [355, -9], [351, -9], [351, 65], [319, 80], [318, 85], [308, 90], [308, 127], [348, 146], [363, 138], [363, 129], [381, 129], [402, 118], [396, 115], [399, 111], [399, 109], [395, 105], [393, 105], [390, 108], [390, 77], [389, 77], [389, 71], [365, 58], [362, 58], [356, 61], [356, 41], [429, 5]]}, "center": {"43-45": [363, 172], "46-56": [355, 110], "57-101": [348, 106], "102-258": [357, 97]}}, -{"id": 331, "name": "Demilitarized zone", "description": "This \"demilitarized zone\" (DMZ) is an international zone originally created by mistake from the German community by making the yellow stripe from the German flag too big. It is now shared by several countries.", "links": {"website": ["https://en.wikipedia.org/wiki/Demilitarized_zone"]}, "path": {"3-54": [[-500, -390], [499, -390], [499, -370], [-500, -370]], "55-86": [[999, -390], [999, -368], [-500, -368], [-500, -390]], "87-170": [[-1001, -390], [-1001, -368], [1000, -368], [1000, -390]], "171-201": [[-1500, -390], [-1500, -368], [999, -368], [999, -390]], "202-258": [[-1500, -390], [-1500, -368], [1203, -368], [1203, -390]]}, "center": {"3-54": [0, -380], "55-86": [250, -379], "87-170": [0, -379], "171-201": [-250, -379], "202-258": [-148, -379]}}, -{"id": 332, "name": "Catalan independence flag", "description": "Catalonia is an autonomous community in Spain. This flag represents the Catalan independence movement, advocating for Catalonia's independence from Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Catalan_independence_movement", "https://en.wikipedia.org/wiki/Catalonia"], "subreddit": ["catalunya"]}, "path": {"46-258": [[424, 129], [424, 204], [452, 204], [452, 129], [452, 124], [424, 124]]}, "center": {"46-258": [438, 164]}}, -{"id": 333, "name": "Mercadona", "description": "Mercadona is a Spanish supermarket chain founded in 1977. It also has a few stores in Portugal.", "links": {"website": ["https://en.wikipedia.org/wiki/Mercadona"], "subreddit": ["esPlace", "spain"]}, "path": {"56-74": [[403, -51], [403, -52], [405, -52], [410, -57], [410, -64], [406, -69], [404, -69], [404, -70], [403, -71], [397, -71], [396, -70], [395, -70], [394, -69], [393, -69], [390, -66], [390, -64], [389, -64], [389, -57], [394, -52], [395, -52], [396, -51]], "98-258": [[201, -71], [196, -68], [192, -63], [192, -56], [195, -51], [201, -47], [208, -47], [212, -50], [216, -56], [216, -63], [212, -68], [207, -71]]}, "center": {"56-74": [399, -61], "98-258": [204, -59]}}, +{"id": 319, "name": "Flag of the Sámi people", "description": "Flag for the Sámi people from the region of Sápmi in the northern parts of Norway, Sweden and Finland. The remnants of a sámi girl wearing Ohcejot gákti is still visible on the blue side of the flag.", "links": {"subreddit": ["saamipeople"]}, "path": {"51-258, T": [[-27, -211], [-27, -251], [27, -251], [27, -211], [27, -177], [-27, -177]]}, "center": {"51-258, T": [0, -214]}}, +{"id": 320, "name": "r/placeAustria Discord Link", "description": "A shortened Link to the Discord Server of r/placeAustria", "links": {"subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"13-258, T": [[-360, -38], [-360, -45], [-286, -46], [-284, -38], [-359, -37]]}, "center": {"13-258, T": [-343, -41]}}, +{"id": 321, "name": "Ariane 6", "description": "Ariane 6 is a European expendable launch system under development since the early 2010s by ArianeGroup on behalf of the European Space Agency (ESA).", "links": {"website": ["https://en.wikipedia.org/wiki/Ariane_6"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"15-258, T": [[-446, 411], [-446, 384], [-440, 372], [-441, 317], [-438, 297], [-431, 297], [-426, 315], [-428, 373], [-421, 384], [-421, 420], [-446, 419]]}, "center": {"15-258, T": [-434, 387]}}, +{"id": 322, "name": "Doctor Who 60th Anniversary Area", "description": "This small area depicts a TARDIS, surrounded by a multicoloured scarf (belonging to the fourth doctor), a sonic screwdriver (belonging to the eleventh and twelfth doctors) and the number 60 (due to the fact that 2023 marks the 60th anniversary of the first Doctor Who episode broadcast on 23/11/63). Unrelated to Doctor Who, but related to the team behind this area, there is a small Python logo and two purple hearts. While the purple hearts themselves are unrelated to Doctor Who, the number of them represents the two hearts that The Doctor (and all Time Lords) have.", "links": {"subreddit": ["DoctorWhumour", "TARDISplace"], "discord": ["ZWYTA6TEUs"]}, "path": {"250-258, T": [[261, -161], [276, -161], [276, -143], [261, -143]]}, "center": {"250-258, T": [269, -152]}}, +{"id": 324, "name": "Shinkansen", "description": "The Shinkansen is a high-speed railway system in Japan.\n\nThis art was created by fans of Jet Lag: The Game to commemorate the sixth season of the show set in Japan. In it, contestants made heavy use of the Shinkansen train network to traverse Tokyo and the entire country to play a game of capture the flag.", "links": {"website": ["https://www.youtube.com/@jetlagthegame", "https://nebula.tv/jetlag"], "subreddit": ["JetLagTheGame"], "discord": ["jetlag"]}, "path": {"51-56": [[253, -176], [253, -179], [286, -188], [334, -188], [334, -176], [299, -176], [291, -181], [288, -181], [279, -176]], "121-258, T": [[-903, 5], [-904, 5], [-962, 5], [-962, 4], [-985, 4], [-985, 3], [-983, 3], [-983, 2], [-981, 2], [-981, 1], [-979, 1], [-979, 0], [-971, 0], [-971, -1], [-969, -1], [-969, -2], [-967, -2], [-967, -3], [-964, -3], [-964, -4], [-962, -4], [-962, -6], [-893, -6]]}, "center": {"51-56": [307, -182], "121-258, T": [-935, 0]}}, +{"id": 325, "name": "Fietspad Sign", "description": "A sign signifying a dedicated cycle track. A compulsory cycle track can be recognized by a blue round sign with a white bicycle. There are also rectangular blue signs that have the word 'Fietspad' printed on them, like the one depicted here. They indicate the presence of a cycling track that is not mandatory.", "links": {"subreddit": ["PlaceNL"]}, "path": {"45-53": [[284, -498], [281, -495], [281, -486], [284, -483], [319, -483], [322, -486], [322, -495], [319, -498]], "54-258, T": [[277, -498], [274, -495], [274, -486], [277, -483], [312, -483], [315, -486], [315, -495], [312, -498]]}, "center": {"45-53": [302, -490], "54-258, T": [295, -490]}}, +{"id": 326, "name": "GP Explorer", "description": "The GP Explorer (aka Grand Prix Explorer) is a Formula 4 car competition between french youtubers, streamers and influencers, organized by the french YouTuber Squeezie, which is the biggest french Youtuber with over 18M subscribers.\n\nStarting from a donation milestone at Z Event 2020, the project came to fruition through the help of the Circuit Bugatti, the Automobile Club de l'Ouest (ACO), and the French Federation of Automobile Sports (FFSA) to help train these newcomers to drive racecars.\n\nThe first edition was held on October 8, 2022 at the Circuit Bugatti in Le Mans. Broadcasted live on Twitch, it reached a peak of over one million viewers - a first for a french speaking livestream on the internet and the all-time record for french streamers at the time.\n\nThe GP Explorer will host a second edition, taking place again on the Circuit Bugatti on September 9, 2023.\n\nThis art shows the logo of the GP Explorer, the layout of the track, the logos of the 12 racing teams taking part in 2023, and a small hall of fame (which was taken over) before showing \"Le Mans\" during the final day.", "links": {"website": ["https://en.wikipedia.org/wiki/GP_Explorer", "https://fr.wikipedia.org/wiki/GP_Explorer", "https://gp-explorer.fr/"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"16-60": [[-470, 74], [-470, 24], [-468, 15], [-462, 7], [-457, 4], [-453, 2], [-435, 2], [-434, 2], [-431, 2], [-429, 0], [-426, 0], [-424, 1], [-421, 4], [-418, 2], [-415, 0], [-413, 0], [-411, 2], [-409, 5], [-407, 2], [-404, 1], [-399, 2], [-397, 5], [-399, 8], [-402, 10], [-398, 14], [-399, 18], [-401, 20], [-402, 21], [-399, 25], [-398, 26], [-400, 30], [-400, 32], [-396, 32], [-396, 75], [-470, 75]], "61-258, T": [[-470, 10], [-396, 10], [-396, 86], [-470, 87]]}, "center": {"16-60": [-434, 40], "61-258, T": [-433, 49]}}, +{"id": 327, "name": "ORF", "description": "ORF, short for \"Österreichischer Rundfunk\" (Austrian Broadcasting), is the Austrian national broadcaster.", "links": {"website": ["https://en.wikipedia.org/wiki/ORF_(broadcaster)"], "subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"39-258, T": [[-245, -54], [-246, -53], [-246, -49], [-245, -48], [-244, -47], [-243, -47], [-235, -47], [-234, -48], [-234, -50], [-233, -50], [-232, -51], [-231, -54], [-232, -55], [-244, -55]]}, "center": {"39-258, T": [-238, -51]}}, +{"id": 328, "name": "Flag of Ireland", "description": "The Republic of Ireland is a country in northwestern Europe. It consists of most of the island of Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"51-54": [[339, -83], [279, -83], [279, -156], [339, -156]], "55-258, T": [[279, -193], [279, -75], [339, -75], [339, -193]]}, "center": {"51-54": [309, -119], "55-258, T": [309, -134]}}, +{"id": 329, "name": "Austrian-Shaped Wiener Schitzel", "description": "A Schnitzel in the shape of Austria.", "links": {"subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"18-258, T": [[-225, -41], [-225, -37], [-224, -36], [-223, -35], [-222, -34], [-221, -34], [-220, -33], [-218, -33], [-217, -32], [-209, -32], [-208, -31], [-198, -31], [-197, -32], [-196, -33], [-195, -34], [-193, -34], [-192, -35], [-191, -36], [-190, -37], [-190, -46], [-192, -48], [-193, -48], [-194, -49], [-195, -49], [-196, -50], [-198, -50], [-199, -51], [-200, -51], [-203, -49], [-207, -49], [-209, -47], [-209, -46], [-210, -45], [-210, -42], [-212, -42], [-213, -40], [-213, -41], [-215, -41], [-216, -42], [-217, -42], [-218, -43], [-219, -44], [-221, -44]]}, "center": {"18-258, T": [-202, -40]}}, +{"id": 330, "name": "1337 Coding School", "description": "1337 Coding School is the first school to provide IT training in Morocco completely free of charge, open and accessible to anyone between the ages of 18 and 30. The school does not require an IT degree or extensive IT training for admission.", "links": {"website": ["https://1337.ma"], "subreddit": ["Morocco"], "discord": ["r-morocco"]}, "path": {"43-45": [[436, 37], [362, 67], [358, 122], [434, 82], [434, 37], [361, 70], [357, 69], [357, 122], [356, 134], [356, 142], [323, 158], [324, 163], [313, 169], [313, 202], [397, 203], [406, 194], [399, 191], [400, 185], [396, 183], [394, 181], [393, 149], [367, 136], [360, 140], [361, 118]], "46-56": [[434, -40], [367, -7], [360, -4], [360, -6], [358, -5], [357, 70], [324, 85], [324, 90], [314, 95], [314, 131], [354, 151], [408, 123], [400, 119], [402, 116], [404, 113], [400, 111], [396, 112], [395, 116], [394, 115], [394, 109], [393, 75], [367, 63], [360, 67], [360, 46], [434, 9]], "57-101": [[429, -46], [355, -9], [351, -9], [351, 65], [319, 80], [318, 85], [308, 90], [308, 127], [348, 146], [402, 118], [396, 115], [396, 114], [399, 111], [399, 109], [395, 105], [393, 105], [389, 109], [389, 105], [390, 104], [390, 78], [389, 77], [389, 70], [364, 59], [362, 59], [355, 63], [355, 42], [429, 4]], "102-258, T": [[429, -46], [355, -9], [351, -9], [351, 65], [319, 80], [318, 85], [308, 90], [308, 127], [348, 146], [363, 138], [363, 129], [381, 129], [402, 118], [396, 115], [399, 111], [399, 109], [395, 105], [393, 105], [390, 108], [390, 77], [389, 77], [389, 71], [365, 58], [362, 58], [356, 61], [356, 41], [429, 5]]}, "center": {"43-45": [363, 172], "46-56": [355, 110], "57-101": [348, 106], "102-258, T": [357, 97]}}, +{"id": 331, "name": "Demilitarized zone", "description": "This \"demilitarized zone\" (DMZ) is an international zone originally created by mistake from the German community by making the yellow stripe from the German flag too big. It is now shared by several countries.", "links": {"website": ["https://en.wikipedia.org/wiki/Demilitarized_zone"]}, "path": {"3-54": [[-500, -390], [499, -390], [499, -370], [-500, -370]], "55-86": [[999, -390], [999, -368], [-500, -368], [-500, -390]], "87-170": [[-1001, -390], [-1001, -368], [1000, -368], [1000, -390]], "171-201": [[-1500, -390], [-1500, -368], [999, -368], [999, -390]], "202-258, T": [[-1500, -390], [-1500, -368], [1203, -368], [1203, -390]]}, "center": {"3-54": [0, -380], "55-86": [250, -379], "87-170": [0, -379], "171-201": [-250, -379], "202-258, T": [-148, -379]}}, +{"id": 332, "name": "Catalan independence flag", "description": "Catalonia is an autonomous community in Spain. This flag represents the Catalan independence movement, advocating for Catalonia's independence from Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Catalan_independence_movement", "https://en.wikipedia.org/wiki/Catalonia"], "subreddit": ["catalunya"]}, "path": {"46-258, T": [[424, 129], [424, 204], [452, 204], [452, 129], [452, 124], [424, 124]]}, "center": {"46-258, T": [438, 164]}}, +{"id": 333, "name": "Mercadona", "description": "Mercadona is a Spanish supermarket chain founded in 1977. It also has a few stores in Portugal.", "links": {"website": ["https://en.wikipedia.org/wiki/Mercadona"], "subreddit": ["esPlace", "spain"]}, "path": {"56-74": [[403, -51], [403, -52], [405, -52], [410, -57], [410, -64], [406, -69], [404, -69], [404, -70], [403, -71], [397, -71], [396, -70], [395, -70], [394, -69], [393, -69], [390, -66], [390, -64], [389, -64], [389, -57], [394, -52], [395, -52], [396, -51]], "98-258, T": [[201, -71], [196, -68], [192, -63], [192, -56], [195, -51], [201, -47], [208, -47], [212, -50], [216, -56], [216, -63], [212, -68], [207, -71]]}, "center": {"56-74": [399, -61], "98-258, T": [204, -59]}}, {"id": 334, "name": "The GC™", "description": "A friend group full of kind hearted people, the group chat is already 1.5 years old(as of 21/07/2023) and still going strong", "links": {}, "path": {"46": [[459, 108], [459, 115], [478, 115], [478, 108]]}, "center": {"46": [469, 112]}}, {"id": 335, "name": "Gök Türk Flag", "description": "Eren in yaptığı Gök Türk bayrağı\nThe sky that Eren made is the Turkish flag", "links": {"website": ["https://www.youtube.com/@Erenn"], "discord": ["erenn"]}, "path": {"59-62": [[617, 264], [735, 264], [735, 360], [617, 360]]}, "center": {"59-62": [676, 312]}}, {"id": 336, "name": "They Might Be Giants", "description": "They Might Be Giants is an American alternative rock band held by two friends with the same first name, John Flansburgh and John Linnell. This area features the heads of the pixelated Scientist Johns.", "links": {"website": ["http://www.theymightbegiants.com/", "https://en.wikipedia.org/wiki/They_Might_Be_Giants"], "subreddit": ["tmbg"]}, "path": {"58-63": [[875, 221], [875, 234], [884, 234], [884, 221]]}, "center": {"58-63": [880, 228]}}, -{"id": 337, "name": "Blåhaj", "description": "Blåhaj is a stuffed plush from IKEA which resembles a Great Blue Shark. In recent years, this plush has become a transgender icon, due to it and the transgender pride flag sharing the same color scheme (pastel blue, pastel pink and white).", "links": {"website": ["https://en.wikipedia.org/wiki/Bl%C3%A5haj", "https://knowyourmeme.com/memes/subcultures/ikea-blahaj-shark"], "subreddit": ["BLAHAJ", "transplace"], "discord": ["TransPlace"]}, "path": {"60-258": [[162, 62], [162, 65], [161, 66], [161, 67], [160, 68], [161, 69], [161, 74], [160, 75], [159, 74], [158, 74], [154, 70], [142, 70], [141, 69], [140, 69], [137, 66], [132, 66], [131, 65], [131, 64], [132, 63], [133, 62], [134, 62], [134, 61], [133, 60], [133, 53], [137, 49], [144, 49], [142, 49], [142, 45], [144, 43], [144, 41], [147, 41], [148, 42], [150, 42], [151, 43], [151, 45], [153, 47], [149, 51], [146, 51], [148, 53], [151, 53], [152, 54], [153, 54], [156, 58], [155, 59], [150, 59], [150, 62], [151, 62], [152, 63], [153, 63], [154, 64], [155, 64], [156, 63], [157, 63], [157, 62], [158, 61], [159, 60], [161, 60], [162, 61], [162, 65]]}, "center": {"60-258": [142, 58]}}, -{"id": 338, "name": "Hagelslag", "description": "This is \"Hagelslag\" very well known in the netherlands as a topping for bread with butter. It is a package with small chocolate pieces that stick to the butter when you \"strooi\" it over the bread.", "links": {"subreddit": ["thenetherlands"]}, "path": {"57-258": [[651, -500], [681, -500], [682, -450], [651, -450]]}, "center": {"57-258": [666, -475]}}, -{"id": 339, "name": "Capitan Gato", "description": "Capitan Gato es un YouTuber de nacionalidad peruana", "links": {}, "path": {"61-258": [[78, 27], [87, 27], [87, 19], [78, 18]]}, "center": {"61-258": [82, 23]}}, -{"id": 341, "name": "Rest in Peace Miura Memorial", "description": "Kentaro Miura, the Mangaka responsible for the manga/anime \"Berserk\" tragically passed away on the 6th of May, 2021. \n\nHis impact on the media landscape is so far reaching that it'd be easier to list the things that weren't inspired by him. \n\nHis death sent shockwaves through various communities and to this day his passing is mourned by many.\n\nHis manga \"Berserk\" will be completed by his best friend Kouji Mori, we all wish him the best in this endeavor.\n\nRest in Peace, Kentaro Miura 1966 - 2021\n\n\"That, too, will soon disappear... with a single tear like morning dew\" - Griffith, Berserk Volume 41 \"Teardrop of Morning Dew\"", "links": {"website": ["https://en.wikipedia.org/wiki/Kentaro_Miura"], "subreddit": ["Berserk"], "discord": ["5Yr3UEYXRZ"]}, "path": {"21-54": [[455, -120], [499, -120], [499, -72], [455, -72]], "55-258": [[464, -120], [554, -120], [554, -72], [464, -72]]}, "center": {"21-54": [477, -96], "55-258": [509, -96]}}, +{"id": 337, "name": "Blåhaj", "description": "Blåhaj is a stuffed plush from IKEA which resembles a Great Blue Shark. In recent years, this plush has become a transgender icon, due to it and the transgender pride flag sharing the same color scheme (pastel blue, pastel pink and white).", "links": {"website": ["https://en.wikipedia.org/wiki/Bl%C3%A5haj", "https://knowyourmeme.com/memes/subcultures/ikea-blahaj-shark"], "subreddit": ["BLAHAJ", "transplace"], "discord": ["TransPlace"]}, "path": {"60-258, T": [[162, 62], [162, 65], [161, 66], [161, 67], [160, 68], [161, 69], [161, 74], [160, 75], [159, 74], [158, 74], [154, 70], [142, 70], [141, 69], [140, 69], [137, 66], [132, 66], [131, 65], [131, 64], [132, 63], [133, 62], [134, 62], [134, 61], [133, 60], [133, 53], [137, 49], [144, 49], [142, 49], [142, 45], [144, 43], [144, 41], [147, 41], [148, 42], [150, 42], [151, 43], [151, 45], [153, 47], [149, 51], [146, 51], [148, 53], [151, 53], [152, 54], [153, 54], [156, 58], [155, 59], [150, 59], [150, 62], [151, 62], [152, 63], [153, 63], [154, 64], [155, 64], [156, 63], [157, 63], [157, 62], [158, 61], [159, 60], [161, 60], [162, 61], [162, 65]]}, "center": {"60-258, T": [142, 58]}}, +{"id": 338, "name": "Hagelslag", "description": "This is \"Hagelslag\" very well known in the netherlands as a topping for bread with butter. It is a package with small chocolate pieces that stick to the butter when you \"strooi\" it over the bread.", "links": {"subreddit": ["thenetherlands"]}, "path": {"57-258, T": [[651, -500], [681, -500], [682, -450], [651, -450]]}, "center": {"57-258, T": [666, -475]}}, +{"id": 339, "name": "Capitan Gato", "description": "Capitan Gato es un YouTuber de nacionalidad peruana", "links": {}, "path": {"61-258, T": [[78, 27], [87, 27], [87, 19], [78, 18]]}, "center": {"61-258, T": [82, 23]}}, +{"id": 341, "name": "Rest in Peace Miura Memorial", "description": "Kentaro Miura, the Mangaka responsible for the manga/anime \"Berserk\" tragically passed away on the 6th of May, 2021. \n\nHis impact on the media landscape is so far reaching that it'd be easier to list the things that weren't inspired by him. \n\nHis death sent shockwaves through various communities and to this day his passing is mourned by many.\n\nHis manga \"Berserk\" will be completed by his best friend Kouji Mori, we all wish him the best in this endeavor.\n\nRest in Peace, Kentaro Miura 1966 - 2021\n\n\"That, too, will soon disappear... with a single tear like morning dew\" - Griffith, Berserk Volume 41 \"Teardrop of Morning Dew\"", "links": {"website": ["https://en.wikipedia.org/wiki/Kentaro_Miura"], "subreddit": ["Berserk"], "discord": ["5Yr3UEYXRZ"]}, "path": {"21-54": [[455, -120], [499, -120], [499, -72], [455, -72]], "55-258, T": [[464, -120], [554, -120], [554, -72], [464, -72]]}, "center": {"21-54": [477, -96], "55-258, T": [509, -96]}}, {"id": 342, "name": "Baren", "description": "Baren is the protagonist of the video game, Super Bear Adventure.\nHe starts an adventure with Shika (A backpacker) to stop his brother, who controlled Queen Beatrice.\nHe ventures into hundreds of places to save the town from the bears.", "links": {"subreddit": ["superbear"]}, "path": {"61-64": [[-89, 203], [-72, 203], [-72, 190], [-69, 190], [-69, 183], [-76, 182], [-76, 186], [-85, 186], [-85, 183], [-92, 183], [-92, 190], [-89, 190]]}, "center": {"61-64": [-81, 195]}}, {"id": 343, "name": "Hatsune Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.", "links": {"website": ["https://ec.crypton.co.jp/pages/prod/virtualsinger/cv01_us", "https://en.wikipedia.org/wiki/Hatsune_Miku"], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"61-62": [[227, 139], [239, 177], [202, 192], [200, 142], [212, 141], [222, 141], [225, 140], [228, 144], [230, 148], [231, 152], [232, 157], [234, 164], [236, 171], [239, 177], [236, 191], [203, 192], [186, 142], [191, 142], [191, 143]]}, "center": {"61-62": [194, 149]}}, {"id": 344, "name": "Brawl Stars", "description": "Brawl Stars is a mobile multiplayer game made by the Finnish video game company Supercell.", "links": {"website": ["https://supercell.com/en/games/brawlstars/"], "subreddit": ["Brawlstars", "Suomi", "nordics", "place_nordicunion"]}, "path": {"61-142": [[122, -309], [128, -309], [128, -310], [129, -311], [130, -311], [131, -312], [136, -312], [135, -313], [135, -314], [134, -315], [134, -316], [134, -317], [133, -318], [133, -320], [134, -321], [134, -323], [135, -324], [135, -326], [136, -326], [136, -327], [137, -328], [137, -330], [136, -330], [136, -331], [135, -332], [136, -333], [135, -334], [134, -333], [133, -334], [132, -333], [133, -332], [132, -331], [132, -330], [131, -329], [131, -328], [132, -327], [131, -326], [130, -327], [129, -327], [128, -328], [125, -331], [121, -327], [120, -327], [119, -326], [114, -326], [115, -325], [115, -324], [116, -323], [116, -321], [117, -320], [117, -318], [116, -317], [116, -315], [115, -314], [115, -313], [114, -312], [119, -312], [120, -311], [121, -311], [122, -310]]}, "center": {"61-142": [125, -320]}}, -{"id": 345, "name": "Pedrodbr", "description": "Pedrodbr is a Streamer and Youtuber, the HOLDERS of Brazil and the King of the GIRINOS", "links": {"website": ["https://www.youtube.com/@ThePedrodbr000", "https://www.twitch.tv/pedrodbr"], "subreddit": ["PedroDBR"], "discord": ["Pedrodbr"]}, "path": {"9-54": [[446, 361], [499, 361], [499, 414], [446, 414]], "183-258": [[446, 361], [446, 414], [501, 413], [501, 361]]}, "center": {"9-54": [473, 388], "183-258": [473, 387]}}, -{"id": 346, "name": "CS:GO ranked badges", "description": "These symbols each represent the ranks one can achieve after playing competitive games in CS:GO. Lowest being \"silver 1\" highest rank being \"Global Elite\"", "links": {"subreddit": ["csgo"]}, "path": {"55-258": [[501, 361], [600, 361], [600, 439], [501, 439]]}, "center": {"55-258": [551, 400]}}, -{"id": 347, "name": "Foxhole", "description": "Foxhole is a cooperative sandbox massively-multiplayer action-strategy video game developed and published by Canadian video game company Siege Camp, who are based in Toronto, Ontario. The game uses Unreal Engine 4, utilizing an axonometric projection perspective, much like that of a conventional real-time strategy video game with a top-down view. Foxhole's setting is \"inspired by early 20th century warfare\".\n\nThis area was repeatedly attacked by Lithuanian streamer LTURepublic, who managed to take over shortly before the end. The Foxhole community managed to leave an 'F' within the true final canvas at their former location.", "links": {"website": ["https://www.foxholegame.com/", "https://en.wikipedia.org/wiki/Foxhole_(video_game)"], "subreddit": ["foxholegame"], "discord": ["foxhole"]}, "path": {"3-19": [[309, 265], [309, 334], [372, 334], [372, 265]], "171-185, 216-233, 53-155": [[-79, -26], [-79, 61], [-141, 61], [-141, -26]], "250-258": [[-140, -25], [-140, -15], [-138, -15], [-136, -19], [-133, -19], [-133, -21], [-135, -21], [-135, -25]]}, "center": {"3-19": [341, 300], "171-185, 216-233, 53-155": [-110, 18], "250-258": [-138, -21]}}, -{"id": 348, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"61-112": [[884, 499], [944, 499], [945, 444], [999, 444], [999, -368], [886, -368]], "113-200": [[886, -367], [885, -14], [887, 131], [997, 128], [997, -75], [997, -365], [886, -369]], "202-258": [[886, -368], [887, 127], [1015, 128], [1015, 100], [1031, 100], [1017, 82], [1012, 58], [1017, 18], [1036, -4], [1057, -11], [1080, -10], [1108, -6], [1131, 8], [1135, 22], [1208, 22], [1207, -10], [1152, -9], [1130, -19], [1122, -32], [1116, -55], [1118, -80], [1113, -84], [1108, -83], [1108, -14], [1036, -12], [1035, -210], [1137, -210], [1136, -180], [1183, -179], [1183, -81], [1198, -80], [1196, -180], [1205, -180], [1203, -367]]}, "center": {"61-112": [942, 294], "113-200": [941, -119], "202-258": [976, -278]}}, -{"id": 349, "name": "Blind snoo", "description": "Snoo has been Reddit's mascot since 2005. Users of r/save3rdpartyapps put up a blind Snoo in partnership with r/Blind. Many blind people relied on 3rd party apps to use Reddit so the API changes heavily affected these users.", "links": {"subreddit": ["PlaceAPI", "Save3rdPartyApps"]}, "path": {"61-258": [[56, 19], [69, 19], [69, 18], [70, 18], [70, 15], [68, 15], [68, 13], [69, 14], [70, 13], [70, 14], [71, 15], [73, 17], [74, 18], [75, 17], [76, 16], [75, 15], [74, 14], [74, 12], [73, 12], [72, 11], [71, 10], [70, 9], [70, 7], [69, 7], [70, 6], [71, 5], [72, 4], [72, 3], [73, 3], [73, 0], [74, 0], [74, -3], [73, -3], [73, -4], [70, -4], [70, -3], [69, -3], [69, -4], [67, -4], [67, -5], [65, -5], [65, -6], [66, -6], [66, -7], [67, -7], [68, -7], [68, -6], [68, -5], [69, -5], [72, -5], [72, -9], [64, -9], [64, -7], [63, -7], [63, -5], [61, -5], [61, -4], [58, -4], [58, -3], [57, -4], [56, -4], [55, -4], [55, -3], [54, -2], [54, -1], [55, 0], [55, 3], [59, 7], [58, 8], [57, 9], [56, 10], [56, 11], [55, 11], [54, 12], [53, 13], [52, 14], [53, 15], [54, 14], [55, 14], [56, 14]]}, "center": {"61-258": [64, 2]}}, -{"id": 350, "name": "Buddha", "description": "Buddha is a popular streamer who plays on NoPixel, a role-playing server for the game Grand Theft Auto V. He is often represented by this oni mask.", "links": {"website": ["https://www.twitch.tv/buddha"], "subreddit": ["NoPixel"], "discord": ["buddha"]}, "path": {"57-258": [[559, -336], [559, -287], [600, -287], [600, -336]]}, "center": {"57-258": [580, -311]}}, +{"id": 345, "name": "Pedrodbr", "description": "Pedrodbr is a Streamer and Youtuber, the HOLDERS of Brazil and the King of the GIRINOS", "links": {"website": ["https://www.youtube.com/@ThePedrodbr000", "https://www.twitch.tv/pedrodbr"], "subreddit": ["PedroDBR"], "discord": ["Pedrodbr"]}, "path": {"9-54": [[446, 361], [499, 361], [499, 414], [446, 414]], "183-258, T": [[446, 361], [446, 414], [501, 413], [501, 361]]}, "center": {"9-54": [473, 388], "183-258, T": [473, 387]}}, +{"id": 346, "name": "CS:GO ranked badges", "description": "These symbols each represent the ranks one can achieve after playing competitive games in CS:GO. Lowest being \"silver 1\" highest rank being \"Global Elite\"", "links": {"subreddit": ["csgo"]}, "path": {"55-258, T": [[501, 361], [600, 361], [600, 439], [501, 439]]}, "center": {"55-258, T": [551, 400]}}, +{"id": 347, "name": "Foxhole", "description": "Foxhole is a cooperative sandbox massively-multiplayer action-strategy video game developed and published by Canadian video game company Siege Camp, who are based in Toronto, Ontario. The game uses Unreal Engine 4, utilizing an axonometric projection perspective, much like that of a conventional real-time strategy video game with a top-down view. Foxhole's setting is \"inspired by early 20th century warfare\".\n\nThis area was repeatedly attacked by Lithuanian streamer LTURepublic, who managed to take over shortly before the end. The Foxhole community managed to leave an 'F' within the true final canvas at their former location.", "links": {"website": ["https://www.foxholegame.com/", "https://en.wikipedia.org/wiki/Foxhole_(video_game)"], "subreddit": ["foxholegame"], "discord": ["foxhole"]}, "path": {"3-19": [[309, 265], [309, 334], [372, 334], [372, 265]], "171-185, 216-233, 53-155": [[-79, -26], [-79, 61], [-141, 61], [-141, -26]], "250-258, T": [[-140, -25], [-140, -15], [-138, -15], [-136, -19], [-133, -19], [-133, -21], [-135, -21], [-135, -25]]}, "center": {"3-19": [341, 300], "171-185, 216-233, 53-155": [-110, 18], "250-258, T": [-138, -21]}}, +{"id": 348, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"61-112": [[884, 499], [944, 499], [945, 444], [999, 444], [999, -368], [886, -368]], "113-200": [[886, -367], [885, -14], [887, 131], [997, 128], [997, -75], [997, -365], [886, -369]], "202-258, T": [[886, -368], [887, 127], [1015, 128], [1015, 100], [1031, 100], [1017, 82], [1012, 58], [1017, 18], [1036, -4], [1057, -11], [1080, -10], [1108, -6], [1131, 8], [1135, 22], [1208, 22], [1207, -10], [1152, -9], [1130, -19], [1122, -32], [1116, -55], [1118, -80], [1113, -84], [1108, -83], [1108, -14], [1036, -12], [1035, -210], [1137, -210], [1136, -180], [1183, -179], [1183, -81], [1198, -80], [1196, -180], [1205, -180], [1203, -367]]}, "center": {"61-112": [942, 294], "113-200": [941, -119], "202-258, T": [976, -278]}}, +{"id": 349, "name": "Blind snoo", "description": "Snoo has been Reddit's mascot since 2005. Users of r/save3rdpartyapps put up a blind Snoo in partnership with r/Blind. Many blind people relied on 3rd party apps to use Reddit so the API changes heavily affected these users.", "links": {"subreddit": ["PlaceAPI", "Save3rdPartyApps"]}, "path": {"61-258, T": [[56, 19], [69, 19], [69, 18], [70, 18], [70, 15], [68, 15], [68, 13], [69, 14], [70, 13], [70, 14], [71, 15], [73, 17], [74, 18], [75, 17], [76, 16], [75, 15], [74, 14], [74, 12], [73, 12], [72, 11], [71, 10], [70, 9], [70, 7], [69, 7], [70, 6], [71, 5], [72, 4], [72, 3], [73, 3], [73, 0], [74, 0], [74, -3], [73, -3], [73, -4], [70, -4], [70, -3], [69, -3], [69, -4], [67, -4], [67, -5], [65, -5], [65, -6], [66, -6], [66, -7], [67, -7], [68, -7], [68, -6], [68, -5], [69, -5], [72, -5], [72, -9], [64, -9], [64, -7], [63, -7], [63, -5], [61, -5], [61, -4], [58, -4], [58, -3], [57, -4], [56, -4], [55, -4], [55, -3], [54, -2], [54, -1], [55, 0], [55, 3], [59, 7], [58, 8], [57, 9], [56, 10], [56, 11], [55, 11], [54, 12], [53, 13], [52, 14], [53, 15], [54, 14], [55, 14], [56, 14]]}, "center": {"61-258, T": [64, 2]}}, +{"id": 350, "name": "Buddha", "description": "Buddha is a popular streamer who plays on NoPixel, a role-playing server for the game Grand Theft Auto V. He is often represented by this oni mask.", "links": {"website": ["https://www.twitch.tv/buddha"], "subreddit": ["NoPixel"], "discord": ["buddha"]}, "path": {"57-258, T": [[559, -336], [559, -287], [600, -287], [600, -336]]}, "center": {"57-258, T": [580, -311]}}, {"id": 351, "name": "F.C. Barcelona", "description": "F.C. (Futbol Club) Barcelona, a.k.a. Barça, is a Spanish association football (soccer) club based in Barcelona, Catalonia.", "links": {"website": ["http://www.fcbarcelona.com/", "https://en.wikipedia.org/wiki/FC_Barcelona"], "subreddit": ["Barca"]}, "path": {"55-65": [[876, 34], [881, 34], [881, 33], [883, 33], [883, 26], [884, 26], [884, 24], [880, 24], [880, 23], [876, 23], [875, 24], [874, 24], [874, 25], [873, 25], [873, 27], [873, 28], [872, 28], [872, 29], [872, 30], [873, 30], [873, 31], [873, 32], [874, 32], [875, 33]]}, "center": {"55-65": [878, 29]}}, -{"id": 352, "name": "Pfand system", "description": "The pfand system is a bottle return system in Germany. When buying certain products, consumers pay a deposit (pfand) for the container. After returning the bottle to an accepting shop, the deposit is refunded.", "links": {"website": ["https://en.wikipedia.org/wiki/Container-deposit_legislation#Germany"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"62-99": [[-448, -419], [-427, -419], [-427, -392], [-448, -392]], "100-258": [[-453, -419], [-453, -392], [-432, -392], [-432, -419]]}, "center": {"62-99": [-437, -405], "100-258": [-442, -405]}}, +{"id": 352, "name": "Pfand system", "description": "The pfand system is a bottle return system in Germany. When buying certain products, consumers pay a deposit (pfand) for the container. After returning the bottle to an accepting shop, the deposit is refunded.", "links": {"website": ["https://en.wikipedia.org/wiki/Container-deposit_legislation#Germany"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"62-99": [[-448, -419], [-427, -419], [-427, -392], [-448, -392]], "100-258, T": [[-453, -419], [-453, -392], [-432, -392], [-432, -419]]}, "center": {"62-99": [-437, -405], "100-258, T": [-442, -405]}}, {"id": 354, "name": "Belgium-French hearts", "description": "", "links": {"subreddit": ["belgium", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"59-112": [[880, 499], [888, 499], [889, 498], [889, 496], [888, 240], [888, 238], [888, 237], [887, 236], [886, 236], [885, 237], [884, 238], [883, 237], [882, 236], [881, 236], [880, 237]]}, "center": {"59-112": [885, 493]}}, -{"id": 355, "name": "Kessoku Band Mendako from Bocchi the Rock", "description": "Kessoku Band is the main band featured in Bocchi the Rock!, a 4-koma manga and anime series by Aki Hamaji. The members are Hitori Gotoh/Bocchi (guitar), Nijika Ijichi (drummer), Ryo Yamada (bass) and Ikuyo Kita (guitar). They are based in the live house STARRY in Shimokitazawa in the series.\n\nMendako form is a meme that originally represent the internal mind situations of Bocchi who suffers from social anxiety.", "links": {"subreddit": ["KessokuBand", "BocchiTheRock"], "discord": ["kessokuband", "bocchi"]}, "path": {"57-258": [[600, -368], [600, -348], [660, -348], [660, -368]]}, "center": {"57-258": [630, -358]}}, -{"id": 356, "name": "TÜV Süd", "description": "TÜVs (German pronunciation: [ˈtʏf]; short for German: Technischer Überwachungsverein, English: Technical Inspection Association) are internationally active, independent service companies from Germany and Austria that test, inspect and certify technical systems, facilities and objects of all kinds in order to minimize hazards and prevent damages. The TÜV companies are organized into three large holding companies, TÜV Nord, TÜV Rheinland and TÜV SÜD (with TÜV Hessen), along with the smaller independent companies TÜV Thüringen, TÜV Saarland and TÜV Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Technischer_%C3%9Cberwachungsverein#T%C3%9CV_S%C3%9CD"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"8-258": [[-382, -444], [-360, -444], [-347, -430], [-347, -409], [-360, -397], [-381, -397], [-394, -410], [-394, -431]]}, "center": {"8-258": [-370, -420]}}, -{"id": 357, "name": "Joy Boy", "description": "This depicts the manga panel revealing \"Joy Boy\" a popular character from one of the most successful and popular manga/anime series \"One Piece\".", "links": {"subreddit": ["OnePiece"]}, "path": {"55-258": [[636, 216], [636, 186], [637, 185], [637, 180], [638, 179], [638, 176], [639, 175], [639, 174], [640, 173], [640, 172], [641, 171], [641, 170], [643, 168], [643, 167], [646, 164], [646, 163], [652, 157], [652, 156], [656, 152], [656, 144], [657, 143], [657, 142], [659, 140], [659, 136], [660, 136], [662, 134], [663, 134], [664, 133], [665, 133], [667, 131], [668, 131], [669, 130], [681, 130], [681, 131], [682, 132], [683, 132], [685, 134], [718, 134], [719, 135], [722, 135], [723, 136], [725, 136], [726, 137], [727, 137], [728, 138], [730, 138], [731, 139], [732, 139], [733, 140], [734, 140], [735, 141], [736, 141], [737, 142], [737, 143], [740, 146], [741, 146], [744, 149], [745, 149], [746, 150], [746, 151], [750, 155], [750, 156], [752, 158], [752, 159], [753, 160], [753, 161], [754, 162], [755, 162], [755, 163], [756, 164], [756, 166], [758, 168], [758, 171], [759, 172], [759, 173], [760, 174], [760, 177], [761, 178], [761, 180], [762, 181], [762, 187], [763, 188], [763, 194], [764, 195], [764, 208], [763, 209], [763, 215], [762, 216], [762, 220], [761, 221], [761, 223], [762, 224], [762, 227], [763, 228], [763, 232], [764, 233], [764, 248], [763, 250], [763, 251], [760, 254], [760, 255], [758, 257], [758, 258], [752, 264], [751, 264], [749, 266], [747, 266], [745, 268], [731, 268], [730, 267], [728, 267], [727, 266], [726, 266], [725, 265], [724, 265], [721, 262], [720, 262], [720, 261], [714, 255], [714, 254], [712, 252], [712, 249], [711, 248], [711, 244], [651, 244], [645, 238], [645, 237], [644, 236], [644, 235], [642, 233], [642, 232], [641, 231], [641, 229], [640, 228], [640, 226], [639, 225], [639, 223], [638, 222], [638, 221], [637, 220], [637, 216]]}, "center": {"55-258": [698, 189]}}, +{"id": 355, "name": "Kessoku Band Mendako from Bocchi the Rock", "description": "Kessoku Band is the main band featured in Bocchi the Rock!, a 4-koma manga and anime series by Aki Hamaji. The members are Hitori Gotoh/Bocchi (guitar), Nijika Ijichi (drummer), Ryo Yamada (bass) and Ikuyo Kita (guitar). They are based in the live house STARRY in Shimokitazawa in the series.\n\nMendako form is a meme that originally represent the internal mind situations of Bocchi who suffers from social anxiety.", "links": {"subreddit": ["KessokuBand", "BocchiTheRock"], "discord": ["kessokuband", "bocchi"]}, "path": {"57-258, T": [[600, -368], [600, -348], [660, -348], [660, -368]]}, "center": {"57-258, T": [630, -358]}}, +{"id": 356, "name": "TÜV Süd", "description": "TÜVs (German pronunciation: [ˈtʏf]; short for German: Technischer Überwachungsverein, English: Technical Inspection Association) are internationally active, independent service companies from Germany and Austria that test, inspect and certify technical systems, facilities and objects of all kinds in order to minimize hazards and prevent damages. The TÜV companies are organized into three large holding companies, TÜV Nord, TÜV Rheinland and TÜV SÜD (with TÜV Hessen), along with the smaller independent companies TÜV Thüringen, TÜV Saarland and TÜV Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Technischer_%C3%9Cberwachungsverein#T%C3%9CV_S%C3%9CD"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"8-258, T": [[-382, -444], [-360, -444], [-347, -430], [-347, -409], [-360, -397], [-381, -397], [-394, -410], [-394, -431]]}, "center": {"8-258, T": [-370, -420]}}, +{"id": 357, "name": "Joy Boy", "description": "This depicts the manga panel revealing \"Joy Boy\" a popular character from one of the most successful and popular manga/anime series \"One Piece\".", "links": {"subreddit": ["OnePiece"]}, "path": {"55-258, T": [[636, 216], [636, 186], [637, 185], [637, 180], [638, 179], [638, 176], [639, 175], [639, 174], [640, 173], [640, 172], [641, 171], [641, 170], [643, 168], [643, 167], [646, 164], [646, 163], [652, 157], [652, 156], [656, 152], [656, 144], [657, 143], [657, 142], [659, 140], [659, 136], [660, 136], [662, 134], [663, 134], [664, 133], [665, 133], [667, 131], [668, 131], [669, 130], [681, 130], [681, 131], [682, 132], [683, 132], [685, 134], [718, 134], [719, 135], [722, 135], [723, 136], [725, 136], [726, 137], [727, 137], [728, 138], [730, 138], [731, 139], [732, 139], [733, 140], [734, 140], [735, 141], [736, 141], [737, 142], [737, 143], [740, 146], [741, 146], [744, 149], [745, 149], [746, 150], [746, 151], [750, 155], [750, 156], [752, 158], [752, 159], [753, 160], [753, 161], [754, 162], [755, 162], [755, 163], [756, 164], [756, 166], [758, 168], [758, 171], [759, 172], [759, 173], [760, 174], [760, 177], [761, 178], [761, 180], [762, 181], [762, 187], [763, 188], [763, 194], [764, 195], [764, 208], [763, 209], [763, 215], [762, 216], [762, 220], [761, 221], [761, 223], [762, 224], [762, 227], [763, 228], [763, 232], [764, 233], [764, 248], [763, 250], [763, 251], [760, 254], [760, 255], [758, 257], [758, 258], [752, 264], [751, 264], [749, 266], [747, 266], [745, 268], [731, 268], [730, 267], [728, 267], [727, 266], [726, 266], [725, 265], [724, 265], [721, 262], [720, 262], [720, 261], [714, 255], [714, 254], [712, 252], [712, 249], [711, 248], [711, 244], [651, 244], [645, 238], [645, 237], [644, 236], [644, 235], [642, 233], [642, 232], [641, 231], [641, 229], [640, 228], [640, 226], [639, 225], [639, 223], [638, 222], [638, 221], [637, 220], [637, 216]]}, "center": {"55-258, T": [698, 189]}}, {"id": 358, "name": "Blue Corner-France hearts", "description": "", "links": {"subreddit": ["TheBlueCorner", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"63-107": [[944, 499], [945, 499], [946, 498], [947, 497], [948, 496], [948, 494], [947, 493], [946, 493], [945, 494], [944, 494], [944, 491], [945, 491], [946, 490], [947, 489], [948, 488], [948, 486], [947, 485], [946, 485], [945, 486], [944, 486], [944, 481], [945, 481], [948, 478], [948, 476], [947, 475], [946, 475], [945, 476], [944, 476], [944, 474], [945, 474], [946, 473], [947, 472], [948, 469], [946, 468], [945, 469], [944, 469], [944, 467], [945, 467], [946, 466], [947, 465], [948, 464], [948, 461], [947, 461], [947, 460], [946, 460], [945, 461], [944, 461], [944, 459], [945, 459], [946, 458], [947, 457], [948, 456], [948, 454], [947, 453], [946, 453], [945, 454], [944, 455], [944, 452], [945, 452], [946, 451], [947, 450], [948, 449], [948, 447], [947, 447], [947, 446], [946, 445], [945, 446], [944, 447], [943, 447], [942, 446], [941, 446], [940, 447], [940, 449], [941, 450], [942, 451], [943, 452], [944, 452], [944, 455], [943, 454], [942, 453], [941, 453], [940, 454], [940, 456], [941, 457], [942, 458], [943, 459], [944, 459], [944, 461], [943, 461], [942, 460], [941, 460], [940, 461], [940, 464], [941, 465], [942, 466], [943, 467], [944, 467], [944, 470], [943, 469], [942, 469], [941, 468], [940, 469], [940, 471], [941, 472], [942, 473], [943, 474], [944, 474], [944, 476], [943, 476], [942, 475], [941, 475], [940, 478], [941, 479], [942, 480], [943, 481], [944, 481], [944, 486], [943, 486], [942, 485], [941, 485], [940, 486], [940, 488], [941, 489], [942, 490], [943, 491], [944, 491], [944, 494], [943, 494], [942, 493], [941, 493], [940, 494], [940, 496], [941, 497], [942, 498], [943, 499]]}, "center": {"63-107": [944, 464]}}, -{"id": 359, "name": "Technoblade", "description": "This large artwork is a tribute to the popular Minecraft youtuber \"Technoblade\". Technoblade died in 2022 from complications with cancer, since then the minecraft community has been representing Technoblade on r/place to forever solidify his legacy and impact on people around the world. The german streamer \"Papaplatte\" helped with the creation.", "links": {"website": ["https://www.twitch.tv/papaplatte"], "subreddit": ["Technoblade"]}, "path": {"55-258": [[672, -287], [672, -149], [500, -149], [500, -287]]}, "center": {"55-258": [586, -218]}}, -{"id": 360, "name": "Cellbit & Roier", "description": "This artwork depicts the 2 main characters, Bread and Fred from the popular Foddian game, \"Bread & Fred\" with details from Roier and Cellbit's Minecraft Skins, referring to the gameplay of the game made by both on twitch", "links": {"subreddit": ["Bread_and_Fred", "cellbits", "roier"]}, "path": {"55-258": [[673, 499], [624, 499], [624, 464], [673, 464]]}, "center": {"55-258": [649, 482]}}, +{"id": 359, "name": "Technoblade", "description": "This large artwork is a tribute to the popular Minecraft youtuber \"Technoblade\". Technoblade died in 2022 from complications with cancer, since then the minecraft community has been representing Technoblade on r/place to forever solidify his legacy and impact on people around the world. The german streamer \"Papaplatte\" helped with the creation.", "links": {"website": ["https://www.twitch.tv/papaplatte"], "subreddit": ["Technoblade"]}, "path": {"55-258, T": [[672, -287], [672, -149], [500, -149], [500, -287]]}, "center": {"55-258, T": [586, -218]}}, +{"id": 360, "name": "Cellbit & Roier", "description": "This artwork depicts the 2 main characters, Bread and Fred from the popular Foddian game, \"Bread & Fred\" with details from Roier and Cellbit's Minecraft Skins, referring to the gameplay of the game made by both on twitch", "links": {"subreddit": ["Bread_and_Fred", "cellbits", "roier"]}, "path": {"55-258, T": [[673, 499], [624, 499], [624, 464], [673, 464]]}, "center": {"55-258, T": [649, 482]}}, {"id": 361, "name": "Lovejoy", "description": "Lovejoy is a British band formed in 2021 by William Gold (more known online as Wilbur Soot), Mark Boardman, Joe Goldsmith and Ash Kabosu. They were, at first, named \"Hang the DJ\", but the current name was chosen after Benedict Lovejoy, a friend of the group who would sit with the band as they wrote their first songs.", "links": {"website": ["https://en.wikipedia.org/wiki/Lovejoy_(band)", "https://open.spotify.com/artist/33tFkBLsl6f8TjKkV0uF0C?si=UFqd2CZ2Rj2EwObPpCWUYg"], "subreddit": ["lovejoyband"]}, "path": {"61": [[0, 401], [29, 401], [29, 431], [0, 431]]}, "center": {"61": [15, 416]}}, -{"id": 362, "name": "Dark and Darker", "description": "The logo depicting popular fantasy game \"Dark and Darker\"", "links": {"website": ["https://en.wikipedia.org/wiki/Dark_and_Darker"], "subreddit": ["DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"31-154": [[-303, 463], [-234, 463], [-234, 499], [-303, 500]], "155-258": [[-303, 463], [-234, 463], [-234, 567], [-306, 567], [-306, 463], [-306, 462], [-234, 462]]}, "center": {"31-154": [-269, 481], "155-258": [-270, 515]}}, +{"id": 362, "name": "Dark and Darker", "description": "The logo depicting popular fantasy game \"Dark and Darker\"", "links": {"website": ["https://en.wikipedia.org/wiki/Dark_and_Darker"], "subreddit": ["DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"31-154": [[-303, 463], [-234, 463], [-234, 499], [-303, 500]], "155-258, T": [[-303, 463], [-234, 463], [-234, 567], [-306, 567], [-306, 463], [-306, 462], [-234, 462]]}, "center": {"31-154": [-269, 481], "155-258, T": [-270, 515]}}, {"id": 363, "name": "NIJISANJI", "description": "NIJISANJI is a VTuber agency featuring a variety of talented influencers who create exciting content. The objective of this project is to accelerate the beginning of the next generation of entertainment through various activities and services such as events, goods and digital content, original music, etc. Currently, over 200 VTubers are active, regularly creating unique content on various video streaming platforms such as YouTube.", "links": {"website": ["https://www.nijisanji.jp/en", "https://en.wikipedia.org/wiki/Nijisanji"], "subreddit": ["Nijisanji"], "discord": ["vtubersplace"]}, "path": {"59-67": [[807, -134], [779, -134], [779, -107], [799, -107], [799, -111], [807, -111]]}, "center": {"59-67": [792, -122]}}, {"id": 364, "name": "Fnatic", "description": "Fnatic is an esports team.", "links": {"website": ["https://fnatic.com/", "https://en.wikipedia.org/wiki/Fnatic"], "subreddit": ["fnatic"]}, "path": {"11-45": [[455, 13], [455, 29], [404, 29], [404, 13]], "46-124": [[434, 13], [409, 14], [396, 22], [396, 30], [434, 30]]}, "center": {"11-45": [430, 21], "46-124": [412, 22]}}, {"id": 365, "name": "rplace.tk", "description": "rplace.tk is a continuation of r/Place from 2022.", "links": {"website": ["https://rplace.tk/"], "subreddit": ["placetk"]}, "path": {"63-64": [[876, 63], [884, 63], [884, 55], [876, 55]]}, "center": {"63-64": [880, 59]}}, @@ -357,2403 +357,2403 @@ {"id": 367, "name": "Slide for Reddit", "description": "Slide is an open-source, ad-free Reddit browser for Android developed by u/ccrama.", "links": {"website": ["https://github.com/Haptic-Apps/Slide"], "subreddit": ["slideforreddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"16-80": [[37, 21], [33, 24], [33, 28], [37, 31], [39, 31], [43, 28], [43, 24], [39, 21], [-12, 18]]}, "center": {"16-80": [38, 26]}}, {"id": 368, "name": "THE ULTIMATE [TU]", "description": "Youtuber of .io games\n\nBasically he uploads gameplays and shorts of all kinds on his channel", "links": {"website": ["https://www.youtube.com/@TheUltimateTU"]}, "path": {"55-60": [[844, -253], [844, -246], [857, -246], [857, -254], [844, -254]]}, "center": {"55-60": [851, -250]}}, {"id": 369, "name": "Flag of Turkey", "description": "Turkey is a country in Southeastern Europe and Western Asia. The national flag of Turkey, officially the Turkish flag (Turkish: Türk bayrağı), is a red flag featuring a white star and crescent.", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://en.wikipedia.org/wiki/Flag_of_Turkey"], "subreddit": ["Turkey"]}, "path": {"58-64": [[772, -193], [884, -193], [884, -174], [779, -174], [779, -180], [772, -180]]}, "center": {"58-64": [828, -183]}}, -{"id": 370, "name": "Flugabwehrkanonenpanzer Gepard", "description": "The Flugabwehrkanonenpanzer Gepard (\"anti-aircraft-gun tank 'Cheetah'\", better known as the Flakpanzer Gepard) is an all-weather-capable German self-propelled anti-aircraft gun (SPAAG). It was developed in the 1960s, fielded in the 1970s, and has been upgraded several times with the latest electronics. It has been a cornerstone of the air defence of the German Army (Bundeswehr) and a number of other NATO countries.", "links": {"website": ["https://en.wikipedia.org/wiki/Flakpanzer_Gepard"], "subreddit": ["placeDE", "de", "placeukraine", "ukraine"], "discord": ["placeDE", "fMf7RJBMw6"]}, "path": {"62-258": [[42, -130], [33, -129], [33, -132], [35, -136], [38, -137], [41, -137], [42, -138], [42, -142], [41, -143], [37, -146], [34, -147], [31, -148], [30, -146], [28, -147], [26, -146], [26, -144], [24, -145], [25, -148], [29, -151], [34, -158], [39, -157], [40, -164], [40, -167], [29, -167], [28, -175], [41, -175], [41, -165], [48, -164], [46, -165], [45, -166], [45, -168], [51, -174], [53, -174], [54, -173], [55, -170], [54, -169], [51, -166], [51, -165], [61, -164], [62, -165], [66, -165], [68, -164], [72, -162], [72, -161], [73, -160], [83, -160], [83, -161], [86, -161], [88, -161], [89, -160], [89, -158], [88, -157], [84, -157], [83, -157], [83, -158], [73, -158], [73, -154], [77, -154], [77, -155], [82, -155], [83, -154], [83, -152], [84, -151], [84, -149], [83, -147], [83, -142], [82, -140], [83, -139], [75, -129], [60, -129]]}, "center": {"62-258": [58, -147]}}, -{"id": 371, "name": "Challenger 2", "description": "The Challenger 2 is a British tank currently in service. The United Kingdom recently donated Challenger 2 tanks to Ukraine to defend against the Russian invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Challenger_2"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom", "placeukraine", "ukraine"], "discord": ["ukplace", "ukonplace", "fMf7RJBMw6"]}, "path": {"64-115": [[26, -115], [36, -126], [32, -127], [33, -131], [35, -136], [39, -138], [41, -137], [41, -143], [35, -147], [30, -147], [25, -145], [21, -144], [13, -151], [8, -151], [7, -152], [-13, -153], [-17, -148], [-17, -154], [-29, -155], [-29, -144], [-21, -143], [-31, -134], [-32, -129], [-29, -125], [-27, -120], [-25, -115], [-22, -114]], "116-258": [[-34, -154], [-34, -143], [-25, -143], [-38, -131], [-38, -129], [-35, -126], [-32, -126], [-32, -120], [-26, -114], [24, -114], [37, -127], [35, -129], [35, -133], [36, -134], [36, -138], [57, -138], [57, -145], [38, -145], [35, -147], [26, -147], [26, -145], [22, -145], [15, -150], [12, -150], [8, -152], [-10, -152], [-19, -146], [-19, -154]]}, "center": {"64-115": [-4, -134], "116-258": [2, -133]}}, +{"id": 370, "name": "Flugabwehrkanonenpanzer Gepard", "description": "The Flugabwehrkanonenpanzer Gepard (\"anti-aircraft-gun tank 'Cheetah'\", better known as the Flakpanzer Gepard) is an all-weather-capable German self-propelled anti-aircraft gun (SPAAG). It was developed in the 1960s, fielded in the 1970s, and has been upgraded several times with the latest electronics. It has been a cornerstone of the air defence of the German Army (Bundeswehr) and a number of other NATO countries.", "links": {"website": ["https://en.wikipedia.org/wiki/Flakpanzer_Gepard"], "subreddit": ["placeDE", "de", "placeukraine", "ukraine"], "discord": ["placeDE", "fMf7RJBMw6"]}, "path": {"62-258, T": [[42, -130], [33, -129], [33, -132], [35, -136], [38, -137], [41, -137], [42, -138], [42, -142], [41, -143], [37, -146], [34, -147], [31, -148], [30, -146], [28, -147], [26, -146], [26, -144], [24, -145], [25, -148], [29, -151], [34, -158], [39, -157], [40, -164], [40, -167], [29, -167], [28, -175], [41, -175], [41, -165], [48, -164], [46, -165], [45, -166], [45, -168], [51, -174], [53, -174], [54, -173], [55, -170], [54, -169], [51, -166], [51, -165], [61, -164], [62, -165], [66, -165], [68, -164], [72, -162], [72, -161], [73, -160], [83, -160], [83, -161], [86, -161], [88, -161], [89, -160], [89, -158], [88, -157], [84, -157], [83, -157], [83, -158], [73, -158], [73, -154], [77, -154], [77, -155], [82, -155], [83, -154], [83, -152], [84, -151], [84, -149], [83, -147], [83, -142], [82, -140], [83, -139], [75, -129], [60, -129]]}, "center": {"62-258, T": [58, -147]}}, +{"id": 371, "name": "Challenger 2", "description": "The Challenger 2 is a British tank currently in service. The United Kingdom recently donated Challenger 2 tanks to Ukraine to defend against the Russian invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Challenger_2"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom", "placeukraine", "ukraine"], "discord": ["ukplace", "ukonplace", "fMf7RJBMw6"]}, "path": {"64-115": [[26, -115], [36, -126], [32, -127], [33, -131], [35, -136], [39, -138], [41, -137], [41, -143], [35, -147], [30, -147], [25, -145], [21, -144], [13, -151], [8, -151], [7, -152], [-13, -153], [-17, -148], [-17, -154], [-29, -155], [-29, -144], [-21, -143], [-31, -134], [-32, -129], [-29, -125], [-27, -120], [-25, -115], [-22, -114]], "116-258, T": [[-34, -154], [-34, -143], [-25, -143], [-38, -131], [-38, -129], [-35, -126], [-32, -126], [-32, -120], [-26, -114], [24, -114], [37, -127], [35, -129], [35, -133], [36, -134], [36, -138], [57, -138], [57, -145], [38, -145], [35, -147], [26, -147], [26, -145], [22, -145], [15, -150], [12, -150], [8, -152], [-10, -152], [-19, -146], [-19, -154]]}, "center": {"64-115": [-4, -134], "116-258, T": [2, -133]}}, {"id": 372, "name": "Rubius Void", "description": "Un Void hecho por el YouTuber español, Rubius", "links": {"website": ["https://twitch.tv/Rubius"], "subreddit": ["ubius"]}, "path": {"64": [[584, -8], [584, -10], [585, -11], [587, -13], [587, -15], [590, -17], [615, -17], [628, -22], [640, -31], [654, -45], [662, -45], [675, -31], [696, -11], [704, 3], [704, -47], [723, -47], [725, -52], [729, -52], [732, -47], [824, -47], [833, -54], [836, -47], [851, -47], [851, 96], [822, 96], [827, 104], [840, 122], [844, 123], [843, 129], [838, 130], [840, 140], [844, 147], [842, 153], [842, 162], [847, 168], [847, 174], [844, 184], [830, 210], [825, 214], [810, 228], [797, 247], [757, 274], [745, 285], [725, 295], [738, 277], [762, 262], [780, 250], [801, 230], [819, 212], [829, 202], [837, 182], [838, 175], [838, 168], [837, 151], [837, 136], [828, 127], [827, 125], [815, 96], [713, 96], [688, 120], [676, 121], [698, 97], [705, 96], [705, 17], [657, -37], [644, -27], [632, -17], [616, -12], [606, -3]], "65-68": [[851, -47], [704, -47], [704, 1], [661, -46], [650, -46], [643, -36], [628, -24], [610, -18], [590, -18], [583, -10], [583, -1], [592, 4], [606, -3], [610, -12], [632, -17], [655, -34], [661, -34], [682, -8], [698, 8], [704, 13], [704, 48], [676, 66], [664, 74], [650, 84], [642, 91], [631, 93], [631, 96], [648, 96], [654, 90], [667, 82], [680, 73], [705, 54], [705, 75], [685, 95], [660, 121], [657, 129], [659, 140], [671, 131], [679, 131], [679, 126], [668, 126], [670, 121], [693, 94], [705, 85], [705, 95], [776, 96], [774, 111], [771, 121], [771, 133], [763, 147], [738, 135], [732, 138], [751, 157], [761, 172], [765, 186], [765, 214], [761, 224], [764, 229], [771, 229], [777, 218], [778, 179], [773, 158], [777, 137], [780, 120], [784, 103], [785, 96], [814, 96], [834, 122], [841, 125], [851, 116], [862, 99], [864, 95], [883, 88], [884, 57], [881, 49], [879, 38], [877, 37], [878, 50], [876, 67], [873, 72], [878, 81], [875, 86], [857, 87], [858, 78], [861, 75], [860, 42], [854, 42], [853, 62], [853, 78], [852, 96], [851, 96]]}, "center": {"64": [777, 24], "65-68": [776, 24]}}, -{"id": 373, "name": "Flag of Poland", "description": "Poland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Flag_of_Poland"], "subreddit": ["Polska", "poland"]}, "path": {"63-82": [[500, -149], [500, -120], [632, -120], [632, -149]], "84-211": [[500, -148], [500, -120], [632, -120], [632, -131], [681, -131], [681, -113], [744, -113], [744, -134], [774, -134], [774, -160], [695, -160], [695, -154], [672, -154], [672, -148]], "212-258": [[500, -154], [884, -153], [884, -124], [841, -124], [841, -72], [704, -72], [704, -113], [681, -113], [681, -131], [632, -131], [632, -120], [500, -120]]}, "center": {"63-82": [566, -134], "84-211": [712, -136], "212-258": [745, -113]}}, -{"id": 374, "name": "Flag of Croatia", "description": "Croatia is a country at the crossroads of Central and Southeast Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Croatia", "https://en.wikipedia.org/wiki/Flag_of_Croatia"], "subreddit": ["croatia"]}, "path": {"52-258": [[339, -154], [339, -120], [399, -120], [399, -154]]}, "center": {"52-258": [369, -137]}}, -{"id": 375, "name": "Flag of Iran", "description": "Iran is a country in Western Asia. There is normally a religious emblem in the flag's center, but it has been replaced in this art by \"Free Iran\" in protest of Iran's authoritarian government.\nThe flag was initiated by the german streamer \"Mahluna\".", "links": {"website": ["https://en.wikipedia.org/wiki/Iran", "https://en.wikipedia.org/wiki/Flag_of_Iran"]}, "path": {"55": [[505, -120], [505, -80], [581, -80], [581, -120]], "56-258": [[554, -120], [554, -78], [632, -78], [632, -120]]}, "center": {"55": [543, -100], "56-258": [593, -99]}}, -{"id": 376, "name": "Flag of Belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium"]}, "path": {"55-65": [[809, 500], [884, 500], [884, 169], [809, 169]], "66-112": [[810, 499], [884, 499], [884, 129], [810, 129]], "113-258": [[811, 132], [811, 230], [820, 230], [820, 311], [810, 311], [810, 379], [819, 364], [836, 350], [839, 337], [836, 330], [836, 327], [839, 324], [842, 313], [857, 297], [859, 287], [869, 271], [877, 247], [878, 226], [878, 193], [871, 177], [880, 170], [880, 132]]}, "center": {"55-65": [847, 335], "66-112": [847, 314], "113-258": [845, 201]}}, -{"id": 377, "name": "Flag of Switzerland", "description": "Switzerland is a country in Central Europe. In Front the Statue of Helvetia, the female national personification of Switzerland, officially Confoederatio Helvetica, the Swiss Confederation.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "Switzerland"], "discord": ["vQ3P3DXf"]}, "path": {"55-258": [[886, -368], [886, -287], [796, -287], [796, -368]]}, "center": {"55-258": [841, -327]}}, -{"id": 378, "name": "Murder Drones", "description": "Murder Drones is a Youtube-based web series created by Glitch Productions which released in 2021. It's set in a post-apocalyptic exoplanet where all humans used to live before they accidentally exploded the planet's core. Now, it's habited by robots named Worker Drones. However, after they started gaining sentience, a new type of robots, Disassembly Drones, were sent with one objective: to eliminate every Worker Drone. Now, the Worker Drones all live inside a bunker underneath ice, hidden away from any Disassembly Drones.\n\nThis piece was an alliance between the Murder Drones community, and r/PlaceNL.", "links": {"website": ["https://murder-drones.fandom.com/wiki/Murder_Drones_(series)"], "subreddit": ["MurderDrones", "MurderDronesPlace", "PlaceNL"]}, "path": {"130": [[556, -527], [556, -501], [585, -501], [585, -527]], "59-77": [[628, 440], [628, 464], [673, 464], [673, 440]], "80-95": [[629, 440], [629, 464], [673, 464], [673, 440]], "102-103": [[629, 440], [629, 464], [673, 464], [673, 440], [673, 414], [653, 414], [653, 436], [649, 439], [629, 439]], "96-98": [[629, 440], [629, 464], [673, 464], [673, 414], [653, 414], [653, 439], [629, 439]], "131-134": [[556, -527], [556, -501], [606, -501], [606, -527]], "135-155": [[556, -527], [556, -501], [626, -501], [626, -527]], "156-160": [[556, -527], [556, -501], [643, -501], [643, -527]], "161-258": [[-871, 916], [-871, 941], [-788, 941], [-788, 916]]}, "center": {"130": [571, -514], "59-77": [651, 452], "80-95": [651, 452], "102-103": [659, 449], "96-98": [660, 451], "131-134": [581, -514], "135-155": [591, -514], "156-160": [600, -514], "161-258": [-829, 929]}}, -{"id": 379, "name": "Morocco", "description": "A map of the country of Morocco in the northwest of Africa. This map includes the disputed Western Sahara region, partially administered by Morocco.Included in the map are: A Camel,A Palm Tree,A Moroccan-style mosque,A Teapot with Moroccan Mint Tea,and a Tagine.", "links": {"website": ["https://en.wikipedia.org/wiki/Morocco"], "subreddit": ["Morocco"]}, "path": {"57-258": [[403, 33], [410, 40], [415, 42], [431, 42], [432, 41], [436, 41], [448, 46], [452, 51], [454, 60], [454, 69], [460, 76], [460, 79], [458, 81], [454, 82], [439, 82], [439, 84], [436, 86], [431, 86], [427, 88], [426, 90], [426, 95], [428, 97], [428, 98], [410, 111], [405, 118], [362, 140], [362, 162], [316, 162], [316, 196], [306, 201], [303, 204], [281, 204], [281, 224], [266, 224], [266, 225], [261, 225], [258, 211], [269, 190], [279, 180], [287, 162], [298, 151], [302, 142], [314, 138], [323, 134], [324, 135], [347, 146], [348, 146], [404, 118], [388, 110], [388, 104], [389, 104], [389, 78], [388, 78], [388, 71], [374, 64], [384, 59], [390, 53], [398, 36]]}, "center": {"57-258": [413, 67]}}, +{"id": 373, "name": "Flag of Poland", "description": "Poland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Flag_of_Poland"], "subreddit": ["Polska", "poland"]}, "path": {"63-82": [[500, -149], [500, -120], [632, -120], [632, -149]], "84-211": [[500, -148], [500, -120], [632, -120], [632, -131], [681, -131], [681, -113], [744, -113], [744, -134], [774, -134], [774, -160], [695, -160], [695, -154], [672, -154], [672, -148]], "212-258, T": [[500, -154], [884, -153], [884, -124], [841, -124], [841, -72], [704, -72], [704, -113], [681, -113], [681, -131], [632, -131], [632, -120], [500, -120]]}, "center": {"63-82": [566, -134], "84-211": [712, -136], "212-258, T": [745, -113]}}, +{"id": 374, "name": "Flag of Croatia", "description": "Croatia is a country at the crossroads of Central and Southeast Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Croatia", "https://en.wikipedia.org/wiki/Flag_of_Croatia"], "subreddit": ["croatia"]}, "path": {"52-258, T": [[339, -154], [339, -120], [399, -120], [399, -154]]}, "center": {"52-258, T": [369, -137]}}, +{"id": 375, "name": "Flag of Iran", "description": "Iran is a country in Western Asia. There is normally a religious emblem in the flag's center, but it has been replaced in this art by \"Free Iran\" in protest of Iran's authoritarian government.\nThe flag was initiated by the german streamer \"Mahluna\".", "links": {"website": ["https://en.wikipedia.org/wiki/Iran", "https://en.wikipedia.org/wiki/Flag_of_Iran"]}, "path": {"55": [[505, -120], [505, -80], [581, -80], [581, -120]], "56-258, T": [[554, -120], [554, -78], [632, -78], [632, -120]]}, "center": {"55": [543, -100], "56-258, T": [593, -99]}}, +{"id": 376, "name": "Flag of Belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium"]}, "path": {"55-65": [[809, 500], [884, 500], [884, 169], [809, 169]], "66-112": [[810, 499], [884, 499], [884, 129], [810, 129]], "113-258, T": [[811, 132], [811, 230], [820, 230], [820, 311], [810, 311], [810, 379], [819, 364], [836, 350], [839, 337], [836, 330], [836, 327], [839, 324], [842, 313], [857, 297], [859, 287], [869, 271], [877, 247], [878, 226], [878, 193], [871, 177], [880, 170], [880, 132]]}, "center": {"55-65": [847, 335], "66-112": [847, 314], "113-258, T": [845, 201]}}, +{"id": 377, "name": "Flag of Switzerland", "description": "Switzerland is a country in Central Europe. In Front the Statue of Helvetia, the female national personification of Switzerland, officially Confoederatio Helvetica, the Swiss Confederation.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "Switzerland"], "discord": ["vQ3P3DXf"]}, "path": {"55-258, T": [[886, -368], [886, -287], [796, -287], [796, -368]]}, "center": {"55-258, T": [841, -327]}}, +{"id": 378, "name": "Murder Drones", "description": "Murder Drones is a Youtube-based web series created by Glitch Productions which released in 2021. It's set in a post-apocalyptic exoplanet where all humans used to live before they accidentally exploded the planet's core. Now, it's habited by robots named Worker Drones. However, after they started gaining sentience, a new type of robots, Disassembly Drones, were sent with one objective: to eliminate every Worker Drone. Now, the Worker Drones all live inside a bunker underneath ice, hidden away from any Disassembly Drones.\n\nThis piece was an alliance between the Murder Drones community, and r/PlaceNL.", "links": {"website": ["https://murder-drones.fandom.com/wiki/Murder_Drones_(series)"], "subreddit": ["MurderDrones", "MurderDronesPlace", "PlaceNL"]}, "path": {"130": [[556, -527], [556, -501], [585, -501], [585, -527]], "59-77": [[628, 440], [628, 464], [673, 464], [673, 440]], "80-95": [[629, 440], [629, 464], [673, 464], [673, 440]], "102-103": [[629, 440], [629, 464], [673, 464], [673, 440], [673, 414], [653, 414], [653, 436], [649, 439], [629, 439]], "96-98": [[629, 440], [629, 464], [673, 464], [673, 414], [653, 414], [653, 439], [629, 439]], "131-134": [[556, -527], [556, -501], [606, -501], [606, -527]], "135-155": [[556, -527], [556, -501], [626, -501], [626, -527]], "156-160": [[556, -527], [556, -501], [643, -501], [643, -527]], "161-258, T": [[-871, 916], [-871, 941], [-788, 941], [-788, 916]]}, "center": {"130": [571, -514], "59-77": [651, 452], "80-95": [651, 452], "102-103": [659, 449], "96-98": [660, 451], "131-134": [581, -514], "135-155": [591, -514], "156-160": [600, -514], "161-258, T": [-829, 929]}}, +{"id": 379, "name": "Morocco", "description": "A map of the country of Morocco in the northwest of Africa. This map includes the disputed Western Sahara region, partially administered by Morocco.Included in the map are: A Camel,A Palm Tree,A Moroccan-style mosque,A Teapot with Moroccan Mint Tea,and a Tagine.", "links": {"website": ["https://en.wikipedia.org/wiki/Morocco"], "subreddit": ["Morocco"]}, "path": {"57-258, T": [[403, 33], [410, 40], [415, 42], [431, 42], [432, 41], [436, 41], [448, 46], [452, 51], [454, 60], [454, 69], [460, 76], [460, 79], [458, 81], [454, 82], [439, 82], [439, 84], [436, 86], [431, 86], [427, 88], [426, 90], [426, 95], [428, 97], [428, 98], [410, 111], [405, 118], [362, 140], [362, 162], [316, 162], [316, 196], [306, 201], [303, 204], [281, 204], [281, 224], [266, 224], [266, 225], [261, 225], [258, 211], [269, 190], [279, 180], [287, 162], [298, 151], [302, 142], [314, 138], [323, 134], [324, 135], [347, 146], [348, 146], [404, 118], [388, 110], [388, 104], [389, 104], [389, 78], [388, 78], [388, 71], [374, 64], [384, 59], [390, 53], [398, 36]]}, "center": {"57-258, T": [413, 67]}}, {"id": 380, "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"60-66": [[851, -37], [851, 39], [884, 39], [884, -37]], "67-74": [[851, 96], [884, 96], [884, -134], [851, -134]], "75-77": [[851, -501], [851, 96], [884, 96], [886, -501]], "78-115": [[851, 95], [883, 96], [884, -287], [851, -288], [851, -285], [851, -193], [774, -193], [774, -134], [851, -134]], "116-122": [[851, 95], [883, 96], [884, -287], [851, -288], [851, -285], [851, -193], [681, -193], [681, -134], [851, -134]], "123-153": [[851, -287], [851, 96], [884, 96], [884, -287]]}, "center": {"60-66": [868, 1], "67-74": [868, -19], "75-77": [868, -466], "78-115": [842, -164], "116-122": [711, -163], "123-153": [868, -95]}}, -{"id": 381, "name": "Flag of Austria", "description": "Austria is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"57-92": [[710, -368], [710, -287], [796, -287], [796, -368]], "93-258": [[648, -348], [648, -287], [796, -287], [796, -368], [710, -368], [710, -326], [674, -326], [674, -348]]}, "center": {"57-92": [753, -327], "93-258": [750, -328]}}, -{"id": 382, "name": "Flag of Thailand", "description": "Thailand, officially known as the Kingdom of Thailand, is a country located in Southeast Asia. It is bordered by Myanmar, Laos, Cambodia, and Malaysia, and has a population of over 69 million people.\n\nThe flag here features the Democracy monument, and a text above in Thai, translated to \"Fuck the Senate\"", "links": {"website": ["https://en.wikipedia.org/wiki/Thailand", "https://en.wikipedia.org/wiki/Flag_of_Thailand"], "subreddit": ["Thailand", "thaithai"], "discord": ["d2JbbbJWes"]}, "path": {"57-258": [[84, 65], [84, 82], [114, 82], [114, 65]]}, "center": {"57-258": [99, 74]}}, -{"id": 383, "name": "Russian anti-war flag", "description": "This flag is a variant of the Russian national flag (without the red stripe) used by Russians protesting the Russian invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/White-blue-white_flag"], "subreddit": ["liberta", "freedomofrussia", "placefreerussia", "tjournal_refugees"]}, "path": {"41-59": [[84, 129], [84, 138], [121, 138], [121, 139], [227, 139], [227, 129]], "63-89": [[84, 129], [84, 138], [121, 138], [121, 139], [168, 139], [168, 129]], "60-62": [[84, 129], [84, 138], [121, 138], [121, 139], [200, 139], [200, 129]], "90-258": [[84, 129], [84, 138], [155, 138], [155, 131], [114, 131], [114, 129]]}, "center": {"41-59": [156, 134], "63-89": [126, 134], "60-62": [142, 134], "90-258": [107, 134]}}, -{"id": 384, "name": "Belarusian opposition flag", "description": "This flag is used by the opposition to the current government of Belarus, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Belarusian_opposition", "https://en.wikipedia.org/wiki/White-red-white_flag"], "subreddit": ["belarus"]}, "path": {"60-258": [[168, 129], [168, 139], [227, 139], [227, 129]]}, "center": {"60-258": [198, 134]}}, +{"id": 381, "name": "Flag of Austria", "description": "Austria is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"57-92": [[710, -368], [710, -287], [796, -287], [796, -368]], "93-258, T": [[648, -348], [648, -287], [796, -287], [796, -368], [710, -368], [710, -326], [674, -326], [674, -348]]}, "center": {"57-92": [753, -327], "93-258, T": [750, -328]}}, +{"id": 382, "name": "Flag of Thailand", "description": "Thailand, officially known as the Kingdom of Thailand, is a country located in Southeast Asia. It is bordered by Myanmar, Laos, Cambodia, and Malaysia, and has a population of over 69 million people.\n\nThe flag here features the Democracy monument, and a text above in Thai, translated to \"Fuck the Senate\"", "links": {"website": ["https://en.wikipedia.org/wiki/Thailand", "https://en.wikipedia.org/wiki/Flag_of_Thailand"], "subreddit": ["Thailand", "thaithai"], "discord": ["d2JbbbJWes"]}, "path": {"57-258, T": [[84, 65], [84, 82], [114, 82], [114, 65]]}, "center": {"57-258, T": [99, 74]}}, +{"id": 383, "name": "Russian anti-war flag", "description": "This flag is a variant of the Russian national flag (without the red stripe) used by Russians protesting the Russian invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/White-blue-white_flag"], "subreddit": ["liberta", "freedomofrussia", "placefreerussia", "tjournal_refugees"]}, "path": {"41-59": [[84, 129], [84, 138], [121, 138], [121, 139], [227, 139], [227, 129]], "63-89": [[84, 129], [84, 138], [121, 138], [121, 139], [168, 139], [168, 129]], "60-62": [[84, 129], [84, 138], [121, 138], [121, 139], [200, 139], [200, 129]], "90-258, T": [[84, 129], [84, 138], [155, 138], [155, 131], [114, 131], [114, 129]]}, "center": {"41-59": [156, 134], "63-89": [126, 134], "60-62": [142, 134], "90-258, T": [107, 134]}}, +{"id": 384, "name": "Belarusian opposition flag", "description": "This flag is used by the opposition to the current government of Belarus, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Belarusian_opposition", "https://en.wikipedia.org/wiki/White-red-white_flag"], "subreddit": ["belarus"]}, "path": {"60-258, T": [[168, 129], [168, 139], [227, 139], [227, 129]]}, "center": {"60-258, T": [198, 134]}}, {"id": 385, "name": "Flag of the Dominican Republic", "description": "The Dominican Republic is a country in the Caribbean region of the Americas.", "links": {"website": ["https://en.wikipedia.org/wiki/Dominican_Republic", "https://en.wikipedia.org/wiki/Flag_of_the_Dominican_Republic"], "subreddit": ["Dominican"]}, "path": {"56-69": [[174, -26], [174, -10], [222, -10], [222, -26]], "70-77": [[174, -26], [174, -10], [118, -10], [118, 36], [221, 36], [221, -26]], "78-117": [[174, -26], [174, 36], [221, 36], [221, -26]], "118-148": [[118, -26], [118, 36], [221, 36], [221, -26]]}, "center": {"56-69": [198, -18], "70-77": [194, 9], "78-117": [198, 5], "118-148": [170, 5]}}, {"id": 386, "name": "2b2t", "description": "2builders2tools (2b2t) is the second-oldest running multiplayer server for the game Minecraft. It uses an anarchy format, meaning there are minimal rules in place for players.", "links": {"website": ["https://en.wikipedia.org/wiki/2b2t"], "subreddit": ["2b2t"]}, "path": {"60-63": [[784, 306], [737, 306], [737, 346], [784, 346]], "64-67": [[784, 306], [784, 334], [780, 334], [780, 343], [741, 343], [741, 306]], "100-113": [[-868, 347], [-868, 404], [-820, 404], [-820, 347]], "114-125": [[-867, 394], [-867, 404], [-821, 404], [-821, 394]]}, "center": {"60-63": [761, 326], "64-67": [763, 325], "100-113": [-844, 376], "114-125": [-844, 399]}}, -{"id": 387, "name": "Grub", "description": "This artwork depicts a \"Grub\" from the popular indie game, \"Hollow Knight\".", "links": {"subreddit": ["HollowKnight"]}, "path": {"55-258": [[567, -368], [600, -368], [600, -336], [567, -336]]}, "center": {"55-258": [584, -352]}}, +{"id": 387, "name": "Grub", "description": "This artwork depicts a \"Grub\" from the popular indie game, \"Hollow Knight\".", "links": {"subreddit": ["HollowKnight"]}, "path": {"55-258, T": [[567, -368], [600, -368], [600, -336], [567, -336]]}, "center": {"55-258, T": [584, -352]}}, {"id": 388, "name": "Migu", "description": "Migu is a small spanish streamer and VTuber, this is a representation of the first letter of his name \"Migu\".", "links": {"website": ["https://www.twitch.tv/migu_twitch", "https://virtualyoutuber.fandom.com/es/wiki/Migu", "https://clips.twitch.tv/GenerousDarlingNightingaleCharlieBitMe-qXgr0Gjtpevv5SG8"], "discord": ["UnuwnkrRnh"]}, "path": {"57-59": [[126, 240], [133, 241], [132, 250], [125, 250]]}, "center": {"57-59": [129, 245]}}, -{"id": 389, "name": "REx: Reincarnated", "description": "REx: Reincarnated is a sandbox mining game on Roblox containing ores that range from 1 in 25 to chances in the hundreds of millions. This area includes many rare ores from the game, some notable ones being Terratomere, Cybernetium, Dynamo of Fate, Omega, and more.", "links": {"website": ["https://www.roblox.com/games/8549934015/REx-Reincarnated", "https://rex-reincarnated.fandom.com/wiki/REx:_Reincarnated_Wiki"], "discord": ["corrodine"]}, "path": {"85-93": [[-95, 177], [-214, 177], [-214, 220], [-202, 219], [-198, 214], [-198, 209], [-195, 204], [-195, 197], [-194, 191], [-190, 184], [-188, 181], [-186, 179], [-185, 179], [-184, 180], [-181, 181], [-179, 183], [-176, 183], [-175, 184], [-170, 184], [-168, 182], [-167, 182], [-165, 184], [-165, 189], [-164, 190], [-164, 191], [-164, 192], [-95, 192]], "95-258": [[-214, 241], [-214, 177], [-95, 177], [-95, 192], [-164, 192], [-164, 190], [-165, 189], [-165, 185], [-167, 182], [-168, 182], [-170, 184], [-175, 184], [-180, 183], [-184, 180], [-185, 179], [-186, 179], [-188, 181], [-188, 184], [-194, 191], [-194, 196], [-195, 197], [-195, 198], [-194, 199], [-194, 204], [-195, 204], [-196, 206], [-196, 207], [-197, 208], [-197, 209], [-198, 210], [-198, 214], [-199, 216], [-200, 217], [-200, 218], [-203, 221], [-203, 223], [-202, 223], [-202, 230], [-201, 231], [-201, 232], [-199, 233], [-199, 238], [-198, 239], [-198, 241]], "4-25": [[330, 176], [330, 187], [423, 187], [424, 187], [424, 176], [418, 175], [418, 187], [418, 176], [415, 187], [417, 187], [418, 176]]}, "center": {"85-93": [-204, 187], "95-258": [-204, 188], "4-25": [378, 182]}}, -{"id": 392, "name": "Flag of Moldova", "description": "Moldova is a country in Eastern Europe bordering Romania.", "links": {"website": ["https://en.wikipedia.org/wiki/Moldova", "https://en.wikipedia.org/wiki/Flag_of_Moldova"], "subreddit": ["moldova"]}, "path": {"60-85": [[-364, 146], [-364, 186], [-343, 186], [-343, 146]], "86-96": [[-364, 146], [-364, 237], [-343, 237], [-343, 146]], "137-258": [[-425, -643], [-425, -611], [-392, -611], [-392, -643]]}, "center": {"60-85": [-353, 166], "86-96": [-353, 192], "137-258": [-408, -627]}}, -{"id": 393, "name": "Artwork of Singapore", "description": "Singapore is an island country and city-state in Southeast Asia with a population of 5 million. It is an aviation, maritime shipping, and financial hub. On r/place 2023, the first Singapore artwork was taken over by Fuck Spez and the flag of India, while the second was taken over by streamers from Bolivia. The third version succeeded.", "links": {"website": ["https://en.wikipedia.org/wiki/Singapore", "https://eresources.nlb.gov.sg/infopedia/"], "subreddit": ["singapore", "placeSG"], "discord": ["MY2bMNdApa"]}, "path": {"49-75": [[337, -48], [357, -48], [357, -21], [337, -21]], "85-131": [[312, -27], [312, -12], [357, -12], [357, -20], [358, -20], [358, -21], [359, -21], [358, -24], [357, -25], [357, -27], [331, -27], [330, -28], [330, -29], [324, -29], [324, -28], [323, -28], [323, -27]], "132-135": [[312, -27], [312, -12], [357, -12], [365, -12], [367, -12], [367, -13], [369, -13], [369, -14], [370, -14], [371, -14], [371, -15], [373, -15], [373, -16], [375, -17], [377, -17], [377, -18], [379, -18], [379, -19], [381, -19], [381, -20], [383, -20], [383, -21], [385, -21], [385, -22], [387, -22], [387, -23], [389, -23], [389, -24], [391, -24], [391, -27], [380, -27], [380, -28], [379, -28], [379, -29], [373, -29], [373, -28], [372, -28], [372, -27], [331, -27], [331, -28], [330, -28], [330, -29], [324, -29], [324, -28], [323, -28], [323, -27]], "136-140": [[312, -27], [312, -12], [330, -12], [330, -8], [357, -8], [359, -8], [359, -9], [361, -9], [361, -10], [363, -10], [363, -11], [365, -11], [365, -12], [367, -12], [367, -13], [369, -13], [369, -14], [371, -14], [371, -15], [373, -15], [373, -16], [375, -16], [375, -17], [377, -17], [377, -18], [380, -18], [380, -19], [381, -19], [381, -20], [383, -20], [383, -21], [385, -21], [385, -22], [387, -22], [387, -23], [389, -23], [389, -24], [391, -24], [391, -27], [380, -27], [380, -28], [379, -28], [373, -29], [373, -28], [372, -28], [372, -27], [331, -27], [331, -28], [330, -28], [330, -29], [324, -29], [324, -28], [323, -28], [323, -27]], "141-150": [[312, -23], [311, -23], [311, -24], [310, -25], [309, -25], [309, -29], [316, -29], [316, -28], [317, -28], [317, -27], [323, -27], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -27], [372, -27], [372, -28], [373, -28], [373, -29], [379, -29], [379, -28], [380, -28], [380, -27], [391, -27], [391, -24], [389, -24], [389, -22], [385, -22], [383, -21], [383, -20], [381, -20], [381, -19], [380, -19], [377, -18], [376, -17], [375, -17], [375, -16], [373, -16], [373, -15], [371, -15], [369, -14], [369, -13], [368, -13], [368, -12], [364, -12], [365, -11], [363, -10], [361, -10], [360, -9], [359, -9], [359, -8], [357, -7], [352, -7], [352, -8], [330, -8], [330, -9], [329, -9], [329, -10], [328, -11], [312, -11]], "151-238": [[312, -23], [311, -23], [311, -24], [310, -25], [309, -25], [309, -29], [316, -29], [316, -28], [317, -28], [317, -27], [323, -27], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -27], [376, -27], [376, -28], [377, -28], [377, -29], [383, -29], [383, -28], [384, -28], [384, -27], [389, -27], [389, -24], [389, -23], [387, -23], [385, -22], [385, -21], [383, -21], [381, -20], [381, -19], [379, -19], [379, -18], [377, -18], [377, -17], [375, -17], [375, -16], [373, -16], [373, -15], [371, -15], [371, -14], [369, -14], [369, -13], [367, -13], [367, -12], [365, -12], [365, -11], [363, -11], [363, -10], [361, -10], [361, -9], [359, -9], [359, -8], [357, -8], [357, -7], [356, -7], [354, -7], [354, -9], [353, -9], [353, -8], [332, -8], [330, -12], [312, -12]], "1-7": [[344, -173], [401, -173], [401, -200], [344, -200]], "239-258": [[313, -7], [313, -23], [312, -23], [311, -23], [311, -24], [310, -24], [310, -25], [309, -25], [309, -28], [310, -28], [310, -29], [316, -29], [316, -28], [317, -28], [317, -26], [323, -26], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -26], [342, -26], [342, -28], [345, -28], [345, -26], [376, -26], [376, -28], [377, -28], [377, -29], [383, -29], [383, -28], [384, -28], [384, -27], [387, -27], [387, -24], [385, -24], [385, -23], [383, -23], [383, -22], [381, -22], [381, -21], [379, -21], [379, -20], [377, -20], [377, -19], [375, -19], [375, -18], [373, -18], [373, -17], [371, -17], [371, -16], [369, -16], [369, -15], [367, -15], [367, -14], [365, -14], [365, -13], [362, -13], [362, -10], [361, -10], [361, -9], [359, -9], [359, -8], [327, -8], [326, -8], [326, -9], [325, -9], [325, -10], [324, -11], [320, -11], [320, -10], [318, -10], [318, -9], [317, -9], [317, -8], [316, -8], [316, -7]]}, "center": {"49-75": [347, -34], "85-131": [327, -20], "132-135": [327, -20], "136-140": [346, -18], "141-150": [353, -18], "151-238": [346, -18], "1-7": [373, -186], "239-258": [344, -17]}}, -{"id": 394, "name": "Flag of Sri Lanka", "description": "Sri Lanka is an island country in South Asia, near India. The sword-holding lion represents the majority Sinhalese, the orange stripe represents the minority Tamils, the green represents the minority Moors, and the gold border represents other minorities. The artwork was shifted after being wiped out by Bolivian streamers.", "links": {"website": ["https://en.wikipedia.org/wiki/Sri_Lanka", "https://en.wikipedia.org/wiki/Flag_of_Sri_Lanka"], "subreddit": ["srilanka"]}, "path": {"52-73": [[313, -47], [313, -32], [338, -32], [338, -47]], "76-135": [[288, -8], [288, -22], [313, -22], [313, -8]], "136-258": [[281, -26], [281, -8], [313, -8], [313, -26]]}, "center": {"52-73": [326, -39], "76-135": [301, -15], "136-258": [297, -17]}}, +{"id": 389, "name": "REx: Reincarnated", "description": "REx: Reincarnated is a sandbox mining game on Roblox containing ores that range from 1 in 25 to chances in the hundreds of millions. This area includes many rare ores from the game, some notable ones being Terratomere, Cybernetium, Dynamo of Fate, Omega, and more.", "links": {"website": ["https://www.roblox.com/games/8549934015/REx-Reincarnated", "https://rex-reincarnated.fandom.com/wiki/REx:_Reincarnated_Wiki"], "discord": ["corrodine"]}, "path": {"85-93": [[-95, 177], [-214, 177], [-214, 220], [-202, 219], [-198, 214], [-198, 209], [-195, 204], [-195, 197], [-194, 191], [-190, 184], [-188, 181], [-186, 179], [-185, 179], [-184, 180], [-181, 181], [-179, 183], [-176, 183], [-175, 184], [-170, 184], [-168, 182], [-167, 182], [-165, 184], [-165, 189], [-164, 190], [-164, 191], [-164, 192], [-95, 192]], "4-25": [[330, 176], [330, 187], [423, 187], [424, 187], [424, 176], [418, 175], [418, 187], [418, 176], [415, 187], [417, 187], [418, 176]], "95-258, T": [[-214, 241], [-214, 177], [-95, 177], [-95, 192], [-164, 192], [-164, 190], [-165, 189], [-165, 185], [-167, 182], [-168, 182], [-170, 184], [-175, 184], [-180, 183], [-184, 180], [-185, 179], [-186, 179], [-188, 181], [-188, 184], [-194, 191], [-194, 196], [-195, 197], [-195, 198], [-194, 199], [-194, 204], [-195, 204], [-196, 206], [-196, 207], [-197, 208], [-197, 209], [-198, 210], [-198, 214], [-199, 216], [-200, 217], [-200, 218], [-203, 221], [-203, 223], [-202, 223], [-202, 230], [-201, 231], [-201, 232], [-199, 233], [-199, 238], [-198, 239], [-198, 241]]}, "center": {"85-93": [-204, 187], "4-25": [378, 182], "95-258, T": [-204, 188]}}, +{"id": 392, "name": "Flag of Moldova", "description": "Moldova is a country in Eastern Europe bordering Romania.", "links": {"website": ["https://en.wikipedia.org/wiki/Moldova", "https://en.wikipedia.org/wiki/Flag_of_Moldova"], "subreddit": ["moldova"]}, "path": {"60-85": [[-364, 146], [-364, 186], [-343, 186], [-343, 146]], "86-96": [[-364, 146], [-364, 237], [-343, 237], [-343, 146]], "137-258, T": [[-425, -643], [-425, -611], [-392, -611], [-392, -643]]}, "center": {"60-85": [-353, 166], "86-96": [-353, 192], "137-258, T": [-408, -627]}}, +{"id": 393, "name": "Artwork of Singapore", "description": "Singapore is an island country and city-state in Southeast Asia with a population of 5 million. It is an aviation, maritime shipping, and financial hub. On r/place 2023, the first Singapore artwork was taken over by Fuck Spez and the flag of India, while the second was taken over by streamers from Bolivia. The third version succeeded.", "links": {"website": ["https://en.wikipedia.org/wiki/Singapore", "https://eresources.nlb.gov.sg/infopedia/"], "subreddit": ["singapore", "placeSG"], "discord": ["MY2bMNdApa"]}, "path": {"49-75": [[337, -48], [357, -48], [357, -21], [337, -21]], "85-131": [[312, -27], [312, -12], [357, -12], [357, -20], [358, -20], [358, -21], [359, -21], [358, -24], [357, -25], [357, -27], [331, -27], [330, -28], [330, -29], [324, -29], [324, -28], [323, -28], [323, -27]], "132-135": [[312, -27], [312, -12], [357, -12], [365, -12], [367, -12], [367, -13], [369, -13], [369, -14], [370, -14], [371, -14], [371, -15], [373, -15], [373, -16], [375, -17], [377, -17], [377, -18], [379, -18], [379, -19], [381, -19], [381, -20], [383, -20], [383, -21], [385, -21], [385, -22], [387, -22], [387, -23], [389, -23], [389, -24], [391, -24], [391, -27], [380, -27], [380, -28], [379, -28], [379, -29], [373, -29], [373, -28], [372, -28], [372, -27], [331, -27], [331, -28], [330, -28], [330, -29], [324, -29], [324, -28], [323, -28], [323, -27]], "136-140": [[312, -27], [312, -12], [330, -12], [330, -8], [357, -8], [359, -8], [359, -9], [361, -9], [361, -10], [363, -10], [363, -11], [365, -11], [365, -12], [367, -12], [367, -13], [369, -13], [369, -14], [371, -14], [371, -15], [373, -15], [373, -16], [375, -16], [375, -17], [377, -17], [377, -18], [380, -18], [380, -19], [381, -19], [381, -20], [383, -20], [383, -21], [385, -21], [385, -22], [387, -22], [387, -23], [389, -23], [389, -24], [391, -24], [391, -27], [380, -27], [380, -28], [379, -28], [373, -29], [373, -28], [372, -28], [372, -27], [331, -27], [331, -28], [330, -28], [330, -29], [324, -29], [324, -28], [323, -28], [323, -27]], "141-150": [[312, -23], [311, -23], [311, -24], [310, -25], [309, -25], [309, -29], [316, -29], [316, -28], [317, -28], [317, -27], [323, -27], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -27], [372, -27], [372, -28], [373, -28], [373, -29], [379, -29], [379, -28], [380, -28], [380, -27], [391, -27], [391, -24], [389, -24], [389, -22], [385, -22], [383, -21], [383, -20], [381, -20], [381, -19], [380, -19], [377, -18], [376, -17], [375, -17], [375, -16], [373, -16], [373, -15], [371, -15], [369, -14], [369, -13], [368, -13], [368, -12], [364, -12], [365, -11], [363, -10], [361, -10], [360, -9], [359, -9], [359, -8], [357, -7], [352, -7], [352, -8], [330, -8], [330, -9], [329, -9], [329, -10], [328, -11], [312, -11]], "151-238": [[312, -23], [311, -23], [311, -24], [310, -25], [309, -25], [309, -29], [316, -29], [316, -28], [317, -28], [317, -27], [323, -27], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -27], [376, -27], [376, -28], [377, -28], [377, -29], [383, -29], [383, -28], [384, -28], [384, -27], [389, -27], [389, -24], [389, -23], [387, -23], [385, -22], [385, -21], [383, -21], [381, -20], [381, -19], [379, -19], [379, -18], [377, -18], [377, -17], [375, -17], [375, -16], [373, -16], [373, -15], [371, -15], [371, -14], [369, -14], [369, -13], [367, -13], [367, -12], [365, -12], [365, -11], [363, -11], [363, -10], [361, -10], [361, -9], [359, -9], [359, -8], [357, -8], [357, -7], [356, -7], [354, -7], [354, -9], [353, -9], [353, -8], [332, -8], [330, -12], [312, -12]], "1-7": [[344, -173], [401, -173], [401, -200], [344, -200]], "239-258, T": [[313, -7], [313, -23], [312, -23], [311, -23], [311, -24], [310, -24], [310, -25], [309, -25], [309, -28], [310, -28], [310, -29], [316, -29], [316, -28], [317, -28], [317, -26], [323, -26], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -26], [342, -26], [342, -28], [345, -28], [345, -26], [376, -26], [376, -28], [377, -28], [377, -29], [383, -29], [383, -28], [384, -28], [384, -27], [387, -27], [387, -24], [385, -24], [385, -23], [383, -23], [383, -22], [381, -22], [381, -21], [379, -21], [379, -20], [377, -20], [377, -19], [375, -19], [375, -18], [373, -18], [373, -17], [371, -17], [371, -16], [369, -16], [369, -15], [367, -15], [367, -14], [365, -14], [365, -13], [362, -13], [362, -10], [361, -10], [361, -9], [359, -9], [359, -8], [327, -8], [326, -8], [326, -9], [325, -9], [325, -10], [324, -11], [320, -11], [320, -10], [318, -10], [318, -9], [317, -9], [317, -8], [316, -8], [316, -7]]}, "center": {"49-75": [347, -34], "85-131": [327, -20], "132-135": [327, -20], "136-140": [346, -18], "141-150": [353, -18], "151-238": [346, -18], "1-7": [373, -186], "239-258, T": [344, -17]}}, +{"id": 394, "name": "Flag of Sri Lanka", "description": "Sri Lanka is an island country in South Asia, near India. The sword-holding lion represents the majority Sinhalese, the orange stripe represents the minority Tamils, the green represents the minority Moors, and the gold border represents other minorities. The artwork was shifted after being wiped out by Bolivian streamers.", "links": {"website": ["https://en.wikipedia.org/wiki/Sri_Lanka", "https://en.wikipedia.org/wiki/Flag_of_Sri_Lanka"], "subreddit": ["srilanka"]}, "path": {"52-73": [[313, -47], [313, -32], [338, -32], [338, -47]], "76-135": [[288, -8], [288, -22], [313, -22], [313, -8]], "136-258, T": [[281, -26], [281, -8], [313, -8], [313, -26]]}, "center": {"52-73": [326, -39], "76-135": [301, -15], "136-258, T": [297, -17]}}, {"id": 395, "name": "Taiko No Tatsujin", "description": "Taiko No Tatsujin is a rhythm game series featuring Japanese taiko drums.", "links": {"website": ["https://en.wikipedia.org/wiki/Taiko_no_Tatsujin"], "subreddit": ["taikonotatsujin"]}, "path": {"45-58": [[390, -42], [387, -40], [386, -38], [386, -26], [388, -23], [390, -22], [392, -22], [395, -24], [396, -26], [396, -38], [394, -41], [393, -42]], "59-78": [[389, -47], [389, -41], [388, -41], [386, -38], [386, -36], [388, -33], [390, -32], [402, -32], [405, -34], [406, -36], [406, -47]]}, "center": {"45-58": [391, -32], "59-78": [397, -39]}}, -{"id": 396, "name": "The Mole", "description": "The Mole (Czech: Krteček) is an animated character in a series of cartoons created by Czech animator Zdeněk Miler.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/The_Mole_(Krtek)](https://en.wikipedia.org/wiki/The_Mole_(Krtek))"], "subreddit": ["czech"]}, "path": {"54-258": [[451, -165], [450, -164], [454, -159], [452, -157], [452, -154], [447, -147], [447, -142], [449, -137], [449, -128], [444, -123], [444, -120], [477, -120], [477, -125], [479, -128], [480, -128], [486, -135], [492, -135], [495, -139], [496, -148], [498, -151], [498, -152], [499, -153], [499, -158], [491, -165], [487, -165], [482, -161], [476, -152], [476, -148], [477, -148], [477, -139], [474, -137], [473, -137], [471, -140], [474, -143], [474, -147], [471, -147], [471, -150], [469, -150], [469, -151], [465, -156], [462, -156], [462, -157], [462, -163], [460, -165]]}, "center": {"54-258": [461, -132]}}, +{"id": 396, "name": "The Mole", "description": "The Mole (Czech: Krteček) is an animated character in a series of cartoons created by Czech animator Zdeněk Miler.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/The_Mole_(Krtek)](https://en.wikipedia.org/wiki/The_Mole_(Krtek))"], "subreddit": ["czech"]}, "path": {"54-258, T": [[451, -165], [450, -164], [454, -159], [452, -157], [452, -154], [447, -147], [447, -142], [449, -137], [449, -128], [444, -123], [444, -120], [477, -120], [477, -125], [479, -128], [480, -128], [486, -135], [492, -135], [495, -139], [496, -148], [498, -151], [498, -152], [499, -153], [499, -158], [491, -165], [487, -165], [482, -161], [476, -152], [476, -148], [477, -148], [477, -139], [474, -137], [473, -137], [471, -140], [474, -143], [474, -147], [471, -147], [471, -150], [469, -150], [469, -151], [465, -156], [462, -156], [462, -157], [462, -163], [460, -165]]}, "center": {"54-258, T": [461, -132]}}, {"id": 397, "name": "Femboy flag", "description": "A pride flag representing the femboy community. A femboy, also known as tomgirl, rosboy, janegirl, or calicogirl, is a person who chooses to adopt a more feminine appearance, such as by wearing feminine clothes or makeup, while usually retaining some aspect of boyishness in their appearance or identity. This can also sometimes refer to the way one acts or communicates, or what interests or hobbies one has. Most femboys still see themselves as male, as the name implies, but someone who identifies with the femboy label can be trans, nonbinary, or one of many other gender identities across the spectrum.", "links": {"website": ["https://aesthetics.fandom.com/wiki/Femboy"], "subreddit": ["femboy"]}, "path": {"138": [[-590, -650], [-590, -636], [-585, -636], [-585, -637], [-586, -637], [-586, -638], [-588, -638], [-588, -643], [-587, -643], [-588, -643], [-588, -650]], "139": [[-590, -636], [-590, -650], [-585, -650], [-585, -642], [-584, -642], [-585, -642], [-585, -638], [-584, -638], [-584, -637], [-585, -637], [-585, -636]], "140": [[-590, -650], [-585, -650], [-585, -649], [-582, -649], [-581, -648], [-581, -646], [-583, -646], [-583, -643], [-581, -643], [-582, -643], [-582, -640], [-583, -640], [-583, -639], [-583, -638], [-582, -638], [-582, -637], [-583, -637], [-583, -636], [-590, -636]], "55-69": [[724, -180], [724, -152], [726, -152], [726, -156], [753, -156], [755, -152], [779, -152], [779, -180]], "70-76": [[728, -180], [728, -160], [724, -160], [724, -152], [779, -152], [779, -180]], "77-81": [[692, -160], [692, -157], [690, -155], [683, -155], [683, -152], [728, -152], [728, -160]], "82-93": [[693, -160], [693, -152], [720, -152], [720, -147], [728, -147], [728, -152], [791, -152], [791, -160]], "95-100": [[728, -174], [728, -160], [695, -160], [695, -154], [742, -154], [744, -152], [774, -152], [774, -174]], "101-115": [[742, -174], [742, -160], [774, -160], [774, -174]], "3-11": [[-261, 359], [-261, 387], [-216, 387], [-216, 359]], "14-16": [[-216, 391], [-169, 391], [-169, 352], [-216, 352]], "27-39": [[-216, 356], [-162, 356], [-162, 384], [-216, 384]], "50-54": [[-29, 486], [-29, 499], [0, 499], [0, 486]], "117-123": [[-545, -731], [-505, -731], [-505, -729], [-503, -729], [-503, -702], [-545, -702]], "141-142": [[-590, -636], [-590, -650], [-585, -650], [-584, -649], [-581, -649], [-579, -646], [-577, -646], [-577, -636]], "143-152": [[-590, -636], [-590, -649], [-586, -649], [-586, -650], [-585, -650], [-585, -649], [-583, -649], [-583, -648], [-582, -648], [-581, -647], [-579, -647], [-579, -646], [-575, -643], [-577, -641], [-578, -640], [-578, -636], [-561, -636], [-561, -642], [-558, -642], [-558, -648], [-554, -650], [-547, -650], [-545, -648], [-545, -636]]}, "center": {"138": [-589, -642], "139": [-587, -643], "140": [-586, -641], "55-69": [762, -166], "70-76": [752, -166], "77-81": [706, -156], "82-93": [724, -155], "95-100": [750, -163], "101-115": [758, -167], "3-11": [-238, 373], "14-16": [-192, 372], "27-39": [-189, 370], "50-54": [-14, 493], "117-123": [-524, -716], "141-142": [-584, -642], "143-152": [-552, -643]}}, {"id": 398, "name": "Technical University of Munich", "description": "The Technical University of Munich (TUM), known in German as Technische Universität München, is a university in Munich, Germany.", "links": {"website": ["https://tum.de/", "https://en.wikipedia.org/wiki/Technical_University_of_Munich"], "subreddit": ["tumunich"]}, "path": {"59-68": [[756, -152], [756, -140], [779, -140], [779, -152]]}, "center": {"59-68": [768, -146]}}, {"id": 399, "name": "Got a loicense for dat API mate?", "description": "This art is a protest against pricing changes to the Reddit API that have effectively killed many 3rd-party Reddit apps. It is drawn in the form of a stereotype/meme making fun of the United Kingdom for government overreach and requiring licenses for everything. Saying \"license\" in a thick British accent can sound like \"loicense\".", "links": {"subreddit": ["ukplace", "unitedkingdom"], "discord": ["ukplace"]}, "path": {"55-76": [[779, -134], [864, -134], [864, -174], [779, -174]]}, "center": {"55-76": [822, -154]}}, {"id": 400, "name": "Jacexdowozwideo", "description": "Jacexdowozwideo is a Twitch channel of two guys from Poland, Generator Frajdy and GargamelVlog. They also have podcast called Dwóch Typów Podcast.", "links": {"website": ["https://www.twitch.tv/jacexdowozwideo"]}, "path": {"59-67": [[807, -134], [807, -114], [828, -114], [828, -111], [849, -111], [849, -134]]}, "center": {"59-67": [836, -123]}}, -{"id": 401, "name": "Zombey", "description": "Oldschool German Youtube Star.\nTypically depicted as a man wearing a purple suit and tophat, as well as a monocle. The 'Z' necklace is a reference to his alter-ego 'Zombro'.\nThis artwork was created by Zombey's community during a Diablo IV Stream and successfully defended until the end of r/place", "links": {"website": ["https://www.youtube.com/@Zombey"]}, "path": {"66-258": [[-174, -344], [-177, -366], [-166, -367], [-166, -311], [-176, -311], [-176, -357], [-175, -364], [-170, -360], [-176, -367], [-176, -342], [-179, -343], [-163, -343], [-165, -345]]}, "center": {"66-258": [-171, -327]}}, +{"id": 401, "name": "Zombey", "description": "Oldschool German Youtube Star.\nTypically depicted as a man wearing a purple suit and tophat, as well as a monocle. The 'Z' necklace is a reference to his alter-ego 'Zombro'.\nThis artwork was created by Zombey's community during a Diablo IV Stream and successfully defended until the end of r/place", "links": {"website": ["https://www.youtube.com/@Zombey"]}, "path": {"66-258, T": [[-174, -344], [-177, -366], [-166, -367], [-166, -311], [-176, -311], [-176, -357], [-175, -364], [-170, -360], [-176, -367], [-176, -342], [-179, -343], [-163, -343], [-165, -345]]}, "center": {"66-258, T": [-171, -327]}}, {"id": 402, "name": "World Cube Association Logo", "description": "Logo of the organizers of all Rubik's Cube competitions", "links": {"website": ["https://www.worldcubeassociation.org/"], "subreddit": ["cubers"], "discord": ["cubers"]}, "path": {"9-23": [[-329, 60], [-329, 92], [-299, 91], [-298, 60]]}, "center": {"9-23": [-314, 76]}}, {"id": 403, "name": "Project Moon", "description": "Project Moon is an indie South Korean game developer known for the games Lobotomy Corporation, Library of Ruina, and Limbus Company.\n\nThis is the second rendition of Project Moon banner, featuring main characters of Project Moon games: Roland, Angela, and Dante.", "links": {"website": ["https://projectmoon.studio/"], "subreddit": ["Project_Moon", "LobotomyCorp", "libraryofruina", "LimbusCompany"]}, "path": {"57-67": [[799, -111], [799, -88], [848, -88], [848, -111]]}, "center": {"57-67": [824, -99]}}, {"id": 404, "name": "Ultrakill", "description": "The logo and name of the fps Ultrakill", "links": {"subreddit": ["ultrakill"]}, "path": {"32-45": [[-319, 272], [-251, 271], [-251, 284], [-320, 284], [-320, 272], [-300, 272]]}, "center": {"32-45": [-261, 278]}}, -{"id": 405, "name": "TubNet Logo", "description": "TubNet is a Minecraft server created by Tobias Smith (most known online as Tubbo) in partnership with Misfits Gaming in 2019. It was shutdown temporarily shortly after launch due to a big amount of issues to do with server stability. It was reopened on November 25th 2022.", "links": {"website": ["https://youtube.fandom.com/wiki/TubNet?so=search"]}, "path": {"66-258": [[580, 465], [624, 465], [624, 499], [580, 499]]}, "center": {"66-258": [602, 482]}}, -{"id": 406, "name": "TheDaarick28", "description": "Skin de Minecraft del streamer top peruano con humor absurdo, repito muy absurdo.\nEl texto de arriba no aplica cuando está en IRL, es totalmente tímido, en especial con cierta streamer de cierto pais cafetero.", "links": {"website": ["https://www.twitch.tv/thedaarick28", "https://www.youtube.com/@TheDaarick28"], "discord": ["d4EtHTM"]}, "path": {"250-258": [[87, -10], [87, -1], [78, -1], [78, -10], [80, -10], [78, -10]]}, "center": {"250-258": [83, -5]}}, -{"id": 407, "name": "Your Turn to Die", "description": "Your Turn to Die (YTTD) is a negotiation/adventure game by Nankidai about a deadly game, where the participants choose who dies.", "links": {"website": ["https://en.wikipedia.org/wiki/Kimi_ga_Shine_-Tas%C5%ABketsu_Death_Game-"], "subreddit": ["YTTD"], "discord": ["yttd"]}, "path": {"61-95": [[518, -368], [518, -340], [524, -340], [524, -337], [566, -337], [566, -368]], "96-258": [[518, -368], [518, -339], [525, -339], [525, -325], [530, -322], [557, -322], [557, -338], [567, -338], [567, -368]]}, "center": {"61-95": [542, -352], "96-258": [541, -349]}}, +{"id": 405, "name": "TubNet Logo", "description": "TubNet is a Minecraft server created by Tobias Smith (most known online as Tubbo) in partnership with Misfits Gaming in 2019. It was shutdown temporarily shortly after launch due to a big amount of issues to do with server stability. It was reopened on November 25th 2022.", "links": {"website": ["https://youtube.fandom.com/wiki/TubNet?so=search"]}, "path": {"66-258, T": [[580, 465], [624, 465], [624, 499], [580, 499]]}, "center": {"66-258, T": [602, 482]}}, +{"id": 406, "name": "TheDaarick28", "description": "Skin de Minecraft del streamer top peruano con humor absurdo, repito muy absurdo.\nEl texto de arriba no aplica cuando está en IRL, es totalmente tímido, en especial con cierta streamer de cierto pais cafetero.", "links": {"website": ["https://www.twitch.tv/thedaarick28", "https://www.youtube.com/@TheDaarick28"], "discord": ["d4EtHTM"]}, "path": {"250-258, T": [[87, -10], [87, -1], [78, -1], [78, -10], [80, -10], [78, -10]]}, "center": {"250-258, T": [83, -5]}}, +{"id": 407, "name": "Your Turn to Die", "description": "Your Turn to Die (YTTD) is a negotiation/adventure game by Nankidai about a deadly game, where the participants choose who dies.", "links": {"website": ["https://en.wikipedia.org/wiki/Kimi_ga_Shine_-Tas%C5%ABketsu_Death_Game-"], "subreddit": ["YTTD"], "discord": ["yttd"]}, "path": {"61-95": [[518, -368], [518, -340], [524, -340], [524, -337], [566, -337], [566, -368]], "96-258, T": [[518, -368], [518, -339], [525, -339], [525, -325], [530, -322], [557, -322], [557, -338], [567, -338], [567, -368]]}, "center": {"61-95": [542, -352], "96-258, T": [541, -349]}}, {"id": 408, "name": "Korok", "description": "Koroks are creatures from the Legend of Zelda games. In the open-world Zelda games, Breath of the Wild and Tears of the Kingdom, Koroks gained notoriety for being hidden all across the map and uttering the phrase \"Yahaha! You found me!\" when found. This Korok has a rocket attached to it, a meme from Tears of the Kingdom where Koroks can be tortured by the player with the game's machinery.", "links": {"website": ["https://www.zeldadungeon.net/wiki/Korok"], "subreddit": ["zelda"]}, "path": {"60-101": [[554, 96], [552, 98], [552, 101], [551, 102], [549, 102], [549, 108], [552, 111], [556, 111], [559, 113], [560, 113], [563, 111], [564, 111], [566, 113], [569, 113], [569, 109], [568, 109], [568, 107], [562, 102], [588, 102], [588, 103], [638, 103], [638, 97], [557, 97], [556, 96]]}, "center": {"60-101": [557, 105]}}, -{"id": 409, "name": "Progress pride flag", "description": "The progress pride flag is a pride flag that combines the rainbow LGBT pride flag, transgender flag, and brown and black stripes to represent LGBT people of color. This flag additionally has a purple circle on a yellow background to represent the intersex pride flag.", "links": {}, "path": {"55-90": [[500, 439], [500, 465], [628, 465], [628, 439]], "109-258": [[500, 438], [500, 465], [600, 465], [600, 438]]}, "center": {"55-90": [564, 452], "109-258": [550, 452]}}, -{"id": 410, "name": "Quackity", "description": "The design represents a design towards the Mexican streamer and youtuber Quackity, showing representative elements ; like his Merch (Planet Duck), as well as important projects of the same such as the QSMP", "links": {"website": ["https://www.twitch.tv/quackity", "https://twitter.com/quackity"]}, "path": {"55-258": [[500, 464], [500, 498], [579, 499], [579, 465], [501, 465]]}, "center": {"55-258": [543, 482]}}, -{"id": 411, "name": "MadoHomu", "description": "An art of Madoka Kaname and Homura Akemi from the 2011 anime series Puella Magi Madoka Magica animated by Shaft studio.", "links": {"website": ["https://en.wikipedia.org/wiki/Puella_Magi_Madoka_Magica"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"27-258": [[3, 142], [3, 196], [51, 196], [51, 142], [38, 142]]}, "center": {"27-258": [27, 169]}}, -{"id": 412, "name": "Taylor Swift", "description": "Representing Eras Tour Poster by Taylor Swift", "links": {"website": ["https://www.taylorswift.com"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"155-258": [[-4, 84], [51, 84], [51, 142], [1, 142], [1, 97], [-17, 96], [-17, 84]]}, "center": {"155-258": [26, 117]}}, -{"id": 413, "name": "Celeste", "description": "Celeste is a 2D platforming game created by Maddy Thorson. The main character Madeline is confirmed to be transgender.", "links": {"website": ["http://www.celestegame.com/", "https://[https://en.wikipedia.org/wiki/Celeste_(video_game)](https://en.wikipedia.org/wiki/Celeste_(video_game))"], "subreddit": ["celestegame"], "discord": ["celeste"]}, "path": {"35-40": [[238, 66], [238, 78], [236, 80], [236, 90], [237, 90], [237, 96], [245, 96], [245, 93], [247, 90], [247, 87], [246, 86], [246, 66]], "7-30": [[234, 77], [234, 96], [249, 96], [249, 77]], "41-84, 91-258": [[238, 78], [236, 80], [236, 97], [257, 97], [257, 80], [255, 78], [255, 76], [254, 75], [254, 74], [250, 74], [250, 70], [243, 70], [243, 74], [240, 74], [238, 76]]}, "center": {"35-40": [241, 87], "7-30": [242, 87], "41-84, 91-258": [247, 85]}}, +{"id": 409, "name": "Progress pride flag", "description": "The progress pride flag is a pride flag that combines the rainbow LGBT pride flag, transgender flag, and brown and black stripes to represent LGBT people of color. This flag additionally has a purple circle on a yellow background to represent the intersex pride flag.", "links": {}, "path": {"55-90": [[500, 439], [500, 465], [628, 465], [628, 439]], "109-258, T": [[500, 438], [500, 465], [600, 465], [600, 438]]}, "center": {"55-90": [564, 452], "109-258, T": [550, 452]}}, +{"id": 410, "name": "Quackity", "description": "The design represents a design towards the Mexican streamer and youtuber Quackity, showing representative elements ; like his Merch (Planet Duck), as well as important projects of the same such as the QSMP", "links": {"website": ["https://www.twitch.tv/quackity", "https://twitter.com/quackity"]}, "path": {"55-258, T": [[500, 464], [500, 498], [579, 499], [579, 465], [501, 465]]}, "center": {"55-258, T": [543, 482]}}, +{"id": 411, "name": "MadoHomu", "description": "An art of Madoka Kaname and Homura Akemi from the 2011 anime series Puella Magi Madoka Magica animated by Shaft studio.", "links": {"website": ["https://en.wikipedia.org/wiki/Puella_Magi_Madoka_Magica"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"27-258, T": [[3, 142], [3, 196], [51, 196], [51, 142], [38, 142]]}, "center": {"27-258, T": [27, 169]}}, +{"id": 412, "name": "Taylor Swift", "description": "Representing Eras Tour Poster by Taylor Swift", "links": {"website": ["https://www.taylorswift.com"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"155-258, T": [[-4, 84], [51, 84], [51, 142], [1, 142], [1, 97], [-17, 96], [-17, 84]]}, "center": {"155-258, T": [26, 117]}}, +{"id": 413, "name": "Celeste", "description": "Celeste is a 2D platforming game created by Maddy Thorson. The main character Madeline is confirmed to be transgender.", "links": {"website": ["http://www.celestegame.com/", "https://[https://en.wikipedia.org/wiki/Celeste_(video_game)](https://en.wikipedia.org/wiki/Celeste_(video_game))"], "subreddit": ["celestegame"], "discord": ["celeste"]}, "path": {"35-40": [[238, 66], [238, 78], [236, 80], [236, 90], [237, 90], [237, 96], [245, 96], [245, 93], [247, 90], [247, 87], [246, 86], [246, 66]], "7-30": [[234, 77], [234, 96], [249, 96], [249, 77]], "41-84, 91-258, T": [[238, 78], [236, 80], [236, 97], [257, 97], [257, 80], [255, 78], [255, 76], [254, 75], [254, 74], [250, 74], [250, 70], [243, 70], [243, 74], [240, 74], [238, 76]]}, "center": {"35-40": [241, 87], "7-30": [242, 87], "41-84, 91-258, T": [247, 85]}}, {"id": 414, "name": "Migros", "description": "Migros is Switzerland's largest retail company.", "links": {"website": ["https://en.wikipedia.org/wiki/Migros"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"47-93": [[218, -333], [218, -324], [229, -324], [229, -333]]}, "center": {"47-93": [224, -328]}}, {"id": 415, "name": "2b2t", "description": "2b2t Logo\n2b2t (2 Builders 2 tools) is a famous anarchy minecraft server.", "links": {"subreddit": ["2b2t"]}, "path": {"2-9": [[420, 69], [468, 69], [468, 117], [420, 117]]}, "center": {"2-9": [444, 93]}}, -{"id": 416, "name": "cookie goularte", "description": "this cookie is a symbol of the community of brazilian streamer goularte", "links": {}, "path": {"68-258": [[147, 282], [175, 282], [175, 257], [147, 257]]}, "center": {"68-258": [161, 270]}}, -{"id": 417, "name": "Giruno", "description": "The RABe 501, nicknamed Giruno, is a high-speed electric multiple unit train built by Stadler Rail of Switzerland for the Swiss Federal Railways (SBB).", "links": {"website": ["https://en.wikipedia.org/wiki/SBB_RABe_501"]}, "path": {"48-258": [[258, -389], [252, -384], [250, -369], [405, -369], [403, -376], [396, -383], [386, -386], [345, -387], [260, -386], [258, -388]]}, "center": {"48-258": [350, -378]}}, -{"id": 418, "name": "meiaum logo", "description": "This is the logo of Brazilian streamer MeiaUm", "links": {"website": ["https://www.twitch.tv/omeiaum"], "subreddit": ["meiaum"]}, "path": {"68-258": [[28, 499], [28, 480], [54, 480], [55, 499]]}, "center": {"68-258": [42, 490]}}, -{"id": 419, "name": "Sukidingels", "description": "Sukidingels is a german VTuber streaming on Twitch. Her Mascott is a Panda and she likes Watermelons.", "links": {"website": ["https://www.twitch.tv/sukidingels"], "discord": ["DTXx8FTsKS"]}, "path": {"61-258": [[225, -251], [197, -251], [197, -266], [187, -266], [186, -302], [210, -302], [210, -308], [220, -315], [229, -305], [214, -283], [216, -280], [223, -284], [227, -279], [231, -284], [236, -278], [235, -273], [225, -264], [226, -252]]}, "center": {"61-258": [201, -287]}}, -{"id": 420, "name": "Deutschlandticket", "description": "The Deutschlandticket (lit. 'Germany ticket') often shorted to the D-Ticket, is a subscription public transport ticket for all local public transport, valid in the whole of Germany, that costs 49 euros per month. It was introduced in May of 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/Deutschlandticket", "https://www.bahn.de/angebot/regio/deutschland-ticket"], "subreddit": ["placeDE", "de", "ich_iel"], "discord": ["placeDE"]}, "path": {"64-258": [[772, -396], [772, -415], [774, -417], [813, -417], [815, -415], [815, -396], [813, -394], [774, -394]]}, "center": {"64-258": [794, -405]}}, +{"id": 416, "name": "cookie goularte", "description": "this cookie is a symbol of the community of brazilian streamer goularte", "links": {}, "path": {"68-258, T": [[147, 282], [175, 282], [175, 257], [147, 257]]}, "center": {"68-258, T": [161, 270]}}, +{"id": 417, "name": "Giruno", "description": "The RABe 501, nicknamed Giruno, is a high-speed electric multiple unit train built by Stadler Rail of Switzerland for the Swiss Federal Railways (SBB).", "links": {"website": ["https://en.wikipedia.org/wiki/SBB_RABe_501"]}, "path": {"48-258, T": [[258, -389], [252, -384], [250, -369], [405, -369], [403, -376], [396, -383], [386, -386], [345, -387], [260, -386], [258, -388]]}, "center": {"48-258, T": [350, -378]}}, +{"id": 418, "name": "meiaum logo", "description": "This is the logo of Brazilian streamer MeiaUm", "links": {"website": ["https://www.twitch.tv/omeiaum"], "subreddit": ["meiaum"]}, "path": {"68-258, T": [[28, 499], [28, 480], [54, 480], [55, 499]]}, "center": {"68-258, T": [42, 490]}}, +{"id": 419, "name": "Sukidingels", "description": "Sukidingels is a german VTuber streaming on Twitch. Her Mascott is a Panda and she likes Watermelons.", "links": {"website": ["https://www.twitch.tv/sukidingels"], "discord": ["DTXx8FTsKS"]}, "path": {"61-258, T": [[225, -251], [197, -251], [197, -266], [187, -266], [186, -302], [210, -302], [210, -308], [220, -315], [229, -305], [214, -283], [216, -280], [223, -284], [227, -279], [231, -284], [236, -278], [235, -273], [225, -264], [226, -252]]}, "center": {"61-258, T": [201, -287]}}, +{"id": 420, "name": "Deutschlandticket", "description": "The Deutschlandticket (lit. 'Germany ticket') often shorted to the D-Ticket, is a subscription public transport ticket for all local public transport, valid in the whole of Germany, that costs 49 euros per month. It was introduced in May of 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/Deutschlandticket", "https://www.bahn.de/angebot/regio/deutschland-ticket"], "subreddit": ["placeDE", "de", "ich_iel"], "discord": ["placeDE"]}, "path": {"64-258, T": [[772, -396], [772, -415], [774, -417], [813, -417], [815, -415], [815, -396], [813, -394], [774, -394]]}, "center": {"64-258, T": [794, -405]}}, {"id": 421, "name": "KekLuck", "description": "KekLuck is a variety streamer on Twitch.", "links": {"website": ["https://www.twitch.tv/kekluck"]}, "path": {"20-66": [[-286, -340], [-286, -332], [-278, -332], [-278, -340]]}, "center": {"20-66": [-282, -336]}}, -{"id": 422, "name": "Alliance between Brazil and Portugal", "description": "This alliance was made by the Brazilian streamer 'Cellbit' and the streamer 'Wuant' from Portugal.", "links": {}, "path": {"21-258": [[264, 361], [264, 284], [280, 283], [280, 361]]}, "center": {"21-258": [272, 322]}}, -{"id": 423, "name": "Favela Five", "description": "This art was made by the Forever's community, in tribute to QSMP had received the brazilians into the server, to celebrate the friendship of the five brazilianss and Richarlyson.\n\nThis art features the Brazilian members of QSMP and Richarlyson (their agg son).", "links": {"website": ["https://qsmp.fandom.com/wiki/Brazilian_Members", "https://www.twitch.tv/forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"25-258": [[31, 430], [146, 431], [147, 338], [30, 338]]}, "center": {"25-258": [89, 384]}}, -{"id": 424, "name": "Cellbit's \"C\" Alongside a Blood Zombie", "description": "A Blood Zombie from Ordem Paranormal TTRPG (Paranormal Order), created by brazilian streamer Cellbit.\n\nAlongside the creature, Cellbit's logo (C with a golden B) is drawn.", "links": {"website": ["https://ordemparanormal.com.br/"], "subreddit": ["cellbits", "OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"26-258": [[265, 361], [332, 361], [332, 413], [265, 413]]}, "center": {"26-258": [299, 387]}}, -{"id": 425, "name": "Palácio Nacional da Pena (National Palace of Pena)", "description": "The Palace of Pena is a palace built on the Sintra Hills, located in Sintra, Portugal. It can be seen nearly anywhere in Sintra, due to it being built on the highest peak in the region.\n During the 12th century, the Royal Monastery of Our Lady of Pena was built where the castle once stands, only to be destroyed when the 1755 earthquake that struck Lisbon hit. During the 19th century, Ferdinand II (a German prince who married a Portuguese Queen) bought the Monastery and the land surrounding it. At first, the plan was to restore it to its original form, but eventually the plans grew bigger and the plan changed to expand the original monastery and turn it into a palace. \n Today, this palace is a public monument that anyone can visit. It stands as an almost obligatory stop to anyone who visits Portugal and it was classified by UNESCO as World Heritage in 1995 and it also constitutes as one of the Seven Wonders of Portugal.", "links": {"website": ["https://www.parquesdesintra.pt/en/parks-monuments/park-and-national-palace-of-pena/history/", "https://en.wikipedia.org/wiki/Pena_Palace"]}, "path": {"68-258": [[531, 273], [531, 266], [532, 265], [532, 249], [533, 248], [535, 248], [538, 245], [539, 243], [544, 248], [544, 249], [545, 250], [545, 252], [548, 252], [550, 250], [551, 250], [551, 245], [553, 243], [556, 243], [558, 245], [558, 256], [560, 256], [560, 255], [561, 254], [567, 254], [568, 255], [571, 255], [573, 257], [573, 273], [572, 274], [567, 274], [566, 275], [562, 275], [559, 278], [559, 280], [558, 281], [557, 282], [554, 282], [552, 280], [552, 278], [549, 275], [545, 275], [544, 274], [542, 274], [541, 273], [539, 273], [538, 274], [535, 274], [534, 273], [533, 273], [532, 274]]}, "center": {"68-258": [549, 263]}}, -{"id": 426, "name": "Ordem Paranormal RPG Elements", "description": "Symbols representing the elements from Ordem Paranormal TTRPG (Paranormal Order), created by the brazilian streamer Cellbit.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado", "https://ordemparanormal.com.br/"], "subreddit": ["cellbits", "OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"17-154": [[265, 499], [380, 499], [380, 413], [264, 413]], "155-258": [[265, 413], [380, 413], [380, 501], [265, 501]]}, "center": {"17-154": [322, 456], "155-258": [323, 457]}}, +{"id": 422, "name": "Alliance between Brazil and Portugal", "description": "This alliance was made by the Brazilian streamer 'Cellbit' and the streamer 'Wuant' from Portugal.", "links": {}, "path": {"21-258, T": [[264, 361], [264, 284], [280, 283], [280, 361]]}, "center": {"21-258, T": [272, 322]}}, +{"id": 423, "name": "Favela Five", "description": "This art was made by the Forever's community, in tribute to QSMP had received the brazilians into the server, to celebrate the friendship of the five brazilianss and Richarlyson.\n\nThis art features the Brazilian members of QSMP and Richarlyson (their agg son).", "links": {"website": ["https://qsmp.fandom.com/wiki/Brazilian_Members", "https://www.twitch.tv/forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"25-258, T": [[31, 430], [146, 431], [147, 338], [30, 338]]}, "center": {"25-258, T": [89, 384]}}, +{"id": 424, "name": "Cellbit's \"C\" Alongside a Blood Zombie", "description": "A Blood Zombie from Ordem Paranormal TTRPG (Paranormal Order), created by brazilian streamer Cellbit.\n\nAlongside the creature, Cellbit's logo (C with a golden B) is drawn.", "links": {"website": ["https://ordemparanormal.com.br/"], "subreddit": ["cellbits", "OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"26-258, T": [[265, 361], [332, 361], [332, 413], [265, 413]]}, "center": {"26-258, T": [299, 387]}}, +{"id": 425, "name": "Palácio Nacional da Pena (National Palace of Pena)", "description": "The Palace of Pena is a palace built on the Sintra Hills, located in Sintra, Portugal. It can be seen nearly anywhere in Sintra, due to it being built on the highest peak in the region.\n During the 12th century, the Royal Monastery of Our Lady of Pena was built where the castle once stands, only to be destroyed when the 1755 earthquake that struck Lisbon hit. During the 19th century, Ferdinand II (a German prince who married a Portuguese Queen) bought the Monastery and the land surrounding it. At first, the plan was to restore it to its original form, but eventually the plans grew bigger and the plan changed to expand the original monastery and turn it into a palace. \n Today, this palace is a public monument that anyone can visit. It stands as an almost obligatory stop to anyone who visits Portugal and it was classified by UNESCO as World Heritage in 1995 and it also constitutes as one of the Seven Wonders of Portugal.", "links": {"website": ["https://www.parquesdesintra.pt/en/parks-monuments/park-and-national-palace-of-pena/history/", "https://en.wikipedia.org/wiki/Pena_Palace"]}, "path": {"68-258, T": [[531, 273], [531, 266], [532, 265], [532, 249], [533, 248], [535, 248], [538, 245], [539, 243], [544, 248], [544, 249], [545, 250], [545, 252], [548, 252], [550, 250], [551, 250], [551, 245], [553, 243], [556, 243], [558, 245], [558, 256], [560, 256], [560, 255], [561, 254], [567, 254], [568, 255], [571, 255], [573, 257], [573, 273], [572, 274], [567, 274], [566, 275], [562, 275], [559, 278], [559, 280], [558, 281], [557, 282], [554, 282], [552, 280], [552, 278], [549, 275], [545, 275], [544, 274], [542, 274], [541, 273], [539, 273], [538, 274], [535, 274], [534, 273], [533, 273], [532, 274]]}, "center": {"68-258, T": [549, 263]}}, +{"id": 426, "name": "Ordem Paranormal RPG Elements", "description": "Symbols representing the elements from Ordem Paranormal TTRPG (Paranormal Order), created by the brazilian streamer Cellbit.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado", "https://ordemparanormal.com.br/"], "subreddit": ["cellbits", "OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"17-154": [[265, 499], [380, 499], [380, 413], [264, 413]], "155-258, T": [[265, 413], [380, 413], [380, 501], [265, 501]]}, "center": {"17-154": [322, 456], "155-258, T": [323, 457]}}, {"id": 427, "name": "Slavs", "description": "The largest European ethnolinguistic group", "links": {"website": ["https://en.wikipedia.org/wiki/Slavs"]}, "path": {"65-66": [[339, -154], [399, -154], [399, -185], [500, -185], [500, -149], [632, -149], [632, -120], [464, -120], [464, -72], [339, -72]]}, "center": {"65-66": [420, -116]}}, -{"id": 428, "name": "Enigma do Medo", "description": "Enigma do Medo (enigma of fear) is an upcoming exploration, puzzle and survival game with a deep and engaging narrative in the \"Ordem Paranormal\" RPG universe, created by Rafael Lange (Cellbit). It is being developed in partnership with Dumativa and was funded by a project at Catarse.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/O_Espreitador", "https://store.steampowered.com/app/1507580/Enigma_do_Medo/"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"63-258": [[616, 261], [616, 413], [740, 413], [740, 269], [728, 268], [718, 262], [617, 262]]}, "center": {"63-258": [678, 337]}}, +{"id": 428, "name": "Enigma do Medo", "description": "Enigma do Medo (enigma of fear) is an upcoming exploration, puzzle and survival game with a deep and engaging narrative in the \"Ordem Paranormal\" RPG universe, created by Rafael Lange (Cellbit). It is being developed in partnership with Dumativa and was funded by a project at Catarse.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/O_Espreitador", "https://store.steampowered.com/app/1507580/Enigma_do_Medo/"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"63-258, T": [[616, 261], [616, 413], [740, 413], [740, 269], [728, 268], [718, 262], [617, 262]]}, "center": {"63-258, T": [678, 337]}}, {"id": 429, "name": "Torro", "description": "Torro is a German Twitch streamer.", "links": {"website": ["https://www.twitch.tv/torro"]}, "path": {"62-71": [[681, -114], [681, -97], [689, -97], [689, -114]]}, "center": {"62-71": [685, -105]}}, {"id": 430, "name": "Matt", "description": "Matt is the main actor/pawn in Twitch streamer Edopeh's playthrough of the game RimWorld", "links": {"website": ["https://www.twitch.tv/edopeh"], "discord": ["3HJarG6"]}, "path": {"57-73": [[729, -113], [724, -107], [724, -80], [742, -80], [742, -96], [741, -97], [741, -107], [736, -113]]}, "center": {"57-73": [733, -94]}}, -{"id": 431, "name": "Forever (Forever Player)", "description": "Forever is a streamer and YouTuber known for playing the game Minecraft. He is known for his YouTube series Humanly Impossible, where he performs superhuman feats like breaking an entire mountain in Minecraft. Recently, he was invited to be a participant in fellow YouTuber and streamer Quackity's QSMP.", "links": {"website": ["https://www.twitch.tv/forever", "https://qsmp.fandom.com/wiki/Forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"5-258": [[76, 391], [72, 395], [70, 399], [70, 413], [68, 415], [68, 421], [71, 421], [73, 423], [76, 423], [76, 429], [78, 431], [91, 431], [93, 429], [93, 424], [95, 424], [98, 421], [98, 413], [100, 410], [100, 398], [94, 391]]}, "center": {"5-258": [85, 406]}}, -{"id": 432, "name": "TazerCraft", "description": "TazerCraft is a Brazilian channel made by Pac and Mike, focused on the game Minecraft. They are in the QSMP multi-language Minecraft series.", "links": {"website": ["https://www.youtube.com/@tazercraft", "https://www.twitch.tv/tazercraft"]}, "path": {"29-258": [[43, 344], [40, 346], [35, 351], [33, 354], [33, 364], [38, 369], [38, 378], [41, 381], [41, 384], [43, 386], [78, 386], [80, 388], [91, 388], [98, 378], [98, 374], [95, 368], [95, 366], [98, 361], [98, 353], [93, 348], [59, 348], [54, 344]]}, "center": {"29-258": [66, 367]}}, -{"id": 433, "name": "ElSpreen", "description": "ElSpreen, a.k.a. SpreenDMC, is an Argentinian content creator.", "links": {"website": ["https://www.twitch.tv/elspreen", "https://www.youtube.com/c/SpreenDMC1/videos"], "subreddit": ["spreen"]}, "path": {"68-115": [[850, -72], [851, -134], [779, -135], [781, -72]], "116-152": [[704, -193], [704, -47], [851, -47], [851, -193]], "169-258": [[306, -936], [306, -838], [334, -838], [334, -840], [394, -840], [394, -936]]}, "center": {"68-115": [815, -103], "116-152": [778, -120], "169-258": [350, -887]}}, +{"id": 431, "name": "Forever (Forever Player)", "description": "Forever is a streamer and YouTuber known for playing the game Minecraft. He is known for his YouTube series Humanly Impossible, where he performs superhuman feats like breaking an entire mountain in Minecraft. Recently, he was invited to be a participant in fellow YouTuber and streamer Quackity's QSMP.", "links": {"website": ["https://www.twitch.tv/forever", "https://qsmp.fandom.com/wiki/Forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"5-258, T": [[76, 391], [72, 395], [70, 399], [70, 413], [68, 415], [68, 421], [71, 421], [73, 423], [76, 423], [76, 429], [78, 431], [91, 431], [93, 429], [93, 424], [95, 424], [98, 421], [98, 413], [100, 410], [100, 398], [94, 391]]}, "center": {"5-258, T": [85, 406]}}, +{"id": 432, "name": "TazerCraft", "description": "TazerCraft is a Brazilian channel made by Pac and Mike, focused on the game Minecraft. They are in the QSMP multi-language Minecraft series.", "links": {"website": ["https://www.youtube.com/@tazercraft", "https://www.twitch.tv/tazercraft"]}, "path": {"29-258, T": [[43, 344], [40, 346], [35, 351], [33, 354], [33, 364], [38, 369], [38, 378], [41, 381], [41, 384], [43, 386], [78, 386], [80, 388], [91, 388], [98, 378], [98, 374], [95, 368], [95, 366], [98, 361], [98, 353], [93, 348], [59, 348], [54, 344]]}, "center": {"29-258, T": [66, 367]}}, +{"id": 433, "name": "ElSpreen", "description": "ElSpreen, a.k.a. SpreenDMC, is an Argentinian content creator.", "links": {"website": ["https://www.twitch.tv/elspreen", "https://www.youtube.com/c/SpreenDMC1/videos"], "subreddit": ["spreen"]}, "path": {"68-115": [[850, -72], [851, -134], [779, -135], [781, -72]], "116-152": [[704, -193], [704, -47], [851, -47], [851, -193]], "169-258, T": [[306, -936], [306, -838], [334, -838], [334, -840], [394, -840], [394, -936]]}, "center": {"68-115": [815, -103], "116-152": [778, -120], "169-258, T": [350, -887]}}, {"id": 434, "name": "Nubes", "description": "", "links": {}, "path": {"68": [[827, -119], [832, -116], [835, -116], [841, -116], [845, -116], [847, -117], [849, -118], [850, -120], [850, -123], [849, -125], [846, -126], [844, -128], [840, -130], [838, -130], [836, -131], [831, -131], [812, -134], [788, -121], [787, -113], [784, -113], [780, -110], [779, -107], [780, -105], [783, -104], [790, -104], [797, -104], [800, -106], [800, -109], [798, -111], [796, -113], [792, -114], [789, -114], [787, -114], [787, -119], [787, -120], [801, -129], [809, -133], [814, -134], [822, -133], [830, -132], [819, -137], [833, -131], [835, -130]]}, "center": {"68": [839, -123]}}, -{"id": 435, "name": "spycrab", "description": "This depicts the \"spycrab\" which originated from an action that makes the spy \"crab-walk\", by taking out your disguise kit, crouching, and looking up. The meme exploded in popularity and valve turned it into the iconic \"Spycrab\" plush.", "links": {"subreddit": ["tf2", "france"]}, "path": {"49-55": [[-497, 200], [-497, 212], [-492, 214], [-497, 226], [-489, 231], [-487, 225], [-478, 223], [-472, 228], [-470, 221], [-472, 216], [-471, 202], [-476, 198], [-480, 210], [-486, 209], [-492, 200]], "57-251": [[-494, 211], [-497, 217], [-490, 225], [-494, 239], [-486, 240], [-484, 235], [-475, 233], [-473, 241], [-467, 235], [-469, 230], [-466, 215], [-472, 210], [-478, 220], [-483, 220], [-487, 213]]}, "center": {"49-55": [-485, 217], "57-251": [-482, 227]}}, -{"id": 436, "name": "richarlyson", "description": "richarlyson is a QSMP egg being the son of brazilians", "links": {"website": ["https://qsmp.fandom.com/wiki/Richarlyson"]}, "path": {"68": [[101, 432], [101, 389], [146, 387], [146, 431]]}, "center": {"68-258": [124, 410]}}, -{"id": 437, "name": "lovejoy", "description": "Lovejoy is an indie rock band, The band consists of William Gold as vocalist and rhythm guitarist, Joe Goldsmith as lead guitarist, Mark Boardman as drummer, and Ash Kabosu as bassist, with all four also sharing songwriting.", "links": {}, "path": {"68-258": [[0, 431], [0, 401], [29, 401], [29, 431]]}, "center": {"68": [15, 416]}}, -{"id": 438, "name": "Cactus", "description": "In the game Chrome Dino, cacti are obstacles that the Lonely T-Rex must jump over.", "links": {}, "path": {"68-115": [[843, -114], [840, -109], [837, -106], [837, -89], [839, -87], [841, -87], [841, -73], [845, -73], [845, -86], [847, -86], [849, -88], [849, -103], [847, -105], [845, -105], [845, -112]], "116-152": [[836, -142], [836, -135], [834, -131], [834, -90], [830, -90], [827, -86], [827, -68], [830, -65], [834, -65], [834, -47], [842, -47], [842, -65], [845, -65], [848, -68], [848, -89], [846, -98], [843, -90], [840, -90], [840, -134], [837, -142]], "170-258": [[381, -885], [379, -883], [379, -874], [375, -874], [373, -872], [373, -860], [379, -854], [379, -840], [385, -840], [385, -853], [391, -861], [391, -867], [388, -870], [385, -870], [385, -883], [383, -885]]}, "center": {"68-115": [843, -96], "116-152": [838, -80], "170-258": [382, -863]}}, -{"id": 439, "name": "Shaker of Aromat", "description": "Aromat is a food seasoning, invented and well known in Switzerland.", "links": {}, "path": {"53-258": [[203, -357], [203, -342], [210, -342], [210, -357]]}, "center": {"53-258": [207, -349]}}, +{"id": 435, "name": "spycrab", "description": "This depicts the \"spycrab\" which originated from an action that makes the spy \"crab-walk\", by taking out your disguise kit, crouching, and looking up. The meme exploded in popularity and valve turned it into the iconic \"Spycrab\" plush.", "links": {"subreddit": ["tf2", "france"]}, "path": {"49-55": [[-497, 200], [-497, 212], [-492, 214], [-497, 226], [-489, 231], [-487, 225], [-478, 223], [-472, 228], [-470, 221], [-472, 216], [-471, 202], [-476, 198], [-480, 210], [-486, 209], [-492, 200]], "57-251, T": [[-494, 211], [-497, 217], [-490, 225], [-494, 239], [-486, 240], [-484, 235], [-475, 233], [-473, 241], [-467, 235], [-469, 230], [-466, 215], [-472, 210], [-478, 220], [-483, 220], [-487, 213]]}, "center": {"49-55": [-485, 217], "57-251, T": [-482, 227]}}, +{"id": 436, "name": "richarlyson", "description": "richarlyson is a QSMP egg being the son of brazilians", "links": {"website": ["https://qsmp.fandom.com/wiki/Richarlyson"]}, "path": {"68": [[101, 432], [101, 389], [146, 387], [146, 431]]}, "center": {"68-258, T": [124, 410]}}, +{"id": 437, "name": "lovejoy", "description": "Lovejoy is an indie rock band, The band consists of William Gold as vocalist and rhythm guitarist, Joe Goldsmith as lead guitarist, Mark Boardman as drummer, and Ash Kabosu as bassist, with all four also sharing songwriting.", "links": {}, "path": {"68-258, T": [[0, 431], [0, 401], [29, 401], [29, 431]]}, "center": {"68": [15, 416]}}, +{"id": 438, "name": "Cactus", "description": "In the game Chrome Dino, cacti are obstacles that the Lonely T-Rex must jump over.", "links": {}, "path": {"68-115": [[843, -114], [840, -109], [837, -106], [837, -89], [839, -87], [841, -87], [841, -73], [845, -73], [845, -86], [847, -86], [849, -88], [849, -103], [847, -105], [845, -105], [845, -112]], "116-152": [[836, -142], [836, -135], [834, -131], [834, -90], [830, -90], [827, -86], [827, -68], [830, -65], [834, -65], [834, -47], [842, -47], [842, -65], [845, -65], [848, -68], [848, -89], [846, -98], [843, -90], [840, -90], [840, -134], [837, -142]], "170-258, T": [[381, -885], [379, -883], [379, -874], [375, -874], [373, -872], [373, -860], [379, -854], [379, -840], [385, -840], [385, -853], [391, -861], [391, -867], [388, -870], [385, -870], [385, -883], [383, -885]]}, "center": {"68-115": [843, -96], "116-152": [838, -80], "170-258, T": [382, -863]}}, +{"id": 439, "name": "Shaker of Aromat", "description": "Aromat is a food seasoning, invented and well known in Switzerland.", "links": {}, "path": {"53-258, T": [[203, -357], [203, -342], [210, -342], [210, -357]]}, "center": {"53-258, T": [207, -349]}}, {"id": 440, "name": "Minecraft Hardcore heart", "description": "A heart that appears in the game Minecraft, an infinite open-world sandbox game. Normally, you can respawn if you die, but if you die in Hardcore mode, you cannot respawn and must delete your save file. The hearts depicting player health change to this appearance in Hardcore mode.", "links": {"website": ["https://minecraft.fandom.com/wiki/Hardcore"], "subreddit": ["Minecraft"]}, "path": {"66-71": [[-274, 288], [-278, 284], [-278, 282], [-277, 281], [-276, 280], [-274, 280], [-274, 281], [-273, 280], [-272, 280], [-271, 281], [-270, 282], [-270, 284]], "64-65": [[-284, 279], [-287, 282], [-287, 284], [-282, 289], [-274, 289], [-269, 284], [-269, 282], [-272, 279]]}, "center": {"66-71": [-274, 284], "64-65": [-278, 284]}}, {"id": 441, "name": "Ivan Buhaje", "description": "Sombreado de Ivan Buhaje, mejor conocido como Spreen", "links": {}, "path": {"68-115": [[800, -73], [832, -72], [833, -90], [838, -98], [828, -103], [822, -105], [828, -109], [829, -113], [826, -113], [824, -123], [820, -130], [815, -133], [808, -133], [803, -130], [799, -125], [798, -123], [794, -122], [792, -120], [795, -118], [796, -118], [800, -118], [801, -118], [801, -108], [803, -106], [806, -104], [807, -105], [809, -104], [810, -104], [806, -95], [804, -85], [802, -79], [802, -76]]}, "center": {"68-115": [819, -88]}}, -{"id": 442, "name": "cellbit", "description": "cellbit is a streamer. He is known to be the king of puzzles. He masters a role-playing game called Ordem Paranormal. He is also making a game called Enigma of Fear.", "links": {"website": ["https://www.twitch.tv/cellbit", "https://youtube.fandom.com/wiki/Cellbit"]}, "path": {"25-258": [[38, 391], [38, 394], [37, 394], [31, 400], [31, 401], [32, 402], [32, 407], [35, 411], [35, 415], [34, 416], [34, 423], [36, 425], [39, 425], [39, 429], [41, 431], [53, 431], [55, 429], [55, 425], [57, 425], [59, 423], [59, 412], [61, 410], [61, 397], [55, 391]]}, "center": {"25-258": [47, 405]}}, +{"id": 442, "name": "cellbit", "description": "cellbit is a streamer. He is known to be the king of puzzles. He masters a role-playing game called Ordem Paranormal. He is also making a game called Enigma of Fear.", "links": {"website": ["https://www.twitch.tv/cellbit", "https://youtube.fandom.com/wiki/Cellbit"]}, "path": {"25-258, T": [[38, 391], [38, 394], [37, 394], [31, 400], [31, 401], [32, 402], [32, 407], [35, 411], [35, 415], [34, 416], [34, 423], [36, 425], [39, 425], [39, 429], [41, 431], [53, 431], [55, 429], [55, 425], [57, 425], [59, 423], [59, 412], [61, 410], [61, 397], [55, 391]]}, "center": {"25-258, T": [47, 405]}}, {"id": 443, "name": "Yoylecake and Needy", "description": "Yoylecake is a popular cake featured in the Youtube animated series Battle For Dream Island. Due to the yoyleberries used to make it, eating it makes you turn into metal. \n\nNext to it is Needle, a contestant from the same series. She appears in seasons 1, 2, 3, 4a, and 5.", "links": {"website": ["http://www.bfdi.tv/"], "subreddit": ["BattleForDreamIsland"]}, "path": {"56-74": [[864, -140], [864, -153], [884, -153], [884, -140]]}, "center": {"56-74": [874, -146]}}, -{"id": 444, "name": "Vugnaes sreo", "description": "Vugnaes sreo is a Brazilian meme that started with streamer Felps subscribing to a tutorial on how to sign up for sweepstakes on instagram", "links": {"website": ["https://www.twitch.tv/felps"], "subreddit": ["Felps"], "discord": ["felps"]}, "path": {"68-258": [[1, 478], [1, 433], [54, 433], [54, 478]]}, "center": {"68-258": [28, 456]}}, +{"id": 444, "name": "Vugnaes sreo", "description": "Vugnaes sreo is a Brazilian meme that started with streamer Felps subscribing to a tutorial on how to sign up for sweepstakes on instagram", "links": {"website": ["https://www.twitch.tv/felps"], "subreddit": ["Felps"], "discord": ["felps"]}, "path": {"68-258, T": [[1, 478], [1, 433], [54, 433], [54, 478]]}, "center": {"68-258, T": [28, 456]}}, {"id": 445, "name": "Glass of wine", "description": "This glass of wine was made for Twitch streamer Smashlunatic (Franzi). It was created by fellow streamer edopeh & community.", "links": {"website": ["https://www.twitch.tv/smashlunatic"]}, "path": {"59-73": [[711, -114], [707, -111], [707, -97], [712, -92], [713, -92], [713, -87], [707, -82], [710, -80], [714, -80], [715, -81], [721, -81], [721, -82], [715, -87], [715, -92], [716, -92], [721, -97], [721, -111], [717, -114]]}, "center": {"59-73": [714, -107]}}, -{"id": 446, "name": "Rubius Void monster", "description": "This monster was created by Spanish streamer Rubius as a take on the grotesque Void monsters that organically arise from Void patches on r/place. It is shown petting the dog drawn by Russian streamer Bratishkinoff. It originally had 4 arms that were much thinner and spindly, before being redrawn to look more like an affectionate hold.", "links": {"website": ["https://www.twitch.tv/rubius"], "subreddit": ["ubius"]}, "path": {"68-74": [[742, -70], [735, -63], [732, -61], [731, -58], [728, -53], [727, -49], [718, -47], [704, -47], [704, 6], [701, -1], [695, -9], [687, -17], [679, -27], [670, -34], [663, -42], [658, -45], [652, -43], [648, -39], [630, -24], [616, -18], [607, -18], [598, -17], [591, -17], [587, -13], [584, -5], [587, 1], [597, 1], [605, -7], [610, -13], [618, -13], [643, -27], [653, -35], [659, -36], [666, -30], [677, -19], [684, -10], [699, 8], [706, 16], [705, 42], [705, 49], [699, 50], [685, 61], [674, 69], [668, 72], [664, 75], [658, 79], [652, 85], [646, 89], [640, 92], [633, 94], [636, 99], [645, 98], [654, 88], [673, 78], [688, 67], [705, 53], [705, 76], [689, 92], [681, 100], [668, 112], [662, 121], [658, 126], [659, 138], [671, 132], [668, 125], [676, 113], [691, 95], [704, 85], [706, 91], [724, 91], [737, 91], [742, 96], [758, 95], [775, 96], [776, 96], [773, 124], [769, 139], [763, 149], [754, 151], [746, 145], [738, 138], [733, 134], [727, 132], [717, 133], [715, 134], [717, 136], [737, 143], [752, 159], [762, 178], [765, 212], [759, 221], [764, 229], [774, 229], [782, 226], [783, 210], [777, 198], [775, 183], [773, 160], [776, 144], [780, 124], [785, 95], [795, 97], [813, 96], [817, 96], [837, 122], [844, 121], [851, 114], [857, 107], [862, 96], [865, 92], [874, 91], [876, 91], [880, 87], [884, 82], [884, 77], [884, 57], [882, 57], [879, 35], [877, 54], [878, 62], [876, 69], [874, 70], [874, 74], [879, 80], [879, 85], [877, 87], [870, 86], [857, 87], [857, 79], [858, 75], [860, 72], [859, 65], [858, 58], [859, 48], [858, 45], [857, 43], [856, 43], [854, 45], [854, 55], [854, 62], [855, 71], [854, 72], [854, 78], [854, 88], [853, 94], [856, 95], [856, 96], [853, 102], [848, 110], [841, 117], [836, 116], [831, 108], [824, 98], [823, 96], [826, 96], [851, 96], [850, -47], [835, -47], [830, -62], [825, -68], [819, -72], [817, -71], [822, -65], [826, -62], [827, -57], [827, -55], [826, -51], [822, -48], [819, -46], [732, -47], [732, -51], [731, -53], [732, -56], [735, -60]], "75-155": [[704, -47], [704, 4], [697, 1], [683, 1], [672, -6], [657, -6], [653, -9], [650, -9], [640, -22], [612, -22], [611, -21], [601, -21], [588, -15], [594, -6], [596, -6], [600, -3], [601, -4], [608, -4], [609, -3], [611, -5], [611, -7], [615, -12], [619, -14], [639, -14], [641, -8], [650, -1], [660, -1], [668, 4], [676, 4], [684, 7], [690, 7], [695, 9], [697, 9], [702, 14], [704, 14], [703, 32], [682, 32], [673, 37], [671, 39], [662, 39], [654, 34], [649, 34], [636, 30], [557, 30], [558, 29], [558, 28], [556, 25], [553, 25], [553, 23], [549, 17], [541, 17], [540, 18], [526, 18], [526, 22], [529, 24], [533, 30], [539, 36], [539, 37], [520, 52], [520, 55], [532, 68], [535, 69], [542, 75], [547, 81], [555, 86], [559, 86], [559, 83], [572, 83], [574, 81], [575, 78], [575, 75], [568, 68], [563, 67], [560, 65], [560, 61], [565, 54], [565, 52], [563, 50], [562, 50], [549, 63], [546, 64], [538, 60], [536, 57], [534, 57], [532, 54], [546, 42], [546, 40], [547, 40], [551, 42], [555, 42], [555, 35], [557, 33], [557, 30], [634, 30], [634, 35], [641, 42], [648, 42], [666, 49], [671, 49], [676, 45], [685, 41], [691, 41], [691, 40], [704, 40], [704, 43], [699, 46], [695, 46], [690, 50], [690, 51], [674, 54], [670, 57], [661, 57], [668, 64], [669, 63], [673, 63], [678, 59], [688, 59], [697, 53], [700, 53], [692, 61], [685, 65], [670, 79], [663, 79], [662, 78], [657, 78], [648, 68], [636, 59], [637, 58], [637, 49], [639, 46], [639, 43], [635, 43], [631, 47], [629, 47], [624, 43], [618, 46], [618, 47], [613, 51], [614, 53], [625, 63], [630, 64], [649, 79], [651, 79], [654, 82], [654, 84], [659, 85], [660, 86], [668, 86], [679, 80], [688, 71], [694, 69], [705, 60], [705, 96], [851, 96], [851, -47]], "156-258": [[704, -47], [704, -3], [693, 5], [634, 32], [634, 35], [658, 54], [687, 48], [699, 41], [704, 41], [704, 66], [697, 71], [677, 78], [669, 72], [657, 61], [657, 57], [654, 54], [649, 58], [649, 63], [655, 72], [645, 72], [635, 75], [624, 75], [613, 80], [613, 82], [615, 85], [615, 89], [543, 89], [543, 77], [539, 77], [535, 70], [530, 56], [530, 52], [533, 50], [529, 46], [529, 41], [531, 39], [536, 39], [545, 41], [545, 43], [553, 51], [553, 55], [557, 57], [560, 60], [560, 62], [558, 64], [558, 68], [556, 68], [556, 70], [543, 75], [543, 89], [615, 89], [615, 91], [624, 91], [625, 92], [626, 92], [635, 86], [636, 82], [640, 82], [645, 86], [645, 89], [657, 89], [670, 96], [705, 96], [705, 129], [884, 129], [884, -47], [869, -47], [869, -62], [863, -70], [860, -70], [847, -47], [738, -47], [732, -55], [740, -72], [737, -72], [724, -59], [720, -47]]}, "center": {"68-74": [778, 24], "75-155": [775, 25], "156-258": [792, 41]}}, -{"id": 447, "name": "Ukranian Coat of Arms(Tryzub)", "description": "Small coat of arms of Ukraine - tryzub", "links": {}, "path": {"68-258": [[-144, -156], [-99, -156], [-99, -105], [-100, -103], [-104, -100], [-108, -98], [-117, -94], [-121, -92], [-122, -92], [-130, -96], [-135, -98], [-139, -100], [-141, -101], [-143, -103], [-144, -105]]}, "center": {"68-258": [-121, -124]}}, -{"id": 448, "name": "Felps", "description": "Felps is a Brazilian streamer who plays several games. He is known for playing Cookie Clicker, having 8000 hours on it.", "links": {"website": ["https://www.twitch.tv/felps", "https://youtube.fandom.com/wiki/Felps"]}, "path": {"26-76": [[117, 344], [112, 347], [109, 354], [109, 359], [114, 364], [111, 368], [111, 374], [113, 376], [115, 376], [116, 378], [116, 382], [118, 385], [129, 385], [131, 383], [131, 376], [133, 376], [135, 374], [135, 368], [133, 365], [133, 362], [136, 360], [136, 349], [128, 344]], "77-258": [[118, 346], [115, 349], [115, 353], [114, 355], [111, 358], [111, 364], [113, 367], [113, 370], [112, 370], [109, 373], [109, 377], [110, 378], [110, 382], [118, 386], [131, 386], [136, 382], [136, 380], [137, 379], [137, 375], [134, 371], [134, 365], [135, 364], [135, 358], [132, 355], [131, 355], [130, 353], [130, 348], [128, 346]]}, "center": {"26-76": [123, 356], "77-258": [123, 375]}}, -{"id": 449, "name": "Lonely T-Rex", "description": "The Lonely T-Rex is the playable dinosaur character in Chrome Dino, a game that appears when the Google Chrome internet browser is offline.", "links": {"website": ["https://en.wikipedia.org/wiki/Dinosaur_Game"]}, "path": {"68-115": [[785, -80], [787, -80], [788, -80], [788, -82], [787, -82], [788, -83], [789, -83], [789, -80], [791, -80], [792, -80], [792, -82], [791, -82], [791, -84], [792, -83], [793, -84], [792, -85], [792, -87], [794, -87], [794, -89], [795, -89], [795, -88], [796, -88], [797, -88], [797, -91], [795, -91], [795, -92], [794, -92], [795, -92], [795, -93], [798, -93], [798, -94], [798, -95], [796, -95], [795, -95], [798, -95], [798, -94], [799, -94], [800, -94], [800, -95], [800, -96], [799, -96], [799, -100], [798, -100], [798, -101], [790, -101], [790, -99], [789, -98], [789, -96], [788, -94], [788, -93], [784, -93], [784, -94], [784, -96], [783, -96], [782, -96], [782, -97], [782, -98], [781, -98], [780, -98], [780, -90], [781, -90], [781, -89], [782, -89], [782, -88], [782, -87], [783, -87], [783, -86], [783, -85], [784, -85], [784, -83], [784, -81]], "116-149": [[728, -87], [722, -85], [720, -82], [720, -73], [718, -71], [710, -71], [708, -82], [706, -80], [706, -69], [711, -57], [713, -55], [713, -47], [724, -47], [724, -56], [729, -60], [729, -62], [735, -62], [735, -68], [738, -68], [738, -72], [739, -72], [742, -75], [742, -81], [740, -85]], "170-258": [[316, -858], [314, -856], [314, -851], [312, -849], [311, -849], [308, -853], [307, -853], [307, -847], [309, -844], [312, -842], [312, -838], [320, -838], [320, -844], [323, -844], [323, -848], [324, -848], [324, -852], [325, -852], [325, -856], [323, -858]]}, "center": {"68-115": [788, -88], "116-149": [730, -77], "170-258": [319, -853]}}, -{"id": 450, "name": "Tilting Window", "description": "German windows can tilt and are therefore better than windows that don't tilt.", "links": {"website": ["https://www.reddit.com/r/me_irl/comments/u1ts2i/me_irl/"], "subreddit": ["de", "ich_iel", "placeDE"]}, "path": {"68-258": [[-427, -434], [-427, -398], [-399, -398], [-396, -432]]}, "center": {"68-258": [-412, -416]}}, -{"id": 451, "name": "Pochita x Hachikuji", "description": "Pochita is a character originating from \"Chainsaw Man\" as the main protagonists' friend/sidekick. This depiction replaces Pochita's face with Hachikuji's infamous \"kamimashita\" (\"I stuttert\") face from the \"Monogatari Series\".", "links": {"subreddit": ["ChainsawMan", "araragi"]}, "path": {"57-258": [[764, -346], [764, -344], [767, -341], [767, -334], [769, -332], [769, -331], [770, -330], [771, -330], [772, -329], [773, -329], [774, -328], [777, -328], [778, -327], [780, -327], [781, -326], [791, -326], [792, -325], [796, -325], [796, -326], [797, -327], [798, -327], [799, -326], [801, -326], [802, -327], [804, -327], [804, -326], [806, -326], [807, -327], [807, -329], [806, -330], [807, -331], [808, -332], [808, -336], [807, -337], [807, -340], [806, -341], [805, -342], [809, -346], [809, -347], [810, -348], [810, -352], [810, -353], [811, -353], [809, -353], [809, -356], [808, -357], [807, -357], [806, -358], [801, -358], [794, -351], [793, -352], [793, -354], [792, -355], [790, -357], [781, -357], [780, -356], [779, -356], [777, -354], [777, -350], [778, -349], [778, -348], [779, -347], [778, -348], [779, -348], [779, -346], [776, -346], [774, -344], [774, -343], [773, -342], [772, -340], [772, -339], [771, -338], [771, -335], [770, -335], [769, -336], [768, -338], [768, -339], [767, -340], [767, -342], [768, -342], [770, -344], [770, -346]]}, "center": {"57-258": [790, -339]}}, +{"id": 446, "name": "Rubius Void monster", "description": "This monster was created by Spanish streamer Rubius as a take on the grotesque Void monsters that organically arise from Void patches on r/place. It is shown petting the dog drawn by Russian streamer Bratishkinoff. It originally had 4 arms that were much thinner and spindly, before being redrawn to look more like an affectionate hold.", "links": {"website": ["https://www.twitch.tv/rubius"], "subreddit": ["ubius"]}, "path": {"68-74": [[742, -70], [735, -63], [732, -61], [731, -58], [728, -53], [727, -49], [718, -47], [704, -47], [704, 6], [701, -1], [695, -9], [687, -17], [679, -27], [670, -34], [663, -42], [658, -45], [652, -43], [648, -39], [630, -24], [616, -18], [607, -18], [598, -17], [591, -17], [587, -13], [584, -5], [587, 1], [597, 1], [605, -7], [610, -13], [618, -13], [643, -27], [653, -35], [659, -36], [666, -30], [677, -19], [684, -10], [699, 8], [706, 16], [705, 42], [705, 49], [699, 50], [685, 61], [674, 69], [668, 72], [664, 75], [658, 79], [652, 85], [646, 89], [640, 92], [633, 94], [636, 99], [645, 98], [654, 88], [673, 78], [688, 67], [705, 53], [705, 76], [689, 92], [681, 100], [668, 112], [662, 121], [658, 126], [659, 138], [671, 132], [668, 125], [676, 113], [691, 95], [704, 85], [706, 91], [724, 91], [737, 91], [742, 96], [758, 95], [775, 96], [776, 96], [773, 124], [769, 139], [763, 149], [754, 151], [746, 145], [738, 138], [733, 134], [727, 132], [717, 133], [715, 134], [717, 136], [737, 143], [752, 159], [762, 178], [765, 212], [759, 221], [764, 229], [774, 229], [782, 226], [783, 210], [777, 198], [775, 183], [773, 160], [776, 144], [780, 124], [785, 95], [795, 97], [813, 96], [817, 96], [837, 122], [844, 121], [851, 114], [857, 107], [862, 96], [865, 92], [874, 91], [876, 91], [880, 87], [884, 82], [884, 77], [884, 57], [882, 57], [879, 35], [877, 54], [878, 62], [876, 69], [874, 70], [874, 74], [879, 80], [879, 85], [877, 87], [870, 86], [857, 87], [857, 79], [858, 75], [860, 72], [859, 65], [858, 58], [859, 48], [858, 45], [857, 43], [856, 43], [854, 45], [854, 55], [854, 62], [855, 71], [854, 72], [854, 78], [854, 88], [853, 94], [856, 95], [856, 96], [853, 102], [848, 110], [841, 117], [836, 116], [831, 108], [824, 98], [823, 96], [826, 96], [851, 96], [850, -47], [835, -47], [830, -62], [825, -68], [819, -72], [817, -71], [822, -65], [826, -62], [827, -57], [827, -55], [826, -51], [822, -48], [819, -46], [732, -47], [732, -51], [731, -53], [732, -56], [735, -60]], "75-155": [[704, -47], [704, 4], [697, 1], [683, 1], [672, -6], [657, -6], [653, -9], [650, -9], [640, -22], [612, -22], [611, -21], [601, -21], [588, -15], [594, -6], [596, -6], [600, -3], [601, -4], [608, -4], [609, -3], [611, -5], [611, -7], [615, -12], [619, -14], [639, -14], [641, -8], [650, -1], [660, -1], [668, 4], [676, 4], [684, 7], [690, 7], [695, 9], [697, 9], [702, 14], [704, 14], [703, 32], [682, 32], [673, 37], [671, 39], [662, 39], [654, 34], [649, 34], [636, 30], [557, 30], [558, 29], [558, 28], [556, 25], [553, 25], [553, 23], [549, 17], [541, 17], [540, 18], [526, 18], [526, 22], [529, 24], [533, 30], [539, 36], [539, 37], [520, 52], [520, 55], [532, 68], [535, 69], [542, 75], [547, 81], [555, 86], [559, 86], [559, 83], [572, 83], [574, 81], [575, 78], [575, 75], [568, 68], [563, 67], [560, 65], [560, 61], [565, 54], [565, 52], [563, 50], [562, 50], [549, 63], [546, 64], [538, 60], [536, 57], [534, 57], [532, 54], [546, 42], [546, 40], [547, 40], [551, 42], [555, 42], [555, 35], [557, 33], [557, 30], [634, 30], [634, 35], [641, 42], [648, 42], [666, 49], [671, 49], [676, 45], [685, 41], [691, 41], [691, 40], [704, 40], [704, 43], [699, 46], [695, 46], [690, 50], [690, 51], [674, 54], [670, 57], [661, 57], [668, 64], [669, 63], [673, 63], [678, 59], [688, 59], [697, 53], [700, 53], [692, 61], [685, 65], [670, 79], [663, 79], [662, 78], [657, 78], [648, 68], [636, 59], [637, 58], [637, 49], [639, 46], [639, 43], [635, 43], [631, 47], [629, 47], [624, 43], [618, 46], [618, 47], [613, 51], [614, 53], [625, 63], [630, 64], [649, 79], [651, 79], [654, 82], [654, 84], [659, 85], [660, 86], [668, 86], [679, 80], [688, 71], [694, 69], [705, 60], [705, 96], [851, 96], [851, -47]], "156-258, T": [[704, -47], [704, -3], [693, 5], [634, 32], [634, 35], [658, 54], [687, 48], [699, 41], [704, 41], [704, 66], [697, 71], [677, 78], [669, 72], [657, 61], [657, 57], [654, 54], [649, 58], [649, 63], [655, 72], [645, 72], [635, 75], [624, 75], [613, 80], [613, 82], [615, 85], [615, 89], [543, 89], [543, 77], [539, 77], [535, 70], [530, 56], [530, 52], [533, 50], [529, 46], [529, 41], [531, 39], [536, 39], [545, 41], [545, 43], [553, 51], [553, 55], [557, 57], [560, 60], [560, 62], [558, 64], [558, 68], [556, 68], [556, 70], [543, 75], [543, 89], [615, 89], [615, 91], [624, 91], [625, 92], [626, 92], [635, 86], [636, 82], [640, 82], [645, 86], [645, 89], [657, 89], [670, 96], [705, 96], [705, 129], [884, 129], [884, -47], [869, -47], [869, -62], [863, -70], [860, -70], [847, -47], [738, -47], [732, -55], [740, -72], [737, -72], [724, -59], [720, -47]]}, "center": {"68-74": [778, 24], "75-155": [775, 25], "156-258, T": [792, 41]}}, +{"id": 447, "name": "Ukranian Coat of Arms(Tryzub)", "description": "Small coat of arms of Ukraine - tryzub", "links": {}, "path": {"68-258, T": [[-144, -156], [-99, -156], [-99, -105], [-100, -103], [-104, -100], [-108, -98], [-117, -94], [-121, -92], [-122, -92], [-130, -96], [-135, -98], [-139, -100], [-141, -101], [-143, -103], [-144, -105]]}, "center": {"68-258, T": [-121, -124]}}, +{"id": 448, "name": "Felps", "description": "Felps is a Brazilian streamer who plays several games. He is known for playing Cookie Clicker, having 8000 hours on it.", "links": {"website": ["https://www.twitch.tv/felps", "https://youtube.fandom.com/wiki/Felps"]}, "path": {"26-76": [[117, 344], [112, 347], [109, 354], [109, 359], [114, 364], [111, 368], [111, 374], [113, 376], [115, 376], [116, 378], [116, 382], [118, 385], [129, 385], [131, 383], [131, 376], [133, 376], [135, 374], [135, 368], [133, 365], [133, 362], [136, 360], [136, 349], [128, 344]], "77-258, T": [[118, 346], [115, 349], [115, 353], [114, 355], [111, 358], [111, 364], [113, 367], [113, 370], [112, 370], [109, 373], [109, 377], [110, 378], [110, 382], [118, 386], [131, 386], [136, 382], [136, 380], [137, 379], [137, 375], [134, 371], [134, 365], [135, 364], [135, 358], [132, 355], [131, 355], [130, 353], [130, 348], [128, 346]]}, "center": {"26-76": [123, 356], "77-258, T": [123, 375]}}, +{"id": 449, "name": "Lonely T-Rex", "description": "The Lonely T-Rex is the playable dinosaur character in Chrome Dino, a game that appears when the Google Chrome internet browser is offline.", "links": {"website": ["https://en.wikipedia.org/wiki/Dinosaur_Game"]}, "path": {"68-115": [[785, -80], [787, -80], [788, -80], [788, -82], [787, -82], [788, -83], [789, -83], [789, -80], [791, -80], [792, -80], [792, -82], [791, -82], [791, -84], [792, -83], [793, -84], [792, -85], [792, -87], [794, -87], [794, -89], [795, -89], [795, -88], [796, -88], [797, -88], [797, -91], [795, -91], [795, -92], [794, -92], [795, -92], [795, -93], [798, -93], [798, -94], [798, -95], [796, -95], [795, -95], [798, -95], [798, -94], [799, -94], [800, -94], [800, -95], [800, -96], [799, -96], [799, -100], [798, -100], [798, -101], [790, -101], [790, -99], [789, -98], [789, -96], [788, -94], [788, -93], [784, -93], [784, -94], [784, -96], [783, -96], [782, -96], [782, -97], [782, -98], [781, -98], [780, -98], [780, -90], [781, -90], [781, -89], [782, -89], [782, -88], [782, -87], [783, -87], [783, -86], [783, -85], [784, -85], [784, -83], [784, -81]], "116-149": [[728, -87], [722, -85], [720, -82], [720, -73], [718, -71], [710, -71], [708, -82], [706, -80], [706, -69], [711, -57], [713, -55], [713, -47], [724, -47], [724, -56], [729, -60], [729, -62], [735, -62], [735, -68], [738, -68], [738, -72], [739, -72], [742, -75], [742, -81], [740, -85]], "170-258, T": [[316, -858], [314, -856], [314, -851], [312, -849], [311, -849], [308, -853], [307, -853], [307, -847], [309, -844], [312, -842], [312, -838], [320, -838], [320, -844], [323, -844], [323, -848], [324, -848], [324, -852], [325, -852], [325, -856], [323, -858]]}, "center": {"68-115": [788, -88], "116-149": [730, -77], "170-258, T": [319, -853]}}, +{"id": 450, "name": "Tilting Window", "description": "German windows can tilt and are therefore better than windows that don't tilt.", "links": {"website": ["https://www.reddit.com/r/me_irl/comments/u1ts2i/me_irl/"], "subreddit": ["de", "ich_iel", "placeDE"]}, "path": {"68-258, T": [[-427, -434], [-427, -398], [-399, -398], [-396, -432]]}, "center": {"68-258, T": [-412, -416]}}, +{"id": 451, "name": "Pochita x Hachikuji", "description": "Pochita is a character originating from \"Chainsaw Man\" as the main protagonists' friend/sidekick. This depiction replaces Pochita's face with Hachikuji's infamous \"kamimashita\" (\"I stuttert\") face from the \"Monogatari Series\".", "links": {"subreddit": ["ChainsawMan", "araragi"]}, "path": {"57-258, T": [[764, -346], [764, -344], [767, -341], [767, -334], [769, -332], [769, -331], [770, -330], [771, -330], [772, -329], [773, -329], [774, -328], [777, -328], [778, -327], [780, -327], [781, -326], [791, -326], [792, -325], [796, -325], [796, -326], [797, -327], [798, -327], [799, -326], [801, -326], [802, -327], [804, -327], [804, -326], [806, -326], [807, -327], [807, -329], [806, -330], [807, -331], [808, -332], [808, -336], [807, -337], [807, -340], [806, -341], [805, -342], [809, -346], [809, -347], [810, -348], [810, -352], [810, -353], [811, -353], [809, -353], [809, -356], [808, -357], [807, -357], [806, -358], [801, -358], [794, -351], [793, -352], [793, -354], [792, -355], [790, -357], [781, -357], [780, -356], [779, -356], [777, -354], [777, -350], [778, -349], [778, -348], [779, -347], [778, -348], [779, -348], [779, -346], [776, -346], [774, -344], [774, -343], [773, -342], [772, -340], [772, -339], [771, -338], [771, -335], [770, -335], [769, -336], [768, -338], [768, -339], [767, -340], [767, -342], [768, -342], [770, -344], [770, -346]]}, "center": {"57-258, T": [790, -339]}}, {"id": 452, "name": "Master Ball", "description": "A Master Ball is a type of Poké Ball that was introduced in the first generation of Pokémon games. It can catch a Pokémon without fail.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Master_Ball"], "subreddit": ["pokemon"]}, "path": {"68-74": [[-41, 178], [-44, 180], [-47, 184], [-47, 186], [-43, 191], [-36, 191], [-34, 189], [-32, 186], [-32, 184], [-34, 181], [-38, 178]]}, "center": {"68-74": [-39, 185]}}, -{"id": 453, "name": "Otti", "description": "Schagges left the cage open...\nMonsters are free!\nHUiiiiiiii", "links": {"website": ["https://twitch.tv/schagges"]}, "path": {"68-258": [[220, -287], [223, -291], [229, -291], [232, -287], [228, -282], [224, -282]]}, "center": {"68-258": [226, -286]}}, +{"id": 453, "name": "Otti", "description": "Schagges left the cage open...\nMonsters are free!\nHUiiiiiiii", "links": {"website": ["https://twitch.tv/schagges"]}, "path": {"68-258, T": [[220, -287], [223, -291], [229, -291], [232, -287], [228, -282], [224, -282]]}, "center": {"68-258, T": [226, -286]}}, {"id": 454, "name": "Emote from Suun", "description": "The image shown on the canvas here is an emote from the twitch streamer Suun.", "links": {"website": ["https://www.twitch.tv/suun"]}, "path": {"68": [[704, -115], [705, -97], [691, -97], [690, -115]]}, "center": {"68": [698, -106]}}, {"id": 455, "name": "A glas of wine", "description": "While creating the pawn to the right of that bottle a twitch streamerin named \"Smashlunatic\" requested to paint the glas of wine for her.", "links": {"website": ["https://www.twitch.tv/smashlunatic"]}, "path": {"66": [[723, -115], [724, -79], [706, -79], [704, -114]]}, "center": {"66": [714, -95]}}, {"id": 456, "name": "Worldbox logo", "description": "Worldbox is a popular sandbox pc/mobile game where you shape the world to your liking.", "links": {"subreddit": ["Worldbox"]}, "path": {"61-70": [[864, -153], [884, -153], [884, -174], [864, -174]]}, "center": {"61-70": [874, -163]}}, {"id": 457, "name": "Flag of Israel", "description": "Israel, officially the State of Israel, is a country in the Middle East. The basic design of Israel's flag recalls the Tallit, the Jewish prayer shawl, which is white with black or blue stripes. The symbol in the center represents the Star of David, a Jewish symbol dating from late medieval Prague, Czech Republic, which was adopted by the First Zionist Congress in 1897.\n\nLater in the event this was turned into the flag of Palestine by Twitch streamer vodkafunky1.", "links": {"website": ["https://en.wikipedia.org/wiki/Israel", "https://en.wikipedia.org/wiki/Flag_of_Israel"], "subreddit": ["Israel"], "discord": ["israel"]}, "path": {"52-211": [[339, -194], [339, -176], [379, -176], [379, -194]]}, "center": {"52-211": [359, -185]}}, -{"id": 458, "name": "Avicii", "description": "Here we see the cover of the album \"Stories\" by Avicii. In the picture we see Avicii wearing a backwards cap and his face being covered in multiple different colors. Next to it is the Avicii logo. Stories is the second studio album by Swedish electronic music producer Avicii, released on 2 October 2015.", "links": {"website": ["https://avicii.com", "https://avicii.com"], "subreddit": ["Avicii"], "discord": ["Avicii"]}, "path": {"135-258": [[260, -215], [260, -194], [273, -194], [273, -215], [252, -223], [252, -196], [287, -195], [287, -205], [274, -221], [252, -224]]}, "center": {"135-258": [280, -203]}}, -{"id": 459, "name": "Flag of Liechtenstein", "description": "Liechtenstein is a small country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Liechtenstein", "https://en.wikipedia.org/wiki/Flag_of_Liechtenstein"], "subreddit": ["liechtenstein"]}, "path": {"44-59": [[225, -322], [225, -311], [237, -311], [237, -313], [240, -315], [240, -322]], "60-75": [[222, -322], [222, -311], [237, -311], [237, -313], [240, -313], [240, -322]], "85-258": [[223, -322], [223, -311], [238, -311], [238, -322]]}, "center": {"44-59": [233, -316], "60-75": [231, -316], "85-258": [231, -316]}}, -{"id": 460, "name": "Rain World", "description": "Rain World is a 2017 video game made by the indie studio Videocult. This art includes a larger drawing of the Survivor, a slugcat that can be played in the base game, as well as smaller drawings of all the other slugcats, including those added in the DLC Rain World: Downpour.\n\nThe art also includes five of the six iterators whose full names are mentioned in the game, Five Pebbles, Looks to the Moon, No Significant Harassment, Seven red Suns and Sliver of Straw.\n\nThe Survivor is holding a karma flower and an explosive spear, and the image also includes drawings of a blue fruit, which is basic food found in the game, a neuron fly and a squidcada. The Survivor also bears the mark of communication.", "links": {"website": ["https://rainworldgame.com/", "https://store.steampowered.com/app/312520/Rain_World/", "https://en.wikipedia.org/wiki/Rain_World"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"27-54": [[469, -368], [469, -363], [470, -363], [470, -342], [500, -342], [500, -368]], "55-258": [[469, -368], [469, -363], [470, -363], [470, -344], [469, -344], [469, -341], [470, -342], [470, -328], [498, -328], [498, -337], [500, -337], [500, -342], [518, -342], [518, -368]]}, "center": {"27-54": [485, -355], "55-258": [487, -351]}}, -{"id": 461, "name": "Raised Fist on The Pride Flag", "description": "The Raised Fist on The Pride Flag shows that the left community stands together in support of LGBTQ rights and against discrimination and oppression.\nFCK FPÖ AFD is against rightwing parties in Austria and Germany.\nInitiated by Dekarldent a german Streamer", "links": {"website": ["https://en.wikipedia.org/wiki/Socialism", "https://en.wikipedia.org/wiki/LGBT"]}, "path": {"55-258": [[600, -348], [600, -287], [648, -287], [648, -348]]}, "center": {"55-258": [624, -317]}}, -{"id": 462, "name": "University of Michigan", "description": "A depiction of the logo (M) and slogan (Go Blue) of the University of Michigan in Ann Arbor, MI, United States. 45-23 depicts Michigan's victorious fall 2022 football score against rival Ohio State University.\n\nThe r/MichiganWolverines community stands in solidarity with Black Company, r/Save3rdPartyApps.", "links": {"website": ["https://umich.edu/", "https://en.wikipedia.org/wiki/University_of_Michigan"], "subreddit": ["uofm", "MichiganWolverines"]}, "path": {"8": [[-271, 359], [-235, 359], [-235, 322], [-271, 322]], "55-56": [[674, -368], [674, -327], [710, -327], [710, -368]], "4-7": [[-271, 315], [-271, 359], [-236, 359], [-236, 315]], "9-11": [[-262, 359], [-235, 359], [-235, 323], [-262, 323]], "57-74": [[674, -368], [674, -348], [710, -348], [710, -368]], "75-258": [[674, -368], [674, -326], [710, -326], [710, -368]]}, "center": {"8": [-253, 341], "55-56": [692, -347], "4-7": [-253, 337], "9-11": [-248, 341], "57-74": [692, -358], "75-258": [692, -347]}}, +{"id": 458, "name": "Avicii", "description": "Here we see the cover of the album \"Stories\" by Avicii. In the picture we see Avicii wearing a backwards cap and his face being covered in multiple different colors. Next to it is the Avicii logo. Stories is the second studio album by Swedish electronic music producer Avicii, released on 2 October 2015.", "links": {"website": ["https://avicii.com", "https://avicii.com"], "subreddit": ["Avicii"], "discord": ["Avicii"]}, "path": {"135-258, T": [[260, -215], [260, -194], [273, -194], [273, -215], [252, -223], [252, -196], [287, -195], [287, -205], [274, -221], [252, -224]]}, "center": {"135-258, T": [280, -203]}}, +{"id": 459, "name": "Flag of Liechtenstein", "description": "Liechtenstein is a small country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Liechtenstein", "https://en.wikipedia.org/wiki/Flag_of_Liechtenstein"], "subreddit": ["liechtenstein"]}, "path": {"44-59": [[225, -322], [225, -311], [237, -311], [237, -313], [240, -315], [240, -322]], "60-75": [[222, -322], [222, -311], [237, -311], [237, -313], [240, -313], [240, -322]], "85-258, T": [[223, -322], [223, -311], [238, -311], [238, -322]]}, "center": {"44-59": [233, -316], "60-75": [231, -316], "85-258, T": [231, -316]}}, +{"id": 460, "name": "Rain World", "description": "Rain World is a 2017 video game made by the indie studio Videocult. This art includes a larger drawing of the Survivor, a slugcat that can be played in the base game, as well as smaller drawings of all the other slugcats, including those added in the DLC Rain World: Downpour.\n\nThe art also includes five of the six iterators whose full names are mentioned in the game, Five Pebbles, Looks to the Moon, No Significant Harassment, Seven red Suns and Sliver of Straw.\n\nThe Survivor is holding a karma flower and an explosive spear, and the image also includes drawings of a blue fruit, which is basic food found in the game, a neuron fly and a squidcada. The Survivor also bears the mark of communication.", "links": {"website": ["https://rainworldgame.com/", "https://store.steampowered.com/app/312520/Rain_World/", "https://en.wikipedia.org/wiki/Rain_World"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"27-54": [[469, -368], [469, -363], [470, -363], [470, -342], [500, -342], [500, -368]], "55-258, T": [[469, -368], [469, -363], [470, -363], [470, -344], [469, -344], [469, -341], [470, -342], [470, -328], [498, -328], [498, -337], [500, -337], [500, -342], [518, -342], [518, -368]]}, "center": {"27-54": [485, -355], "55-258, T": [487, -351]}}, +{"id": 461, "name": "Raised Fist on The Pride Flag", "description": "The Raised Fist on The Pride Flag shows that the left community stands together in support of LGBTQ rights and against discrimination and oppression.\nFCK FPÖ AFD is against rightwing parties in Austria and Germany.\nInitiated by Dekarldent a german Streamer", "links": {"website": ["https://en.wikipedia.org/wiki/Socialism", "https://en.wikipedia.org/wiki/LGBT"]}, "path": {"55-258, T": [[600, -348], [600, -287], [648, -287], [648, -348]]}, "center": {"55-258, T": [624, -317]}}, +{"id": 462, "name": "University of Michigan", "description": "A depiction of the logo (M) and slogan (Go Blue) of the University of Michigan in Ann Arbor, MI, United States. 45-23 depicts Michigan's victorious fall 2022 football score against rival Ohio State University.\n\nThe r/MichiganWolverines community stands in solidarity with Black Company, r/Save3rdPartyApps.", "links": {"website": ["https://umich.edu/", "https://en.wikipedia.org/wiki/University_of_Michigan"], "subreddit": ["uofm", "MichiganWolverines"]}, "path": {"8": [[-271, 359], [-235, 359], [-235, 322], [-271, 322]], "55-56": [[674, -368], [674, -327], [710, -327], [710, -368]], "4-7": [[-271, 315], [-271, 359], [-236, 359], [-236, 315]], "9-11": [[-262, 359], [-235, 359], [-235, 323], [-262, 323]], "57-74": [[674, -368], [674, -348], [710, -348], [710, -368]], "75-258, T": [[674, -368], [674, -326], [710, -326], [710, -368]]}, "center": {"8": [-253, 341], "55-56": [692, -347], "4-7": [-253, 337], "9-11": [-248, 341], "57-74": [692, -358], "75-258, T": [692, -347]}}, {"id": 463, "name": "Gengar", "description": "Gengar is a Ghost/Poison-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue).", "links": {"website": ["https://[https://bulbapedia.bulbagarden.net/wiki/Gengar_(Pok%C3%A9mon)](https://bulbapedia.bulbagarden.net/wiki/Gengar_(Pok%C3%A9mon))"], "subreddit": ["pokemon"]}, "path": {"66-73": [[-74, 200], [-76, 202], [-76, 208], [-81, 208], [-85, 210], [-85, 213], [-79, 222], [-75, 223], [-75, 228], [-64, 250], [-63, 249], [-59, 249], [-55, 244], [-47, 245], [-44, 250], [-39, 250], [-37, 252], [-36, 252], [-33, 244], [-30, 238], [-28, 238], [-28, 234], [-30, 231], [-30, 223], [-24, 216], [-28, 208], [-32, 208], [-33, 207], [-36, 207], [-36, 199], [-38, 197], [-51, 202], [-51, 199], [-53, 197], [-64, 203], [-70, 203], [-70, 202]]}, "center": {"66-73": [-53, 223]}}, -{"id": 464, "name": "Flag of Taiwan", "description": "Taiwan, also known as the Republic of China, is an island country in East Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan", "https://en.wikipedia.org/wiki/Flag_of_the_Republic_of_China"], "subreddit": ["placeTW"], "discord": ["8xSQKCHSnT"]}, "path": {"37-86": [[-87, 422], [-87, 436], [-77, 436], [-77, 443], [-75, 443], [-66, 434], [-59, 430], [-59, 422]], "87-258": [[-97, 421], [-97, 461], [-79, 461], [-79, 447], [-74, 438], [-65, 430], [-60, 428], [-60, 421]]}, "center": {"37-86": [-73, 430], "87-258": [-85, 433]}}, -{"id": 465, "name": "86", "description": "86 is an anime, light novel and manga series written by Asato Asato, with season one of the anime series finishing in March 2022.", "links": {"website": ["https://anime-86.com/", "https://en.wikipedia.org/wiki/86_(novel_series)"], "subreddit": ["EightySix"]}, "path": {"148-258, 47-118": [[118, -12], [118, 37], [168, 37], [168, -11], [125, -11], [125, -12]]}, "center": {"148-258, 47-118": [143, 13]}}, +{"id": 464, "name": "Flag of Taiwan", "description": "Taiwan, also known as the Republic of China, is an island country in East Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan", "https://en.wikipedia.org/wiki/Flag_of_the_Republic_of_China"], "subreddit": ["placeTW"], "discord": ["8xSQKCHSnT"]}, "path": {"37-86": [[-87, 422], [-87, 436], [-77, 436], [-77, 443], [-75, 443], [-66, 434], [-59, 430], [-59, 422]], "87-258, T": [[-97, 421], [-97, 461], [-79, 461], [-79, 447], [-74, 438], [-65, 430], [-60, 428], [-60, 421]]}, "center": {"37-86": [-73, 430], "87-258, T": [-85, 433]}}, +{"id": 465, "name": "86", "description": "86 is an anime, light novel and manga series written by Asato Asato, with season one of the anime series finishing in March 2022.", "links": {"website": ["https://anime-86.com/", "https://en.wikipedia.org/wiki/86_(novel_series)"], "subreddit": ["EightySix"]}, "path": {"148-258, 47-118, T": [[118, -12], [118, 37], [168, 37], [168, -11], [125, -11], [125, -12]]}, "center": {"148-258, 47-118, T": [143, 13]}}, {"id": 466, "name": "Vivy: Fluorite's Eye Song", "description": "Vivy: Fluorite's Eye Song is an anime by WIT STUDIO, released in Spring 2021.", "links": {"website": ["https://vivy-portal.com/", "https://en.wikipedia.org/wiki/Vivy:_Fluorite_Eye%27s_Song"], "subreddit": ["Vivy"]}, "path": {"57-119": [[98, -12], [98, 29], [118, 29], [118, -12]]}, "center": {"57-119": [108, 9]}}, -{"id": 468, "name": "Deadmau5", "description": "Deadmau5 is an electronic music producer.", "links": {"website": ["https://deadmau5.com/", "https://en.wikipedia.org/wiki/Deadmau5"], "subreddit": ["deadmau5"]}, "path": {"50-57": [[267, 84], [267, 96], [284, 96], [284, 84]], "58-73": [[265, 84], [263, 86], [263, 96], [280, 96], [280, 84]], "88-107": [[-518, 75], [-502, 75], [-502, 87], [-518, 87]], "108-258": [[-530, 74], [-519, 74], [-519, 78], [-518, 79], [-517, 82], [-516, 84], [-515, 85], [-514, 86], [-513, 87], [-508, 87], [-506, 86], [-505, 85], [-504, 83], [-504, 79], [-503, 78], [-503, 77], [-504, 76], [-503, 75], [-502, 73], [-502, 70], [-504, 69], [-506, 70], [-507, 73], [-507, 75], [-509, 74], [-512, 74], [-513, 75], [-514, 74], [-517, 71], [-520, 69], [-524, 68], [-527, 69], [-529, 70], [-530, 71]]}, "center": {"50-57": [276, 90], "58-73": [272, 90], "88-107": [-510, 81], "108-258": [-510, 81]}}, -{"id": 469, "name": "Aromantic flag", "description": "A pride flag representing the aromatic community. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["aromantic"]}, "path": {"66-258": [[138, 90], [138, 96], [154, 96], [154, 90]]}, "center": {"66-258": [146, 93]}}, -{"id": 470, "name": "Aroace flag", "description": "A pride flag representing the aroace (aromantic, asexual) community. The flag colors are based on a sunset.", "links": {"website": ["https://lgbtqia.fandom.com/wiki/Aromantic_asexual"], "subreddit": ["aromanticasexual"]}, "path": {"51-67": [[138, 90], [138, 95], [184, 95], [184, 90]], "68-258": [[153, 90], [153, 96], [170, 96], [170, 90]]}, "center": {"51-67": [161, 93], "68-258": [162, 93]}}, -{"id": 471, "name": "Asexual flag", "description": "A pride flag representing the asexual community. Asexual people have no sexual attraction to others.", "links": {"website": ["https://en.wikipedia.org/wiki/Asexuality"], "subreddit": ["asexuality", "Asexual", "aaaaaaacccccccce"]}, "path": {"66-258": [[169, 90], [169, 96], [185, 96], [185, 90]]}, "center": {"66-258": [177, 93]}}, -{"id": 472, "name": "Non-binary flag", "description": "A pride flag representing the non-binary community. Non-binary people identify as a gender other than only male or female. The non-binary flag was created in 2014 by Kye Rowan. The different ways people can have a non-binary gender is represented by each color.", "links": {"website": ["https://en.wikipedia.org/wiki/Non-binary_gender"], "subreddit": ["NonBinary"]}, "path": {"28-50": [[110, 91], [110, 66], [17, 66], [17, 61], [107, 61], [107, 39], [115, 39], [115, 86], [173, 86], [173, 91]], "12-27": [[107, 36], [107, 88], [112, 88], [112, 41], [244, 41], [244, 77], [249, 77], [249, 36]], "51-258": [[117, 35], [113, 39], [113, 88], [116, 91], [185, 91], [185, 86], [119, 86], [118, 85], [118, 41], [119, 40], [275, 40], [276, 41], [276, 80], [275, 81], [262, 81], [260, 83], [260, 95], [243, 95], [243, 98], [264, 98], [264, 86], [265, 85], [278, 85], [280, 83], [280, 38], [278, 36], [168, 36], [168, 35]]}, "center": {"28-50": [111, 62], "12-27": [246, 39], "51-258": [117, 88]}}, -{"id": 473, "name": "Coat of arms of Hungary", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Hungary"], "subreddit": ["hungary"]}, "path": {"58-258": [[-284, -34], [-293, -28], [-293, -13], [-286, -7], [-282, -7], [-275, -13], [-275, -28]]}, "center": {"58-258": [-284, -20]}}, -{"id": 474, "name": "Red Bull", "description": "Red Bull is an energy drink brand whose company is based in Austria.", "links": {"website": ["https://www.redbull.com/int-en/energydrink/red-bull-energy-drink", "https://en.wikipedia.org/wiki/Red_Bull"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"44-258": [[-188, -57], [-190, -55], [-190, -28], [-188, -26], [-176, -26], [-174, -28], [-174, -55], [-176, -57]]}, "center": {"44-258": [-182, -41]}}, -{"id": 475, "name": "Coat of arms of Burgenland", "description": "This is the coat of arms for the Austrian state Burgenland. Burgenland is the easternmost and least populous state of Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Burgenland"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258": [[-67, -57], [-67, -50], [-64, -47], [-62, -47], [-59, -50], [-59, -57]]}, "center": {"53-258": [-63, -53]}}, -{"id": 476, "name": "Coat of arms of Lower Austria", "description": "Lower Austria is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Lower_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258": [[-59, -56], [-59, -50], [-56, -47], [-54, -47], [-51, -50], [-51, -56]]}, "center": {"53-258": [-55, -52]}}, -{"id": 477, "name": "Coat of arms of Vienna", "description": "Vienna is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Vienna"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258": [[-51, -56], [-51, -50], [-48, -47], [-46, -47], [-43, -50], [-43, -56]]}, "center": {"53-258": [-47, -52]}}, -{"id": 478, "name": "Coat of arms of Styria", "description": "Styria is a state in Austria. Its coat of arms features a panther.", "links": {"website": ["https://en.wikipedia.org/wiki/Styria", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Styria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258": [[-43, -57], [-43, -50], [-40, -47], [-38, -47], [-35, -50], [-35, -57]]}, "center": {"53-258": [-39, -53]}}, -{"id": 479, "name": "Coat of arms of Salzburg", "description": "Salzburg is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Salzburg_(state)"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258": [[-35, -57], [-35, -50], [-32, -47], [-30, -47], [-27, -50], [-27, -57]]}, "center": {"53-258": [-31, -53]}}, -{"id": 480, "name": "Coat of arms of Upper Austria", "description": "Upper Austria is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Upper_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258": [[-27, -57], [-27, -50], [-24, -47], [-22, -47], [-19, -50], [-19, -57]]}, "center": {"53-258": [-23, -53]}}, -{"id": 481, "name": "Coat of arms of Carinthia", "description": "Carinthia is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Carinthia"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258": [[-19, -57], [-19, -50], [-16, -47], [-14, -47], [-11, -50], [-11, -57]]}, "center": {"53-258": [-15, -53]}}, -{"id": 482, "name": "Coat of arms of Tyrol", "description": "Tyrol is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Tyrol_(state)", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Tyrol"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258": [[-11, -57], [-11, -50], [-8, -47], [-6, -47], [-3, -50], [-3, -57]]}, "center": {"53-258": [-7, -53]}}, -{"id": 483, "name": "Coat of arms of Vorarlberg", "description": "Vorarlberg is Austria's westernmost state.", "links": {"website": ["https://en.wikipedia.org/wiki/Vorarlberg"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258": [[-3, -57], [-3, -50], [0, -47], [2, -47], [5, -50], [5, -57]]}, "center": {"53-258": [1, -53]}}, +{"id": 468, "name": "Deadmau5", "description": "Deadmau5 is an electronic music producer.", "links": {"website": ["https://deadmau5.com/", "https://en.wikipedia.org/wiki/Deadmau5"], "subreddit": ["deadmau5"]}, "path": {"50-57": [[267, 84], [267, 96], [284, 96], [284, 84]], "58-73": [[265, 84], [263, 86], [263, 96], [280, 96], [280, 84]], "88-107": [[-518, 75], [-502, 75], [-502, 87], [-518, 87]], "108-258, T": [[-530, 74], [-519, 74], [-519, 78], [-518, 79], [-517, 82], [-516, 84], [-515, 85], [-514, 86], [-513, 87], [-508, 87], [-506, 86], [-505, 85], [-504, 83], [-504, 79], [-503, 78], [-503, 77], [-504, 76], [-503, 75], [-502, 73], [-502, 70], [-504, 69], [-506, 70], [-507, 73], [-507, 75], [-509, 74], [-512, 74], [-513, 75], [-514, 74], [-517, 71], [-520, 69], [-524, 68], [-527, 69], [-529, 70], [-530, 71]]}, "center": {"50-57": [276, 90], "58-73": [272, 90], "88-107": [-510, 81], "108-258, T": [-510, 81]}}, +{"id": 469, "name": "Aromantic flag", "description": "A pride flag representing the aromatic community. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["aromantic"]}, "path": {"66-258, T": [[138, 90], [138, 96], [154, 96], [154, 90]]}, "center": {"66-258, T": [146, 93]}}, +{"id": 470, "name": "Aroace flag", "description": "A pride flag representing the aroace (aromantic, asexual) community. The flag colors are based on a sunset.", "links": {"website": ["https://lgbtqia.fandom.com/wiki/Aromantic_asexual"], "subreddit": ["aromanticasexual"]}, "path": {"51-67": [[138, 90], [138, 95], [184, 95], [184, 90]], "68-258, T": [[153, 90], [153, 96], [170, 96], [170, 90]]}, "center": {"51-67": [161, 93], "68-258, T": [162, 93]}}, +{"id": 471, "name": "Asexual flag", "description": "A pride flag representing the asexual community. Asexual people have no sexual attraction to others.", "links": {"website": ["https://en.wikipedia.org/wiki/Asexuality"], "subreddit": ["asexuality", "Asexual", "aaaaaaacccccccce"]}, "path": {"66-258, T": [[169, 90], [169, 96], [185, 96], [185, 90]]}, "center": {"66-258, T": [177, 93]}}, +{"id": 472, "name": "Non-binary flag", "description": "A pride flag representing the non-binary community. Non-binary people identify as a gender other than only male or female. The non-binary flag was created in 2014 by Kye Rowan. The different ways people can have a non-binary gender is represented by each color.", "links": {"website": ["https://en.wikipedia.org/wiki/Non-binary_gender"], "subreddit": ["NonBinary"]}, "path": {"28-50": [[110, 91], [110, 66], [17, 66], [17, 61], [107, 61], [107, 39], [115, 39], [115, 86], [173, 86], [173, 91]], "12-27": [[107, 36], [107, 88], [112, 88], [112, 41], [244, 41], [244, 77], [249, 77], [249, 36]], "51-258, T": [[117, 35], [113, 39], [113, 88], [116, 91], [185, 91], [185, 86], [119, 86], [118, 85], [118, 41], [119, 40], [275, 40], [276, 41], [276, 80], [275, 81], [262, 81], [260, 83], [260, 95], [243, 95], [243, 98], [264, 98], [264, 86], [265, 85], [278, 85], [280, 83], [280, 38], [278, 36], [168, 36], [168, 35]]}, "center": {"28-50": [111, 62], "12-27": [246, 39], "51-258, T": [117, 88]}}, +{"id": 473, "name": "Coat of arms of Hungary", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Hungary"], "subreddit": ["hungary"]}, "path": {"58-258, T": [[-284, -34], [-293, -28], [-293, -13], [-286, -7], [-282, -7], [-275, -13], [-275, -28]]}, "center": {"58-258, T": [-284, -20]}}, +{"id": 474, "name": "Red Bull", "description": "Red Bull is an energy drink brand whose company is based in Austria.", "links": {"website": ["https://www.redbull.com/int-en/energydrink/red-bull-energy-drink", "https://en.wikipedia.org/wiki/Red_Bull"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"44-258, T": [[-188, -57], [-190, -55], [-190, -28], [-188, -26], [-176, -26], [-174, -28], [-174, -55], [-176, -57]]}, "center": {"44-258, T": [-182, -41]}}, +{"id": 475, "name": "Coat of arms of Burgenland", "description": "This is the coat of arms for the Austrian state Burgenland. Burgenland is the easternmost and least populous state of Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Burgenland"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258, T": [[-67, -57], [-67, -50], [-64, -47], [-62, -47], [-59, -50], [-59, -57]]}, "center": {"53-258, T": [-63, -53]}}, +{"id": 476, "name": "Coat of arms of Lower Austria", "description": "Lower Austria is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Lower_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258, T": [[-59, -56], [-59, -50], [-56, -47], [-54, -47], [-51, -50], [-51, -56]]}, "center": {"53-258, T": [-55, -52]}}, +{"id": 477, "name": "Coat of arms of Vienna", "description": "Vienna is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Vienna"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258, T": [[-51, -56], [-51, -50], [-48, -47], [-46, -47], [-43, -50], [-43, -56]]}, "center": {"53-258, T": [-47, -52]}}, +{"id": 478, "name": "Coat of arms of Styria", "description": "Styria is a state in Austria. Its coat of arms features a panther.", "links": {"website": ["https://en.wikipedia.org/wiki/Styria", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Styria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258, T": [[-43, -57], [-43, -50], [-40, -47], [-38, -47], [-35, -50], [-35, -57]]}, "center": {"53-258, T": [-39, -53]}}, +{"id": 479, "name": "Coat of arms of Salzburg", "description": "Salzburg is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Salzburg_(state)"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258, T": [[-35, -57], [-35, -50], [-32, -47], [-30, -47], [-27, -50], [-27, -57]]}, "center": {"53-258, T": [-31, -53]}}, +{"id": 480, "name": "Coat of arms of Upper Austria", "description": "Upper Austria is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Upper_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258, T": [[-27, -57], [-27, -50], [-24, -47], [-22, -47], [-19, -50], [-19, -57]]}, "center": {"53-258, T": [-23, -53]}}, +{"id": 481, "name": "Coat of arms of Carinthia", "description": "Carinthia is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Carinthia"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258, T": [[-19, -57], [-19, -50], [-16, -47], [-14, -47], [-11, -50], [-11, -57]]}, "center": {"53-258, T": [-15, -53]}}, +{"id": 482, "name": "Coat of arms of Tyrol", "description": "Tyrol is a state in Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Tyrol_(state)", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Tyrol"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258, T": [[-11, -57], [-11, -50], [-8, -47], [-6, -47], [-3, -50], [-3, -57]]}, "center": {"53-258, T": [-7, -53]}}, +{"id": 483, "name": "Coat of arms of Vorarlberg", "description": "Vorarlberg is Austria's westernmost state.", "links": {"website": ["https://en.wikipedia.org/wiki/Vorarlberg"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"53-258, T": [[-3, -57], [-3, -50], [0, -47], [2, -47], [5, -50], [5, -57]]}, "center": {"53-258, T": [1, -53]}}, {"id": 484, "name": "John Dillermand", "description": "John Dillermand is a Danish stop-motion animated children's television series about a man and his very long penis.", "links": {"website": ["https://en.wikipedia.org/wiki/John_Dillermand"], "subreddit": ["Denmark", "Nordics", "place_nordicunion"]}, "path": {"67-114": [[-152, -273], [-155, -268], [-155, -259], [-152, -257], [-150, -257], [-150, -250], [-151, -250], [-151, -245], [-152, -245], [-155, -242], [-153, -240], [-146, -240], [-146, -188], [-174, -188], [-174, -196], [-182, -196], [-182, -205], [-187, -205], [-187, -191], [-179, -191], [-179, -182], [-35, -182], [-35, -279], [-146, -279], [-146, -274], [-40, -274], [-40, -188], [-140, -188], [-140, -240], [-133, -240], [-131, -242], [-134, -245], [-135, -245], [-135, -249], [-133, -249], [-133, -253], [-132, -254], [-132, -256], [-136, -262], [-137, -262], [-137, -269], [-142, -273]], "115-142": [[-145, -279], [-145, -180], [-35, -180], [-35, -279], [-141, -279], [-141, -275], [-39, -275], [-39, -183], [-141, -183], [-141, -279]]}, "center": {"67-114": [-146, -264], "115-142": [-37, -182]}}, -{"id": 485, "name": "Coat of arms of Denmark", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Denmark"], "subreddit": ["Denmark", "nordics", "place_nordicunion"]}, "path": {"45-258": [[-69, -277], [-71, -274], [-74, -274], [-81, -270], [-81, -266], [-77, -260], [-80, -257], [-80, -240], [-77, -236], [-70, -233], [-65, -233], [-59, -236], [-56, -240], [-56, -257], [-58, -260], [-55, -267], [-55, -270], [-58, -273], [-65, -274], [-65, -275], [-67, -277]]}, "center": {"45-258": [-68, -252]}}, -{"id": 486, "name": "Coat of arms of Norway", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Norway"], "subreddit": ["Norge", "nordics", "place_nordicunion"]}, "path": {"47-258": [[-69, -332], [-71, -330], [-71, -327], [-73, -327], [-78, -323], [-78, -317], [-82, -317], [-82, -309], [-78, -296], [-75, -290], [-69, -285], [-67, -285], [-60, -291], [-56, -301], [-54, -312], [-54, -317], [-58, -317], [-58, -323], [-61, -326], [-65, -327], [-65, -330], [-67, -332]]}, "center": {"47-258": [-68, -308]}}, -{"id": 487, "name": "Coat of arms of Sweden", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Sweden"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"43-258": [[68, -277], [66, -275], [66, -274], [59, -271], [56, -266], [56, -264], [57, -263], [57, -237], [61, -234], [67, -234], [68, -233], [70, -233], [71, -234], [77, -234], [81, -237], [81, -259], [79, -261], [82, -264], [82, -266], [79, -271], [72, -274], [72, -275], [70, -277]]}, "center": {"43-258": [69, -254]}}, -{"id": 488, "name": "Coat of arms of Finland", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Finland"], "subreddit": ["Suomi", "nordics", "place_nordicunion"]}, "path": {"48-258": [[54, -323], [54, -297], [57, -291], [63, -287], [67, -286], [71, -286], [78, -289], [82, -292], [84, -298], [84, -323]]}, "center": {"48-258": [69, -304]}}, -{"id": 489, "name": "Flag of the Faroe Islands", "description": "The Faroe Islands are an archipelago of islands in the North Atlantic Ocean. They are part of the Kingdom of Denmark.", "links": {"website": ["https://en.wikipedia.org/wiki/Faroe_Islands", "https://en.wikipedia.org/wiki/Flag_of_the_Faroe_Islands"], "subreddit": ["FaroeIslands", "nordics", "place_nordicunion"]}, "path": {"67-258": [[-177, -279], [-177, -259], [-147, -259], [-147, -270], [-146, -271], [-146, -279]]}, "center": {"67-258": [-161, -269]}}, -{"id": 490, "name": "Longship", "description": "A longship is a type of warship historically used by the Viking people in Scandinavia.", "links": {"website": ["https://en.wikipedia.org/wiki/Longship"], "subreddit": ["Norge", "nordics", "place_nordicunion"]}, "path": {"67-258": [[-160, -330], [-165, -326], [-165, -310], [-172, -310], [-172, -309], [-170, -307], [-166, -307], [-163, -304], [-150, -304], [-150, -307], [-149, -307], [-146, -310], [-146, -312], [-145, -313], [-148, -315], [-151, -311], [-155, -311], [-153, -313], [-153, -314], [-154, -315], [-154, -324], [-152, -326], [-152, -328], [-157, -328], [-159, -330]]}, "center": {"67-258": [-160, -323]}}, -{"id": 491, "name": "Flag of Maryland", "description": "Maryland is a state on the east coast of the United States.", "links": {"website": ["https://en.wikipedia.org/wiki/Maryland", "https://en.wikipedia.org/wiki/Flag_of_Maryland"], "subreddit": ["maryland"]}, "path": {"87-110": [[153, -284], [153, -267], [178, -267], [178, -284]], "111-258, 64-86": [[153, -284], [153, -267], [145, -267], [145, -259], [186, -259], [186, -267], [178, -267], [178, -284]]}, "center": {"87-110": [166, -275], "111-258, 64-86": [166, -271]}}, +{"id": 485, "name": "Coat of arms of Denmark", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Denmark"], "subreddit": ["Denmark", "nordics", "place_nordicunion"]}, "path": {"45-258, T": [[-69, -277], [-71, -274], [-74, -274], [-81, -270], [-81, -266], [-77, -260], [-80, -257], [-80, -240], [-77, -236], [-70, -233], [-65, -233], [-59, -236], [-56, -240], [-56, -257], [-58, -260], [-55, -267], [-55, -270], [-58, -273], [-65, -274], [-65, -275], [-67, -277]]}, "center": {"45-258, T": [-68, -252]}}, +{"id": 486, "name": "Coat of arms of Norway", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Norway"], "subreddit": ["Norge", "nordics", "place_nordicunion"]}, "path": {"47-258, T": [[-69, -332], [-71, -330], [-71, -327], [-73, -327], [-78, -323], [-78, -317], [-82, -317], [-82, -309], [-78, -296], [-75, -290], [-69, -285], [-67, -285], [-60, -291], [-56, -301], [-54, -312], [-54, -317], [-58, -317], [-58, -323], [-61, -326], [-65, -327], [-65, -330], [-67, -332]]}, "center": {"47-258, T": [-68, -308]}}, +{"id": 487, "name": "Coat of arms of Sweden", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Sweden"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"43-258, T": [[68, -277], [66, -275], [66, -274], [59, -271], [56, -266], [56, -264], [57, -263], [57, -237], [61, -234], [67, -234], [68, -233], [70, -233], [71, -234], [77, -234], [81, -237], [81, -259], [79, -261], [82, -264], [82, -266], [79, -271], [72, -274], [72, -275], [70, -277]]}, "center": {"43-258, T": [69, -254]}}, +{"id": 488, "name": "Coat of arms of Finland", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Finland"], "subreddit": ["Suomi", "nordics", "place_nordicunion"]}, "path": {"48-258, T": [[54, -323], [54, -297], [57, -291], [63, -287], [67, -286], [71, -286], [78, -289], [82, -292], [84, -298], [84, -323]]}, "center": {"48-258, T": [69, -304]}}, +{"id": 489, "name": "Flag of the Faroe Islands", "description": "The Faroe Islands are an archipelago of islands in the North Atlantic Ocean. They are part of the Kingdom of Denmark.", "links": {"website": ["https://en.wikipedia.org/wiki/Faroe_Islands", "https://en.wikipedia.org/wiki/Flag_of_the_Faroe_Islands"], "subreddit": ["FaroeIslands", "nordics", "place_nordicunion"]}, "path": {"67-258, T": [[-177, -279], [-177, -259], [-147, -259], [-147, -270], [-146, -271], [-146, -279]]}, "center": {"67-258, T": [-161, -269]}}, +{"id": 490, "name": "Longship", "description": "A longship is a type of warship historically used by the Viking people in Scandinavia.", "links": {"website": ["https://en.wikipedia.org/wiki/Longship"], "subreddit": ["Norge", "nordics", "place_nordicunion"]}, "path": {"67-258, T": [[-160, -330], [-165, -326], [-165, -310], [-172, -310], [-172, -309], [-170, -307], [-166, -307], [-163, -304], [-150, -304], [-150, -307], [-149, -307], [-146, -310], [-146, -312], [-145, -313], [-148, -315], [-151, -311], [-155, -311], [-153, -313], [-153, -314], [-154, -315], [-154, -324], [-152, -326], [-152, -328], [-157, -328], [-159, -330]]}, "center": {"67-258, T": [-160, -323]}}, +{"id": 491, "name": "Flag of Maryland", "description": "Maryland is a state on the east coast of the United States.", "links": {"website": ["https://en.wikipedia.org/wiki/Maryland", "https://en.wikipedia.org/wiki/Flag_of_Maryland"], "subreddit": ["maryland"]}, "path": {"87-110": [[153, -284], [153, -267], [178, -267], [178, -284]], "111-258, 64-86, T": [[153, -284], [153, -267], [145, -267], [145, -259], [186, -259], [186, -267], [178, -267], [178, -284]]}, "center": {"87-110": [166, -275], "111-258, 64-86, T": [166, -271]}}, {"id": 492, "name": "TGV POS", "description": "The TGV POS is a French high-speed train operated by TGV (Train à Grande Vitesse, French for \"high-speed train\"). \"POS\" stands for Paris-Ostfrankreich-Süddeutschland, German for \"Paris, Eastern France, Southern Germany\".", "links": {"website": ["https://en.wikipedia.org/wiki/TGV_POS"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"49-86": [[-501, -386], [-501, -370], [-400, -370], [-400, -372], [-407, -379], [-423, -387], [-501, -387]], "87-107": [[-1001, -390], [-1001, -370], [-396, -370], [-396, -375], [-403, -375], [-407, -379], [-423, -387], [-441, -387], [-441, -390]]}, "center": {"49-86": [-450, -378], "87-107": [-711, -380]}}, -{"id": 493, "name": "Intercity Express", "description": "Intercity Express (ICE) is a high-speed train system operating in Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Intercity_Express"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"47-258": [[36, -390], [34, -388], [34, -387], [32, -387], [18, -381], [13, -376], [12, -374], [12, -372], [14, -370], [204, -370], [204, -387], [47, -387], [44, -389], [38, -389], [37, -390]]}, "center": {"47-258": [40, -380]}}, -{"id": 494, "name": "Astérix (Comic)", "description": "Astérix is a cherished character from French comic book history, widely known for his signature winged helmet and hearty mustache. Since first appearing in 1959 in the comic \"Astérix le Gaulois,\" created by author René Goscinny and illustrator Albert Uderzo, Astérix has become a mainstay in French popular culture and an emblem of resilience and persistence.\n\nAstérix resides in a small, independent Gaulish village in ancient France, the lone bastion against the Roman Empire's efforts to conquer Gaul. The village's resistance is enabled by a magic potion concocted by their druid, Getafix, which bestows upon them superhuman strength. Being the most adventurous villager, Astérix often leads the charge in their skirmishes with the Romans.\n\nIn addition to his physical prowess, Astérix is also notable for his wit and astuteness. He leans as much on his fast thinking as he does on his strength, often outwitting his adversaries instead of using brute force. This combination of strength and intelligence makes Astérix a versatile and captivating hero.\n\nAstérix is also renowned for his companionship with his best friend, Obelix, a menhir deliveryman who acquired permanent superhuman strength after falling into a cauldron of the magic potion as a child. The adventures they share, laden with humor and whimsy, have mesmerized audiences globally.\n\nOn the canvas of r/placeFR, Astérix is depicted alongside Obelix and their faithful dog, Dogmatix (Idéfix in French), encapsulating the essence of their camaraderie and adventurous spirit. Their collective representation adds a touch of color and nostalgia, making their corner of the canvas a vibrant tribute to French comic heritage.\n\nAstérix's tales have been translated into over 100 languages and dialects, and his escapades have been adapted into numerous animated and live-action films, marking him as a global icon. However, Astérix remains quintessentially French, embodying French values of solidarity, resistance, and humor, and serving as a testament to the country's rich cultural contribution to the world of comic books.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Asterix_(character)](https://en.wikipedia.org/wiki/Asterix_(character))"], "subreddit": ["asterix", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"71-118": [[952, -232], [949, -230], [949, -229], [952, -226], [956, -226], [956, -224], [951, -221], [947, -216], [947, -204], [950, -201], [951, -201], [954, -204], [954, -208], [959, -214], [961, -214], [960, -205], [958, -203], [958, -200], [964, -194], [967, -193], [967, -190], [966, -190], [961, -184], [961, -178], [960, -177], [960, -166], [959, -166], [956, -163], [956, -155], [951, -150], [951, -149], [953, -147], [998, -147], [998, -149], [994, -153], [990, -156], [983, -156], [982, -157], [982, -168], [986, -175], [988, -175], [991, -177], [991, -182], [988, -185], [982, -185], [982, -192], [985, -192], [987, -194], [987, -203], [989, -203], [989, -210], [984, -215], [980, -215], [974, -224], [969, -229], [962, -232]], "122-141": [[920, -140], [918, -138], [918, -131], [916, -126], [916, -116], [919, -113], [919, -110], [918, -109], [918, -107], [920, -102], [920, -101], [917, -101], [914, -98], [914, -96], [934, -96], [934, -105], [933, -107], [933, -121], [930, -124], [927, -124], [927, -131], [926, -132], [926, -138], [924, -140]], "142-258": [[913, -101], [908, -100], [907, -97], [926, -97], [926, -99], [924, -101], [924, -103], [925, -105], [926, -105], [925, -107], [924, -109], [922, -111], [925, -114], [926, -117], [923, -117], [925, -120], [924, -122], [923, -123], [922, -122], [920, -124], [919, -124], [919, -127], [920, -131], [918, -139], [910, -138], [910, -125], [910, -119], [910, -116], [913, -111], [912, -107]]}, "center": {"71-118": [973, -204], "122-141": [926, -117], "142-258": [917, -118]}}, -{"id": 495, "name": "Obelix", "description": "Obelix (French: Obélix) is the companion of Asterix for all of their adventures in the Asterix comics. As a standing stones delivery man, he holds a superhuman strength from falling into a cauldron of magic potion when he was a kid.", "links": {"website": ["https://en.wikipedia.org/wiki/Obelix"], "subreddit": ["asterix", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"71-118": [[907, -246], [901, -242], [901, -232], [896, -226], [896, -220], [892, -218], [892, -213], [889, -207], [889, -188], [891, -187], [901, -160], [901, -156], [899, -156], [896, -152], [896, -147], [943, -147], [943, -152], [937, -158], [931, -158], [931, -159], [947, -179], [947, -193], [938, -209], [938, -216], [927, -227], [927, -237], [922, -241], [918, -241], [918, -244], [914, -246]], "119-258": [[950, -149], [950, -143], [947, -143], [947, -135], [949, -130], [949, -125], [947, -117], [947, -111], [954, -103], [954, -101], [952, -101], [949, -98], [949, -96], [975, -96], [975, -97], [972, -100], [982, -111], [982, -121], [984, -124], [984, -127], [979, -132], [967, -138], [964, -138], [964, -143], [962, -145], [962, -147], [959, -151], [957, -151], [955, -149]]}, "center": {"71-118": [919, -188], "119-258": [965, -118]}}, -{"id": 496, "name": "Pierre Gasly", "description": "Formula One driver number of Alpine F1 Team driver Pierre Gasly, who joined the team in 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/Pierre_Gasly"], "subreddit": ["Formula1"]}, "path": {"73-258": [[-407, 312], [-400, 312], [-401, 320], [-407, 320]]}, "center": {"73-258": [-404, 316]}}, -{"id": 497, "name": "Louro José Tribute", "description": "Louro José was a parrot puppet (parrots are popularly called louro in Brazil) played by Tom Veiga (1973–2020). Louro had participated, along with TV presenter Ana Maria Braga, on Mais Você, a show which airs from Monday through Friday on TV Globo.", "links": {"website": ["https://en.wikipedia.org/wiki/Louro_Jos%C3%A9"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"70-258": [[250, 332], [251, 332], [251, 331], [244, 324], [243, 314], [242, 313], [233, 313], [232, 314], [232, 321], [230, 321], [229, 322], [229, 323], [228, 324], [228, 325], [229, 326], [230, 326], [232, 328], [234, 328], [235, 329], [235, 330], [236, 331], [236, 332], [251, 332]]}, "center": {"70-258": [238, 323]}}, -{"id": 498, "name": "Esteban Ocon", "description": "Formula One driver number of Alpine F1 Team driver Esteban Ocon.", "links": {"website": ["https://en.wikipedia.org/wiki/Esteban_Ocon"], "subreddit": ["Formula1"]}, "path": {"73-258": [[-398, 312], [-390, 312], [-390, 320], [-398, 320]]}, "center": {"73-258": [-394, 316]}}, -{"id": 499, "name": "Alpine Cars", "description": "Sports division of French car manufacturer Renault. Entered Formula One as a rebrand of existing constructor Renault in 2021.", "links": {"website": ["https://alpinecars.com"]}, "path": {"73-258": [[-401, 321], [-396, 322], [-398, 325], [-393, 325], [-378, 313], [-374, 313], [-378, 325], [-372, 326], [-371, 329], [-379, 329], [-381, 334], [-385, 333], [-384, 329], [-391, 329], [-397, 334], [-402, 334], [-398, 329], [-407, 329]]}, "center": {"73-258": [-383, 324]}}, -{"id": 500, "name": "Froggy Ball", "description": "Froggy Ball (Swedish: Grodan Boll) is a Swedish cartoon character. It is a popular meme on r/sweden, often seen saying \"Det är fredag mina bekanta!\", Swedish for \"It's Friday, my dudes!\"", "links": {"website": ["https://www.reddit.com/r/OutOfTheLoop/comments/7zokxc/okay_i_give_up_whats_with_the_det_%C3%A4r_fredag_mina/", "https://knowyourmeme.com/memes/grodan-boll", "https://en.wikipedia.org/wiki/Froggy_Ball"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"66-258": [[79, -208], [74, -201], [74, -194], [70, -190], [70, -187], [77, -187], [77, -179], [85, -183], [91, -183], [91, -200], [83, -208]]}, "center": {"66-258": [83, -197]}}, +{"id": 493, "name": "Intercity Express", "description": "Intercity Express (ICE) is a high-speed train system operating in Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Intercity_Express"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"47-258, T": [[36, -390], [34, -388], [34, -387], [32, -387], [18, -381], [13, -376], [12, -374], [12, -372], [14, -370], [204, -370], [204, -387], [47, -387], [44, -389], [38, -389], [37, -390]]}, "center": {"47-258, T": [40, -380]}}, +{"id": 494, "name": "Astérix (Comic)", "description": "Astérix is a cherished character from French comic book history, widely known for his signature winged helmet and hearty mustache. Since first appearing in 1959 in the comic \"Astérix le Gaulois,\" created by author René Goscinny and illustrator Albert Uderzo, Astérix has become a mainstay in French popular culture and an emblem of resilience and persistence.\n\nAstérix resides in a small, independent Gaulish village in ancient France, the lone bastion against the Roman Empire's efforts to conquer Gaul. The village's resistance is enabled by a magic potion concocted by their druid, Getafix, which bestows upon them superhuman strength. Being the most adventurous villager, Astérix often leads the charge in their skirmishes with the Romans.\n\nIn addition to his physical prowess, Astérix is also notable for his wit and astuteness. He leans as much on his fast thinking as he does on his strength, often outwitting his adversaries instead of using brute force. This combination of strength and intelligence makes Astérix a versatile and captivating hero.\n\nAstérix is also renowned for his companionship with his best friend, Obelix, a menhir deliveryman who acquired permanent superhuman strength after falling into a cauldron of the magic potion as a child. The adventures they share, laden with humor and whimsy, have mesmerized audiences globally.\n\nOn the canvas of r/placeFR, Astérix is depicted alongside Obelix and their faithful dog, Dogmatix (Idéfix in French), encapsulating the essence of their camaraderie and adventurous spirit. Their collective representation adds a touch of color and nostalgia, making their corner of the canvas a vibrant tribute to French comic heritage.\n\nAstérix's tales have been translated into over 100 languages and dialects, and his escapades have been adapted into numerous animated and live-action films, marking him as a global icon. However, Astérix remains quintessentially French, embodying French values of solidarity, resistance, and humor, and serving as a testament to the country's rich cultural contribution to the world of comic books.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Asterix_(character)](https://en.wikipedia.org/wiki/Asterix_(character))"], "subreddit": ["asterix", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"71-118": [[952, -232], [949, -230], [949, -229], [952, -226], [956, -226], [956, -224], [951, -221], [947, -216], [947, -204], [950, -201], [951, -201], [954, -204], [954, -208], [959, -214], [961, -214], [960, -205], [958, -203], [958, -200], [964, -194], [967, -193], [967, -190], [966, -190], [961, -184], [961, -178], [960, -177], [960, -166], [959, -166], [956, -163], [956, -155], [951, -150], [951, -149], [953, -147], [998, -147], [998, -149], [994, -153], [990, -156], [983, -156], [982, -157], [982, -168], [986, -175], [988, -175], [991, -177], [991, -182], [988, -185], [982, -185], [982, -192], [985, -192], [987, -194], [987, -203], [989, -203], [989, -210], [984, -215], [980, -215], [974, -224], [969, -229], [962, -232]], "122-141": [[920, -140], [918, -138], [918, -131], [916, -126], [916, -116], [919, -113], [919, -110], [918, -109], [918, -107], [920, -102], [920, -101], [917, -101], [914, -98], [914, -96], [934, -96], [934, -105], [933, -107], [933, -121], [930, -124], [927, -124], [927, -131], [926, -132], [926, -138], [924, -140]], "142-258, T": [[913, -101], [908, -100], [907, -97], [926, -97], [926, -99], [924, -101], [924, -103], [925, -105], [926, -105], [925, -107], [924, -109], [922, -111], [925, -114], [926, -117], [923, -117], [925, -120], [924, -122], [923, -123], [922, -122], [920, -124], [919, -124], [919, -127], [920, -131], [918, -139], [910, -138], [910, -125], [910, -119], [910, -116], [913, -111], [912, -107]]}, "center": {"71-118": [973, -204], "122-141": [926, -117], "142-258, T": [917, -118]}}, +{"id": 495, "name": "Obelix", "description": "Obelix (French: Obélix) is the companion of Asterix for all of their adventures in the Asterix comics. As a standing stones delivery man, he holds a superhuman strength from falling into a cauldron of magic potion when he was a kid.", "links": {"website": ["https://en.wikipedia.org/wiki/Obelix"], "subreddit": ["asterix", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"71-118": [[907, -246], [901, -242], [901, -232], [896, -226], [896, -220], [892, -218], [892, -213], [889, -207], [889, -188], [891, -187], [901, -160], [901, -156], [899, -156], [896, -152], [896, -147], [943, -147], [943, -152], [937, -158], [931, -158], [931, -159], [947, -179], [947, -193], [938, -209], [938, -216], [927, -227], [927, -237], [922, -241], [918, -241], [918, -244], [914, -246]], "119-258, T": [[950, -149], [950, -143], [947, -143], [947, -135], [949, -130], [949, -125], [947, -117], [947, -111], [954, -103], [954, -101], [952, -101], [949, -98], [949, -96], [975, -96], [975, -97], [972, -100], [982, -111], [982, -121], [984, -124], [984, -127], [979, -132], [967, -138], [964, -138], [964, -143], [962, -145], [962, -147], [959, -151], [957, -151], [955, -149]]}, "center": {"71-118": [919, -188], "119-258, T": [965, -118]}}, +{"id": 496, "name": "Pierre Gasly", "description": "Formula One driver number of Alpine F1 Team driver Pierre Gasly, who joined the team in 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/Pierre_Gasly"], "subreddit": ["Formula1"]}, "path": {"73-258, T": [[-407, 312], [-400, 312], [-401, 320], [-407, 320]]}, "center": {"73-258, T": [-404, 316]}}, +{"id": 497, "name": "Louro José Tribute", "description": "Louro José was a parrot puppet (parrots are popularly called louro in Brazil) played by Tom Veiga (1973–2020). Louro had participated, along with TV presenter Ana Maria Braga, on Mais Você, a show which airs from Monday through Friday on TV Globo.", "links": {"website": ["https://en.wikipedia.org/wiki/Louro_Jos%C3%A9"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"70-258, T": [[250, 332], [251, 332], [251, 331], [244, 324], [243, 314], [242, 313], [233, 313], [232, 314], [232, 321], [230, 321], [229, 322], [229, 323], [228, 324], [228, 325], [229, 326], [230, 326], [232, 328], [234, 328], [235, 329], [235, 330], [236, 331], [236, 332], [251, 332]]}, "center": {"70-258, T": [238, 323]}}, +{"id": 498, "name": "Esteban Ocon", "description": "Formula One driver number of Alpine F1 Team driver Esteban Ocon.", "links": {"website": ["https://en.wikipedia.org/wiki/Esteban_Ocon"], "subreddit": ["Formula1"]}, "path": {"73-258, T": [[-398, 312], [-390, 312], [-390, 320], [-398, 320]]}, "center": {"73-258, T": [-394, 316]}}, +{"id": 499, "name": "Alpine Cars", "description": "Sports division of French car manufacturer Renault. Entered Formula One as a rebrand of existing constructor Renault in 2021.", "links": {"website": ["https://alpinecars.com"]}, "path": {"73-258, T": [[-401, 321], [-396, 322], [-398, 325], [-393, 325], [-378, 313], [-374, 313], [-378, 325], [-372, 326], [-371, 329], [-379, 329], [-381, 334], [-385, 333], [-384, 329], [-391, 329], [-397, 334], [-402, 334], [-398, 329], [-407, 329]]}, "center": {"73-258, T": [-383, 324]}}, +{"id": 500, "name": "Froggy Ball", "description": "Froggy Ball (Swedish: Grodan Boll) is a Swedish cartoon character. It is a popular meme on r/sweden, often seen saying \"Det är fredag mina bekanta!\", Swedish for \"It's Friday, my dudes!\"", "links": {"website": ["https://www.reddit.com/r/OutOfTheLoop/comments/7zokxc/okay_i_give_up_whats_with_the_det_%C3%A4r_fredag_mina/", "https://knowyourmeme.com/memes/grodan-boll", "https://en.wikipedia.org/wiki/Froggy_Ball"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"66-258, T": [[79, -208], [74, -201], [74, -194], [70, -190], [70, -187], [77, -187], [77, -179], [85, -183], [91, -183], [91, -200], [83, -208]]}, "center": {"66-258, T": [83, -197]}}, {"id": 501, "name": "99/2=92", "description": "In RuneScape, the cumulative amount of experience to reach level 92 in a skill is about half of the experience required to reach level 99 (the maximum skill level). This fact is a meme in the RuneScape community.", "links": {"website": ["https://oldschool.runescape.wiki/w/Experience"], "subreddit": ["2007scape"]}, "path": {"72-92": [[-209, -500], [-214, -495], [-214, -489], [-211, -489], [-210, -488], [-138, -488], [-138, -494], [-137, -495], [-137, -497], [-140, -500]]}, "center": {"72-92": [-175, -494]}}, {"id": 502, "name": "Thieving", "description": "Thieving is one of the skills in RuneScape.", "links": {"website": ["https://oldschool.runescape.wiki/w/Thieving"], "subreddit": ["2007scape"]}, "path": {"69-70": [[-346, -499], [-350, -496], [-350, -493], [-343, -490], [-340, -490], [-339, -491], [-335, -491], [-333, -493], [-333, -496], [-337, -499]], "72-85": [[-238, -499], [-242, -496], [-242, -493], [-240, -491], [-236, -491], [-235, -490], [-232, -490], [-231, -491], [-227, -491], [-225, -493], [-225, -496], [-229, -499]]}, "center": {"69-70": [-341, -494], "72-85": [-233, -495]}}, {"id": 503, "name": "RuneScape", "description": "RuneScape is a fantasy massively multiplayer online role-playing game (MMORPG) developed by Jagex.\n\nMost of the art here (except RuneScape's logo) comes from Old School RuneScape, a version of RuneScape derived from a 2007 build of the game. This version captures a time in RuneScape's history prior to a series of major changes to the game; differences include an older combat system, simpler graphics, and fewer microtransactions. Old School RuneScape is supported and updated with new content separate from the modern RuneScape.", "links": {"website": ["https://en.wikipedia.org/wiki/RuneScape", "https://en.wikipedia.org/wiki/Old_School_RuneScape"], "subreddit": ["2007scape", "runescape"]}, "path": {"69-71": [[-501, -501], [-501, -480], [-380, -480], [-380, -457], [-210, -457], [-210, -501]], "72-88": [[-501, -501], [-501, -466], [-272, -466], [-272, -457], [-102, -457], [-102, -501]]}, "center": {"69-71": [-347, -479], "72-88": [-215, -479]}}, {"id": 504, "name": "Agility", "description": "Agility is one of the skills in RuneScape.", "links": {"website": ["https://oldschool.runescape.wiki/w/Agility"], "subreddit": ["2007scape"]}, "path": {"69-71": [[-242, -499], [-242, -496], [-243, -496], [-246, -493], [-246, -492], [-243, -489], [-242, -489], [-242, -486], [-245, -483], [-245, -480], [-240, -480], [-240, -479], [-238, -479], [-236, -481], [-236, -486], [-238, -489], [-238, -491], [-235, -491], [-234, -490], [-231, -493], [-231, -495], [-232, -495], [-234, -493], [-237, -496], [-238, -496], [-238, -499]], "72-82": [[-134, -499], [-134, -496], [-135, -496], [-138, -493], [-138, -492], [-135, -489], [-134, -489], [-134, -486], [-137, -483], [-137, -480], [-132, -480], [-131, -479], [-130, -479], [-128, -481], [-128, -486], [-130, -489], [-130, -491], [-127, -491], [-126, -490], [-123, -493], [-123, -495], [-124, -495], [-126, -493], [-129, -496], [-130, -496], [-130, -499]]}, "center": {"69-71": [-241, -492], "72-82": [-133, -492]}}, -{"id": 505, "name": "PietSmiet", "description": "A team of five Germans (Peter, Dennis, Chris, Sep and Jay) that have been publishing videos on YouTube for over ten years and amassed over 2.4 Million subscribers in the meantime. Moreover, they have also gathered a large following on Twitch and have been an important part of a large annual event called \"Friendly Fire\" that donates collected money to charity.\nBut most importantly... they have Luca, Andi, Domi, Sven, Martin, Roman, Lena, Jules and Ben who take care of many things that happen in the background.", "links": {"website": ["https://www.youtube.com/channel/UCqwGaUvq_l0RKszeHhZ5leA", "https://www.pietsmiet.de"], "subreddit": ["PietSmiet"], "discord": ["pietsmiet"]}, "path": {"7-258": [[390, -323], [387, -318], [386, -311], [388, -299], [390, -295], [396, -294], [401, -300], [407, -302], [411, -303], [417, -300], [421, -295], [424, -294], [428, -296], [431, -302], [431, -314], [428, -320], [424, -324], [416, -323], [400, -323], [393, -324]]}, "center": {"7-258": [420, -312]}}, +{"id": 505, "name": "PietSmiet", "description": "A team of five Germans (Peter, Dennis, Chris, Sep and Jay) that have been publishing videos on YouTube for over ten years and amassed over 2.4 Million subscribers in the meantime. Moreover, they have also gathered a large following on Twitch and have been an important part of a large annual event called \"Friendly Fire\" that donates collected money to charity.\nBut most importantly... they have Luca, Andi, Domi, Sven, Martin, Roman, Lena, Jules and Ben who take care of many things that happen in the background.", "links": {"website": ["https://www.youtube.com/channel/UCqwGaUvq_l0RKszeHhZ5leA", "https://www.pietsmiet.de"], "subreddit": ["PietSmiet"], "discord": ["pietsmiet"]}, "path": {"7-258, T": [[390, -323], [387, -318], [386, -311], [388, -299], [390, -295], [396, -294], [401, -300], [407, -302], [411, -303], [417, -300], [421, -295], [424, -294], [428, -296], [431, -302], [431, -314], [428, -320], [424, -324], [416, -323], [400, -323], [393, -324]]}, "center": {"7-258, T": [420, -312]}}, {"id": 506, "name": "\"Buddy\" Bud Spencer", "description": "Carlo Pedersoli, known professionally as Bud Spencer, was an Italian actor, professional swimmer and water polo player. He was known for action-comedy and Spaghetti Western roles with his long-time film partner and friend Terence Hill. The duo \"garnered world acclaim and attracted millions to theater seats\"", "links": {"website": ["https://en.wikipedia.org/wiki/Bud_Spencer", "https://www.imdb.com/name/nm0817881/"]}, "path": {"55-82": [[525, -337], [558, -337], [558, -288], [525, -287]]}, "center": {"55-82": [542, -312]}}, -{"id": 507, "name": "Triple spike", "description": "A figure of three triangles in a row, known as a triple spike in the game Geometry Dash, augmented by two wings. In the game, the cube form of the player character can jump over these spikes with careful timing, or it touches them and explodes. The player Michigun was famous for his extensive usage of the obstacle, leading to the association of the figure with him; the wings symbolize Michigun's legacy.", "links": {"subreddit": ["geometrydash"]}, "path": {"74-258": [[-147, 316], [-152, 315], [-151, 314], [-158, 307], [-157, 306], [-158, 305], [-158, 301], [-155, 301], [-154, 302], [-149, 302], [-147, 304], [-146, 305], [-145, 304], [-143, 302], [-142, 301], [-141, 302], [-141, 304], [-140, 306], [-139, 308], [-136, 310], [-131, 302], [-125, 310], [-118, 301], [-115, 304], [-111, 303], [-107, 302], [-103, 301], [-103, 304], [-108, 312], [-112, 315], [-112, 316]]}, "center": {"74-258": [-144, 311]}}, -{"id": 508, "name": "R.I.P. Michigun", "description": "Michigun was a Geometry Dash YouTuber, known for being one of the best players. Unfortunately in 2021 he passed away for an unknown reason.", "links": {"subreddit": ["geometrydash"]}, "path": {"74-258": [[-164, 298], [-164, 321], [-97, 321], [-97, 298]]}, "center": {"74-258": [-130, 310]}}, +{"id": 507, "name": "Triple spike", "description": "A figure of three triangles in a row, known as a triple spike in the game Geometry Dash, augmented by two wings. In the game, the cube form of the player character can jump over these spikes with careful timing, or it touches them and explodes. The player Michigun was famous for his extensive usage of the obstacle, leading to the association of the figure with him; the wings symbolize Michigun's legacy.", "links": {"subreddit": ["geometrydash"]}, "path": {"74-258, T": [[-147, 316], [-152, 315], [-151, 314], [-158, 307], [-157, 306], [-158, 305], [-158, 301], [-155, 301], [-154, 302], [-149, 302], [-147, 304], [-146, 305], [-145, 304], [-143, 302], [-142, 301], [-141, 302], [-141, 304], [-140, 306], [-139, 308], [-136, 310], [-131, 302], [-125, 310], [-118, 301], [-115, 304], [-111, 303], [-107, 302], [-103, 301], [-103, 304], [-108, 312], [-112, 315], [-112, 316]]}, "center": {"74-258, T": [-144, 311]}}, +{"id": 508, "name": "R.I.P. Michigun", "description": "Michigun was a Geometry Dash YouTuber, known for being one of the best players. Unfortunately in 2021 he passed away for an unknown reason.", "links": {"subreddit": ["geometrydash"]}, "path": {"74-258, T": [[-164, 298], [-164, 321], [-97, 321], [-97, 298]]}, "center": {"74-258, T": [-130, 310]}}, {"id": 509, "name": "WorldBox", "description": "WorldBox is a sandbox game where you are God, you control the world, you create civilizations, etc.", "links": {"website": ["https://en.wikipedia.org/wiki/WorldBox"], "subreddit": ["worldbox"]}, "path": {"60-74": [[863, -174], [863, -153], [884, -153], [884, -174]]}, "center": {"60-74": [874, -163]}}, -{"id": 510, "name": "r/ubius", "description": "El subreddit oficial de Rubius", "links": {"subreddit": ["ubius"]}, "path": {"74-258": [[716, 91], [714, 91], [714, 90], [713, 90], [713, 78], [715, 78], [715, 77], [719, 77], [720, 77], [720, 75], [721, 75], [721, 74], [722, 74], [722, 71], [723, 71], [723, 70], [724, 70], [724, 71], [726, 71], [726, 68], [727, 67], [727, 66], [728, 65], [729, 65], [730, 65], [730, 63], [731, 65], [731, 66], [732, 66], [732, 68], [734, 68], [734, 67], [735, 67], [735, 65], [734, 65], [738, 66], [739, 69], [739, 72], [740, 72], [741, 72], [741, 71], [741, 69], [743, 69], [743, 70], [743, 73], [743, 74], [745, 77], [754, 77], [754, 83], [755, 84], [755, 89], [754, 90], [753, 90], [752, 91]]}, "center": {"74-258": [732, 80]}}, -{"id": 511, "name": "Yin-yang symbol", "description": "A yin-yang symbol, also known as a taijitu, is a Chinese symbol representing the duality and balance of opposites.\n\nThis yin-yang symbol has the flags of the Netherlands and Germany on it.", "links": {"website": ["https://en.wikipedia.org/wiki/Yin_and_yang", "https://en.wikipedia.org/wiki/Taijitu#Modern_yin-yang_symbol"], "subreddit": ["PlaceNL", "placeDE", "de"], "discord": ["placeDE"]}, "path": {"48-258": [[-331, -468], [-337, -465], [-343, -460], [-345, -454], [-345, -451], [-344, -450], [-344, -447], [-341, -441], [-336, -436], [-330, -434], [-325, -434], [-319, -437], [-314, -442], [-312, -448], [-312, -450], [-311, -451], [-311, -454], [-314, -461], [-319, -466], [-327, -468]]}, "center": {"48-258": [-328, -451]}}, -{"id": 512, "name": "Fuck AfD", "description": "FCK AFD - Short for \"Fuck AFD\"\n\nThe AfD (Alternative für Deutschland, German for \"Alternative for Germany\") is a German right-wing political party. It's observed by the domestic intelligence service of Germany as a suspected right-wing extremist party. Certain members may legally be called fascists.", "links": {"website": ["https://en.wikipedia.org/wiki/Alternative_for_Germany"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"43-51": [[-280, -439], [-280, -398], [-232, -398], [-232, -433], [-231, -433], [-231, -439]], "52-258": [[-280, -441], [-280, -400], [-234, -400], [-234, -441], [-279, -441]]}, "center": {"43-51": [-255, -418], "52-258": [-257, -420]}}, -{"id": 513, "name": "10/20 Euro Banknotes", "description": "The Euro is the currency used in the Eurozone, It was first adopted in 1999, with Germany adopting it in 2002.", "links": {"website": ["https://en.wikipedia.org/wiki/Euro"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"13-17": [[-338, -430], [-338, -391], [-308, -391], [-308, -430]], "18-258": [[-345, -429], [-345, -408], [-335, -408], [-335, -395], [-310, -395], [-310, -403], [-304, -409], [-300, -409], [-300, -416], [-308, -416], [-308, -429], [-332, -429], [-335, -429]]}, "center": {"13-17": [-323, -410], "18-258": [-322, -414]}}, -{"id": 514, "name": "Euro", "description": "1 and 2 Euro coins, used as currency in Germany since its inception in 2002.", "links": {"website": ["https://en.wikipedia.org/wiki/Euro"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"12-17": [[-338, -449], [-341, -447], [-344, -443], [-344, -438], [-341, -434], [-338, -432], [-311, -432], [-307, -435], [-305, -439], [-305, -443], [-307, -446], [-311, -449]], "18-258": [[-294, -421], [-298, -418], [-300, -416], [-300, -409], [-304, -409], [-307, -407], [-310, -403], [-310, -398], [-305, -391], [-298, -391], [-293, -395], [-292, -398], [-292, -402], [-289, -402], [-286, -404], [-282, -409], [-282, -414], [-286, -419], [-290, -421]]}, "center": {"12-17": [-324, -440], "18-258": [-291, -411]}}, -{"id": 515, "name": "r/ich_iel", "description": "The German equivalent of r/me_irl, a subreddit where people can post images, videos, or links that represent themselves.", "links": {"subreddit": ["ich_iel"], "discord": ["placeDE"]}, "path": {"198-258": [[-1500, -409], [-1500, -401], [-1458, -401], [-1458, -409]]}, "center": {"198-258": [-1479, -405]}}, -{"id": 516, "name": "VanMoof", "description": "VanMoof is a Dutch bicycle manufacturer that makes high end electric bicycles known to be mostly ridden by posh people from the city. The bicycle has a lot of unique parts that makes it so only VanMoof can repair it. \nVanMoof recently declared bankruptcy, so now a lot of people that need repairs are without a place to repair their expensive bicycle.", "links": {"website": ["https://en.wikipedia.org/wiki/VanMoof"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"54-258": [[-17, -481], [-17, -473], [-22, -473], [-27, -470], [-31, -461], [-31, -456], [-28, -452], [-26, -451], [-14, -451], [-12, -453], [2, -453], [4, -451], [16, -451], [20, -455], [21, -457], [21, -462], [17, -469], [12, -472], [5, -472], [5, -478], [7, -478], [7, -479], [5, -481], [1, -481], [-2, -479], [-2, -477], [-10, -477], [-10, -480], [-14, -480], [-14, -481]]}, "center": {"54-258": [-7, -465]}}, -{"id": 517, "name": "Daft Punk", "description": "Daft Punk were a French electronic music duo formed in 1993 in Paris by Thomas Bangalter (Left) and Guy-Manuel de Homem-Christo (Right). They achieved popularity in the late 1990s as part of the French house movement, combining elements of house music with funk, disco, techno, rock and synth-pop.\n\nTheir sudden retirement in 2021 has cemented the pair as one of the most influential acts in dance music and as one of France's most beloved cultural exports.", "links": {"website": ["https://en.wikipedia.org/wiki/Daft_Punk"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"59-258": [[-470, 86], [-470, 28], [-476, 28], [-478, 30], [-480, 31], [-483, 31], [-485, 33], [-486, 33], [-487, 34], [-487, 37], [-489, 37], [-489, 40], [-491, 40], [-491, 44], [-493, 44], [-494, 45], [-494, 47], [-496, 47], [-496, 50], [-497, 51], [-497, 61], [-486, 72], [-486, 74], [-485, 75], [-485, 77], [-482, 80], [-482, 82], [-478, 86], [-470, 86], [-470, 87], [-396, 87], [-396, 86], [-383, 86], [-374, 77], [-374, 71], [-372, 71], [-372, 70], [-371, 69], [-371, 67], [-372, 66], [-372, 64], [-371, 63], [-371, 59], [-371, 55], [-372, 55], [-373, 54], [-374, 54], [-375, 46], [-376, 45], [-376, 40], [-386, 30], [-396, 30], [-396, 87]]}, "center": {"59-258": [-483, 55]}}, -{"id": 518, "name": "Louis de Funès", "description": "Louis Germain David de Funès de Galarza (31 July 1914 – 27 January 1983) was a French actor and comedian. He is France's favourite actor, according to a series of polls conducted since the late 1960s, having played over 150 roles in film and over 100 on stage. His acting style is remembered for its high-energy performance and his wide range of facial expressions and tics. A considerable part of his best-known acting was directed by Jean Girault.\nOne of the most famous French actors of all time, Louis de Funès also enjoys widespread international recognition. In addition to his immense fame in the French-speaking world, he is also still a household name in many other parts of the world, including German-speaking countries, the former Soviet Union, former Eastern Bloc, Italy, Spain, Greece, Albania, ex-Yugoslavia, as well as Turkey, Iran, Israel, and Mauritius.", "links": {"website": ["https://en.wikipedia.org/wiki/Louis_de_Fun%C3%A8s"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"71-258": [[-398, 193], [-405, 202], [-405, 213], [-403, 225], [-413, 227], [-416, 216], [-420, 216], [-428, 223], [-428, 229], [-420, 243], [-419, 253], [-409, 254], [-412, 259], [-378, 259], [-370, 255], [-371, 238], [-379, 235], [-376, 226], [-372, 221], [-371, 208], [-375, 194], [-387, 191], [-396, 192]]}, "center": {"71-258": [-396, 241]}}, -{"id": 519, "name": "'Bicorne' and 'Tangente'", "description": "The bicorne and the tangent are respectively the ceremonial hat and weapon, now known as part of the uniform of the École Polytechnique, a prestigious French military school.", "links": {"website": ["https://en.wikipedia.org/wiki/%C3%89cole_polytechnique"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"19-258": [[-398, 407], [-395, 411], [-391, 404], [-380, 399], [-369, 406], [-368, 413], [-390, 437], [-389, 424], [-389, 416], [-397, 416], [-403, 408], [-399, 406]]}, "center": {"19-258": [-380, 411]}}, -{"id": 520, "name": "Formula One", "description": "Formula One is the highest level of open-wheel motorsport. First established in 1950, it has seen multiple championship winners over its 70 years of running, the most latest - in 2022 - being Max Verstappen and Red Bull Racing.\n\nSpecifically, this car depicts an Alpine F1 Team car, notable for its pink BWT branding on its sidepods.", "links": {"website": ["https://formula1.com"], "subreddit": ["Formula1"]}, "path": {"49-54": [[-425, 142], [-411, 142], [-405, 141], [-396, 143], [-394, 141], [-393, 142], [-382, 142], [-379, 143], [-373, 143], [-370, 140], [-370, 134], [-372, 131], [-370, 129], [-372, 125], [-381, 125], [-387, 129], [-390, 127], [-392, 126], [-396, 122], [-401, 122], [-404, 125], [-404, 128], [-407, 128], [-410, 131], [-411, 130], [-419, 130], [-421, 131], [-423, 133], [-423, 136], [-425, 138]], "62-258": [[-425, 309], [-409, 309], [-409, 308], [-403, 308], [-403, 309], [-402, 309], [-402, 310], [-395, 310], [-395, 309], [-378, 309], [-378, 310], [-372, 310], [-372, 309], [-371, 309], [-371, 308], [-370, 308], [-370, 301], [-371, 301], [-371, 300], [-372, 300], [-372, 297], [-371, 297], [-371, 294], [-381, 294], [-381, 296], [-382, 296], [-382, 297], [-383, 297], [-383, 298], [-385, 298], [-385, 296], [-386, 296], [-386, 295], [-386, 296], [-387, 296], [-389, 296], [-389, 295], [-393, 295], [-393, 291], [-401, 291], [-401, 292], [-402, 292], [-402, 297], [-407, 297], [-407, 301], [-410, 301], [-410, 300], [-411, 300], [-411, 299], [-418, 299], [-418, 300], [-420, 300], [-420, 301], [-421, 301], [-421, 304], [-421, 305], [-422, 305], [-422, 306], [-423, 306], [-423, 307], [-424, 307], [-425, 308]]}, "center": {"49-54": [-397, 133], "62-258": [-397, 302]}}, -{"id": 522, "name": "Shaïna Hansye", "description": "Tribute to Shaïna Hansye, a young woman victim of sexual harassment and violence murdered at the age of 15 in 2017.", "links": {"website": ["https://fr.wikipedia.org/wiki/Affaire_Sha%C3%AFna_Hansye", "https://www.leparisien.fr/resizer/oCgsEwCARsxcAf94BiUVQvU_Uz8=/932x582/cloudfront-eu-central-1.images.arcpublishing.com/leparisien/QB43V7BIXZH7RODB5NTRAYJG7U.jpg"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"72-258": [[-447, -11], [-445, -28], [-444, -54], [-432, -68], [-419, -64], [-411, -51], [-409, -29], [-410, -11], [-447, -10]]}, "center": {"72-258": [-427, -29]}}, +{"id": 510, "name": "r/ubius", "description": "El subreddit oficial de Rubius", "links": {"subreddit": ["ubius"]}, "path": {"74-258, T": [[716, 91], [714, 91], [714, 90], [713, 90], [713, 78], [715, 78], [715, 77], [719, 77], [720, 77], [720, 75], [721, 75], [721, 74], [722, 74], [722, 71], [723, 71], [723, 70], [724, 70], [724, 71], [726, 71], [726, 68], [727, 67], [727, 66], [728, 65], [729, 65], [730, 65], [730, 63], [731, 65], [731, 66], [732, 66], [732, 68], [734, 68], [734, 67], [735, 67], [735, 65], [734, 65], [738, 66], [739, 69], [739, 72], [740, 72], [741, 72], [741, 71], [741, 69], [743, 69], [743, 70], [743, 73], [743, 74], [745, 77], [754, 77], [754, 83], [755, 84], [755, 89], [754, 90], [753, 90], [752, 91]]}, "center": {"74-258, T": [732, 80]}}, +{"id": 511, "name": "Yin-yang symbol", "description": "A yin-yang symbol, also known as a taijitu, is a Chinese symbol representing the duality and balance of opposites.\n\nThis yin-yang symbol has the flags of the Netherlands and Germany on it.", "links": {"website": ["https://en.wikipedia.org/wiki/Yin_and_yang", "https://en.wikipedia.org/wiki/Taijitu#Modern_yin-yang_symbol"], "subreddit": ["PlaceNL", "placeDE", "de"], "discord": ["placeDE"]}, "path": {"48-258, T": [[-331, -468], [-337, -465], [-343, -460], [-345, -454], [-345, -451], [-344, -450], [-344, -447], [-341, -441], [-336, -436], [-330, -434], [-325, -434], [-319, -437], [-314, -442], [-312, -448], [-312, -450], [-311, -451], [-311, -454], [-314, -461], [-319, -466], [-327, -468]]}, "center": {"48-258, T": [-328, -451]}}, +{"id": 512, "name": "Fuck AfD", "description": "FCK AFD - Short for \"Fuck AFD\"\n\nThe AfD (Alternative für Deutschland, German for \"Alternative for Germany\") is a German right-wing political party. It's observed by the domestic intelligence service of Germany as a suspected right-wing extremist party. Certain members may legally be called fascists.", "links": {"website": ["https://en.wikipedia.org/wiki/Alternative_for_Germany"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"43-51": [[-280, -439], [-280, -398], [-232, -398], [-232, -433], [-231, -433], [-231, -439]], "52-258, T": [[-280, -441], [-280, -400], [-234, -400], [-234, -441], [-279, -441]]}, "center": {"43-51": [-255, -418], "52-258, T": [-257, -420]}}, +{"id": 513, "name": "10/20 Euro Banknotes", "description": "The Euro is the currency used in the Eurozone, It was first adopted in 1999, with Germany adopting it in 2002.", "links": {"website": ["https://en.wikipedia.org/wiki/Euro"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"13-17": [[-338, -430], [-338, -391], [-308, -391], [-308, -430]], "18-258, T": [[-345, -429], [-345, -408], [-335, -408], [-335, -395], [-310, -395], [-310, -403], [-304, -409], [-300, -409], [-300, -416], [-308, -416], [-308, -429], [-332, -429], [-335, -429]]}, "center": {"13-17": [-323, -410], "18-258, T": [-322, -414]}}, +{"id": 514, "name": "Euro", "description": "1 and 2 Euro coins, used as currency in Germany since its inception in 2002.", "links": {"website": ["https://en.wikipedia.org/wiki/Euro"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"12-17": [[-338, -449], [-341, -447], [-344, -443], [-344, -438], [-341, -434], [-338, -432], [-311, -432], [-307, -435], [-305, -439], [-305, -443], [-307, -446], [-311, -449]], "18-258, T": [[-294, -421], [-298, -418], [-300, -416], [-300, -409], [-304, -409], [-307, -407], [-310, -403], [-310, -398], [-305, -391], [-298, -391], [-293, -395], [-292, -398], [-292, -402], [-289, -402], [-286, -404], [-282, -409], [-282, -414], [-286, -419], [-290, -421]]}, "center": {"12-17": [-324, -440], "18-258, T": [-291, -411]}}, +{"id": 515, "name": "r/ich_iel", "description": "The German equivalent of r/me_irl, a subreddit where people can post images, videos, or links that represent themselves.", "links": {"subreddit": ["ich_iel"], "discord": ["placeDE"]}, "path": {"198-258, T": [[-1500, -409], [-1500, -401], [-1458, -401], [-1458, -409]]}, "center": {"198-258, T": [-1479, -405]}}, +{"id": 516, "name": "VanMoof", "description": "VanMoof is a Dutch bicycle manufacturer that makes high end electric bicycles known to be mostly ridden by posh people from the city. The bicycle has a lot of unique parts that makes it so only VanMoof can repair it. \nVanMoof recently declared bankruptcy, so now a lot of people that need repairs are without a place to repair their expensive bicycle.", "links": {"website": ["https://en.wikipedia.org/wiki/VanMoof"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"54-258, T": [[-17, -481], [-17, -473], [-22, -473], [-27, -470], [-31, -461], [-31, -456], [-28, -452], [-26, -451], [-14, -451], [-12, -453], [2, -453], [4, -451], [16, -451], [20, -455], [21, -457], [21, -462], [17, -469], [12, -472], [5, -472], [5, -478], [7, -478], [7, -479], [5, -481], [1, -481], [-2, -479], [-2, -477], [-10, -477], [-10, -480], [-14, -480], [-14, -481]]}, "center": {"54-258, T": [-7, -465]}}, +{"id": 517, "name": "Daft Punk", "description": "Daft Punk were a French electronic music duo formed in 1993 in Paris by Thomas Bangalter (Left) and Guy-Manuel de Homem-Christo (Right). They achieved popularity in the late 1990s as part of the French house movement, combining elements of house music with funk, disco, techno, rock and synth-pop.\n\nTheir sudden retirement in 2021 has cemented the pair as one of the most influential acts in dance music and as one of France's most beloved cultural exports.", "links": {"website": ["https://en.wikipedia.org/wiki/Daft_Punk"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"59-258, T": [[-470, 86], [-470, 28], [-476, 28], [-478, 30], [-480, 31], [-483, 31], [-485, 33], [-486, 33], [-487, 34], [-487, 37], [-489, 37], [-489, 40], [-491, 40], [-491, 44], [-493, 44], [-494, 45], [-494, 47], [-496, 47], [-496, 50], [-497, 51], [-497, 61], [-486, 72], [-486, 74], [-485, 75], [-485, 77], [-482, 80], [-482, 82], [-478, 86], [-470, 86], [-470, 87], [-396, 87], [-396, 86], [-383, 86], [-374, 77], [-374, 71], [-372, 71], [-372, 70], [-371, 69], [-371, 67], [-372, 66], [-372, 64], [-371, 63], [-371, 59], [-371, 55], [-372, 55], [-373, 54], [-374, 54], [-375, 46], [-376, 45], [-376, 40], [-386, 30], [-396, 30], [-396, 87]]}, "center": {"59-258, T": [-483, 55]}}, +{"id": 518, "name": "Louis de Funès", "description": "Louis Germain David de Funès de Galarza (31 July 1914 – 27 January 1983) was a French actor and comedian. He is France's favourite actor, according to a series of polls conducted since the late 1960s, having played over 150 roles in film and over 100 on stage. His acting style is remembered for its high-energy performance and his wide range of facial expressions and tics. A considerable part of his best-known acting was directed by Jean Girault.\nOne of the most famous French actors of all time, Louis de Funès also enjoys widespread international recognition. In addition to his immense fame in the French-speaking world, he is also still a household name in many other parts of the world, including German-speaking countries, the former Soviet Union, former Eastern Bloc, Italy, Spain, Greece, Albania, ex-Yugoslavia, as well as Turkey, Iran, Israel, and Mauritius.", "links": {"website": ["https://en.wikipedia.org/wiki/Louis_de_Fun%C3%A8s"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"71-258, T": [[-398, 193], [-405, 202], [-405, 213], [-403, 225], [-413, 227], [-416, 216], [-420, 216], [-428, 223], [-428, 229], [-420, 243], [-419, 253], [-409, 254], [-412, 259], [-378, 259], [-370, 255], [-371, 238], [-379, 235], [-376, 226], [-372, 221], [-371, 208], [-375, 194], [-387, 191], [-396, 192]]}, "center": {"71-258, T": [-396, 241]}}, +{"id": 519, "name": "'Bicorne' and 'Tangente'", "description": "The bicorne and the tangent are respectively the ceremonial hat and weapon, now known as part of the uniform of the École Polytechnique, a prestigious French military school.", "links": {"website": ["https://en.wikipedia.org/wiki/%C3%89cole_polytechnique"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"19-258, T": [[-398, 407], [-395, 411], [-391, 404], [-380, 399], [-369, 406], [-368, 413], [-390, 437], [-389, 424], [-389, 416], [-397, 416], [-403, 408], [-399, 406]]}, "center": {"19-258, T": [-380, 411]}}, +{"id": 520, "name": "Formula One", "description": "Formula One is the highest level of open-wheel motorsport. First established in 1950, it has seen multiple championship winners over its 70 years of running, the most latest - in 2022 - being Max Verstappen and Red Bull Racing.\n\nSpecifically, this car depicts an Alpine F1 Team car, notable for its pink BWT branding on its sidepods.", "links": {"website": ["https://formula1.com"], "subreddit": ["Formula1"]}, "path": {"49-54": [[-425, 142], [-411, 142], [-405, 141], [-396, 143], [-394, 141], [-393, 142], [-382, 142], [-379, 143], [-373, 143], [-370, 140], [-370, 134], [-372, 131], [-370, 129], [-372, 125], [-381, 125], [-387, 129], [-390, 127], [-392, 126], [-396, 122], [-401, 122], [-404, 125], [-404, 128], [-407, 128], [-410, 131], [-411, 130], [-419, 130], [-421, 131], [-423, 133], [-423, 136], [-425, 138]], "62-258, T": [[-425, 309], [-409, 309], [-409, 308], [-403, 308], [-403, 309], [-402, 309], [-402, 310], [-395, 310], [-395, 309], [-378, 309], [-378, 310], [-372, 310], [-372, 309], [-371, 309], [-371, 308], [-370, 308], [-370, 301], [-371, 301], [-371, 300], [-372, 300], [-372, 297], [-371, 297], [-371, 294], [-381, 294], [-381, 296], [-382, 296], [-382, 297], [-383, 297], [-383, 298], [-385, 298], [-385, 296], [-386, 296], [-386, 295], [-386, 296], [-387, 296], [-389, 296], [-389, 295], [-393, 295], [-393, 291], [-401, 291], [-401, 292], [-402, 292], [-402, 297], [-407, 297], [-407, 301], [-410, 301], [-410, 300], [-411, 300], [-411, 299], [-418, 299], [-418, 300], [-420, 300], [-420, 301], [-421, 301], [-421, 304], [-421, 305], [-422, 305], [-422, 306], [-423, 306], [-423, 307], [-424, 307], [-425, 308]]}, "center": {"49-54": [-397, 133], "62-258, T": [-397, 302]}}, +{"id": 522, "name": "Shaïna Hansye", "description": "Tribute to Shaïna Hansye, a young woman victim of sexual harassment and violence murdered at the age of 15 in 2017.", "links": {"website": ["https://fr.wikipedia.org/wiki/Affaire_Sha%C3%AFna_Hansye", "https://www.leparisien.fr/resizer/oCgsEwCARsxcAf94BiUVQvU_Uz8=/932x582/cloudfront-eu-central-1.images.arcpublishing.com/leparisien/QB43V7BIXZH7RODB5NTRAYJG7U.jpg"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"72-258, T": [[-447, -11], [-445, -28], [-444, -54], [-432, -68], [-419, -64], [-411, -51], [-409, -29], [-410, -11], [-447, -10]]}, "center": {"72-258, T": [-427, -29]}}, {"id": 523, "name": "CGT truck", "description": "The General Confederation of Labour (French: Confédération Générale du Travail, CGT) is a national trade union center, founded in 1895 in the city of Limoges. It is the first of the five major French confederations of trade unions.\n\nIt is the largest in terms of votes (32.1% at the 2002 professional election, 34.0% in the 2008 election), and second largest in terms of membership numbers.", "links": {"website": ["https://en.wikipedia.org/wiki/General_Confederation_of_Labour_(France)"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"54-105": [[-500, 184], [-471, 184], [-469, 178], [-479, 170], [-487, 169], [-484, 164], [-485, 157], [-494, 156], [-497, 161], [-495, 167], [-492, 170], [-499, 170]]}, "center": {"54-105": [-488, 176]}}, -{"id": 524, "name": "Carte vitale", "description": "The carte vitale as a symbol of the French social security system which allow through redistribution of wealth low pricce to free medical service for all.", "links": {"website": ["https://en.wikipedia.org/wiki/Social_security_in_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"57-178": [[-496, 91], [-496, 116], [-496, 117], [-480, 118], [-480, 116], [-477, 115], [-476, 116], [-476, 111], [-479, 111], [-480, 105], [-479, 104], [-475, 105], [-455, 105], [-453, 105], [-453, 91]], "221-258": [[-498, 194], [-456, 194], [-456, 209], [-463, 211], [-466, 218], [-470, 218], [-498, 218]]}, "center": {"57-178": [-487, 100], "221-258": [-477, 206]}}, -{"id": 525, "name": "Hooty", "description": "Hooty is a worm-like owl demon from Disney's \"The Owl House\", an American animated fantasy TV series.", "links": {"website": ["https://theowlhouse.fandom.com/wiki/Hooty"], "subreddit": ["TheOwlHouse", "place_CentralAlliance"], "discord": ["TheOwlHouse"]}, "path": {"46-154": [[-234, 463], [-234, 499], [-224, 499], [-224, 463]], "155-258": [[-234, 463], [-234, 567], [-224, 567], [-224, 463]]}, "center": {"46-154": [-229, 481], "155-258": [-229, 515]}}, -{"id": 526, "name": "Blue Pikmin", "description": "Blue Pikmin are a type of Pikmin from the game Pikmin that can swim. All other Pikmin drown shortly after entering water.", "links": {"website": ["https://www.pikminwiki.com/Blue_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"28-258": [[226, 74], [223, 77], [223, 85], [219, 87], [216, 91], [216, 94], [218, 97], [226, 97], [228, 95], [228, 91], [226, 88], [226, 81], [229, 78], [229, 76], [227, 74]]}, "center": {"28-258": [222, 92]}}, -{"id": 527, "name": "White Pikmin", "description": "White Pikmin are a type of Pikmin from the Pikmin game series. They are the fastest type of Pikmin and are immune to poison.", "links": {"website": ["https://www.pikminwiki.com/White_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"12-35": [[226, 77], [224, 79], [224, 81], [223, 81], [223, 86], [235, 86], [235, 80], [236, 79], [234, 77]], "36-258": [[230, 77], [228, 79], [228, 81], [227, 81], [227, 83], [226, 83], [226, 85], [227, 85], [227, 87], [235, 87], [235, 85], [236, 85], [236, 83], [235, 83], [235, 80], [236, 80], [236, 79], [234, 77]]}, "center": {"12-35": [230, 82], "36-258": [231, 83]}}, +{"id": 524, "name": "Carte vitale", "description": "The carte vitale as a symbol of the French social security system which allow through redistribution of wealth low pricce to free medical service for all.", "links": {"website": ["https://en.wikipedia.org/wiki/Social_security_in_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"57-178": [[-496, 91], [-496, 116], [-496, 117], [-480, 118], [-480, 116], [-477, 115], [-476, 116], [-476, 111], [-479, 111], [-480, 105], [-479, 104], [-475, 105], [-455, 105], [-453, 105], [-453, 91]], "221-258, T": [[-498, 194], [-456, 194], [-456, 209], [-463, 211], [-466, 218], [-470, 218], [-498, 218]]}, "center": {"57-178": [-487, 100], "221-258, T": [-477, 206]}}, +{"id": 525, "name": "Hooty", "description": "Hooty is a worm-like owl demon from Disney's \"The Owl House\", an American animated fantasy TV series.", "links": {"website": ["https://theowlhouse.fandom.com/wiki/Hooty"], "subreddit": ["TheOwlHouse", "place_CentralAlliance"], "discord": ["TheOwlHouse"]}, "path": {"46-154": [[-234, 463], [-234, 499], [-224, 499], [-224, 463]], "155-258, T": [[-234, 463], [-234, 567], [-224, 567], [-224, 463]]}, "center": {"46-154": [-229, 481], "155-258, T": [-229, 515]}}, +{"id": 526, "name": "Blue Pikmin", "description": "Blue Pikmin are a type of Pikmin from the game Pikmin that can swim. All other Pikmin drown shortly after entering water.", "links": {"website": ["https://www.pikminwiki.com/Blue_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"28-258, T": [[226, 74], [223, 77], [223, 85], [219, 87], [216, 91], [216, 94], [218, 97], [226, 97], [228, 95], [228, 91], [226, 88], [226, 81], [229, 78], [229, 76], [227, 74]]}, "center": {"28-258, T": [222, 92]}}, +{"id": 527, "name": "White Pikmin", "description": "White Pikmin are a type of Pikmin from the Pikmin game series. They are the fastest type of Pikmin and are immune to poison.", "links": {"website": ["https://www.pikminwiki.com/White_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"12-35": [[226, 77], [224, 79], [224, 81], [223, 81], [223, 86], [235, 86], [235, 80], [236, 79], [234, 77]], "36-258, T": [[230, 77], [228, 79], [228, 81], [227, 81], [227, 83], [226, 83], [226, 85], [227, 85], [227, 87], [235, 87], [235, 85], [236, 85], [236, 83], [235, 83], [235, 80], [236, 80], [236, 79], [234, 77]]}, "center": {"12-35": [230, 82], "36-258, T": [231, 83]}}, {"id": 528, "name": "Rock Pikmin", "description": "Rock Pikmin are a type of Pikmin with rocks for bodies. They can smash through breakable objects and deal significant damage to enemies.", "links": {"website": ["https://www.pikminwiki.com/Rock_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"68-149": [[221, 73], [219, 75], [219, 77], [217, 79], [217, 82], [219, 84], [221, 84], [224, 81], [222, 78], [222, 76], [223, 75]]}, "center": {"68-149": [220, 81]}}, -{"id": 529, "name": "Pikmin", "description": "Pikmin is a strategy video game series created by Nintendo. The player commands a small army of tiny creatures named Pikmin, fighting off enemies while collecting items needed to beat the game.", "links": {"website": ["https://www.pikminwiki.com/Rock_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"5-26": [[198, 59], [196, 61], [196, 65], [194, 67], [194, 78], [190, 81], [190, 87], [186, 90], [187, 97], [186, 98], [186, 103], [183, 106], [183, 111], [185, 114], [185, 116], [190, 116], [191, 117], [194, 117], [197, 120], [200, 120], [206, 114], [212, 114], [212, 113], [222, 113], [228, 108], [227, 107], [227, 100], [224, 100], [224, 98], [220, 98], [220, 97], [227, 93], [227, 91], [219, 91], [219, 88], [222, 86], [235, 86], [235, 80], [236, 79], [234, 76], [224, 76], [223, 75], [222, 75], [219, 77], [211, 77], [211, 75], [214, 75], [219, 69], [219, 66], [217, 64], [215, 64], [211, 68], [211, 65], [207, 59], [202, 64], [201, 64]], "27-258": [[199, 68], [188, 81], [188, 85], [184, 85], [184, 88], [185, 89], [185, 101], [205, 101], [205, 98], [236, 98], [236, 76], [237, 75], [239, 75], [243, 74], [243, 68]]}, "center": {"5-26": [203, 97], "27-258": [220, 83]}}, -{"id": 530, "name": "Genderfluid egg", "description": "\"Egg\" is a term for being in denial/unaware of one's own gender or sexuality. This egg has a genderfluid pride flag on it.\n\nGenderfluid refers to someone whose gender identity changes over time. A genderfluid individual can identify as any gender, or combination of genders at any given time. Their gender can change at random or it may vary in response to different circumstances. One's gender can change over the course of hours, days, weeks, months, or years. For some individuals their gender changes on a somewhat consistent \"schedule\", while for others their gender changes at random times. Some genderfluid individuals can be fluid between all genders, or a large amount of genders. Other genderfluid individuals are fluid between a small handful of genders.", "links": {"website": ["https://knowyourmeme.com/memes/egg-transgender", "https://lgbta.miraheze.org/wiki/Genderfluid"], "subreddit": ["transplace"], "discord": ["TransPlace"]}, "path": {"57-258": [[126, 42], [123, 44], [120, 49], [120, 52], [124, 56], [129, 56], [133, 52], [133, 49], [130, 44], [127, 42]]}, "center": {"57-258": [127, 50]}}, -{"id": 531, "name": "Trixie", "description": "Trixie is a character from the TV series My Little Pony: Friendship is Magic. There are rumours that she was originally supposed to be a male pony before getting changed to a female, so her being trans is a popular headcanon.", "links": {"website": ["https://mlp.fandom.com/wiki/Trixie"], "subreddit": ["mylittlepony", "transplace"], "discord": ["adQYFgeVC9"]}, "path": {"60-258": [[265, 41], [259, 45], [254, 51], [252, 51], [250, 53], [250, 64], [252, 66], [255, 66], [256, 65], [259, 65], [259, 68], [274, 68], [274, 66], [271, 63], [268, 63], [268, 60], [272, 60], [272, 59], [267, 54], [267, 50], [269, 50], [269, 53], [271, 53], [273, 51], [273, 47], [268, 41]]}, "center": {"60-258": [260, 57]}}, -{"id": 532, "name": "Demiromantic flag", "description": "A pride flag representing the demiromantic community. Demiromantic is a romantic orientation on the aromantic spectrum defined as someone who does not experience romantic attraction until they have formed a deep emotional connection with someone. This connection may be sexual, platonic, or another form/combination of forms depending on the demiromantic individual. Forming an emotional bond with someone does not mean that one is automatically attracted to said individual, as it just means there's now a possibility for one to feel attraction. The sexual equivalent is demisexual, which uses the same flag as demiromantic but with the green stripe changed to purple.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Demiromantic"]}, "path": {"71-258": [[152, 95], [152, 101], [166, 101], [166, 95]]}, "center": {"71-258": [159, 98]}}, -{"id": 533, "name": "Demisexual flag", "description": "A flag representing the demisexual community. Demisexual people are only sexually attracted to people they have an emotional bond with.", "links": {"website": ["https://en.wikipedia.org/wiki/Demisexuality"]}, "path": {"69-72": [[169, 95], [169, 101], [185, 101], [185, 95]], "73-258": [[173, 95], [173, 101], [185, 101], [185, 95]]}, "center": {"69-72": [177, 98], "73-258": [179, 98]}}, -{"id": 534, "name": "Grayromantic flag", "description": "A pride flag representing the grayromantic community. Grayromantic people relate to aromanticism, but are not completely aromantic.", "links": {"website": ["https://aromantic.fandom.com/wiki/Gray-romantic"]}, "path": {"72-258": [[165, 95], [165, 101], [170, 101], [170, 95]]}, "center": {"72-258": [168, 98]}}, +{"id": 529, "name": "Pikmin", "description": "Pikmin is a strategy video game series created by Nintendo. The player commands a small army of tiny creatures named Pikmin, fighting off enemies while collecting items needed to beat the game.", "links": {"website": ["https://www.pikminwiki.com/Rock_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"5-26": [[198, 59], [196, 61], [196, 65], [194, 67], [194, 78], [190, 81], [190, 87], [186, 90], [187, 97], [186, 98], [186, 103], [183, 106], [183, 111], [185, 114], [185, 116], [190, 116], [191, 117], [194, 117], [197, 120], [200, 120], [206, 114], [212, 114], [212, 113], [222, 113], [228, 108], [227, 107], [227, 100], [224, 100], [224, 98], [220, 98], [220, 97], [227, 93], [227, 91], [219, 91], [219, 88], [222, 86], [235, 86], [235, 80], [236, 79], [234, 76], [224, 76], [223, 75], [222, 75], [219, 77], [211, 77], [211, 75], [214, 75], [219, 69], [219, 66], [217, 64], [215, 64], [211, 68], [211, 65], [207, 59], [202, 64], [201, 64]], "27-258, T": [[199, 68], [188, 81], [188, 85], [184, 85], [184, 88], [185, 89], [185, 101], [205, 101], [205, 98], [236, 98], [236, 76], [237, 75], [239, 75], [243, 74], [243, 68]]}, "center": {"5-26": [203, 97], "27-258, T": [220, 83]}}, +{"id": 530, "name": "Genderfluid egg", "description": "\"Egg\" is a term for being in denial/unaware of one's own gender or sexuality. This egg has a genderfluid pride flag on it.\n\nGenderfluid refers to someone whose gender identity changes over time. A genderfluid individual can identify as any gender, or combination of genders at any given time. Their gender can change at random or it may vary in response to different circumstances. One's gender can change over the course of hours, days, weeks, months, or years. For some individuals their gender changes on a somewhat consistent \"schedule\", while for others their gender changes at random times. Some genderfluid individuals can be fluid between all genders, or a large amount of genders. Other genderfluid individuals are fluid between a small handful of genders.", "links": {"website": ["https://knowyourmeme.com/memes/egg-transgender", "https://lgbta.miraheze.org/wiki/Genderfluid"], "subreddit": ["transplace"], "discord": ["TransPlace"]}, "path": {"57-258, T": [[126, 42], [123, 44], [120, 49], [120, 52], [124, 56], [129, 56], [133, 52], [133, 49], [130, 44], [127, 42]]}, "center": {"57-258, T": [127, 50]}}, +{"id": 531, "name": "Trixie", "description": "Trixie is a character from the TV series My Little Pony: Friendship is Magic. There are rumours that she was originally supposed to be a male pony before getting changed to a female, so her being trans is a popular headcanon.", "links": {"website": ["https://mlp.fandom.com/wiki/Trixie"], "subreddit": ["mylittlepony", "transplace"], "discord": ["adQYFgeVC9"]}, "path": {"60-258, T": [[265, 41], [259, 45], [254, 51], [252, 51], [250, 53], [250, 64], [252, 66], [255, 66], [256, 65], [259, 65], [259, 68], [274, 68], [274, 66], [271, 63], [268, 63], [268, 60], [272, 60], [272, 59], [267, 54], [267, 50], [269, 50], [269, 53], [271, 53], [273, 51], [273, 47], [268, 41]]}, "center": {"60-258, T": [260, 57]}}, +{"id": 532, "name": "Demiromantic flag", "description": "A pride flag representing the demiromantic community. Demiromantic is a romantic orientation on the aromantic spectrum defined as someone who does not experience romantic attraction until they have formed a deep emotional connection with someone. This connection may be sexual, platonic, or another form/combination of forms depending on the demiromantic individual. Forming an emotional bond with someone does not mean that one is automatically attracted to said individual, as it just means there's now a possibility for one to feel attraction. The sexual equivalent is demisexual, which uses the same flag as demiromantic but with the green stripe changed to purple.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Demiromantic"]}, "path": {"71-258, T": [[152, 95], [152, 101], [166, 101], [166, 95]]}, "center": {"71-258, T": [159, 98]}}, +{"id": 533, "name": "Demisexual flag", "description": "A flag representing the demisexual community. Demisexual people are only sexually attracted to people they have an emotional bond with.", "links": {"website": ["https://en.wikipedia.org/wiki/Demisexuality"]}, "path": {"69-72": [[169, 95], [169, 101], [185, 101], [185, 95]], "73-258, T": [[173, 95], [173, 101], [185, 101], [185, 95]]}, "center": {"69-72": [177, 98], "73-258, T": [179, 98]}}, +{"id": 534, "name": "Grayromantic flag", "description": "A pride flag representing the grayromantic community. Grayromantic people relate to aromanticism, but are not completely aromantic.", "links": {"website": ["https://aromantic.fandom.com/wiki/Gray-romantic"]}, "path": {"72-258, T": [[165, 95], [165, 101], [170, 101], [170, 95]]}, "center": {"72-258, T": [168, 98]}}, {"id": 535, "name": "Arc de Triophme", "description": "The Arc de Triomphe de l'Étoile ('Triumphal Arch of the Star') is one of the most famous monuments in Paris, France, standing at the western end of the Champs-Élysées at the centre of Place Charles de Gaulle, formerly named Place de l'Étoile—the étoile or \"star\" of the juncture formed by its twelve radiating avenues. The location of the arc and the plaza is shared between three arrondissements, 16th (south and west), 17th (north), and 8th (east). The Arc de Triomphe honours those who fought and died for France in the French Revolutionary and Napoleonic Wars, with the names of all French victories and generals inscribed on its inner and outer surfaces. Beneath its vault lies the Tomb of the Unknown Soldier from World War I.", "links": {"website": ["https://en.wikipedia.org/wiki/Arc_de_Triomphe"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"54-76": [[-474, 184], [-476, 151], [-480, 143], [-479, 138], [-474, 111], [-478, 109], [-477, 104], [-393, 105], [-392, 123], [-393, 187], [-473, 184]]}, "center": {"54-76": [-433, 145]}}, {"id": 536, "name": "Jean Moulin", "description": "Jean Pierre Moulin (20 June 1899 – 8 July 1943) was a French civil servant and resistant who served as the first President of the National Council of the Resistance during World War II from 27 May 1943 until his death less than two months later.\n\nA prefect in Aveyron (1937–1939) and Eure-et-Loir (1939–1940), he is remembered today as one of the main heroes of the French Resistance and for his efforts to unify it under Charles de Gaulle. He was tortured by German officer Klaus Barbie while in Gestapo custody. His death was registered at Metz railway station.", "links": {"website": ["https://en.wikipedia.org/wiki/Jean_Moulin"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"53-76": [[-498, -242], [-475, -255], [-480, -261], [-484, -264], [-481, -284], [-496, -296], [-496, -301], [-489, -313], [-472, -313], [-459, -336], [-442, -344], [-424, -345], [-411, -339], [-403, -289], [-379, -273], [-379, -265], [-388, -260], [-404, -257], [-409, -240], [-412, -234], [-415, -213], [-406, -206], [-395, -204], [-500, -202], [-501, -241]]}, "center": {"53-76": [-441, -277]}}, {"id": 537, "name": "Spez Démission", "description": "'Spez quit your job' as a protest against Spez", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"60-76": [[-501, -11], [-368, -10], [-369, 7], [-501, 6]]}, "center": {"60-76": [-397, -2]}}, {"id": 538, "name": "Baise Spez", "description": "'F*** Spez' as a protest against Spez", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"54-75": [[-475, 112], [-474, 132], [-402, 133], [-398, 129], [-399, 111], [-474, 111]]}, "center": {"54-75": [-431, 122]}}, {"id": 539, "name": "Le penseur de Rodin", "description": "The Thinker (French: Le Penseur) is a bronze sculpture by Auguste Rodin, usually placed on a stone pedestal. The work depicts a nude male figure of heroic size sitting on a rock. He is seen leaning over, his right elbow placed on his left thigh, holding the weight of his chin on the back of his right hand. The pose is one of deep thought and contemplation, and the statue is often used as an image to represent philosophy.\nRodin conceived the figure as part of his work The Gates of Hell commissioned in 1880, but the first of the familiar monumental bronze castings was made in 1904, and is now exhibited at the Musée Rodin, in Paris.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Thinker"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"64-76, 95-110": [[938, 459], [942, 455], [951, 440], [948, 428], [931, 414], [925, 423], [929, 443]]}, "center": {"64-76, 95-110": [939, 438]}}, {"id": 540, "name": "Bouteille de Champagne", "description": "Champagne is a sparkling wine originated and produced in the Champagne wine region of France under the rules of the appellation, that demand specific vineyard practices, sourcing of grapes exclusively from designated places within it, specific grape-pressing methods and secondary fermentation of the wine in the bottle to cause carbonation.\nVineyards in the Champagne region of France. The grapes Pinot noir, Pinot meunier, and Chardonnay are used to produce almost all Champagne, but small amounts of Pinot blanc, Pinot gris (called Fromenteau in Champagne), Arbane, and Petit Meslier are vinified as well.", "links": {"website": ["https://en.wikipedia.org/wiki/Champagne"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"64-76": [[952, 443], [969, 444], [968, 423], [965, 415], [966, 401], [957, 403], [958, 417], [950, 418]]}, "center": {"64-76": [960, 432]}}, -{"id": 541, "name": "Dofus", "description": "Dofus is a MMORPG developed and published by Ankama Games, a French computer game manufacturer and released in 2004. It quickly grew in popularity in France and eventually extended to Spanish and English communities.\n\nThe game is an open world with a turn-by-turn combat system in which the player can choose up to 19 classes, each with its own skills and characteristics.\n\nIts success has led to spin-off products, such as books, art, comics and a movie released in 2016.\n\nOften referred by young adults in France as their childhood game, it holds a very nostalgic feeling to many french people, and as such, still has a strong playerbase and community.\n\nThe art represented here is the emblematic logo of Dofus, which is an Emeral Dofus, one of 6 primordial dofus that can be found in the game to significantly increase the stats of the player.", "links": {"website": ["https://en.wikipedia.org/wiki/Dofus"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"52-258": [[-495, 432], [-502, 439], [-501, 457], [-493, 463], [-488, 460], [-480, 459], [-480, 436], [-484, 429], [-486, 437], [-491, 436], [-496, 432]]}, "center": {"52-258": [-491, 447]}}, +{"id": 541, "name": "Dofus", "description": "Dofus is a MMORPG developed and published by Ankama Games, a French computer game manufacturer and released in 2004. It quickly grew in popularity in France and eventually extended to Spanish and English communities.\n\nThe game is an open world with a turn-by-turn combat system in which the player can choose up to 19 classes, each with its own skills and characteristics.\n\nIts success has led to spin-off products, such as books, art, comics and a movie released in 2016.\n\nOften referred by young adults in France as their childhood game, it holds a very nostalgic feeling to many french people, and as such, still has a strong playerbase and community.\n\nThe art represented here is the emblematic logo of Dofus, which is an Emeral Dofus, one of 6 primordial dofus that can be found in the game to significantly increase the stats of the player.", "links": {"website": ["https://en.wikipedia.org/wiki/Dofus"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"52-258, T": [[-495, 432], [-502, 439], [-501, 457], [-493, 463], [-488, 460], [-480, 459], [-480, 436], [-484, 429], [-486, 437], [-491, 436], [-496, 432]]}, "center": {"52-258, T": [-491, 447]}}, {"id": 542, "name": "Flag of Canada", "description": "Canada is a country in North America. Its flag has a maple leaf on it.", "links": {"website": ["https://en.wikipedia.org/wiki/Canada", "https://en.wikipedia.org/wiki/Flag_of_Canada"], "subreddit": ["placecanada", "canada"]}, "path": {"72-120": [[681, -114], [681, -79], [744, -79], [744, -114]]}, "center": {"72-120": [713, -96]}}, -{"id": 543, "name": "Fuze's discord TNT", "description": "The French animation staff of the FuzeIII community discord build this TNT. With the help of the team \"tipi\" that was building teepee next to osu, they manage to kick pxls.space out of this space to get in peace, with the diplomacy of Rebta, they managed to find some defense during the night time in France, getting a big headhake, and Gaufr was the general leading the army during a non stop time from 2PM until 5AM CET next day severals days of the event.\nAround the end, April Knight bored of doing nothing started to reshade the TNT even if at the beginning everyone around was thinking we would blow it up at the end which was not planned.\nThey also manage to keep it until the end after the whiteout and an attack presumed from the STI2D community.", "links": {"discord": ["fuzeiii"]}, "path": {"143-258": [[281, 264], [281, 223], [264, 224], [262, 238], [260, 245], [254, 252], [245, 259], [231, 264]]}, "center": {"143-258": [269, 252]}}, -{"id": 544, "name": "April Knights", "description": "The April Knights are a community that participates in April Fools' events across the internet.", "links": {"website": ["https://www.aprilknights.org/"], "subreddit": ["AprilKnights"]}, "path": {"58-258": [[217, 267], [215, 269], [215, 275], [209, 275], [209, 281], [237, 281], [237, 275], [235, 275], [235, 271], [233, 271], [233, 267]]}, "center": {"58-258": [223, 274]}}, -{"id": 545, "name": "Robin", "description": "Robin was Reddit's 2016 April Fools' event. Users were matched randomly with other users in a chatroom setting, and could vote to merge with other groups or leave the chatroom.", "links": {}, "path": {"59-258": [[249, 265], [246, 269], [246, 273], [245, 273], [238, 280], [238, 281], [241, 281], [242, 280], [250, 280], [254, 276], [254, 272], [256, 272], [256, 270], [255, 270], [255, 267], [253, 265]]}, "center": {"59-258": [250, 270]}}, -{"id": 546, "name": "Eiffel Tower", "description": "The Eiffel Tower (French: Tour Eiffel) is a wrought-iron lattice tower on the Champ de Mars in Paris, France. It is named after the engineer Gustave Eiffel, whose company designed and built the tower.\nLocally nicknamed \"La dame de fer\" (French for \"Iron Lady\"), it was constructed from 1887 to 1889 as the centerpiece of the 1889 World's Fair. Although initially criticised by some of France's leading artists and intellectuals for its design, it has since become a global cultural icon of France and one of the most recognisable structures in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Eiffel_Tower"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"69-109": [[887, 429], [887, 444], [911, 444], [911, 442], [909, 440], [908, 440], [908, 433], [915, 420], [924, 413], [928, 411], [961, 410], [966, 417], [973, 426], [976, 433], [976, 440], [973, 440], [973, 444], [1000, 444], [1000, 433], [985, 409], [978, 394], [978, 377], [972, 377], [964, 360], [961, 349], [961, 332], [959, 329], [957, 329], [955, 322], [955, 310], [954, 310], [949, 249], [949, 229], [948, 229], [948, 216], [950, 213], [950, 206], [951, 205], [951, 201], [948, 201], [945, 196], [944, 191], [944, 175], [943, 175], [943, 127], [941, 127], [941, 175], [940, 175], [940, 195], [937, 198], [937, 201], [933, 201], [933, 206], [934, 206], [934, 213], [936, 216], [936, 229], [935, 229], [935, 249], [930, 297], [930, 313], [928, 327], [927, 329], [923, 329], [923, 337], [924, 338], [924, 345], [918, 364], [913, 376], [913, 377], [906, 377], [906, 394], [899, 409]], "155-258": [[-436, 501], [-436, 521], [-440, 525], [-440, 521], [-441, 521], [-442, 522], [-442, 525], [-443, 526], [-443, 530], [-442, 530], [-440, 545], [-440, 553], [-441, 554], [-441, 571], [-442, 571], [-442, 583], [-443, 584], [-443, 588], [-444, 589], [-444, 590], [-443, 591], [-443, 592], [-444, 592], [-445, 593], [-445, 594], [-444, 595], [-444, 607], [-445, 608], [-445, 615], [-446, 615], [-446, 633], [-447, 634], [-447, 642], [-448, 642], [-448, 645], [-449, 651], [-450, 651], [-450, 653], [-451, 653], [-451, 654], [-452, 654], [-452, 655], [-453, 655], [-453, 661], [-452, 662], [-451, 664], [-452, 666], [-452, 669], [-453, 669], [-453, 673], [-454, 673], [-454, 677], [-455, 677], [-455, 680], [-456, 680], [-456, 683], [-457, 683], [-457, 687], [-462, 697], [-462, 699], [-463, 699], [-463, 701], [-469, 701], [-470, 701], [-470, 709], [-471, 710], [-470, 711], [-470, 716], [-471, 717], [-470, 718], [-471, 719], [-471, 720], [-472, 720], [-472, 722], [-473, 722], [-473, 724], [-474, 724], [-474, 727], [-475, 727], [-475, 729], [-476, 729], [-476, 731], [-477, 731], [-477, 733], [-478, 733], [-478, 735], [-479, 735], [-479, 737], [-480, 738], [-500, 755], [-500, 763], [-495, 767], [-469, 767], [-468, 753], [-449, 733], [-427, 733], [-407, 742], [-396, 764], [-369, 767], [-370, 754], [-391, 728], [-411, 691], [-416, 668], [-415, 656], [-416, 655], [-417, 653], [-417, 648], [-418, 647], [-420, 647], [-420, 642], [-421, 642], [-422, 633], [-422, 615], [-423, 615], [-423, 607], [-424, 607], [-424, 592], [-425, 592], [-425, 582], [-426, 582], [-426, 571], [-427, 571], [-427, 554], [-427, 553], [-428, 553], [-428, 540], [-425, 539], [-425, 527], [-429, 524], [-430, 522], [-432, 521], [-431, 501]]}, "center": {"69-109": [942, 381], "155-258": [-435, 705]}}, -{"id": 547, "name": "Montreal Canadiens", "description": "The Montreal Canadiens (French: Les Canadiens de Montréal), officially le Club de hockey Canadien and colloquially known as the Habs, are a professional ice hockey team based in Montreal. They compete in the National Hockey League (NHL) as a member of the Atlantic Division of the Eastern Conference. Other nicknames for the team include Le Canadien, Le Bleu-Blanc-Rouge, La Sainte-Flanelle, Le Tricolore, Les Glorieux (or Nos Glorieux), Le CH, Le Grand Club, and Les Habitants.", "links": {"website": ["https://www.nhl.com/fr/canadiens/", "https://en.wikipedia.org/wiki/Montreal_Canadiens"], "subreddit": ["Habs", "Quebec"], "discord": ["PlaceQuebec", "Xca8AVQrE8"]}, "path": {"50-60": [[455, 131], [455, 142], [472, 142], [472, 131]], "62-258": [[461, 126], [478, 126], [478, 127], [482, 127], [482, 128], [484, 128], [484, 129], [485, 129], [485, 135], [484, 135], [484, 138], [485, 138], [485, 143], [484, 143], [484, 144], [483, 144], [483, 145], [481, 145], [481, 146], [478, 146], [478, 147], [460, 147], [460, 146], [458, 146], [458, 145], [457, 145], [457, 144], [456, 144], [456, 143], [455, 143], [455, 142], [454, 142], [454, 140], [453, 140], [453, 133], [454, 133], [454, 131], [455, 131], [455, 130], [456, 130], [456, 129], [457, 129], [457, 128], [458, 128], [458, 127], [461, 127], [461, 126], [478, 126]]}, "center": {"50-60": [464, 137], "62-258": [469, 137]}}, -{"id": 548, "name": "BaconReader", "description": "BaconReader is a third-party Reddit client app for Android and iOS.", "links": {"website": ["https://baconreader.com/"], "subreddit": ["BaconReader", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"8-77, 91-258": [[-62, 21], [-66, 24], [-66, 28], [-62, 31], [-60, 31], [-56, 28], [-56, 24], [-60, 21]]}, "center": {"8-77, 91-258": [-61, 26]}}, -{"id": 549, "name": "rif is fun", "description": "rif is fun (formerly reddit is fun) is a third party Reddit client app for Android, developed by u/talklittle", "links": {"website": ["https://play.google.com/store/apps/details?id=com.andrewshu.android.reddit"], "subreddit": ["redditisfun"]}, "path": {"10-258": [[56, 24], [56, 28], [57, 28], [57, 29], [59, 29], [59, 30], [61, 30], [61, 29], [63, 29], [63, 28], [64, 28], [64, 24], [63, 24], [63, 23], [61, 23], [61, 22], [59, 22], [59, 23], [57, 23], [57, 24]]}, "center": {"10-258": [60, 26]}}, -{"id": 550, "name": "Boost for Reddit", "description": "Boost for Reddit is a third party Reddit client app for Android, developed by u/rmayayo.", "links": {"website": ["https://boostforreddit.com/"], "subreddit": ["BoostForReddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"90-258, 9-76": [[-51, 21], [-55, 24], [-55, 28], [-51, 31], [-49, 31], [-45, 28], [-45, 24], [-49, 21]]}, "center": {"90-258, 9-76": [-50, 26]}}, -{"id": 551, "name": "Quebec Nordiques", "description": "The Quebec Nordiques were a National Hockey League (NHL) team in Quebec City until 1995. They've been trying to rebuild for a few seasons now.", "links": {"website": ["https://en.wikipedia.org/wiki/Quebec_Nordiques"], "subreddit": ["Nordiques", "Quebec"], "discord": ["PlaceQuebec"]}, "path": {"60-258": [[452, 204], [452, 190], [453, 189], [453, 188], [457, 184], [458, 184], [459, 183], [469, 183], [470, 184], [470, 185], [471, 186], [471, 187], [472, 188], [472, 189], [473, 190], [473, 191], [474, 192], [474, 193], [475, 194], [475, 195], [478, 192], [479, 192], [482, 195], [482, 196], [481, 197], [482, 197], [483, 198], [483, 204], [466, 204], [466, 200], [465, 200], [465, 204]]}, "center": {"60-258": [462, 192]}}, -{"id": 552, "name": "Poutine", "description": "Poutine is a dish of French fries and cheese curds. It is a delicacy of Quebec.", "links": {"website": ["https://en.wikipedia.org/wiki/Poutine"], "subreddit": ["poutine", "Quebec"]}, "path": {"61-258": [[608, 157], [605, 160], [602, 160], [602, 164], [606, 168], [609, 168], [609, 169], [611, 172], [620, 172], [626, 165], [626, 163], [624, 159], [621, 159], [619, 157]]}, "center": {"61-258": [615, 164]}}, -{"id": 553, "name": "Château Frontenac", "description": "Château Frontenac is a chateau-style hotel and national historic site in Quebec City, Quebec. It was built by Canadian railway companies in the late 19th century to encourage tourists to travel on their railways, opening in 1893. The hotel later was expanded several times over the early 20th century.", "links": {"website": ["https://en.wikipedia.org/wiki/Ch%C3%A2teau_Frontenac"], "subreddit": ["Quebec"]}, "path": {"64-258": [[597, 167], [594, 172], [594, 175], [591, 175], [591, 177], [590, 178], [590, 179], [591, 180], [591, 191], [586, 182], [584, 182], [580, 189], [580, 192], [577, 194], [577, 204], [616, 204], [616, 205], [629, 205], [629, 195], [626, 192], [626, 189], [622, 181], [621, 181], [616, 190], [616, 191], [614, 191], [614, 186], [615, 186], [615, 180], [616, 179], [616, 178], [614, 175], [612, 175], [612, 172], [609, 167]]}, "center": {"64-258": [603, 183]}}, -{"id": 554, "name": "Franco-Ontarian flag", "description": "Flag of the French-speaking people of the Canadian province of Ontario.", "links": {"website": ["https://en.wikipedia.org/wiki/Franco-Ontarian", "https://en.wikipedia.org/wiki/Franco-Ontarian_flag"], "subreddit": ["Quebec"]}, "path": {"68-258": [[577, 172], [577, 179], [584, 179], [584, 182], [586, 182], [586, 172]]}, "center": {"68-258": [581, 176]}}, -{"id": 555, "name": "Medicine wheel", "description": "A medicine wheel is a symbol used to represent Native American religions.", "links": {"website": ["https://en.wikipedia.org/wiki/Medicine_wheel_(symbol)"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec", "Xca8AVQrE8"]}, "path": {"66-258": [[513, 134], [516, 134], [516, 135], [517, 135], [517, 138], [516, 138], [516, 140], [515, 140], [515, 141], [514, 141], [514, 142], [513, 142], [513, 143], [512, 143], [512, 144], [510, 144], [510, 146], [508, 146], [508, 147], [504, 147], [504, 148], [502, 148], [502, 149], [499, 149], [499, 148], [497, 148], [497, 147], [496, 147], [496, 146], [495, 146], [495, 145], [494, 145], [494, 143], [493, 143], [493, 140], [494, 140], [494, 138], [495, 138], [495, 137], [496, 137], [496, 136], [497, 136], [497, 135], [499, 135], [499, 134], [502, 134], [502, 135], [504, 135], [504, 134], [505, 134], [505, 133], [506, 133], [506, 132], [508, 132], [508, 133], [509, 133], [509, 134], [510, 134], [510, 135], [513, 135]]}, "center": {"66-258": [501, 141]}}, +{"id": 543, "name": "Fuze's discord TNT", "description": "The French animation staff of the FuzeIII community discord build this TNT. With the help of the team \"tipi\" that was building teepee next to osu, they manage to kick pxls.space out of this space to get in peace, with the diplomacy of Rebta, they managed to find some defense during the night time in France, getting a big headhake, and Gaufr was the general leading the army during a non stop time from 2PM until 5AM CET next day severals days of the event.\nAround the end, April Knight bored of doing nothing started to reshade the TNT even if at the beginning everyone around was thinking we would blow it up at the end which was not planned.\nThey also manage to keep it until the end after the whiteout and an attack presumed from the STI2D community.", "links": {"discord": ["fuzeiii"]}, "path": {"143-258, T": [[281, 264], [281, 223], [264, 224], [262, 238], [260, 245], [254, 252], [245, 259], [231, 264]]}, "center": {"143-258, T": [269, 252]}}, +{"id": 544, "name": "April Knights", "description": "The April Knights are a community that participates in April Fools' events across the internet.", "links": {"website": ["https://www.aprilknights.org/"], "subreddit": ["AprilKnights"]}, "path": {"58-258, T": [[217, 267], [215, 269], [215, 275], [209, 275], [209, 281], [237, 281], [237, 275], [235, 275], [235, 271], [233, 271], [233, 267]]}, "center": {"58-258, T": [223, 274]}}, +{"id": 545, "name": "Robin", "description": "Robin was Reddit's 2016 April Fools' event. Users were matched randomly with other users in a chatroom setting, and could vote to merge with other groups or leave the chatroom.", "links": {}, "path": {"59-258, T": [[249, 265], [246, 269], [246, 273], [245, 273], [238, 280], [238, 281], [241, 281], [242, 280], [250, 280], [254, 276], [254, 272], [256, 272], [256, 270], [255, 270], [255, 267], [253, 265]]}, "center": {"59-258, T": [250, 270]}}, +{"id": 546, "name": "Eiffel Tower", "description": "The Eiffel Tower (French: Tour Eiffel) is a wrought-iron lattice tower on the Champ de Mars in Paris, France. It is named after the engineer Gustave Eiffel, whose company designed and built the tower.\nLocally nicknamed \"La dame de fer\" (French for \"Iron Lady\"), it was constructed from 1887 to 1889 as the centerpiece of the 1889 World's Fair. Although initially criticised by some of France's leading artists and intellectuals for its design, it has since become a global cultural icon of France and one of the most recognisable structures in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Eiffel_Tower"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"69-109": [[887, 429], [887, 444], [911, 444], [911, 442], [909, 440], [908, 440], [908, 433], [915, 420], [924, 413], [928, 411], [961, 410], [966, 417], [973, 426], [976, 433], [976, 440], [973, 440], [973, 444], [1000, 444], [1000, 433], [985, 409], [978, 394], [978, 377], [972, 377], [964, 360], [961, 349], [961, 332], [959, 329], [957, 329], [955, 322], [955, 310], [954, 310], [949, 249], [949, 229], [948, 229], [948, 216], [950, 213], [950, 206], [951, 205], [951, 201], [948, 201], [945, 196], [944, 191], [944, 175], [943, 175], [943, 127], [941, 127], [941, 175], [940, 175], [940, 195], [937, 198], [937, 201], [933, 201], [933, 206], [934, 206], [934, 213], [936, 216], [936, 229], [935, 229], [935, 249], [930, 297], [930, 313], [928, 327], [927, 329], [923, 329], [923, 337], [924, 338], [924, 345], [918, 364], [913, 376], [913, 377], [906, 377], [906, 394], [899, 409]], "155-258, T": [[-436, 501], [-436, 521], [-440, 525], [-440, 521], [-441, 521], [-442, 522], [-442, 525], [-443, 526], [-443, 530], [-442, 530], [-440, 545], [-440, 553], [-441, 554], [-441, 571], [-442, 571], [-442, 583], [-443, 584], [-443, 588], [-444, 589], [-444, 590], [-443, 591], [-443, 592], [-444, 592], [-445, 593], [-445, 594], [-444, 595], [-444, 607], [-445, 608], [-445, 615], [-446, 615], [-446, 633], [-447, 634], [-447, 642], [-448, 642], [-448, 645], [-449, 651], [-450, 651], [-450, 653], [-451, 653], [-451, 654], [-452, 654], [-452, 655], [-453, 655], [-453, 661], [-452, 662], [-451, 664], [-452, 666], [-452, 669], [-453, 669], [-453, 673], [-454, 673], [-454, 677], [-455, 677], [-455, 680], [-456, 680], [-456, 683], [-457, 683], [-457, 687], [-462, 697], [-462, 699], [-463, 699], [-463, 701], [-469, 701], [-470, 701], [-470, 709], [-471, 710], [-470, 711], [-470, 716], [-471, 717], [-470, 718], [-471, 719], [-471, 720], [-472, 720], [-472, 722], [-473, 722], [-473, 724], [-474, 724], [-474, 727], [-475, 727], [-475, 729], [-476, 729], [-476, 731], [-477, 731], [-477, 733], [-478, 733], [-478, 735], [-479, 735], [-479, 737], [-480, 738], [-500, 755], [-500, 763], [-495, 767], [-469, 767], [-468, 753], [-449, 733], [-427, 733], [-407, 742], [-396, 764], [-369, 767], [-370, 754], [-391, 728], [-411, 691], [-416, 668], [-415, 656], [-416, 655], [-417, 653], [-417, 648], [-418, 647], [-420, 647], [-420, 642], [-421, 642], [-422, 633], [-422, 615], [-423, 615], [-423, 607], [-424, 607], [-424, 592], [-425, 592], [-425, 582], [-426, 582], [-426, 571], [-427, 571], [-427, 554], [-427, 553], [-428, 553], [-428, 540], [-425, 539], [-425, 527], [-429, 524], [-430, 522], [-432, 521], [-431, 501]]}, "center": {"69-109": [942, 381], "155-258, T": [-435, 705]}}, +{"id": 547, "name": "Montreal Canadiens", "description": "The Montreal Canadiens (French: Les Canadiens de Montréal), officially le Club de hockey Canadien and colloquially known as the Habs, are a professional ice hockey team based in Montreal. They compete in the National Hockey League (NHL) as a member of the Atlantic Division of the Eastern Conference. Other nicknames for the team include Le Canadien, Le Bleu-Blanc-Rouge, La Sainte-Flanelle, Le Tricolore, Les Glorieux (or Nos Glorieux), Le CH, Le Grand Club, and Les Habitants.", "links": {"website": ["https://www.nhl.com/fr/canadiens/", "https://en.wikipedia.org/wiki/Montreal_Canadiens"], "subreddit": ["Habs", "Quebec"], "discord": ["PlaceQuebec", "Xca8AVQrE8"]}, "path": {"50-60": [[455, 131], [455, 142], [472, 142], [472, 131]], "62-258, T": [[461, 126], [478, 126], [478, 127], [482, 127], [482, 128], [484, 128], [484, 129], [485, 129], [485, 135], [484, 135], [484, 138], [485, 138], [485, 143], [484, 143], [484, 144], [483, 144], [483, 145], [481, 145], [481, 146], [478, 146], [478, 147], [460, 147], [460, 146], [458, 146], [458, 145], [457, 145], [457, 144], [456, 144], [456, 143], [455, 143], [455, 142], [454, 142], [454, 140], [453, 140], [453, 133], [454, 133], [454, 131], [455, 131], [455, 130], [456, 130], [456, 129], [457, 129], [457, 128], [458, 128], [458, 127], [461, 127], [461, 126], [478, 126]]}, "center": {"50-60": [464, 137], "62-258, T": [469, 137]}}, +{"id": 548, "name": "BaconReader", "description": "BaconReader is a third-party Reddit client app for Android and iOS.", "links": {"website": ["https://baconreader.com/"], "subreddit": ["BaconReader", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"8-77, 91-258, T": [[-62, 21], [-66, 24], [-66, 28], [-62, 31], [-60, 31], [-56, 28], [-56, 24], [-60, 21]]}, "center": {"8-77, 91-258, T": [-61, 26]}}, +{"id": 549, "name": "rif is fun", "description": "rif is fun (formerly reddit is fun) is a third party Reddit client app for Android, developed by u/talklittle", "links": {"website": ["https://play.google.com/store/apps/details?id=com.andrewshu.android.reddit"], "subreddit": ["redditisfun"]}, "path": {"10-258, T": [[56, 24], [56, 28], [57, 28], [57, 29], [59, 29], [59, 30], [61, 30], [61, 29], [63, 29], [63, 28], [64, 28], [64, 24], [63, 24], [63, 23], [61, 23], [61, 22], [59, 22], [59, 23], [57, 23], [57, 24]]}, "center": {"10-258, T": [60, 26]}}, +{"id": 550, "name": "Boost for Reddit", "description": "Boost for Reddit is a third party Reddit client app for Android, developed by u/rmayayo.", "links": {"website": ["https://boostforreddit.com/"], "subreddit": ["BoostForReddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"90-258, 9-76, T": [[-51, 21], [-55, 24], [-55, 28], [-51, 31], [-49, 31], [-45, 28], [-45, 24], [-49, 21]]}, "center": {"90-258, 9-76, T": [-50, 26]}}, +{"id": 551, "name": "Quebec Nordiques", "description": "The Quebec Nordiques were a National Hockey League (NHL) team in Quebec City until 1995. They've been trying to rebuild for a few seasons now.", "links": {"website": ["https://en.wikipedia.org/wiki/Quebec_Nordiques"], "subreddit": ["Nordiques", "Quebec"], "discord": ["PlaceQuebec"]}, "path": {"60-258, T": [[452, 204], [452, 190], [453, 189], [453, 188], [457, 184], [458, 184], [459, 183], [469, 183], [470, 184], [470, 185], [471, 186], [471, 187], [472, 188], [472, 189], [473, 190], [473, 191], [474, 192], [474, 193], [475, 194], [475, 195], [478, 192], [479, 192], [482, 195], [482, 196], [481, 197], [482, 197], [483, 198], [483, 204], [466, 204], [466, 200], [465, 200], [465, 204]]}, "center": {"60-258, T": [462, 192]}}, +{"id": 552, "name": "Poutine", "description": "Poutine is a dish of French fries and cheese curds. It is a delicacy of Quebec.", "links": {"website": ["https://en.wikipedia.org/wiki/Poutine"], "subreddit": ["poutine", "Quebec"]}, "path": {"61-258, T": [[608, 157], [605, 160], [602, 160], [602, 164], [606, 168], [609, 168], [609, 169], [611, 172], [620, 172], [626, 165], [626, 163], [624, 159], [621, 159], [619, 157]]}, "center": {"61-258, T": [615, 164]}}, +{"id": 553, "name": "Château Frontenac", "description": "Château Frontenac is a chateau-style hotel and national historic site in Quebec City, Quebec. It was built by Canadian railway companies in the late 19th century to encourage tourists to travel on their railways, opening in 1893. The hotel later was expanded several times over the early 20th century.", "links": {"website": ["https://en.wikipedia.org/wiki/Ch%C3%A2teau_Frontenac"], "subreddit": ["Quebec"]}, "path": {"64-258, T": [[597, 167], [594, 172], [594, 175], [591, 175], [591, 177], [590, 178], [590, 179], [591, 180], [591, 191], [586, 182], [584, 182], [580, 189], [580, 192], [577, 194], [577, 204], [616, 204], [616, 205], [629, 205], [629, 195], [626, 192], [626, 189], [622, 181], [621, 181], [616, 190], [616, 191], [614, 191], [614, 186], [615, 186], [615, 180], [616, 179], [616, 178], [614, 175], [612, 175], [612, 172], [609, 167]]}, "center": {"64-258, T": [603, 183]}}, +{"id": 554, "name": "Franco-Ontarian flag", "description": "Flag of the French-speaking people of the Canadian province of Ontario.", "links": {"website": ["https://en.wikipedia.org/wiki/Franco-Ontarian", "https://en.wikipedia.org/wiki/Franco-Ontarian_flag"], "subreddit": ["Quebec"]}, "path": {"68-258, T": [[577, 172], [577, 179], [584, 179], [584, 182], [586, 182], [586, 172]]}, "center": {"68-258, T": [581, 176]}}, +{"id": 555, "name": "Medicine wheel", "description": "A medicine wheel is a symbol used to represent Native American religions.", "links": {"website": ["https://en.wikipedia.org/wiki/Medicine_wheel_(symbol)"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec", "Xca8AVQrE8"]}, "path": {"66-258, T": [[513, 134], [516, 134], [516, 135], [517, 135], [517, 138], [516, 138], [516, 140], [515, 140], [515, 141], [514, 141], [514, 142], [513, 142], [513, 143], [512, 143], [512, 144], [510, 144], [510, 146], [508, 146], [508, 147], [504, 147], [504, 148], [502, 148], [502, 149], [499, 149], [499, 148], [497, 148], [497, 147], [496, 147], [496, 146], [495, 146], [495, 145], [494, 145], [494, 143], [493, 143], [493, 140], [494, 140], [494, 138], [495, 138], [495, 137], [496, 137], [496, 136], [497, 136], [497, 135], [499, 135], [499, 134], [502, 134], [502, 135], [504, 135], [504, 134], [505, 134], [505, 133], [506, 133], [506, 132], [508, 132], [508, 133], [509, 133], [509, 134], [510, 134], [510, 135], [513, 135]]}, "center": {"66-258, T": [501, 141]}}, {"id": 556, "name": "Green Rupee", "description": "Rupees are currency in the Legend of Zelda games. A Green Rupee is worth one Rupee.", "links": {"website": ["https://www.zeldadungeon.net/wiki/Rupee"], "subreddit": ["zelda"]}, "path": {"56-98": [[518, 98], [514, 102], [514, 106], [518, 110], [522, 106], [522, 102]]}, "center": {"56-98": [518, 104]}}, {"id": 557, "name": "Blue Rupee", "description": "Rupees are currency in the Legend of Zelda games. A Blue Rupee is worth five Rupees.", "links": {"website": ["https://www.zeldadungeon.net/wiki/Rupee"], "subreddit": ["zelda"]}, "path": {"63-98": [[526, 98], [522, 102], [522, 106], [526, 110], [530, 106], [530, 102]]}, "center": {"63-98": [526, 104]}}, {"id": 558, "name": "Red Rupee", "description": "Rupees are currency in the Legend of Zelda games. A Red Rupee is worth twenty Rupees.", "links": {"website": ["https://www.zeldadungeon.net/wiki/Rupee"], "subreddit": ["zelda"]}, "path": {"63-98": [[534, 98], [530, 102], [530, 106], [534, 110], [538, 106], [538, 102]]}, "center": {"63-98": [534, 104]}}, {"id": 559, "name": "Purple Rupee", "description": "Rupees are currency in the Legend of Zelda games. A Purple Rupee is worth fifty Rupees.", "links": {"website": ["https://www.zeldadungeon.net/wiki/Rupee"], "subreddit": ["zelda"]}, "path": {"64-96": [[542, 98], [538, 102], [538, 106], [542, 110], [546, 106], [546, 102]]}, "center": {"64-96": [542, 104]}}, -{"id": 560, "name": "Mort & Phil", "description": "Mort & Phil (Spanish: Mortadelo y Filemón) are famous comic characters from Spain. They are two detectives that work for an agency, causing many shenanigans. They were created by Francisco Ibáñez in 1958 for the children's comic-book magazine Pulgarcito, and the comic has been published in more than a dozen languages.\n\nThe series features Mort, the tall, bald master of disguise named after mortadella sausage, and his bossy partner, the shorter, pudgier Phil Pi. Initially, they were private detectives operating as Mortadelo y Filemón, Agencia de Información, but now both serve as secret agents in the T.I.A., the Técnicos de Investigación Aeroterráquea (English: Aeroterrestrial Investigation Technicians), which is spoof of the United States's Central Intelligence Agency (CIA). \"Tía\" is also the Spanish word for \"aunt\".", "links": {"website": ["https://mortadelo-filemon.es/", "https://en.wikipedia.org/wiki/Mort_%26_Phil"], "subreddit": ["esPlace", "spain"]}, "path": {"64-258": [[648, -70], [646, -68], [646, -64], [650, -61], [650, -60], [647, -60], [642, -54], [642, -53], [644, -51], [644, -49], [646, -47], [683, -47], [683, -49], [686, -52], [686, -53], [680, -58], [679, -61], [679, -64], [680, -64], [682, -66], [681, -67], [678, -67], [676, -69], [675, -68], [675, -67], [672, -67], [670, -65], [667, -65], [667, -67], [664, -70], [657, -70], [654, -67], [652, -69]]}, "center": {"64-258": [660, -57]}}, +{"id": 560, "name": "Mort & Phil", "description": "Mort & Phil (Spanish: Mortadelo y Filemón) are famous comic characters from Spain. They are two detectives that work for an agency, causing many shenanigans. They were created by Francisco Ibáñez in 1958 for the children's comic-book magazine Pulgarcito, and the comic has been published in more than a dozen languages.\n\nThe series features Mort, the tall, bald master of disguise named after mortadella sausage, and his bossy partner, the shorter, pudgier Phil Pi. Initially, they were private detectives operating as Mortadelo y Filemón, Agencia de Información, but now both serve as secret agents in the T.I.A., the Técnicos de Investigación Aeroterráquea (English: Aeroterrestrial Investigation Technicians), which is spoof of the United States's Central Intelligence Agency (CIA). \"Tía\" is also the Spanish word for \"aunt\".", "links": {"website": ["https://mortadelo-filemon.es/", "https://en.wikipedia.org/wiki/Mort_%26_Phil"], "subreddit": ["esPlace", "spain"]}, "path": {"64-258, T": [[648, -70], [646, -68], [646, -64], [650, -61], [650, -60], [647, -60], [642, -54], [642, -53], [644, -51], [644, -49], [646, -47], [683, -47], [683, -49], [686, -52], [686, -53], [680, -58], [679, -61], [679, -64], [680, -64], [682, -66], [681, -67], [678, -67], [676, -69], [675, -68], [675, -67], [672, -67], [670, -65], [667, -65], [667, -67], [664, -70], [657, -70], [654, -67], [652, -69]]}, "center": {"64-258, T": [660, -57]}}, {"id": 561, "name": "Jerma985", "description": "Jerma985 is long-time streamer and a retired YouTuber. Most of the time he's streaming games from various eras, but he's most famous for these special, semi-scripted streams, like playing archeologist on real excavation site, holiday streams or creating Jerma Dollhouse.", "links": {"website": ["https://www.twitch.tv/jerma985", "https://en.wikipedia.org/wiki/Jerma985"], "subreddit": ["jerma985"]}, "path": {"70-108": [[568, -47], [568, -24], [595, -24], [595, -47]]}, "center": {"70-108": [582, -35]}}, {"id": 562, "name": "Bisexual flag", "description": "A pride flag representing the bisexual community. Bisexual people are sexually attracted to both males and females.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality", "https://en.wikipedia.org/wiki/Bisexual_flag"], "subreddit": ["bisexual"]}, "path": {"66-107": [[500, -47], [500, -30], [527, -30], [527, -47]]}, "center": {"66-107": [514, -38]}}, {"id": 563, "name": "Vaporeon", "description": "Vaporeon is a Water-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue). It evolves from Eevee with a Water Stone.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Vaporeon_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"64-73": [[298, -63], [298, -62], [301, -59], [301, -55], [303, -53], [303, -49], [315, -49], [315, -56], [317, -56], [317, -59], [311, -59], [314, -62], [314, -63], [312, -63], [311, -62], [308, -62], [308, -63], [306, -65], [305, -65], [305, -62], [301, -62], [301, -63]], "77-99": [[334, -66], [334, -61], [336, -60], [336, -57], [338, -50], [345, -50], [348, -52], [348, -53], [352, -57], [352, -62], [349, -62], [349, -64], [350, -65], [350, -66], [343, -66], [343, -67], [341, -69], [340, -68], [340, -66]]}, "center": {"64-73": [308, -54], "77-99": [343, -58]}}, -{"id": 564, "name": "Launch Vehicle Mark-3", "description": "The Launch Vehicle Mark-3 (LVM3) is a rocket designed by the Indian Space Research Organization (ISRO).", "links": {"website": ["https://en.wikipedia.org/wiki/LVM3"], "subreddit": ["IndiaPlace"]}, "path": {"57-258": [[310, -264], [307, -261], [305, -257], [305, -234], [300, -229], [300, -204], [293, -204], [289, -200], [289, -193], [329, -193], [332, -196], [332, -202], [328, -204], [322, -205], [321, -230], [316, -235], [316, -257], [312, -263], [312, -289], [310, -289]]}, "center": {"57-258": [311, -213]}}, -{"id": 565, "name": "Yotsuba Koiwai", "description": "Yotsuba Koiwai is a character from the manga Yotsuba&!. She is also the unofficial mascot of the imageboard 4chan, featuring prominently on 4chan's 404 error screens and anniversary art.", "links": {"website": ["https://en.wikipedia.org/wiki/Yotsuba_Koiwai", "https://knowyourmeme.com/memes/yotsuba-koiwai-404-girl"]}, "path": {"56-68": [[-334, -235], [-334, -222], [-314, -222], [-314, -235]], "72-113": [[-334, -241], [-334, -221], [-314, -221], [-314, -241]], "124-258": [[219, -911], [219, -909], [215, -909], [215, -905], [212, -905], [212, -901], [207, -901], [204, -898], [204, -897], [205, -896], [205, -893], [208, -890], [204, -886], [204, -881], [214, -871], [214, -867], [217, -864], [219, -864], [219, -860], [222, -860], [222, -854], [226, -854], [226, -849], [246, -849], [246, -853], [248, -853], [251, -856], [251, -858], [247, -865], [247, -870], [250, -874], [246, -878], [249, -882], [249, -887], [250, -889], [250, -892], [257, -892], [259, -894], [256, -897], [258, -899], [255, -902], [255, -905], [251, -905], [245, -902], [237, -906], [230, -906], [226, -906], [221, -911]]}, "center": {"56-68": [-324, -228], "72-113": [-324, -231], "124-258": [227, -886]}}, -{"id": 566, "name": "Tally Hall", "description": "Tally Hall is an American rock band formed in Ann Arbor, Michigan, in December 2002. The band is known for upbeat melodies and whimsical lyrics.\n\nThe purple checkerboard at the bottom of the drawing is for Coz Baldwin, the founder of the website \"Hidden In The Sand\" which is the largest Tally Hall wiki. He was also a close friend of Tally Hall, but sadly passed away in 2022.", "links": {"website": ["https://www.tallyhall.com/", "https://en.wikipedia.org/wiki/Tally_Hall"], "subreddit": ["tallyhall"], "discord": ["jZjmeq86tV"]}, "path": {"44-53": [[84, 82], [84, 105], [114, 105], [114, 82]], "16-43": [[75, 82], [75, 105], [111, 105], [111, 82]], "54-96": [[84, 82], [84, 106], [114, 106], [114, 82]], "97-258": [[78, 82], [78, 105], [114, 105], [114, 82]]}, "center": {"44-53": [99, 94], "16-43": [93, 94], "54-96": [99, 94], "97-258": [96, 94]}}, -{"id": 567, "name": "Rock Pikmin", "description": "Rock Pikmin are a type of Pikmin introduced in Pikmin 3, they can break glass and do not attach to enemies.", "links": {"website": ["https://www.pikminwiki.com/Rock_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"66-258": [[226, 86], [226, 88], [228, 91], [228, 93], [227, 94], [228, 95], [228, 97], [233, 97], [236, 94], [235, 93], [234, 93], [234, 90], [232, 90], [232, 89], [229, 86], [235, 87], [236, 90], [236, 97], [232, 86], [228, 87], [227, 86], [229, 86], [228, 89], [230, 95], [229, 92], [228, 94], [228, 93], [227, 96], [227, 97]]}, "center": {"66-258": [232, 94]}}, -{"id": 568, "name": "Portugal Caralho", "description": "Portugal Caralho is an unwritten rule of the Portuguese people in the internet. When browsing random posts about our country or culture online, usually by foreigners, no matter the subject we have the patriotic duty to type in the comments :\"Portugal Caralho!\" as to instill our sense of national pride for our great nation.", "links": {"website": ["https://www.urbandictionary.com/define.php?term=portugal%20caralho"], "subreddit": ["PORTUGALCARALHO"], "discord": ["TugaPlace"]}, "path": {"64-258": [[413, 208], [411, 210], [411, 211], [423, 226], [419, 226], [418, 225], [411, 225], [409, 227], [409, 228], [428, 240], [431, 240], [432, 241], [441, 241], [450, 238], [454, 238], [454, 239], [456, 241], [463, 241], [457, 247], [457, 248], [459, 250], [461, 250], [462, 249], [471, 249], [472, 250], [475, 250], [484, 256], [486, 256], [489, 253], [499, 249], [508, 249], [509, 250], [511, 250], [513, 248], [513, 246], [507, 241], [514, 241], [517, 238], [520, 238], [529, 241], [538, 241], [550, 236], [561, 228], [561, 225], [552, 225], [551, 226], [547, 226], [560, 209], [560, 208], [555, 208], [545, 215], [534, 220], [528, 220], [520, 217], [508, 217], [507, 218], [501, 218], [496, 220], [493, 217], [477, 217], [474, 220], [469, 218], [463, 218], [462, 217], [450, 217], [441, 220], [436, 220], [425, 215], [418, 209], [416, 208]]}, "center": {"64-258": [485, 235]}}, -{"id": 569, "name": "Blastoise", "description": "Blastoise is a Water-type turtle Pokémon from the Generation I Pokémon games (Pokémon Red/Blue). It is the final evolution of the starter Pokémon Squirtle.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Blastoise_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"52-109": [[340, 226], [337, 229], [337, 230], [339, 232], [339, 235], [336, 239], [336, 241], [352, 251], [353, 251], [357, 246], [357, 243], [360, 240], [360, 238], [356, 238], [356, 234], [357, 234], [359, 232], [359, 231], [356, 228], [355, 228], [353, 230], [353, 231], [346, 231], [343, 229], [343, 228], [341, 226]], "112-258": [[591, 289], [588, 292], [588, 297], [585, 301], [585, 303], [600, 313], [602, 313], [606, 308], [606, 305], [609, 302], [609, 300], [605, 300], [605, 296], [606, 296], [608, 294], [608, 293], [605, 290], [604, 290], [602, 292], [602, 293], [595, 293], [594, 292], [594, 291], [592, 289]]}, "center": {"52-109": [348, 239], "112-258": [597, 301]}}, -{"id": 570, "name": "National Aeronautics and Space Administration", "description": "The National Aeronautics and Space Administration (NASA) is the United States government's space research and exploration agency.", "links": {"website": ["https://www.nasa.gov/", "https://en.wikipedia.org/wiki/NASA"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"120-258": [[-56, 160], [-56, 157], [-55, 157], [-55, 155], [-54, 155], [-54, 152], [-53, 152], [-53, 151], [-52, 151], [-52, 150], [-51, 150], [-51, 149], [-49, 149], [-49, 148], [-46, 148], [-46, 147], [-42, 147], [-42, 148], [-39, 148], [-39, 149], [-37, 149], [-37, 150], [-36, 150], [-35, 150], [-35, 149], [-34, 149], [-34, 148], [-33, 148], [-33, 149], [-32, 149], [-33, 150], [-34, 150], [-34, 151], [-34, 152], [-33, 152], [-33, 155], [-33, 156], [-32, 156], [-32, 162], [-33, 162], [-33, 163], [-34, 163], [-34, 165], [-35, 165], [-35, 166], [-36, 166], [-36, 167], [-37, 167], [-37, 169], [-43, 169], [-43, 160]]}, "center": {"120-258": [-44, 154]}}, -{"id": 571, "name": "SpaceX", "description": "SpaceX is an American corporation that designs, manufactures, and launches spacecraft such as rockets and satellites. It was founded by entrepreneur Elon Musk.", "links": {"website": ["https://www.spacex.com/", "https://en.wikipedia.org/wiki/SpaceX"]}, "path": {"7-258": [[96, -87], [96, -86], [97, -85], [97, -79], [107, -79], [107, -83], [109, -86], [111, -86], [111, -88], [108, -88], [107, -87]]}, "center": {"7-258": [101, -83]}}, +{"id": 564, "name": "Launch Vehicle Mark-3", "description": "The Launch Vehicle Mark-3 (LVM3) is a rocket designed by the Indian Space Research Organization (ISRO).", "links": {"website": ["https://en.wikipedia.org/wiki/LVM3"], "subreddit": ["IndiaPlace"]}, "path": {"57-258, T": [[310, -264], [307, -261], [305, -257], [305, -234], [300, -229], [300, -204], [293, -204], [289, -200], [289, -193], [329, -193], [332, -196], [332, -202], [328, -204], [322, -205], [321, -230], [316, -235], [316, -257], [312, -263], [312, -289], [310, -289]]}, "center": {"57-258, T": [311, -213]}}, +{"id": 565, "name": "Yotsuba Koiwai", "description": "Yotsuba Koiwai is a character from the manga Yotsuba&!. She is also the unofficial mascot of the imageboard 4chan, featuring prominently on 4chan's 404 error screens and anniversary art.", "links": {"website": ["https://en.wikipedia.org/wiki/Yotsuba_Koiwai", "https://knowyourmeme.com/memes/yotsuba-koiwai-404-girl"]}, "path": {"56-68": [[-334, -235], [-334, -222], [-314, -222], [-314, -235]], "72-113": [[-334, -241], [-334, -221], [-314, -221], [-314, -241]], "124-258, T": [[219, -911], [219, -909], [215, -909], [215, -905], [212, -905], [212, -901], [207, -901], [204, -898], [204, -897], [205, -896], [205, -893], [208, -890], [204, -886], [204, -881], [214, -871], [214, -867], [217, -864], [219, -864], [219, -860], [222, -860], [222, -854], [226, -854], [226, -849], [246, -849], [246, -853], [248, -853], [251, -856], [251, -858], [247, -865], [247, -870], [250, -874], [246, -878], [249, -882], [249, -887], [250, -889], [250, -892], [257, -892], [259, -894], [256, -897], [258, -899], [255, -902], [255, -905], [251, -905], [245, -902], [237, -906], [230, -906], [226, -906], [221, -911]]}, "center": {"56-68": [-324, -228], "72-113": [-324, -231], "124-258, T": [227, -886]}}, +{"id": 566, "name": "Tally Hall", "description": "Tally Hall is an American rock band formed in Ann Arbor, Michigan, in December 2002. The band is known for upbeat melodies and whimsical lyrics.\n\nThe purple checkerboard at the bottom of the drawing is for Coz Baldwin, the founder of the website \"Hidden In The Sand\" which is the largest Tally Hall wiki. He was also a close friend of Tally Hall, but sadly passed away in 2022.", "links": {"website": ["https://www.tallyhall.com/", "https://en.wikipedia.org/wiki/Tally_Hall"], "subreddit": ["tallyhall"], "discord": ["jZjmeq86tV"]}, "path": {"44-53": [[84, 82], [84, 105], [114, 105], [114, 82]], "16-43": [[75, 82], [75, 105], [111, 105], [111, 82]], "54-96": [[84, 82], [84, 106], [114, 106], [114, 82]], "97-258, T": [[78, 82], [78, 105], [114, 105], [114, 82]]}, "center": {"44-53": [99, 94], "16-43": [93, 94], "54-96": [99, 94], "97-258, T": [96, 94]}}, +{"id": 567, "name": "Rock Pikmin", "description": "Rock Pikmin are a type of Pikmin introduced in Pikmin 3, they can break glass and do not attach to enemies.", "links": {"website": ["https://www.pikminwiki.com/Rock_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"66-258, T": [[226, 86], [226, 88], [228, 91], [228, 93], [227, 94], [228, 95], [228, 97], [233, 97], [236, 94], [235, 93], [234, 93], [234, 90], [232, 90], [232, 89], [229, 86], [235, 87], [236, 90], [236, 97], [232, 86], [228, 87], [227, 86], [229, 86], [228, 89], [230, 95], [229, 92], [228, 94], [228, 93], [227, 96], [227, 97]]}, "center": {"66-258, T": [232, 94]}}, +{"id": 568, "name": "Portugal Caralho", "description": "Portugal Caralho is an unwritten rule of the Portuguese people in the internet. When browsing random posts about our country or culture online, usually by foreigners, no matter the subject we have the patriotic duty to type in the comments :\"Portugal Caralho!\" as to instill our sense of national pride for our great nation.", "links": {"website": ["https://www.urbandictionary.com/define.php?term=portugal%20caralho"], "subreddit": ["PORTUGALCARALHO"], "discord": ["TugaPlace"]}, "path": {"64-258, T": [[413, 208], [411, 210], [411, 211], [423, 226], [419, 226], [418, 225], [411, 225], [409, 227], [409, 228], [428, 240], [431, 240], [432, 241], [441, 241], [450, 238], [454, 238], [454, 239], [456, 241], [463, 241], [457, 247], [457, 248], [459, 250], [461, 250], [462, 249], [471, 249], [472, 250], [475, 250], [484, 256], [486, 256], [489, 253], [499, 249], [508, 249], [509, 250], [511, 250], [513, 248], [513, 246], [507, 241], [514, 241], [517, 238], [520, 238], [529, 241], [538, 241], [550, 236], [561, 228], [561, 225], [552, 225], [551, 226], [547, 226], [560, 209], [560, 208], [555, 208], [545, 215], [534, 220], [528, 220], [520, 217], [508, 217], [507, 218], [501, 218], [496, 220], [493, 217], [477, 217], [474, 220], [469, 218], [463, 218], [462, 217], [450, 217], [441, 220], [436, 220], [425, 215], [418, 209], [416, 208]]}, "center": {"64-258, T": [485, 235]}}, +{"id": 569, "name": "Blastoise", "description": "Blastoise is a Water-type turtle Pokémon from the Generation I Pokémon games (Pokémon Red/Blue). It is the final evolution of the starter Pokémon Squirtle.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Blastoise_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"52-109": [[340, 226], [337, 229], [337, 230], [339, 232], [339, 235], [336, 239], [336, 241], [352, 251], [353, 251], [357, 246], [357, 243], [360, 240], [360, 238], [356, 238], [356, 234], [357, 234], [359, 232], [359, 231], [356, 228], [355, 228], [353, 230], [353, 231], [346, 231], [343, 229], [343, 228], [341, 226]], "112-258, T": [[591, 289], [588, 292], [588, 297], [585, 301], [585, 303], [600, 313], [602, 313], [606, 308], [606, 305], [609, 302], [609, 300], [605, 300], [605, 296], [606, 296], [608, 294], [608, 293], [605, 290], [604, 290], [602, 292], [602, 293], [595, 293], [594, 292], [594, 291], [592, 289]]}, "center": {"52-109": [348, 239], "112-258, T": [597, 301]}}, +{"id": 570, "name": "National Aeronautics and Space Administration", "description": "The National Aeronautics and Space Administration (NASA) is the United States government's space research and exploration agency.", "links": {"website": ["https://www.nasa.gov/", "https://en.wikipedia.org/wiki/NASA"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"120-258, T": [[-56, 160], [-56, 157], [-55, 157], [-55, 155], [-54, 155], [-54, 152], [-53, 152], [-53, 151], [-52, 151], [-52, 150], [-51, 150], [-51, 149], [-49, 149], [-49, 148], [-46, 148], [-46, 147], [-42, 147], [-42, 148], [-39, 148], [-39, 149], [-37, 149], [-37, 150], [-36, 150], [-35, 150], [-35, 149], [-34, 149], [-34, 148], [-33, 148], [-33, 149], [-32, 149], [-33, 150], [-34, 150], [-34, 151], [-34, 152], [-33, 152], [-33, 155], [-33, 156], [-32, 156], [-32, 162], [-33, 162], [-33, 163], [-34, 163], [-34, 165], [-35, 165], [-35, 166], [-36, 166], [-36, 167], [-37, 167], [-37, 169], [-43, 169], [-43, 160]]}, "center": {"120-258, T": [-44, 154]}}, +{"id": 571, "name": "SpaceX", "description": "SpaceX is an American corporation that designs, manufactures, and launches spacecraft such as rockets and satellites. It was founded by entrepreneur Elon Musk.", "links": {"website": ["https://www.spacex.com/", "https://en.wikipedia.org/wiki/SpaceX"]}, "path": {"7-258, T": [[96, -87], [96, -86], [97, -85], [97, -79], [107, -79], [107, -83], [109, -86], [111, -86], [111, -88], [108, -88], [107, -87]]}, "center": {"7-258, T": [101, -83]}}, {"id": 572, "name": "Fireman", "description": "Fireman was created by a Jerma viewer during a community stream of the Jackbox Party game Tee K.O. It quickly became a channel meme with his simple caption, \"Look at this dude\".", "links": {"website": ["https://jerma-lore.fandom.com/wiki/Fireman"], "subreddit": ["jerma985"]}, "path": {"71-108": [[570, -44], [570, -35], [571, -34], [571, -28], [573, -26], [581, -26], [581, -32], [587, -39], [587, -41], [583, -41], [583, -44], [575, -44], [574, -45], [573, -44]]}, "center": {"71-108": [577, -37]}}, -{"id": 573, "name": "Whalien 52", "description": "Whalien 52 is a song by BTS. The song features a whale, which has since become a mascot of BTS.", "links": {"website": ["https://bts.fandom.com/wiki/Whalien_52"], "subreddit": ["bangtan", "whales"]}, "path": {"64-211": [[370, -162], [368, -160], [368, -158], [371, -154], [384, -154], [386, -156], [386, -161], [383, -164], [378, -164], [375, -161], [373, -161], [372, -162]], "222-258": [[-1237, 405], [-1229, 405], [-1229, 407], [-1225, 407], [-1225, 405], [-1217, 405], [-1217, 395], [-1222, 391], [-1228, 391], [-1232, 396], [-1232, 400], [-1234, 402], [-1236, 402], [-1238, 401], [-1238, 399], [-1236, 397], [-1236, 395], [-1237, 394], [-1238, 394], [-1239, 395], [-1240, 394], [-1241, 394], [-1242, 395], [-1242, 397], [-1240, 399], [-1240, 402]]}, "center": {"64-211": [380, -159], "222-258": [-1225, 398]}}, -{"id": 574, "name": "Afri-Cola", "description": "Afri-Cola is a soft drink from Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Afri-Cola"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"9-41": [[-226, -421], [-231, -417], [-231, -395], [-227, -391], [-215, -391], [-210, -395], [-210, -417], [-215, -421]], "42-98": [[-189, -420], [-194, -417], [-194, -394], [-189, -390], [-178, -390], [-175, -392], [-175, -417], [-178, -420]], "99-258": [[-186, -420], [-191, -416], [-191, -393], [-186, -390], [-176, -390], [-173, -392], [-173, -418], [-175, -420]]}, "center": {"9-41": [-220, -406], "42-98": [-184, -405], "99-258": [-182, -405]}}, -{"id": 575, "name": "ViO", "description": "ViO is a carbonated drink in Germany.", "links": {"website": ["https://www.coca-cola-deutschland.de/unsere-marken/vio"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"9-41": [[-248, -443], [-248, -440], [-247, -440], [-247, -432], [-249, -432], [-253, -427], [-253, -425], [-252, -424], [-252, -405], [-253, -405], [-253, -395], [-249, -391], [-238, -391], [-235, -394], [-235, -405], [-236, -405], [-236, -424], [-235, -424], [-235, -427], [-241, -433], [-241, -440], [-240, -440], [-240, -443]], "42-98": [[-191, -450], [-191, -447], [-190, -447], [-190, -442], [-195, -434], [-195, -412], [-196, -412], [-196, -399], [-193, -399], [-193, -416], [-189, -419], [-179, -419], [-179, -434], [-184, -442], [-184, -447], [-183, -447], [-183, -450]], "99-258": [[-186, -450], [-186, -447], [-185, -447], [-185, -442], [-190, -434], [-190, -431], [-189, -431], [-189, -418], [-186, -418], [-186, -419], [-175, -419], [-175, -431], [-174, -431], [-174, -434], [-179, -442], [-179, -447], [-178, -447], [-178, -450]]}, "center": {"9-41": [-244, -401], "42-98": [-187, -431], "99-258": [-182, -432]}}, -{"id": 576, "name": "hasL", "description": "hasL is a Twitch emote that belongs to political commentator HasanAbi (Hasan Piker) which depicts his adopted dog named Fish. Fish unfortunately passed away in 2020 due to liver cancer, but he lives on as a symbol of love in one of the largest communities on Twitch.\n\nThis is a memorial created by Destiny and his community (which attacked it last year) as an act of good faith and to honor Fish, since Destiny actually liked the dog in real life.", "links": {"website": ["https://www.twitch.tv/hasanabi"], "subreddit": ["Hasan_Piker", "Destiny"]}, "path": {"77-258": [[821, 438], [813, 443], [812, 446], [812, 457], [811, 457], [811, 459], [813, 461], [818, 454], [818, 465], [819, 466], [819, 470], [822, 474], [828, 479], [828, 481], [826, 484], [825, 484], [822, 490], [822, 495], [825, 500], [870, 500], [874, 494], [874, 486], [873, 486], [873, 481], [869, 476], [872, 473], [872, 464], [871, 464], [871, 461], [873, 461], [875, 459], [875, 449], [874, 448], [874, 443], [870, 439], [861, 436], [852, 436], [848, 434], [840, 434]]}, "center": {"77-258": [846, 461]}}, -{"id": 577, "name": "Weezer", "description": "Weezer is an American rock band.", "links": {"website": ["https://weezer.com/", "https://en.wikipedia.org/wiki/Weezer"], "subreddit": ["weezer"]}, "path": {"70-258": [[-127, 356], [-127, 376], [-97, 376], [-97, 356]]}, "center": {"70-258": [-112, 366]}}, -{"id": 578, "name": "Susie", "description": "Susie is the ax-wielding, hot-tempered member of the main cast of the game Deltarune. Originally the resident school bully, she finds that she is destined to be a hero. Her name is not Susan and she definitely doesn't have a tail.", "links": {"website": ["https://deltarune.fandom.com/wiki/Susie"], "subreddit": ["Deltarune"]}, "path": {"75-258": [[-209, -214], [-212, -212], [-215, -212], [-217, -210], [-217, -198], [-215, -196], [-215, -193], [-213, -191], [-205, -191], [-203, -193], [-203, -195], [-202, -195], [-200, -197], [-200, -199], [-198, -199], [-198, -204], [-199, -204], [-199, -208], [-202, -213], [-204, -214]]}, "center": {"75-258": [-208, -203]}}, +{"id": 573, "name": "Whalien 52", "description": "Whalien 52 is a song by BTS. The song features a whale, which has since become a mascot of BTS.", "links": {"website": ["https://bts.fandom.com/wiki/Whalien_52"], "subreddit": ["bangtan", "whales"]}, "path": {"64-211": [[370, -162], [368, -160], [368, -158], [371, -154], [384, -154], [386, -156], [386, -161], [383, -164], [378, -164], [375, -161], [373, -161], [372, -162]], "222-258, T": [[-1237, 405], [-1229, 405], [-1229, 407], [-1225, 407], [-1225, 405], [-1217, 405], [-1217, 395], [-1222, 391], [-1228, 391], [-1232, 396], [-1232, 400], [-1234, 402], [-1236, 402], [-1238, 401], [-1238, 399], [-1236, 397], [-1236, 395], [-1237, 394], [-1238, 394], [-1239, 395], [-1240, 394], [-1241, 394], [-1242, 395], [-1242, 397], [-1240, 399], [-1240, 402]]}, "center": {"64-211": [380, -159], "222-258, T": [-1225, 398]}}, +{"id": 574, "name": "Afri-Cola", "description": "Afri-Cola is a soft drink from Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Afri-Cola"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"9-41": [[-226, -421], [-231, -417], [-231, -395], [-227, -391], [-215, -391], [-210, -395], [-210, -417], [-215, -421]], "42-98": [[-189, -420], [-194, -417], [-194, -394], [-189, -390], [-178, -390], [-175, -392], [-175, -417], [-178, -420]], "99-258, T": [[-186, -420], [-191, -416], [-191, -393], [-186, -390], [-176, -390], [-173, -392], [-173, -418], [-175, -420]]}, "center": {"9-41": [-220, -406], "42-98": [-184, -405], "99-258, T": [-182, -405]}}, +{"id": 575, "name": "ViO", "description": "ViO is a carbonated drink in Germany.", "links": {"website": ["https://www.coca-cola-deutschland.de/unsere-marken/vio"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"9-41": [[-248, -443], [-248, -440], [-247, -440], [-247, -432], [-249, -432], [-253, -427], [-253, -425], [-252, -424], [-252, -405], [-253, -405], [-253, -395], [-249, -391], [-238, -391], [-235, -394], [-235, -405], [-236, -405], [-236, -424], [-235, -424], [-235, -427], [-241, -433], [-241, -440], [-240, -440], [-240, -443]], "42-98": [[-191, -450], [-191, -447], [-190, -447], [-190, -442], [-195, -434], [-195, -412], [-196, -412], [-196, -399], [-193, -399], [-193, -416], [-189, -419], [-179, -419], [-179, -434], [-184, -442], [-184, -447], [-183, -447], [-183, -450]], "99-258, T": [[-186, -450], [-186, -447], [-185, -447], [-185, -442], [-190, -434], [-190, -431], [-189, -431], [-189, -418], [-186, -418], [-186, -419], [-175, -419], [-175, -431], [-174, -431], [-174, -434], [-179, -442], [-179, -447], [-178, -447], [-178, -450]]}, "center": {"9-41": [-244, -401], "42-98": [-187, -431], "99-258, T": [-182, -432]}}, +{"id": 576, "name": "hasL", "description": "hasL is a Twitch emote that belongs to political commentator HasanAbi (Hasan Piker) which depicts his adopted dog named Fish. Fish unfortunately passed away in 2020 due to liver cancer, but he lives on as a symbol of love in one of the largest communities on Twitch.\n\nThis is a memorial created by Destiny and his community (which attacked it last year) as an act of good faith and to honor Fish, since Destiny actually liked the dog in real life.", "links": {"website": ["https://www.twitch.tv/hasanabi"], "subreddit": ["Hasan_Piker", "Destiny"]}, "path": {"77-258, T": [[821, 438], [813, 443], [812, 446], [812, 457], [811, 457], [811, 459], [813, 461], [818, 454], [818, 465], [819, 466], [819, 470], [822, 474], [828, 479], [828, 481], [826, 484], [825, 484], [822, 490], [822, 495], [825, 500], [870, 500], [874, 494], [874, 486], [873, 486], [873, 481], [869, 476], [872, 473], [872, 464], [871, 464], [871, 461], [873, 461], [875, 459], [875, 449], [874, 448], [874, 443], [870, 439], [861, 436], [852, 436], [848, 434], [840, 434]]}, "center": {"77-258, T": [846, 461]}}, +{"id": 577, "name": "Weezer", "description": "Weezer is an American rock band.", "links": {"website": ["https://weezer.com/", "https://en.wikipedia.org/wiki/Weezer"], "subreddit": ["weezer"]}, "path": {"70-258, T": [[-127, 356], [-127, 376], [-97, 376], [-97, 356]]}, "center": {"70-258, T": [-112, 366]}}, +{"id": 578, "name": "Susie", "description": "Susie is the ax-wielding, hot-tempered member of the main cast of the game Deltarune. Originally the resident school bully, she finds that she is destined to be a hero. Her name is not Susan and she definitely doesn't have a tail.", "links": {"website": ["https://deltarune.fandom.com/wiki/Susie"], "subreddit": ["Deltarune"]}, "path": {"75-258, T": [[-209, -214], [-212, -212], [-215, -212], [-217, -210], [-217, -198], [-215, -196], [-215, -193], [-213, -191], [-205, -191], [-203, -193], [-203, -195], [-202, -195], [-200, -197], [-200, -199], [-198, -199], [-198, -204], [-199, -204], [-199, -208], [-202, -213], [-204, -214]]}, "center": {"75-258, T": [-208, -203]}}, {"id": 579, "name": "ULTRAKILL", "description": "ULTRAKILL is a fast-paced ultra-violent retro first-person shooter combining the skill-based-style scoring from character action games with unadulterated carnage inspired by the best shooters of the '90s.", "links": {"website": ["https://devilmayquake.com/"], "subreddit": ["Ultrakill"]}, "path": {"67-104": [[-241, 277], [-316, 277], [-316, 291], [-241, 290]]}, "center": {"67-104": [-309, 284]}}, {"id": 580, "name": "Lavvu", "description": "A Lavvu is a temporary dwelling used by the Sámi people that enables them to follow their reindeer herds.", "links": {"website": ["https://en.wikipedia.org/wiki/Lavvu"], "subreddit": ["SaamiPeople", "place_nordicunion"]}, "path": {"74-99": [[13, -228], [11, -226], [11, -220], [7, -213], [7, -211], [10, -208], [20, -208], [23, -211], [23, -213], [18, -222], [18, -225], [19, -226], [19, -228], [20, -229], [20, -230], [13, -234], [13, -235], [21, -239], [21, -240], [18, -240], [10, -235], [10, -234], [17, -230], [17, -229]]}, "center": {"74-99": [15, -214]}}, -{"id": 581, "name": "KlimaTicket", "description": "KlimaTicket is a ticket in Austria that allows unlimited rides on public transportation for a year. It is meant to promote the use of public transportation as a climate-friendly alternative to personal automobiles.", "links": {"website": ["https://www.klimaticket.at/en/"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"50-258": [[-117, -46], [-122, -41], [-122, -30], [-117, -27], [-114, -27], [-114, -26], [-70, -26], [-69, -27], [-64, -27], [-61, -29], [-61, -33], [-62, -34], [-62, -39], [-65, -44], [-70, -48], [-74, -49], [-70, -53], [-74, -57], [-76, -57], [-80, -53], [-76, -49], [-83, -49], [-83, -46]]}, "center": {"50-258": [-75, -37]}}, +{"id": 581, "name": "KlimaTicket", "description": "KlimaTicket is a ticket in Austria that allows unlimited rides on public transportation for a year. It is meant to promote the use of public transportation as a climate-friendly alternative to personal automobiles.", "links": {"website": ["https://www.klimaticket.at/en/"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"50-258, T": [[-117, -46], [-122, -41], [-122, -30], [-117, -27], [-114, -27], [-114, -26], [-70, -26], [-69, -27], [-64, -27], [-61, -29], [-61, -33], [-62, -34], [-62, -39], [-65, -44], [-70, -48], [-74, -49], [-70, -53], [-74, -57], [-76, -57], [-80, -53], [-76, -49], [-83, -49], [-83, -46]]}, "center": {"50-258, T": [-75, -37]}}, {"id": 582, "name": "Annoying Dog", "description": "Annoying Dog is a small white dog who is a representation of Toby Fox, the creator of the indie role-playing game Undertale and its sequel Deltarune. It usually ruins a character's plan whenever it appears.\n\n*Bark* *Bark*", "links": {"website": ["https://undertale.fandom.com/wiki/Annoying_Dog"], "subreddit": ["Undertale", "deltarune"]}, "path": {"73-85": [[774, 212], [771, 215], [771, 217], [770, 217], [770, 224], [798, 224], [800, 222], [798, 220], [795, 220], [793, 214], [791, 212], [788, 212], [787, 211], [780, 211], [779, 212]]}, "center": {"73-85": [783, 218]}}, -{"id": 583, "name": "Flag of South Africa", "description": "South Africa is a country in the southern part of Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa", "https://en.wikipedia.org/wiki/Flag_of_South_Africa"], "subreddit": ["SouthAfrica"]}, "path": {"44-80": [[84, 179], [84, 250], [90, 250], [90, 241], [119, 241], [119, 228], [108, 228], [108, 222], [100, 222], [100, 228], [90, 228], [90, 179]], "85-102": [[84, 178], [84, 239], [90, 239], [90, 241], [117, 241], [117, 228], [118, 228], [118, 224], [108, 224], [108, 221], [100, 221], [100, 223], [90, 223], [90, 178]], "103-143": [[84, 178], [84, 241], [118, 241], [118, 222], [90, 222], [90, 178]], "144-163": [[84, 178], [90, 178], [90, 222], [146, 222], [147, 237], [146, 237], [144, 238], [143, 239], [142, 239], [141, 237], [140, 236], [139, 237], [139, 241], [84, 241]], "164-174": [[84, 222], [90, 222], [90, 240], [84, 240]], "175-258": [[84, 184], [90, 184], [90, 196], [84, 196]]}, "center": {"44-80": [104, 234], "85-102": [102, 232], "103-143": [97, 231], "144-163": [109, 231], "164-174": [87, 231], "175-258": [87, 190]}}, -{"id": 584, "name": "Sara Chidouin", "description": "Sara Chidouin is the main protagonist of the visual novel Your Turn To Die.", "links": {"website": ["https://yourturntodie.fandom.com/wiki/Sara_Chidouin"], "subreddit": ["yourturntodie"], "discord": ["yttd"]}, "path": {"57-258": [[523, -368], [520, -364], [520, -360], [519, -359], [519, -356], [523, -352], [523, -350], [526, -346], [531, -343], [531, -341], [529, -341], [526, -339], [526, -338], [548, -338], [548, -340], [545, -343], [543, -343], [541, -345], [543, -348], [543, -351], [545, -354], [545, -358], [546, -360], [548, -360], [549, -359], [552, -359], [556, -361], [546, -368]]}, "center": {"57-258": [533, -357]}}, +{"id": 583, "name": "Flag of South Africa", "description": "South Africa is a country in the southern part of Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa", "https://en.wikipedia.org/wiki/Flag_of_South_Africa"], "subreddit": ["SouthAfrica"]}, "path": {"44-80": [[84, 179], [84, 250], [90, 250], [90, 241], [119, 241], [119, 228], [108, 228], [108, 222], [100, 222], [100, 228], [90, 228], [90, 179]], "85-102": [[84, 178], [84, 239], [90, 239], [90, 241], [117, 241], [117, 228], [118, 228], [118, 224], [108, 224], [108, 221], [100, 221], [100, 223], [90, 223], [90, 178]], "103-143": [[84, 178], [84, 241], [118, 241], [118, 222], [90, 222], [90, 178]], "144-163": [[84, 178], [90, 178], [90, 222], [146, 222], [147, 237], [146, 237], [144, 238], [143, 239], [142, 239], [141, 237], [140, 236], [139, 237], [139, 241], [84, 241]], "164-174": [[84, 222], [90, 222], [90, 240], [84, 240]], "175-258, T": [[84, 184], [90, 184], [90, 196], [84, 196]]}, "center": {"44-80": [104, 234], "85-102": [102, 232], "103-143": [97, 231], "144-163": [109, 231], "164-174": [87, 231], "175-258, T": [87, 190]}}, +{"id": 584, "name": "Sara Chidouin", "description": "Sara Chidouin is the main protagonist of the visual novel Your Turn To Die.", "links": {"website": ["https://yourturntodie.fandom.com/wiki/Sara_Chidouin"], "subreddit": ["yourturntodie"], "discord": ["yttd"]}, "path": {"57-258, T": [[523, -368], [520, -364], [520, -360], [519, -359], [519, -356], [523, -352], [523, -350], [526, -346], [531, -343], [531, -341], [529, -341], [526, -339], [526, -338], [548, -338], [548, -340], [545, -343], [543, -343], [541, -345], [543, -348], [543, -351], [545, -354], [545, -358], [546, -360], [548, -360], [549, -359], [552, -359], [556, -361], [546, -368]]}, "center": {"57-258, T": [533, -357]}}, {"id": 585, "name": "The green lattice", "description": "The green lattice is a group of people devoted to maintain a repeating pattern of black, light green and dark green. The green lattice first appeared in 2017 in the first r/place event.", "links": {"subreddit": ["GreenLattice"]}, "path": {"67-81": [[501, 91], [555, 91], [555, -21], [584, -21], [584, -25], [569, -25], [569, -30], [533, -30], [532, -15], [523, -1], [501, -1]]}, "center": {"67-81": [528, 35]}}, -{"id": 586, "name": "Twice Town", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nMembers of Twice's fandom called Once set up here without the knowledge of r/Twice. r/Twice reached out to the group for obvious alliance and parented the position till r/place 2023 came to an end. This became r/Twice's 3rd and final position on the canvas.\n\nA defensive attack plan was put in place by r/Twice to preserve this area from griefers below; taking over their position and solidifying their place on the canvas. With this new area under r/Twice control, they created an \"O T = <3\", a reference to Twice's 3rd full length studio album, Formula of Love O T=<3 (Once Twice = Heart). r/Twice also added the Hangul (Korea's written language) spelling of Twice, 트와이스, as well as 9 mini Lovelyz (the group's individual mascots in the member's colors).\n\nAn alliance was born between r/Twice and two of the Minecraft skins they had previously destroyed; allowing them back into position to the east.", "links": {"subreddit": ["Twice"]}, "path": {"219-220": [[685, 780], [721, 780], [721, 781], [723, 781], [723, 782], [724, 782], [724, 785], [723, 785], [723, 786], [722, 786], [722, 787], [721, 787], [721, 788], [706, 788], [706, 796], [722, 796], [722, 804], [683, 804], [683, 794], [684, 794], [685, 794]], "167-218": [[693, 780], [721, 780], [721, 788], [693, 788]], "221-258": [[685, 780], [721, 780], [721, 781], [723, 781], [723, 782], [724, 782], [724, 785], [723, 785], [723, 786], [722, 786], [722, 787], [721, 787], [721, 788], [706, 788], [706, 810], [700, 810], [700, 808], [699, 807], [698, 806], [697, 806], [696, 807], [695, 808], [695, 809], [683, 809], [683, 796], [683, 792], [684, 792], [684, 787], [685, 787]]}, "center": {"219-220": [696, 792], "167-218": [707, 784], "221-258": [695, 794]}}, -{"id": 587, "name": "Phish", "description": "Phish is an American rock band that formed in Burlington, Vermont in 1983. The band is known for musical improvisation, extended jams, blending of genres, and a dedicated fan base.\n\nThis art uses Phish's distinctive pattern, red O's in front of a blue background. The pattern first appeared in 2022's r/place, but Phish themselves have been around since 2017's r/place.", "links": {"website": ["https://phish.com/", "https://en.wikipedia.org/wiki/Phish"], "subreddit": ["phish"]}, "path": {"51-82": [[221, 36], [265, 36], [265, 30], [328, 30], [328, 56], [352, 56], [352, -10], [356, -10], [356, -22], [325, -22], [325, -13], [313, -13], [313, -8], [276, -8], [276, 2], [270, 2], [270, 9], [259, 9], [259, 14], [242, 14], [242, 9], [221, 9]], "84-135": [[221, -26], [221, 36], [275, 36], [275, 31], [352, 31], [352, -13], [313, -13], [313, -8], [288, -8], [288, -22], [313, -22], [313, -26]], "136-238": [[221, -26], [221, 36], [275, 36], [275, 31], [352, 31], [352, -9], [331, -9], [331, -13], [313, -13], [313, -8], [281, -8], [281, -25]], "239-258": [[221, -26], [221, 36], [275, 36], [275, 31], [352, 31], [352, -9], [328, -9], [328, -10], [326, -10], [326, -11], [325, -11], [325, -12], [318, -12], [318, -11], [317, -11], [317, -9], [315, -9], [315, -8], [281, -8], [281, -26]]}, "center": {"51-82": [330, 8], "84-135": [252, 5], "136-238": [253, 5], "239-258": [252, 5]}}, +{"id": 586, "name": "Twice Town", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nMembers of Twice's fandom called Once set up here without the knowledge of r/Twice. r/Twice reached out to the group for obvious alliance and parented the position till r/place 2023 came to an end. This became r/Twice's 3rd and final position on the canvas.\n\nA defensive attack plan was put in place by r/Twice to preserve this area from griefers below; taking over their position and solidifying their place on the canvas. With this new area under r/Twice control, they created an \"O T = <3\", a reference to Twice's 3rd full length studio album, Formula of Love O T=<3 (Once Twice = Heart). r/Twice also added the Hangul (Korea's written language) spelling of Twice, 트와이스, as well as 9 mini Lovelyz (the group's individual mascots in the member's colors).\n\nAn alliance was born between r/Twice and two of the Minecraft skins they had previously destroyed; allowing them back into position to the east.", "links": {"subreddit": ["Twice"]}, "path": {"219-220": [[685, 780], [721, 780], [721, 781], [723, 781], [723, 782], [724, 782], [724, 785], [723, 785], [723, 786], [722, 786], [722, 787], [721, 787], [721, 788], [706, 788], [706, 796], [722, 796], [722, 804], [683, 804], [683, 794], [684, 794], [685, 794]], "167-218": [[693, 780], [721, 780], [721, 788], [693, 788]], "221-258, T": [[685, 780], [721, 780], [721, 781], [723, 781], [723, 782], [724, 782], [724, 785], [723, 785], [723, 786], [722, 786], [722, 787], [721, 787], [721, 788], [706, 788], [706, 810], [700, 810], [700, 808], [699, 807], [698, 806], [697, 806], [696, 807], [695, 808], [695, 809], [683, 809], [683, 796], [683, 792], [684, 792], [684, 787], [685, 787]]}, "center": {"219-220": [696, 792], "167-218": [707, 784], "221-258, T": [695, 794]}}, +{"id": 587, "name": "Phish", "description": "Phish is an American rock band that formed in Burlington, Vermont in 1983. The band is known for musical improvisation, extended jams, blending of genres, and a dedicated fan base.\n\nThis art uses Phish's distinctive pattern, red O's in front of a blue background. The pattern first appeared in 2022's r/place, but Phish themselves have been around since 2017's r/place.", "links": {"website": ["https://phish.com/", "https://en.wikipedia.org/wiki/Phish"], "subreddit": ["phish"]}, "path": {"51-82": [[221, 36], [265, 36], [265, 30], [328, 30], [328, 56], [352, 56], [352, -10], [356, -10], [356, -22], [325, -22], [325, -13], [313, -13], [313, -8], [276, -8], [276, 2], [270, 2], [270, 9], [259, 9], [259, 14], [242, 14], [242, 9], [221, 9]], "84-135": [[221, -26], [221, 36], [275, 36], [275, 31], [352, 31], [352, -13], [313, -13], [313, -8], [288, -8], [288, -22], [313, -22], [313, -26]], "136-238": [[221, -26], [221, 36], [275, 36], [275, 31], [352, 31], [352, -9], [331, -9], [331, -13], [313, -13], [313, -8], [281, -8], [281, -25]], "239-258, T": [[221, -26], [221, 36], [275, 36], [275, 31], [352, 31], [352, -9], [328, -9], [328, -10], [326, -10], [326, -11], [325, -11], [325, -12], [318, -12], [318, -11], [317, -11], [317, -9], [315, -9], [315, -8], [281, -8], [281, -26]]}, "center": {"51-82": [330, 8], "84-135": [252, 5], "136-238": [253, 5], "239-258, T": [252, 5]}}, {"id": 588, "name": "mau5trap", "description": "The deadmau5-owned music label, featuring a wide variety of talented electronic music artists. This art was formed together via the \"Mau5cord\" community on Discord.", "links": {"website": ["https://mau5trap.com"], "subreddit": ["deadmau5"], "discord": ["mau5cord"]}, "path": {"9": [[438, 149], [438, 157], [477, 159], [477, 149]]}, "center": {"9": [466, 154]}}, {"id": 589, "name": "Flag of South Korea", "description": "South Korea is a country in East Asia. Its national flag is known as Taegeukgi.\n\nThe establishment of a small K-pop alley in the vicinity led to this spot being selected as the third home of r/Korea_Place. The location was swiftly secured with the aid of r/KPOPplace, and particularly r/twice. But issues arose when Korea attempted to make the flag symmetrical by expanding the left border by one pixel, which went into r/TUYU_official's territory. After brief moments of conflict and negotiation, TUYU yielded the line and an alliance that would last was formed.\n\nSoon, a small coalition of nearby factions has been established, including K-pop, TUYU, r/inabakukmori, and others. The Korean flag served as the coalition's common front line, successfully defending multiple aggression from a Turkish hivemind before the whole coalition eventually fell to a rogue Argentine streamer.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Korea", "https://en.wikipedia.org/wiki/Flag_of_South_Korea"], "subreddit": ["Korea_Place", "KPOPplace", "twice", "TUYU_official", "inabakumori"], "discord": ["NDGSVQasUK"]}, "path": {"78-79": [[752, -193], [752, -180], [774, -180], [774, -193]], "80-115": [[751, -193], [751, -180], [774, -180], [774, -193]]}, "center": {"78-79": [763, -186], "80-115": [763, -186]}}, -{"id": 590, "name": "Ottifant", "description": "The Ottifant is a creation of German comedian and actor Otto Waalkes. The name is a portmanteau of Waalkes' nickname Otti and the German word for elephant. The original Ottifant is actually gray, but since gray was not available at the beginning of r/place, r/placeDE converted it to blue. After the palette expanded to include the color gray, a vote was held, and it was decided to only add contours without recoloring the whole art.", "links": {"website": ["https://de.wikipedia.org/wiki/Ottifant"], "subreddit": ["placeDE", "de"]}, "path": {"6-258": [[384, -447], [388, -447], [391, -444], [400, -444], [408, -440], [416, -431], [419, -427], [419, -423], [417, -419], [417, -415], [419, -414], [421, -414], [423, -416], [425, -416], [425, -413], [422, -410], [413, -410], [411, -393], [394, -393], [393, -392], [383, -392], [375, -395], [373, -397], [373, -402], [375, -408], [372, -416], [365, -416], [364, -415], [356, -415], [345, -421], [337, -436], [343, -436], [344, -440], [347, -440], [347, -433], [352, -429], [359, -429], [363, -432], [363, -436], [368, -442], [374, -442], [377, -445]]}, "center": {"6-258": [394, -421]}}, -{"id": 591, "name": "Casas Típicas de Santana (Houses of Santana)", "description": "The Traditional Houses of Santana are small, triangular-shaped houses in the region of Santana, which is situated in Madeira, an island which belongs to the Portuguese autonomous region of the same name. When these islands were discovered by the Portuguese Kingdom in 1419, they were dedicated to farming and collecting resources from the available plants in the region. These houses were made for those who were to be working on the fields, and are created with some of the resources from their work, namely wood for their structure and straw and wheat for their roofs.\nToday, they're a very popular place for any tourist who visit the islands. They hail as an important icon of both the island and Portugal's history.", "links": {"website": ["https://madeira.best/product/santana-typical-houses", "https://visitmadeira.com/en/what-to-do/culture-passionates/heritage/monuments-and-architecture/casas-de-santana/"]}, "path": {"96-258": [[464, 360], [464, 359], [465, 358], [465, 357], [466, 356], [466, 355], [467, 354], [467, 353], [468, 352], [468, 351], [469, 350], [469, 349], [470, 348], [470, 346], [471, 345], [473, 345], [470, 342], [470, 340], [469, 339], [470, 338], [471, 339], [472, 339], [473, 340], [474, 340], [475, 341], [476, 341], [476, 337], [477, 336], [477, 335], [478, 334], [479, 335], [479, 336], [480, 337], [480, 341], [480, 342], [481, 341], [482, 340], [483, 340], [484, 339], [485, 339], [486, 340], [486, 341], [485, 342], [485, 343], [484, 344], [483, 344], [482, 345], [484, 345], [485, 346], [486, 346], [487, 347], [486, 348], [485, 348], [482, 351], [480, 351], [479, 352], [480, 353], [480, 354], [481, 355], [481, 360], [481, 361], [464, 361]]}, "center": {"96-258": [474, 355]}}, -{"id": 592, "name": "r/placeDE", "description": "r/placeDE is the official subreddit to organize the German community for r/place.", "links": {"subreddit": ["placeDE"], "discord": ["placeDE"]}, "path": {"198-258": [[-1500, -420], [-1500, -411], [-1447, -410], [-1447, -420]]}, "center": {"198-258": [-1455, -415]}}, -{"id": 593, "name": "\"How and why\" (\"Was ist was\")", "description": "The iconic main characters of the \"How and Why\" franchise were pixelated by the German community, as the franchise is very popular in Germany.", "links": {"subreddit": ["placede"], "discord": ["placede"]}, "path": {"110-258": [[-745, -402], [-749, -397], [-748, -394], [-747, -392], [-744, -392], [-741, -392], [-739, -393], [-738, -396], [-738, -398], [-739, -400], [-743, -402], [-746, -401], [-748, -398], [-749, -396], [-748, -393], [-748, -392], [-750, -391], [-749, -391], [-758, -391], [-765, -390], [-767, -391], [-767, -394], [-767, -397], [-768, -400], [-767, -406], [-767, -410], [-768, -412], [-768, -414], [-771, -414], [-773, -415], [-775, -415], [-779, -415], [-780, -415], [-780, -417], [-781, -418], [-782, -417], [-782, -416], [-782, -414], [-780, -414], [-779, -412], [-778, -411], [-778, -409], [-778, -407], [-778, -405], [-778, -403], [-778, -401], [-778, -399], [-778, -397], [-777, -395], [-777, -393], [-778, -391], [-779, -390], [-780, -390], [-784, -390], [-785, -392], [-785, -405], [-785, -407], [-785, -409], [-785, -410], [-785, -411], [-787, -412], [-788, -413], [-788, -414], [-788, -418], [-788, -420], [-788, -423], [-788, -424], [-787, -425], [-786, -426], [-785, -427], [-783, -427], [-782, -427], [-783, -428], [-782, -429], [-781, -429], [-780, -430], [-778, -428], [-777, -429], [-776, -430], [-775, -430], [-773, -429], [-773, -428], [-774, -426], [-773, -425], [-772, -424], [-771, -424], [-771, -422], [-771, -421], [-771, -419], [-771, -417], [-772, -415], [-769, -415], [-768, -415], [-768, -419], [-768, -423], [-768, -426], [-768, -429], [-768, -430], [-757, -430], [-757, -400], [-757, -391], [-749, -391], [-747, -392]]}, "center": {"110-258": [-763, -400]}}, -{"id": 595, "name": "League Of Legends Primeleague Team NNO", "description": "A League of Legends e-Sports Team playing in the Prime League - a DACH (Germany, Austria, Switzerland) Organisation.\nThe Names around the NNO are the former Players, now Founders of the NNO Organisation, all of them are german Streamers.\n\nUnderneath is Philly ♥ ♥ Rosin and a Twitch Prime Sub Symbol.\nPhilly is another German League of Legends Streamer and a Friend of NNO - his Name on Twitch is kutcherlol", "links": {"website": ["https://www.primeleague.gg/teams/29951-nno-prime"]}, "path": {"92-258": [[289, -330], [359, -330], [359, -288], [289, -288]]}, "center": {"92-258": [324, -309]}}, -{"id": 596, "name": "Ahoi Brause", "description": "Ahoi Brause is a soft drink, originating in Germany.", "links": {"subreddit": ["placeDe"], "discord": ["placede"]}, "path": {"10-41": [[-176, -420], [-166, -420], [-162, -417], [-162, -395], [-167, -392], [-177, -392], [-181, -395], [-181, -417]], "42-258": [[-157, -419], [-146, -419], [-142, -416], [-142, -393], [-147, -391], [-157, -391], [-161, -395], [-161, -416], [-158, -418]]}, "center": {"10-41": [-171, -406], "42-258": [-151, -405]}}, -{"id": 597, "name": "JVC 18-25 Forum", "description": "The \"Blabla 18-25 ans\" forum (French for: \"Blabla 18-25 years old\"), on the jeuxvideo.com website, is one of the largest French-speaking forums. Created in 2004, it welcomes around 1,500 users daily. Its community is at the origin of a unique subculture based on the troll and whose emblems are the two smileys :noel: and :hap: (represented on the zone). The comedian El Risitas is also abundantly represented on their stickers.", "links": {"website": ["https://www.jeuxvideo.com/forums/0-51-0-1-0-1-0-blabla-18-25-ans.htm"], "discord": ["KQ8BJhCmVp"]}, "path": {"12-258": [[-161, 356], [-161, 383], [-129, 383], [-129, 356]]}, "center": {"12-258": [-145, 370]}}, +{"id": 590, "name": "Ottifant", "description": "The Ottifant is a creation of German comedian and actor Otto Waalkes. The name is a portmanteau of Waalkes' nickname Otti and the German word for elephant. The original Ottifant is actually gray, but since gray was not available at the beginning of r/place, r/placeDE converted it to blue. After the palette expanded to include the color gray, a vote was held, and it was decided to only add contours without recoloring the whole art.", "links": {"website": ["https://de.wikipedia.org/wiki/Ottifant"], "subreddit": ["placeDE", "de"]}, "path": {"6-258, T": [[384, -447], [388, -447], [391, -444], [400, -444], [408, -440], [416, -431], [419, -427], [419, -423], [417, -419], [417, -415], [419, -414], [421, -414], [423, -416], [425, -416], [425, -413], [422, -410], [413, -410], [411, -393], [394, -393], [393, -392], [383, -392], [375, -395], [373, -397], [373, -402], [375, -408], [372, -416], [365, -416], [364, -415], [356, -415], [345, -421], [337, -436], [343, -436], [344, -440], [347, -440], [347, -433], [352, -429], [359, -429], [363, -432], [363, -436], [368, -442], [374, -442], [377, -445]]}, "center": {"6-258, T": [394, -421]}}, +{"id": 591, "name": "Casas Típicas de Santana (Houses of Santana)", "description": "The Traditional Houses of Santana are small, triangular-shaped houses in the region of Santana, which is situated in Madeira, an island which belongs to the Portuguese autonomous region of the same name. When these islands were discovered by the Portuguese Kingdom in 1419, they were dedicated to farming and collecting resources from the available plants in the region. These houses were made for those who were to be working on the fields, and are created with some of the resources from their work, namely wood for their structure and straw and wheat for their roofs.\nToday, they're a very popular place for any tourist who visit the islands. They hail as an important icon of both the island and Portugal's history.", "links": {"website": ["https://madeira.best/product/santana-typical-houses", "https://visitmadeira.com/en/what-to-do/culture-passionates/heritage/monuments-and-architecture/casas-de-santana/"]}, "path": {"96-258, T": [[464, 360], [464, 359], [465, 358], [465, 357], [466, 356], [466, 355], [467, 354], [467, 353], [468, 352], [468, 351], [469, 350], [469, 349], [470, 348], [470, 346], [471, 345], [473, 345], [470, 342], [470, 340], [469, 339], [470, 338], [471, 339], [472, 339], [473, 340], [474, 340], [475, 341], [476, 341], [476, 337], [477, 336], [477, 335], [478, 334], [479, 335], [479, 336], [480, 337], [480, 341], [480, 342], [481, 341], [482, 340], [483, 340], [484, 339], [485, 339], [486, 340], [486, 341], [485, 342], [485, 343], [484, 344], [483, 344], [482, 345], [484, 345], [485, 346], [486, 346], [487, 347], [486, 348], [485, 348], [482, 351], [480, 351], [479, 352], [480, 353], [480, 354], [481, 355], [481, 360], [481, 361], [464, 361]]}, "center": {"96-258, T": [474, 355]}}, +{"id": 592, "name": "r/placeDE", "description": "r/placeDE is the official subreddit to organize the German community for r/place.", "links": {"subreddit": ["placeDE"], "discord": ["placeDE"]}, "path": {"198-258, T": [[-1500, -420], [-1500, -411], [-1447, -410], [-1447, -420]]}, "center": {"198-258, T": [-1455, -415]}}, +{"id": 593, "name": "\"How and why\" (\"Was ist was\")", "description": "The iconic main characters of the \"How and Why\" franchise were pixelated by the German community, as the franchise is very popular in Germany.", "links": {"subreddit": ["placede"], "discord": ["placede"]}, "path": {"110-258, T": [[-745, -402], [-749, -397], [-748, -394], [-747, -392], [-744, -392], [-741, -392], [-739, -393], [-738, -396], [-738, -398], [-739, -400], [-743, -402], [-746, -401], [-748, -398], [-749, -396], [-748, -393], [-748, -392], [-750, -391], [-749, -391], [-758, -391], [-765, -390], [-767, -391], [-767, -394], [-767, -397], [-768, -400], [-767, -406], [-767, -410], [-768, -412], [-768, -414], [-771, -414], [-773, -415], [-775, -415], [-779, -415], [-780, -415], [-780, -417], [-781, -418], [-782, -417], [-782, -416], [-782, -414], [-780, -414], [-779, -412], [-778, -411], [-778, -409], [-778, -407], [-778, -405], [-778, -403], [-778, -401], [-778, -399], [-778, -397], [-777, -395], [-777, -393], [-778, -391], [-779, -390], [-780, -390], [-784, -390], [-785, -392], [-785, -405], [-785, -407], [-785, -409], [-785, -410], [-785, -411], [-787, -412], [-788, -413], [-788, -414], [-788, -418], [-788, -420], [-788, -423], [-788, -424], [-787, -425], [-786, -426], [-785, -427], [-783, -427], [-782, -427], [-783, -428], [-782, -429], [-781, -429], [-780, -430], [-778, -428], [-777, -429], [-776, -430], [-775, -430], [-773, -429], [-773, -428], [-774, -426], [-773, -425], [-772, -424], [-771, -424], [-771, -422], [-771, -421], [-771, -419], [-771, -417], [-772, -415], [-769, -415], [-768, -415], [-768, -419], [-768, -423], [-768, -426], [-768, -429], [-768, -430], [-757, -430], [-757, -400], [-757, -391], [-749, -391], [-747, -392]]}, "center": {"110-258, T": [-763, -400]}}, +{"id": 595, "name": "League Of Legends Primeleague Team NNO", "description": "A League of Legends e-Sports Team playing in the Prime League - a DACH (Germany, Austria, Switzerland) Organisation.\nThe Names around the NNO are the former Players, now Founders of the NNO Organisation, all of them are german Streamers.\n\nUnderneath is Philly ♥ ♥ Rosin and a Twitch Prime Sub Symbol.\nPhilly is another German League of Legends Streamer and a Friend of NNO - his Name on Twitch is kutcherlol", "links": {"website": ["https://www.primeleague.gg/teams/29951-nno-prime"]}, "path": {"92-258, T": [[289, -330], [359, -330], [359, -288], [289, -288]]}, "center": {"92-258, T": [324, -309]}}, +{"id": 596, "name": "Ahoi Brause", "description": "Ahoi Brause is a soft drink, originating in Germany.", "links": {"subreddit": ["placeDe"], "discord": ["placede"]}, "path": {"10-41": [[-176, -420], [-166, -420], [-162, -417], [-162, -395], [-167, -392], [-177, -392], [-181, -395], [-181, -417]], "42-258, T": [[-157, -419], [-146, -419], [-142, -416], [-142, -393], [-147, -391], [-157, -391], [-161, -395], [-161, -416], [-158, -418]]}, "center": {"10-41": [-171, -406], "42-258, T": [-151, -405]}}, +{"id": 597, "name": "JVC 18-25 Forum", "description": "The \"Blabla 18-25 ans\" forum (French for: \"Blabla 18-25 years old\"), on the jeuxvideo.com website, is one of the largest French-speaking forums. Created in 2004, it welcomes around 1,500 users daily. Its community is at the origin of a unique subculture based on the troll and whose emblems are the two smileys :noel: and :hap: (represented on the zone). The comedian El Risitas is also abundantly represented on their stickers.", "links": {"website": ["https://www.jeuxvideo.com/forums/0-51-0-1-0-1-0-blabla-18-25-ans.htm"], "discord": ["KQ8BJhCmVp"]}, "path": {"12-258, T": [[-161, 356], [-161, 383], [-129, 383], [-129, 356]]}, "center": {"12-258, T": [-145, 370]}}, {"id": 598, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"92-107": [[-868, 500], [-868, -368], [-1000, -368], [-1000, 499]], "110-112": [[-1000, 245], [-868, 245], [-868, -80], [-1001, -80]]}, "center": {"92-107": [-934, 66], "110-112": [-934, 53]}}, -{"id": 599, "name": "Wuppertaler Schwebebahn", "description": "A train from Wuppertal's famous metro-system where trains are hanging from suspended rails in the air, therefore giving it the name \"Schwebebahn\" which translates to \"levitating railway\"", "links": {"website": ["https://de.wikipedia.org/wiki/Wuppertaler_Schwebebahn"], "subreddit": ["placeDE", "ich_iel", "ich_iel"], "discord": ["placede"]}, "path": {"64-258": [[736, -375], [736, -381], [735, -381], [735, -390], [769, -390], [770, -390], [770, -391], [771, -392], [774, -392], [775, -391], [776, -392], [779, -392], [780, -390], [781, -390], [806, -390], [807, -390], [807, -391], [808, -392], [811, -392], [812, -391], [813, -392], [816, -392], [817, -391], [818, -391], [818, -390], [839, -390], [839, -391], [840, -392], [843, -392], [844, -391], [845, -392], [848, -392], [849, -391], [850, -390], [852, -389], [852, -379], [851, -379], [851, -376], [850, -376], [850, -375]]}, "center": {"64-258": [844, -383]}}, -{"id": 600, "name": "TheGreatReview", "description": "Augustin Heliot, also known as TheGreatReview, is a french youtuber and streams who tells stories about video games on his channel. In 2022, he made a video about Place and its history, which became one of its most successful videos.\n\nHe's depicted right next to the Tunic fox, drawing a golden path in reference to the game - because he also covered the story of Tunic in another video.\n\nShortly before Place 2023 started, TheGreatReview made a video on his secondary channel talking about the API drama around Reddit, explaining the situation to the french audience which isn't really familiar with Reddit.", "links": {"website": ["https://www.youtube.com/@TheGreatReview", "https://www.youtube.com/@lagranderevue3497", "https://www.twitch.tv/thegreatreview"], "subreddit": ["thegreatreview"]}, "path": {"16-77": [[-481, 478], [-489, 478], [-497, 488], [-496, 492], [-487, 497], [-479, 497]], "89-258": [[-489, 479], [-490, 483], [-496, 486], [-497, 491], [-493, 494], [-488, 494], [-488, 497], [-478, 497], [-481, 494], [-478, 491], [-480, 488], [-482, 485], [-482, 483], [-481, 480]]}, "center": {"16-77": [-487, 488], "89-258": [-487, 488]}}, -{"id": 601, "name": "RvNxMango", "description": "This mango fruit represents German YouTuber and streamer RvNxMango. Last year, he allied with r/placeDE and documented the Germans' pixel war in one of his Youtube videos.", "links": {"website": ["https://www.twitch.tv/rvnxmango", "https://youtu.be/wAvCjaFIZiQ"], "subreddit": ["rvnxmango", "placeDE", "de"], "discord": ["rvnx-mango", "placeDE"]}, "path": {"17-258": [[18, -449], [20, -449], [20, -448], [22, -448], [22, -447], [24, -447], [24, -446], [24, -445], [25, -445], [25, -444], [26, -444], [26, -443], [28, -443], [28, -442], [29, -442], [29, -438], [30, -438], [30, -433], [29, -433], [29, -431], [27, -431], [27, -430], [25, -430], [25, -429], [19, -429], [19, -430], [16, -430], [16, -431], [14, -431], [14, -432], [12, -432], [12, -433], [11, -433], [11, -435], [10, -435], [10, -437], [9, -437], [9, -441], [10, -441], [10, -443], [11, -443], [11, -444], [12, -444], [12, -445], [13, -445], [13, -446], [14, -446], [15, -446], [15, -447], [16, -447], [16, -448], [17, -448], [18, -448]]}, "center": {"17-258": [19, -439]}}, -{"id": 602, "name": "Tunic", "description": "Tunic is a 2022 action-adventure game developed by Isometricorp Games and published by Finji. It is set in a ruined fantasy world, where the player controls an anthropomorphic fox on a journey to free a fox spirit trapped in a crystal.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Tunic_(video_game)](https://en.wikipedia.org/wiki/Tunic_(video_game))", "https://store.steampowered.com/app/553420/TUNIC/"]}, "path": {"53-258": [[-497, 464], [-495, 464], [-494, 465], [-493, 466], [-492, 466], [-491, 465], [-490, 465], [-489, 464], [-488, 463], [-488, 462], [-487, 461], [-486, 462], [-485, 463], [-485, 468], [-484, 468], [-484, 472], [-485, 473], [-486, 474], [-487, 474], [-488, 475], [-494, 475], [-494, 474], [-495, 474], [-495, 472], [-496, 471], [-496, 470], [-497, 469], [-497, 468], [-498, 467], [-498, 465]]}, "center": {"53-258": [-489, 470]}}, -{"id": 603, "name": "Der dunkle Parabelritter", "description": "Alexander Prinz is a german streamer known as Der dunkle Parabelritter", "links": {"website": ["https://www.twitch.tv/derdunkleparabelritter"]}, "path": {"8-11": [[-303, -368], [-281, -368], [-281, -348], [-303, -348]], "2-7": [[-341, -365], [-322, -365], [-322, -347], [-341, -347]], "12-16": [[-322, -368], [-322, -348], [-301, -348], [-301, -368]], "17-258": [[-333, -367], [-333, -344], [-313, -344], [-313, -367]]}, "center": {"8-11": [-292, -358], "2-7": [-331, -356], "12-16": [-311, -358], "17-258": [-323, -355]}}, -{"id": 605, "name": "TheGreatReview", "description": "A french youtuber who makes critics or explain the lore of games, and stories related to gaming, he made a video adressing the reddit api problem at the start of the event", "links": {"website": ["https://www.youtube.com/@TheGreatReview"]}, "path": {"18-258": [[-483, 478], [-482, 478], [-481, 479], [-481, 482], [-482, 485], [-482, 487], [-481, 489], [-479, 491], [-480, 492], [-479, 497], [-487, 497], [-494, 494], [-497, 491], [-497, 489], [-493, 485], [-489, 485], [-489, 480], [-488, 479], [-485, 478]]}, "center": {"18-258": [-487, 490]}}, -{"id": 607, "name": "KekLuck", "description": "German streamer", "links": {"website": ["https://twitch.tv/kekluck"]}, "path": {"84-258": [[-286, -340], [-286, -332], [-278, -332], [-278, -340]]}, "center": {"84-258": [-282, -336]}}, +{"id": 599, "name": "Wuppertaler Schwebebahn", "description": "A train from Wuppertal's famous metro-system where trains are hanging from suspended rails in the air, therefore giving it the name \"Schwebebahn\" which translates to \"levitating railway\"", "links": {"website": ["https://de.wikipedia.org/wiki/Wuppertaler_Schwebebahn"], "subreddit": ["placeDE", "ich_iel", "ich_iel"], "discord": ["placede"]}, "path": {"64-258, T": [[736, -375], [736, -381], [735, -381], [735, -390], [769, -390], [770, -390], [770, -391], [771, -392], [774, -392], [775, -391], [776, -392], [779, -392], [780, -390], [781, -390], [806, -390], [807, -390], [807, -391], [808, -392], [811, -392], [812, -391], [813, -392], [816, -392], [817, -391], [818, -391], [818, -390], [839, -390], [839, -391], [840, -392], [843, -392], [844, -391], [845, -392], [848, -392], [849, -391], [850, -390], [852, -389], [852, -379], [851, -379], [851, -376], [850, -376], [850, -375]]}, "center": {"64-258, T": [844, -383]}}, +{"id": 600, "name": "TheGreatReview", "description": "Augustin Heliot, also known as TheGreatReview, is a french youtuber and streams who tells stories about video games on his channel. In 2022, he made a video about Place and its history, which became one of its most successful videos.\n\nHe's depicted right next to the Tunic fox, drawing a golden path in reference to the game - because he also covered the story of Tunic in another video.\n\nShortly before Place 2023 started, TheGreatReview made a video on his secondary channel talking about the API drama around Reddit, explaining the situation to the french audience which isn't really familiar with Reddit.", "links": {"website": ["https://www.youtube.com/@TheGreatReview", "https://www.youtube.com/@lagranderevue3497", "https://www.twitch.tv/thegreatreview"], "subreddit": ["thegreatreview"]}, "path": {"16-77": [[-481, 478], [-489, 478], [-497, 488], [-496, 492], [-487, 497], [-479, 497]], "89-258, T": [[-489, 479], [-490, 483], [-496, 486], [-497, 491], [-493, 494], [-488, 494], [-488, 497], [-478, 497], [-481, 494], [-478, 491], [-480, 488], [-482, 485], [-482, 483], [-481, 480]]}, "center": {"16-77": [-487, 488], "89-258, T": [-487, 488]}}, +{"id": 601, "name": "RvNxMango", "description": "This mango fruit represents German YouTuber and streamer RvNxMango. Last year, he allied with r/placeDE and documented the Germans' pixel war in one of his Youtube videos.", "links": {"website": ["https://www.twitch.tv/rvnxmango", "https://youtu.be/wAvCjaFIZiQ"], "subreddit": ["rvnxmango", "placeDE", "de"], "discord": ["rvnx-mango", "placeDE"]}, "path": {"17-258, T": [[18, -449], [20, -449], [20, -448], [22, -448], [22, -447], [24, -447], [24, -446], [24, -445], [25, -445], [25, -444], [26, -444], [26, -443], [28, -443], [28, -442], [29, -442], [29, -438], [30, -438], [30, -433], [29, -433], [29, -431], [27, -431], [27, -430], [25, -430], [25, -429], [19, -429], [19, -430], [16, -430], [16, -431], [14, -431], [14, -432], [12, -432], [12, -433], [11, -433], [11, -435], [10, -435], [10, -437], [9, -437], [9, -441], [10, -441], [10, -443], [11, -443], [11, -444], [12, -444], [12, -445], [13, -445], [13, -446], [14, -446], [15, -446], [15, -447], [16, -447], [16, -448], [17, -448], [18, -448]]}, "center": {"17-258, T": [19, -439]}}, +{"id": 602, "name": "Tunic", "description": "Tunic is a 2022 action-adventure game developed by Isometricorp Games and published by Finji. It is set in a ruined fantasy world, where the player controls an anthropomorphic fox on a journey to free a fox spirit trapped in a crystal.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Tunic_(video_game)](https://en.wikipedia.org/wiki/Tunic_(video_game))", "https://store.steampowered.com/app/553420/TUNIC/"]}, "path": {"53-258, T": [[-497, 464], [-495, 464], [-494, 465], [-493, 466], [-492, 466], [-491, 465], [-490, 465], [-489, 464], [-488, 463], [-488, 462], [-487, 461], [-486, 462], [-485, 463], [-485, 468], [-484, 468], [-484, 472], [-485, 473], [-486, 474], [-487, 474], [-488, 475], [-494, 475], [-494, 474], [-495, 474], [-495, 472], [-496, 471], [-496, 470], [-497, 469], [-497, 468], [-498, 467], [-498, 465]]}, "center": {"53-258, T": [-489, 470]}}, +{"id": 603, "name": "Der dunkle Parabelritter", "description": "Alexander Prinz is a german streamer known as Der dunkle Parabelritter", "links": {"website": ["https://www.twitch.tv/derdunkleparabelritter"]}, "path": {"8-11": [[-303, -368], [-281, -368], [-281, -348], [-303, -348]], "2-7": [[-341, -365], [-322, -365], [-322, -347], [-341, -347]], "12-16": [[-322, -368], [-322, -348], [-301, -348], [-301, -368]], "17-258, T": [[-333, -367], [-333, -344], [-313, -344], [-313, -367]]}, "center": {"8-11": [-292, -358], "2-7": [-331, -356], "12-16": [-311, -358], "17-258, T": [-323, -355]}}, +{"id": 605, "name": "TheGreatReview", "description": "A french youtuber who makes critics or explain the lore of games, and stories related to gaming, he made a video adressing the reddit api problem at the start of the event", "links": {"website": ["https://www.youtube.com/@TheGreatReview"]}, "path": {"18-258, T": [[-483, 478], [-482, 478], [-481, 479], [-481, 482], [-482, 485], [-482, 487], [-481, 489], [-479, 491], [-480, 492], [-479, 497], [-487, 497], [-494, 494], [-497, 491], [-497, 489], [-493, 485], [-489, 485], [-489, 480], [-488, 479], [-485, 478]]}, "center": {"18-258, T": [-487, 490]}}, +{"id": 607, "name": "KekLuck", "description": "German streamer", "links": {"website": ["https://twitch.tv/kekluck"]}, "path": {"84-258, T": [[-286, -340], [-286, -332], [-278, -332], [-278, -340]]}, "center": {"84-258, T": [-282, -336]}}, {"id": 610, "name": "Inabakumori", "description": "inabakumori (稲葉曇), also stylized as INABAKUMORI, is a VOCALOID producer who primarily uses Kaai Yuki. He made his debut under this alias in February 2016, with the song \"Himitsu Ongaku\".\n\nOn December 2017, he indirectly confirmed that his former producer alias was MichouP (視長P), also known as PUKARI or 因幡プカリ (Inaba Pukari).MichouP was active from December 2011 until October 2014.\n\nHe was born on February 25, 1995.", "links": {"website": ["https://www.youtube.com/channel/UCNElM45JypxqAR73RoUQ10g", "http://www.nicovideo.jp/user/42833430"], "discord": ["Inabakumori"]}, "path": {"58-115": [[694, -193], [694, -160], [728, -160], [728, -193]]}, "center": {"58-115": [711, -176]}}, -{"id": 611, "name": "NNO - No Need Orga", "description": "A very popular german League of Legends Team founded by Streamers", "links": {"website": ["https://www.twitch.tv/tolkin", "https://www.twitch.tv/agurin", "https://www.twitch.tv/noway4u_sir", "https://www.twitch.tv/broeki", "https://www.twitch.tv/karni"]}, "path": {"2-258": [[289, -331], [288, -287], [294, -288], [296, -293], [359, -293], [360, -330]]}, "center": {"2-258": [324, -312]}}, -{"id": 612, "name": "Caedrel's ZAZA", "description": "This art belongs to League Of Legends ex-pro and streamer Caedrel and his community. The art features one of the stream's popular emote \"ZAZA\" along with the word \"THE FRAUD\", which refers to a joke about TheShy, a well-known LOL pro whom Caedrel is a huge fan of.", "links": {"website": ["https://www.twitch.tv/caedrel"], "subreddit": ["PedroPeepos"], "discord": ["caedrel"]}, "path": {"250-258": [[742, 313], [742, 404], [834, 404], [834, 314]]}, "center": {"250-258": [788, 359]}}, -{"id": 613, "name": "Dominion", "description": "This QR code links to Dominion, a 2018 documentary about animal treatment in modern agriculture.", "links": {"website": ["https://watchdominion.org/"]}, "path": {"2-40": [[-345, 108], [-309, 108], [-309, 144], [-345, 144]], "77-108": [[655, 4], [691, 4], [691, 40], [655, 40]], "123-258": [[-475, -849], [-475, -813], [-439, -813], [-439, -849]]}, "center": {"2-40": [-327, 126], "77-108": [673, 22], "123-258": [-457, -831]}}, -{"id": 615, "name": "Aspen glass bowl", "description": "This is the typical bowl a german grandma has at home, it's been a meme in germany since a long time.", "links": {"subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"71-258": [[676, -431], [674, -433], [665, -432], [661, -431], [654, -425], [653, -416], [656, -408], [664, -399], [675, -392], [687, -390], [701, -391], [708, -395], [714, -400], [721, -408], [724, -415], [724, -423], [712, -430], [708, -431], [700, -431], [699, -430], [696, -433], [679, -433], [677, -430]]}, "center": {"71-258": [689, -411]}}, -{"id": 616, "name": "Capybara - Brazil", "description": "Capybaras are the largest rodent in the planet and a native animal from South America, they can be seen in several regions of Brazil", "links": {"subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"96-258": [[176, 500], [176, 490], [177, 489], [178, 486], [180, 484], [182, 482], [183, 479], [183, 475], [183, 472], [181, 472], [180, 470], [177, 470], [176, 469], [173, 466], [171, 466], [168, 463], [165, 461], [160, 459], [157, 457], [158, 455], [157, 454], [153, 454], [152, 456], [152, 459], [154, 459], [154, 461], [154, 471], [154, 474], [155, 475], [156, 475], [149, 483], [147, 486], [147, 492], [147, 500], [164, 500]]}, "center": {"96-258": [163, 487]}}, +{"id": 611, "name": "NNO - No Need Orga", "description": "A very popular german League of Legends Team founded by Streamers", "links": {"website": ["https://www.twitch.tv/tolkin", "https://www.twitch.tv/agurin", "https://www.twitch.tv/noway4u_sir", "https://www.twitch.tv/broeki", "https://www.twitch.tv/karni"]}, "path": {"2-258, T": [[289, -331], [288, -287], [294, -288], [296, -293], [359, -293], [360, -330]]}, "center": {"2-258, T": [324, -312]}}, +{"id": 612, "name": "Caedrel's ZAZA", "description": "This art belongs to League Of Legends ex-pro and streamer Caedrel and his community. The art features one of the stream's popular emote \"ZAZA\" along with the word \"THE FRAUD\", which refers to a joke about TheShy, a well-known LOL pro whom Caedrel is a huge fan of.", "links": {"website": ["https://www.twitch.tv/caedrel"], "subreddit": ["PedroPeepos"], "discord": ["caedrel"]}, "path": {"250-258, T": [[742, 313], [742, 404], [834, 404], [834, 314]]}, "center": {"250-258, T": [788, 359]}}, +{"id": 613, "name": "Dominion", "description": "This QR code links to Dominion, a 2018 documentary about animal treatment in modern agriculture.", "links": {"website": ["https://watchdominion.org/"]}, "path": {"2-40": [[-345, 108], [-309, 108], [-309, 144], [-345, 144]], "77-108": [[655, 4], [691, 4], [691, 40], [655, 40]], "123-258, T": [[-475, -849], [-475, -813], [-439, -813], [-439, -849]]}, "center": {"2-40": [-327, 126], "77-108": [673, 22], "123-258, T": [-457, -831]}}, +{"id": 615, "name": "Aspen glass bowl", "description": "This is the typical bowl a german grandma has at home, it's been a meme in germany since a long time.", "links": {"subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"71-258, T": [[676, -431], [674, -433], [665, -432], [661, -431], [654, -425], [653, -416], [656, -408], [664, -399], [675, -392], [687, -390], [701, -391], [708, -395], [714, -400], [721, -408], [724, -415], [724, -423], [712, -430], [708, -431], [700, -431], [699, -430], [696, -433], [679, -433], [677, -430]]}, "center": {"71-258, T": [689, -411]}}, +{"id": 616, "name": "Capybara - Brazil", "description": "Capybaras are the largest rodent in the planet and a native animal from South America, they can be seen in several regions of Brazil", "links": {"subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"96-258, T": [[176, 500], [176, 490], [177, 489], [178, 486], [180, 484], [182, 482], [183, 479], [183, 475], [183, 472], [181, 472], [180, 470], [177, 470], [176, 469], [173, 466], [171, 466], [168, 463], [165, 461], [160, 459], [157, 457], [158, 455], [157, 454], [153, 454], [152, 456], [152, 459], [154, 459], [154, 461], [154, 471], [154, 474], [155, 475], [156, 475], [149, 483], [147, 486], [147, 492], [147, 500], [164, 500]]}, "center": {"96-258, T": [163, 487]}}, {"id": 617, "name": "Falco", "description": "Johann \"Hans\" Hölzel, better known by his stage name Falco, was an Austrian singer and musician. He had several international hits including \"Der Kommissar\" (1981), \"Rock Me Amadeus\", \"Vienna Calling\", \"Jeanny\", \"The Sound of Musik\", \"Coming Home (Jeanny Part II, One Year Later)\", and posthumously \"Out of the Dark\".", "links": {"website": ["https://en.wikipedia.org/wiki/Falco_(musician)"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"97-103": [[-649, -57], [-655, -52], [-655, -47], [-657, -45], [-657, -42], [-656, -41], [-656, -39], [-651, -33], [-659, -27], [-659, -26], [-629, -26], [-629, -29], [-636, -30], [-638, -32], [-638, -33], [-636, -35], [-636, -41], [-635, -42], [-635, -52], [-637, -55], [-640, -57]]}, "center": {"97-103": [-645, -45]}}, -{"id": 618, "name": "'???' tape cassette", "description": "The Three Investigators was an American juvenile detective book series, discontinued in 1990. After that date new stories were commissioned in Germany, where the series runs under the title of Die Drei Fragezeichen (The Three Question Marks). Particularly the audio book versions enjoy a large following in Germany to this day.", "links": {"website": ["https://en.wikipedia.org/wiki/Three_Investigators"], "subreddit": ["placeDE"], "discord": ["placeDE"]}, "path": {"61-258": [[559, -448], [601, -448], [600, -421], [599, -420], [560, -420], [559, -421]]}, "center": {"61-258": [580, -434]}}, -{"id": 619, "name": "One-One", "description": "One-One is the robotic companion of protagonist Tulip in the Cartoon Network and Max Original series, Infinity Train: An animated anthology following several characters' journeys on an unending, futuristic train. \n\nThe green, abstracted infinity symbol orbiting him is the show's logo.", "links": {"website": ["https://infinity-train.fandom.com/wiki/One-One"], "subreddit": ["InfinityTrain", "place_CentralAlliance"]}, "path": {"84-258": [[534, -305], [533, -304], [532, -304], [528, -300], [528, -299], [527, -298], [526, -297], [526, -296], [527, -295], [532, -290], [540, -290], [542, -292], [543, -293], [544, -294], [544, -296], [545, -297], [545, -298], [544, -299], [544, -300], [541, -303], [539, -304], [538, -305]]}, "center": {"84-258": [536, -297]}}, +{"id": 618, "name": "'???' tape cassette", "description": "The Three Investigators was an American juvenile detective book series, discontinued in 1990. After that date new stories were commissioned in Germany, where the series runs under the title of Die Drei Fragezeichen (The Three Question Marks). Particularly the audio book versions enjoy a large following in Germany to this day.", "links": {"website": ["https://en.wikipedia.org/wiki/Three_Investigators"], "subreddit": ["placeDE"], "discord": ["placeDE"]}, "path": {"61-258, T": [[559, -448], [601, -448], [600, -421], [599, -420], [560, -420], [559, -421]]}, "center": {"61-258, T": [580, -434]}}, +{"id": 619, "name": "One-One", "description": "One-One is the robotic companion of protagonist Tulip in the Cartoon Network and Max Original series, Infinity Train: An animated anthology following several characters' journeys on an unending, futuristic train. \n\nThe green, abstracted infinity symbol orbiting him is the show's logo.", "links": {"website": ["https://infinity-train.fandom.com/wiki/One-One"], "subreddit": ["InfinityTrain", "place_CentralAlliance"]}, "path": {"84-258, T": [[534, -305], [533, -304], [532, -304], [528, -300], [528, -299], [527, -298], [526, -297], [526, -296], [527, -295], [532, -290], [540, -290], [542, -292], [543, -293], [544, -294], [544, -296], [545, -297], [545, -298], [544, -299], [544, -300], [541, -303], [539, -304], [538, -305]]}, "center": {"84-258, T": [536, -297]}}, {"id": 620, "name": "Der Stuhl", "description": "\"Der Stuhl\" (The chair) is a inside joke of the german nightwatch. It got a spot on the canvas to honor the members of the nightwatch.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany"], "subreddit": ["placeDE"], "discord": ["placeDE"]}, "path": {"70-100": [[817, -447], [818, -391], [843, -392], [842, -448], [818, -448], [817, -448]]}, "center": {"70-100": [830, -419]}}, -{"id": 621, "name": "Francisco Ibañez", "description": "Francisco Ibañez Talavera was a spanish strip cartoonist creator of many humorous series, among which \"Mortadelo y Filemón\" (Mort and Phil) stands out. He passed away the last 15th of July.", "links": {}, "path": {"84-258": [[632, -131], [681, -131], [680, -76], [633, -78]]}, "center": {"84-258": [657, -106]}}, -{"id": 622, "name": "Manner (confectionery)", "description": "The company's best-known product are the \"Neapolitan wafers\", introduced in 1898. They are sold in blocks of ten hazelnut-cream filled wafers. They are one of the most well known austrian sweets.", "links": {"subreddit": ["placeAustria"]}, "path": {"98-258": [[-530, -55], [-503, -55], [-503, -28], [-530, -28]]}, "center": {"98-258": [-516, -41]}}, -{"id": 623, "name": "Outer Wilds", "description": "Outer Wilds is a captivating exploration and mystery video game set in an open-world. You play as an astronaut in a small solar system, where you must uncover the secrets of ancient civilizations and solve the enigma behind a mysterious time loop. With a strong emphasis on narrative, the game invites you to explore and learn about the various planets while unraveling a fascinating story that keeps you intrigued throughout the adventure. This artwork was animated over the course of several days, depicting the player character's ship landing on various planets within the game. After a bright light filled the frame and a Nomai mask appeared, it now depicts a small campfire with planets and trees in the background. \n\nThis also depicts the Eye of Horus from the Warhammer 30k community as they were allied with Outer Wilds to create this piece.", "links": {"website": ["https://www.mobiusdigitalgames.com/outer-wilds.html"], "subreddit": ["outerwilds", "Warhammer30k"], "discord": ["QmUFNAwG"]}, "path": {"47-258": [[328, 72], [328, 31], [280, 32], [280, 72]]}, "center": {"47-258": [304, 52]}}, +{"id": 621, "name": "Francisco Ibañez", "description": "Francisco Ibañez Talavera was a spanish strip cartoonist creator of many humorous series, among which \"Mortadelo y Filemón\" (Mort and Phil) stands out. He passed away the last 15th of July.", "links": {}, "path": {"84-258, T": [[632, -131], [681, -131], [680, -76], [633, -78]]}, "center": {"84-258, T": [657, -106]}}, +{"id": 622, "name": "Manner (confectionery)", "description": "The company's best-known product are the \"Neapolitan wafers\", introduced in 1898. They are sold in blocks of ten hazelnut-cream filled wafers. They are one of the most well known austrian sweets.", "links": {"subreddit": ["placeAustria"]}, "path": {"98-258, T": [[-530, -55], [-503, -55], [-503, -28], [-530, -28]]}, "center": {"98-258, T": [-516, -41]}}, +{"id": 623, "name": "Outer Wilds", "description": "Outer Wilds is a captivating exploration and mystery video game set in an open-world. You play as an astronaut in a small solar system, where you must uncover the secrets of ancient civilizations and solve the enigma behind a mysterious time loop. With a strong emphasis on narrative, the game invites you to explore and learn about the various planets while unraveling a fascinating story that keeps you intrigued throughout the adventure. This artwork was animated over the course of several days, depicting the player character's ship landing on various planets within the game. After a bright light filled the frame and a Nomai mask appeared, it now depicts a small campfire with planets and trees in the background. \n\nThis also depicts the Eye of Horus from the Warhammer 30k community as they were allied with Outer Wilds to create this piece.", "links": {"website": ["https://www.mobiusdigitalgames.com/outer-wilds.html"], "subreddit": ["outerwilds", "Warhammer30k"], "discord": ["QmUFNAwG"]}, "path": {"47-258, T": [[328, 72], [328, 31], [280, 32], [280, 72]]}, "center": {"47-258, T": [304, 52]}}, {"id": 624, "name": "Grass Cutting Incremental", "description": "A Roblox Incremental Game based on cutting grass and do reset layers.", "links": {"website": ["https://www.roblox.com/games/9292879820/BIG-UPD-Grass-Cutting-Incremental"], "subreddit": ["GrassCutting"], "discord": ["lethalgames"]}, "path": {"86-96": [[-238, 255], [-215, 255], [-215, 248], [-239, 248], [-239, 255]]}, "center": {"86-96": [-227, 252]}}, {"id": 625, "name": "Jean Moulin", "description": "Jean Moulin is a hero of the french resistance", "links": {"website": ["https://en.wikipedia.org/wiki/Jean_Moulin"]}, "path": {"52-65": [[-500, -241], [-490, -248], [-488, -249], [-483, -250], [-478, -253], [-474, -253], [-474, -259], [-477, -259], [-480, -259], [-481, -263], [-482, -269], [-481, -273], [-482, -276], [-481, -281], [-482, -285], [-486, -287], [-489, -292], [-492, -297], [-493, -298], [-493, -304], [-490, -309], [-486, -312], [-472, -312], [-469, -313], [-466, -318], [-464, -325], [-460, -331], [-454, -337], [-451, -340], [-444, -341], [-436, -342], [-426, -342], [-420, -341], [-415, -340], [-412, -338], [-412, -331], [-408, -329], [-407, -324], [-404, -319], [-401, -316], [-396, -314], [-393, -310], [-389, -306], [-386, -305], [-381, -301], [-377, -294], [-374, -290], [-375, -283], [-376, -278], [-377, -273], [-378, -267], [-384, -263], [-389, -261], [-394, -259], [-400, -258], [-405, -256], [-406, -254], [-407, -243], [-409, -241], [-414, -235], [-415, -232], [-414, -225], [-416, -218], [-414, -214], [-412, -208], [-409, -205], [-500, -204]]}, "center": {"52-65": [-434, -288]}}, -{"id": 626, "name": "Dhalucard", "description": "German streamer Dhalucard", "links": {"website": ["https://www.twitch.tv/dhalucard", "https://www.youtube.com/@Dhalucard"], "discord": ["dhalucard"]}, "path": {"92-258": [[-734, -364], [-729, -358], [-729, -355], [-723, -354], [-720, -350], [-720, -335], [-732, -323], [-742, -331], [-745, -338], [-745, -345], [-743, -355]]}, "center": {"92-258": [-733, -343]}}, -{"id": 627, "name": "German streamers", "description": "Sukidingels has designed this draft. It displays different german streamers, redpanda, the frog and the wheel are iconic for Bonjwa, the pinguin in the back represents Shortytv. The Star above is HollaDieWaldfee and the purpil cat on the right represents TwitchClipsGermany. On the left side are Rocketbeans with their iconic red bean, Farbenfuchs as a polar wolf and RoyalPhunk together with his dog. Dhalucard is placed with his heads and the yellow goggles. Torro takes place with the tinhead called \"RÄCHER\". \nThe tomato on the right represents HeyStan and the fish below is Divi.\nEdopeh is represented with his Rimworld pawn Matt who holds a glass in his hand for streamer Smashlunatic. Left to the pawn is Sukindingels herself and last but not least is Suun in the left bottom corner with kaaay below as a tiny pig.", "links": {"website": ["https://www.twitch.tv/dhalucard", "https://www.twitch.tv/bonjwa", "https://www.twitch.tv/sukidingels", "https://www.twitch.tv/shortytv", "https://www.twitch.tv/suun", "https://www.twitch.tv/edopeh", "https://www.twitch.tv/smashlunatic", "https://www.twitch.tv/torro", "https://www.twitch.tv/twitchclipsgermany", "https://www.twitch.tv/farbenfuchs", "https://www.twitch.tv/baso", "https://www.twitch.tv/holladiewaldfee", "https://www.twitch.tv/royalphunk", "https://www.twitch.tv/kaaaay", "https://www.twitch.tv/divi", "https://www.twitch.tv/heystan"]}, "path": {"95-258": [[-795, -326], [-795, -322], [-794, -322], [-794, -319], [-793, -319], [-793, -318], [-792, -318], [-792, -317], [-791, -317], [-791, -316], [-790, -316], [-790, -315], [-780, -315], [-780, -317], [-777, -317], [-777, -318], [-774, -318], [-774, -316], [-775, -316], [-775, -314], [-774, -314], [-774, -313], [-773, -313], [-773, -310], [-775, -310], [-775, -301], [-774, -301], [-774, -297], [-773, -297], [-773, -296], [-772, -296], [-772, -295], [-771, -295], [-771, -294], [-770, -294], [-770, -293], [-766, -293], [-766, -291], [-767, -291], [-767, -289], [-755, -289], [-755, -291], [-757, -291], [-757, -298], [-756, -298], [-756, -299], [-755, -299], [-755, -300], [-754, -300], [-754, -301], [-753, -301], [-753, -303], [-749, -303], [-749, -302], [-742, -302], [-742, -296], [-743, -296], [-743, -295], [-744, -295], [-744, -290], [-743, -290], [-743, -289], [-742, -289], [-742, -288], [-741, -288], [-741, -284], [-737, -284], [-737, -283], [-735, -283], [-735, -282], [-733, -282], [-733, -281], [-730, -281], [-730, -282], [-728, -282], [-728, -283], [-727, -283], [-727, -284], [-725, -284], [-725, -285], [-724, -285], [-724, -286], [-723, -286], [-723, -287], [-722, -287], [-722, -288], [-721, -288], [-721, -289], [-720, -289], [-720, -290], [-717, -290], [-717, -289], [-716, -289], [-716, -287], [-715, -287], [-715, -284], [-713, -284], [-713, -285], [-712, -285], [-712, -286], [-711, -286], [-711, -287], [-708, -287], [-708, -286], [-707, -286], [-707, -285], [-706, -285], [-706, -283], [-705, -283], [-705, -282], [-703, -282], [-703, -299], [-702, -299], [-702, -307], [-701, -307], [-701, -309], [-699, -309], [-699, -308], [-677, -308], [-677, -314], [-678, -314], [-678, -315], [-679, -315], [-679, -317], [-680, -317], [-680, -322], [-675, -322], [-675, -323], [-673, -323], [-673, -324], [-671, -324], [-671, -325], [-670, -325], [-670, -327], [-671, -327], [-671, -328], [-672, -328], [-672, -329], [-671, -329], [-671, -330], [-670, -330], [-670, -350], [-671, -350], [-671, -351], [-671, -353], [-670, -353], [-670, -359], [-671, -359], [-671, -360], [-672, -360], [-672, -362], [-671, -362], [-671, -363], [-670, -363], [-670, -365], [-674, -365], [-674, -364], [-676, -364], [-676, -362], [-677, -362], [-677, -361], [-678, -361], [-678, -360], [-679, -360], [-679, -359], [-680, -359], [-680, -354], [-679, -354], [-680, -354], [-679, -354], [-678, -353], [-678, -349], [-680, -349], [-680, -350], [-681, -350], [-681, -351], [-682, -351], [-682, -356], [-683, -356], [-683, -359], [-684, -359], [-684, -360], [-685, -360], [-685, -362], [-687, -362], [-687, -360], [-688, -360], [-688, -357], [-693, -357], [-693, -358], [-694, -358], [-694, -360], [-695, -360], [-695, -361], [-696, -361], [-696, -364], [-697, -364], [-697, -365], [-697, -364], [-698, -364], [-699, -364], [-699, -365], [-700, -365], [-700, -366], [-700, -365], [-701, -365], [-701, -364], [-706, -364], [-706, -365], [-707, -365], [-707, -366], [-707, -365], [-708, -365], [-708, -363], [-709, -363], [-709, -362], [-710, -362], [-710, -360], [-716, -360], [-716, -358], [-717, -358], [-717, -357], [-721, -357], [-721, -356], [-722, -356], [-722, -354], [-731, -354], [-731, -357], [-730, -357], [-730, -358], [-731, -358], [-731, -359], [-732, -359], [-732, -360], [-733, -360], [-733, -362], [-736, -362], [-736, -363], [-737, -363], [-737, -365], [-738, -365], [-738, -366], [-739, -366], [-739, -367], [-739, -366], [-740, -366], [-740, -365], [-751, -365], [-751, -366], [-754, -366], [-754, -367], [-755, -367], [-755, -365], [-756, -365], [-756, -364], [-759, -364], [-759, -366], [-760, -366], [-760, -367], [-760, -366], [-761, -366], [-761, -365], [-762, -365], [-762, -364], [-763, -364], [-763, -363], [-765, -363], [-765, -362], [-764, -362], [-764, -361], [-764, -360], [-766, -360], [-766, -361], [-768, -361], [-768, -362], [-770, -362], [-770, -358], [-771, -358], [-771, -356], [-773, -356], [-773, -355], [-774, -355], [-774, -354], [-777, -354], [-777, -355], [-780, -355], [-780, -356], [-781, -356], [-781, -353], [-782, -353], [-782, -348], [-784, -348], [-784, -347], [-786, -347], [-786, -348], [-788, -348], [-788, -347], [-790, -347], [-790, -346], [-791, -346], [-791, -344], [-793, -344], [-793, -342], [-792, -342], [-792, -338], [-791, -338], [-791, -336], [-790, -336], [-790, -330], [-790, -329], [-792, -329], [-792, -328], [-793, -328], [-793, -327], [-794, -327], [-794, -326]]}, "center": {"95-258": [-725, -325]}}, -{"id": 629, "name": "Flag of Germany (Südflagge)", "description": "Germany is a country in Central Europe.\n\nThis German flag has its own unique story: It is owned and maintained by a group of users who are dissatisfied with the state of r/placede's moderation team. Due to their nature of being a rebellious breakaway group, users who have been banned from r/placede's discord server are welcomed with open arms here. The southern flag is considered a ban-worthy topic in r/placede's server due to it's controversial nature.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"88-107": [[-868, -80], [-868, -57], [-501, -57], [-501, -80]], "108-170": [[-501, -57], [-501, -80], [-1000, -77], [-1000, -57]], "171-258": [[-1142, -80], [-1142, -57], [-501, -57], [-501, -79], [-1399, -79], [-1401, -59], [-1142, -57]]}, "center": {"88-107": [-684, -68], "108-170": [-528, -68], "171-258": [-946, -68]}}, -{"id": 630, "name": "Flag of Hungary", "description": "Hungary is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary"], "discord": ["pixelhu"]}, "path": {"87-105": [[-868, -37], [-868, -6], [-501, -6], [-501, -37]], "106-170": [[-1001, -37], [-1001, -6], [-501, -6], [-501, -37]], "171-225": [[-1175, -37], [-1175, -6], [-501, -6]], "226-258": [[-501, -6], [-501, -36], [-1500, -36], [-1500, -7], [-1471, -7], [-1471, -9], [-1445, -9], [-1445, -7]]}, "center": {"87-105": [-684, -21], "106-170": [-751, -21], "171-225": [-1160, -21], "226-258": [-525, -21]}}, -{"id": 631, "name": "Flag of Bulgaria", "description": "Bulgaria is a country in Southeast Europe. The flag of Bulgaria is a tricolour consisting of three equal-sized horizontal bands of (from top to bottom) white, green, and red. The flag was first adopted after the 1877-1878 Russo-Turkish War, when Bulgaria gained de facto independence. The national flag at times was charged with the state emblem, especially during the communist era. The current flag was re-established with the 1991 Constitution of Bulgaria and was confirmed in a 1998 law.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria", "https://en.wikipedia.org/wiki/Flag_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"101-258": [[-588, -6], [-588, 42], [-501, 42], [-501, -6]]}, "center": {"101-258": [-544, 18]}}, -{"id": 632, "name": "Flag of Italy", "description": "Italy, officially the Republic of Italy (Repubblica Italiana), is a country in Southern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy", "Italia"], "discord": ["italy"]}, "path": {"87-258": [[-694, -6], [-694, 135], [-601, 136], [-601, 124], [-588, 124], [-588, -6]]}, "center": {"87-258": [-641, 65]}}, -{"id": 633, "name": "Flag of Portugal", "description": "Portugal is a country in Southwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal", "https://en.wikipedia.org/wiki/Flag_of_Portugal"], "discord": ["TugaPlace"]}, "path": {"92-113": [[-868, 178], [-868, 226], [-744, 226], [-744, 178]], "114-258": [[-879, 178], [-879, 245], [-786, 245], [-786, 226], [-739, 226], [-739, 245], [-730, 245], [-730, 236], [-732, 236], [-735, 231], [-735, 223], [-738, 223], [-738, 218], [-736, 215], [-736, 213], [-739, 209], [-740, 206], [-740, 202], [-737, 194], [-748, 178]]}, "center": {"92-113": [-806, 202], "114-258": [-845, 212]}}, -{"id": 634, "name": "Flag of Colombia", "description": "Colombia is a country on the northwest coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"89-95": [[-659, 305], [-659, 322], [-635, 322], [-635, 305]], "96-258": [[-770, 278], [-613, 278], [-613, 327], [-770, 328]]}, "center": {"89-95": [-647, 314], "96-258": [-745, 303]}}, +{"id": 626, "name": "Dhalucard", "description": "German streamer Dhalucard", "links": {"website": ["https://www.twitch.tv/dhalucard", "https://www.youtube.com/@Dhalucard"], "discord": ["dhalucard"]}, "path": {"92-258, T": [[-734, -364], [-729, -358], [-729, -355], [-723, -354], [-720, -350], [-720, -335], [-732, -323], [-742, -331], [-745, -338], [-745, -345], [-743, -355]]}, "center": {"92-258, T": [-733, -343]}}, +{"id": 627, "name": "German streamers", "description": "Sukidingels has designed this draft. It displays different german streamers, redpanda, the frog and the wheel are iconic for Bonjwa, the pinguin in the back represents Shortytv. The Star above is HollaDieWaldfee and the purpil cat on the right represents TwitchClipsGermany. On the left side are Rocketbeans with their iconic red bean, Farbenfuchs as a polar wolf and RoyalPhunk together with his dog. Dhalucard is placed with his heads and the yellow goggles. Torro takes place with the tinhead called \"RÄCHER\". \nThe tomato on the right represents HeyStan and the fish below is Divi.\nEdopeh is represented with his Rimworld pawn Matt who holds a glass in his hand for streamer Smashlunatic. Left to the pawn is Sukindingels herself and last but not least is Suun in the left bottom corner with kaaay below as a tiny pig.", "links": {"website": ["https://www.twitch.tv/dhalucard", "https://www.twitch.tv/bonjwa", "https://www.twitch.tv/sukidingels", "https://www.twitch.tv/shortytv", "https://www.twitch.tv/suun", "https://www.twitch.tv/edopeh", "https://www.twitch.tv/smashlunatic", "https://www.twitch.tv/torro", "https://www.twitch.tv/twitchclipsgermany", "https://www.twitch.tv/farbenfuchs", "https://www.twitch.tv/baso", "https://www.twitch.tv/holladiewaldfee", "https://www.twitch.tv/royalphunk", "https://www.twitch.tv/kaaaay", "https://www.twitch.tv/divi", "https://www.twitch.tv/heystan"]}, "path": {"95-258, T": [[-795, -326], [-795, -322], [-794, -322], [-794, -319], [-793, -319], [-793, -318], [-792, -318], [-792, -317], [-791, -317], [-791, -316], [-790, -316], [-790, -315], [-780, -315], [-780, -317], [-777, -317], [-777, -318], [-774, -318], [-774, -316], [-775, -316], [-775, -314], [-774, -314], [-774, -313], [-773, -313], [-773, -310], [-775, -310], [-775, -301], [-774, -301], [-774, -297], [-773, -297], [-773, -296], [-772, -296], [-772, -295], [-771, -295], [-771, -294], [-770, -294], [-770, -293], [-766, -293], [-766, -291], [-767, -291], [-767, -289], [-755, -289], [-755, -291], [-757, -291], [-757, -298], [-756, -298], [-756, -299], [-755, -299], [-755, -300], [-754, -300], [-754, -301], [-753, -301], [-753, -303], [-749, -303], [-749, -302], [-742, -302], [-742, -296], [-743, -296], [-743, -295], [-744, -295], [-744, -290], [-743, -290], [-743, -289], [-742, -289], [-742, -288], [-741, -288], [-741, -284], [-737, -284], [-737, -283], [-735, -283], [-735, -282], [-733, -282], [-733, -281], [-730, -281], [-730, -282], [-728, -282], [-728, -283], [-727, -283], [-727, -284], [-725, -284], [-725, -285], [-724, -285], [-724, -286], [-723, -286], [-723, -287], [-722, -287], [-722, -288], [-721, -288], [-721, -289], [-720, -289], [-720, -290], [-717, -290], [-717, -289], [-716, -289], [-716, -287], [-715, -287], [-715, -284], [-713, -284], [-713, -285], [-712, -285], [-712, -286], [-711, -286], [-711, -287], [-708, -287], [-708, -286], [-707, -286], [-707, -285], [-706, -285], [-706, -283], [-705, -283], [-705, -282], [-703, -282], [-703, -299], [-702, -299], [-702, -307], [-701, -307], [-701, -309], [-699, -309], [-699, -308], [-677, -308], [-677, -314], [-678, -314], [-678, -315], [-679, -315], [-679, -317], [-680, -317], [-680, -322], [-675, -322], [-675, -323], [-673, -323], [-673, -324], [-671, -324], [-671, -325], [-670, -325], [-670, -327], [-671, -327], [-671, -328], [-672, -328], [-672, -329], [-671, -329], [-671, -330], [-670, -330], [-670, -350], [-671, -350], [-671, -351], [-671, -353], [-670, -353], [-670, -359], [-671, -359], [-671, -360], [-672, -360], [-672, -362], [-671, -362], [-671, -363], [-670, -363], [-670, -365], [-674, -365], [-674, -364], [-676, -364], [-676, -362], [-677, -362], [-677, -361], [-678, -361], [-678, -360], [-679, -360], [-679, -359], [-680, -359], [-680, -354], [-679, -354], [-680, -354], [-679, -354], [-678, -353], [-678, -349], [-680, -349], [-680, -350], [-681, -350], [-681, -351], [-682, -351], [-682, -356], [-683, -356], [-683, -359], [-684, -359], [-684, -360], [-685, -360], [-685, -362], [-687, -362], [-687, -360], [-688, -360], [-688, -357], [-693, -357], [-693, -358], [-694, -358], [-694, -360], [-695, -360], [-695, -361], [-696, -361], [-696, -364], [-697, -364], [-697, -365], [-697, -364], [-698, -364], [-699, -364], [-699, -365], [-700, -365], [-700, -366], [-700, -365], [-701, -365], [-701, -364], [-706, -364], [-706, -365], [-707, -365], [-707, -366], [-707, -365], [-708, -365], [-708, -363], [-709, -363], [-709, -362], [-710, -362], [-710, -360], [-716, -360], [-716, -358], [-717, -358], [-717, -357], [-721, -357], [-721, -356], [-722, -356], [-722, -354], [-731, -354], [-731, -357], [-730, -357], [-730, -358], [-731, -358], [-731, -359], [-732, -359], [-732, -360], [-733, -360], [-733, -362], [-736, -362], [-736, -363], [-737, -363], [-737, -365], [-738, -365], [-738, -366], [-739, -366], [-739, -367], [-739, -366], [-740, -366], [-740, -365], [-751, -365], [-751, -366], [-754, -366], [-754, -367], [-755, -367], [-755, -365], [-756, -365], [-756, -364], [-759, -364], [-759, -366], [-760, -366], [-760, -367], [-760, -366], [-761, -366], [-761, -365], [-762, -365], [-762, -364], [-763, -364], [-763, -363], [-765, -363], [-765, -362], [-764, -362], [-764, -361], [-764, -360], [-766, -360], [-766, -361], [-768, -361], [-768, -362], [-770, -362], [-770, -358], [-771, -358], [-771, -356], [-773, -356], [-773, -355], [-774, -355], [-774, -354], [-777, -354], [-777, -355], [-780, -355], [-780, -356], [-781, -356], [-781, -353], [-782, -353], [-782, -348], [-784, -348], [-784, -347], [-786, -347], [-786, -348], [-788, -348], [-788, -347], [-790, -347], [-790, -346], [-791, -346], [-791, -344], [-793, -344], [-793, -342], [-792, -342], [-792, -338], [-791, -338], [-791, -336], [-790, -336], [-790, -330], [-790, -329], [-792, -329], [-792, -328], [-793, -328], [-793, -327], [-794, -327], [-794, -326]]}, "center": {"95-258, T": [-725, -325]}}, +{"id": 629, "name": "Flag of Germany (Südflagge)", "description": "Germany is a country in Central Europe.\n\nThis German flag has its own unique story: It is owned and maintained by a group of users who are dissatisfied with the state of r/placede's moderation team. Due to their nature of being a rebellious breakaway group, users who have been banned from r/placede's discord server are welcomed with open arms here. The southern flag is considered a ban-worthy topic in r/placede's server due to it's controversial nature.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"88-107": [[-868, -80], [-868, -57], [-501, -57], [-501, -80]], "108-170": [[-501, -57], [-501, -80], [-1000, -77], [-1000, -57]], "171-258, T": [[-1142, -80], [-1142, -57], [-501, -57], [-501, -79], [-1399, -79], [-1401, -59], [-1142, -57]]}, "center": {"88-107": [-684, -68], "108-170": [-528, -68], "171-258, T": [-946, -68]}}, +{"id": 630, "name": "Flag of Hungary", "description": "Hungary is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary"], "discord": ["pixelhu"]}, "path": {"87-105": [[-868, -37], [-868, -6], [-501, -6], [-501, -37]], "106-170": [[-1001, -37], [-1001, -6], [-501, -6], [-501, -37]], "171-225": [[-1175, -37], [-1175, -6], [-501, -6]], "226-258, T": [[-501, -6], [-501, -36], [-1500, -36], [-1500, -7], [-1471, -7], [-1471, -9], [-1445, -9], [-1445, -7]]}, "center": {"87-105": [-684, -21], "106-170": [-751, -21], "171-225": [-1160, -21], "226-258, T": [-525, -21]}}, +{"id": 631, "name": "Flag of Bulgaria", "description": "Bulgaria is a country in Southeast Europe. The flag of Bulgaria is a tricolour consisting of three equal-sized horizontal bands of (from top to bottom) white, green, and red. The flag was first adopted after the 1877-1878 Russo-Turkish War, when Bulgaria gained de facto independence. The national flag at times was charged with the state emblem, especially during the communist era. The current flag was re-established with the 1991 Constitution of Bulgaria and was confirmed in a 1998 law.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria", "https://en.wikipedia.org/wiki/Flag_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"101-258, T": [[-588, -6], [-588, 42], [-501, 42], [-501, -6]]}, "center": {"101-258, T": [-544, 18]}}, +{"id": 632, "name": "Flag of Italy", "description": "Italy, officially the Republic of Italy (Repubblica Italiana), is a country in Southern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy", "Italia"], "discord": ["italy"]}, "path": {"87-258, T": [[-694, -6], [-694, 135], [-601, 136], [-601, 124], [-588, 124], [-588, -6]]}, "center": {"87-258, T": [-641, 65]}}, +{"id": 633, "name": "Flag of Portugal", "description": "Portugal is a country in Southwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal", "https://en.wikipedia.org/wiki/Flag_of_Portugal"], "discord": ["TugaPlace"]}, "path": {"92-113": [[-868, 178], [-868, 226], [-744, 226], [-744, 178]], "114-258, T": [[-879, 178], [-879, 245], [-786, 245], [-786, 226], [-739, 226], [-739, 245], [-730, 245], [-730, 236], [-732, 236], [-735, 231], [-735, 223], [-738, 223], [-738, 218], [-736, 215], [-736, 213], [-739, 209], [-740, 206], [-740, 202], [-737, 194], [-748, 178]]}, "center": {"92-113": [-806, 202], "114-258, T": [-845, 212]}}, +{"id": 634, "name": "Flag of Colombia", "description": "Colombia is a country on the northwest coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"89-95": [[-659, 305], [-659, 322], [-635, 322], [-635, 305]], "96-258, T": [[-770, 278], [-613, 278], [-613, 327], [-770, 328]]}, "center": {"89-95": [-647, 314], "96-258, T": [-745, 303]}}, {"id": 635, "name": "Charizard", "description": "Charizard is a Fire/Flying type starter pokemon that debuted in Generation 1.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Charizard_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"80-111": [[977, 328], [971, 332], [967, 339], [967, 344], [966, 345], [966, 347], [969, 350], [969, 354], [972, 356], [972, 357], [974, 359], [978, 359], [980, 356], [984, 356], [986, 359], [990, 359], [992, 357], [992, 353], [996, 349], [999, 349], [999, 335], [997, 332], [992, 328]]}, "center": {"80-111": [982, 342]}}, {"id": 636, "name": "Malaysia Airlines Flight 17", "description": "Malaysia Airlines Flight 17 was a passenger flight from Amsterdam to Kuala Lumpur that was shot down over Eastern Ukraine on July 17, 2014, killing all 298 people on board.", "links": {"website": ["https://en.wikipedia.org/wiki/Malaysia_Airlines_Flight_17"]}, "path": {"148": [[855, -500], [855, -451], [886, -451], [886, -500]]}, "center": {"148": [871, -475]}}, -{"id": 637, "name": "Mefewe Sonic Wave 98%", "description": "This art reference an infamous incident in the community of the game Geometry Dash. On March 25, 2016, the player Mefewe crashed at 98% on his buffed version of the level \"Sonic Wave\". Ironically, Mefewe was the original verifier of the level and included a shout-out to himself just at the point where he crashed. This was considered the worst fail in GD at the time. The level was eventually verified by Sunix on November 25, 2016.", "links": {"website": ["https://youtu.be/_kAhx6B7uy0?t=118"], "subreddit": ["geometrydash"], "discord": ["hZj5evMRZr"]}, "path": {"89-157": [[-589, 123], [-501, 123], [-501, 171], [-595, 171], [-602, 156], [-602, 136], [-589, 136]], "158-258": [[-589, 123], [-501, 123], [-501, 171], [-595, 171], [-602, 156], [-602, 123]]}, "center": {"89-157": [-551, 147], "158-258": [-551, 147]}}, -{"id": 638, "name": "Flag of Malaysia", "description": "Malaysia is a country in Southeast Asia. With a population of over 33 million, it consists of the peninsular West Malaysia, and East Malaysia which is part of the island of Borneo. \n\nFrom center top, clockwise: A jet-powered Perodua Myvi, a ubiquitous locally-manufactured car; the bunga-raya (Hibiscus rosa-sinensis), the national flower; a serving of nasi lemak on a banana leaf, a national dish; the Spez Babi tag (lit. Spez is a swine), and a Durian fruit, cut open for consumption.", "links": {"website": ["https://en.wikipedia.org/wiki/Malaysia"], "subreddit": ["placeMY", "malaysia", "malaysians", "Bolehland"], "discord": ["hG9XJpDRPw"]}, "path": {"91-258": [[-694, 23], [-759, 23], [-759, -6], [-694, -6]]}, "center": {"91-258": [-726, 9]}}, -{"id": 639, "name": "LEGO Minifigure Head", "description": "A LEGO Minifigure head. Designed by Emersonac Reviews for JLT and built in collaboration with Just LEGO Things, Austria and Chainsaw Man communities, and defended by the University of Michigan during night hours. It was relocated from the bottom right of the Austrian flag.", "links": {"website": ["https://www.youtube.com/channel/UCRRuHWRqAHAVwXxOpcPy9PQ"], "subreddit": ["Lego", "JustLEGOThingsPlace"], "discord": ["lego"]}, "path": {"147-258": [[663, -345], [668, -345], [668, -342], [671, -342], [671, -340], [672, -340], [672, -333], [671, -333], [671, -331], [670, -331], [669, -331], [669, -330], [662, -330], [662, -331], [660, -331], [660, -333], [659, -333], [659, -340], [660, -340], [660, -342], [663, -342]]}, "center": {"147-258": [666, -336]}}, -{"id": 640, "name": "Polly Plantar", "description": "Polly Plantar is a major character in the 2019 Disney TV series Amphibia. She resembles a real-life tadpole, except she has arms instead of legs.", "links": {"website": ["https://amphibia.fandom.com/wiki/Polly_Plantar"], "subreddit": ["Amphibia", "place_CentralAlliance"], "discord": ["Amphibia"]}, "path": {"88-258": [[533, -315], [533, -312], [532, -311], [532, -309], [533, -308], [534, -307], [537, -306], [538, -307], [539, -308], [540, -309], [540, -311], [539, -312], [539, -313], [538, -314], [539, -315], [538, -316], [537, -316], [536, -315], [535, -316], [534, -316]]}, "center": {"88-258": [536, -311]}}, +{"id": 637, "name": "Mefewe Sonic Wave 98%", "description": "This art reference an infamous incident in the community of the game Geometry Dash. On March 25, 2016, the player Mefewe crashed at 98% on his buffed version of the level \"Sonic Wave\". Ironically, Mefewe was the original verifier of the level and included a shout-out to himself just at the point where he crashed. This was considered the worst fail in GD at the time. The level was eventually verified by Sunix on November 25, 2016.", "links": {"website": ["https://youtu.be/_kAhx6B7uy0?t=118"], "subreddit": ["geometrydash"], "discord": ["hZj5evMRZr"]}, "path": {"89-157": [[-589, 123], [-501, 123], [-501, 171], [-595, 171], [-602, 156], [-602, 136], [-589, 136]], "158-258, T": [[-589, 123], [-501, 123], [-501, 171], [-595, 171], [-602, 156], [-602, 123]]}, "center": {"89-157": [-551, 147], "158-258, T": [-551, 147]}}, +{"id": 638, "name": "Flag of Malaysia", "description": "Malaysia is a country in Southeast Asia. With a population of over 33 million, it consists of the peninsular West Malaysia, and East Malaysia which is part of the island of Borneo. \n\nFrom center top, clockwise: A jet-powered Perodua Myvi, a ubiquitous locally-manufactured car; the bunga-raya (Hibiscus rosa-sinensis), the national flower; a serving of nasi lemak on a banana leaf, a national dish; the Spez Babi tag (lit. Spez is a swine), and a Durian fruit, cut open for consumption.", "links": {"website": ["https://en.wikipedia.org/wiki/Malaysia"], "subreddit": ["placeMY", "malaysia", "malaysians", "Bolehland"], "discord": ["hG9XJpDRPw"]}, "path": {"91-258, T": [[-694, 23], [-759, 23], [-759, -6], [-694, -6]]}, "center": {"91-258, T": [-726, 9]}}, +{"id": 639, "name": "LEGO Minifigure Head", "description": "A LEGO Minifigure head. Designed by Emersonac Reviews for JLT and built in collaboration with Just LEGO Things, Austria and Chainsaw Man communities, and defended by the University of Michigan during night hours. It was relocated from the bottom right of the Austrian flag.", "links": {"website": ["https://www.youtube.com/channel/UCRRuHWRqAHAVwXxOpcPy9PQ"], "subreddit": ["Lego", "JustLEGOThingsPlace"], "discord": ["lego"]}, "path": {"147-258, T": [[663, -345], [668, -345], [668, -342], [671, -342], [671, -340], [672, -340], [672, -333], [671, -333], [671, -331], [670, -331], [669, -331], [669, -330], [662, -330], [662, -331], [660, -331], [660, -333], [659, -333], [659, -340], [660, -340], [660, -342], [663, -342]]}, "center": {"147-258, T": [666, -336]}}, +{"id": 640, "name": "Polly Plantar", "description": "Polly Plantar is a major character in the 2019 Disney TV series Amphibia. She resembles a real-life tadpole, except she has arms instead of legs.", "links": {"website": ["https://amphibia.fandom.com/wiki/Polly_Plantar"], "subreddit": ["Amphibia", "place_CentralAlliance"], "discord": ["Amphibia"]}, "path": {"88-258, T": [[533, -315], [533, -312], [532, -311], [532, -309], [533, -308], [534, -307], [537, -306], [538, -307], [539, -308], [540, -309], [540, -311], [539, -312], [539, -313], [538, -314], [539, -315], [538, -316], [537, -316], [536, -315], [535, -316], [534, -316]]}, "center": {"88-258, T": [536, -311]}}, {"id": 641, "name": "Flag of Hungary", "description": "Hungary is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary"], "discord": ["pixelhu"]}, "path": {"58-86": [[114, 105], [114, 129], [138, 129], [138, 105]], "87-114": [[114, 105], [114, 129], [205, 129], [205, 101], [138, 101], [138, 105]]}, "center": {"58-86": [126, 117], "87-114": [160, 115]}}, -{"id": 642, "name": "Transgender flag", "description": "A pride flag representing the transgender community. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"], "subreddit": ["transplace"]}, "path": {"88-258": [[-633, -130], [-633, -80], [-501, -80], [-501, -130]]}, "center": {"88-258": [-567, -105]}}, +{"id": 642, "name": "Transgender flag", "description": "A pride flag representing the transgender community. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"], "subreddit": ["transplace"]}, "path": {"88-258, T": [[-633, -130], [-633, -80], [-501, -80], [-501, -130]]}, "center": {"88-258, T": [-567, -105]}}, {"id": 643, "name": "Rainbow flag", "description": "A pride flag representing the LGBT community as a whole.", "links": {"website": ["https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)", "https://en.wikipedia.org/wiki/LGBT"]}, "path": {"91-104": [[500, 439], [500, 465], [629, 465], [629, 439]], "105-108": [[500, 439], [500, 465], [600, 465], [600, 439]]}, "center": {"91-104": [565, 452], "105-108": [550, 452]}}, -{"id": 644, "name": "Rainbow flag", "description": "A pride flag representing the LGBT community as a whole.", "links": {"website": ["https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)", "https://en.wikipedia.org/wiki/LGBT"]}, "path": {"91-258": [[-633, -172], [-633, -130], [-501, -130], [-501, -172]]}, "center": {"91-258": [-567, -151]}}, -{"id": 645, "name": "Hololive", "description": "Hololive Production is a virtual YouTuber (VTuber) agency owned by Japanese tech entertainment company Cover Corporation. In addition to acting as a multi-channel network, Hololive Production also handles merchandising especially in music production and concert organization. The brand gained popularity as a talent agency for popular VTubers, managing 75 talents as of January 2023. Among them are the most subscribed active VTubers in Japan (Houshou Marine), Southeast Asia (Kobo Kanaeru), and North America (Gawr Gura). The star-like logo on the right depicts Holostars, the male-only branch, while \"Hololive\" represents the female-only unit.\n\nOriginally, the VTubers Place community was located next to the Turkish flag on the initial canvas size at the start of r/place. However, they were forced to move by the constraint of space and threats of expansions by Turkey and threats of collateral damage when streamers raided the Turkish flag.\nIn the initial location, the Turkish flag also cut off 4 vertical lines of the Hololive logo on the left side after Turkey expanded their flag. The original Hololive logo survived for several days even after it was officially abandoned for the final location, being constantly maintained by a combination of Hololive fans and surrounding communities unaware of the relocation of Hololive, before eventually being destroyed once it became clear it was not being maintained anymore.", "links": {"website": ["https://en.hololive.tv/", "https://en.wikipedia.org/wiki/Hololive_Production"], "subreddit": ["Hololive"], "discord": ["vtubersplace", "holofans"]}, "path": {"87-258": [[-667, -360], [-670, -357], [-670, -315], [-666, -312], [-665, -312], [-636, -327], [-575, -327], [-575, -343], [-631, -343], [-665, -360]]}, "center": {"87-258": [-654, -336]}}, -{"id": 646, "name": "Holostars", "description": "Holostars is a male-only Virtual YouTuber agency established by Cover Corp", "links": {"website": ["https://holostars.hololivepro.com/en/", "https://hololive.wiki/wiki/Holostars"], "subreddit": ["Holostars", "Hololive"], "discord": ["vtubersplace", "holofans"]}, "path": {"88-258": [[-575, -343], [-575, -327], [-558, -327], [-558, -343]]}, "center": {"88-258": [-566, -335]}}, -{"id": 647, "name": "VShojo", "description": "VShojo is a VTuber organization founded by TheGunrun and based in San Francisco, California, United States. VShojo brands itself as a talent-first VTuber company. Unlike Japan-based VTuber organizations, VShojo primarily uses Twitch for livestreaming, with YouTube reserved primarily for highlight clips and edited content.", "links": {"website": ["https://www.vshojo.com/", "https://en.wikipedia.org/wiki/VShojo"], "subreddit": ["vtubersplace", "VShojo"]}, "path": {"88-258": [[-607, -308], [-609, -306], [-609, -301], [-608, -300], [-608, -295], [-610, -288], [-610, -282], [-605, -268], [-597, -260], [-586, -260], [-572, -266], [-564, -274], [-561, -282], [-561, -296], [-559, -299], [-559, -302], [-564, -308], [-566, -309], [-577, -309], [-582, -311], [-592, -311], [-595, -309]]}, "center": {"88-258": [-585, -286]}}, -{"id": 648, "name": "Flag of Ireland", "description": "The Republic of Ireland is a country in northwestern Europe. It consists of most of the island of Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"88-258": [[-868, 55], [-868, 150], [-811, 150], [-811, 55]]}, "center": {"88-258": [-839, 103]}}, -{"id": 649, "name": "Flag of Northern Cyprus", "description": "Northern Cyprus is a state only recognized by Turkey, making up the northern part of the island of Cyprus in the Mediterranean Sea. All other countries recognize Northern Cyprus's territory as part of the country of Cyprus. This dispute remains unresolved in the present day.", "links": {"website": ["https://en.wikipedia.org/wiki/Northern_Cyprus", "https://en.wikipedia.org/wiki/Flag_of_Northern_Cyprus"]}, "path": {"87-258": [[-654, 446], [-654, 500], [-570, 500], [-570, 446]]}, "center": {"87-258": [-612, 473]}}, +{"id": 644, "name": "Rainbow flag", "description": "A pride flag representing the LGBT community as a whole.", "links": {"website": ["https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)", "https://en.wikipedia.org/wiki/LGBT"]}, "path": {"91-258, T": [[-633, -172], [-633, -130], [-501, -130], [-501, -172]]}, "center": {"91-258, T": [-567, -151]}}, +{"id": 645, "name": "Hololive", "description": "Hololive Production is a virtual YouTuber (VTuber) agency owned by Japanese tech entertainment company Cover Corporation. In addition to acting as a multi-channel network, Hololive Production also handles merchandising especially in music production and concert organization. The brand gained popularity as a talent agency for popular VTubers, managing 75 talents as of January 2023. Among them are the most subscribed active VTubers in Japan (Houshou Marine), Southeast Asia (Kobo Kanaeru), and North America (Gawr Gura). The star-like logo on the right depicts Holostars, the male-only branch, while \"Hololive\" represents the female-only unit.\n\nOriginally, the VTubers Place community was located next to the Turkish flag on the initial canvas size at the start of r/place. However, they were forced to move by the constraint of space and threats of expansions by Turkey and threats of collateral damage when streamers raided the Turkish flag.\nIn the initial location, the Turkish flag also cut off 4 vertical lines of the Hololive logo on the left side after Turkey expanded their flag. The original Hololive logo survived for several days even after it was officially abandoned for the final location, being constantly maintained by a combination of Hololive fans and surrounding communities unaware of the relocation of Hololive, before eventually being destroyed once it became clear it was not being maintained anymore.", "links": {"website": ["https://en.hololive.tv/", "https://en.wikipedia.org/wiki/Hololive_Production"], "subreddit": ["Hololive"], "discord": ["vtubersplace", "holofans"]}, "path": {"87-258, T": [[-667, -360], [-670, -357], [-670, -315], [-666, -312], [-665, -312], [-636, -327], [-575, -327], [-575, -343], [-631, -343], [-665, -360]]}, "center": {"87-258, T": [-654, -336]}}, +{"id": 646, "name": "Holostars", "description": "Holostars is a male-only Virtual YouTuber agency established by Cover Corp", "links": {"website": ["https://holostars.hololivepro.com/en/", "https://hololive.wiki/wiki/Holostars"], "subreddit": ["Holostars", "Hololive"], "discord": ["vtubersplace", "holofans"]}, "path": {"88-258, T": [[-575, -343], [-575, -327], [-558, -327], [-558, -343]]}, "center": {"88-258, T": [-566, -335]}}, +{"id": 647, "name": "VShojo", "description": "VShojo is a VTuber organization founded by TheGunrun and based in San Francisco, California, United States. VShojo brands itself as a talent-first VTuber company. Unlike Japan-based VTuber organizations, VShojo primarily uses Twitch for livestreaming, with YouTube reserved primarily for highlight clips and edited content.", "links": {"website": ["https://www.vshojo.com/", "https://en.wikipedia.org/wiki/VShojo"], "subreddit": ["vtubersplace", "VShojo"]}, "path": {"88-258, T": [[-607, -308], [-609, -306], [-609, -301], [-608, -300], [-608, -295], [-610, -288], [-610, -282], [-605, -268], [-597, -260], [-586, -260], [-572, -266], [-564, -274], [-561, -282], [-561, -296], [-559, -299], [-559, -302], [-564, -308], [-566, -309], [-577, -309], [-582, -311], [-592, -311], [-595, -309]]}, "center": {"88-258, T": [-585, -286]}}, +{"id": 648, "name": "Flag of Ireland", "description": "The Republic of Ireland is a country in northwestern Europe. It consists of most of the island of Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"88-258, T": [[-868, 55], [-868, 150], [-811, 150], [-811, 55]]}, "center": {"88-258, T": [-839, 103]}}, +{"id": 649, "name": "Flag of Northern Cyprus", "description": "Northern Cyprus is a state only recognized by Turkey, making up the northern part of the island of Cyprus in the Mediterranean Sea. All other countries recognize Northern Cyprus's territory as part of the country of Cyprus. This dispute remains unresolved in the present day.", "links": {"website": ["https://en.wikipedia.org/wiki/Northern_Cyprus", "https://en.wikipedia.org/wiki/Flag_of_Northern_Cyprus"]}, "path": {"87-258, T": [[-654, 446], [-654, 500], [-570, 500], [-570, 446]]}, "center": {"87-258, T": [-612, 473]}}, {"id": 650, "name": "Flag of Spain", "description": "Spain (Spanish: España) is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Flag_of_Spain"], "subreddit": ["esPlace", "spain"]}, "path": {"88-105": [[-783, 23], [-783, 33], [-785, 36], [-792, 36], [-792, 44], [-694, 44], [-694, 23]]}, "center": {"88-105": [-739, 34]}}, -{"id": 651, "name": "Flag of Catalonia with Barcelona", "description": "A pixel art rendition of Barcelona's skyline on the Senyera, the flag of Catalonia. \n\nLeft to right: \n1 FC Barcelona Crests. \n2 The Montjuïc Communications Tower. 3 The W Barcelona Hotel ( l'Hotel Vela). \n4 The Sagrada Família, the Venetian Towers (Les Torres Venetianes). \n5 The Four Coluumns (Les Quatre Columnes). \n6 The Montjuïc Cable Car (El Telefèric de Montjuïc) in the background. \n7 A Casteller wearing a Barretina standing atop the Columbus Monument (Monument a Colom). \n\nSkyline designed, built and maintained by r/PlaceCatalunya in collaboration with r/Catalunya & r/Barna. Alliance hearts at intersections with surrounding communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Catalonia", "https://en.wikipedia.org/wiki/Flag_of_Catalonia", "https://en.wikipedia.org/wiki/Barcelona", "https://en.wikipedia.org/wiki/FC_Barcelona"], "subreddit": ["placeCatalunya", "barna", "catalunya"], "discord": ["t9Xar6XW9J"]}, "path": {"88-106": [[-868, 245], [-868, 273], [-773, 273], [-773, 245]], "107-153": [[-1001, 245], [-1001, 273], [-770, 273], [-770, 257], [-768, 257], [-768, 245]], "154-258": [[-869, 245], [-869, 273], [-770, 273], [-770, 257], [-768, 257], [-768, 245]]}, "center": {"88-106": [-820, 259], "107-153": [-884, 259], "154-258": [-818, 259]}}, +{"id": 651, "name": "Flag of Catalonia with Barcelona", "description": "A pixel art rendition of Barcelona's skyline on the Senyera, the flag of Catalonia. \n\nLeft to right: \n1 FC Barcelona Crests. \n2 The Montjuïc Communications Tower. 3 The W Barcelona Hotel ( l'Hotel Vela). \n4 The Sagrada Família, the Venetian Towers (Les Torres Venetianes). \n5 The Four Coluumns (Les Quatre Columnes). \n6 The Montjuïc Cable Car (El Telefèric de Montjuïc) in the background. \n7 A Casteller wearing a Barretina standing atop the Columbus Monument (Monument a Colom). \n\nSkyline designed, built and maintained by r/PlaceCatalunya in collaboration with r/Catalunya & r/Barna. Alliance hearts at intersections with surrounding communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Catalonia", "https://en.wikipedia.org/wiki/Flag_of_Catalonia", "https://en.wikipedia.org/wiki/Barcelona", "https://en.wikipedia.org/wiki/FC_Barcelona"], "subreddit": ["placeCatalunya", "barna", "catalunya"], "discord": ["t9Xar6XW9J"]}, "path": {"88-106": [[-868, 245], [-868, 273], [-773, 273], [-773, 245]], "107-153": [[-1001, 245], [-1001, 273], [-770, 273], [-770, 257], [-768, 257], [-768, 245]], "154-258, T": [[-869, 245], [-869, 273], [-770, 273], [-770, 257], [-768, 257], [-768, 245]]}, "center": {"88-106": [-820, 259], "107-153": [-884, 259], "154-258, T": [-818, 259]}}, {"id": 652, "name": "Flag of Germany", "description": "Germany is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"]}, "path": {"88-108": [[-750, 273], [-750, 284], [-651, 284], [-651, 283], [-528, 283], [-528, 271], [-583, 271], [-584, 273]]}, "center": {"88-108": [-534, 277]}}, -{"id": 653, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"87-106": [[-868, 273], [-868, 284], [-773, 284], [-773, 273]], "107-127": [[-1001, 273], [-1001, 284], [-770, 284], [-770, 273]], "128-139": [[-1001, 273], [-1001, 284], [-878, 284], [-878, 288], [-835, 288], [-835, 321], [-770, 321], [-770, 273]], "140-158": [[-903, 273], [-903, 284], [-855, 284], [-855, 321], [-770, 321], [-770, 273]], "159-170": [[-918, 273], [-918, 321], [-770, 321], [-770, 273]], "171-258": [[-1112, 273], [-1112, 321], [-770, 321], [-770, 273]]}, "center": {"87-106": [-820, 279], "107-127": [-885, 279], "128-139": [-811, 297], "140-158": [-831, 297], "159-170": [-844, 297], "171-258": [-941, 297]}}, -{"id": 654, "name": "OMORI", "description": "OMORI is the titular deuteragonist in the game OMORI. OMORI can be controlled by the player during the night, where WHITE SPACE can be explored. When OMORI is in the lead, he can cut down obstacles with his knife.\n\nThis art, nicknamed \"Gunmori\", features OMORI holding an assault rifle with \"F[uck] Spez\" on it. This refers to Reddit CEO Steve Huffman (u/spez), and is a protest against Reddit's API changes that have killed many third-party Reddit apps.", "links": {"website": ["https://www.omori-game.com/", "https://store.steampowered.com/app/1150690/OMORI/", "https://en.wikipedia.org/wiki/Omori_(video_game)"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"88-110": [[-659, 328], [-659, 404], [-582, 404], [-582, 328]], "111-258": [[-603, 318], [-612, 325], [-613, 327], [-613, 335], [-611, 341], [-621, 341], [-621, 343], [-623, 345], [-626, 345], [-626, 338], [-628, 336], [-656, 336], [-658, 338], [-658, 342], [-669, 342], [-671, 344], [-671, 345], [-676, 345], [-676, 349], [-672, 353], [-643, 353], [-643, 354], [-639, 358], [-635, 360], [-624, 360], [-623, 361], [-619, 361], [-618, 362], [-611, 362], [-609, 363], [-609, 373], [-612, 376], [-623, 376], [-624, 377], [-639, 377], [-638, 425], [-637, 425], [-635, 422], [-635, 413], [-634, 412], [-634, 405], [-629, 393], [-629, 389], [-623, 393], [-621, 398], [-620, 399], [-615, 399], [-614, 398], [-609, 398], [-609, 401], [-610, 402], [-610, 404], [-590, 404], [-590, 378], [-589, 377], [-589, 368], [-585, 356], [-585, 347], [-589, 343], [-589, 340], [-586, 337], [-585, 335], [-585, 327], [-583, 325], [-587, 321], [-589, 321], [-591, 317], [-594, 317], [-594, 318]]}, "center": {"88-110": [-620, 366], "111-258": [-601, 351]}}, -{"id": 655, "name": "Flag of Malta", "description": "Malta, officially the Republic of Malta, is an island country in the Mediterranean Sea.", "links": {"website": ["https://en.wikipedia.org/wiki/Malta", "https://en.wikipedia.org/wiki/Flag_of_Malta"], "subreddit": ["Malta"]}, "path": {"87-93": [[-528, 271], [-528, 279], [-501, 279], [-501, 271]], "95-258": [[-528, 271], [-528, 289], [-501, 289], [-501, 271]]}, "center": {"87-93": [-514, 275], "95-258": [-514, 280]}}, -{"id": 656, "name": "Moondye7", "description": "German Youtuber", "links": {"website": ["https://www.twitch.tv/moondye7", "https://www.youtube.com/channel/UCgKhWV2Wg2zzfF4pRcItdhw"], "subreddit": ["Moondye7"]}, "path": {"101-258": [[370, -369], [384, -369], [384, -346], [370, -346], [370, -369], [384, -369], [384, -346], [370, -346], [370, -369], [378, -367], [375, -364], [373, -367]]}, "center": {"101-258": [375, -366]}}, +{"id": 653, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"87-106": [[-868, 273], [-868, 284], [-773, 284], [-773, 273]], "107-127": [[-1001, 273], [-1001, 284], [-770, 284], [-770, 273]], "128-139": [[-1001, 273], [-1001, 284], [-878, 284], [-878, 288], [-835, 288], [-835, 321], [-770, 321], [-770, 273]], "140-158": [[-903, 273], [-903, 284], [-855, 284], [-855, 321], [-770, 321], [-770, 273]], "159-170": [[-918, 273], [-918, 321], [-770, 321], [-770, 273]], "171-258, T": [[-1112, 273], [-1112, 321], [-770, 321], [-770, 273]]}, "center": {"87-106": [-820, 279], "107-127": [-885, 279], "128-139": [-811, 297], "140-158": [-831, 297], "159-170": [-844, 297], "171-258, T": [-941, 297]}}, +{"id": 654, "name": "OMORI", "description": "OMORI is the titular deuteragonist in the game OMORI. OMORI can be controlled by the player during the night, where WHITE SPACE can be explored. When OMORI is in the lead, he can cut down obstacles with his knife.\n\nThis art, nicknamed \"Gunmori\", features OMORI holding an assault rifle with \"F[uck] Spez\" on it. This refers to Reddit CEO Steve Huffman (u/spez), and is a protest against Reddit's API changes that have killed many third-party Reddit apps.", "links": {"website": ["https://www.omori-game.com/", "https://store.steampowered.com/app/1150690/OMORI/", "https://en.wikipedia.org/wiki/Omori_(video_game)"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"88-110": [[-659, 328], [-659, 404], [-582, 404], [-582, 328]], "111-258, T": [[-603, 318], [-612, 325], [-613, 327], [-613, 335], [-611, 341], [-621, 341], [-621, 343], [-623, 345], [-626, 345], [-626, 338], [-628, 336], [-656, 336], [-658, 338], [-658, 342], [-669, 342], [-671, 344], [-671, 345], [-676, 345], [-676, 349], [-672, 353], [-643, 353], [-643, 354], [-639, 358], [-635, 360], [-624, 360], [-623, 361], [-619, 361], [-618, 362], [-611, 362], [-609, 363], [-609, 373], [-612, 376], [-623, 376], [-624, 377], [-639, 377], [-638, 425], [-637, 425], [-635, 422], [-635, 413], [-634, 412], [-634, 405], [-629, 393], [-629, 389], [-623, 393], [-621, 398], [-620, 399], [-615, 399], [-614, 398], [-609, 398], [-609, 401], [-610, 402], [-610, 404], [-590, 404], [-590, 378], [-589, 377], [-589, 368], [-585, 356], [-585, 347], [-589, 343], [-589, 340], [-586, 337], [-585, 335], [-585, 327], [-583, 325], [-587, 321], [-589, 321], [-591, 317], [-594, 317], [-594, 318]]}, "center": {"88-110": [-620, 366], "111-258, T": [-601, 351]}}, +{"id": 655, "name": "Flag of Malta", "description": "Malta, officially the Republic of Malta, is an island country in the Mediterranean Sea.", "links": {"website": ["https://en.wikipedia.org/wiki/Malta", "https://en.wikipedia.org/wiki/Flag_of_Malta"], "subreddit": ["Malta"]}, "path": {"87-93": [[-528, 271], [-528, 279], [-501, 279], [-501, 271]], "95-258, T": [[-528, 271], [-528, 289], [-501, 289], [-501, 271]]}, "center": {"87-93": [-514, 275], "95-258, T": [-514, 280]}}, +{"id": 656, "name": "Moondye7", "description": "German Youtuber", "links": {"website": ["https://www.twitch.tv/moondye7", "https://www.youtube.com/channel/UCgKhWV2Wg2zzfF4pRcItdhw"], "subreddit": ["Moondye7"]}, "path": {"101-258, T": [[370, -369], [384, -369], [384, -346], [370, -346], [370, -369], [384, -369], [384, -346], [370, -346], [370, -369], [378, -367], [375, -364], [373, -367]]}, "center": {"101-258, T": [375, -366]}}, {"id": 657, "name": "Simón Bolívar", "description": "Simón José Antonio de la Santísima Trinidad Bolívar Palacios Ponte y Blanco (July 24, 1783 – December 17, 1830) was a Venezuelan military and political leader who led what are currently the countries of Colombia, Venezuela, Ecuador, Peru, Panama, and Bolivia to independence from the Spanish Empire. He is known colloquially as El Libertador, or the Liberator of America.", "links": {"website": ["https://en.wikipedia.org/wiki/Sim%C3%B3n_Bol%C3%ADvar"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"101-124": [[376, 61], [379, 61], [379, 59], [379, 58], [379, 61], [382, 61], [382, 56], [383, 56], [383, 51], [384, 51], [388, 54], [389, 53], [386, 50], [386, 45], [385, 44], [385, 41], [386, 41], [386, 38], [381, 38], [382, 37], [383, 36], [383, 32], [381, 31], [378, 31], [377, 32], [376, 33], [376, 37], [377, 37], [378, 38], [373, 38], [373, 41], [374, 41], [374, 49], [374, 50], [376, 50]]}, "center": {"101-124": [380, 46]}}, -{"id": 659, "name": "\"Oshi no Ko\"", "description": "A manga written by Aka Akasaka and drawn by Mengo Yokoyari. In April 2023, the manga got adapted as an anime by Studio Doga Kobo. The artwork shows Ai Hoshino and her daughter Ruby Hoshino.", "links": {"subreddit": ["OshiNoKo"], "discord": ["2kBHE3ur5q"]}, "path": {"88-114": [[-734, -205], [-734, -140], [-671, -140], [-671, -161], [-671, -205]], "115-258": [[-671, -205], [-756, -205], [-756, -206], [-764, -206], [-764, -136], [-734, -136], [-734, -140], [-671, -140]]}, "center": {"88-114": [-702, -172], "115-258": [-718, -172]}}, -{"id": 660, "name": "German-Dutch Bike", "description": "This is an cooperation project too show that both countries are bike-friendly. The symbol resembles the German and Dutch cycle path signs.", "links": {"subreddit": ["placeDE", "placeNL"], "discord": ["placeDE", "placeNL"]}, "path": {"101-258": [[47, -466], [42, -466], [37, -464], [32, -459], [30, -454], [29, -447], [37, -437], [41, -436], [48, -435], [52, -436], [58, -441], [60, -446], [61, -452], [58, -459], [55, -463]]}, "center": {"101-258": [45, -451]}}, +{"id": 659, "name": "\"Oshi no Ko\"", "description": "A manga written by Aka Akasaka and drawn by Mengo Yokoyari. In April 2023, the manga got adapted as an anime by Studio Doga Kobo. The artwork shows Ai Hoshino and her daughter Ruby Hoshino.", "links": {"subreddit": ["OshiNoKo"], "discord": ["2kBHE3ur5q"]}, "path": {"88-114": [[-734, -205], [-734, -140], [-671, -140], [-671, -161], [-671, -205]], "115-258, T": [[-671, -205], [-756, -205], [-756, -206], [-764, -206], [-764, -136], [-734, -136], [-734, -140], [-671, -140]]}, "center": {"88-114": [-702, -172], "115-258, T": [-718, -172]}}, +{"id": 660, "name": "German-Dutch Bike", "description": "This is an cooperation project too show that both countries are bike-friendly. The symbol resembles the German and Dutch cycle path signs.", "links": {"subreddit": ["placeDE", "placeNL"], "discord": ["placeDE", "placeNL"]}, "path": {"101-258, T": [[47, -466], [42, -466], [37, -464], [32, -459], [30, -454], [29, -447], [37, -437], [41, -436], [48, -435], [52, -436], [58, -441], [60, -446], [61, -452], [58, -459], [55, -463]]}, "center": {"101-258, T": [45, -451]}}, {"id": 661, "name": "Twitch Streamer Milschbaum Logo", "description": "", "links": {"website": ["https://www.twitch.tv/milschbaum"], "subreddit": ["Milschbaum"]}, "path": {"92": [[-519, -339], [-508, -339], [-508, -323], [-519, -323]]}, "center": {"92": [-513, -331]}}, -{"id": 662, "name": "Piplup", "description": "Piplup representing the community for Streamer Lvcia", "links": {"website": ["https://twitch.tv/lvcia"]}, "path": {"101-258": [[229, -337], [241, -337], [240, -329], [243, -329], [238, -322], [235, -322], [235, -323], [229, -323], [226, -326], [226, -328], [229, -329]]}, "center": {"101-258": [235, -329]}}, +{"id": 662, "name": "Piplup", "description": "Piplup representing the community for Streamer Lvcia", "links": {"website": ["https://twitch.tv/lvcia"]}, "path": {"101-258, T": [[229, -337], [241, -337], [240, -329], [243, -329], [238, -322], [235, -322], [235, -323], [229, -323], [226, -326], [226, -328], [229, -329]]}, "center": {"101-258, T": [235, -329]}}, {"id": 663, "name": "hoppii", "description": "hoppii is a German streamer.", "links": {"website": ["https://www.twitch.tv/hoppii"]}, "path": {"9-19": [[471, 285], [499, 285], [499, 295], [471, 295]], "44-120": [[198, -233], [258, -233], [258, -223], [198, -223], [198, -227]]}, "center": {"9-19": [485, 290], "44-120": [228, -228]}}, -{"id": 664, "name": "Moondye7", "description": "Moondye7 is a german streamer.\nThe emote below the logo is md7H.", "links": {"website": ["https://www.twitch.tv/moondye7"], "subreddit": ["Moondye7"]}, "path": {"6-258": [[371, -368], [371, -347], [383, -347], [383, -368]]}, "center": {"6-258": [377, -357]}}, -{"id": 665, "name": "Jean Moulin", "description": "A leading figure in the French Resistance during the Second World War, Jean Moulin became France's youngest prefect in 1937. He opposed the German occupiers from 1940 and, under the aegis of General de Gaulle, created the \"Conseil National de la Résistance\" (General Council of Resistance). He was tortured by German officer Klaus Barbie while in Gestapo custody and died soonafter at Metz railway station", "links": {"website": ["https://en.wikipedia.org/wiki/Jean_Moulin"]}, "path": {"53-258": [[-501, -204], [-501, -242], [-475, -255], [-475, -259], [-481, -259], [-483, -289], [-494, -299], [-488, -311], [-471, -313], [-454, -339], [-433, -344], [-411, -337], [-401, -325], [-400, -303], [-406, -292], [-379, -271], [-368, -262], [-371, -205], [-446, -204], [-473, -204], [-486, -204], [-492, -204]]}, "center": {"53-258": [-429, -251]}}, -{"id": 666, "name": "Flag of Nepal", "description": "Nepal is a landlocked country in South Asia. It is mainly situated in the Himalayas, but also includes parts of the Indo-Gangetic Plain. It borders the Tibet Autonomous Region of China to the north, and India in the south, east, and west, while it is narrowly separated from Bangladesh by the Siliguri Corridor, and from Bhutan by the Indian state of Sikkim.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Nepal", "https://en.wikipedia.org/wiki/Nepal"], "subreddit": ["Nepal"], "discord": ["tDm28xJ2DN"]}, "path": {"89-258": [[811, 140], [834, 163], [824, 163], [835, 174], [835, 178], [811, 178]]}, "center": {"89-258": [819, 170]}}, +{"id": 664, "name": "Moondye7", "description": "Moondye7 is a german streamer.\nThe emote below the logo is md7H.", "links": {"website": ["https://www.twitch.tv/moondye7"], "subreddit": ["Moondye7"]}, "path": {"6-258, T": [[371, -368], [371, -347], [383, -347], [383, -368]]}, "center": {"6-258, T": [377, -357]}}, +{"id": 665, "name": "Jean Moulin", "description": "A leading figure in the French Resistance during the Second World War, Jean Moulin became France's youngest prefect in 1937. He opposed the German occupiers from 1940 and, under the aegis of General de Gaulle, created the \"Conseil National de la Résistance\" (General Council of Resistance). He was tortured by German officer Klaus Barbie while in Gestapo custody and died soonafter at Metz railway station", "links": {"website": ["https://en.wikipedia.org/wiki/Jean_Moulin"]}, "path": {"53-258, T": [[-501, -204], [-501, -242], [-475, -255], [-475, -259], [-481, -259], [-483, -289], [-494, -299], [-488, -311], [-471, -313], [-454, -339], [-433, -344], [-411, -337], [-401, -325], [-400, -303], [-406, -292], [-379, -271], [-368, -262], [-371, -205], [-446, -204], [-473, -204], [-486, -204], [-492, -204]]}, "center": {"53-258, T": [-429, -251]}}, +{"id": 666, "name": "Flag of Nepal", "description": "Nepal is a landlocked country in South Asia. It is mainly situated in the Himalayas, but also includes parts of the Indo-Gangetic Plain. It borders the Tibet Autonomous Region of China to the north, and India in the south, east, and west, while it is narrowly separated from Bangladesh by the Siliguri Corridor, and from Bhutan by the Indian state of Sikkim.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Nepal", "https://en.wikipedia.org/wiki/Nepal"], "subreddit": ["Nepal"], "discord": ["tDm28xJ2DN"]}, "path": {"89-258, T": [[811, 140], [834, 163], [824, 163], [835, 174], [835, 178], [811, 178]]}, "center": {"89-258, T": [819, 170]}}, {"id": 667, "name": "Coat of arms of Venezuela", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"81-126": [[489, 47], [490, 46], [492, 46], [492, 45], [494, 45], [495, 44], [497, 44], [497, 29], [481, 29], [481, 43]]}, "center": {"81-126": [489, 37]}}, -{"id": 668, "name": "OGCN Stripes", "description": "These are stripes representing the ogc Nice football club which evolve in the 1st French division in southern east of France", "links": {"website": ["https://www.ogcnice.com/", "https://fr.wikipedia.org/wiki/Olympique_Gymnaste_Club_de_Nice"], "subreddit": ["ogcnice"]}, "path": {"101-258": [[389, -345], [397, -345], [397, -352], [389, -352]]}, "center": {"101-258": [393, -348]}}, +{"id": 668, "name": "OGCN Stripes", "description": "These are stripes representing the ogc Nice football club which evolve in the 1st French division in southern east of France", "links": {"website": ["https://www.ogcnice.com/", "https://fr.wikipedia.org/wiki/Olympique_Gymnaste_Club_de_Nice"], "subreddit": ["ogcnice"]}, "path": {"101-258, T": [[389, -345], [397, -345], [397, -352], [389, -352]]}, "center": {"101-258, T": [393, -348]}}, {"id": 669, "name": "r/vzla", "description": "The official Venezuelan subreddit.", "links": {"subreddit": ["vzla"]}, "path": {"101-126": [[452, 51], [452, 42], [478, 42], [477, 51]]}, "center": {"101-126": [465, 47]}}, -{"id": 670, "name": "Green Dot", "description": "The Green Dot (German: Der Grüne Punkt) is a European symbol indicating that a manufacturer pays for the cost of recycling materials.", "links": {"website": ["https://en.wikipedia.org/wiki/Green_Dot_(symbol)"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"100-258": [[-446, -441], [-449, -439], [-453, -434], [-453, -426], [-446, -420], [-439, -420], [-435, -423], [-432, -427], [-432, -434], [-435, -438], [-439, -441]]}, "center": {"100-258": [-443, -431]}}, +{"id": 670, "name": "Green Dot", "description": "The Green Dot (German: Der Grüne Punkt) is a European symbol indicating that a manufacturer pays for the cost of recycling materials.", "links": {"website": ["https://en.wikipedia.org/wiki/Green_Dot_(symbol)"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"100-258, T": [[-446, -441], [-449, -439], [-453, -434], [-453, -426], [-446, -420], [-439, -420], [-435, -423], [-432, -427], [-432, -434], [-435, -438], [-439, -441]]}, "center": {"100-258, T": [-443, -431]}}, {"id": 671, "name": "ROSIN'S RESTAURANTS", "description": "German's Television Series", "links": {"website": ["https://de.wikipedia.org/wiki/Rosins_Restaurants"]}, "path": {"3-21": [[98, -333], [98, -302], [146, -302], [146, -303], [168, -303], [168, -333]], "22-37": [[99, -333], [99, -314], [167, -314], [167, -333]], "97-125": [[-753, -258], [-753, -248], [-753, -230], [-685, -230], [-685, -259], [-753, -259]]}, "center": {"3-21": [133, -317], "22-37": [133, -323], "97-125": [-719, -244]}}, -{"id": 672, "name": "Flag of Egypt.", "description": "Egypt is a country in Northern Africa with a population of 100 million. Said to be the second oldest country in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Egypt", "https://en.wikipedia.org/wiki/Flag_of_Egypt"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"188": [[-771, 322], [-771, 343], [-853, 343], [-884, 343], [-903, 343], [-903, 337], [-908, 337], [-910, 331], [-915, 331], [-919, 328], [-919, 322], [-865, 322], [-861, 318], [-858, 321], [-855, 321], [-854, 320], [-853, 321]], "189": [[-771, 322], [-771, 343], [-853, 343], [-884, 343], [-903, 343], [-908, 343], [-914, 338], [-921, 338], [-921, 336], [-929, 336], [-929, 322], [-864, 321], [-861, 318], [-858, 321], [-855, 321], [-854, 320], [-853, 321], [-849, 322]], "190": [[-771, 322], [-771, 343], [-853, 343], [-884, 343], [-903, 343], [-908, 343], [-914, 348], [-914, 356], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-854, 320], [-852, 322]], "191": [[-771, 322], [-771, 343], [-853, 343], [-884, 343], [-903, 343], [-904, 356], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-854, 320], [-852, 322]], "57-61": [[883, 123], [883, 141], [853, 141], [853, 123]], "62-65": [[883, 123], [883, 144], [868, 144], [868, 146], [841, 146], [840, 130], [851, 130], [851, 110], [883, 110]], "94-97": [[-841, 304], [-841, 285], [-867, 285], [-867, 304], [-867, 311], [-841, 311]], "98-101": [[-841, 304], [-841, 285], [-867, 285], [-867, 304], [-867, 311], [-867, 328], [-841, 328]], "102-105": [[-867, 285], [-822, 285], [-821, 327], [-867, 328]], "106-107": [[-829, 322], [-829, 329], [-867, 329], [-867, 322], [-867, 285], [-836, 285], [-835, 321]], "108-122": [[-829, 322], [-829, 330], [-1000, 331], [-1000, 285], [-836, 285], [-835, 321]], "123-135": [[-839, 330], [-915, 331], [-915, 323], [-908, 323], [-908, 305], [-913, 305], [-898, 285], [-836, 284], [-836, 318], [-845, 319], [-845, 324]], "136-145": [[-839, 330], [-915, 331], [-915, 323], [-908, 323], [-908, 305], [-913, 305], [-898, 285], [-855, 288], [-855, 321], [-847, 323]], "146-147": [[-936, 285], [-856, 285], [-855, 319], [-842, 321], [-843, 329], [-872, 330], [-889, 332], [-900, 332], [-900, 313], [-936, 312]], "150-151": [[-833, 322], [-833, 327], [-888, 332], [-887, 321], [-861, 320], [-853, 321]], "163-183": [[-771, 322], [-771, 343], [-853, 343], [-853, 330], [-868, 330], [-868, 331], [-882, 325], [-895, 329], [-900, 322], [-865, 322], [-861, 318], [-858, 321], [-855, 321], [-854, 320], [-853, 321]], "192-196": [[-771, 322], [-771, 343], [-853, 343], [-854, 343], [-854, 347], [-868, 347], [-868, 358], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-856, 322], [-854, 320], [-852, 322]], "197-198": [[-771, 322], [-771, 343], [-826, 344], [-811, 358], [-853, 358], [-853, 347], [-868, 347], [-868, 358], [-904, 358], [-904, 357], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-854, 320], [-852, 322]], "199-216": [[-771, 322], [-771, 343], [-826, 344], [-811, 358], [-853, 358], [-903, 358], [-905, 356], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-856, 322], [-854, 320], [-852, 322]], "217-228": [[-771, 322], [-771, 343], [-826, 344], [-811, 358], [-853, 358], [-903, 358], [-905, 356], [-905, 364], [-916, 364], [-916, 356], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-856, 322], [-854, 320], [-852, 322]], "152-153, 154-162": [[-771, 322], [-771, 327], [-841, 328], [-844, 329], [-870, 332], [-879, 324], [-878, 322], [-865, 322], [-861, 319], [-857, 322]], "184, 185-187": [[-771, 322], [-771, 343], [-853, 343], [-884, 343], [-871, 329], [-913, 329], [-913, 322], [-865, 322], [-861, 318], [-858, 321], [-855, 321], [-854, 320], [-853, 321]], "257-258": [[-771, 322], [-771, 343], [-826, 344], [-811, 358], [-853, 358], [-896, 357], [-897, 348], [-897, 343], [-898, 329], [-897, 322], [-866, 322], [-861, 318], [-858, 321], [-856, 322], [-854, 321], [-852, 322]], "229-258": [[-771, 322], [-771, 343], [-826, 344], [-811, 358], [-853, 358], [-903, 358], [-905, 356], [-905, 364], [-916, 364], [-929, 364], [-929, 322], [-865, 322], [-861, 318], [-858, 321], [-855, 321], [-854, 320], [-852, 322]]}, "center": {"188": [-846, 332], "189": [-860, 332], "190": [-917, 334], "191": [-915, 336], "57-61": [868, 132], "62-65": [867, 128], "94-97": [-854, 298], "98-101": [-854, 307], "102-105": [-844, 306], "106-107": [-851, 304], "108-122": [-977, 308], "123-135": [-875, 308], "136-145": [-880, 309], "146-147": [-878, 308], "150-151": [-877, 326], "163-183": [-839, 332], "192-196": [-884, 340], "197-198": [-898, 340], "199-216": [-897, 340], "217-228": [-861, 340], "152-153, 154-162": [-861, 326], "184, 185-187": [-846, 332], "257-258": [-861, 340], "229-258": [-859, 340]}}, -{"id": 673, "name": "Flag of Algeria", "description": "Algeria is a country in North Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Algeria", "https://en.wikipedia.org/wiki/Flag_of_Algeria"], "subreddit": ["algeria"], "discord": ["7AgJWv3r"]}, "path": {"153-165": [[-770, 328], [-770, 366], [-706, 366], [-706, 328]], "141-152": [[-770, 328], [-770, 386], [-706, 386], [-706, 328]], "104-140": [[-770, 328], [-770, 365], [-707, 364], [-707, 328]], "102-103": [[-770, 328], [-770, 355], [-707, 355], [-707, 328]], "166-258": [[-770, 328], [-770, 374], [-706, 374], [-706, 328]]}, "center": {"153-165": [-738, 347], "141-152": [-738, 357], "104-140": [-739, 346], "102-103": [-738, 342], "166-258": [-738, 351]}}, -{"id": 674, "name": "Guillotine", "description": "The guillotine is an execution tool invented by the French, used until the 1970s in France. It was notably used to execute King Louis XVI during the French Revolution in January 1793.\n\nUnder the guillotine is \"Spez\", referring to the CEO of Reddit, Steve Huffman (u/spez). This is symbol of protest against Reddit's recent pricing changes to its API, effectively killing many third-party apps. This guillotine was repeatedly removed from the canvas by Reddit admins because of its violent implications.", "links": {"website": ["https://en.wikipedia.org/wiki/Guillotine"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"27-41": [[-448, 302], [-448, 420], [-420, 420], [-420, 302]], "8-13": [[-454, -16], [-454, 340], [-461, 340], [-461, 348], [-454, 348], [-454, 414], [-416, 414], [-416, 348], [-410, 348], [-410, 340], [-416, 340], [-416, -368], [-454, -368]], "63-258": [[-438, 377], [-440, 379], [-440, 410], [-435, 413], [-433, 413], [-428, 410], [-428, 379], [-430, 377]]}, "center": {"27-41": [-434, 361], "8-13": [-435, 346], "63-258": [-434, 395]}}, -{"id": 675, "name": "TARDIS", "description": "The TARDIS (Time And Relative Dimension in Space) is an iconic element of the 1963 British television show Doctor Who, and is the personal vessel of the main protagonist, the Doctor. It is bigger on the inside than the outside, and capable of travelling (almost) anywhere in time and space. The TARDIS is disguised as a police box, an antiquated telephone booth used by police.", "links": {"website": ["https://en.wikipedia.org/wiki/TARDIS"], "subreddit": ["doctorwho", "TARDISplace"]}, "path": {"92-258": [[-519, 325], [-522, 329], [-521, 330], [-521, 349], [-522, 349], [-522, 352], [-504, 352], [-504, 349], [-505, 349], [-505, 331], [-504, 331], [-504, 329], [-506, 326], [-507, 325]]}, "center": {"92-258": [-513, 339]}}, -{"id": 676, "name": "Lesbian flag", "description": "A pride flag representing the lesbian community. Lesbian people are women attracted to other women.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"]}, "path": {"119-258, 91-112": [[-522, 351], [-522, 367], [-501, 367], [-501, 351]]}, "center": {"119-258, 91-112": [-511, 359]}}, +{"id": 672, "name": "Flag of Egypt.", "description": "Egypt is a country in Northern Africa with a population of 100 million. Said to be the second oldest country in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Egypt", "https://en.wikipedia.org/wiki/Flag_of_Egypt"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"188": [[-771, 322], [-771, 343], [-853, 343], [-884, 343], [-903, 343], [-903, 337], [-908, 337], [-910, 331], [-915, 331], [-919, 328], [-919, 322], [-865, 322], [-861, 318], [-858, 321], [-855, 321], [-854, 320], [-853, 321]], "189": [[-771, 322], [-771, 343], [-853, 343], [-884, 343], [-903, 343], [-908, 343], [-914, 338], [-921, 338], [-921, 336], [-929, 336], [-929, 322], [-864, 321], [-861, 318], [-858, 321], [-855, 321], [-854, 320], [-853, 321], [-849, 322]], "190": [[-771, 322], [-771, 343], [-853, 343], [-884, 343], [-903, 343], [-908, 343], [-914, 348], [-914, 356], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-854, 320], [-852, 322]], "191": [[-771, 322], [-771, 343], [-853, 343], [-884, 343], [-903, 343], [-904, 356], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-854, 320], [-852, 322]], "57-61": [[883, 123], [883, 141], [853, 141], [853, 123]], "62-65": [[883, 123], [883, 144], [868, 144], [868, 146], [841, 146], [840, 130], [851, 130], [851, 110], [883, 110]], "94-97": [[-841, 304], [-841, 285], [-867, 285], [-867, 304], [-867, 311], [-841, 311]], "98-101": [[-841, 304], [-841, 285], [-867, 285], [-867, 304], [-867, 311], [-867, 328], [-841, 328]], "102-105": [[-867, 285], [-822, 285], [-821, 327], [-867, 328]], "106-107": [[-829, 322], [-829, 329], [-867, 329], [-867, 322], [-867, 285], [-836, 285], [-835, 321]], "108-122": [[-829, 322], [-829, 330], [-1000, 331], [-1000, 285], [-836, 285], [-835, 321]], "123-135": [[-839, 330], [-915, 331], [-915, 323], [-908, 323], [-908, 305], [-913, 305], [-898, 285], [-836, 284], [-836, 318], [-845, 319], [-845, 324]], "136-145": [[-839, 330], [-915, 331], [-915, 323], [-908, 323], [-908, 305], [-913, 305], [-898, 285], [-855, 288], [-855, 321], [-847, 323]], "146-147": [[-936, 285], [-856, 285], [-855, 319], [-842, 321], [-843, 329], [-872, 330], [-889, 332], [-900, 332], [-900, 313], [-936, 312]], "150-151": [[-833, 322], [-833, 327], [-888, 332], [-887, 321], [-861, 320], [-853, 321]], "163-183": [[-771, 322], [-771, 343], [-853, 343], [-853, 330], [-868, 330], [-868, 331], [-882, 325], [-895, 329], [-900, 322], [-865, 322], [-861, 318], [-858, 321], [-855, 321], [-854, 320], [-853, 321]], "192-196": [[-771, 322], [-771, 343], [-853, 343], [-854, 343], [-854, 347], [-868, 347], [-868, 358], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-856, 322], [-854, 320], [-852, 322]], "197-198": [[-771, 322], [-771, 343], [-826, 344], [-811, 358], [-853, 358], [-853, 347], [-868, 347], [-868, 358], [-904, 358], [-904, 357], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-854, 320], [-852, 322]], "199-216": [[-771, 322], [-771, 343], [-826, 344], [-811, 358], [-853, 358], [-903, 358], [-905, 356], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-856, 322], [-854, 320], [-852, 322]], "217-228": [[-771, 322], [-771, 343], [-826, 344], [-811, 358], [-853, 358], [-903, 358], [-905, 356], [-905, 364], [-916, 364], [-916, 356], [-929, 356], [-929, 322], [-865, 322], [-861, 318], [-857, 322], [-856, 322], [-854, 320], [-852, 322]], "152-153, 154-162": [[-771, 322], [-771, 327], [-841, 328], [-844, 329], [-870, 332], [-879, 324], [-878, 322], [-865, 322], [-861, 319], [-857, 322]], "184, 185-187": [[-771, 322], [-771, 343], [-853, 343], [-884, 343], [-871, 329], [-913, 329], [-913, 322], [-865, 322], [-861, 318], [-858, 321], [-855, 321], [-854, 320], [-853, 321]], "257-258": [[-771, 322], [-771, 343], [-826, 344], [-811, 358], [-853, 358], [-896, 357], [-897, 348], [-897, 343], [-898, 329], [-897, 322], [-866, 322], [-861, 318], [-858, 321], [-856, 322], [-854, 321], [-852, 322]], "229-258, T": [[-771, 322], [-771, 343], [-826, 344], [-811, 358], [-853, 358], [-903, 358], [-905, 356], [-905, 364], [-916, 364], [-929, 364], [-929, 322], [-865, 322], [-861, 318], [-858, 321], [-855, 321], [-854, 320], [-852, 322]]}, "center": {"188": [-846, 332], "189": [-860, 332], "190": [-917, 334], "191": [-915, 336], "57-61": [868, 132], "62-65": [867, 128], "94-97": [-854, 298], "98-101": [-854, 307], "102-105": [-844, 306], "106-107": [-851, 304], "108-122": [-977, 308], "123-135": [-875, 308], "136-145": [-880, 309], "146-147": [-878, 308], "150-151": [-877, 326], "163-183": [-839, 332], "192-196": [-884, 340], "197-198": [-898, 340], "199-216": [-897, 340], "217-228": [-861, 340], "152-153, 154-162": [-861, 326], "184, 185-187": [-846, 332], "257-258": [-861, 340], "229-258, T": [-859, 340]}}, +{"id": 673, "name": "Flag of Algeria", "description": "Algeria is a country in North Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Algeria", "https://en.wikipedia.org/wiki/Flag_of_Algeria"], "subreddit": ["algeria"], "discord": ["7AgJWv3r"]}, "path": {"153-165": [[-770, 328], [-770, 366], [-706, 366], [-706, 328]], "141-152": [[-770, 328], [-770, 386], [-706, 386], [-706, 328]], "104-140": [[-770, 328], [-770, 365], [-707, 364], [-707, 328]], "102-103": [[-770, 328], [-770, 355], [-707, 355], [-707, 328]], "166-258, T": [[-770, 328], [-770, 374], [-706, 374], [-706, 328]]}, "center": {"153-165": [-738, 347], "141-152": [-738, 357], "104-140": [-739, 346], "102-103": [-738, 342], "166-258, T": [-738, 351]}}, +{"id": 674, "name": "Guillotine", "description": "The guillotine is an execution tool invented by the French, used until the 1970s in France. It was notably used to execute King Louis XVI during the French Revolution in January 1793.\n\nUnder the guillotine is \"Spez\", referring to the CEO of Reddit, Steve Huffman (u/spez). This is symbol of protest against Reddit's recent pricing changes to its API, effectively killing many third-party apps. This guillotine was repeatedly removed from the canvas by Reddit admins because of its violent implications.", "links": {"website": ["https://en.wikipedia.org/wiki/Guillotine"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"27-41": [[-448, 302], [-448, 420], [-420, 420], [-420, 302]], "8-13": [[-454, -16], [-454, 340], [-461, 340], [-461, 348], [-454, 348], [-454, 414], [-416, 414], [-416, 348], [-410, 348], [-410, 340], [-416, 340], [-416, -368], [-454, -368]], "63-258, T": [[-438, 377], [-440, 379], [-440, 410], [-435, 413], [-433, 413], [-428, 410], [-428, 379], [-430, 377]]}, "center": {"27-41": [-434, 361], "8-13": [-435, 346], "63-258, T": [-434, 395]}}, +{"id": 675, "name": "TARDIS", "description": "The TARDIS (Time And Relative Dimension in Space) is an iconic element of the 1963 British television show Doctor Who, and is the personal vessel of the main protagonist, the Doctor. It is bigger on the inside than the outside, and capable of travelling (almost) anywhere in time and space. The TARDIS is disguised as a police box, an antiquated telephone booth used by police.", "links": {"website": ["https://en.wikipedia.org/wiki/TARDIS"], "subreddit": ["doctorwho", "TARDISplace"]}, "path": {"92-258, T": [[-519, 325], [-522, 329], [-521, 330], [-521, 349], [-522, 349], [-522, 352], [-504, 352], [-504, 349], [-505, 349], [-505, 331], [-504, 331], [-504, 329], [-506, 326], [-507, 325]]}, "center": {"92-258, T": [-513, 339]}}, +{"id": 676, "name": "Lesbian flag", "description": "A pride flag representing the lesbian community. Lesbian people are women attracted to other women.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"]}, "path": {"119-258, 91-112, T": [[-522, 351], [-522, 367], [-501, 367], [-501, 351]]}, "center": {"119-258, 91-112, T": [-511, 359]}}, {"id": 677, "name": "Black Bauhinia flag", "description": "The Black Bauhinia flag is a variant on the flag of the Chinese city of Hong Kong, with both flags featuring a white Hong Kong orchid tree flower (bauhinia × blakeana). The represents the 2019-2020 Hong Kong Protests against the government and the Communist Party of China following a controversial extradition bill proposal. Protestors demanded a higher degree of democracy in the region, and were met by violent crackdowns and mass arrests. The yellow umbrella is in reference to the 2014 Umbrella Revolution, a series of earlier protests demanding the right to elect the leader of Hong Kong democratically.", "links": {"website": ["https://en.wikipedia.org/wiki/Black_Bauhinia_flag"], "subreddit": ["HongKong"]}, "path": {"88-105": [[-721, 73], [-721, 100], [-694, 100], [-694, 73]]}, "center": {"88-105": [-707, 87]}}, -{"id": 678, "name": "Lemon Demon", "description": "Lemon Demon is an American one-man band comprised of musician Neil Cicierega.", "links": {"website": ["https://en.wikipedia.org/wiki/Lemon_Demon"], "subreddit": ["lemondemon"], "discord": ["jZjmeq86tV"]}, "path": {"88-258": [[-869, 149], [-869, 179], [-835, 179], [-835, 149]]}, "center": {"88-258": [-852, 164]}}, -{"id": 679, "name": "Hatsune Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.", "links": {"website": ["https://ec.crypton.co.jp/pages/prod/virtualsinger/cv01_us", "https://en.wikipedia.org/wiki/Hatsune_Miku"], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"87-258": [[-697, 136], [-710, 165], [-710, 170], [-705, 170], [-705, 167], [-697, 158], [-697, 163], [-698, 164], [-698, 168], [-687, 174], [-684, 170], [-680, 175], [-673, 168], [-674, 162], [-671, 160], [-666, 160], [-667, 151], [-668, 150], [-668, 141], [-672, 138], [-675, 138], [-677, 135], [-686, 135], [-687, 136]]}, "center": {"87-258": [-683, 150]}}, -{"id": 680, "name": "Team Fortress 2", "description": "The 2007 Valve game including the logo, the nine playable classes, a halo above soldier as a memorial to late voice actor Rick May, a jarate and spycrab along with the logo of mann.co, the fictional company that hires the mercenaries in the lore. initially at the beginning of the canvas tf2 settled near the german flag to the top of the map, however it was quickly destroyed by the massive french flag. after that r/tf2 allied with my little pony and placed their logo next to rainbow dash, however this would prove to be risky as the mlp community was a magnet for twitch streamer griefing, and the tf2 logo next to rainbow dash was wiped twice by the streamer mizkif before r/tf2 abandoned it to claim their current spot in this area, where it was then destroyed by art of perry the platypus at one point the art was griefed by a streamer pretending to be the colombia flag, after the raid there was some minor confusion between the omori community and tf2 as omori briefly attempted to expand upward before stopping and letting tf2 regain the territory, over time the art changed a lot, the various characters changed teams every so often, the mann co logo got more shading as time went on and the demoman's eye changed to a \"monoculus and back again many times", "links": {"subreddit": ["tf2"], "discord": ["VcBgjukVy7"]}, "path": {"90-258": [[-613, 290], [-613, 316], [-559, 316], [-559, 294], [-571, 294], [-571, 290]]}, "center": {"90-258": [-586, 303]}}, -{"id": 681, "name": "DDNet", "description": "DDraceNetwork (DDNet) is an actively maintained version of DDRace, a mod of the game Teeworlds with a unique cooperative gameplay.", "links": {"website": ["https://ddnet.org/", "https://store.steampowered.com/app/412220/DDraceNetwork/"], "subreddit": ["ddnet"]}, "path": {"55-67": [[202, -97], [202, -78], [276, -78], [276, -97]], "47-54": [[202, -97], [253, -97], [253, -78], [202, -78]], "89-258": [[-575, -190], [-575, -172], [-501, -172], [-501, -190]]}, "center": {"55-67": [239, -87], "47-54": [228, -87], "89-258": [-538, -181]}}, +{"id": 678, "name": "Lemon Demon", "description": "Lemon Demon is an American one-man band comprised of musician Neil Cicierega.", "links": {"website": ["https://en.wikipedia.org/wiki/Lemon_Demon"], "subreddit": ["lemondemon"], "discord": ["jZjmeq86tV"]}, "path": {"88-258, T": [[-869, 149], [-869, 179], [-835, 179], [-835, 149]]}, "center": {"88-258, T": [-852, 164]}}, +{"id": 679, "name": "Hatsune Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.", "links": {"website": ["https://ec.crypton.co.jp/pages/prod/virtualsinger/cv01_us", "https://en.wikipedia.org/wiki/Hatsune_Miku"], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"87-258, T": [[-697, 136], [-710, 165], [-710, 170], [-705, 170], [-705, 167], [-697, 158], [-697, 163], [-698, 164], [-698, 168], [-687, 174], [-684, 170], [-680, 175], [-673, 168], [-674, 162], [-671, 160], [-666, 160], [-667, 151], [-668, 150], [-668, 141], [-672, 138], [-675, 138], [-677, 135], [-686, 135], [-687, 136]]}, "center": {"87-258, T": [-683, 150]}}, +{"id": 680, "name": "Team Fortress 2", "description": "The 2007 Valve game including the logo, the nine playable classes, a halo above soldier as a memorial to late voice actor Rick May, a jarate and spycrab along with the logo of mann.co, the fictional company that hires the mercenaries in the lore. initially at the beginning of the canvas tf2 settled near the german flag to the top of the map, however it was quickly destroyed by the massive french flag. after that r/tf2 allied with my little pony and placed their logo next to rainbow dash, however this would prove to be risky as the mlp community was a magnet for twitch streamer griefing, and the tf2 logo next to rainbow dash was wiped twice by the streamer mizkif before r/tf2 abandoned it to claim their current spot in this area, where it was then destroyed by art of perry the platypus at one point the art was griefed by a streamer pretending to be the colombia flag, after the raid there was some minor confusion between the omori community and tf2 as omori briefly attempted to expand upward before stopping and letting tf2 regain the territory, over time the art changed a lot, the various characters changed teams every so often, the mann co logo got more shading as time went on and the demoman's eye changed to a \"monoculus and back again many times", "links": {"subreddit": ["tf2"], "discord": ["VcBgjukVy7"]}, "path": {"90-258, T": [[-613, 290], [-613, 316], [-559, 316], [-559, 294], [-571, 294], [-571, 290]]}, "center": {"90-258, T": [-586, 303]}}, +{"id": 681, "name": "DDNet", "description": "DDraceNetwork (DDNet) is an actively maintained version of DDRace, a mod of the game Teeworlds with a unique cooperative gameplay.", "links": {"website": ["https://ddnet.org/", "https://store.steampowered.com/app/412220/DDraceNetwork/"], "subreddit": ["ddnet"]}, "path": {"55-67": [[202, -97], [202, -78], [276, -78], [276, -97]], "47-54": [[202, -97], [253, -97], [253, -78], [202, -78]], "89-258, T": [[-575, -190], [-575, -172], [-501, -172], [-501, -190]]}, "center": {"55-67": [239, -87], "47-54": [228, -87], "89-258, T": [-538, -181]}}, {"id": 682, "name": "Flag of Riskia", "description": "Risk Universalis is a Roblox Alternate History game where you can roleplay as a Nation.", "links": {"website": ["https://www.roblox.com/games/3056320177/Risk-Universalis", "https://www.roblox.com/groups/2568175/Risk-Universalis-Conquest-RP#!/about"], "subreddit": ["ru3"], "discord": ["ru3"]}, "path": {"103": [[-798, 336], [-770, 336], [-770, 354], [-798, 354]]}, "center": {"103": [-784, 345]}}, -{"id": 683, "name": "Vincent van Gogh", "description": "Vincent van Gogh was a Dutch painter in the 19th century. His artistic style was influential in the development of modern art, and his paintings are now among the most expensive paintings ever sold. Despite this, his paintings were unpopular during his lifetime, and only began to achieve notoriety after his death.", "links": {"website": ["https://en.wikipedia.org/wiki/Vincent_van_Gogh"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"102-258": [[-624, -501], [-624, -450], [-581, -450], [-581, -501]]}, "center": {"102-258": [-602, -475]}}, -{"id": 684, "name": "Simsala Grimm", "description": "Simsala Grimm is a German animated TV series. This art features the main characters, Yoyo and Doc Croc.", "links": {"website": ["https://en.wikipedia.org/wiki/Simsala_Grimm"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"7-258": [[136, -450], [132, -445], [132, -441], [130, -438], [130, -437], [135, -437], [135, -432], [130, -428], [129, -426], [132, -423], [132, -420], [131, -419], [131, -418], [133, -415], [133, -411], [131, -407], [124, -397], [124, -396], [128, -392], [131, -392], [134, -390], [135, -390], [138, -393], [141, -393], [142, -394], [152, -394], [157, -391], [161, -391], [163, -393], [163, -394], [158, -398], [159, -401], [164, -403], [167, -406], [167, -411], [164, -414], [164, -416], [166, -419], [169, -419], [169, -420], [167, -422], [167, -428], [163, -429], [156, -433], [156, -435], [156, -437], [152, -441], [149, -441], [149, -445], [146, -445], [140, -450]]}, "center": {"7-258": [148, -413]}}, -{"id": 685, "name": "Pombär", "description": "Pom-Bear is a teddy bear shaped potato chip.", "links": {"website": ["https://en.wikipedia.org/wiki/Pom-Bear"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"11-258": [[106, -436], [106, -431], [105, -430], [105, -420], [99, -415], [99, -411], [103, -407], [103, -399], [102, -398], [102, -395], [105, -391], [110, -391], [114, -400], [116, -393], [121, -393], [124, -395], [124, -399], [122, -399], [120, -405], [120, -407], [121, -411], [122, -411], [128, -417], [129, -417], [131, -419], [131, -424], [127, -424], [127, -426], [125, -428], [123, -426], [121, -426], [120, -427], [120, -432], [117, -436]]}, "center": {"11-258": [111, -412]}}, -{"id": 686, "name": "Arc de Triomphe", "description": "The Arc de Triomphe is a famous arch in Paris, France.", "links": {"website": ["https://en.wikipedia.org/wiki/Arc_de_Triomphe"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"53-258": [[-478, 105], [-478, 111], [-480, 113], [-480, 119], [-476, 123], [-476, 145], [-477, 145], [-477, 150], [-476, 150], [-476, 184], [-447, 184], [-447, 177], [-448, 177], [-448, 168], [-443, 164], [-440, 149], [-440, 145], [-441, 145], [-447, 154], [-448, 154], [-448, 150], [-447, 150], [-447, 146], [-448, 145], [-448, 144], [-445, 139], [-441, 137], [-431, 137], [-427, 139], [-425, 142], [-425, 150], [-424, 150], [-424, 178], [-426, 178], [-426, 184], [-394, 184], [-394, 177], [-396, 177], [-396, 150], [-395, 150], [-395, 145], [-396, 145], [-396, 131], [-394, 128], [-394, 121], [-392, 117], [-392, 112], [-394, 108], [-394, 105]]}, "center": {"53-258": [-414, 124]}}, -{"id": 687, "name": "Netherlands", "description": "The Netherlands as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"102-258": [[-432, -492], [-438, -488], [-438, -484], [-439, -484], [-439, -479], [-441, -473], [-444, -470], [-444, -468], [-452, -468], [-452, -467], [-449, -460], [-448, -459], [-443, -459], [-443, -458], [-434, -458], [-434, -457], [-430, -457], [-430, -451], [-425, -451], [-425, -456], [-422, -460], [-425, -466], [-422, -466], [-418, -468], [-418, -470], [-416, -474], [-416, -482], [-415, -483], [-415, -487], [-419, -492], [-423, -492], [-423, -493], [-427, -493], [-427, -492]]}, "center": {"102-258": [-427, -478]}}, -{"id": 688, "name": "William the Silent of Orange", "description": "William the Silent of Orange or William the Taciturn (24 April 1533 - 10 July 1584), known in Dutch as Willem van Oranje or Willem de Zwijger, was a leader of the Dutch Revolt against the Spanish Habsburgs that set off the Eighty Years' War (1568-1648). In 1581, as part of the war, the Dutch rebels gained independence and formed the United Provinces, precursor state to the Netherlands. Because of this, he is nicknamed \"Father of the Fatherland\" in the Netherlands.\n\nThe salute is based on an emote in the PlaceNL Discord server, which in turn was an edit of the William the Silent of Orange art on the 2022 canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/William_the_Silent"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"96-258": [[-351, -501], [-356, -495], [-356, -485], [-357, -485], [-357, -478], [-355, -475], [-349, -470], [-343, -468], [-337, -468], [-332, -471], [-332, -481], [-333, -481], [-333, -484], [-326, -484], [-326, -488], [-329, -492], [-336, -498], [-339, -498], [-342, -501]]}, "center": {"96-258": [-344, -487]}}, -{"id": 689, "name": "Klompen", "description": "A klomp (plural \"klompen\") is a wooden shoe (clog) common in the Netherlands. They are traditionally worn by farmers at work, and are also used for a type of dance known as Klompendansen (English: clog dancing).", "links": {"website": ["https://en.wikipedia.org/wiki/Klomp"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"64-258": [[356, -474], [354, -472], [354, -470], [355, -469], [355, -460], [359, -456], [362, -456], [368, -452], [371, -452], [376, -456], [376, -460], [377, -461], [377, -465], [375, -467], [370, -467], [368, -469], [364, -469], [367, -472], [363, -476], [361, -476], [359, -474]]}, "center": {"64-258": [369, -460]}}, -{"id": 690, "name": "German Emergency Services", "description": "In Germany, a significant part of the emergency services, including the ambulance, fire department, and the Federal Agency for Technical Relief (THW), rely on volunteers. These dedicated individuals play a vital role in providing essential assistance during emergencies and crises. Their selfless commitment is crucial in ensuring the safety and well-being of the community.", "links": {"website": ["https://thw.de", "https://en.wikipedia.org/wiki/Technisches_Hilfswerk", "https://en.wikipedia.org/wiki/German_Fire_Services", "https://helfenkannjeder.de/", "https://www.dlrg.de/"], "subreddit": ["feuerwehr", "blaulicht", "technischeshilfswerk"]}, "path": {"104-212": [[911, -430], [1000, -431], [999, -389], [853, -391], [853, -430]], "213-258": [[911, -430], [1000, -431], [1017, -436], [1036, -436], [1048, -431], [1053, -449], [1058, -447], [1060, -431], [1069, -432], [1081, -422], [1071, -415], [1066, -417], [1058, -413], [1031, -413], [1020, -418], [1012, -429], [1006, -428], [1000, -422], [998, -391], [856, -391], [854, -395], [855, -399], [862, -404], [865, -410], [889, -410], [895, -413], [897, -424]]}, "center": {"104-212": [958, -410], "213-258": [979, -411]}}, +{"id": 683, "name": "Vincent van Gogh", "description": "Vincent van Gogh was a Dutch painter in the 19th century. His artistic style was influential in the development of modern art, and his paintings are now among the most expensive paintings ever sold. Despite this, his paintings were unpopular during his lifetime, and only began to achieve notoriety after his death.", "links": {"website": ["https://en.wikipedia.org/wiki/Vincent_van_Gogh"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"102-258, T": [[-624, -501], [-624, -450], [-581, -450], [-581, -501]]}, "center": {"102-258, T": [-602, -475]}}, +{"id": 684, "name": "Simsala Grimm", "description": "Simsala Grimm is a German animated TV series. This art features the main characters, Yoyo and Doc Croc.", "links": {"website": ["https://en.wikipedia.org/wiki/Simsala_Grimm"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"7-258, T": [[136, -450], [132, -445], [132, -441], [130, -438], [130, -437], [135, -437], [135, -432], [130, -428], [129, -426], [132, -423], [132, -420], [131, -419], [131, -418], [133, -415], [133, -411], [131, -407], [124, -397], [124, -396], [128, -392], [131, -392], [134, -390], [135, -390], [138, -393], [141, -393], [142, -394], [152, -394], [157, -391], [161, -391], [163, -393], [163, -394], [158, -398], [159, -401], [164, -403], [167, -406], [167, -411], [164, -414], [164, -416], [166, -419], [169, -419], [169, -420], [167, -422], [167, -428], [163, -429], [156, -433], [156, -435], [156, -437], [152, -441], [149, -441], [149, -445], [146, -445], [140, -450]]}, "center": {"7-258, T": [148, -413]}}, +{"id": 685, "name": "Pombär", "description": "Pom-Bear is a teddy bear shaped potato chip.", "links": {"website": ["https://en.wikipedia.org/wiki/Pom-Bear"], "subreddit": ["placeDE", "de"], "discord": ["placeDE"]}, "path": {"11-258, T": [[106, -436], [106, -431], [105, -430], [105, -420], [99, -415], [99, -411], [103, -407], [103, -399], [102, -398], [102, -395], [105, -391], [110, -391], [114, -400], [116, -393], [121, -393], [124, -395], [124, -399], [122, -399], [120, -405], [120, -407], [121, -411], [122, -411], [128, -417], [129, -417], [131, -419], [131, -424], [127, -424], [127, -426], [125, -428], [123, -426], [121, -426], [120, -427], [120, -432], [117, -436]]}, "center": {"11-258, T": [111, -412]}}, +{"id": 686, "name": "Arc de Triomphe", "description": "The Arc de Triomphe is a famous arch in Paris, France.", "links": {"website": ["https://en.wikipedia.org/wiki/Arc_de_Triomphe"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"53-258, T": [[-478, 105], [-478, 111], [-480, 113], [-480, 119], [-476, 123], [-476, 145], [-477, 145], [-477, 150], [-476, 150], [-476, 184], [-447, 184], [-447, 177], [-448, 177], [-448, 168], [-443, 164], [-440, 149], [-440, 145], [-441, 145], [-447, 154], [-448, 154], [-448, 150], [-447, 150], [-447, 146], [-448, 145], [-448, 144], [-445, 139], [-441, 137], [-431, 137], [-427, 139], [-425, 142], [-425, 150], [-424, 150], [-424, 178], [-426, 178], [-426, 184], [-394, 184], [-394, 177], [-396, 177], [-396, 150], [-395, 150], [-395, 145], [-396, 145], [-396, 131], [-394, 128], [-394, 121], [-392, 117], [-392, 112], [-394, 108], [-394, 105]]}, "center": {"53-258, T": [-414, 124]}}, +{"id": 687, "name": "Netherlands", "description": "The Netherlands as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"102-258, T": [[-432, -492], [-438, -488], [-438, -484], [-439, -484], [-439, -479], [-441, -473], [-444, -470], [-444, -468], [-452, -468], [-452, -467], [-449, -460], [-448, -459], [-443, -459], [-443, -458], [-434, -458], [-434, -457], [-430, -457], [-430, -451], [-425, -451], [-425, -456], [-422, -460], [-425, -466], [-422, -466], [-418, -468], [-418, -470], [-416, -474], [-416, -482], [-415, -483], [-415, -487], [-419, -492], [-423, -492], [-423, -493], [-427, -493], [-427, -492]]}, "center": {"102-258, T": [-427, -478]}}, +{"id": 688, "name": "William the Silent of Orange", "description": "William the Silent of Orange or William the Taciturn (24 April 1533 - 10 July 1584), known in Dutch as Willem van Oranje or Willem de Zwijger, was a leader of the Dutch Revolt against the Spanish Habsburgs that set off the Eighty Years' War (1568-1648). In 1581, as part of the war, the Dutch rebels gained independence and formed the United Provinces, precursor state to the Netherlands. Because of this, he is nicknamed \"Father of the Fatherland\" in the Netherlands.\n\nThe salute is based on an emote in the PlaceNL Discord server, which in turn was an edit of the William the Silent of Orange art on the 2022 canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/William_the_Silent"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"96-258, T": [[-351, -501], [-356, -495], [-356, -485], [-357, -485], [-357, -478], [-355, -475], [-349, -470], [-343, -468], [-337, -468], [-332, -471], [-332, -481], [-333, -481], [-333, -484], [-326, -484], [-326, -488], [-329, -492], [-336, -498], [-339, -498], [-342, -501]]}, "center": {"96-258, T": [-344, -487]}}, +{"id": 689, "name": "Klompen", "description": "A klomp (plural \"klompen\") is a wooden shoe (clog) common in the Netherlands. They are traditionally worn by farmers at work, and are also used for a type of dance known as Klompendansen (English: clog dancing).", "links": {"website": ["https://en.wikipedia.org/wiki/Klomp"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"64-258, T": [[356, -474], [354, -472], [354, -470], [355, -469], [355, -460], [359, -456], [362, -456], [368, -452], [371, -452], [376, -456], [376, -460], [377, -461], [377, -465], [375, -467], [370, -467], [368, -469], [364, -469], [367, -472], [363, -476], [361, -476], [359, -474]]}, "center": {"64-258, T": [369, -460]}}, +{"id": 690, "name": "German Emergency Services", "description": "In Germany, a significant part of the emergency services, including the ambulance, fire department, and the Federal Agency for Technical Relief (THW), rely on volunteers. These dedicated individuals play a vital role in providing essential assistance during emergencies and crises. Their selfless commitment is crucial in ensuring the safety and well-being of the community.", "links": {"website": ["https://thw.de", "https://en.wikipedia.org/wiki/Technisches_Hilfswerk", "https://en.wikipedia.org/wiki/German_Fire_Services", "https://helfenkannjeder.de/", "https://www.dlrg.de/"], "subreddit": ["feuerwehr", "blaulicht", "technischeshilfswerk"]}, "path": {"104-212": [[911, -430], [1000, -431], [999, -389], [853, -391], [853, -430]], "213-258, T": [[911, -430], [1000, -431], [1017, -436], [1036, -436], [1048, -431], [1053, -449], [1058, -447], [1060, -431], [1069, -432], [1081, -422], [1071, -415], [1066, -417], [1058, -413], [1031, -413], [1020, -418], [1012, -429], [1006, -428], [1000, -422], [998, -391], [856, -391], [854, -395], [855, -399], [862, -404], [865, -410], [889, -410], [895, -413], [897, -424]]}, "center": {"104-212": [958, -410], "213-258, T": [979, -411]}}, {"id": 691, "name": "AOTY Logo", "description": "AOTY (albumoftheyear.org) is music website featuring album reviews, ratings, charts, year end lists and more.", "links": {"website": ["https://www.albumoftheyear.org"], "discord": ["kPXwGnCFXJ"]}, "path": {"61": [[725, -134], [744, -134], [744, -129], [725, -129]]}, "center": {"61": [735, -131]}}, -{"id": 692, "name": "Concorde", "description": "The Aérospatiale/BAC Concorde is a retired Franco-British supersonic airliner jointly developed and manufactured by Sud Aviation (later Aérospatiale) and the British Aircraft Corporation (BAC). It was first flown on March 2, 1969 and retired on November 26, 2003.", "links": {"website": ["https://en.wikipedia.org/wiki/Concorde"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"98-111": [[939, 128], [937, 130], [940, 137], [949, 146], [949, 152], [956, 187], [958, 189], [963, 185], [964, 184], [973, 192], [976, 192], [976, 187], [972, 183], [972, 179], [977, 174], [978, 174], [987, 179], [990, 179], [990, 174], [985, 170], [985, 169], [988, 165], [997, 170], [999, 170], [999, 167], [993, 160], [993, 158], [998, 153], [998, 151], [994, 148], [969, 145], [956, 141], [946, 131], [940, 128]], "122-258": [[890, -89], [890, -86], [893, -80], [900, -73], [900, -68], [908, -30], [910, -29], [915, -34], [917, -34], [928, -45], [929, -45], [935, -40], [936, -41], [942, -41], [942, -43], [936, -49], [936, -53], [949, -66], [949, -70], [939, -71], [921, -74], [907, -78], [898, -87], [894, -89]]}, "center": {"98-111": [967, 161], "122-258": [918, -58]}}, -{"id": 693, "name": "Hela Curry Gewürz", "description": "Hela Curry Gewürz is a German curry ketchup from the brand Hela. You can't have a barbecue in Germany without having Hela spiced ketchup on the table. It can be eaten with anything and tastes good to a lot of people in Germany. It's partly a meme but still true.\n\nr/place is not responsible for the lettering that keeps coming up which represents the brand, but the masses have decided so. A vote on the r/placeDE discord has rejected the writing.", "links": {"subreddit": ["hela_gewuerzketchup", "placeDE", "ich_iel", "de"], "discord": ["placeDE"]}, "path": {"11-258": [[295, -441], [289, -441], [289, -436], [287, -435], [287, -394], [288, -392], [296, -392], [297, -394], [297, -434], [295, -436]]}, "center": {"11-258": [292, -416]}}, +{"id": 692, "name": "Concorde", "description": "The Aérospatiale/BAC Concorde is a retired Franco-British supersonic airliner jointly developed and manufactured by Sud Aviation (later Aérospatiale) and the British Aircraft Corporation (BAC). It was first flown on March 2, 1969 and retired on November 26, 2003.", "links": {"website": ["https://en.wikipedia.org/wiki/Concorde"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"98-111": [[939, 128], [937, 130], [940, 137], [949, 146], [949, 152], [956, 187], [958, 189], [963, 185], [964, 184], [973, 192], [976, 192], [976, 187], [972, 183], [972, 179], [977, 174], [978, 174], [987, 179], [990, 179], [990, 174], [985, 170], [985, 169], [988, 165], [997, 170], [999, 170], [999, 167], [993, 160], [993, 158], [998, 153], [998, 151], [994, 148], [969, 145], [956, 141], [946, 131], [940, 128]], "122-258, T": [[890, -89], [890, -86], [893, -80], [900, -73], [900, -68], [908, -30], [910, -29], [915, -34], [917, -34], [928, -45], [929, -45], [935, -40], [936, -41], [942, -41], [942, -43], [936, -49], [936, -53], [949, -66], [949, -70], [939, -71], [921, -74], [907, -78], [898, -87], [894, -89]]}, "center": {"98-111": [967, 161], "122-258, T": [918, -58]}}, +{"id": 693, "name": "Hela Curry Gewürz", "description": "Hela Curry Gewürz is a German curry ketchup from the brand Hela. You can't have a barbecue in Germany without having Hela spiced ketchup on the table. It can be eaten with anything and tastes good to a lot of people in Germany. It's partly a meme but still true.\n\nr/place is not responsible for the lettering that keeps coming up which represents the brand, but the masses have decided so. A vote on the r/placeDE discord has rejected the writing.", "links": {"subreddit": ["hela_gewuerzketchup", "placeDE", "ich_iel", "de"], "discord": ["placeDE"]}, "path": {"11-258, T": [[295, -441], [289, -441], [289, -436], [287, -435], [287, -394], [288, -392], [296, -392], [297, -394], [297, -434], [295, -436]]}, "center": {"11-258, T": [292, -416]}}, {"id": 694, "name": "WEC", "description": "The official subreddit for the FIA World Endurance Championship, and the ACO's 24 Hours of Le Mans. This is a multi-class racing series, featuring Prototype and Grand Touring sportscars. Each race is 6-8 hours long, requiring 2-3 drivers for each car. The season culminates with a 24 hour round-the-clock race at the famous Circuit de la Sarthe, in Le Mans, France.", "links": {"website": ["https://www.fiawec.com/"], "subreddit": ["wec"], "discord": ["rwec"]}, "path": {"56-73": [[315, -31], [337, -31], [336, -23], [313, -23]]}, "center": {"56-73": [325, -27]}}, -{"id": 695, "name": "\"King Pelé\" Tribute", "description": "Tribute to the soccer player Pelé.", "links": {"subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"104-258": [[218, 476], [234, 476], [234, 470], [234, 467], [234, 464], [235, 462], [236, 459], [239, 457], [240, 455], [241, 453], [241, 446], [243, 448], [245, 449], [245, 446], [246, 445], [247, 448], [250, 447], [251, 445], [252, 452], [252, 454], [256, 458], [257, 459], [259, 463], [259, 466], [259, 468], [261, 470], [262, 472], [262, 475], [261, 478], [260, 479], [260, 482], [261, 484], [263, 486], [264, 486], [264, 487], [263, 489], [263, 499], [218, 499]]}, "center": {"104-258": [246, 484]}}, -{"id": 696, "name": "Flag of Lithuania", "description": "Lithuania is a country in the Baltic region of Europe. It is one of three Baltic states and lies on the eastern shore of the Baltic Sea. Made by Lithuanian streamer LTURepublic and viewers.", "links": {"website": ["https://www.twitch.tv/lturepublic"], "subreddit": ["ltu_republic"], "discord": ["D6X8nGxV"]}, "path": {"152-155": [[-141, 84], [-77, 85], [-77, 61], [-142, 62]], "156-166": [[-141, 84], [-78, 85], [-79, 15], [-141, 15]], "186-216, 233-258": [[-141, 84], [-140, -26], [-79, -26], [-79, 85]]}, "center": {"152-155": [-106, 73], "156-166": [-110, 50], "186-216, 233-258": [-110, 29]}}, -{"id": 697, "name": "The Little Prince", "description": "The Little Prince (French: Le Petit Prince is a novella written and illustrated by French aristocrat, writer, and military pilot Antoine de Saint-Exupéry. It was first published in English and French in the United States by Reynal & Hitchcock in April 1943 and was published posthumously in France following liberation.\n\nThe Little Prince became Saint-Exupéry's most successful work, selling an estimated 140 million copies worldwide, which makes it one of the best-selling in history. The book has been translated into over 505 different languages and dialects worldwide, being the second most translated work ever published, trailing only the Bible. The Little Prince has been adapted to numerous art forms and media, including audio recordings, radio plays, live stage, film, television, ballet, and opera.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Little_Prince"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"98-112": [[973, 221], [970, 224], [970, 237], [969, 237], [969, 245], [970, 246], [970, 252], [972, 252], [973, 251], [987, 251], [990, 247], [994, 245], [994, 241], [992, 239], [986, 239], [984, 242], [984, 247], [982, 247], [982, 236], [987, 236], [987, 234], [996, 234], [996, 227], [994, 224], [986, 224], [986, 226], [982, 226], [982, 224], [979, 221]], "116-258": [[922, -290], [919, -287], [919, -281], [918, -281], [918, -276], [920, -273], [931, -273], [934, -275], [934, -282], [936, -282], [936, -288], [927, -288], [924, -290]]}, "center": {"98-112": [977, 231], "116-258": [927, -281]}}, -{"id": 698, "name": "Risk Universalis", "description": "Risk Universalis III (RU3) is a role-play community in the gaming platform Roblox focused on conquest RP. It involves a full map of the world where players can roleplay political and historic actions in history or in alternate realities. On the 16th July, 2023, Risk Universalis created a 'Risk Universalis Armed Forces' sub-community to serve as a communications group during a collection of hosts against a rivalry community, World Conquest. After participating in r/place 2022, moderators in the 'Risk Universalis Armed Forces' created a campaign on creating a second flag on r/place. Using the newly created space, users created the Risk flag with help from r/algeria. The flag was raided by German streamers and the pigs, ultimately forcing them into the north. The place's coordination is ran by u/yoritoxo, u/chirpthecool and u/kxomodo.", "links": {"website": ["https://www.roblox.com/games/3056320177/Risk-Universalis"], "subreddit": ["riskuniversalis", "ru3"], "discord": ["ru3"]}, "path": {"152-258": [[596, -675], [596, -631], [612, -631], [612, -616], [614, -616], [614, -640], [636, -640], [636, -675]]}, "center": {"152-258": [614, -657]}}, +{"id": 695, "name": "\"King Pelé\" Tribute", "description": "Tribute to the soccer player Pelé.", "links": {"subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"104-258, T": [[218, 476], [234, 476], [234, 470], [234, 467], [234, 464], [235, 462], [236, 459], [239, 457], [240, 455], [241, 453], [241, 446], [243, 448], [245, 449], [245, 446], [246, 445], [247, 448], [250, 447], [251, 445], [252, 452], [252, 454], [256, 458], [257, 459], [259, 463], [259, 466], [259, 468], [261, 470], [262, 472], [262, 475], [261, 478], [260, 479], [260, 482], [261, 484], [263, 486], [264, 486], [264, 487], [263, 489], [263, 499], [218, 499]]}, "center": {"104-258, T": [246, 484]}}, +{"id": 696, "name": "Flag of Lithuania", "description": "Lithuania is a country in the Baltic region of Europe. It is one of three Baltic states and lies on the eastern shore of the Baltic Sea. Made by Lithuanian streamer LTURepublic and viewers.", "links": {"website": ["https://www.twitch.tv/lturepublic"], "subreddit": ["ltu_republic"], "discord": ["D6X8nGxV"]}, "path": {"152-155": [[-141, 84], [-77, 85], [-77, 61], [-142, 62]], "156-166": [[-141, 84], [-78, 85], [-79, 15], [-141, 15]], "186-216, 233-258, T": [[-141, 84], [-140, -26], [-79, -26], [-79, 85]]}, "center": {"152-155": [-106, 73], "156-166": [-110, 50], "186-216, 233-258, T": [-110, 29]}}, +{"id": 697, "name": "The Little Prince", "description": "The Little Prince (French: Le Petit Prince is a novella written and illustrated by French aristocrat, writer, and military pilot Antoine de Saint-Exupéry. It was first published in English and French in the United States by Reynal & Hitchcock in April 1943 and was published posthumously in France following liberation.\n\nThe Little Prince became Saint-Exupéry's most successful work, selling an estimated 140 million copies worldwide, which makes it one of the best-selling in history. The book has been translated into over 505 different languages and dialects worldwide, being the second most translated work ever published, trailing only the Bible. The Little Prince has been adapted to numerous art forms and media, including audio recordings, radio plays, live stage, film, television, ballet, and opera.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Little_Prince"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"98-112": [[973, 221], [970, 224], [970, 237], [969, 237], [969, 245], [970, 246], [970, 252], [972, 252], [973, 251], [987, 251], [990, 247], [994, 245], [994, 241], [992, 239], [986, 239], [984, 242], [984, 247], [982, 247], [982, 236], [987, 236], [987, 234], [996, 234], [996, 227], [994, 224], [986, 224], [986, 226], [982, 226], [982, 224], [979, 221]], "116-258, T": [[922, -290], [919, -287], [919, -281], [918, -281], [918, -276], [920, -273], [931, -273], [934, -275], [934, -282], [936, -282], [936, -288], [927, -288], [924, -290]]}, "center": {"98-112": [977, 231], "116-258, T": [927, -281]}}, +{"id": 698, "name": "Risk Universalis", "description": "Risk Universalis III (RU3) is a role-play community in the gaming platform Roblox focused on conquest RP. It involves a full map of the world where players can roleplay political and historic actions in history or in alternate realities. On the 16th July, 2023, Risk Universalis created a 'Risk Universalis Armed Forces' sub-community to serve as a communications group during a collection of hosts against a rivalry community, World Conquest. After participating in r/place 2022, moderators in the 'Risk Universalis Armed Forces' created a campaign on creating a second flag on r/place. Using the newly created space, users created the Risk flag with help from r/algeria. The flag was raided by German streamers and the pigs, ultimately forcing them into the north. The place's coordination is ran by u/yoritoxo, u/chirpthecool and u/kxomodo.", "links": {"website": ["https://www.roblox.com/games/3056320177/Risk-Universalis"], "subreddit": ["riskuniversalis", "ru3"], "discord": ["ru3"]}, "path": {"152-258, T": [[596, -675], [596, -631], [612, -631], [612, -616], [614, -616], [614, -640], [636, -640], [636, -675]]}, "center": {"152-258, T": [614, -657]}}, {"id": 699, "name": "King Carl XVI Gustaf", "description": "Carl XVI Gustaf is the current king of Sweden, reigning from the 15th of September 1973 to present day. Also known as \"Knugen\" in r/sweden.", "links": {"website": ["https://en.wikipedia.org/wiki/Carl_XVI_Gustaf"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"102-241, 252-258": [[118, -248], [108, -242], [104, -238], [103, -234], [103, -232], [104, -231], [106, -223], [109, -215], [109, -211], [107, -209], [107, -208], [109, -206], [134, -206], [134, -214], [137, -219], [137, -223], [141, -231], [141, -233], [136, -241], [127, -248]]}, "center": {"102-241, 252-258": [122, -230]}}, -{"id": 700, "name": "Traffic Sign", "description": "This traffic sign means \"Ende Sämtlicher Streckenbegrenzungen\" which is german for \"End of all restrictions\". It signals e.g. the end of the speed limit. You can find it on the Autobahn.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"12-258": [[-10, -390], [-10, -429], [-13, -429], [-19, -434], [-21, -438], [-21, -442], [-13, -450], [-6, -450], [1, -442], [1, -435], [-6, -429], [-8, -429], [-8, -391]]}, "center": {"12-258": [-10, -439]}}, -{"id": 701, "name": "Nett hier!", "description": "But have you been to Baden-Württemberg?\n\nGerman sticker to be placed by German citizens of Baden-Württemberg.", "links": {"website": ["https://www.baden-wuerttemberg.de/de/startseite/"], "subreddit": ["NettHier"]}, "path": {"104-258": [[334, -496], [342, -496], [342, -495], [346, -495], [346, -494], [349, -494], [349, -493], [351, -493], [351, -492], [353, -492], [353, -491], [354, -491], [354, -490], [355, -490], [355, -489], [356, -489], [356, -488], [356, -487], [357, -487], [357, -481], [356, -481], [356, -479], [355, -479], [355, -478], [354, -478], [354, -477], [353, -477], [353, -476], [352, -476], [351, -476], [351, -475], [350, -475], [349, -475], [349, -474], [347, -474], [346, -474], [346, -473], [342, -473], [342, -472], [334, -472], [334, -473], [330, -473], [330, -474], [327, -474], [327, -475], [325, -475], [325, -476], [323, -476], [323, -477], [322, -477], [322, -478], [321, -478], [321, -479], [320, -479], [320, -480], [320, -481], [319, -481], [319, -487], [320, -487], [320, -488], [320, -489], [321, -489], [321, -490], [322, -490], [322, -491], [323, -491], [323, -492], [324, -492], [325, -492], [325, -493], [327, -493], [327, -494], [330, -494], [330, -495], [333, -495], [334, -495]]}, "center": {"104-258": [338, -484]}}, -{"id": 702, "name": "Creation date of Czechia", "description": "Independent Czech Republic was founded on this day.", "links": {"website": ["https://en.wikipedia.org/wiki/Czech_Republic"], "subreddit": ["czech"]}, "path": {"104-258": [[463, -192], [463, -187], [499, -187], [499, -192]]}, "center": {"104-258": [481, -189]}}, -{"id": 703, "name": "Tricolor of Czechia", "description": "One of Czechia's symbols, containing red, blue and white colors.", "links": {"website": ["https://en.wikipedia.org/wiki/Czech_Republic"], "subreddit": ["czech"]}, "path": {"104-258": [[400, -192], [400, -187], [499, -187], [499, -192]]}, "center": {"104-258": [450, -189]}}, -{"id": 705, "name": "Frikandelbroodje Energy", "description": "A common food and drink combination for secondary schoolers in The Netherlands, often coming in when they didn't have time to pack their lunch in the morning, an easy and popular choice.", "links": {}, "path": {"104-258": [[-77, -478], [-77, -465], [-70, -467], [-61, -462], [-84, -450], [-92, -456], [-86, -461], [-87, -478]]}, "center": {"104-258": [-80, -459]}}, +{"id": 700, "name": "Traffic Sign", "description": "This traffic sign means \"Ende Sämtlicher Streckenbegrenzungen\" which is german for \"End of all restrictions\". It signals e.g. the end of the speed limit. You can find it on the Autobahn.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"12-258, T": [[-10, -390], [-10, -429], [-13, -429], [-19, -434], [-21, -438], [-21, -442], [-13, -450], [-6, -450], [1, -442], [1, -435], [-6, -429], [-8, -429], [-8, -391]]}, "center": {"12-258, T": [-10, -439]}}, +{"id": 701, "name": "Nett hier!", "description": "But have you been to Baden-Württemberg?\n\nGerman sticker to be placed by German citizens of Baden-Württemberg.", "links": {"website": ["https://www.baden-wuerttemberg.de/de/startseite/"], "subreddit": ["NettHier"]}, "path": {"104-258, T": [[334, -496], [342, -496], [342, -495], [346, -495], [346, -494], [349, -494], [349, -493], [351, -493], [351, -492], [353, -492], [353, -491], [354, -491], [354, -490], [355, -490], [355, -489], [356, -489], [356, -488], [356, -487], [357, -487], [357, -481], [356, -481], [356, -479], [355, -479], [355, -478], [354, -478], [354, -477], [353, -477], [353, -476], [352, -476], [351, -476], [351, -475], [350, -475], [349, -475], [349, -474], [347, -474], [346, -474], [346, -473], [342, -473], [342, -472], [334, -472], [334, -473], [330, -473], [330, -474], [327, -474], [327, -475], [325, -475], [325, -476], [323, -476], [323, -477], [322, -477], [322, -478], [321, -478], [321, -479], [320, -479], [320, -480], [320, -481], [319, -481], [319, -487], [320, -487], [320, -488], [320, -489], [321, -489], [321, -490], [322, -490], [322, -491], [323, -491], [323, -492], [324, -492], [325, -492], [325, -493], [327, -493], [327, -494], [330, -494], [330, -495], [333, -495], [334, -495]]}, "center": {"104-258, T": [338, -484]}}, +{"id": 702, "name": "Creation date of Czechia", "description": "Independent Czech Republic was founded on this day.", "links": {"website": ["https://en.wikipedia.org/wiki/Czech_Republic"], "subreddit": ["czech"]}, "path": {"104-258, T": [[463, -192], [463, -187], [499, -187], [499, -192]]}, "center": {"104-258, T": [481, -189]}}, +{"id": 703, "name": "Tricolor of Czechia", "description": "One of Czechia's symbols, containing red, blue and white colors.", "links": {"website": ["https://en.wikipedia.org/wiki/Czech_Republic"], "subreddit": ["czech"]}, "path": {"104-258, T": [[400, -192], [400, -187], [499, -187], [499, -192]]}, "center": {"104-258, T": [450, -189]}}, +{"id": 705, "name": "Frikandelbroodje Energy", "description": "A common food and drink combination for secondary schoolers in The Netherlands, often coming in when they didn't have time to pack their lunch in the morning, an easy and popular choice.", "links": {}, "path": {"104-258, T": [[-77, -478], [-77, -465], [-70, -467], [-61, -462], [-84, -450], [-92, -456], [-86, -461], [-87, -478]]}, "center": {"104-258, T": [-80, -459]}}, {"id": 706, "name": "Hertog Jan", "description": "Dutch beer manufacturer from the southern region of the country", "links": {"website": ["https://www.hertogjan.nl/"]}, "path": {"104-117": [[806, -451], [806, -452], [804, -452], [804, -453], [803, -453], [803, -454], [801, -454], [801, -455], [800, -455], [800, -456], [798, -456], [798, -457], [797, -457], [797, -458], [796, -458], [796, -459], [794, -459], [794, -460], [793, -460], [793, -461], [792, -461], [792, -462], [791, -462], [791, -463], [790, -463], [790, -465], [789, -465], [789, -466], [788, -466], [788, -469], [787, -469], [787, -472], [786, -472], [786, -477], [785, -477], [785, -493], [784, -493], [784, -494], [784, -495], [783, -495], [783, -496], [784, -496], [784, -498], [785, -498], [785, -499], [786, -499], [786, -500], [788, -500], [788, -499], [789, -499], [789, -498], [790, -498], [826, -498], [826, -499], [827, -499], [827, -500], [829, -500], [829, -499], [830, -499], [830, -498], [831, -498], [831, -497], [831, -496], [832, -496], [832, -495], [831, -495], [831, -494], [831, -493], [830, -493], [830, -492], [830, -477], [829, -477], [829, -471], [828, -471], [828, -468], [827, -468], [827, -466], [826, -466], [826, -464], [825, -464], [825, -463], [824, -463], [824, -462], [823, -462], [823, -461], [822, -461], [822, -460], [821, -460], [821, -459], [820, -459], [820, -458], [818, -458], [818, -457], [817, -457], [817, -456], [816, -456], [816, -455], [814, -455], [814, -454], [813, -454], [813, -453], [811, -453], [811, -452], [810, -452], [809, -452], [809, -451]]}, "center": {"104-117": [808, -477]}}, -{"id": 707, "name": "Bigger Otti", "description": "The big brother of the little monster by Schagges", "links": {"website": ["https://twitch.tv/schagges"]}, "path": {"104-258": [[-705, -365], [-702, -365], [-700, -367], [-697, -363], [-696, -360], [-695, -355], [-699, -353], [-701, -350], [-702, -350], [-703, -353], [-704, -352], [-705, -351], [-707, -351], [-708, -353], [-709, -353], [-711, -352], [-712, -355], [-712, -360], [-708, -364], [-708, -366], [-706, -366]]}, "center": {"104-258": [-702, -359]}}, -{"id": 709, "name": "Tikkie Logo", "description": "The logo of \"Tikkie\", a Dutch app used to quickly send money to your friends", "links": {}, "path": {"104-258": [[-465, -453], [-463, -453], [-462, -454], [-461, -455], [-460, -454], [-459, -454], [-458, -454], [-457, -454], [-456, -454], [-455, -455], [-454, -455], [-453, -456], [-452, -457], [-452, -458], [-451, -459], [-451, -460], [-451, -461], [-451, -462], [-451, -463], [-452, -464], [-452, -465], [-453, -466], [-454, -467], [-455, -467], [-456, -468], [-457, -468], [-460, -468], [-462, -467], [-464, -465], [-464, -463], [-465, -463], [-465, -459], [-464, -458], [-464, -457], [-462, -456], [-462, -455], [-463, -455], [-464, -454]]}, "center": {"104-258": [-458, -461]}}, -{"id": 710, "name": "Augustiner Bier (Beer)", "description": "A bottle Augustiner Lagerbier Hell. Augustiner Bräu is one of the biggest breweries in Germany. Augustiner beer is normally found within the Greater Munich area, even though the company does not advertise, in the last few years it has become popular outside of Munich, for example in Berlin.\n\nThe Bottle was transformed from an apple juice to a bottle of beer.", "links": {"website": ["https://en.wikipedia.org/wiki/Augustiner-Br%c3%a4u"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"99-258": [[-169, -445], [-161, -445], [-161, -442], [-162, -441], [-162, -438], [-158, -430], [-155, -419], [-161, -417], [-161, -393], [-171, -393], [-173, -395], [-173, -427], [-169, -435], [-168, -438], [-168, -441], [-169, -442]]}, "center": {"99-258": [-165, -424]}}, -{"id": 711, "name": "Czechoslovakia Creation Date", "description": "The creation of Czechoslovakia in 1918 was the culmination of the long struggle of the Czechs against their Austrian rulers and of the Slovaks against Magyarization and their Hungarian rulers.", "links": {"website": ["https://en.wikipedia.org/wiki/Czechoslovakia"], "subreddit": ["czech"]}, "path": {"104-258": [[400, -192], [400, -187], [435, -187], [435, -192]]}, "center": {"104-258": [418, -189]}}, +{"id": 707, "name": "Bigger Otti", "description": "The big brother of the little monster by Schagges", "links": {"website": ["https://twitch.tv/schagges"]}, "path": {"104-258, T": [[-705, -365], [-702, -365], [-700, -367], [-697, -363], [-696, -360], [-695, -355], [-699, -353], [-701, -350], [-702, -350], [-703, -353], [-704, -352], [-705, -351], [-707, -351], [-708, -353], [-709, -353], [-711, -352], [-712, -355], [-712, -360], [-708, -364], [-708, -366], [-706, -366]]}, "center": {"104-258, T": [-702, -359]}}, +{"id": 709, "name": "Tikkie Logo", "description": "The logo of \"Tikkie\", a Dutch app used to quickly send money to your friends", "links": {}, "path": {"104-258, T": [[-465, -453], [-463, -453], [-462, -454], [-461, -455], [-460, -454], [-459, -454], [-458, -454], [-457, -454], [-456, -454], [-455, -455], [-454, -455], [-453, -456], [-452, -457], [-452, -458], [-451, -459], [-451, -460], [-451, -461], [-451, -462], [-451, -463], [-452, -464], [-452, -465], [-453, -466], [-454, -467], [-455, -467], [-456, -468], [-457, -468], [-460, -468], [-462, -467], [-464, -465], [-464, -463], [-465, -463], [-465, -459], [-464, -458], [-464, -457], [-462, -456], [-462, -455], [-463, -455], [-464, -454]]}, "center": {"104-258, T": [-458, -461]}}, +{"id": 710, "name": "Augustiner Bier (Beer)", "description": "A bottle Augustiner Lagerbier Hell. Augustiner Bräu is one of the biggest breweries in Germany. Augustiner beer is normally found within the Greater Munich area, even though the company does not advertise, in the last few years it has become popular outside of Munich, for example in Berlin.\n\nThe Bottle was transformed from an apple juice to a bottle of beer.", "links": {"website": ["https://en.wikipedia.org/wiki/Augustiner-Br%c3%a4u"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"99-258, T": [[-169, -445], [-161, -445], [-161, -442], [-162, -441], [-162, -438], [-158, -430], [-155, -419], [-161, -417], [-161, -393], [-171, -393], [-173, -395], [-173, -427], [-169, -435], [-168, -438], [-168, -441], [-169, -442]]}, "center": {"99-258, T": [-165, -424]}}, +{"id": 711, "name": "Czechoslovakia Creation Date", "description": "The creation of Czechoslovakia in 1918 was the culmination of the long struggle of the Czechs against their Austrian rulers and of the Slovaks against Magyarization and their Hungarian rulers.", "links": {"website": ["https://en.wikipedia.org/wiki/Czechoslovakia"], "subreddit": ["czech"]}, "path": {"104-258, T": [[400, -192], [400, -187], [435, -187], [435, -192]]}, "center": {"104-258, T": [418, -189]}}, {"id": 714, "name": "Pas mal non? C'est français", "description": "\"Pas mal non? C'est français\" (translated to \"Not bad, eh? It's French\") is a well-known meme in France that appeared in the old humoristic film \"La Classe Américaine - Le Grand Détournement\".", "links": {"website": ["https://www.youtube.com/watch?v=FXs8e4vHo6c"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"103-111": [[927, 442], [928, 418], [921, 411], [927, 396], [927, 378], [890, 378], [891, 397], [911, 398], [910, 404], [897, 409], [888, 424], [887, 432], [891, 444], [927, 443]]}, "center": {"103-111": [909, 425]}}, -{"id": 715, "name": "Kylian Mbappé", "description": "Kylian Mbappé (Lottin) (born 20 December 1998) is a French professional footballer who plays as a forward for Ligue 1 club Paris Saint-Germain and captains the France national team. Regarded as one of the best players in the world, he is renowned for his dribbling abilities, exceptional speed, and finishing.", "links": {"website": ["https://en.wikipedia.org/wiki/Kylian_Mbapp%C3%A9"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"95-110": [[999, 44], [965, 43], [963, 33], [955, 25], [962, 2], [975, -5], [970, -10], [972, -25], [979, -32], [991, -30], [994, -20], [992, -10], [1000, -4]], "124-258": [[930, -738], [930, -731], [929, -730], [928, -727], [923, -720], [908, -707], [896, -706], [888, -706], [888, -709], [891, -714], [896, -718], [886, -729], [883, -730], [877, -729], [874, -727], [870, -727], [867, -729], [863, -735], [863, -739], [862, -744], [860, -747], [857, -748], [856, -749], [858, -752], [861, -757], [863, -759], [863, -773], [867, -780], [873, -790], [886, -797], [901, -797], [909, -791], [915, -783], [918, -777], [919, -771], [919, -765], [918, -761], [918, -753], [919, -747], [925, -742], [929, -740]]}, "center": {"95-110": [979, 19], "124-258": [891, -766]}}, -{"id": 716, "name": "Airbus A380", "description": "The Airbus A380 is a large wide-body airliner that was developed and produced by Airbus. It is the world's largest passenger airliner and only full-length double-deck jet airliner. Airbus studies started in 1988, and the project was announced in 1990 to challenge the dominance of the Boeing 747 in the long-haul market. December 2000. The first prototype was unveiled in Toulouse on 18 January 2005, with its first flight on 27 April 2005.", "links": {"website": ["https://en.wikipedia.org/wiki/Airbus_A380"]}, "path": {"103-258": [[-843, -372], [-868, -371], [-872, -370], [-874, -368], [-868, -367], [-867, -360], [-873, -359], [-873, -355], [-877, -353], [-904, -353], [-902, -368], [-915, -371], [-926, -371], [-935, -374], [-941, -376], [-945, -375], [-951, -374], [-954, -379], [-953, -380], [-956, -380], [-957, -381], [-959, -382], [-958, -385], [-970, -397], [-968, -398], [-952, -391], [-959, -410], [-952, -411], [-931, -388], [-916, -387], [-944, -412], [-940, -413], [-912, -398], [-905, -399], [-902, -393], [-890, -388], [-870, -387], [-854, -386], [-845, -385], [-840, -381], [-837, -376], [-840, -373]]}, "center": {"103-258": [-888, -373]}}, -{"id": 717, "name": "Olympique Lyonnais", "description": "Olympique Lyonnais is a French professional football club based in Lyon in Auvergne-Rhône-Alpes. The men play in France's highest football division, Ligue 1. Founded in 1950, the club won its first Ligue 1 championship in 2002, starting a national record-setting streak of seven successive titles. Lyon has also won eight Trophées des Champions, five Coupes de France, and three Ligue 2 titles.\nThis part features the OL coat of arms, with\"BG87\" and \"1950\" - the two fan groups written underneath.On the left, \"Lacazette 10\" represents OL's star player, Alexandre Lacazette, who wears number 10, with his likeness just above. To the right of Lacazette's effigy is the old OL logo and just below it \"69\", which represents the number of the department in which the city of Lyon is located in France.", "links": {"website": ["https://www.ol.fr/fr", "https://en.wikipedia.org/wiki/Olympique_Lyonnais", "https://fr.wikipedia.org/wiki/Olympique_lyonnais"], "subreddit": ["OlympiqueLyonnais", "PlaceOL"], "discord": ["3XhhQprk"]}, "path": {"88-258": [[-794, -268], [-754, -268], [-753, -219], [-794, -219], [-793, -238], [-850, -238], [-849, -249], [-814, -249], [-813, -267]]}, "center": {"88-258": [-774, -247]}}, +{"id": 715, "name": "Kylian Mbappé", "description": "Kylian Mbappé (Lottin) (born 20 December 1998) is a French professional footballer who plays as a forward for Ligue 1 club Paris Saint-Germain and captains the France national team. Regarded as one of the best players in the world, he is renowned for his dribbling abilities, exceptional speed, and finishing.", "links": {"website": ["https://en.wikipedia.org/wiki/Kylian_Mbapp%C3%A9"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"95-110": [[999, 44], [965, 43], [963, 33], [955, 25], [962, 2], [975, -5], [970, -10], [972, -25], [979, -32], [991, -30], [994, -20], [992, -10], [1000, -4]], "124-258, T": [[930, -738], [930, -731], [929, -730], [928, -727], [923, -720], [908, -707], [896, -706], [888, -706], [888, -709], [891, -714], [896, -718], [886, -729], [883, -730], [877, -729], [874, -727], [870, -727], [867, -729], [863, -735], [863, -739], [862, -744], [860, -747], [857, -748], [856, -749], [858, -752], [861, -757], [863, -759], [863, -773], [867, -780], [873, -790], [886, -797], [901, -797], [909, -791], [915, -783], [918, -777], [919, -771], [919, -765], [918, -761], [918, -753], [919, -747], [925, -742], [929, -740]]}, "center": {"95-110": [979, 19], "124-258, T": [891, -766]}}, +{"id": 716, "name": "Airbus A380", "description": "The Airbus A380 is a large wide-body airliner that was developed and produced by Airbus. It is the world's largest passenger airliner and only full-length double-deck jet airliner. Airbus studies started in 1988, and the project was announced in 1990 to challenge the dominance of the Boeing 747 in the long-haul market. December 2000. The first prototype was unveiled in Toulouse on 18 January 2005, with its first flight on 27 April 2005.", "links": {"website": ["https://en.wikipedia.org/wiki/Airbus_A380"]}, "path": {"103-258, T": [[-843, -372], [-868, -371], [-872, -370], [-874, -368], [-868, -367], [-867, -360], [-873, -359], [-873, -355], [-877, -353], [-904, -353], [-902, -368], [-915, -371], [-926, -371], [-935, -374], [-941, -376], [-945, -375], [-951, -374], [-954, -379], [-953, -380], [-956, -380], [-957, -381], [-959, -382], [-958, -385], [-970, -397], [-968, -398], [-952, -391], [-959, -410], [-952, -411], [-931, -388], [-916, -387], [-944, -412], [-940, -413], [-912, -398], [-905, -399], [-902, -393], [-890, -388], [-870, -387], [-854, -386], [-845, -385], [-840, -381], [-837, -376], [-840, -373]]}, "center": {"103-258, T": [-888, -373]}}, +{"id": 717, "name": "Olympique Lyonnais", "description": "Olympique Lyonnais is a French professional football club based in Lyon in Auvergne-Rhône-Alpes. The men play in France's highest football division, Ligue 1. Founded in 1950, the club won its first Ligue 1 championship in 2002, starting a national record-setting streak of seven successive titles. Lyon has also won eight Trophées des Champions, five Coupes de France, and three Ligue 2 titles.\nThis part features the OL coat of arms, with\"BG87\" and \"1950\" - the two fan groups written underneath.On the left, \"Lacazette 10\" represents OL's star player, Alexandre Lacazette, who wears number 10, with his likeness just above. To the right of Lacazette's effigy is the old OL logo and just below it \"69\", which represents the number of the department in which the city of Lyon is located in France.", "links": {"website": ["https://www.ol.fr/fr", "https://en.wikipedia.org/wiki/Olympique_Lyonnais", "https://fr.wikipedia.org/wiki/Olympique_lyonnais"], "subreddit": ["OlympiqueLyonnais", "PlaceOL"], "discord": ["3XhhQprk"]}, "path": {"88-258, T": [[-794, -268], [-754, -268], [-753, -219], [-794, -219], [-793, -238], [-850, -238], [-849, -249], [-814, -249], [-813, -267]]}, "center": {"88-258, T": [-774, -247]}}, {"id": 718, "name": "Victor Wembanyama", "description": "Victor Wembanyama is a French professional basketball player for the San Antonio Spurs of the National Basketball Association (NBA). Considered one of the greatest basketball prospects of his generation, he was selected first overall by the Spurs in the 2023 NBA draft. With a listed height of 7 feet 4 inches (2.24 metres), Wembanyama is the tallest active NBA player.", "links": {"website": ["https://en.wikipedia.org/wiki/Victor_Wembanyama"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"90-111": [[983, -101], [990, -108], [1000, -103], [998, -66], [998, -56], [984, -41], [979, -55], [969, -57], [965, -58], [941, -39], [939, -50], [945, -47], [967, -77], [966, -85], [972, -96], [982, -96]]}, "center": {"90-111": [982, -71]}}, {"id": 721, "name": "German Flag (unofficial)", "description": "This flag is unofficial and was later used by german streamer papaplatte who, after teaming up with spanish streamer Rubius started the removal of the at the time left most french flag due to it being devoid of any artwork.", "links": {}, "path": {"103-104": [[-864, 480], [-655, 480], [-655, 429], [-865, 429]]}, "center": {"103-104": [-760, 455]}}, {"id": 722, "name": "Miraculous: Tales of Ladybug & Cat Noir", "description": "Miraculous: Tales of Ladybug & Cat Noir (French: Miraculous, les aventures de Ladybug et Chat Noir) is a magical girl superhero[ television series produced by French companies Zagtoon and Method Animation, and co-produced with Japanese studio Toei Animation's European division, and several international companies. \n\nThe series focuses on two Parisian teenagers, Marinette Dupain-Cheng and Adrien Agreste, who transform into the superheroes Ladybug and Cat Noir, respectively, to protect the city from supervillains.", "links": {"website": ["https://en.wikipedia.org/wiki/Miraculous:_Tales_of_Ladybug_%26_Cat_Noir"]}, "path": {"92-117": [[996, -246], [982, -243], [971, -231], [979, -217], [999, -221], [998, -245], [999, -152], [982, -157], [983, -167], [990, -171], [989, -219], [1000, -221]], "121-141": [[993, -115], [986, -115], [985, -114], [984, -114], [983, -113], [983, -112], [982, -111], [982, -110], [981, -109], [981, -103], [982, -102], [982, -101], [983, -100], [984, -99], [986, -98], [987, -97], [993, -97], [994, -98], [995, -98], [996, -99], [997, -100], [998, -102], [999, -103], [999, -110], [998, -110], [998, -111], [997, -112], [996, -113], [995, -114], [994, -115]]}, "center": {"92-117": [986, -230], "121-141": [990, -106]}}, -{"id": 723, "name": "Unox Logo", "description": "This image represents the logo of Unox, a Dutch food brand primarily associated with its hearty soups and traditional smoked sausages.", "links": {}, "path": {"104-258": [[192, -497], [220, -497], [221, -496], [221, -494], [222, -493], [222, -488], [221, -487], [220, -486], [219, -485], [208, -485], [206, -483], [204, -485], [193, -485], [190, -488], [190, -493], [193, -497], [191, -496]]}, "center": {"104-258": [206, -491]}}, -{"id": 724, "name": "Johan Cruyff", "description": "\"It's better to go down with your own vision than with someone else's.\"\nBacknumber of the Dutch football legend Johan Cruyff.\nHe scored 395 total goals in 20 years of paid football.\nCruyff passed away to complications of lung cancer at 68 years of age.", "links": {"subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"104-258": [[394, -477], [394, -476], [397, -476], [397, -477], [403, -477], [403, -476], [405, -476], [405, -475], [406, -475], [406, -474], [407, -474], [407, -473], [408, -473], [408, -472], [409, -472], [409, -471], [410, -471], [410, -470], [411, -470], [411, -468], [410, -468], [410, -466], [409, -466], [409, -465], [408, -465], [408, -463], [407, -463], [407, -462], [406, -462], [406, -463], [405, -463], [405, -464], [404, -464], [403, -464], [403, -461], [404, -461], [404, -455], [402, -455], [402, -454], [389, -454], [389, -455], [387, -455], [387, -461], [388, -461], [388, -465], [387, -465], [386, -465], [386, -463], [385, -463], [385, -462], [384, -462], [384, -463], [383, -463], [383, -465], [382, -465], [382, -467], [381, -467], [381, -468], [380, -468], [380, -470], [381, -470], [381, -471], [382, -471], [382, -472], [383, -472], [383, -473], [384, -473], [384, -474], [385, -474], [385, -475], [386, -475], [386, -476], [388, -476], [388, -477]]}, "center": {"104-258": [396, -467]}}, +{"id": 723, "name": "Unox Logo", "description": "This image represents the logo of Unox, a Dutch food brand primarily associated with its hearty soups and traditional smoked sausages.", "links": {}, "path": {"104-258, T": [[192, -497], [220, -497], [221, -496], [221, -494], [222, -493], [222, -488], [221, -487], [220, -486], [219, -485], [208, -485], [206, -483], [204, -485], [193, -485], [190, -488], [190, -493], [193, -497], [191, -496]]}, "center": {"104-258, T": [206, -491]}}, +{"id": 724, "name": "Johan Cruyff", "description": "\"It's better to go down with your own vision than with someone else's.\"\nBacknumber of the Dutch football legend Johan Cruyff.\nHe scored 395 total goals in 20 years of paid football.\nCruyff passed away to complications of lung cancer at 68 years of age.", "links": {"subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"104-258, T": [[394, -477], [394, -476], [397, -476], [397, -477], [403, -477], [403, -476], [405, -476], [405, -475], [406, -475], [406, -474], [407, -474], [407, -473], [408, -473], [408, -472], [409, -472], [409, -471], [410, -471], [410, -470], [411, -470], [411, -468], [410, -468], [410, -466], [409, -466], [409, -465], [408, -465], [408, -463], [407, -463], [407, -462], [406, -462], [406, -463], [405, -463], [405, -464], [404, -464], [403, -464], [403, -461], [404, -461], [404, -455], [402, -455], [402, -454], [389, -454], [389, -455], [387, -455], [387, -461], [388, -461], [388, -465], [387, -465], [386, -465], [386, -463], [385, -463], [385, -462], [384, -462], [384, -463], [383, -463], [383, -465], [382, -465], [382, -467], [381, -467], [381, -468], [380, -468], [380, -470], [381, -470], [381, -471], [382, -471], [382, -472], [383, -472], [383, -473], [384, -473], [384, -474], [385, -474], [385, -475], [386, -475], [386, -476], [388, -476], [388, -477]]}, "center": {"104-258, T": [396, -467]}}, {"id": 725, "name": "Louvre Pyramid", "description": "The Louvre Pyramid (Pyramide du Louvre) is the emblematic large glass and metal structure in the main courtyard of the Louvre Palace.\n\nFirst simply present on the french area, it later got placed at the center of the area dedicated to hosting art in frames in reference to the Louvre Museum, and eventually got itself replaced by an art piece.", "links": {"website": ["https://en.wikipedia.org/wiki/Louvre"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"90-112": [[944, -146], [913, -116], [973, -116]], "116-166": [[944, -196], [927, -179], [927, -178], [934, -171], [940, -171], [955, -174], [965, -174], [965, -176], [946, -196]]}, "center": {"90-112": [944, -128], "116-166": [945, -183]}}, -{"id": 726, "name": "r/Morocco", "description": "The flag of Morocco made by the r/Morocco subreddit. It includes, the country's Motto: الله، ٱلْوَطَن، ٱلْمَلِك (God,Homeland,King),The Hassan II mosque,Moroccan architecture (Zellige),And a collaboration with r/Pokemon which depicts Pikachu wearing traditionnal Moroccan clothes (Jellaba and Fez)", "links": {"subreddit": ["Morocco"], "discord": ["r-morocco"]}, "path": {"100-258": [[-501, -276], [-501, -335], [-521, -336], [-521, -322], [-529, -321], [-529, -315], [-540, -315], [-540, -294], [-537, -290], [-537, -277]]}, "center": {"100-258": [-520, -298]}}, -{"id": 727, "name": "Radiergummi", "description": "An Eraser, Rubber or Radiergummi.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"62-258": [[338, -407], [339, -407], [339, -406], [345, -401], [358, -394], [368, -398], [368, -401], [366, -405], [347, -414], [338, -409], [341, -404]]}, "center": {"62-258": [358, -401]}}, -{"id": 728, "name": "Belastingbrief", "description": "This artwork presents a \"blauwe envelop\", literally translated as a blue envelope. In the Netherlands, these iconic blue envelopes are used by the Dutch Tax and Customs Administration (Belastingdienst) to send tax-related documents and notifications to citizens. Its depiction here communicates a universal experience for Dutch adults.", "links": {}, "path": {"104-258": [[607, -482], [647, -482], [647, -464], [607, -464]]}, "center": {"104-258": [627, -473]}}, -{"id": 729, "name": "Chocomel", "description": "This pixel art showcases a Chocomel package, known for its bright yellow color and distinctive branding. Chocomel is a brand of chocolate milk, its instantly recognizable packaging being a fixture in Dutch households and cafes alike.", "links": {}, "path": {"104-258": [[-206, -500], [-186, -500], [-186, -451], [-206, -451]]}, "center": {"104-258": [-196, -475]}}, +{"id": 726, "name": "r/Morocco", "description": "The flag of Morocco made by the r/Morocco subreddit. It includes, the country's Motto: الله، ٱلْوَطَن، ٱلْمَلِك (God,Homeland,King),The Hassan II mosque,Moroccan architecture (Zellige),And a collaboration with r/Pokemon which depicts Pikachu wearing traditionnal Moroccan clothes (Jellaba and Fez)", "links": {"subreddit": ["Morocco"], "discord": ["r-morocco"]}, "path": {"100-258, T": [[-501, -276], [-501, -335], [-521, -336], [-521, -322], [-529, -321], [-529, -315], [-540, -315], [-540, -294], [-537, -290], [-537, -277]]}, "center": {"100-258, T": [-520, -298]}}, +{"id": 727, "name": "Radiergummi", "description": "An Eraser, Rubber or Radiergummi.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"62-258, T": [[338, -407], [339, -407], [339, -406], [345, -401], [358, -394], [368, -398], [368, -401], [366, -405], [347, -414], [338, -409], [341, -404]]}, "center": {"62-258, T": [358, -401]}}, +{"id": 728, "name": "Belastingbrief", "description": "This artwork presents a \"blauwe envelop\", literally translated as a blue envelope. In the Netherlands, these iconic blue envelopes are used by the Dutch Tax and Customs Administration (Belastingdienst) to send tax-related documents and notifications to citizens. Its depiction here communicates a universal experience for Dutch adults.", "links": {}, "path": {"104-258, T": [[607, -482], [647, -482], [647, -464], [607, -464]]}, "center": {"104-258, T": [627, -473]}}, +{"id": 729, "name": "Chocomel", "description": "This pixel art showcases a Chocomel package, known for its bright yellow color and distinctive branding. Chocomel is a brand of chocolate milk, its instantly recognizable packaging being a fixture in Dutch households and cafes alike.", "links": {}, "path": {"104-258, T": [[-206, -500], [-186, -500], [-186, -451], [-206, -451]]}, "center": {"104-258, T": [-196, -475]}}, {"id": 730, "name": "2024 Paris Summer Olympics", "description": "The 2024 Summer Olympics (French: Jeux olympiques d'été de 2024) are an upcoming international multi-sport event that is scheduled to take place from 26 July to 11 August 2024 with Paris as its main host city and 16 cities spread across metropolitan France and one in Tahiti—an island within the French overseas country and overseas collectivity of French Polynesia—as a subsite.", "links": {"website": ["https://en.wikipedia.org/wiki/2024_Summer_Olympics"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"90-112": [[906, -113], [909, -100], [916, -97], [918, -82], [935, -73], [960, -75], [966, -98], [977, -100], [973, -113]]}, "center": {"90-112": [941, -93]}}, -{"id": 731, "name": "Meneer de Uil", "description": "This artwork depicts the character Meneer de Uil from the Dutch children's television series \"De Fabeltjeskrant\". Meneer de Uil, an anthropomorphic owl, serves as the show's narrator, reading stories from a newspaper to the animal residents of Fabeltjesland.", "links": {}, "path": {"104-258": [[-120, -498], [-97, -498], [-96, -459], [-121, -459]]}, "center": {"104-258": [-108, -478]}}, +{"id": 731, "name": "Meneer de Uil", "description": "This artwork depicts the character Meneer de Uil from the Dutch children's television series \"De Fabeltjeskrant\". Meneer de Uil, an anthropomorphic owl, serves as the show's narrator, reading stories from a newspaper to the animal residents of Fabeltjesland.", "links": {}, "path": {"104-258, T": [[-120, -498], [-97, -498], [-96, -459], [-121, -459]]}, "center": {"104-258, T": [-108, -478]}}, {"id": 732, "name": "LetsHugoTV", "description": "LetsHugoTV, or Hugo Gobitz, is a famous streamer living in Luxembourg. He was the fastest growing german-speaking streamer in the last couple of months. This logo is held and defended by his community while he takes a streaming break in Barcelona where he is chilling his balls.\nFunfact: He was actually thinking about canceling this vacation with his mother because of the [r/place](https://www.reddit.com/r/place/) event.", "links": {"website": ["https://www.twitch.tv/letshugotv"], "subreddit": ["letshugotv"], "discord": ["letshugo"]}, "path": {"155": [[-695, -326], [-686, -326], [-686, -325], [-684, -325], [-684, -324], [-682, -324], [-682, -323], [-681, -323], [-681, -322], [-680, -322], [-680, -319], [-679, -319], [-679, -316], [-679, -315], [-678, -315], [-678, -314], [-677, -314], [-677, -310], [-678, -310], [-678, -308], [-672, -308], [-672, -298], [-689, -298], [-698, -298], [-698, -309], [-699, -309], [-699, -314], [-699, -315], [-700, -315], [-700, -319], [-699, -319], [-699, -320], [-699, -322], [-698, -322], [-697, -322], [-697, -323], [-697, -324], [-696, -324], [-695, -324], [-695, -325]]}, "center": {"155": [-689, -313]}}, -{"id": 733, "name": "Hema Rookworst & Tompouche", "description": "HEMA (Hollandsche Eenheidsprijzen Maatschappij Amsterdam), a Dutch store known for its Rookworst (smoked sausage) and Tompouce", "links": {}, "path": {"147-258": [[916, -492], [936, -493], [943, -481], [958, -481], [959, -472], [964, -473], [974, -467], [974, -457], [967, -455], [959, -460], [959, -454], [933, -453], [933, -456], [927, -454], [917, -457], [912, -463], [910, -472], [911, -482], [917, -493]]}, "center": {"147-258": [928, -473]}}, -{"id": 734, "name": "Efteling Logo", "description": "This piece represents the logo of Efteling, a renowned fantasy-themed amusement park located in the Netherlands. Efteling's distinctive logo is synonymous with its magical rides, fairy tale inspired attractions, and immersive experiences.", "links": {}, "path": {"104-258": [[-410, -500], [-410, -476], [-391, -476], [-391, -500]]}, "center": {"104-258": [-400, -488]}}, -{"id": 735, "name": "Huis van de Vijf Zintuigen", "description": "This artwork portrays the House of the Five Senses, an iconic building in Efteling, a fantasy-themed amusement park in the Netherlands. Designed to resemble a fairy tale castle, it serves as the main entrance to the park.", "links": {}, "path": {"104-258": [[-421, -451], [-421, -456], [-420, -457], [-417, -460], [-417, -461], [-415, -463], [-415, -464], [-414, -465], [-414, -477], [-413, -482], [-413, -470], [-412, -470], [-411, -467], [-405, -463], [-400, -463], [-393, -470], [-393, -471], [-392, -473], [-391, -476], [-390, -476], [-390, -479], [-389, -479], [-389, -483], [-388, -484], [-388, -489], [-387, -489], [-387, -495], [-387, -482], [-386, -482], [-386, -479], [-385, -478], [-385, -476], [-384, -476], [-384, -474], [-383, -474], [-383, -472], [-382, -472], [-382, -470], [-381, -470], [-381, -468], [-380, -468], [-379, -467], [-378, -466], [-377, -465], [-376, -464], [-375, -464], [-374, -463], [-371, -463], [-370, -464], [-369, -464], [-368, -465], [-367, -466], [-366, -467], [-366, -468], [-365, -469], [-364, -470], [-364, -471], [-363, -472], [-363, -473], [-362, -474], [-362, -475], [-361, -476], [-361, -477], [-360, -478], [-360, -479], [-359, -479], [-359, -483], [-358, -483], [-358, -487], [-358, -479], [-359, -478], [-359, -470], [-358, -469], [-358, -464], [-357, -463], [-357, -459], [-357, -458], [-356, -458], [-356, -457], [-355, -457], [-355, -456], [-354, -455], [-354, -451]]}, "center": {"104-258": [-388, -461]}}, -{"id": 736, "name": "Kud", "description": "This artwork depicts the two main characters from the Kud YouTube channel, usually seen sitting on a couch. They are referred to as \"The Green One\" and \"The Pink One\" (Dutch: Die Groene & Die Roze).\n\nKud is a well-known Dutch animated web series, featuring humor and commentary on daily life and pop culture.", "links": {"website": ["https://www.youtube.com/channel/UC39KF9j7hucS2xncTO8d5CQ", "https://www.youtube.com/@kud"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"104-258": [[-530, -451], [-530, -458], [-531, -459], [-531, -461], [-532, -462], [-532, -465], [-533, -466], [-533, -469], [-532, -469], [-531, -470], [-530, -470], [-529, -471], [-527, -471], [-526, -472], [-525, -476], [-524, -477], [-523, -478], [-507, -478], [-506, -477], [-497, -477], [-496, -476], [-495, -476], [-494, -477], [-493, -477], [-492, -478], [-490, -479], [-489, -480], [-486, -480], [-482, -476], [-481, -476], [-479, -476], [-478, -477], [-477, -477], [-477, -475], [-476, -474], [-476, -471], [-474, -471], [-473, -470], [-470, -470], [-470, -469], [-469, -469], [-469, -468], [-468, -468], [-468, -467], [-469, -466], [-469, -461], [-470, -460], [-470, -454], [-471, -453], [-471, -451]]}, "center": {"104-258": [-488, -464]}}, -{"id": 737, "name": "Fristi", "description": "This is the Fristi package, Fristi is a popular brand of strawberry-flavored milk drink, known for its vibrant pink packaging. The drink is often seen in lunch boxes of Dutch children.", "links": {}, "path": {"104-258": [[-228, -500], [-208, -500], [-208, -451], [-228, -451]]}, "center": {"104-258": [-218, -475]}}, -{"id": 738, "name": "Guardian Tales", "description": "Guardian Tales is an action role-playing game developed for mobile phones by Kong Studios and published by Kakao Games.", "links": {"website": ["https://guardiantales.com", "https://en.wikipedia.org/wiki/Guardian_Tales"], "subreddit": ["GuardianTales"]}, "path": {"45-107": [[-343, 146], [-307, 146], [-307, 169], [-343, 169]], "110-258": [[-352, 147], [-354, 150], [-354, 153], [-355, 153], [-363, 163], [-363, 164], [-357, 174], [-342, 174], [-338, 170], [-337, 170], [-334, 173], [-333, 173], [-327, 167], [-327, 166], [-330, 163], [-330, 162], [-327, 155], [-327, 154], [-333, 148], [-334, 148], [-340, 154], [-341, 154], [-341, 151], [-344, 148], [-348, 148], [-348, 147]]}, "center": {"45-107": [-325, 158], "110-258": [-348, 163]}}, -{"id": 739, "name": "Fanta", "description": "Fanta is a soft drink, originating in germany during the 2nd world war. It is part of the Coca-Cola-Company since it's founding and is popular worldwide.", "links": {"website": ["https://en.wikipedia.org/wiki/Fanta"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"42-98": [[-231, -428], [-227, -430], [-217, -430], [-213, -427], [-213, -424], [-214, -423], [-214, -403], [-216, -403], [-216, -402], [-228, -402], [-231, -405]], "9-40": [[-277, -419], [-273, -421], [-261, -421], [-258, -418], [-258, -395], [-263, -392], [-273, -392], [-277, -395]], "99-258": [[-221, -418], [-217, -421], [-206, -421], [-202, -418], [-202, -395], [-208, -393], [-217, -393], [-221, -395]]}, "center": {"42-98": [-222, -411], "9-40": [-267, -406], "99-258": [-211, -407]}}, -{"id": 740, "name": "Mayreel", "description": "Divine Beast of Harvest Mayreel in her alpaca form. She is one of the characters from a mobile action role-playing game Guardian Tales developed by Kong Studios and published by Kakao Games.", "links": {"website": ["https://guardiantales.com", "https://en.wikipedia.org/wiki/Guardian_Tales"], "subreddit": ["GuardianTales"]}, "path": {"38-107": [[-314, 169], [-331, 169], [-331, 168], [-332, 168], [-332, 166], [-334, 166], [-334, 163], [-335, 163], [-335, 159], [-334, 159], [-334, 157], [-333, 157], [-333, 154], [-331, 154], [-331, 153], [-330, 153], [-330, 152], [-329, 152], [-329, 148], [-328, 148], [-328, 147], [-327, 147], [-327, 146], [-326, 146], [-326, 147], [-325, 147], [-325, 148], [-323, 148], [-322, 148], [-322, 147], [-321, 147], [-321, 146], [-320, 146], [-320, 147], [-319, 147], [-319, 148], [-318, 148], [-318, 151], [-316, 151], [-316, 152], [-315, 152], [-315, 154], [-314, 154], [-314, 155], [-313, 155], [-313, 156], [-311, 156], [-311, 157], [-310, 157], [-310, 164], [-311, 164], [-311, 167], [-313, 167], [-313, 168], [-314, 168]], "110-258": [[-352, 148], [-354, 150], [-354, 153], [-355, 153], [-363, 163], [-363, 164], [-361, 167], [-361, 169], [-356, 174], [-342, 174], [-336, 168], [-335, 166], [-335, 162], [-341, 154], [-341, 151], [-344, 148]]}, "center": {"38-107": [-323, 159], "110-258": [-348, 163]}}, -{"id": 741, "name": "Langnek", "description": "This design illustrates Langnek (Long Neck), also known as Lange Jan, a distinct character from the Efteling amusement park in the Netherlands. He's renowned for his telescopic neck which can extend up and down, a feature uniquely captured in this piece.", "links": {}, "path": {"214-258": [[-377, -467], [-375, -469], [-374, -469], [-374, -577], [-377, -580], [-378, -580], [-379, -586], [-379, -588], [-376, -588], [-376, -591], [-372, -592], [-372, -595], [-370, -595], [-370, -593], [-366, -593], [-366, -595], [-364, -595], [-364, -593], [-367, -590], [-365, -587], [-366, -580], [-370, -577], [-370, -470], [-367, -467], [-371, -464], [-374, -464]], "151-213": [[-377, -467], [-375, -464], [-370, -464], [-367, -467], [-370, -470], [-370, -577], [-366, -581], [-366, -585], [-365, -587], [-370, -591], [-374, -591], [-379, -587], [-378, -581], [-374, -577], [-374, -470]], "111-137": [[-377, -467], [-374, -464], [-371, -464], [-367, -467], [-370, -469], [-370, -478], [-366, -482], [-366, -484], [-370, -488], [-374, -488], [-378, -484], [-378, -482], [-374, -478], [-374, -470]]}, "center": {"214-258": [-372, -584], "151-213": [-372, -584], "111-137": [-372, -483]}}, -{"id": 742, "name": "Dutch Postal Stamp \"Postzegel\"", "description": "This piece represents a Dutch postage stamp, valued at 1 euro, displaying a quaint windmill - a distinct icon of the Netherlands. It symbolizes the country's rich history of windmills and stamp collection, and the passion for preserving national identity.", "links": {}, "path": {"104-258": [[-279, -496], [-279, -456], [-232, -456], [-232, -496]]}, "center": {"104-258": [-255, -476]}}, -{"id": 743, "name": "Saab JAS 39 Gripen", "description": "The Saab JAS 39 Gripen is an iconic Swedish warplane.", "links": {"website": ["https://en.wikipedia.org/wiki/Saab_JAS_39_Gripen"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"106-258": [[119, -278], [114, -273], [110, -273], [110, -271], [106, -271], [102, -269], [101, -267], [103, -265], [117, -265], [117, -261], [114, -261], [114, -259], [120, -259], [125, -261], [125, -263], [127, -265], [132, -265], [141, -271], [151, -274], [151, -275], [140, -275], [140, -276], [134, -276], [133, -277], [126, -277], [126, -278]]}, "center": {"106-258": [122, -271]}}, -{"id": 744, "name": "Benny", "description": "Benny is a Lego astronaut from the 2014 Lego movie. In the movie, he serves as a Master Builder with a deep appreciation for anything space-related, and especially for spaceships. When given the opportunity to build one, he will excitedly shout \"SPACESHIP!\" He is based on a blue spaceman figure from the Lego Classic Space theme, released from 1978 to 1987.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Lego_Movie#Cast"], "subreddit": ["lego", "Denmark", "nordics", "place_nordicunion"]}, "path": {"67-91": [[-189, -249], [-194, -245], [-194, -234], [-191, -231], [-189, -231], [-178, -235], [-178, -242], [-180, -245]], "105-108": [[-186, -249], [-191, -245], [-191, -234], [-189, -232], [-176, -232], [-174, -234], [-174, -245], [-179, -249]], "110-258": [[-186, -250], [-191, -246], [-191, -235], [-194, -232], [-194, -231], [-191, -228], [-190, -228], [-190, -223], [-177, -223], [-177, -228], [-174, -231], [-174, -232], [-176, -234], [-176, -246], [-181, -250]]}, "center": {"67-91": [-187, -240], "105-108": [-182, -240], "110-258": [-184, -233]}}, +{"id": 733, "name": "Hema Rookworst & Tompouche", "description": "HEMA (Hollandsche Eenheidsprijzen Maatschappij Amsterdam), a Dutch store known for its Rookworst (smoked sausage) and Tompouce", "links": {}, "path": {"147-258, T": [[916, -492], [936, -493], [943, -481], [958, -481], [959, -472], [964, -473], [974, -467], [974, -457], [967, -455], [959, -460], [959, -454], [933, -453], [933, -456], [927, -454], [917, -457], [912, -463], [910, -472], [911, -482], [917, -493]]}, "center": {"147-258, T": [928, -473]}}, +{"id": 734, "name": "Efteling Logo", "description": "This piece represents the logo of Efteling, a renowned fantasy-themed amusement park located in the Netherlands. Efteling's distinctive logo is synonymous with its magical rides, fairy tale inspired attractions, and immersive experiences.", "links": {}, "path": {"104-258, T": [[-410, -500], [-410, -476], [-391, -476], [-391, -500]]}, "center": {"104-258, T": [-400, -488]}}, +{"id": 735, "name": "Huis van de Vijf Zintuigen", "description": "This artwork portrays the House of the Five Senses, an iconic building in Efteling, a fantasy-themed amusement park in the Netherlands. Designed to resemble a fairy tale castle, it serves as the main entrance to the park.", "links": {}, "path": {"104-258, T": [[-421, -451], [-421, -456], [-420, -457], [-417, -460], [-417, -461], [-415, -463], [-415, -464], [-414, -465], [-414, -477], [-413, -482], [-413, -470], [-412, -470], [-411, -467], [-405, -463], [-400, -463], [-393, -470], [-393, -471], [-392, -473], [-391, -476], [-390, -476], [-390, -479], [-389, -479], [-389, -483], [-388, -484], [-388, -489], [-387, -489], [-387, -495], [-387, -482], [-386, -482], [-386, -479], [-385, -478], [-385, -476], [-384, -476], [-384, -474], [-383, -474], [-383, -472], [-382, -472], [-382, -470], [-381, -470], [-381, -468], [-380, -468], [-379, -467], [-378, -466], [-377, -465], [-376, -464], [-375, -464], [-374, -463], [-371, -463], [-370, -464], [-369, -464], [-368, -465], [-367, -466], [-366, -467], [-366, -468], [-365, -469], [-364, -470], [-364, -471], [-363, -472], [-363, -473], [-362, -474], [-362, -475], [-361, -476], [-361, -477], [-360, -478], [-360, -479], [-359, -479], [-359, -483], [-358, -483], [-358, -487], [-358, -479], [-359, -478], [-359, -470], [-358, -469], [-358, -464], [-357, -463], [-357, -459], [-357, -458], [-356, -458], [-356, -457], [-355, -457], [-355, -456], [-354, -455], [-354, -451]]}, "center": {"104-258, T": [-388, -461]}}, +{"id": 736, "name": "Kud", "description": "This artwork depicts the two main characters from the Kud YouTube channel, usually seen sitting on a couch. They are referred to as \"The Green One\" and \"The Pink One\" (Dutch: Die Groene & Die Roze).\n\nKud is a well-known Dutch animated web series, featuring humor and commentary on daily life and pop culture.", "links": {"website": ["https://www.youtube.com/channel/UC39KF9j7hucS2xncTO8d5CQ", "https://www.youtube.com/@kud"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"104-258, T": [[-530, -451], [-530, -458], [-531, -459], [-531, -461], [-532, -462], [-532, -465], [-533, -466], [-533, -469], [-532, -469], [-531, -470], [-530, -470], [-529, -471], [-527, -471], [-526, -472], [-525, -476], [-524, -477], [-523, -478], [-507, -478], [-506, -477], [-497, -477], [-496, -476], [-495, -476], [-494, -477], [-493, -477], [-492, -478], [-490, -479], [-489, -480], [-486, -480], [-482, -476], [-481, -476], [-479, -476], [-478, -477], [-477, -477], [-477, -475], [-476, -474], [-476, -471], [-474, -471], [-473, -470], [-470, -470], [-470, -469], [-469, -469], [-469, -468], [-468, -468], [-468, -467], [-469, -466], [-469, -461], [-470, -460], [-470, -454], [-471, -453], [-471, -451]]}, "center": {"104-258, T": [-488, -464]}}, +{"id": 737, "name": "Fristi", "description": "This is the Fristi package, Fristi is a popular brand of strawberry-flavored milk drink, known for its vibrant pink packaging. The drink is often seen in lunch boxes of Dutch children.", "links": {}, "path": {"104-258, T": [[-228, -500], [-208, -500], [-208, -451], [-228, -451]]}, "center": {"104-258, T": [-218, -475]}}, +{"id": 738, "name": "Guardian Tales", "description": "Guardian Tales is an action role-playing game developed for mobile phones by Kong Studios and published by Kakao Games.", "links": {"website": ["https://guardiantales.com", "https://en.wikipedia.org/wiki/Guardian_Tales"], "subreddit": ["GuardianTales"]}, "path": {"45-107": [[-343, 146], [-307, 146], [-307, 169], [-343, 169]], "110-258, T": [[-352, 147], [-354, 150], [-354, 153], [-355, 153], [-363, 163], [-363, 164], [-357, 174], [-342, 174], [-338, 170], [-337, 170], [-334, 173], [-333, 173], [-327, 167], [-327, 166], [-330, 163], [-330, 162], [-327, 155], [-327, 154], [-333, 148], [-334, 148], [-340, 154], [-341, 154], [-341, 151], [-344, 148], [-348, 148], [-348, 147]]}, "center": {"45-107": [-325, 158], "110-258, T": [-348, 163]}}, +{"id": 739, "name": "Fanta", "description": "Fanta is a soft drink, originating in germany during the 2nd world war. It is part of the Coca-Cola-Company since it's founding and is popular worldwide.", "links": {"website": ["https://en.wikipedia.org/wiki/Fanta"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"42-98": [[-231, -428], [-227, -430], [-217, -430], [-213, -427], [-213, -424], [-214, -423], [-214, -403], [-216, -403], [-216, -402], [-228, -402], [-231, -405]], "9-40": [[-277, -419], [-273, -421], [-261, -421], [-258, -418], [-258, -395], [-263, -392], [-273, -392], [-277, -395]], "99-258, T": [[-221, -418], [-217, -421], [-206, -421], [-202, -418], [-202, -395], [-208, -393], [-217, -393], [-221, -395]]}, "center": {"42-98": [-222, -411], "9-40": [-267, -406], "99-258, T": [-211, -407]}}, +{"id": 740, "name": "Mayreel", "description": "Divine Beast of Harvest Mayreel in her alpaca form. She is one of the characters from a mobile action role-playing game Guardian Tales developed by Kong Studios and published by Kakao Games.", "links": {"website": ["https://guardiantales.com", "https://en.wikipedia.org/wiki/Guardian_Tales"], "subreddit": ["GuardianTales"]}, "path": {"38-107": [[-314, 169], [-331, 169], [-331, 168], [-332, 168], [-332, 166], [-334, 166], [-334, 163], [-335, 163], [-335, 159], [-334, 159], [-334, 157], [-333, 157], [-333, 154], [-331, 154], [-331, 153], [-330, 153], [-330, 152], [-329, 152], [-329, 148], [-328, 148], [-328, 147], [-327, 147], [-327, 146], [-326, 146], [-326, 147], [-325, 147], [-325, 148], [-323, 148], [-322, 148], [-322, 147], [-321, 147], [-321, 146], [-320, 146], [-320, 147], [-319, 147], [-319, 148], [-318, 148], [-318, 151], [-316, 151], [-316, 152], [-315, 152], [-315, 154], [-314, 154], [-314, 155], [-313, 155], [-313, 156], [-311, 156], [-311, 157], [-310, 157], [-310, 164], [-311, 164], [-311, 167], [-313, 167], [-313, 168], [-314, 168]], "110-258, T": [[-352, 148], [-354, 150], [-354, 153], [-355, 153], [-363, 163], [-363, 164], [-361, 167], [-361, 169], [-356, 174], [-342, 174], [-336, 168], [-335, 166], [-335, 162], [-341, 154], [-341, 151], [-344, 148]]}, "center": {"38-107": [-323, 159], "110-258, T": [-348, 163]}}, +{"id": 741, "name": "Langnek", "description": "This design illustrates Langnek (Long Neck), also known as Lange Jan, a distinct character from the Efteling amusement park in the Netherlands. He's renowned for his telescopic neck which can extend up and down, a feature uniquely captured in this piece.", "links": {}, "path": {"151-213": [[-377, -467], [-375, -464], [-370, -464], [-367, -467], [-370, -470], [-370, -577], [-366, -581], [-366, -585], [-365, -587], [-370, -591], [-374, -591], [-379, -587], [-378, -581], [-374, -577], [-374, -470]], "111-137": [[-377, -467], [-374, -464], [-371, -464], [-367, -467], [-370, -469], [-370, -478], [-366, -482], [-366, -484], [-370, -488], [-374, -488], [-378, -484], [-378, -482], [-374, -478], [-374, -470]], "214-258, T": [[-377, -467], [-375, -469], [-374, -469], [-374, -577], [-377, -580], [-378, -580], [-379, -586], [-379, -588], [-376, -588], [-376, -591], [-372, -592], [-372, -595], [-370, -595], [-370, -593], [-366, -593], [-366, -595], [-364, -595], [-364, -593], [-367, -590], [-365, -587], [-366, -580], [-370, -577], [-370, -470], [-367, -467], [-371, -464], [-374, -464]]}, "center": {"151-213": [-372, -584], "111-137": [-372, -483], "214-258, T": [-372, -584]}}, +{"id": 742, "name": "Dutch Postal Stamp \"Postzegel\"", "description": "This piece represents a Dutch postage stamp, valued at 1 euro, displaying a quaint windmill - a distinct icon of the Netherlands. It symbolizes the country's rich history of windmills and stamp collection, and the passion for preserving national identity.", "links": {}, "path": {"104-258, T": [[-279, -496], [-279, -456], [-232, -456], [-232, -496]]}, "center": {"104-258, T": [-255, -476]}}, +{"id": 743, "name": "Saab JAS 39 Gripen", "description": "The Saab JAS 39 Gripen is an iconic Swedish warplane.", "links": {"website": ["https://en.wikipedia.org/wiki/Saab_JAS_39_Gripen"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"106-258, T": [[119, -278], [114, -273], [110, -273], [110, -271], [106, -271], [102, -269], [101, -267], [103, -265], [117, -265], [117, -261], [114, -261], [114, -259], [120, -259], [125, -261], [125, -263], [127, -265], [132, -265], [141, -271], [151, -274], [151, -275], [140, -275], [140, -276], [134, -276], [133, -277], [126, -277], [126, -278]]}, "center": {"106-258, T": [122, -271]}}, +{"id": 744, "name": "Benny", "description": "Benny is a Lego astronaut from the 2014 Lego movie. In the movie, he serves as a Master Builder with a deep appreciation for anything space-related, and especially for spaceships. When given the opportunity to build one, he will excitedly shout \"SPACESHIP!\" He is based on a blue spaceman figure from the Lego Classic Space theme, released from 1978 to 1987.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Lego_Movie#Cast"], "subreddit": ["lego", "Denmark", "nordics", "place_nordicunion"]}, "path": {"67-91": [[-189, -249], [-194, -245], [-194, -234], [-191, -231], [-189, -231], [-178, -235], [-178, -242], [-180, -245]], "105-108": [[-186, -249], [-191, -245], [-191, -234], [-189, -232], [-176, -232], [-174, -234], [-174, -245], [-179, -249]], "110-258, T": [[-186, -250], [-191, -246], [-191, -235], [-194, -232], [-194, -231], [-191, -228], [-190, -228], [-190, -223], [-177, -223], [-177, -228], [-174, -231], [-174, -232], [-176, -234], [-176, -246], [-181, -250]]}, "center": {"67-91": [-187, -240], "105-108": [-182, -240], "110-258, T": [-184, -233]}}, {"id": 745, "name": "Denmarkball", "description": "Countryballs (Polandball) is a meme art style involving balls adorned with the flags of countries. These balls joke about their countries' stereotypes and relations with other countries. Depicted is a Countryball of Denmark.", "links": {"website": ["https://knowyourmeme.com/memes/polandball", "https://en.wikipedia.org/wiki/Countryballs"], "subreddit": ["polandball", "Denmark"]}, "path": {"105-110": [[-185, -223], [-189, -220], [-191, -217], [-191, -214], [-189, -211], [-185, -208], [-179, -208], [-175, -211], [-173, -214], [-173, -217], [-175, -220], [-179, -223]]}, "center": {"105-110": [-182, -215]}}, -{"id": 746, "name": "Denmark", "description": "The country of Denmark as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark"], "subreddit": ["Denmark", "nordics", "place_nordicunion"]}, "path": {"103-114": [[-104, -230], [-114, -223], [-117, -218], [-117, -210], [-119, -210], [-119, -209], [-118, -208], [-118, -207], [-116, -204], [-111, -201], [-105, -201], [-103, -203], [-91, -203], [-90, -202], [-85, -199], [-83, -199], [-72, -206], [-75, -209], [-85, -209], [-85, -210], [-86, -211], [-86, -220], [-88, -222], [-97, -222], [-97, -225], [-103, -225], [-103, -230]], "115-258": [[-30, -279], [-35, -276], [-38, -271], [-42, -268], [-46, -268], [-47, -269], [-54, -259], [-55, -237], [-51, -233], [-51, -226], [-49, -224], [-39, -223], [-38, -224], [-12, -224], [-7, -226], [-8, -227], [-8, -238], [-4, -240], [-7, -247], [-9, -249], [-11, -249], [-13, -247], [-15, -246], [-19, -246], [-20, -245], [-22, -245], [-22, -273], [-29, -273], [-29, -279]]}, "center": {"103-114": [-106, -214], "115-258": [-37, -241]}}, -{"id": 747, "name": "Norway", "description": "The country of Norway as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Norway"], "subreddit": ["Norge", "nordics", "place_nordicunion"]}, "path": {"100-258": [[-9, -348], [-16, -345], [-17, -345], [-17, -341], [-25, -341], [-25, -337], [-29, -338], [-35, -329], [-35, -325], [-41, -317], [-44, -311], [-44, -309], [-48, -309], [-48, -304], [-51, -304], [-55, -300], [-56, -297], [-56, -296], [-55, -295], [-55, -286], [-50, -281], [-46, -284], [-43, -284], [-42, -285], [-38, -285], [-38, -289], [-36, -293], [-36, -308], [-33, -307], [-33, -315], [-26, -328], [-20, -332], [-12, -332], [-9, -339], [-7, -335], [-6, -336], [-4, -336], [-2, -340], [-2, -341], [-5, -346], [-8, -346], [-8, -347]]}, "center": {"100-258": [-46, -295]}}, -{"id": 748, "name": "Finland", "description": "The country of Finland as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland"], "subreddit": ["Suomi", "nordics", "place_nordicunion"]}, "path": {"96-258": [[14, -345], [14, -342], [19, -336], [20, -336], [22, -331], [22, -328], [23, -327], [23, -320], [24, -319], [24, -311], [22, -311], [22, -307], [19, -303], [17, -303], [15, -301], [15, -290], [14, -289], [22, -281], [23, -281], [25, -283], [35, -283], [41, -294], [45, -294], [48, -300], [42, -307], [40, -318], [38, -328], [38, -342], [39, -343], [39, -345], [36, -345], [32, -347], [29, -346], [27, -343], [27, -340], [20, -340], [17, -344]]}, "center": {"96-258": [28, -295]}}, -{"id": 749, "name": "Svalbard", "description": "Svalbard is an archipelago in the Arctic Ocean that is owned by Norway.", "links": {"website": ["https://en.wikipedia.org/wiki/Svalbard"], "subreddit": ["Norge", "nordics", "place_nordicunion"]}, "path": {"102-258": [[-59, -365], [-63, -362], [-63, -353], [-61, -353], [-60, -352], [-60, -347], [-59, -343], [-57, -343], [-57, -341], [-56, -341], [-53, -346], [-46, -346], [-44, -349], [-47, -352], [-48, -354], [-48, -358], [-46, -358], [-42, -362], [-42, -364], [-44, -366], [-54, -366], [-55, -367], [-56, -366]]}, "center": {"102-258": [-55, -358]}}, -{"id": 750, "name": "Sweden", "description": "The country of Sweden as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"95-258": [[45, -276], [39, -270], [35, -259], [24, -237], [24, -231], [23, -230], [23, -225], [24, -224], [24, -210], [23, -210], [21, -208], [21, -202], [19, -199], [19, -196], [25, -184], [36, -181], [39, -181], [41, -183], [42, -187], [47, -187], [51, -191], [51, -196], [52, -197], [50, -199], [48, -205], [48, -209], [49, -210], [49, -211], [43, -215], [42, -218], [42, -224], [47, -235], [54, -241], [56, -246], [56, -257], [59, -261], [57, -264], [57, -266], [59, -269], [59, -272], [54, -277]]}, "center": {"95-258": [35, -199]}}, -{"id": 751, "name": "Luchtalarm", "description": "This creation depicts an 'Air Raid Siren', an iconic piece of Dutch civil defense infrastructure. These sirens, placed throughout the country, emit a distinctive tone during testing on the first Monday of each month at noon. This routine has made the sound of the 'Air Raid Siren' an unexpected yet familiar part of life in the Netherlands.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258": [[102, -454], [102, -471], [99, -473], [102, -475], [99, -477], [101, -478], [103, -478], [105, -477], [102, -475], [105, -473], [102, -472]]}, "center": {"107-258": [102, -473]}}, -{"id": 752, "name": "Sinterklaas", "description": "This artwork represents 'Sinterklaas', a legendary figure based on Saint Nicholas. In the Netherlands, he is traditionally celebrated annually on the evening of December 5th. The figure is often depicted as an elderly, stately man with white hair and a long, full beard, dressed in a red bishop's dress. He carries a long ceremonial shepherd's staff and is associated with giving gifts, a central theme of the Sinterklaas holiday.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258": [[-178, -451], [-180, -451], [-180, -458], [-182, -459], [-182, -461], [-181, -462], [-180, -462], [-180, -467], [-181, -467], [-182, -468], [-182, -471], [-181, -472], [-180, -472], [-179, -470], [-178, -469], [-177, -470], [-173, -478], [-168, -471], [-168, -469], [-170, -466], [-168, -466], [-165, -461], [-165, -457], [-164, -456], [-163, -451]]}, "center": {"107-258": [-173, -459]}}, -{"id": 753, "name": "Dikkie Dik", "description": "This creation portrays 'Dikkie Dik', a vivid orange cat character from a popular Dutch series of children's picture books. The tales follow Dikkie Dik's adventures and mishaps, engaging children with its playful illustrations and simple narratives. The character's recognizability makes it a fond part of childhood memories for many in the Netherlands.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258": [[545, -465], [540, -465], [537, -465], [533, -466], [533, -470], [516, -475], [515, -473], [520, -470], [520, -467], [511, -463], [507, -469], [507, -471], [511, -477], [512, -486], [511, -494], [510, -498], [515, -500], [522, -493], [527, -494], [529, -492], [538, -499], [541, -498], [541, -493], [540, -492], [540, -485], [542, -484], [542, -476], [545, -473]]}, "center": {"107-258": [524, -483]}}, -{"id": 754, "name": "Traffic Sign and r/STVO", "description": "r/STVO is a subreddit dedicated to german traffic law (\"straßenverkehrsordnung\" in german).\nA traffic sign for construction sites, showing a worker. On the Autobahn, you can often see this sign for months, as constructions are slow in germany.", "links": {"subreddit": ["placeDe", "ich_iel", "de", "STVO"], "discord": ["placede"]}, "path": {"101-258": [[818, -415], [818, -426], [832, -447], [833, -447], [846, -426], [846, -420], [853, -420], [853, -414], [835, -414], [834, -391], [831, -391], [831, -414], [818, -414]]}, "center": {"101-258": [832, -426]}}, -{"id": 755, "name": "Kiana Kaslana", "description": "Kiana Kaslana is one of the main characters of Honkai Impact 3rd a free-to-play 3D action role-playing game (originally a mobile exclusive) developed by miHoYo and published worldwide by HoYoverse, and later ported to Microsoft Windows.", "links": {"website": ["https://honkaiimpact3.hoyoverse.com/global/en-us/", "https://en.wikipedia.org/wiki/Honkai_Impact_3rd"], "subreddit": ["houkai3rd"]}, "path": {"96-258": [[-615, 183], [-627, 195], [-631, 194], [-638, 195], [-650, 201], [-652, 179], [-642, 167], [-631, 166], [-625, 167], [-616, 181]]}, "center": {"96-258": [-634, 180]}}, +{"id": 746, "name": "Denmark", "description": "The country of Denmark as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark"], "subreddit": ["Denmark", "nordics", "place_nordicunion"]}, "path": {"103-114": [[-104, -230], [-114, -223], [-117, -218], [-117, -210], [-119, -210], [-119, -209], [-118, -208], [-118, -207], [-116, -204], [-111, -201], [-105, -201], [-103, -203], [-91, -203], [-90, -202], [-85, -199], [-83, -199], [-72, -206], [-75, -209], [-85, -209], [-85, -210], [-86, -211], [-86, -220], [-88, -222], [-97, -222], [-97, -225], [-103, -225], [-103, -230]], "115-258, T": [[-30, -279], [-35, -276], [-38, -271], [-42, -268], [-46, -268], [-47, -269], [-54, -259], [-55, -237], [-51, -233], [-51, -226], [-49, -224], [-39, -223], [-38, -224], [-12, -224], [-7, -226], [-8, -227], [-8, -238], [-4, -240], [-7, -247], [-9, -249], [-11, -249], [-13, -247], [-15, -246], [-19, -246], [-20, -245], [-22, -245], [-22, -273], [-29, -273], [-29, -279]]}, "center": {"103-114": [-106, -214], "115-258, T": [-37, -241]}}, +{"id": 747, "name": "Norway", "description": "The country of Norway as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Norway"], "subreddit": ["Norge", "nordics", "place_nordicunion"]}, "path": {"100-258, T": [[-9, -348], [-16, -345], [-17, -345], [-17, -341], [-25, -341], [-25, -337], [-29, -338], [-35, -329], [-35, -325], [-41, -317], [-44, -311], [-44, -309], [-48, -309], [-48, -304], [-51, -304], [-55, -300], [-56, -297], [-56, -296], [-55, -295], [-55, -286], [-50, -281], [-46, -284], [-43, -284], [-42, -285], [-38, -285], [-38, -289], [-36, -293], [-36, -308], [-33, -307], [-33, -315], [-26, -328], [-20, -332], [-12, -332], [-9, -339], [-7, -335], [-6, -336], [-4, -336], [-2, -340], [-2, -341], [-5, -346], [-8, -346], [-8, -347]]}, "center": {"100-258, T": [-46, -295]}}, +{"id": 748, "name": "Finland", "description": "The country of Finland as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland"], "subreddit": ["Suomi", "nordics", "place_nordicunion"]}, "path": {"96-258, T": [[14, -345], [14, -342], [19, -336], [20, -336], [22, -331], [22, -328], [23, -327], [23, -320], [24, -319], [24, -311], [22, -311], [22, -307], [19, -303], [17, -303], [15, -301], [15, -290], [14, -289], [22, -281], [23, -281], [25, -283], [35, -283], [41, -294], [45, -294], [48, -300], [42, -307], [40, -318], [38, -328], [38, -342], [39, -343], [39, -345], [36, -345], [32, -347], [29, -346], [27, -343], [27, -340], [20, -340], [17, -344]]}, "center": {"96-258, T": [28, -295]}}, +{"id": 749, "name": "Svalbard", "description": "Svalbard is an archipelago in the Arctic Ocean that is owned by Norway.", "links": {"website": ["https://en.wikipedia.org/wiki/Svalbard"], "subreddit": ["Norge", "nordics", "place_nordicunion"]}, "path": {"102-258, T": [[-59, -365], [-63, -362], [-63, -353], [-61, -353], [-60, -352], [-60, -347], [-59, -343], [-57, -343], [-57, -341], [-56, -341], [-53, -346], [-46, -346], [-44, -349], [-47, -352], [-48, -354], [-48, -358], [-46, -358], [-42, -362], [-42, -364], [-44, -366], [-54, -366], [-55, -367], [-56, -366]]}, "center": {"102-258, T": [-55, -358]}}, +{"id": 750, "name": "Sweden", "description": "The country of Sweden as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"95-258, T": [[45, -276], [39, -270], [35, -259], [24, -237], [24, -231], [23, -230], [23, -225], [24, -224], [24, -210], [23, -210], [21, -208], [21, -202], [19, -199], [19, -196], [25, -184], [36, -181], [39, -181], [41, -183], [42, -187], [47, -187], [51, -191], [51, -196], [52, -197], [50, -199], [48, -205], [48, -209], [49, -210], [49, -211], [43, -215], [42, -218], [42, -224], [47, -235], [54, -241], [56, -246], [56, -257], [59, -261], [57, -264], [57, -266], [59, -269], [59, -272], [54, -277]]}, "center": {"95-258, T": [35, -199]}}, +{"id": 751, "name": "Luchtalarm", "description": "This creation depicts an 'Air Raid Siren', an iconic piece of Dutch civil defense infrastructure. These sirens, placed throughout the country, emit a distinctive tone during testing on the first Monday of each month at noon. This routine has made the sound of the 'Air Raid Siren' an unexpected yet familiar part of life in the Netherlands.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258, T": [[102, -454], [102, -471], [99, -473], [102, -475], [99, -477], [101, -478], [103, -478], [105, -477], [102, -475], [105, -473], [102, -472]]}, "center": {"107-258, T": [102, -473]}}, +{"id": 752, "name": "Sinterklaas", "description": "This artwork represents 'Sinterklaas', a legendary figure based on Saint Nicholas. In the Netherlands, he is traditionally celebrated annually on the evening of December 5th. The figure is often depicted as an elderly, stately man with white hair and a long, full beard, dressed in a red bishop's dress. He carries a long ceremonial shepherd's staff and is associated with giving gifts, a central theme of the Sinterklaas holiday.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258, T": [[-178, -451], [-180, -451], [-180, -458], [-182, -459], [-182, -461], [-181, -462], [-180, -462], [-180, -467], [-181, -467], [-182, -468], [-182, -471], [-181, -472], [-180, -472], [-179, -470], [-178, -469], [-177, -470], [-173, -478], [-168, -471], [-168, -469], [-170, -466], [-168, -466], [-165, -461], [-165, -457], [-164, -456], [-163, -451]]}, "center": {"107-258, T": [-173, -459]}}, +{"id": 753, "name": "Dikkie Dik", "description": "This creation portrays 'Dikkie Dik', a vivid orange cat character from a popular Dutch series of children's picture books. The tales follow Dikkie Dik's adventures and mishaps, engaging children with its playful illustrations and simple narratives. The character's recognizability makes it a fond part of childhood memories for many in the Netherlands.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258, T": [[545, -465], [540, -465], [537, -465], [533, -466], [533, -470], [516, -475], [515, -473], [520, -470], [520, -467], [511, -463], [507, -469], [507, -471], [511, -477], [512, -486], [511, -494], [510, -498], [515, -500], [522, -493], [527, -494], [529, -492], [538, -499], [541, -498], [541, -493], [540, -492], [540, -485], [542, -484], [542, -476], [545, -473]]}, "center": {"107-258, T": [524, -483]}}, +{"id": 754, "name": "Traffic Sign and r/STVO", "description": "r/STVO is a subreddit dedicated to german traffic law (\"straßenverkehrsordnung\" in german).\nA traffic sign for construction sites, showing a worker. On the Autobahn, you can often see this sign for months, as constructions are slow in germany.", "links": {"subreddit": ["placeDe", "ich_iel", "de", "STVO"], "discord": ["placede"]}, "path": {"101-258, T": [[818, -415], [818, -426], [832, -447], [833, -447], [846, -426], [846, -420], [853, -420], [853, -414], [835, -414], [834, -391], [831, -391], [831, -414], [818, -414]]}, "center": {"101-258, T": [832, -426]}}, +{"id": 755, "name": "Kiana Kaslana", "description": "Kiana Kaslana is one of the main characters of Honkai Impact 3rd a free-to-play 3D action role-playing game (originally a mobile exclusive) developed by miHoYo and published worldwide by HoYoverse, and later ported to Microsoft Windows.", "links": {"website": ["https://honkaiimpact3.hoyoverse.com/global/en-us/", "https://en.wikipedia.org/wiki/Honkai_Impact_3rd"], "subreddit": ["houkai3rd"]}, "path": {"96-258, T": [[-615, 183], [-627, 195], [-631, 194], [-638, 195], [-650, 201], [-652, 179], [-642, 167], [-631, 166], [-625, 167], [-616, 181]]}, "center": {"96-258, T": [-634, 180]}}, {"id": 756, "name": "Maggi", "description": "Maggi is a producer of sauces. It has long been a must-have in every German kitchen. It is also often called \"Magie\" (Magic) because it gives food a special touch.\n\nBecause it was acquired by Nestlé in 1947, a controversy arose in the r/placeDE Discord. A poll to replace the Maggi bottle was held, a \"fuck nestlé\" lettering was rejected and the bottle was removed.\nThe same day a Jägermeister bottle took over it's place.", "links": {"website": ["https://en.wikipedia.org/wiki/Maggi"], "subreddit": ["placeDE", "ich_iel", "de"], "discord": ["placeDE"]}, "path": {"59-125": [[491, -391], [489, -400], [488, -409], [488, -417], [494, -422], [494, -437], [495, -439], [495, -443], [498, -446], [502, -442], [502, -422], [508, -415], [508, -408], [507, -400], [505, -392]]}, "center": {"59-125": [498, -412]}}, -{"id": 757, "name": "The Little Princess", "description": "The Little Princess is one of the main characters in the game Guardian Tales, a mobile action role-playing gacha game developed by Kong Studios and published by Kakao Games.", "links": {"website": ["https://guardiantales.com", "https://en.wikipedia.org/wiki/Guardian_Tales"], "subreddit": ["GuardianTales"]}, "path": {"93-258": [[-627, 195], [-617, 205], [-617, 208], [-619, 210], [-619, 214], [-617, 214], [-617, 219], [-610, 224], [-608, 222], [-597, 222], [-598, 217], [-603, 213], [-600, 208], [-599, 213], [-594, 210], [-594, 202], [-591, 199], [-594, 194], [-595, 189], [-601, 185], [-608, 184], [-611, 183], [-615, 184], [-621, 191], [-627, 193]]}, "center": {"93-258": [-607, 197]}}, -{"id": 758, "name": "Kapsalon", "description": "This artwork represents 'Kapsalon', a unique snack originating from the Netherlands. It is a layered dish that typically consists of fries topped with döner or shawarma meat, covered with a layer of melted Gouda cheese, and topped off with mixed salad and a choice of garlic sauce or hot sauce. 'Kapsalon' translates to 'hair salon' in Dutch, named so because it was first created at a hair salon in Rotterdam.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258": [[-548, -452], [-549, -452], [-557, -456], [-559, -455], [-561, -458], [-575, -464], [-578, -471], [-580, -475], [-578, -476], [-578, -478], [-576, -480], [-568, -485], [-566, -485], [-563, -484], [-561, -485], [-557, -485], [-557, -484], [-554, -485], [-551, -480], [-547, -480], [-549, -483], [-546, -484], [-540, -476], [-537, -476], [-534, -475], [-535, -471], [-538, -465], [-538, -463], [-539, -462], [-538, -461], [-538, -460], [-539, -458], [-541, -458]]}, "center": {"107-258": [-551, -467]}}, -{"id": 759, "name": "Regenboog 2001", "description": "The artwork represents a rainbow with the year 2001, marking a significant milestone for the Netherlands. The rainbow is globally recognized as a symbol for the LGBTQ+ community, and the year 2001 commemorates when the Netherlands became the first country worldwide to legalize same-sex marriage, heralding a new era of equality and acceptance.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258": [[191, -455], [190, -459], [198, -474], [206, -482], [222, -494], [235, -498], [249, -499], [260, -497], [268, -494], [276, -489], [289, -478], [298, -463], [298, -461], [293, -463], [289, -456], [286, -456], [285, -464], [282, -467], [277, -475], [269, -481], [259, -486], [249, -487], [231, -487], [227, -482], [217, -477], [210, -471], [205, -465], [203, -455]]}, "center": {"107-258": [222, -486]}}, +{"id": 757, "name": "The Little Princess", "description": "The Little Princess is one of the main characters in the game Guardian Tales, a mobile action role-playing gacha game developed by Kong Studios and published by Kakao Games.", "links": {"website": ["https://guardiantales.com", "https://en.wikipedia.org/wiki/Guardian_Tales"], "subreddit": ["GuardianTales"]}, "path": {"93-258, T": [[-627, 195], [-617, 205], [-617, 208], [-619, 210], [-619, 214], [-617, 214], [-617, 219], [-610, 224], [-608, 222], [-597, 222], [-598, 217], [-603, 213], [-600, 208], [-599, 213], [-594, 210], [-594, 202], [-591, 199], [-594, 194], [-595, 189], [-601, 185], [-608, 184], [-611, 183], [-615, 184], [-621, 191], [-627, 193]]}, "center": {"93-258, T": [-607, 197]}}, +{"id": 758, "name": "Kapsalon", "description": "This artwork represents 'Kapsalon', a unique snack originating from the Netherlands. It is a layered dish that typically consists of fries topped with döner or shawarma meat, covered with a layer of melted Gouda cheese, and topped off with mixed salad and a choice of garlic sauce or hot sauce. 'Kapsalon' translates to 'hair salon' in Dutch, named so because it was first created at a hair salon in Rotterdam.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258, T": [[-548, -452], [-549, -452], [-557, -456], [-559, -455], [-561, -458], [-575, -464], [-578, -471], [-580, -475], [-578, -476], [-578, -478], [-576, -480], [-568, -485], [-566, -485], [-563, -484], [-561, -485], [-557, -485], [-557, -484], [-554, -485], [-551, -480], [-547, -480], [-549, -483], [-546, -484], [-540, -476], [-537, -476], [-534, -475], [-535, -471], [-538, -465], [-538, -463], [-539, -462], [-538, -461], [-538, -460], [-539, -458], [-541, -458]]}, "center": {"107-258, T": [-551, -467]}}, +{"id": 759, "name": "Regenboog 2001", "description": "The artwork represents a rainbow with the year 2001, marking a significant milestone for the Netherlands. The rainbow is globally recognized as a symbol for the LGBTQ+ community, and the year 2001 commemorates when the Netherlands became the first country worldwide to legalize same-sex marriage, heralding a new era of equality and acceptance.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258, T": [[191, -455], [190, -459], [198, -474], [206, -482], [222, -494], [235, -498], [249, -499], [260, -497], [268, -494], [276, -489], [289, -478], [298, -463], [298, -461], [293, -463], [289, -456], [286, -456], [285, -464], [282, -467], [277, -475], [269, -481], [259, -486], [249, -487], [231, -487], [227, -482], [217, -477], [210, -471], [205, -465], [203, -455]]}, "center": {"107-258, T": [222, -486]}}, {"id": 760, "name": "BeamNG.drive", "description": "The logo from the car simulation game BeamNG.drive which was initiated by the BeamMP discord", "links": {"website": ["https://beamng.com/game/"]}, "path": {"56-64": [[848, 201], [848, 216], [872, 221], [884, 221], [883, 191], [869, 191]]}, "center": {"56-64": [869, 206]}}, -{"id": 761, "name": "Delfts Blauw Tegeltje", "description": "The artwork represents a 'Delft Blue Tile', a form of ceramic pottery renowned for its distinctive blue and white color scheme. Originating in the city of Delft during the 16th century, these tiles commonly feature intricate designs that capture various aspects of Dutch life and history. Their unique aesthetics have made them a beloved decoration element in Dutch households and a recognized symbol of Dutch cultural heritage.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258": [[555, -498], [602, -498], [602, -453], [555, -453]]}, "center": {"107-258": [579, -475]}}, -{"id": 762, "name": "Pluk van de Petteflet", "description": "This artwork illustrates the character 'Pluk' from 'Pluk van de Petteflet', a popular Dutch children's book written by Annie M.G. Schmidt. 'Pluk van de Petteflet' tells the tale of Pluk, a little boy who moves into the Petteflet, an apartment building, with his pet cockroach, Zaza. Pluk embarks on many adventures with the diverse group of characters living in the building. The book is cherished for its inventive storylines and endearing characters, forming a significant part of many Dutch childhoods.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258": [[-300, -483], [-300, -486], [-298, -488], [-295, -488], [-292, -485], [-292, -483], [-296, -480], [-295, -479], [-294, -478], [-294, -477], [-293, -477], [-292, -478], [-291, -477], [-290, -477], [-285, -473], [-286, -472], [-286, -465], [-284, -462], [-286, -462], [-287, -461], [-289, -461], [-290, -462], [-306, -462], [-307, -461], [-309, -461], [-311, -462], [-311, -463], [-306, -470], [-307, -472], [-311, -471], [-318, -483], [-320, -482], [-319, -471], [-321, -472], [-320, -483], [-324, -485], [-324, -488], [-323, -490], [-322, -490], [-319, -487], [-318, -485], [-305, -473], [-302, -474], [-300, -470], [-298, -470], [-297, -479], [-296, -480]]}, "center": {"107-258": [-292, -469]}}, +{"id": 761, "name": "Delfts Blauw Tegeltje", "description": "The artwork represents a 'Delft Blue Tile', a form of ceramic pottery renowned for its distinctive blue and white color scheme. Originating in the city of Delft during the 16th century, these tiles commonly feature intricate designs that capture various aspects of Dutch life and history. Their unique aesthetics have made them a beloved decoration element in Dutch households and a recognized symbol of Dutch cultural heritage.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258, T": [[555, -498], [602, -498], [602, -453], [555, -453]]}, "center": {"107-258, T": [579, -475]}}, +{"id": 762, "name": "Pluk van de Petteflet", "description": "This artwork illustrates the character 'Pluk' from 'Pluk van de Petteflet', a popular Dutch children's book written by Annie M.G. Schmidt. 'Pluk van de Petteflet' tells the tale of Pluk, a little boy who moves into the Petteflet, an apartment building, with his pet cockroach, Zaza. Pluk embarks on many adventures with the diverse group of characters living in the building. The book is cherished for its inventive storylines and endearing characters, forming a significant part of many Dutch childhoods.", "links": {"subreddit": ["PlaceNL"]}, "path": {"107-258, T": [[-300, -483], [-300, -486], [-298, -488], [-295, -488], [-292, -485], [-292, -483], [-296, -480], [-295, -479], [-294, -478], [-294, -477], [-293, -477], [-292, -478], [-291, -477], [-290, -477], [-285, -473], [-286, -472], [-286, -465], [-284, -462], [-286, -462], [-287, -461], [-289, -461], [-290, -462], [-306, -462], [-307, -461], [-309, -461], [-311, -462], [-311, -463], [-306, -470], [-307, -472], [-311, -471], [-318, -483], [-320, -482], [-319, -471], [-321, -472], [-320, -483], [-324, -485], [-324, -488], [-323, -490], [-322, -490], [-319, -487], [-318, -485], [-305, -473], [-302, -474], [-300, -470], [-298, -470], [-297, -479], [-296, -480]]}, "center": {"107-258, T": [-292, -469]}}, {"id": 763, "name": "India", "description": "The country of India as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/India"], "subreddit": ["IndiaPlace", "india"]}, "path": {"104-135": [[421, -278], [418, -275], [418, -273], [419, -272], [419, -264], [417, -264], [417, -262], [416, -261], [412, -261], [411, -260], [408, -260], [408, -257], [409, -256], [409, -253], [413, -249], [418, -249], [420, -244], [420, -240], [422, -238], [422, -236], [425, -232], [425, -229], [430, -229], [430, -232], [433, -234], [433, -239], [439, -254], [440, -254], [442, -250], [445, -250], [451, -262], [451, -265], [446, -265], [445, -264], [443, -264], [442, -263], [438, -263], [436, -261], [435, -261], [432, -263], [432, -270], [434, -270], [434, -276], [426, -276], [426, -278]]}, "center": {"104-135": [428, -253]}}, {"id": 764, "name": "Unified Payments Interface", "description": "Unified Payments Interface (UPI) is an instant real-time payment system developed by National Payments Corporation of India facilitating inter-bank peer-to-peer and person-to-merchant transactions.", "links": {"website": ["https://www.npci.org.in/what-we-do/upi/product-overview", "https://en.wikipedia.org/wiki/Unified_Payments_Interface"], "subreddit": ["IndiaPlace", "india"]}, "path": {"92-200": [[443, -235], [443, -227], [455, -227], [455, -224], [458, -224], [466, -232], [466, -233], [456, -243], [455, -243], [455, -235]]}, "center": {"92-200": [459, -233]}}, -{"id": 766, "name": "Paimon", "description": "Paimon is a companion of the main character in Genshin Impact an action role-playing game developed by miHoYo and published by by HoYoverse worldwide.", "links": {"website": ["https://genshin.hoyoverse.com/ru/"], "subreddit": ["Genshin_Impact"]}, "path": {"95-258": [[-652, 206], [-648, 194], [-650, 178], [-654, 169], [-649, 167], [-649, 164], [-663, 159], [-675, 162], [-672, 166], [-680, 176], [-685, 176], [-681, 179], [-681, 188], [-671, 194], [-663, 195]]}, "center": {"95-258": [-666, 181]}}, -{"id": 767, "name": "Dante", "description": "The Executive Manager of Limbus Company, and main character of the game Limbus Company a Turn-Based Strategy RPG Gacha Game developed and published by South Korean independent video game studio Project Moon. Having lost both their memory and their original head, they now work alongside the Sinners in their quest to recover both and retrieve the Golden Boughs.", "links": {"website": ["https://limbuscompany.com"], "subreddit": ["limbuscompany", "Project_Moon"]}, "path": {"92-258": [[-722, 179], [-728, 173], [-730, 167], [-736, 163], [-731, 161], [-730, 144], [-726, 141], [-729, 135], [-722, 131], [-723, 138], [-709, 131], [-689, 133], [-694, 137], [-699, 138], [-710, 166], [-715, 160], [-717, 167], [-721, 169], [-721, 178]]}, "center": {"92-258": [-716, 148]}}, -{"id": 769, "name": "TouristHistories", "description": "TouristHistories or short Touri is a german twitch streamer", "links": {"website": ["https://www.twitch.tv/touristhistories"]}, "path": {"108-258": [[-191, -331], [-179, -331], [-179, -347], [-187, -347], [-191, -341]]}, "center": {"108-258": [-185, -339]}}, -{"id": 770, "name": "PokeIsland Palm Tree", "description": "Palm tree on a sandy island beach, symbol of the PokeIsland/Poke's Island YouTube/Discord community.", "links": {"website": ["https://www.youtube.com/@PokeIsland"], "subreddit": ["pokeislandyt"], "discord": ["KVaeKYWY"]}, "path": {"108-258": [[-161, 383], [-157, 383], [-157, 388], [-161, 388]]}, "center": {"108-258": [-159, 386]}}, -{"id": 771, "name": "Fischersnet", "description": "Fischersnet is a german twitch streamer, YouTuber and Podcaster", "links": {"website": ["https://www.twitch.tv/fischersnet", "https://www.youtube.com/@fischersnet", "https://open.spotify.com/show/3KxS1kDWVG32VetkKtmUDx?si=6a134fc155d443f3"]}, "path": {"107-258": [[-293, -348], [-288, -352], [-285, -353], [-284, -354], [-284, -356], [-287, -360], [-288, -364], [-287, -372], [-285, -378], [-283, -383], [-272, -384], [-264, -378], [-263, -371], [-263, -363], [-266, -356], [-262, -351], [-284, -341], [-287, -344]]}, "center": {"107-258": [-275, -366]}}, -{"id": 772, "name": "Hello Internet", "description": "The logo of the podcast \"Hello Internet\" featuring content creators Brady Haran and CGP Grey.", "links": {"website": ["http://www.hellointernet.fm/", "https://en.wikipedia.org/wiki/Hello_Internet"], "subreddit": ["HelloInternet"]}, "path": {"81-258": [[227, 129], [239, 129], [239, 141], [227, 141]]}, "center": {"81-258": [233, 135]}}, -{"id": 773, "name": "Royal corgi", "description": "A corgi is a dog breed that originated in Wales, United Kingdom. Corgis are often associated with the British royal family, with Queen Elizabeth II having owned several corgis during her reign.", "links": {"website": ["https://en.wikipedia.org/wiki/Royal_corgis"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"54-77, 84-258": [[-212, -302], [-217, -289], [-220, -289], [-220, -283], [-217, -280], [-217, -275], [-218, -275], [-218, -271], [-213, -264], [-213, -263], [-214, -262], [-214, -259], [-184, -259], [-184, -282], [-186, -284], [-187, -284], [-189, -282], [-189, -281], [-192, -281], [-193, -280], [-197, -280], [-198, -279], [-202, -282], [-199, -289], [-199, -296], [-202, -299], [-203, -299], [-205, -297], [-208, -297], [-208, -299], [-211, -302]]}, "center": {"54-77, 84-258": [-203, -270]}}, -{"id": 774, "name": "GrandPOOBear", "description": "A popular variety gaming Twitch streamer who predominately plays Mario games. He participated due to the Twitch rivals event.", "links": {"website": ["https://www.twitch.tv/grandpoobear"], "discord": ["0gOY9qyDVUxk59ar"]}, "path": {"56-258": [[29, 250], [147, 250], [147, 284], [30, 284]]}, "center": {"56-258": [88, 267]}}, -{"id": 775, "name": "Amiya", "description": "Amiya is the main protagonist of Arknights, a mobile game made by Yostar. She is considered the mascot of the series and is frequently featured in anything related to Arknights as its face. Amiya is the leader of Rhodes Island and leads the island in fighting for the future of the Infected and striving to exorcise the dark shadow of Originium from the land.", "links": {"website": ["https://www.arknights.global", "https://en.wikipedia.org/wiki/Arknights"], "subreddit": ["arknights"], "discord": ["arknights"]}, "path": {"93-258": [[-711, 200], [-716, 185], [-717, 167], [-722, 170], [-722, 188], [-735, 189], [-749, 163], [-750, 174], [-736, 194], [-739, 206], [-735, 216], [-736, 229], [-722, 240], [-712, 239], [-720, 228], [-716, 228], [-716, 209]]}, "center": {"93-258": [-725, 201]}}, -{"id": 776, "name": "Hollandse Nieuwe", "description": "Hollandse Nieuwe is herring caught in the North Sea that is eaten raw during a certain period of the year in the Netherlands.", "links": {"website": ["https://nl.wikipedia.org/wiki/Hollandse_Nieuwe"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"92-258": [[542, -451], [551, -459], [542, -465], [532, -466], [531, -469], [519, -474], [517, -472], [524, -465], [524, -460], [530, -457]]}, "center": {"92-258": [540, -459]}}, -{"id": 777, "name": "Bruder muss los (Pedalo Meme)", "description": "This is a german Meme.\nBasically every german child knows these things. At one point in our education, we are supposed to be standing on those things.", "links": {"website": ["https://german-memes.fandom.com/de/wiki/Bruder_muss_los"]}, "path": {"60-258": [[514, -450], [554, -448], [552, -391], [512, -392]]}, "center": {"60-258": [533, -420]}}, -{"id": 778, "name": "Currywurst", "description": "Currywurst is a fast food dish of German origin consisting of steamed, fried sausage, usually pork (German: Bratwurst), typically cut into bite-sized chunks and seasoned with curry ketchup, a sauce based on spiced ketchup or tomato paste topped with curry powder, or a ready-made ketchup seasoned with curry and other spices. \n\nThe dish is often served with chips. (French Fries)", "links": {"website": ["https://en.wikipedia.org/wiki/Currywurst"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"14-140": [[483, -420], [482, -420], [481, -419], [479, -419], [478, -418], [476, -418], [475, -417], [472, -417], [471, -416], [469, -416], [468, -415], [465, -415], [464, -414], [459, -414], [458, -413], [453, -413], [452, -412], [442, -412], [441, -413], [440, -413], [439, -414], [437, -414], [436, -415], [435, -415], [434, -414], [432, -414], [430, -416], [430, -417], [434, -421], [433, -421], [432, -420], [431, -420], [430, -419], [429, -419], [427, -417], [426, -417], [423, -420], [423, -421], [424, -422], [425, -422], [426, -423], [427, -423], [428, -424], [429, -424], [426, -424], [425, -423], [423, -423], [422, -422], [421, -422], [419, -424], [419, -425], [421, -427], [424, -427], [425, -428], [427, -428], [428, -429], [432, -429], [431, -429], [429, -431], [428, -431], [427, -432], [426, -432], [422, -436], [422, -437], [424, -439], [425, -439], [427, -437], [428, -437], [430, -435], [432, -435], [434, -433], [435, -433], [430, -438], [429, -438], [428, -439], [428, -441], [430, -443], [431, -443], [440, -434], [441, -434], [443, -436], [439, -440], [439, -442], [440, -443], [442, -443], [446, -439], [447, -439], [446, -440], [446, -441], [441, -446], [441, -447], [443, -449], [444, -449], [448, -445], [448, -444], [451, -441], [452, -441], [451, -442], [451, -443], [450, -444], [450, -445], [452, -447], [453, -447], [455, -445], [455, -444], [456, -443], [456, -442], [457, -441], [458, -441], [458, -442], [460, -444], [460, -445], [461, -446], [461, -447], [462, -448], [463, -448], [465, -446], [465, -444], [464, -443], [464, -442], [463, -441], [463, -440], [462, -439], [462, -438], [463, -438], [466, -441], [466, -442], [470, -446], [470, -447], [472, -449], [473, -449], [475, -447], [475, -446], [472, -443], [472, -442], [468, -438], [473, -438], [474, -437], [477, -437], [478, -436], [481, -436], [484, -434], [485, -434], [486, -433], [487, -433], [490, -430], [490, -426], [487, -423], [487, -422], [486, -421], [485, -421]], "141-258": [[483, -420], [482, -420], [481, -419], [479, -419], [478, -418], [476, -418], [475, -417], [472, -417], [471, -416], [469, -416], [468, -415], [465, -415], [464, -414], [459, -414], [458, -413], [453, -413], [452, -412], [442, -412], [441, -413], [440, -413], [439, -414], [437, -414], [436, -415], [435, -415], [434, -414], [432, -414], [430, -416], [430, -417], [434, -421], [433, -421], [432, -420], [431, -420], [430, -419], [429, -419], [427, -417], [426, -417], [423, -420], [423, -421], [424, -422], [425, -422], [426, -423], [427, -423], [428, -424], [429, -424], [426, -424], [425, -423], [423, -423], [422, -422], [421, -422], [419, -424], [419, -425], [421, -427], [424, -427], [425, -428], [427, -428], [428, -429], [432, -429], [431, -429], [429, -431], [428, -431], [427, -432], [426, -432], [422, -436], [422, -437], [424, -439], [425, -439], [427, -437], [428, -437], [430, -435], [432, -435], [434, -433], [435, -433], [430, -438], [429, -438], [428, -439], [428, -441], [430, -443], [431, -443], [440, -434], [441, -434], [443, -436], [439, -440], [439, -442], [440, -443], [442, -443], [446, -439], [447, -439], [446, -440], [446, -441], [441, -446], [441, -447], [443, -449], [444, -449], [448, -445], [448, -444], [451, -441], [452, -441], [451, -442], [451, -443], [450, -444], [450, -445], [452, -447], [453, -447], [455, -445], [455, -444], [456, -443], [456, -442], [457, -441], [458, -441], [458, -442], [460, -444], [460, -445], [461, -446], [461, -447], [462, -448], [463, -448], [465, -446], [465, -444], [464, -443], [464, -442], [463, -441], [463, -440], [462, -439], [462, -438], [463, -438], [466, -441], [466, -442], [470, -446], [470, -447], [472, -449], [473, -449], [475, -447], [475, -446], [472, -443], [472, -442], [468, -438], [473, -438], [474, -437], [477, -437], [478, -436], [481, -436], [483, -434], [484, -434], [485, -433], [485, -432], [484, -431], [484, -421]]}, "center": {"14-140": [453, -427], "141-258": [453, -427]}}, -{"id": 779, "name": "Reksio", "description": "Reksio - popular Polish cartoon dog.", "links": {"website": ["https://en.wikipedia.org/wiki/Reksio"], "subreddit": ["poland", "polska"]}, "path": {"97-258": [[525, -121], [518, -130], [513, -130], [509, -135], [508, -143], [513, -147], [518, -147], [523, -142], [521, -138], [521, -132], [526, -137], [528, -141], [529, -147], [535, -144], [538, -146], [543, -143], [541, -139], [541, -128], [538, -125], [542, -121]]}, "center": {"97-258": [531, -130]}}, -{"id": 780, "name": "Zagrebački električni tramvaj (ZET)", "description": "The Zagrebački električni tramvaj (ZET) (Eng: Zagreb Electric Tram) is the transit authority responsible for public transport in Zagreb, the capital of Croatia, and parts of the surrounding Zagreb County. It is one of the municipal companies controlled by Zagreb Holding.", "links": {"website": ["https://en.wikipedia.org/wiki/Zagrebački_električni_tramvaj"], "subreddit": ["Croatia"]}, "path": {"108-258": [[397, -128], [390, -128], [392, -131], [390, -132], [389, -131], [388, -132], [387, -132], [386, -131], [389, -128], [385, -128], [382, -126], [382, -124], [383, -122], [385, -121], [393, -121], [394, -123], [396, -125], [397, -125]]}, "center": {"108-258": [387, -125]}}, -{"id": 781, "name": "NHS Heart", "description": "The National Health Service (NHS) is the common name used by a set of three publicly funded healthcare systems in the United Kingdom (NHS England, NHS Scotland and NHS Wales). \n\nThe NHS received particular praise and appreciation for its efforts to help those affected by COVID-19; in addition, many have protested the government's reduced funding for the service in recent years.", "links": {"website": ["https://en.wikipedia.org/wiki/National_Health_Service"]}, "path": {"108-258": [[-284, -328], [-284, -323], [-264, -323], [-264, -328]]}, "center": {"108-258": [-274, -325]}}, +{"id": 766, "name": "Paimon", "description": "Paimon is a companion of the main character in Genshin Impact an action role-playing game developed by miHoYo and published by by HoYoverse worldwide.", "links": {"website": ["https://genshin.hoyoverse.com/ru/"], "subreddit": ["Genshin_Impact"]}, "path": {"95-258, T": [[-652, 206], [-648, 194], [-650, 178], [-654, 169], [-649, 167], [-649, 164], [-663, 159], [-675, 162], [-672, 166], [-680, 176], [-685, 176], [-681, 179], [-681, 188], [-671, 194], [-663, 195]]}, "center": {"95-258, T": [-666, 181]}}, +{"id": 767, "name": "Dante", "description": "The Executive Manager of Limbus Company, and main character of the game Limbus Company a Turn-Based Strategy RPG Gacha Game developed and published by South Korean independent video game studio Project Moon. Having lost both their memory and their original head, they now work alongside the Sinners in their quest to recover both and retrieve the Golden Boughs.", "links": {"website": ["https://limbuscompany.com"], "subreddit": ["limbuscompany", "Project_Moon"]}, "path": {"92-258, T": [[-722, 179], [-728, 173], [-730, 167], [-736, 163], [-731, 161], [-730, 144], [-726, 141], [-729, 135], [-722, 131], [-723, 138], [-709, 131], [-689, 133], [-694, 137], [-699, 138], [-710, 166], [-715, 160], [-717, 167], [-721, 169], [-721, 178]]}, "center": {"92-258, T": [-716, 148]}}, +{"id": 769, "name": "TouristHistories", "description": "TouristHistories or short Touri is a german twitch streamer", "links": {"website": ["https://www.twitch.tv/touristhistories"]}, "path": {"108-258, T": [[-191, -331], [-179, -331], [-179, -347], [-187, -347], [-191, -341]]}, "center": {"108-258, T": [-185, -339]}}, +{"id": 770, "name": "PokeIsland Palm Tree", "description": "Palm tree on a sandy island beach, symbol of the PokeIsland/Poke's Island YouTube/Discord community.", "links": {"website": ["https://www.youtube.com/@PokeIsland"], "subreddit": ["pokeislandyt"], "discord": ["KVaeKYWY"]}, "path": {"108-258, T": [[-161, 383], [-157, 383], [-157, 388], [-161, 388]]}, "center": {"108-258, T": [-159, 386]}}, +{"id": 771, "name": "Fischersnet", "description": "Fischersnet is a german twitch streamer, YouTuber and Podcaster", "links": {"website": ["https://www.twitch.tv/fischersnet", "https://www.youtube.com/@fischersnet", "https://open.spotify.com/show/3KxS1kDWVG32VetkKtmUDx?si=6a134fc155d443f3"]}, "path": {"107-258, T": [[-293, -348], [-288, -352], [-285, -353], [-284, -354], [-284, -356], [-287, -360], [-288, -364], [-287, -372], [-285, -378], [-283, -383], [-272, -384], [-264, -378], [-263, -371], [-263, -363], [-266, -356], [-262, -351], [-284, -341], [-287, -344]]}, "center": {"107-258, T": [-275, -366]}}, +{"id": 772, "name": "Hello Internet", "description": "The logo of the podcast \"Hello Internet\" featuring content creators Brady Haran and CGP Grey.", "links": {"website": ["http://www.hellointernet.fm/", "https://en.wikipedia.org/wiki/Hello_Internet"], "subreddit": ["HelloInternet"]}, "path": {"81-258, T": [[227, 129], [239, 129], [239, 141], [227, 141]]}, "center": {"81-258, T": [233, 135]}}, +{"id": 773, "name": "Royal corgi", "description": "A corgi is a dog breed that originated in Wales, United Kingdom. Corgis are often associated with the British royal family, with Queen Elizabeth II having owned several corgis during her reign.", "links": {"website": ["https://en.wikipedia.org/wiki/Royal_corgis"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"54-77, 84-258, T": [[-212, -302], [-217, -289], [-220, -289], [-220, -283], [-217, -280], [-217, -275], [-218, -275], [-218, -271], [-213, -264], [-213, -263], [-214, -262], [-214, -259], [-184, -259], [-184, -282], [-186, -284], [-187, -284], [-189, -282], [-189, -281], [-192, -281], [-193, -280], [-197, -280], [-198, -279], [-202, -282], [-199, -289], [-199, -296], [-202, -299], [-203, -299], [-205, -297], [-208, -297], [-208, -299], [-211, -302]]}, "center": {"54-77, 84-258, T": [-203, -270]}}, +{"id": 774, "name": "GrandPOOBear", "description": "A popular variety gaming Twitch streamer who predominately plays Mario games. He participated due to the Twitch rivals event.", "links": {"website": ["https://www.twitch.tv/grandpoobear"], "discord": ["0gOY9qyDVUxk59ar"]}, "path": {"56-258, T": [[29, 250], [147, 250], [147, 284], [30, 284]]}, "center": {"56-258, T": [88, 267]}}, +{"id": 775, "name": "Amiya", "description": "Amiya is the main protagonist of Arknights, a mobile game made by Yostar. She is considered the mascot of the series and is frequently featured in anything related to Arknights as its face. Amiya is the leader of Rhodes Island and leads the island in fighting for the future of the Infected and striving to exorcise the dark shadow of Originium from the land.", "links": {"website": ["https://www.arknights.global", "https://en.wikipedia.org/wiki/Arknights"], "subreddit": ["arknights"], "discord": ["arknights"]}, "path": {"93-258, T": [[-711, 200], [-716, 185], [-717, 167], [-722, 170], [-722, 188], [-735, 189], [-749, 163], [-750, 174], [-736, 194], [-739, 206], [-735, 216], [-736, 229], [-722, 240], [-712, 239], [-720, 228], [-716, 228], [-716, 209]]}, "center": {"93-258, T": [-725, 201]}}, +{"id": 776, "name": "Hollandse Nieuwe", "description": "Hollandse Nieuwe is herring caught in the North Sea that is eaten raw during a certain period of the year in the Netherlands.", "links": {"website": ["https://nl.wikipedia.org/wiki/Hollandse_Nieuwe"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"92-258, T": [[542, -451], [551, -459], [542, -465], [532, -466], [531, -469], [519, -474], [517, -472], [524, -465], [524, -460], [530, -457]]}, "center": {"92-258, T": [540, -459]}}, +{"id": 777, "name": "Bruder muss los (Pedalo Meme)", "description": "This is a german Meme.\nBasically every german child knows these things. At one point in our education, we are supposed to be standing on those things.", "links": {"website": ["https://german-memes.fandom.com/de/wiki/Bruder_muss_los"]}, "path": {"60-258, T": [[514, -450], [554, -448], [552, -391], [512, -392]]}, "center": {"60-258, T": [533, -420]}}, +{"id": 778, "name": "Currywurst", "description": "Currywurst is a fast food dish of German origin consisting of steamed, fried sausage, usually pork (German: Bratwurst), typically cut into bite-sized chunks and seasoned with curry ketchup, a sauce based on spiced ketchup or tomato paste topped with curry powder, or a ready-made ketchup seasoned with curry and other spices. \n\nThe dish is often served with chips. (French Fries)", "links": {"website": ["https://en.wikipedia.org/wiki/Currywurst"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"14-140": [[483, -420], [482, -420], [481, -419], [479, -419], [478, -418], [476, -418], [475, -417], [472, -417], [471, -416], [469, -416], [468, -415], [465, -415], [464, -414], [459, -414], [458, -413], [453, -413], [452, -412], [442, -412], [441, -413], [440, -413], [439, -414], [437, -414], [436, -415], [435, -415], [434, -414], [432, -414], [430, -416], [430, -417], [434, -421], [433, -421], [432, -420], [431, -420], [430, -419], [429, -419], [427, -417], [426, -417], [423, -420], [423, -421], [424, -422], [425, -422], [426, -423], [427, -423], [428, -424], [429, -424], [426, -424], [425, -423], [423, -423], [422, -422], [421, -422], [419, -424], [419, -425], [421, -427], [424, -427], [425, -428], [427, -428], [428, -429], [432, -429], [431, -429], [429, -431], [428, -431], [427, -432], [426, -432], [422, -436], [422, -437], [424, -439], [425, -439], [427, -437], [428, -437], [430, -435], [432, -435], [434, -433], [435, -433], [430, -438], [429, -438], [428, -439], [428, -441], [430, -443], [431, -443], [440, -434], [441, -434], [443, -436], [439, -440], [439, -442], [440, -443], [442, -443], [446, -439], [447, -439], [446, -440], [446, -441], [441, -446], [441, -447], [443, -449], [444, -449], [448, -445], [448, -444], [451, -441], [452, -441], [451, -442], [451, -443], [450, -444], [450, -445], [452, -447], [453, -447], [455, -445], [455, -444], [456, -443], [456, -442], [457, -441], [458, -441], [458, -442], [460, -444], [460, -445], [461, -446], [461, -447], [462, -448], [463, -448], [465, -446], [465, -444], [464, -443], [464, -442], [463, -441], [463, -440], [462, -439], [462, -438], [463, -438], [466, -441], [466, -442], [470, -446], [470, -447], [472, -449], [473, -449], [475, -447], [475, -446], [472, -443], [472, -442], [468, -438], [473, -438], [474, -437], [477, -437], [478, -436], [481, -436], [484, -434], [485, -434], [486, -433], [487, -433], [490, -430], [490, -426], [487, -423], [487, -422], [486, -421], [485, -421]], "141-258, T": [[483, -420], [482, -420], [481, -419], [479, -419], [478, -418], [476, -418], [475, -417], [472, -417], [471, -416], [469, -416], [468, -415], [465, -415], [464, -414], [459, -414], [458, -413], [453, -413], [452, -412], [442, -412], [441, -413], [440, -413], [439, -414], [437, -414], [436, -415], [435, -415], [434, -414], [432, -414], [430, -416], [430, -417], [434, -421], [433, -421], [432, -420], [431, -420], [430, -419], [429, -419], [427, -417], [426, -417], [423, -420], [423, -421], [424, -422], [425, -422], [426, -423], [427, -423], [428, -424], [429, -424], [426, -424], [425, -423], [423, -423], [422, -422], [421, -422], [419, -424], [419, -425], [421, -427], [424, -427], [425, -428], [427, -428], [428, -429], [432, -429], [431, -429], [429, -431], [428, -431], [427, -432], [426, -432], [422, -436], [422, -437], [424, -439], [425, -439], [427, -437], [428, -437], [430, -435], [432, -435], [434, -433], [435, -433], [430, -438], [429, -438], [428, -439], [428, -441], [430, -443], [431, -443], [440, -434], [441, -434], [443, -436], [439, -440], [439, -442], [440, -443], [442, -443], [446, -439], [447, -439], [446, -440], [446, -441], [441, -446], [441, -447], [443, -449], [444, -449], [448, -445], [448, -444], [451, -441], [452, -441], [451, -442], [451, -443], [450, -444], [450, -445], [452, -447], [453, -447], [455, -445], [455, -444], [456, -443], [456, -442], [457, -441], [458, -441], [458, -442], [460, -444], [460, -445], [461, -446], [461, -447], [462, -448], [463, -448], [465, -446], [465, -444], [464, -443], [464, -442], [463, -441], [463, -440], [462, -439], [462, -438], [463, -438], [466, -441], [466, -442], [470, -446], [470, -447], [472, -449], [473, -449], [475, -447], [475, -446], [472, -443], [472, -442], [468, -438], [473, -438], [474, -437], [477, -437], [478, -436], [481, -436], [483, -434], [484, -434], [485, -433], [485, -432], [484, -431], [484, -421]]}, "center": {"14-140": [453, -427], "141-258, T": [453, -427]}}, +{"id": 779, "name": "Reksio", "description": "Reksio - popular Polish cartoon dog.", "links": {"website": ["https://en.wikipedia.org/wiki/Reksio"], "subreddit": ["poland", "polska"]}, "path": {"97-258, T": [[525, -121], [518, -130], [513, -130], [509, -135], [508, -143], [513, -147], [518, -147], [523, -142], [521, -138], [521, -132], [526, -137], [528, -141], [529, -147], [535, -144], [538, -146], [543, -143], [541, -139], [541, -128], [538, -125], [542, -121]]}, "center": {"97-258, T": [531, -130]}}, +{"id": 780, "name": "Zagrebački električni tramvaj (ZET)", "description": "The Zagrebački električni tramvaj (ZET) (Eng: Zagreb Electric Tram) is the transit authority responsible for public transport in Zagreb, the capital of Croatia, and parts of the surrounding Zagreb County. It is one of the municipal companies controlled by Zagreb Holding.", "links": {"website": ["https://en.wikipedia.org/wiki/Zagrebački_električni_tramvaj"], "subreddit": ["Croatia"]}, "path": {"108-258, T": [[397, -128], [390, -128], [392, -131], [390, -132], [389, -131], [388, -132], [387, -132], [386, -131], [389, -128], [385, -128], [382, -126], [382, -124], [383, -122], [385, -121], [393, -121], [394, -123], [396, -125], [397, -125]]}, "center": {"108-258, T": [387, -125]}}, +{"id": 781, "name": "NHS Heart", "description": "The National Health Service (NHS) is the common name used by a set of three publicly funded healthcare systems in the United Kingdom (NHS England, NHS Scotland and NHS Wales). \n\nThe NHS received particular praise and appreciation for its efforts to help those affected by COVID-19; in addition, many have protested the government's reduced funding for the service in recent years.", "links": {"website": ["https://en.wikipedia.org/wiki/National_Health_Service"]}, "path": {"108-258, T": [[-284, -328], [-284, -323], [-264, -323], [-264, -328]]}, "center": {"108-258, T": [-274, -325]}}, {"id": 782, "name": "The Stanley Parable", "description": "The Stanley Parable is a story-based video game designed and written by developers Davey Wreden and William Pugh. The game carries themes such as choice in video games, the relationship between a game creator and player, and predestination/fate.", "links": {"website": ["https://store.steampowered.com/app/221910/The_Stanley_Parable/", "https://en.wikipedia.org/wiki/The_Stanley_Parable"], "subreddit": ["thestanleyparable"], "discord": ["kRpkG8Qgc6"]}, "path": {"104-125": [[-802, 358], [-785, 358], [-785, 373], [-802, 373]]}, "center": {"104-125": [-793, 366]}}, -{"id": 783, "name": "the german Bread & r/Brot", "description": "The famous german Bread is a traditional food baked from a dough made from ground cereals (flour), water, a leavening agent and usually other ingredients. Bread is one of the staple foods.\n\nr/Brot is the german subreddit dedicated for bread. (lit. Brot = Bread)", "links": {"website": ["https://de.wikipedia.org/wiki/Brot"], "subreddit": ["brot", "placede"], "discord": ["placede"]}, "path": {"97-258": [[774, -450], [812, -448], [813, -419], [775, -419]]}, "center": {"97-258": [790, -434]}}, -{"id": 784, "name": "\"Wat hangt er aan de waslijn?\" \"Was?\"", "description": "Collaboration between The Netherlands and Germany to joke about the Dutch and German languages.\n\nA Dutch person asks a German: \"Wat hangt er aan de waslijn?\"\n(\"What's hanging on the laundry line?\" in English)\n\nThe German doesn't understand and asks \"Was? \" ('What?' in English) but \"Was\" also means Laundry in Dutch.\n\nThe joke is that the German is clueless about what is being said, but still answered the question correctly.", "links": {"subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"99-258": [[682, -457], [682, -442], [704, -442], [704, -450], [798, -450], [798, -456], [796, -458], [682, -458]]}, "center": {"99-258": [690, -450]}}, -{"id": 785, "name": "March 7th", "description": "March 7th is one of the playable main characters in the game Honkai: Star Rail a role-playing gacha video game developed by miHoYo and published worldwide by its subsidiary HoYoverse.", "links": {"website": ["https://hsr.hoyoverse.com", "https://en.wikipedia.org/wiki/Honkai:_Star_Rail"], "subreddit": ["HonkaiStarRail"]}, "path": {"99-258": [[-638, 165], [-634, 155], [-636, 142], [-649, 132], [-662, 134], [-668, 146], [-667, 155], [-663, 165], [-651, 170], [-639, 166]]}, "center": {"99-258": [-651, 151]}}, -{"id": 786, "name": "Tagesschau Logo", "description": "The \"Tagesschau\" is the main news brand used by the ARD. It is broadcast on \"Das Erste\" throughout the day, with the main edition being broadcast at 20:00/8PM.\n\nThis logo is also used for the \"Tagesthemen\", the main evening News that are broadcast on \"Das Erste\".", "links": {"website": ["https://www.tagesschau.de/", "https://[https://en.wikipedia.org/wiki/Tagesschau_(German_TV_programme)#/](https://en.wikipedia.org/wiki/Tagesschau_(German_TV_programme)#/)"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"104-258": [[-515, -416], [-515, -427], [-514, -430], [-512, -434], [-509, -438], [-506, -442], [-502, -445], [-497, -447], [-494, -448], [-489, -449], [-483, -449], [-478, -448], [-476, -447], [-472, -445], [-469, -443], [-465, -438], [-460, -429], [-459, -415], [-464, -404], [-471, -398], [-479, -394], [-488, -392], [-496, -394], [-502, -397], [-505, -399], [-508, -402], [-510, -404], [-512, -408], [-514, -412]]}, "center": {"104-258": [-487, -421]}}, -{"id": 787, "name": "Meister Eder und sein Pumuckl", "description": "Those are characters from a famous german tv show for everyone. Meister Eder is a carpenter in munich and Pumuckl is a goblin, who makes his life difficult", "links": {"website": ["https://de.wikipedia.org/wiki/Meister_Eder_und_sein_Pumuckl"], "subreddit": ["placeDE"], "discord": ["placede"]}, "path": {"69-258": [[728, -436], [772, -436], [771, -390], [724, -390]]}, "center": {"69-258": [749, -413]}}, -{"id": 788, "name": "Alliance between the Netherlands and Germany", "description": "Image of the alliance between the Netherlands and Germany.\nThey each protected the other and also helped with buildup. Built in the style of polandball comics.", "links": {"subreddit": ["placede", "placeNL", "polandball"], "discord": ["placede"]}, "path": {"110-258": [[-869, -431], [-804, -431], [-804, -468], [-869, -468]]}, "center": {"110-258": [-836, -449]}}, -{"id": 789, "name": "German Steam Lokomotive DR 18 201", "description": "The express locomotive with the number 18 201 of the Deutsche Reichsbahn was built between 1960 and 1961 at the Reichsbahn repair plant in Meiningen from parts of the Henschel-Wegmann train locomotive 61 002, the tender of the 44 468 and parts of the H 45 024 and a locomotive of the DR class 41. The Giesl ejector was procured in 1956 for 50 831 as a test specimen from Austria and later relocated. The locomotive is still the fastest operable steam locomotive in the world.", "links": {"website": ["https://de.wikipedia.org/wiki/DR_18_201"]}, "path": {"64-258": [[616, -370], [727, -370], [728, -390], [638, -390], [666, -411], [643, -411], [616, -390], [612, -370]]}, "center": {"64-258": [628, -382]}}, -{"id": 790, "name": "Pettersson and Findus", "description": "Pettersson and Findus is a swedish childrens book series, which became popular among german children.\nThe Books are joined by films to this day.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"109-258": [[-567, -396], [-566, -399], [-571, -401], [-574, -398], [-574, -394], [-572, -392], [-564, -393], [-541, -390], [-520, -390], [-521, -395], [-531, -406], [-532, -411], [-528, -415], [-525, -412], [-520, -412], [-526, -418], [-525, -422], [-518, -429], [-519, -433], [-523, -436], [-529, -435], [-537, -430], [-545, -433], [-549, -430], [-548, -427], [-544, -424], [-544, -417], [-545, -415], [-549, -416], [-551, -413], [-550, -411], [-548, -410], [-545, -410], [-545, -407], [-548, -405], [-548, -403], [-547, -402], [-542, -402], [-540, -403], [-538, -404], [-536, -401], [-538, -398], [-538, -396], [-539, -393], [-541, -392], [-541, -391], [-563, -394], [-561, -396], [-561, -404], [-564, -407], [-567, -408], [-572, -409], [-572, -414], [-567, -415], [-565, -416], [-561, -420], [-558, -425], [-557, -430], [-558, -431], [-560, -431], [-561, -428], [-563, -424], [-565, -427], [-568, -426], [-570, -427], [-571, -429], [-567, -432], [-560, -436], [-557, -438], [-557, -442], [-561, -442], [-561, -439], [-565, -437], [-565, -443], [-572, -444], [-574, -445], [-575, -442], [-577, -443], [-577, -439], [-577, -437], [-577, -435], [-579, -435], [-586, -441], [-589, -442], [-590, -439], [-580, -431], [-580, -429], [-583, -427], [-583, -419], [-580, -416], [-577, -413], [-576, -409], [-574, -407], [-573, -407], [-572, -406], [-570, -406], [-569, -405], [-567, -405], [-566, -404], [-565, -404], [-564, -403], [-564, -398], [-566, -396], [-568, -395]]}, "center": {"109-258": [-535, -421]}}, -{"id": 791, "name": "Karl Lauterbach", "description": "German Health Minister Karl Lauterbach, which smokes a joint. He announced a law, that hopefully will legalize Cannabis in the future.", "links": {"website": ["https://de.wikipedia.org/wiki/Karl_Lauterbach"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"104-258": [[-624, -450], [-626, -442], [-626, -428], [-626, -422], [-624, -416], [-621, -409], [-617, -402], [-616, -400], [-615, -398], [-613, -398], [-612, -401], [-610, -404], [-608, -401], [-607, -399], [-602, -400], [-597, -400], [-596, -401], [-594, -403], [-592, -403], [-592, -406], [-592, -409], [-591, -410], [-591, -412], [-589, -414], [-588, -415], [-588, -419], [-589, -419], [-591, -424], [-589, -425], [-588, -429], [-590, -431], [-592, -433], [-595, -435], [-596, -435], [-599, -436], [-601, -436], [-605, -436], [-607, -436], [-609, -435], [-610, -434], [-611, -433], [-612, -432], [-613, -431], [-614, -430], [-615, -427], [-615, -425], [-616, -424], [-616, -422], [-616, -420], [-615, -418], [-614, -418], [-614, -417], [-615, -416], [-615, -415], [-615, -414], [-614, -412], [-614, -411], [-614, -409], [-613, -408], [-612, -406], [-612, -405], [-613, -404], [-614, -404], [-615, -405], [-615, -406], [-617, -407], [-617, -408], [-618, -409], [-619, -411], [-619, -413], [-621, -415], [-621, -417], [-621, -423], [-622, -425], [-621, -428], [-619, -432], [-617, -437], [-615, -439], [-614, -440], [-612, -442], [-609, -443], [-607, -444], [-603, -446], [-599, -447], [-595, -447], [-591, -448], [-587, -448], [-583, -450]]}, "center": {"104-258": [-602, -419]}}, -{"id": 792, "name": "Oosterscheldekering", "description": "The Oosterscheldekering is the largest of the Deltawerken, a series of dams and storm surge barriers to defend the Zeeland province of The Netherlands from the sea.", "links": {"website": ["https://nl.wikipedia.org/wiki/Oosterscheldekering"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"15-258": [[302, -451], [348, -451], [349, -451], [349, -464], [348, -464], [348, -467], [344, -467], [344, -464], [343, -464], [343, -461], [340, -461], [340, -464], [339, -464], [339, -467], [335, -467], [335, -464], [334, -464], [334, -461], [331, -461], [331, -464], [330, -464], [330, -467], [326, -467], [326, -464], [325, -464], [325, -461], [322, -461], [322, -464], [321, -464], [321, -467], [317, -467], [317, -464], [316, -464], [316, -461], [313, -461], [313, -464], [312, -464], [312, -467], [308, -467], [308, -464], [307, -464], [307, -461], [304, -461], [304, -464], [303, -464], [303, -467], [299, -467], [299, -464], [298, -464], [298, -459], [299, -458]]}, "center": {"15-258": [327, -456]}}, -{"id": 793, "name": "Emma", "description": "Emma is the name of Luke's steam locomotive.\nThe origins are in the book \"Jim Knopf und Lukas der Lokomotivführer\". It is a children's book written by German author Michael Ende in 1960.", "links": {"website": ["https://de.wikipedia.org/wiki/Jim_Knopf_und_Lukas_der_Lokomotivführer#Emma"]}, "path": {"64-258": [[591, -370], [599, -370], [599, -372], [607, -372], [609, -374], [610, -374], [611, -373], [613, -375], [610, -377], [610, -379], [611, -380], [611, -382], [610, -383], [609, -382], [608, -383], [607, -383], [607, -384], [609, -386], [610, -386], [611, -387], [611, -388], [610, -389], [596, -389], [596, -385], [594, -385], [593, -386], [591, -384], [590, -385], [590, -389], [591, -390], [591, -391], [590, -392], [590, -396], [596, -408], [597, -411], [605, -420], [608, -437], [604, -442], [602, -422], [590, -409], [586, -400], [586, -392], [585, -391], [585, -390], [586, -389], [586, -383], [584, -381], [584, -377], [582, -375], [584, -373], [585, -374], [586, -374], [586, -372], [591, -372]]}, "center": {"64-258": [601, -379]}}, -{"id": 794, "name": "Lightmotif Logo and Owuru heart", "description": "The logo of Lightmotif, a German Vtuber agency with the 5 Talents Finstey, MonaEuphelia, Lunywoo, Jinja and Laphipi. And a heart in the bottom left corner representing German VTuber Owuru_", "links": {"website": ["https://lightmotif.tv", "https://www.twitch.tv/finstey", "https://www.twitch.tv/jinja", "https://www.twitch.tv/monaeuphelia", "https://www.twitch.tv/lunywoo", "https://www.twitch.tv/laphipi", "https://www.twitch.tv/owuru_"], "discord": ["mq7AxCVfQp"]}, "path": {"110-258": [[-558, -293], [-558, -311], [-540, -311], [-540, -293]]}, "center": {"110-258": [-549, -302]}}, -{"id": 796, "name": "German Twitch Streamer Hallo_alexa_", "description": "Made by Hallo Alexa and her Community.", "links": {"website": ["https://www.twitch.tv/hallo_alexa_"], "discord": ["fCUT5bF"]}, "path": {"49-258": [[230, -257], [230, -245], [249, -245], [249, -251], [248, -251], [248, -257]]}, "center": {"49-258": [240, -251]}}, -{"id": 797, "name": "Rimuru Tempest", "description": "Depicts Rimuru Tempest from the manga and LN \"That time I got reincarnated as a slime.\"", "links": {"website": ["https://mangadex.org/title/e78a489b-6632-4d61-b00b-5206f5b8b22b/tensei-shitara-slime-datta-ken"], "subreddit": ["TenseiSlime"], "discord": ["EbMKWCxP"]}, "path": {"110-258": [[-117, 386], [-129, 386], [-129, 389], [-131, 389], [-131, 390], [-132, 390], [-132, 391], [-133, 391], [-133, 394], [-134, 394], [-134, 401], [-133, 401], [-133, 402], [-132, 403], [-130, 404], [-129, 405], [-113, 405], [-113, 404], [-111, 404], [-111, 403], [-110, 403], [-110, 402], [-110, 401], [-109, 401], [-109, 391], [-110, 391], [-110, 390], [-111, 390], [-111, 389], [-112, 389], [-112, 388], [-114, 388], [-114, 386]]}, "center": {"110-258": [-121, 396]}}, +{"id": 783, "name": "the german Bread & r/Brot", "description": "The famous german Bread is a traditional food baked from a dough made from ground cereals (flour), water, a leavening agent and usually other ingredients. Bread is one of the staple foods.\n\nr/Brot is the german subreddit dedicated for bread. (lit. Brot = Bread)", "links": {"website": ["https://de.wikipedia.org/wiki/Brot"], "subreddit": ["brot", "placede"], "discord": ["placede"]}, "path": {"97-258, T": [[774, -450], [812, -448], [813, -419], [775, -419]]}, "center": {"97-258, T": [790, -434]}}, +{"id": 784, "name": "\"Wat hangt er aan de waslijn?\" \"Was?\"", "description": "Collaboration between The Netherlands and Germany to joke about the Dutch and German languages.\n\nA Dutch person asks a German: \"Wat hangt er aan de waslijn?\"\n(\"What's hanging on the laundry line?\" in English)\n\nThe German doesn't understand and asks \"Was? \" ('What?' in English) but \"Was\" also means Laundry in Dutch.\n\nThe joke is that the German is clueless about what is being said, but still answered the question correctly.", "links": {"subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"99-258, T": [[682, -457], [682, -442], [704, -442], [704, -450], [798, -450], [798, -456], [796, -458], [682, -458]]}, "center": {"99-258, T": [690, -450]}}, +{"id": 785, "name": "March 7th", "description": "March 7th is one of the playable main characters in the game Honkai: Star Rail a role-playing gacha video game developed by miHoYo and published worldwide by its subsidiary HoYoverse.", "links": {"website": ["https://hsr.hoyoverse.com", "https://en.wikipedia.org/wiki/Honkai:_Star_Rail"], "subreddit": ["HonkaiStarRail"]}, "path": {"99-258, T": [[-638, 165], [-634, 155], [-636, 142], [-649, 132], [-662, 134], [-668, 146], [-667, 155], [-663, 165], [-651, 170], [-639, 166]]}, "center": {"99-258, T": [-651, 151]}}, +{"id": 786, "name": "Tagesschau Logo", "description": "The \"Tagesschau\" is the main news brand used by the ARD. It is broadcast on \"Das Erste\" throughout the day, with the main edition being broadcast at 20:00/8PM.\n\nThis logo is also used for the \"Tagesthemen\", the main evening News that are broadcast on \"Das Erste\".", "links": {"website": ["https://www.tagesschau.de/", "https://[https://en.wikipedia.org/wiki/Tagesschau_(German_TV_programme)#/](https://en.wikipedia.org/wiki/Tagesschau_(German_TV_programme)#/)"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"104-258, T": [[-515, -416], [-515, -427], [-514, -430], [-512, -434], [-509, -438], [-506, -442], [-502, -445], [-497, -447], [-494, -448], [-489, -449], [-483, -449], [-478, -448], [-476, -447], [-472, -445], [-469, -443], [-465, -438], [-460, -429], [-459, -415], [-464, -404], [-471, -398], [-479, -394], [-488, -392], [-496, -394], [-502, -397], [-505, -399], [-508, -402], [-510, -404], [-512, -408], [-514, -412]]}, "center": {"104-258, T": [-487, -421]}}, +{"id": 787, "name": "Meister Eder und sein Pumuckl", "description": "Those are characters from a famous german tv show for everyone. Meister Eder is a carpenter in munich and Pumuckl is a goblin, who makes his life difficult", "links": {"website": ["https://de.wikipedia.org/wiki/Meister_Eder_und_sein_Pumuckl"], "subreddit": ["placeDE"], "discord": ["placede"]}, "path": {"69-258, T": [[728, -436], [772, -436], [771, -390], [724, -390]]}, "center": {"69-258, T": [749, -413]}}, +{"id": 788, "name": "Alliance between the Netherlands and Germany", "description": "Image of the alliance between the Netherlands and Germany.\nThey each protected the other and also helped with buildup. Built in the style of polandball comics.", "links": {"subreddit": ["placede", "placeNL", "polandball"], "discord": ["placede"]}, "path": {"110-258, T": [[-869, -431], [-804, -431], [-804, -468], [-869, -468]]}, "center": {"110-258, T": [-836, -449]}}, +{"id": 789, "name": "German Steam Lokomotive DR 18 201", "description": "The express locomotive with the number 18 201 of the Deutsche Reichsbahn was built between 1960 and 1961 at the Reichsbahn repair plant in Meiningen from parts of the Henschel-Wegmann train locomotive 61 002, the tender of the 44 468 and parts of the H 45 024 and a locomotive of the DR class 41. The Giesl ejector was procured in 1956 for 50 831 as a test specimen from Austria and later relocated. The locomotive is still the fastest operable steam locomotive in the world.", "links": {"website": ["https://de.wikipedia.org/wiki/DR_18_201"]}, "path": {"64-258, T": [[616, -370], [727, -370], [728, -390], [638, -390], [666, -411], [643, -411], [616, -390], [612, -370]]}, "center": {"64-258, T": [628, -382]}}, +{"id": 790, "name": "Pettersson and Findus", "description": "Pettersson and Findus is a swedish childrens book series, which became popular among german children.\nThe Books are joined by films to this day.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"109-258, T": [[-567, -396], [-566, -399], [-571, -401], [-574, -398], [-574, -394], [-572, -392], [-564, -393], [-541, -390], [-520, -390], [-521, -395], [-531, -406], [-532, -411], [-528, -415], [-525, -412], [-520, -412], [-526, -418], [-525, -422], [-518, -429], [-519, -433], [-523, -436], [-529, -435], [-537, -430], [-545, -433], [-549, -430], [-548, -427], [-544, -424], [-544, -417], [-545, -415], [-549, -416], [-551, -413], [-550, -411], [-548, -410], [-545, -410], [-545, -407], [-548, -405], [-548, -403], [-547, -402], [-542, -402], [-540, -403], [-538, -404], [-536, -401], [-538, -398], [-538, -396], [-539, -393], [-541, -392], [-541, -391], [-563, -394], [-561, -396], [-561, -404], [-564, -407], [-567, -408], [-572, -409], [-572, -414], [-567, -415], [-565, -416], [-561, -420], [-558, -425], [-557, -430], [-558, -431], [-560, -431], [-561, -428], [-563, -424], [-565, -427], [-568, -426], [-570, -427], [-571, -429], [-567, -432], [-560, -436], [-557, -438], [-557, -442], [-561, -442], [-561, -439], [-565, -437], [-565, -443], [-572, -444], [-574, -445], [-575, -442], [-577, -443], [-577, -439], [-577, -437], [-577, -435], [-579, -435], [-586, -441], [-589, -442], [-590, -439], [-580, -431], [-580, -429], [-583, -427], [-583, -419], [-580, -416], [-577, -413], [-576, -409], [-574, -407], [-573, -407], [-572, -406], [-570, -406], [-569, -405], [-567, -405], [-566, -404], [-565, -404], [-564, -403], [-564, -398], [-566, -396], [-568, -395]]}, "center": {"109-258, T": [-535, -421]}}, +{"id": 791, "name": "Karl Lauterbach", "description": "German Health Minister Karl Lauterbach, which smokes a joint. He announced a law, that hopefully will legalize Cannabis in the future.", "links": {"website": ["https://de.wikipedia.org/wiki/Karl_Lauterbach"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"104-258, T": [[-624, -450], [-626, -442], [-626, -428], [-626, -422], [-624, -416], [-621, -409], [-617, -402], [-616, -400], [-615, -398], [-613, -398], [-612, -401], [-610, -404], [-608, -401], [-607, -399], [-602, -400], [-597, -400], [-596, -401], [-594, -403], [-592, -403], [-592, -406], [-592, -409], [-591, -410], [-591, -412], [-589, -414], [-588, -415], [-588, -419], [-589, -419], [-591, -424], [-589, -425], [-588, -429], [-590, -431], [-592, -433], [-595, -435], [-596, -435], [-599, -436], [-601, -436], [-605, -436], [-607, -436], [-609, -435], [-610, -434], [-611, -433], [-612, -432], [-613, -431], [-614, -430], [-615, -427], [-615, -425], [-616, -424], [-616, -422], [-616, -420], [-615, -418], [-614, -418], [-614, -417], [-615, -416], [-615, -415], [-615, -414], [-614, -412], [-614, -411], [-614, -409], [-613, -408], [-612, -406], [-612, -405], [-613, -404], [-614, -404], [-615, -405], [-615, -406], [-617, -407], [-617, -408], [-618, -409], [-619, -411], [-619, -413], [-621, -415], [-621, -417], [-621, -423], [-622, -425], [-621, -428], [-619, -432], [-617, -437], [-615, -439], [-614, -440], [-612, -442], [-609, -443], [-607, -444], [-603, -446], [-599, -447], [-595, -447], [-591, -448], [-587, -448], [-583, -450]]}, "center": {"104-258, T": [-602, -419]}}, +{"id": 792, "name": "Oosterscheldekering", "description": "The Oosterscheldekering is the largest of the Deltawerken, a series of dams and storm surge barriers to defend the Zeeland province of The Netherlands from the sea.", "links": {"website": ["https://nl.wikipedia.org/wiki/Oosterscheldekering"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"15-258, T": [[302, -451], [348, -451], [349, -451], [349, -464], [348, -464], [348, -467], [344, -467], [344, -464], [343, -464], [343, -461], [340, -461], [340, -464], [339, -464], [339, -467], [335, -467], [335, -464], [334, -464], [334, -461], [331, -461], [331, -464], [330, -464], [330, -467], [326, -467], [326, -464], [325, -464], [325, -461], [322, -461], [322, -464], [321, -464], [321, -467], [317, -467], [317, -464], [316, -464], [316, -461], [313, -461], [313, -464], [312, -464], [312, -467], [308, -467], [308, -464], [307, -464], [307, -461], [304, -461], [304, -464], [303, -464], [303, -467], [299, -467], [299, -464], [298, -464], [298, -459], [299, -458]]}, "center": {"15-258, T": [327, -456]}}, +{"id": 793, "name": "Emma", "description": "Emma is the name of Luke's steam locomotive.\nThe origins are in the book \"Jim Knopf und Lukas der Lokomotivführer\". It is a children's book written by German author Michael Ende in 1960.", "links": {"website": ["https://de.wikipedia.org/wiki/Jim_Knopf_und_Lukas_der_Lokomotivführer#Emma"]}, "path": {"64-258, T": [[591, -370], [599, -370], [599, -372], [607, -372], [609, -374], [610, -374], [611, -373], [613, -375], [610, -377], [610, -379], [611, -380], [611, -382], [610, -383], [609, -382], [608, -383], [607, -383], [607, -384], [609, -386], [610, -386], [611, -387], [611, -388], [610, -389], [596, -389], [596, -385], [594, -385], [593, -386], [591, -384], [590, -385], [590, -389], [591, -390], [591, -391], [590, -392], [590, -396], [596, -408], [597, -411], [605, -420], [608, -437], [604, -442], [602, -422], [590, -409], [586, -400], [586, -392], [585, -391], [585, -390], [586, -389], [586, -383], [584, -381], [584, -377], [582, -375], [584, -373], [585, -374], [586, -374], [586, -372], [591, -372]]}, "center": {"64-258, T": [601, -379]}}, +{"id": 794, "name": "Lightmotif Logo and Owuru heart", "description": "The logo of Lightmotif, a German Vtuber agency with the 5 Talents Finstey, MonaEuphelia, Lunywoo, Jinja and Laphipi. And a heart in the bottom left corner representing German VTuber Owuru_", "links": {"website": ["https://lightmotif.tv", "https://www.twitch.tv/finstey", "https://www.twitch.tv/jinja", "https://www.twitch.tv/monaeuphelia", "https://www.twitch.tv/lunywoo", "https://www.twitch.tv/laphipi", "https://www.twitch.tv/owuru_"], "discord": ["mq7AxCVfQp"]}, "path": {"110-258, T": [[-558, -293], [-558, -311], [-540, -311], [-540, -293]]}, "center": {"110-258, T": [-549, -302]}}, +{"id": 796, "name": "German Twitch Streamer Hallo_alexa_", "description": "Made by Hallo Alexa and her Community.", "links": {"website": ["https://www.twitch.tv/hallo_alexa_"], "discord": ["fCUT5bF"]}, "path": {"49-258, T": [[230, -257], [230, -245], [249, -245], [249, -251], [248, -251], [248, -257]]}, "center": {"49-258, T": [240, -251]}}, +{"id": 797, "name": "Rimuru Tempest", "description": "Depicts Rimuru Tempest from the manga and LN \"That time I got reincarnated as a slime.\"", "links": {"website": ["https://mangadex.org/title/e78a489b-6632-4d61-b00b-5206f5b8b22b/tensei-shitara-slime-datta-ken"], "subreddit": ["TenseiSlime"], "discord": ["EbMKWCxP"]}, "path": {"110-258, T": [[-117, 386], [-129, 386], [-129, 389], [-131, 389], [-131, 390], [-132, 390], [-132, 391], [-133, 391], [-133, 394], [-134, 394], [-134, 401], [-133, 401], [-133, 402], [-132, 403], [-130, 404], [-129, 405], [-113, 405], [-113, 404], [-111, 404], [-111, 403], [-110, 403], [-110, 402], [-110, 401], [-109, 401], [-109, 391], [-110, 391], [-110, 390], [-111, 390], [-111, 389], [-112, 389], [-112, 388], [-114, 388], [-114, 386]]}, "center": {"110-258, T": [-121, 396]}}, {"id": 798, "name": "Rimuru the Slime", "description": "Rimuru Tempest (リムル゠テンペスト Rimuru Tenpesuto), or Rimuru the Slime, is the main protagonist of an anime titled \"That Time I Got Reincarnated as a Slime\". In their normal form, Rimuru takes the appearance of a spherical mass of slightly blue and translucent ooze. Rimuru can take a human form as the anime progresses and sometimes wears a mask (depicted top right) titular to their story. Rimuru is loved for their cute and innocent appearance, which contradicts their powerful magical abilities.", "links": {"website": ["https://tensura.fandom.com/wiki/Rimuru_Tempest", "https://en.wikipedia.org/wiki/That_Time_I_Got_Reincarnated_as_a_Slime"]}, "path": {"88": [[-132, 404], [-134, 400], [-134, 391], [-127, 386], [-123, 385], [-113, 385], [-109, 390], [-109, 403], [-111, 405], [-131, 405]]}, "center": {"88": [-121, 395]}}, -{"id": 799, "name": "Fall of the Berlin Wall (1989)", "description": "After the 2nd World War Germany was divided.\nThe East was separated from the West by a wall in 1961. This had many consequences.\nIn 1989 the wall finally fell again and Germany could reunite.\nThe picture shows a Trabbi (car brand of the GDR) driving through the wall.", "links": {"website": ["https://de.wikipedia.org/wiki/Berliner_Mauer#Mauerfall"]}, "path": {"95-258": [[-730, -445], [-673, -444], [-666, -424], [-667, -390], [-731, -390]]}, "center": {"95-258": [-700, -417]}}, -{"id": 800, "name": "hallo_alexa_", "description": "co-working, reactions, irl", "links": {"website": ["https://www.twitch.tv/hallo_alexa_"], "subreddit": ["place"]}, "path": {"110-258": [[230, -257], [248, -257], [248, -251], [249, -251], [249, -245], [230, -245], [230, -257], [230, -245]]}, "center": {"110-258": [240, -251]}}, -{"id": 801, "name": "Jinja", "description": "Jinja, a German VTuber. She is a 50.000 year old ̶s̶u̶c̶c̶u̶b̶u̶s̶ Mountaingoat streaming in German.", "links": {"website": ["https://www.twitch.tv/jinja"], "discord": ["4cJvmsz"]}, "path": {"110-258": [[147, -354], [148, -354], [148, -353], [149, -353], [149, -354], [150, -354], [150, -355], [151, -355], [151, -356], [152, -356], [152, -358], [153, -358], [152, -358], [152, -359], [151, -359], [151, -360], [150, -360], [150, -361], [149, -361], [149, -362], [148, -362], [147, -362]]}, "center": {"110-258": [149, -358]}}, -{"id": 802, "name": "KFP Logo", "description": "Kiara Fried Phoenix, or KFP for short is the name for the fanbase of Hololive talent Takanashi Kiara. The yellow chicken is part of the KFP logo.", "links": {"website": ["https://en.hololive.tv/", "https://en.wikipedia.org/wiki/Hololive_Production"], "subreddit": ["Hololive"], "discord": ["vtubersplace", "kfp"]}, "path": {"100-258": [[-669, -359], [-669, -367], [-638, -367], [-638, -353], [-651, -353], [-664, -360], [-667, -360], [-668, -359]]}, "center": {"100-258": [-648, -360]}}, -{"id": 805, "name": "German Twitch Streamer HollaDieWaldfee", "description": "", "links": {"website": ["https://www.twitch.tv/holladiewaldfee"]}, "path": {"55-258": [[260, -229], [287, -229], [287, -241], [269, -241], [269, -240], [268, -240], [264, -236], [260, -236], [260, -228], [287, -228], [282, -252], [276, -253], [271, -248], [271, -243], [269, -243], [268, -242]]}, "center": {"55-258": [277, -247]}}, -{"id": 806, "name": "ICHI Gaming International (IGI)", "description": "Small Association of Gamers from all around the World.", "links": {"subreddit": ["ichigaminint"], "discord": ["zCpCATTG"]}, "path": {"110-258": [[357, -339], [357, -331], [370, -331], [370, -339]]}, "center": {"110-258": [364, -335]}}, -{"id": 807, "name": "Kreppel/Berliner/Krapfen/Pfannkuchen/Marmeladendöner", "description": "A Krapfen/Berliner/Kreppel/Pfannkuchen is made similar to a donut from yeast dough, typically a small, round, often sweet-filled pastry. Sometimes it is filled with mustard to troll. It has sparked multiple controversies concerning its name.", "links": {"website": ["https://de.wikipedia.org/wiki/Berliner_Pfannkuchen", "https://de.wikipedia.org/wiki/Krapfen_(Hefeteig)"], "subreddit": ["placeDE", "ich_iel", "de"], "discord": ["placede"]}, "path": {"11-258": [[56, -410], [98, -409], [103, -390], [55, -390]]}, "center": {"11-258": [78, -400]}}, -{"id": 809, "name": "Low Countries", "description": "The Low Countries is a geographical and geopolitical region of Europe consisting of the Netherlands, Belgium, and Luxembourg. The region is also known as Belgica or Benelux. Depicted here are the three Low Countries as they appear on a map, with each country's flag as a background to the respective country.", "links": {"website": ["https://en.wikipedia.org/wiki/Low_Countries"], "subreddit": ["PlaceNL", "belgium", "Luxembourg"]}, "path": {"109-258": [[-639, -499], [-645, -493], [-645, -491], [-647, -487], [-651, -483], [-653, -483], [-656, -479], [-661, -477], [-664, -474], [-654, -463], [-654, -461], [-643, -453], [-642, -453], [-641, -452], [-637, -452], [-635, -456], [-635, -473], [-634, -474], [-634, -477], [-632, -477], [-627, -483], [-627, -486], [-624, -490], [-624, -493], [-628, -498], [-631, -499]]}, "center": {"109-258": [-647, -472]}}, -{"id": 810, "name": "Birkenstocks and Tennis socks", "description": "A classic german fashion combo.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"67-258": [[607, -398], [612, -394], [621, -394], [624, -395], [625, -396], [630, -398], [635, -402], [645, -412], [646, -413], [646, -418], [644, -422], [643, -435], [641, -448], [624, -448], [624, -441], [626, -437], [626, -432], [625, -426], [622, -423], [616, -416], [615, -414], [610, -409], [609, -407], [608, -405], [607, -404]]}, "center": {"67-258": [632, -415]}}, -{"id": 811, "name": "Peachy", "description": "The mascot of Nayami, a German VTuber, artist and rigger known for her funny side", "links": {"website": ["https://www.twitch.tv/nayami/about"], "discord": ["nayami"]}, "path": {"12-99": [[163, -358], [163, -360], [162, -360], [162, -361], [163, -361], [164, -361], [164, -363], [165, -363], [165, -364], [166, -364], [166, -366], [167, -366], [167, -367], [167, -366], [168, -366], [168, -365], [169, -365], [169, -364], [170, -364], [170, -366], [171, -366], [171, -367], [171, -365], [173, -365], [173, -366], [174, -366], [174, -367], [174, -366], [175, -366], [175, -364], [176, -364], [176, -363], [177, -363], [177, -361], [181, -361], [179, -361], [179, -360], [178, -360], [178, -358]], "100-258": [[161, -346], [161, -343], [176, -343], [176, -345], [177, -345], [177, -346], [179, -346], [175, -346], [175, -348], [174, -348], [174, -349], [173, -349], [173, -351], [172, -351], [172, -352], [172, -351], [171, -351], [171, -350], [169, -350], [169, -352], [169, -351], [168, -351], [168, -350], [166, -350], [166, -351], [165, -351], [165, -352], [165, -351], [164, -351], [164, -349], [163, -349], [163, -348], [162, -348], [162, -347], [162, -346]]}, "center": {"12-99": [172, -361], "100-258": [169, -346]}}, -{"id": 812, "name": "Jayu Stern", "description": "This star represents the german Magical girl VTuber Jayuhime.", "links": {"website": ["https://www.twitch.tv/jayuhime"]}, "path": {"111-258": [[200, -357], [197, -354], [200, -351], [203, -354]]}, "center": {"111-258": [200, -354]}}, -{"id": 813, "name": "Stegi", "description": "Stegi is a German streamer and YouTuber who is mainly known for his Minecraft content, Twitch subathon, and selling Minecraft Cosmetics.\n\nDuring the r/Place event in 2023, Stegi built one of the first finished artworks on the canvas. At that time, he was stuck in month 2 of an open-end subathon on Twitch. In the initial days, his chat had been continuously trying to draw a long Stegosaurus tail across the canvas. The appearance of the Stegosaurus went through several changes due to the addition of new colors and coordination issues.\n\nThe pixelart was designed by the user lolaanzo.", "links": {"website": ["https://www.twitch.tv/stegi"], "subreddit": ["Stegi"], "discord": ["BYaZ7af"]}, "path": {"1-258": [[186, -318], [173, -331], [177, -333], [189, -322], [191, -332], [209, -334], [212, -328], [219, -331], [223, -322], [207, -311], [209, -302], [203, -301], [201, -311], [196, -308], [196, -302], [190, -303], [189, -312], [187, -302], [186, -303]]}, "center": {"1-258": [203, -322]}}, +{"id": 799, "name": "Fall of the Berlin Wall (1989)", "description": "After the 2nd World War Germany was divided.\nThe East was separated from the West by a wall in 1961. This had many consequences.\nIn 1989 the wall finally fell again and Germany could reunite.\nThe picture shows a Trabbi (car brand of the GDR) driving through the wall.", "links": {"website": ["https://de.wikipedia.org/wiki/Berliner_Mauer#Mauerfall"]}, "path": {"95-258, T": [[-730, -445], [-673, -444], [-666, -424], [-667, -390], [-731, -390]]}, "center": {"95-258, T": [-700, -417]}}, +{"id": 800, "name": "hallo_alexa_", "description": "co-working, reactions, irl", "links": {"website": ["https://www.twitch.tv/hallo_alexa_"], "subreddit": ["place"]}, "path": {"110-258, T": [[230, -257], [248, -257], [248, -251], [249, -251], [249, -245], [230, -245], [230, -257], [230, -245]]}, "center": {"110-258, T": [240, -251]}}, +{"id": 801, "name": "Jinja", "description": "Jinja, a German VTuber. She is a 50.000 year old ̶s̶u̶c̶c̶u̶b̶u̶s̶ Mountaingoat streaming in German.", "links": {"website": ["https://www.twitch.tv/jinja"], "discord": ["4cJvmsz"]}, "path": {"110-258, T": [[147, -354], [148, -354], [148, -353], [149, -353], [149, -354], [150, -354], [150, -355], [151, -355], [151, -356], [152, -356], [152, -358], [153, -358], [152, -358], [152, -359], [151, -359], [151, -360], [150, -360], [150, -361], [149, -361], [149, -362], [148, -362], [147, -362]]}, "center": {"110-258, T": [149, -358]}}, +{"id": 802, "name": "KFP Logo", "description": "Kiara Fried Phoenix, or KFP for short is the name for the fanbase of Hololive talent Takanashi Kiara. The yellow chicken is part of the KFP logo.", "links": {"website": ["https://en.hololive.tv/", "https://en.wikipedia.org/wiki/Hololive_Production"], "subreddit": ["Hololive"], "discord": ["vtubersplace", "kfp"]}, "path": {"100-258, T": [[-669, -359], [-669, -367], [-638, -367], [-638, -353], [-651, -353], [-664, -360], [-667, -360], [-668, -359]]}, "center": {"100-258, T": [-648, -360]}}, +{"id": 805, "name": "German Twitch Streamer HollaDieWaldfee", "description": "", "links": {"website": ["https://www.twitch.tv/holladiewaldfee"]}, "path": {"55-258, T": [[260, -229], [287, -229], [287, -241], [269, -241], [269, -240], [268, -240], [264, -236], [260, -236], [260, -228], [287, -228], [282, -252], [276, -253], [271, -248], [271, -243], [269, -243], [268, -242]]}, "center": {"55-258, T": [277, -247]}}, +{"id": 806, "name": "ICHI Gaming International (IGI)", "description": "Small Association of Gamers from all around the World.", "links": {"subreddit": ["ichigaminint"], "discord": ["zCpCATTG"]}, "path": {"110-258, T": [[357, -339], [357, -331], [370, -331], [370, -339]]}, "center": {"110-258, T": [364, -335]}}, +{"id": 807, "name": "Kreppel/Berliner/Krapfen/Pfannkuchen/Marmeladendöner", "description": "A Krapfen/Berliner/Kreppel/Pfannkuchen is made similar to a donut from yeast dough, typically a small, round, often sweet-filled pastry. Sometimes it is filled with mustard to troll. It has sparked multiple controversies concerning its name.", "links": {"website": ["https://de.wikipedia.org/wiki/Berliner_Pfannkuchen", "https://de.wikipedia.org/wiki/Krapfen_(Hefeteig)"], "subreddit": ["placeDE", "ich_iel", "de"], "discord": ["placede"]}, "path": {"11-258, T": [[56, -410], [98, -409], [103, -390], [55, -390]]}, "center": {"11-258, T": [78, -400]}}, +{"id": 809, "name": "Low Countries", "description": "The Low Countries is a geographical and geopolitical region of Europe consisting of the Netherlands, Belgium, and Luxembourg. The region is also known as Belgica or Benelux. Depicted here are the three Low Countries as they appear on a map, with each country's flag as a background to the respective country.", "links": {"website": ["https://en.wikipedia.org/wiki/Low_Countries"], "subreddit": ["PlaceNL", "belgium", "Luxembourg"]}, "path": {"109-258, T": [[-639, -499], [-645, -493], [-645, -491], [-647, -487], [-651, -483], [-653, -483], [-656, -479], [-661, -477], [-664, -474], [-654, -463], [-654, -461], [-643, -453], [-642, -453], [-641, -452], [-637, -452], [-635, -456], [-635, -473], [-634, -474], [-634, -477], [-632, -477], [-627, -483], [-627, -486], [-624, -490], [-624, -493], [-628, -498], [-631, -499]]}, "center": {"109-258, T": [-647, -472]}}, +{"id": 810, "name": "Birkenstocks and Tennis socks", "description": "A classic german fashion combo.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"67-258, T": [[607, -398], [612, -394], [621, -394], [624, -395], [625, -396], [630, -398], [635, -402], [645, -412], [646, -413], [646, -418], [644, -422], [643, -435], [641, -448], [624, -448], [624, -441], [626, -437], [626, -432], [625, -426], [622, -423], [616, -416], [615, -414], [610, -409], [609, -407], [608, -405], [607, -404]]}, "center": {"67-258, T": [632, -415]}}, +{"id": 811, "name": "Peachy", "description": "The mascot of Nayami, a German VTuber, artist and rigger known for her funny side", "links": {"website": ["https://www.twitch.tv/nayami/about"], "discord": ["nayami"]}, "path": {"12-99": [[163, -358], [163, -360], [162, -360], [162, -361], [163, -361], [164, -361], [164, -363], [165, -363], [165, -364], [166, -364], [166, -366], [167, -366], [167, -367], [167, -366], [168, -366], [168, -365], [169, -365], [169, -364], [170, -364], [170, -366], [171, -366], [171, -367], [171, -365], [173, -365], [173, -366], [174, -366], [174, -367], [174, -366], [175, -366], [175, -364], [176, -364], [176, -363], [177, -363], [177, -361], [181, -361], [179, -361], [179, -360], [178, -360], [178, -358]], "100-258, T": [[161, -346], [161, -343], [176, -343], [176, -345], [177, -345], [177, -346], [179, -346], [175, -346], [175, -348], [174, -348], [174, -349], [173, -349], [173, -351], [172, -351], [172, -352], [172, -351], [171, -351], [171, -350], [169, -350], [169, -352], [169, -351], [168, -351], [168, -350], [166, -350], [166, -351], [165, -351], [165, -352], [165, -351], [164, -351], [164, -349], [163, -349], [163, -348], [162, -348], [162, -347], [162, -346]]}, "center": {"12-99": [172, -361], "100-258, T": [169, -346]}}, +{"id": 812, "name": "Jayu Stern", "description": "This star represents the german Magical girl VTuber Jayuhime.", "links": {"website": ["https://www.twitch.tv/jayuhime"]}, "path": {"111-258, T": [[200, -357], [197, -354], [200, -351], [203, -354]]}, "center": {"111-258, T": [200, -354]}}, +{"id": 813, "name": "Stegi", "description": "Stegi is a German streamer and YouTuber who is mainly known for his Minecraft content, Twitch subathon, and selling Minecraft Cosmetics.\n\nDuring the r/Place event in 2023, Stegi built one of the first finished artworks on the canvas. At that time, he was stuck in month 2 of an open-end subathon on Twitch. In the initial days, his chat had been continuously trying to draw a long Stegosaurus tail across the canvas. The appearance of the Stegosaurus went through several changes due to the addition of new colors and coordination issues.\n\nThe pixelart was designed by the user lolaanzo.", "links": {"website": ["https://www.twitch.tv/stegi"], "subreddit": ["Stegi"], "discord": ["BYaZ7af"]}, "path": {"1-258, T": [[186, -318], [173, -331], [177, -333], [189, -322], [191, -332], [209, -334], [212, -328], [219, -331], [223, -322], [207, -311], [209, -302], [203, -301], [201, -311], [196, -308], [196, -302], [190, -303], [189, -312], [187, -302], [186, -303]]}, "center": {"1-258, T": [203, -322]}}, {"id": 814, "name": "Amazigh flag", "description": "The Flag of the Amazigh people, first created in 1970 by Mohand Arav Bessaoud. The flag was made official by the World Amazigh Congress. The flag is composed of blue, green, and yellow horizontal bands of the same height, and a Tifinagh letter yaz (ⵣ). In r/place, 3 yaz (ⵣ) were put on the flag. The letter yaz (ⵣ) represents the word Amazigh, the root of which it is taken from", "links": {"subreddit": ["AmazighPeople"]}, "path": {"110": [[-706, 329], [-660, 329], [-660, 341], [-706, 341]]}, "center": {"110": [-683, 335]}}, -{"id": 815, "name": "Deutsche Bahn", "description": "A Timetable of the German Trainsystem (Deutsche Bahn), showing a train to german island Sylt leaving 60 minutes later. Both the Lateness and going to Sylt with the 9€-Ticket are memes amongst germans.", "links": {"website": ["https://next.bahn.de/"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"111-258": [[856, -449], [953, -449], [953, -427], [856, -427]]}, "center": {"111-258": [905, -438]}}, -{"id": 816, "name": "Anne Frank", "description": "Anne Frank was a Jewish girl born in Frankfurt, Germany. She and her family fled to Amsterdam, Netherlands after the rise of the Nazi party. After the Nazis invaded the Netherlands during World War II and began exterminating Jews as part of the Holocaust, Anne Frank and her family hid in a secret annex in their home, and she kept a diary of her life during this time. She and her family were discovered by the Nazis in 1944, and she was transferred to German concentration camps, where she died along with most of her family. Her diary was later published by her surviving father, which have since gained worldwide recognition and have been translated into many languages. Her story serves as an enduring symbol of the human spirit amidst the horrors of the Holocaust, and is a testament to the resilience of those who faced unspeakable atrocities. It is an integral part of the historical fabric of the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Anne_Frank"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"111-258": [[-698, -498], [-706, -489], [-706, -488], [-712, -488], [-713, -489], [-714, -489], [-714, -482], [-718, -482], [-718, -479], [-719, -478], [-719, -474], [-722, -468], [-722, -465], [-716, -454], [-712, -450], [-674, -450], [-673, -451], [-667, -451], [-661, -457], [-661, -465], [-665, -472], [-666, -472], [-666, -475], [-667, -475], [-667, -482], [-673, -493], [-677, -498], [-682, -500], [-691, -500]]}, "center": {"111-258": [-690, -472]}}, -{"id": 817, "name": "Sackboy", "description": "Sackboy is the main character in the game series LittleBigPlanet, published by British game developer Media Molecule.", "links": {"website": ["https://en.wikipedia.org/wiki/Sackboy"], "subreddit": ["littlebigplanet", "ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["YGFRh8WFDn", "ukplace", "ukonplace"]}, "path": {"103-258": [[-199, -296], [-199, -292], [-200, -289], [-200, -287], [-197, -284], [-203, -281], [-203, -279], [-201, -278], [-198, -278], [-198, -279], [-194, -279], [-194, -276], [-191, -274], [-189, -274], [-189, -277], [-191, -281], [-191, -283], [-184, -287], [-184, -288], [-188, -291], [-188, -296]]}, "center": {"103-258": [-193, -289]}}, -{"id": 818, "name": "Thomas the Tank Engine", "description": "Thomas the Tank Engine is a locomotive character originally from the British book series Railway Series. The books were later adapted into a children's TV series, Thomas & Friends.", "links": {"website": ["https://en.wikipedia.org/wiki/Thomas_the_Tank_Engine"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"92-258": [[-236, -268], [-238, -266], [-238, -263], [-239, -262], [-239, -261], [-237, -259], [-226, -259], [-224, -261], [-225, -262], [-225, -266], [-227, -266], [-227, -268]]}, "center": {"92-258": [-231, -263]}}, -{"id": 819, "name": "Red", "description": "Red is the most basic type of bird and the protagonist in the mobile game Angry Birds. He is a desert cardinal native to Bird Island with a short-tempered and rude personality.", "links": {"website": ["https://angrybirds.fandom.com/wiki/Red"], "subreddit": ["AngryBirds", "Suomi", "nordics", "place_nordicunion"]}, "path": {"104-258": [[41, -295], [39, -293], [39, -288], [38, -287], [36, -287], [36, -282], [40, -279], [50, -279], [53, -281], [53, -287], [51, -290], [45, -295]]}, "center": {"104-258": [45, -286]}}, -{"id": 821, "name": "VRChat", "description": "VRChat is an online virtual reality social platform. The platform allows users to interact with others with user-created 3D avatars and worlds.", "links": {"website": ["https://vrchat.com/", "https://en.wikipedia.org/wiki/VRChat"], "subreddit": ["VRChat"]}, "path": {"112-258": [[-128, 377], [-98, 377], [-98, 385], [-110, 385], [-110, 389], [-115, 385], [-128, 385]]}, "center": {"112-258": [-113, 381]}}, +{"id": 815, "name": "Deutsche Bahn", "description": "A Timetable of the German Trainsystem (Deutsche Bahn), showing a train to german island Sylt leaving 60 minutes later. Both the Lateness and going to Sylt with the 9€-Ticket are memes amongst germans.", "links": {"website": ["https://next.bahn.de/"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"111-258, T": [[856, -449], [953, -449], [953, -427], [856, -427]]}, "center": {"111-258, T": [905, -438]}}, +{"id": 816, "name": "Anne Frank", "description": "Anne Frank was a Jewish girl born in Frankfurt, Germany. She and her family fled to Amsterdam, Netherlands after the rise of the Nazi party. After the Nazis invaded the Netherlands during World War II and began exterminating Jews as part of the Holocaust, Anne Frank and her family hid in a secret annex in their home, and she kept a diary of her life during this time. She and her family were discovered by the Nazis in 1944, and she was transferred to German concentration camps, where she died along with most of her family. Her diary was later published by her surviving father, which have since gained worldwide recognition and have been translated into many languages. Her story serves as an enduring symbol of the human spirit amidst the horrors of the Holocaust, and is a testament to the resilience of those who faced unspeakable atrocities. It is an integral part of the historical fabric of the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Anne_Frank"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"111-258, T": [[-698, -498], [-706, -489], [-706, -488], [-712, -488], [-713, -489], [-714, -489], [-714, -482], [-718, -482], [-718, -479], [-719, -478], [-719, -474], [-722, -468], [-722, -465], [-716, -454], [-712, -450], [-674, -450], [-673, -451], [-667, -451], [-661, -457], [-661, -465], [-665, -472], [-666, -472], [-666, -475], [-667, -475], [-667, -482], [-673, -493], [-677, -498], [-682, -500], [-691, -500]]}, "center": {"111-258, T": [-690, -472]}}, +{"id": 817, "name": "Sackboy", "description": "Sackboy is the main character in the game series LittleBigPlanet, published by British game developer Media Molecule.", "links": {"website": ["https://en.wikipedia.org/wiki/Sackboy"], "subreddit": ["littlebigplanet", "ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["YGFRh8WFDn", "ukplace", "ukonplace"]}, "path": {"103-258, T": [[-199, -296], [-199, -292], [-200, -289], [-200, -287], [-197, -284], [-203, -281], [-203, -279], [-201, -278], [-198, -278], [-198, -279], [-194, -279], [-194, -276], [-191, -274], [-189, -274], [-189, -277], [-191, -281], [-191, -283], [-184, -287], [-184, -288], [-188, -291], [-188, -296]]}, "center": {"103-258, T": [-193, -289]}}, +{"id": 818, "name": "Thomas the Tank Engine", "description": "Thomas the Tank Engine is a locomotive character originally from the British book series Railway Series. The books were later adapted into a children's TV series, Thomas & Friends.", "links": {"website": ["https://en.wikipedia.org/wiki/Thomas_the_Tank_Engine"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"92-258, T": [[-236, -268], [-238, -266], [-238, -263], [-239, -262], [-239, -261], [-237, -259], [-226, -259], [-224, -261], [-225, -262], [-225, -266], [-227, -266], [-227, -268]]}, "center": {"92-258, T": [-231, -263]}}, +{"id": 819, "name": "Red", "description": "Red is the most basic type of bird and the protagonist in the mobile game Angry Birds. He is a desert cardinal native to Bird Island with a short-tempered and rude personality.", "links": {"website": ["https://angrybirds.fandom.com/wiki/Red"], "subreddit": ["AngryBirds", "Suomi", "nordics", "place_nordicunion"]}, "path": {"104-258, T": [[41, -295], [39, -293], [39, -288], [38, -287], [36, -287], [36, -282], [40, -279], [50, -279], [53, -281], [53, -287], [51, -290], [45, -295]]}, "center": {"104-258, T": [45, -286]}}, +{"id": 821, "name": "VRChat", "description": "VRChat is an online virtual reality social platform. The platform allows users to interact with others with user-created 3D avatars and worlds.", "links": {"website": ["https://vrchat.com/", "https://en.wikipedia.org/wiki/VRChat"], "subreddit": ["VRChat"]}, "path": {"112-258, T": [[-128, 377], [-98, 377], [-98, 385], [-110, 385], [-110, 389], [-115, 385], [-128, 385]]}, "center": {"112-258, T": [-113, 381]}}, {"id": 822, "name": "Counter Strike 1.6 main menu screen", "description": "Created by viewers of ohnePixel, this is a pixel-recreation of the Counter-Strike 1.6 main menu.", "links": {"subreddit": ["csgo"], "discord": ["ohnepixel"]}, "path": {"112-138": [[-769, 366], [-658, 365], [-659, 428], [-770, 428], [-769, 367], [-765, 405]]}, "center": {"112-138": [-714, 397]}}, -{"id": 823, "name": "BitCraft", "description": "BitCraft is a sandbox massively multiplayer online role-playing game (MMORPG) which encourages many different play styles ranging from farming, hunting, and crafting to city-building and social strategy, rather than emphasizing combat alone. The game incorporates elements of sub-genres such as survival games, sandbox games, role-playing games, city builders, and strategy games.\n\nAccording to information obtained in diplomatic discussions the BitCraft community had tried to build their artwork several times on the original canvas, but were kicked out every time. The second to last location was right underneath where the final Nijisanji logo's rainbow part would be built. The final location of this logo is one that was obtained through diplomatic discussions with the VTubers Place discord server's diplomats and is on the old location where VTubers Place's VShojo logo used to be before they moved to the newly expanded canvas to the west.", "links": {"website": ["https://bitcraftonline.com/"], "subreddit": ["BitCraftOnline"], "discord": ["bitcraft"]}, "path": {"112-258": [[-119, 430], [-98, 430], [-98, 444], [-119, 444]]}, "center": {"112-258": [-108, 437]}}, -{"id": 824, "name": "Ei Range (Gudetama)", "description": "It is a reference to the german streamer \"XPandorya\".", "links": {"website": ["http://www.twitch.tv/xpandorya"]}, "path": {"50-258": [[277, -262], [282, -261], [284, -258], [287, -261], [287, -249], [281, -242], [277, -245], [273, -242], [267, -248], [270, -257], [275, -262]]}, "center": {"50-258": [277, -253]}}, -{"id": 825, "name": "Fritz-Kola", "description": "Fritz-Kola is a German Soft-Drink Brand, founded 2002 in Hamburg. The Label consists of the faces of the two founders.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"42-98": [[-212, -392], [-198, -392], [-196, -395], [-197, -423], [-198, -428], [-202, -434], [-202, -443], [-201, -443], [-201, -445], [-208, -446], [-209, -443], [-208, -434], [-212, -427], [-213, -419], [-211, -418], [-211, -395]], "10-41": [[-154, -392], [-140, -392], [-139, -393], [-139, -423], [-143, -434], [-144, -434], [-144, -443], [-143, -443], [-143, -445], [-144, -446], [-150, -446], [-151, -445], [-150, -443], [-151, -434], [-153, -429], [-154, -424], [-155, -402], [-156, -400], [-156, -394]], "99-258": [[-205, -421], [-205, -424], [-204, -425], [-204, -429], [-203, -430], [-202, -432], [-202, -433], [-201, -434], [-200, -435], [-200, -444], [-201, -444], [-201, -447], [-193, -447], [-193, -444], [-194, -444], [-194, -435], [-193, -435], [-193, -434], [-192, -433], [-192, -432], [-191, -431], [-191, -430], [-190, -430], [-189, -430], [-189, -418], [-190, -393], [-204, -393], [-203, -395], [-202, -396], [-202, -418]]}, "center": {"42-98": [-205, -423], "10-41": [-147, -400], "99-258": [-197, -424]}}, -{"id": 826, "name": "chume labs", "description": "Chume Labs was a series on the TazerCraft channel. One of the most well-known series on the channel, it premiered with its first episode on November 8, 2014, and ended with its last episode on January 13, 2015.", "links": {"website": ["https://tazercraft.fandom.com/wiki/Chume_Labs"]}, "path": {"112-258": [[-1, 499], [-2, 498], [-2, 492], [-3, 492], [-3, 481], [-2, 480], [27, 480], [27, 499]]}, "center": {"112-258": [12, 490]}}, -{"id": 827, "name": "fritz-kola Bottle", "description": "fritz-kola is a company based in Hamburg (Germany) and is a competitor product to cocacola with rather less success.", "links": {"website": ["https://fritz-kola.com/de"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"112-258": [[-193, -447], [-201, -447], [-201, -444], [-200, -443], [-201, -441], [-200, -435], [-202, -433], [-204, -429], [-205, -425], [-206, -422], [-204, -420], [-202, -418], [-203, -414], [-202, -397], [-204, -394], [-204, -392], [-190, -393], [-190, -430], [-193, -434], [-194, -436], [-194, -444], [-193, -444]]}, "center": {"112-258": [-197, -424]}}, -{"id": 828, "name": "Matschbirne from VTuber Moepi", "description": "The mud pear symbolizes the community of Moepi. It means you should not take life so seriously and also be able to laugh about your stupidities.", "links": {"website": ["https://www.twitch.tv/moepi"], "subreddit": ["moepi"], "discord": ["moep"]}, "path": {"12-36": [[121, -344], [121, -338], [122, -338], [122, -337], [123, -336], [124, -335], [125, -334], [136, -334], [137, -335], [138, -336], [139, -337], [139, -345], [138, -345], [138, -349], [137, -349], [137, -350], [136, -350], [136, -352], [135, -352], [135, -353], [134, -353], [134, -354], [133, -355], [131, -355], [131, -357], [131, -355], [128, -355], [128, -354], [127, -354], [127, -353], [126, -353], [126, -352], [125, -352], [126, -351], [125, -351], [125, -350], [124, -350], [124, -349], [123, -349], [123, -345], [122, -345], [122, -343]], "101-258": [[174, -354], [174, -353], [175, -353], [175, -352], [176, -352], [176, -351], [181, -351], [181, -352], [182, -352], [182, -353], [183, -353], [183, -355], [182, -355], [182, -356], [181, -356], [181, -357], [180, -359], [179, -359], [179, -361], [180, -362], [176, -362], [176, -361], [179, -361], [179, -359], [178, -359], [178, -358], [177, -358], [177, -357], [176, -357], [176, -356], [175, -356], [175, -355], [175, -354]]}, "center": {"12-36": [130, -342], "101-258": [179, -354]}}, +{"id": 823, "name": "BitCraft", "description": "BitCraft is a sandbox massively multiplayer online role-playing game (MMORPG) which encourages many different play styles ranging from farming, hunting, and crafting to city-building and social strategy, rather than emphasizing combat alone. The game incorporates elements of sub-genres such as survival games, sandbox games, role-playing games, city builders, and strategy games.\n\nAccording to information obtained in diplomatic discussions the BitCraft community had tried to build their artwork several times on the original canvas, but were kicked out every time. The second to last location was right underneath where the final Nijisanji logo's rainbow part would be built. The final location of this logo is one that was obtained through diplomatic discussions with the VTubers Place discord server's diplomats and is on the old location where VTubers Place's VShojo logo used to be before they moved to the newly expanded canvas to the west.", "links": {"website": ["https://bitcraftonline.com/"], "subreddit": ["BitCraftOnline"], "discord": ["bitcraft"]}, "path": {"112-258, T": [[-119, 430], [-98, 430], [-98, 444], [-119, 444]]}, "center": {"112-258, T": [-108, 437]}}, +{"id": 824, "name": "Ei Range (Gudetama)", "description": "It is a reference to the german streamer \"XPandorya\".", "links": {"website": ["http://www.twitch.tv/xpandorya"]}, "path": {"50-258, T": [[277, -262], [282, -261], [284, -258], [287, -261], [287, -249], [281, -242], [277, -245], [273, -242], [267, -248], [270, -257], [275, -262]]}, "center": {"50-258, T": [277, -253]}}, +{"id": 825, "name": "Fritz-Kola", "description": "Fritz-Kola is a German Soft-Drink Brand, founded 2002 in Hamburg. The Label consists of the faces of the two founders.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"42-98": [[-212, -392], [-198, -392], [-196, -395], [-197, -423], [-198, -428], [-202, -434], [-202, -443], [-201, -443], [-201, -445], [-208, -446], [-209, -443], [-208, -434], [-212, -427], [-213, -419], [-211, -418], [-211, -395]], "10-41": [[-154, -392], [-140, -392], [-139, -393], [-139, -423], [-143, -434], [-144, -434], [-144, -443], [-143, -443], [-143, -445], [-144, -446], [-150, -446], [-151, -445], [-150, -443], [-151, -434], [-153, -429], [-154, -424], [-155, -402], [-156, -400], [-156, -394]], "99-258, T": [[-205, -421], [-205, -424], [-204, -425], [-204, -429], [-203, -430], [-202, -432], [-202, -433], [-201, -434], [-200, -435], [-200, -444], [-201, -444], [-201, -447], [-193, -447], [-193, -444], [-194, -444], [-194, -435], [-193, -435], [-193, -434], [-192, -433], [-192, -432], [-191, -431], [-191, -430], [-190, -430], [-189, -430], [-189, -418], [-190, -393], [-204, -393], [-203, -395], [-202, -396], [-202, -418]]}, "center": {"42-98": [-205, -423], "10-41": [-147, -400], "99-258, T": [-197, -424]}}, +{"id": 826, "name": "chume labs", "description": "Chume Labs was a series on the TazerCraft channel. One of the most well-known series on the channel, it premiered with its first episode on November 8, 2014, and ended with its last episode on January 13, 2015.", "links": {"website": ["https://tazercraft.fandom.com/wiki/Chume_Labs"]}, "path": {"112-258, T": [[-1, 499], [-2, 498], [-2, 492], [-3, 492], [-3, 481], [-2, 480], [27, 480], [27, 499]]}, "center": {"112-258, T": [12, 490]}}, +{"id": 827, "name": "fritz-kola Bottle", "description": "fritz-kola is a company based in Hamburg (Germany) and is a competitor product to cocacola with rather less success.", "links": {"website": ["https://fritz-kola.com/de"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"112-258, T": [[-193, -447], [-201, -447], [-201, -444], [-200, -443], [-201, -441], [-200, -435], [-202, -433], [-204, -429], [-205, -425], [-206, -422], [-204, -420], [-202, -418], [-203, -414], [-202, -397], [-204, -394], [-204, -392], [-190, -393], [-190, -430], [-193, -434], [-194, -436], [-194, -444], [-193, -444]]}, "center": {"112-258, T": [-197, -424]}}, +{"id": 828, "name": "Matschbirne from VTuber Moepi", "description": "The mud pear symbolizes the community of Moepi. It means you should not take life so seriously and also be able to laugh about your stupidities.", "links": {"website": ["https://www.twitch.tv/moepi"], "subreddit": ["moepi"], "discord": ["moep"]}, "path": {"12-36": [[121, -344], [121, -338], [122, -338], [122, -337], [123, -336], [124, -335], [125, -334], [136, -334], [137, -335], [138, -336], [139, -337], [139, -345], [138, -345], [138, -349], [137, -349], [137, -350], [136, -350], [136, -352], [135, -352], [135, -353], [134, -353], [134, -354], [133, -355], [131, -355], [131, -357], [131, -355], [128, -355], [128, -354], [127, -354], [127, -353], [126, -353], [126, -352], [125, -352], [126, -351], [125, -351], [125, -350], [124, -350], [124, -349], [123, -349], [123, -345], [122, -345], [122, -343]], "101-258, T": [[174, -354], [174, -353], [175, -353], [175, -352], [176, -352], [176, -351], [181, -351], [181, -352], [182, -352], [182, -353], [183, -353], [183, -355], [182, -355], [182, -356], [181, -356], [181, -357], [180, -359], [179, -359], [179, -361], [180, -362], [176, -362], [176, -361], [179, -361], [179, -359], [178, -359], [178, -358], [177, -358], [177, -357], [176, -357], [176, -356], [175, -356], [175, -355], [175, -354]]}, "center": {"12-36": [130, -342], "101-258, T": [179, -354]}}, {"id": 829, "name": "Fafnir", "description": "Fafnir is a Shadow-Soul Dragon who was banned into a Glas by the Witch Arukori. Arukori is a German Half-Elf Vtuber.", "links": {"subreddit": ["arukori"]}, "path": {"112-138": [[87, -366], [83, -359], [86, -352], [94, -348], [102, -349], [105, -356], [104, -362], [101, -365], [92, -368], [88, -369]]}, "center": {"112-138": [95, -358]}}, -{"id": 830, "name": "A group of german Vtubers", "description": "consisting of the streamers EveryLunaEver, Nayami, Jinja, Finstey, MonaEuphelia, Maakurika, MiaowArt, WatermelonVT, Jayuhime, Moepi and YuhkaBun. Check them out!", "links": {"subreddit": ["GerVTuberPlace"]}, "path": {"111-258": [[147, -367], [181, -367], [181, -356], [202, -356], [202, -343], [202, -341], [209, -341], [209, -336], [197, -336], [197, -335], [187, -335], [186, -335], [186, -342], [159, -342], [155, -338], [151, -342], [146, -342], [146, -367]]}, "center": {"111-258": [159, -354]}}, -{"id": 832, "name": "Bubatzblatt (Weed)", "description": "A cannabis leaflet alluding to the (hopefully) imminent legalization of cannabis in germany.", "links": {"website": ["https://de.wiktionary.org/wiki/Cannabis"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"111-258": [[-661, -393], [-662, -391], [-659, -390], [-648, -391], [-643, -405], [-636, -404], [-625, -402], [-631, -410], [-632, -411], [-619, -421], [-630, -421], [-629, -425], [-625, -435], [-620, -445], [-624, -443], [-628, -435], [-634, -432], [-637, -430], [-641, -434], [-643, -444], [-644, -450], [-645, -454], [-647, -445], [-650, -432], [-652, -429], [-662, -436], [-664, -440], [-667, -444], [-668, -446], [-667, -440], [-665, -435], [-664, -431], [-663, -426], [-661, -423], [-660, -422], [-661, -421], [-665, -420], [-667, -420], [-670, -421], [-667, -417], [-660, -411], [-657, -410], [-657, -407], [-660, -407], [-664, -403], [-661, -403], [-658, -404], [-655, -404], [-651, -404], [-650, -405], [-649, -405], [-648, -404], [-648, -402], [-648, -399], [-651, -395], [-653, -394], [-655, -393]]}, "center": {"111-258": [-644, -418]}}, -{"id": 833, "name": "Donald Duck Weekblad", "description": "This pixelart displays the first issue of the 'Donald Duck' weekly magazine, a unique phenomenon in the Netherlands. Known as 'Donald Duck Weekblad', it's been a part of Dutch pop culture since its launch in 1952. The magazine's widespread popularity has transcended age groups, making it a distinctive and beloved part of growing up in the Netherlands.", "links": {"subreddit": ["PlaceNL"]}, "path": {"112-258": [[-157, -451], [-157, -500], [-123, -500], [-123, -451]]}, "center": {"112-258": [-140, -475]}}, -{"id": 834, "name": "Birkenstock-Sandale mit weißen Socken", "description": "White socks and sandals", "links": {}, "path": {"112-258": [[626, -429], [624, -449], [640, -448], [647, -413], [626, -395], [620, -393], [614, -394], [609, -395], [607, -397], [606, -401], [610, -413], [617, -420], [623, -427]]}, "center": {"112-258": [632, -417]}}, -{"id": 835, "name": "DB Destination indicator", "description": "This is a destination indicator of the Deutsche Bahn.\nDestination is Sylt. This goes back to the legendary 9€ ticket from 2022. At that time, you could use any regional train throughout Germany for a whole month for 9€. For 9€. This created the meme that everyone wants to go to Sylt (a German island). It was triggered by the mayor of Sylt, who was afraid of all the tourists. Now it is a german meme.", "links": {"website": ["https://www.tagesspiegel.de/kultur/angst-vor-neun-euro-touris-warum-die-sylt-memes-mehr-sind-als-nur-internetquatsch-475260.html"], "subreddit": ["placede", "de", "ich_iel"], "discord": ["placede"]}, "path": {"111-258": [[855, -450], [954, -450], [954, -426], [855, -426]]}, "center": {"111-258": [905, -438]}}, -{"id": 836, "name": "MonaEuphelia", "description": "MonaEuphelia, a German VTuber. She is an owl that loves reading, gaming and story telling .She streams in German and is one of the talents of Lightmotif.", "links": {"website": ["https://www.twitch.tv/monaeuphelia"]}, "path": {"56-84": [[151, -348], [151, -349], [152, -349], [152, -351], [151, -352], [152, -351], [152, -350], [155, -350], [155, -351], [156, -352], [155, -351], [155, -349], [156, -349], [156, -348]], "85-258": [[151, -347], [151, -349], [152, -349], [152, -350], [152, -351], [152, -352], [151, -352], [153, -351], [153, -350], [154, -350], [155, -350], [156, -350], [157, -350], [157, -351], [158, -351], [158, -352], [159, -352], [158, -350], [158, -349], [159, -349], [159, -348], [159, -347]]}, "center": {"56-84": [154, -349], "85-258": [155, -349]}}, -{"id": 837, "name": "Finstey's Orca", "description": "Orca representing German VTuber Finstey who is a member of the Agency Lightmotif and the first German male VTuber that reached partner Status with only VTubing", "links": {"website": ["https://www.twitch.tv/finstey"], "subreddit": ["finstey"], "discord": ["mq7AxCVfQp"]}, "path": {"50-99": [[151, -353], [151, -354], [150, -354], [150, -355], [149, -355], [149, -356], [148, -356], [148, -357], [149, -357], [149, -358], [149, -359], [148, -360], [149, -359], [150, -359], [150, -360], [150, -359], [151, -359], [152, -359], [152, -360], [153, -360], [154, -360], [154, -361], [154, -358], [157, -358], [157, -359], [158, -359], [158, -361], [157, -361], [157, -362], [156, -362], [156, -363], [156, -362], [160, -362], [160, -363], [160, -362], [159, -362], [159, -361], [158, -361], [158, -357], [157, -357], [157, -356], [156, -356], [156, -355], [154, -355], [154, -353], [154, -354], [153, -354], [153, -355], [152, -355], [151, -355]], "17-40": [[149, -353], [149, -354], [148, -354], [148, -355], [147, -355], [147, -356], [146, -356], [146, -357], [147, -357], [147, -358], [147, -359], [146, -360], [147, -359], [148, -359], [148, -360], [148, -359], [150, -359], [150, -360], [151, -360], [152, -360], [152, -361], [152, -358], [155, -358], [155, -359], [156, -359], [156, -361], [155, -361], [155, -362], [154, -362], [154, -363], [154, -362], [158, -362], [158, -363], [158, -362], [157, -362], [157, -361], [156, -361], [156, -357], [155, -357], [155, -356], [154, -356], [154, -355], [152, -355], [152, -353], [152, -354], [151, -354], [151, -355], [149, -355]], "100-258": [[160, -352], [160, -353], [159, -353], [159, -354], [158, -354], [158, -355], [157, -355], [157, -356], [158, -356], [158, -357], [158, -358], [157, -359], [158, -358], [159, -359], [159, -358], [160, -358], [161, -359], [162, -359], [163, -359], [163, -360], [163, -357], [166, -357], [166, -358], [167, -358], [167, -359], [167, -360], [166, -360], [166, -361], [165, -361], [165, -362], [165, -361], [169, -361], [169, -362], [169, -361], [168, -361], [168, -360], [167, -360], [167, -356], [166, -356], [166, -355], [165, -355], [165, -354], [164, -354], [163, -354], [163, -352], [163, -353], [162, -353], [162, -354], [161, -354], [160, -354]]}, "center": {"50-99": [152, -357], "17-40": [150, -357], "100-258": [161, -356]}}, -{"id": 838, "name": "Fritz Cola", "description": "It's a german softdrink brand.\nAnd yes, it's named Fritz.", "links": {"website": ["https://de.wikipedia.org/wiki/Fritz_(Getränkemarke)"], "subreddit": ["placede", "de", "ich_iel"], "discord": ["placede"]}, "path": {"99-258": [[-201, -448], [-192, -448], [-190, -431], [-190, -393], [-205, -393], [-205, -422], [-201, -435]]}, "center": {"99-258": [-197, -420]}}, -{"id": 839, "name": "Taylor's Version", "description": "Taylor Swift is in the process of re-recording her older albums due to a dispute with her former record label, Big Machine Records. These re-recorded records are suffixed with \"Taylor's Version\".", "links": {"website": ["https://en.wikipedia.org/wiki/Taylor_Swift_masters_controversy"], "subreddit": ["TaylorSwift"]}, "path": {"60-258": [[19, 124], [19, 126], [20, 126], [20, 130], [21, 130], [21, 135], [23, 137], [46, 137], [46, 130], [48, 130], [48, 124], [45, 124], [45, 123], [42, 123], [42, 124]]}, "center": {"60-258": [28, 131]}}, -{"id": 840, "name": "Statue of Liberty", "description": "The Statue of Liberty is a statue on Liberty Island, an island in New York City, New York, United States. The statue was gifted to the U.S. by France in 1886 and depicts Lady Liberty, a personification of liberty based on the Roman goddess Libertas. She stands 305 feet (93 meters) and holds a torch above her head with her right hand. Her left hand carries a tabula ansata inscribed JULY IV MDCCLXXVI (July 4, 1776 in Roman numerals). This is the date of the U.S. Declaration of Independence, a document declaring the separation of the original U.S. colonies from Britain.", "links": {"website": ["https://en.wikipedia.org/wiki/Statue_of_Liberty"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"113-258": [[-24, 100], [-26, 103], [-27, 107], [-27, 129], [-28, 130], [-28, 132], [-26, 134], [-26, 143], [-27, 144], [-27, 147], [-26, 147], [-26, 168], [-31, 175], [-31, 176], [-7, 176], [-9, 173], [-9, 155], [-10, 154], [-10, 150], [-9, 149], [-7, 149], [-1, 141], [-1, 140], [-5, 136], [-6, 136], [-9, 139], [-12, 139], [-12, 127], [-9, 127], [-9, 123], [-11, 123], [-11, 122], [-13, 119], [-16, 119], [-16, 117], [-20, 117], [-20, 109]]}, "center": {"113-258": [-18, 146]}}, -{"id": 841, "name": "ULTRAKILL", "description": "ULTRAKILL is a fast-paced ultra-violent retro first-person shooter combining the skill-based-style scoring from character action games with unadulterated carnage inspired by the best shooters of the '90s.", "links": {"website": ["https://devilmayquake.com/"], "subreddit": ["Ultrakill"]}, "path": {"88-93": [[-651, -229], [-651, -217], [-648, -213], [-615, -213], [-615, -222], [-616, -222], [-616, -229]], "95-258": [[-650, -236], [-650, -222], [-577, -222], [-577, -226], [-582, -226], [-582, -236]]}, "center": {"88-93": [-633, -221], "95-258": [-615, -229]}}, -{"id": 842, "name": "Coat of arms of Austria-Hungary", "description": "Austria-Hungary was an empire encompassing much of Central Europe from 1867-1918. The empire included modern-day Austria, Bosnia and Herzegovina, Croatia, Czech Republic, Hungary, Slovakia, and Slovenia, along with parts of Italy, Poland, Romania, and Ukraine. After World War I, the empire dissolved.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria-Hungary", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Austria-Hungary"], "subreddit": ["placeAustria", "Austria", "hungary", "austriahungary"], "discord": ["f5ky84vGku", "8gkBubf"]}, "path": {"105-258": [[-698, -47], [-698, -23], [-701, -19], [-701, -18], [-698, -15], [-694, -15], [-693, -14], [-675, -14], [-674, -15], [-670, -15], [-667, -18], [-667, -19], [-669, -22], [-669, -37], [-670, -38], [-670, -43], [-675, -48], [-675, -50], [-679, -50], [-679, -46], [-688, -46], [-691, -49], [-693, -47], [-695, -47]]}, "center": {"105-258": [-684, -31]}}, +{"id": 830, "name": "A group of german Vtubers", "description": "consisting of the streamers EveryLunaEver, Nayami, Jinja, Finstey, MonaEuphelia, Maakurika, MiaowArt, WatermelonVT, Jayuhime, Moepi and YuhkaBun. Check them out!", "links": {"subreddit": ["GerVTuberPlace"]}, "path": {"111-258, T": [[147, -367], [181, -367], [181, -356], [202, -356], [202, -343], [202, -341], [209, -341], [209, -336], [197, -336], [197, -335], [187, -335], [186, -335], [186, -342], [159, -342], [155, -338], [151, -342], [146, -342], [146, -367]]}, "center": {"111-258, T": [159, -354]}}, +{"id": 832, "name": "Bubatzblatt (Weed)", "description": "A cannabis leaflet alluding to the (hopefully) imminent legalization of cannabis in germany.", "links": {"website": ["https://de.wiktionary.org/wiki/Cannabis"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"111-258, T": [[-661, -393], [-662, -391], [-659, -390], [-648, -391], [-643, -405], [-636, -404], [-625, -402], [-631, -410], [-632, -411], [-619, -421], [-630, -421], [-629, -425], [-625, -435], [-620, -445], [-624, -443], [-628, -435], [-634, -432], [-637, -430], [-641, -434], [-643, -444], [-644, -450], [-645, -454], [-647, -445], [-650, -432], [-652, -429], [-662, -436], [-664, -440], [-667, -444], [-668, -446], [-667, -440], [-665, -435], [-664, -431], [-663, -426], [-661, -423], [-660, -422], [-661, -421], [-665, -420], [-667, -420], [-670, -421], [-667, -417], [-660, -411], [-657, -410], [-657, -407], [-660, -407], [-664, -403], [-661, -403], [-658, -404], [-655, -404], [-651, -404], [-650, -405], [-649, -405], [-648, -404], [-648, -402], [-648, -399], [-651, -395], [-653, -394], [-655, -393]]}, "center": {"111-258, T": [-644, -418]}}, +{"id": 833, "name": "Donald Duck Weekblad", "description": "This pixelart displays the first issue of the 'Donald Duck' weekly magazine, a unique phenomenon in the Netherlands. Known as 'Donald Duck Weekblad', it's been a part of Dutch pop culture since its launch in 1952. The magazine's widespread popularity has transcended age groups, making it a distinctive and beloved part of growing up in the Netherlands.", "links": {"subreddit": ["PlaceNL"]}, "path": {"112-258, T": [[-157, -451], [-157, -500], [-123, -500], [-123, -451]]}, "center": {"112-258, T": [-140, -475]}}, +{"id": 834, "name": "Birkenstock-Sandale mit weißen Socken", "description": "White socks and sandals", "links": {}, "path": {"112-258, T": [[626, -429], [624, -449], [640, -448], [647, -413], [626, -395], [620, -393], [614, -394], [609, -395], [607, -397], [606, -401], [610, -413], [617, -420], [623, -427]]}, "center": {"112-258, T": [632, -417]}}, +{"id": 835, "name": "DB Destination indicator", "description": "This is a destination indicator of the Deutsche Bahn.\nDestination is Sylt. This goes back to the legendary 9€ ticket from 2022. At that time, you could use any regional train throughout Germany for a whole month for 9€. For 9€. This created the meme that everyone wants to go to Sylt (a German island). It was triggered by the mayor of Sylt, who was afraid of all the tourists. Now it is a german meme.", "links": {"website": ["https://www.tagesspiegel.de/kultur/angst-vor-neun-euro-touris-warum-die-sylt-memes-mehr-sind-als-nur-internetquatsch-475260.html"], "subreddit": ["placede", "de", "ich_iel"], "discord": ["placede"]}, "path": {"111-258, T": [[855, -450], [954, -450], [954, -426], [855, -426]]}, "center": {"111-258, T": [905, -438]}}, +{"id": 836, "name": "MonaEuphelia", "description": "MonaEuphelia, a German VTuber. She is an owl that loves reading, gaming and story telling .She streams in German and is one of the talents of Lightmotif.", "links": {"website": ["https://www.twitch.tv/monaeuphelia"]}, "path": {"56-84": [[151, -348], [151, -349], [152, -349], [152, -351], [151, -352], [152, -351], [152, -350], [155, -350], [155, -351], [156, -352], [155, -351], [155, -349], [156, -349], [156, -348]], "85-258, T": [[151, -347], [151, -349], [152, -349], [152, -350], [152, -351], [152, -352], [151, -352], [153, -351], [153, -350], [154, -350], [155, -350], [156, -350], [157, -350], [157, -351], [158, -351], [158, -352], [159, -352], [158, -350], [158, -349], [159, -349], [159, -348], [159, -347]]}, "center": {"56-84": [154, -349], "85-258, T": [155, -349]}}, +{"id": 837, "name": "Finstey's Orca", "description": "Orca representing German VTuber Finstey who is a member of the Agency Lightmotif and the first German male VTuber that reached partner Status with only VTubing", "links": {"website": ["https://www.twitch.tv/finstey"], "subreddit": ["finstey"], "discord": ["mq7AxCVfQp"]}, "path": {"50-99": [[151, -353], [151, -354], [150, -354], [150, -355], [149, -355], [149, -356], [148, -356], [148, -357], [149, -357], [149, -358], [149, -359], [148, -360], [149, -359], [150, -359], [150, -360], [150, -359], [151, -359], [152, -359], [152, -360], [153, -360], [154, -360], [154, -361], [154, -358], [157, -358], [157, -359], [158, -359], [158, -361], [157, -361], [157, -362], [156, -362], [156, -363], [156, -362], [160, -362], [160, -363], [160, -362], [159, -362], [159, -361], [158, -361], [158, -357], [157, -357], [157, -356], [156, -356], [156, -355], [154, -355], [154, -353], [154, -354], [153, -354], [153, -355], [152, -355], [151, -355]], "17-40": [[149, -353], [149, -354], [148, -354], [148, -355], [147, -355], [147, -356], [146, -356], [146, -357], [147, -357], [147, -358], [147, -359], [146, -360], [147, -359], [148, -359], [148, -360], [148, -359], [150, -359], [150, -360], [151, -360], [152, -360], [152, -361], [152, -358], [155, -358], [155, -359], [156, -359], [156, -361], [155, -361], [155, -362], [154, -362], [154, -363], [154, -362], [158, -362], [158, -363], [158, -362], [157, -362], [157, -361], [156, -361], [156, -357], [155, -357], [155, -356], [154, -356], [154, -355], [152, -355], [152, -353], [152, -354], [151, -354], [151, -355], [149, -355]], "100-258, T": [[160, -352], [160, -353], [159, -353], [159, -354], [158, -354], [158, -355], [157, -355], [157, -356], [158, -356], [158, -357], [158, -358], [157, -359], [158, -358], [159, -359], [159, -358], [160, -358], [161, -359], [162, -359], [163, -359], [163, -360], [163, -357], [166, -357], [166, -358], [167, -358], [167, -359], [167, -360], [166, -360], [166, -361], [165, -361], [165, -362], [165, -361], [169, -361], [169, -362], [169, -361], [168, -361], [168, -360], [167, -360], [167, -356], [166, -356], [166, -355], [165, -355], [165, -354], [164, -354], [163, -354], [163, -352], [163, -353], [162, -353], [162, -354], [161, -354], [160, -354]]}, "center": {"50-99": [152, -357], "17-40": [150, -357], "100-258, T": [161, -356]}}, +{"id": 838, "name": "Fritz Cola", "description": "It's a german softdrink brand.\nAnd yes, it's named Fritz.", "links": {"website": ["https://de.wikipedia.org/wiki/Fritz_(Getränkemarke)"], "subreddit": ["placede", "de", "ich_iel"], "discord": ["placede"]}, "path": {"99-258, T": [[-201, -448], [-192, -448], [-190, -431], [-190, -393], [-205, -393], [-205, -422], [-201, -435]]}, "center": {"99-258, T": [-197, -420]}}, +{"id": 839, "name": "Taylor's Version", "description": "Taylor Swift is in the process of re-recording her older albums due to a dispute with her former record label, Big Machine Records. These re-recorded records are suffixed with \"Taylor's Version\".", "links": {"website": ["https://en.wikipedia.org/wiki/Taylor_Swift_masters_controversy"], "subreddit": ["TaylorSwift"]}, "path": {"60-258, T": [[19, 124], [19, 126], [20, 126], [20, 130], [21, 130], [21, 135], [23, 137], [46, 137], [46, 130], [48, 130], [48, 124], [45, 124], [45, 123], [42, 123], [42, 124]]}, "center": {"60-258, T": [28, 131]}}, +{"id": 840, "name": "Statue of Liberty", "description": "The Statue of Liberty is a statue on Liberty Island, an island in New York City, New York, United States. The statue was gifted to the U.S. by France in 1886 and depicts Lady Liberty, a personification of liberty based on the Roman goddess Libertas. She stands 305 feet (93 meters) and holds a torch above her head with her right hand. Her left hand carries a tabula ansata inscribed JULY IV MDCCLXXVI (July 4, 1776 in Roman numerals). This is the date of the U.S. Declaration of Independence, a document declaring the separation of the original U.S. colonies from Britain.", "links": {"website": ["https://en.wikipedia.org/wiki/Statue_of_Liberty"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"113-258, T": [[-24, 100], [-26, 103], [-27, 107], [-27, 129], [-28, 130], [-28, 132], [-26, 134], [-26, 143], [-27, 144], [-27, 147], [-26, 147], [-26, 168], [-31, 175], [-31, 176], [-7, 176], [-9, 173], [-9, 155], [-10, 154], [-10, 150], [-9, 149], [-7, 149], [-1, 141], [-1, 140], [-5, 136], [-6, 136], [-9, 139], [-12, 139], [-12, 127], [-9, 127], [-9, 123], [-11, 123], [-11, 122], [-13, 119], [-16, 119], [-16, 117], [-20, 117], [-20, 109]]}, "center": {"113-258, T": [-18, 146]}}, +{"id": 841, "name": "ULTRAKILL", "description": "ULTRAKILL is a fast-paced ultra-violent retro first-person shooter combining the skill-based-style scoring from character action games with unadulterated carnage inspired by the best shooters of the '90s.", "links": {"website": ["https://devilmayquake.com/"], "subreddit": ["Ultrakill"]}, "path": {"88-93": [[-651, -229], [-651, -217], [-648, -213], [-615, -213], [-615, -222], [-616, -222], [-616, -229]], "95-258, T": [[-650, -236], [-650, -222], [-577, -222], [-577, -226], [-582, -226], [-582, -236]]}, "center": {"88-93": [-633, -221], "95-258, T": [-615, -229]}}, +{"id": 842, "name": "Coat of arms of Austria-Hungary", "description": "Austria-Hungary was an empire encompassing much of Central Europe from 1867-1918. The empire included modern-day Austria, Bosnia and Herzegovina, Croatia, Czech Republic, Hungary, Slovakia, and Slovenia, along with parts of Italy, Poland, Romania, and Ukraine. After World War I, the empire dissolved.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria-Hungary", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Austria-Hungary"], "subreddit": ["placeAustria", "Austria", "hungary", "austriahungary"], "discord": ["f5ky84vGku", "8gkBubf"]}, "path": {"105-258, T": [[-698, -47], [-698, -23], [-701, -19], [-701, -18], [-698, -15], [-694, -15], [-693, -14], [-675, -14], [-674, -15], [-670, -15], [-667, -18], [-667, -19], [-669, -22], [-669, -37], [-670, -38], [-670, -43], [-675, -48], [-675, -50], [-679, -50], [-679, -46], [-688, -46], [-691, -49], [-693, -47], [-695, -47]]}, "center": {"105-258, T": [-684, -31]}}, {"id": 843, "name": "Lift Bottle", "description": "Lift is an Apple Juice Brand, owned by The Coca-Cola-Company. \nIt was later replaced by an Augustiner Beer.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"42-98": [[-175, -394], [-174, -393], [-161, -393], [-161, -416], [-157, -418], [-157, -423], [-158, -425], [-159, -428], [-160, -428], [-160, -431], [-164, -438], [-164, -439], [-163, -439], [-163, -442], [-171, -442], [-171, -439], [-170, -439], [-170, -436], [-171, -434], [-172, -432], [-173, -430], [-174, -428], [-175, -423], [-176, -407]], "10-41": [[-175, -394], [-174, -393], [-161, -393], [-161, -416], [-159, -417], [-157, -418], [-157, -424], [-159, -424], [-159, -428], [-160, -428], [-164, -438], [-164, -439], [-163, -439], [-163, -442], [-171, -442], [-171, -439], [-170, -439], [-170, -436], [-174, -429], [-174, -428], [-175, -428], [-175, -425], [-176, -425], [-176, -394]]}, "center": {"42-98": [-167, -422], "10-41": [-167, -422]}}, -{"id": 844, "name": "Article 49 paragraph 3", "description": "The article, which comprises four paragraphs, was designed to prevent crises like those that occurred under the Fourth Republic. Its best-known provision, paragraph 3 (Article 49.3), allows the government to force passage of a law without a vote, unless the parliament passes a motion of no confidence.\nIt's widely known during the pension reform of March 2023 because the government used it to pass the reform using this article. This led to massive strikes in the country for a long period.", "links": {"website": ["https://en.wikipedia.org/wiki/Article_49_of_the_French_Constitution", "https://fr.wikipedia.org/wiki/Article_49_de_la_Constitution_de_la_Cinqui%C3%A8me_R%C3%A9publique_fran%C3%A7aise", "https://www.lemonde.fr/en/politics/article/2023/06/07/french-parliament-chief-blocks-bid-to-overturn-pension-reform-opposition-files-no-confidence-motion_6030413_5.html", "https://en.wikipedia.org/wiki/2023_French_pension_reform_unrest?wprov=srpw1_0"]}, "path": {"56-258": [[-442, 94], [-445, 94], [-445, 95], [-446, 95], [-446, 97], [-447, 97], [-447, 98], [-448, 98], [-448, 99], [-449, 99], [-449, 103], [-448, 103], [-448, 104], [-446, 104], [-446, 105], [-446, 106], [-421, 106], [-421, 105], [-420, 105], [-420, 95], [-422, 95], [-422, 94], [-427, 94], [-427, 95], [-428, 95], [-428, 96], [-429, 96], [-429, 98], [-431, 98], [-431, 96], [-432, 96], [-432, 94]]}, "center": {"56-258": [-436, 100]}}, -{"id": 845, "name": "1000tipla / Vilebrequin", "description": "On 24 September 2020, Sylvain Lévy and Pierre Chabrier, creators of the Vilebrequin YouTube channel, announced their plans to take a Fiat Multipla beyond the 1,000 hp mark. The project was named 1000tipla.\n\nThe project was made through a fundraising event on KissKissBankBank, which raised over one million euros.\n\nThe project was completed in 2023, after being shown at the Paris Motor Show in 2022 and did its maiden lap at the Magny-Cours track the following year. It also did a parade in the 24 hours of Le Mans in 2023.", "links": {"website": ["https://fr.wikipedia.org/wiki/Fiat_Multipla#:~:text=Projet-,1000tipla,-de%20Vilebrequin%5Bmodifier", "https://www.youtube.com/channel/UCC9mlCpyisiIpp9YA9xV-QA", "https://www.kisskissbankbank.com/fr/projects/multiplamg-stage-1000-milletipla"], "subreddit": ["Vilebrequin"]}, "path": {"49-55": [[-489, 143], [-484, 142], [-471, 142], [-470, 143], [-466, 143], [-465, 142], [-458, 142], [-459, 142], [-459, 137], [-460, 136], [-461, 134], [-465, 133], [-468, 132], [-470, 130], [-471, 130], [-473, 129], [-475, 127], [-479, 126], [-495, 126], [-497, 125], [-499, 124], [-500, 125], [-498, 128], [-497, 128], [-496, 129], [-497, 130], [-497, 135], [-496, 135], [-496, 136], [-500, 136], [-500, 138], [-499, 138], [-499, 139], [-495, 139], [-495, 142], [-490, 142]], "62-258": [[-463, 308], [-457, 308], [-457, 306], [-458, 306], [-458, 303], [-459, 303], [-459, 302], [-460, 302], [-460, 301], [-461, 301], [-461, 299], [-462, 299], [-462, 298], [-469, 298], [-469, 296], [-472, 296], [-472, 295], [-473, 295], [-473, 294], [-475, 294], [-475, 293], [-477, 293], [-477, 292], [-493, 292], [-495, 291], [-496, 290], [-501, 290], [-501, 294], [-500, 294], [-500, 295], [-499, 295], [-499, 298], [-498, 298], [-498, 299], [-499, 300], [-500, 306], [-499, 306], [-497, 307], [-496, 308], [-491, 309], [-490, 308], [-469, 308]]}, "center": {"49-55": [-487, 134], "62-258": [-489, 300]}}, -{"id": 846, "name": "r/de", "description": "The main subreddit of the German community", "links": {"subreddit": ["de"], "discord": ["placeDE"]}, "path": {"198-258": [[-1500, -399], [-1475, -399], [-1475, -391], [-1500, -391]]}, "center": {"198-258": [-1487, -395]}}, -{"id": 847, "name": "Danke Kenteken", "description": "This is a Dutch license plate to prove the cooperation between Germany and the Netherlands and to thank them for protecting our area. The numbers are supposed to be 49, Germany's land code. Officially Dutch license plates are not allowed to have vowels.", "links": {"website": ["https://en.wikipedia.org/wiki/Vehicle_registration_plates_of_the_Netherlands"], "subreddit": ["PlaceNL", "placeDE"]}, "path": {"64-258": [[606, -462], [606, -452], [649, -452], [649, -462]]}, "center": {"64-258": [628, -457]}}, -{"id": 848, "name": "r/chelseafc", "description": "Chelsea Football Club paid tribute to their beloved Italian player Gianluca Vialli (1964-2023)\nStamford the lion can also be seen to the bottom left.", "links": {"subreddit": ["chelseafc"]}, "path": {"113-258": [[-637, -367], [-619, -367], [-619, -354], [-633, -353], [-633, -346], [-646, -352], [-638, -356], [-640, -353]]}, "center": {"113-258": [-630, -360]}}, -{"id": 849, "name": "r/coldmirror", "description": "The subreddit of the well-known Youtuber \"Coldmirror\".", "links": {"website": ["https://www.youtube.com/@coldmirror"], "subreddit": ["coldmirror"]}, "path": {"198-258": [[-1500, -429], [-1500, -420], [-1435, -420], [-1435, -429]]}, "center": {"198-258": [-1467, -424]}}, -{"id": 850, "name": "3rd Assault Brigade \"Azov\" (Ukraine)", "description": "The 3rd Separate Assault Brigade is a brigade of the Ukrainian Ground Forces formed in 2022. The brigade, established in November 2022, was a merger of the Azov SSO, Special Operations Forces units which were created by former Azov Battalion veterans.", "links": {"website": ["https://en.wikipedia.org/wiki/3rd_Assault_Brigade_(Ukraine)", "https://ab3.army/"], "subreddit": ["placeukraine", "ukraine"]}, "path": {"56-258": [[-331, -164], [-316, -164], [-315, -163], [-315, -144], [-316, -144], [-323, -137], [-330, -144], [-331, -144], [-331, -160]]}, "center": {"56-258": [-323, -150]}}, -{"id": 851, "name": "Max Verstappen", "description": "Max (Emilian) Verstappen is a Dutch and Belgian racing driver and the 2021 and 2022 Formula One World Champion. He competes under the Dutch flag in Formula One with Red Bull Racing.", "links": {"website": ["https://en.wikipedia.org/wiki/Max_Verstappen"], "subreddit": ["placeNL", "formula1"]}, "path": {"101-258": [[-452, -500], [-455, -500], [-455, -499], [-456, -499], [-457, -499], [-457, -493], [-454, -493], [-454, -492], [-455, -492], [-455, -490], [-456, -490], [-456, -481], [-455, -481], [-455, -480], [-453, -480], [-453, -479], [-457, -479], [-457, -471], [-456, -471], [-456, -470], [-455, -470], [-455, -469], [-452, -469], [-452, -468], [-448, -468], [-448, -469], [-446, -469], [-445, -469], [-445, -470], [-444, -470], [-444, -471], [-443, -471], [-443, -478], [-444, -479], [-444, -490], [-445, -490], [-445, -492], [-446, -492], [-446, -493], [-443, -493], [-443, -499], [-445, -499], [-445, -500]]}, "center": {"101-258": [-449, -475]}}, -{"id": 852, "name": "Marten (croatian: Kuna)", "description": "A marten is a weasel-like mammal in the genus Martes within the subfamily Guloninae, in the family Mustelidae. They have bushy tails and large paws with partially retractile claws. The fur varies from yellowish to dark brown, depending on the species; it is valued by animal trappers for the fur trade. Martens are slender, agile animals, adapted to living in the taiga, which inhabit coniferous and northern deciduous forests across the Northern Hemisphere.", "links": {"website": ["https://en.wikipedia.org/wiki/Marten"]}, "path": {"109-258": [[346, -139], [345, -138], [345, -136], [346, -135], [345, -134], [346, -132], [348, -131], [346, -129], [345, -127], [347, -124], [347, -122], [346, -121], [356, -121], [355, -122], [356, -124], [358, -126], [357, -128], [355, -131], [357, -133], [356, -135], [357, -136], [357, -138], [356, -139], [355, -139], [353, -137], [349, -137], [347, -139]]}, "center": {"109-258": [351, -127]}}, +{"id": 844, "name": "Article 49 paragraph 3", "description": "The article, which comprises four paragraphs, was designed to prevent crises like those that occurred under the Fourth Republic. Its best-known provision, paragraph 3 (Article 49.3), allows the government to force passage of a law without a vote, unless the parliament passes a motion of no confidence.\nIt's widely known during the pension reform of March 2023 because the government used it to pass the reform using this article. This led to massive strikes in the country for a long period.", "links": {"website": ["https://en.wikipedia.org/wiki/Article_49_of_the_French_Constitution", "https://fr.wikipedia.org/wiki/Article_49_de_la_Constitution_de_la_Cinqui%C3%A8me_R%C3%A9publique_fran%C3%A7aise", "https://www.lemonde.fr/en/politics/article/2023/06/07/french-parliament-chief-blocks-bid-to-overturn-pension-reform-opposition-files-no-confidence-motion_6030413_5.html", "https://en.wikipedia.org/wiki/2023_French_pension_reform_unrest?wprov=srpw1_0"]}, "path": {"56-258, T": [[-442, 94], [-445, 94], [-445, 95], [-446, 95], [-446, 97], [-447, 97], [-447, 98], [-448, 98], [-448, 99], [-449, 99], [-449, 103], [-448, 103], [-448, 104], [-446, 104], [-446, 105], [-446, 106], [-421, 106], [-421, 105], [-420, 105], [-420, 95], [-422, 95], [-422, 94], [-427, 94], [-427, 95], [-428, 95], [-428, 96], [-429, 96], [-429, 98], [-431, 98], [-431, 96], [-432, 96], [-432, 94]]}, "center": {"56-258, T": [-436, 100]}}, +{"id": 845, "name": "1000tipla / Vilebrequin", "description": "On 24 September 2020, Sylvain Lévy and Pierre Chabrier, creators of the Vilebrequin YouTube channel, announced their plans to take a Fiat Multipla beyond the 1,000 hp mark. The project was named 1000tipla.\n\nThe project was made through a fundraising event on KissKissBankBank, which raised over one million euros.\n\nThe project was completed in 2023, after being shown at the Paris Motor Show in 2022 and did its maiden lap at the Magny-Cours track the following year. It also did a parade in the 24 hours of Le Mans in 2023.", "links": {"website": ["https://fr.wikipedia.org/wiki/Fiat_Multipla#:~:text=Projet-,1000tipla,-de%20Vilebrequin%5Bmodifier", "https://www.youtube.com/channel/UCC9mlCpyisiIpp9YA9xV-QA", "https://www.kisskissbankbank.com/fr/projects/multiplamg-stage-1000-milletipla"], "subreddit": ["Vilebrequin"]}, "path": {"49-55": [[-489, 143], [-484, 142], [-471, 142], [-470, 143], [-466, 143], [-465, 142], [-458, 142], [-459, 142], [-459, 137], [-460, 136], [-461, 134], [-465, 133], [-468, 132], [-470, 130], [-471, 130], [-473, 129], [-475, 127], [-479, 126], [-495, 126], [-497, 125], [-499, 124], [-500, 125], [-498, 128], [-497, 128], [-496, 129], [-497, 130], [-497, 135], [-496, 135], [-496, 136], [-500, 136], [-500, 138], [-499, 138], [-499, 139], [-495, 139], [-495, 142], [-490, 142]], "62-258, T": [[-463, 308], [-457, 308], [-457, 306], [-458, 306], [-458, 303], [-459, 303], [-459, 302], [-460, 302], [-460, 301], [-461, 301], [-461, 299], [-462, 299], [-462, 298], [-469, 298], [-469, 296], [-472, 296], [-472, 295], [-473, 295], [-473, 294], [-475, 294], [-475, 293], [-477, 293], [-477, 292], [-493, 292], [-495, 291], [-496, 290], [-501, 290], [-501, 294], [-500, 294], [-500, 295], [-499, 295], [-499, 298], [-498, 298], [-498, 299], [-499, 300], [-500, 306], [-499, 306], [-497, 307], [-496, 308], [-491, 309], [-490, 308], [-469, 308]]}, "center": {"49-55": [-487, 134], "62-258, T": [-489, 300]}}, +{"id": 846, "name": "r/de", "description": "The main subreddit of the German community", "links": {"subreddit": ["de"], "discord": ["placeDE"]}, "path": {"198-258, T": [[-1500, -399], [-1475, -399], [-1475, -391], [-1500, -391]]}, "center": {"198-258, T": [-1487, -395]}}, +{"id": 847, "name": "Danke Kenteken", "description": "This is a Dutch license plate to prove the cooperation between Germany and the Netherlands and to thank them for protecting our area. The numbers are supposed to be 49, Germany's land code. Officially Dutch license plates are not allowed to have vowels.", "links": {"website": ["https://en.wikipedia.org/wiki/Vehicle_registration_plates_of_the_Netherlands"], "subreddit": ["PlaceNL", "placeDE"]}, "path": {"64-258, T": [[606, -462], [606, -452], [649, -452], [649, -462]]}, "center": {"64-258, T": [628, -457]}}, +{"id": 848, "name": "r/chelseafc", "description": "Chelsea Football Club paid tribute to their beloved Italian player Gianluca Vialli (1964-2023)\nStamford the lion can also be seen to the bottom left.", "links": {"subreddit": ["chelseafc"]}, "path": {"113-258, T": [[-637, -367], [-619, -367], [-619, -354], [-633, -353], [-633, -346], [-646, -352], [-638, -356], [-640, -353]]}, "center": {"113-258, T": [-630, -360]}}, +{"id": 849, "name": "r/coldmirror", "description": "The subreddit of the well-known Youtuber \"Coldmirror\".", "links": {"website": ["https://www.youtube.com/@coldmirror"], "subreddit": ["coldmirror"]}, "path": {"198-258, T": [[-1500, -429], [-1500, -420], [-1435, -420], [-1435, -429]]}, "center": {"198-258, T": [-1467, -424]}}, +{"id": 850, "name": "3rd Assault Brigade \"Azov\" (Ukraine)", "description": "The 3rd Separate Assault Brigade is a brigade of the Ukrainian Ground Forces formed in 2022. The brigade, established in November 2022, was a merger of the Azov SSO, Special Operations Forces units which were created by former Azov Battalion veterans.", "links": {"website": ["https://en.wikipedia.org/wiki/3rd_Assault_Brigade_(Ukraine)", "https://ab3.army/"], "subreddit": ["placeukraine", "ukraine"]}, "path": {"56-258, T": [[-331, -164], [-316, -164], [-315, -163], [-315, -144], [-316, -144], [-323, -137], [-330, -144], [-331, -144], [-331, -160]]}, "center": {"56-258, T": [-323, -150]}}, +{"id": 851, "name": "Max Verstappen", "description": "Max (Emilian) Verstappen is a Dutch and Belgian racing driver and the 2021 and 2022 Formula One World Champion. He competes under the Dutch flag in Formula One with Red Bull Racing.", "links": {"website": ["https://en.wikipedia.org/wiki/Max_Verstappen"], "subreddit": ["placeNL", "formula1"]}, "path": {"101-258, T": [[-452, -500], [-455, -500], [-455, -499], [-456, -499], [-457, -499], [-457, -493], [-454, -493], [-454, -492], [-455, -492], [-455, -490], [-456, -490], [-456, -481], [-455, -481], [-455, -480], [-453, -480], [-453, -479], [-457, -479], [-457, -471], [-456, -471], [-456, -470], [-455, -470], [-455, -469], [-452, -469], [-452, -468], [-448, -468], [-448, -469], [-446, -469], [-445, -469], [-445, -470], [-444, -470], [-444, -471], [-443, -471], [-443, -478], [-444, -479], [-444, -490], [-445, -490], [-445, -492], [-446, -492], [-446, -493], [-443, -493], [-443, -499], [-445, -499], [-445, -500]]}, "center": {"101-258, T": [-449, -475]}}, +{"id": 852, "name": "Marten (croatian: Kuna)", "description": "A marten is a weasel-like mammal in the genus Martes within the subfamily Guloninae, in the family Mustelidae. They have bushy tails and large paws with partially retractile claws. The fur varies from yellowish to dark brown, depending on the species; it is valued by animal trappers for the fur trade. Martens are slender, agile animals, adapted to living in the taiga, which inhabit coniferous and northern deciduous forests across the Northern Hemisphere.", "links": {"website": ["https://en.wikipedia.org/wiki/Marten"]}, "path": {"109-258, T": [[346, -139], [345, -138], [345, -136], [346, -135], [345, -134], [346, -132], [348, -131], [346, -129], [345, -127], [347, -124], [347, -122], [346, -121], [356, -121], [355, -122], [356, -124], [358, -126], [357, -128], [355, -131], [357, -133], [356, -135], [357, -136], [357, -138], [356, -139], [355, -139], [353, -137], [349, -137], [347, -139]]}, "center": {"109-258, T": [351, -127]}}, {"id": 853, "name": "Murder Drones", "description": "Murder Drones is a Youtube-based web series created by Glitch Productions which released in 2021. It's set in a post-apocalyptic exoplanet where all humans used to live before they accidentally exploded the planet's core. Now, it's inhabited by robots named Worker Drones. However, after they started gaining sentience, a new type of robots, Disassembly Drones, were sent with one objective: to eliminate every Worker Drone. Now, the Worker Drones all live inside a bunker underneath ice, hidden away from any Disassembly Drones.", "links": {"website": ["https://www.glitchprod.com/murder-drones"], "subreddit": ["MurderDrones"]}, "path": {"12-47": [[456, 0], [499, 0], [499, 24], [456, 24]]}, "center": {"12-47": [478, 12]}}, -{"id": 854, "name": "Perry the Platypus", "description": "This creation of the beloved character from the animated TV show \"Phineas and Ferb.\" was spearheaded by the streamer Papaplatte as an attack on the My Little Pony community.\n\nWith the MLP fandom planning to retake this spot following the end of his stream, Papaplatte threatened to destroy multiple pieces of artworks from the P3ACE alliance if the bronies decided to fight back, forcing them to move elsewhere on the canvas. \n\nSeemingly unaware of the controversy surrounding the piece, the official Reddit Twitter account posted a picture of Perry and said to protect him at all costs.", "links": {"website": ["https://www.twitch.tv/papaplatte", "https://phineasandferb.fandom.com/wiki/Perry_the_Platypus", "https://twitter.com/Reddit/status/1682855591209738240"]}, "path": {"101-251": [[-76, 248], [-39, 248], [-39, 247], [-38, 246], [-35, 248], [21, 248], [22, 247], [22, 240], [23, 240], [24, 239], [24, 237], [23, 236], [22, 236], [21, 235], [20, 235], [19, 234], [18, 234], [17, 233], [16, 233], [15, 232], [14, 232], [13, 231], [11, 231], [10, 230], [9, 230], [9, 229], [8, 228], [-15, 228], [-16, 229], [-20, 229], [-22, 231], [-24, 231], [-25, 232], [-27, 232], [-28, 233], [-27, 232], [-29, 234], [-30, 234], [-31, 235], [-33, 235], [-34, 234], [-34, 228], [-33, 228], [-33, 223], [-31, 223], [-31, 219], [-30, 218], [-30, 217], [-29, 216], [-29, 215], [-27, 213], [-27, 212], [-25, 210], [-25, 209], [-21, 205], [-20, 199], [-18, 197], [-17, 197], [-16, 197], [-16, 195], [-19, 192], [-19, 189], [-19, 184], [-20, 183], [-20, 182], [-21, 181], [-22, 181], [-27, 176], [-29, 176], [-30, 175], [-34, 172], [-35, 172], [-39, 176], [-58, 176], [-59, 177], [-58, 178], [-60, 180], [-60, 181], [-61, 182], [-65, 182], [-66, 183], [-67, 183], [-71, 187], [-71, 190], [-70, 191], [-70, 192], [-68, 194], [-67, 195], [-67, 198], [-68, 199], [-69, 199], [-70, 200], [-72, 202], [-72, 203], [-74, 203], [-75, 202], [-77, 202], [-78, 201], [-80, 201], [-81, 202], [-82, 202], [-83, 203], [-84, 204], [-84, 207], [-83, 208], [-80, 208], [-79, 209], [-78, 209], [-77, 208], [-75, 208], [-74, 207], [-73, 207], [-70, 210], [-69, 211], [-69, 212], [-69, 213], [-76, 213], [-78, 215], [-78, 220], [-76, 222], [-74, 222], [-73, 221], [-71, 221], [-71, 232], [-72, 233], [-73, 233], [-73, 241], [-72, 242], [-72, 243], [-76, 247]], "252-258": [[-45, 253], [-54, 253], [-55, 252], [-55, 251], [-54, 250], [-55, 249], [-56, 248], [-79, 248], [-81, 246], [-81, 245], [-80, 244], [-80, 242], [-79, 241], [-74, 241], [-73, 240], [-73, 233], [-72, 232], [-71, 231], [-71, 223], [-72, 222], [-77, 222], [-78, 221], [-78, 216], [-75, 213], [-72, 213], [-71, 212], [-70, 212], [-69, 211], [-69, 210], [-72, 207], [-75, 207], [-75, 206], [-76, 205], [-77, 205], [-77, 204], [-79, 202], [-79, 199], [-78, 198], [-78, 196], [-72, 196], [-71, 197], [-70, 198], [-67, 198], [-66, 197], [-67, 196], [-67, 195], [-68, 194], [-70, 192], [-70, 191], [-71, 190], [-71, 186], [-70, 186], [-67, 183], [-66, 183], [-65, 182], [-61, 182], [-60, 181], [-60, 180], [-59, 179], [-58, 179], [-57, 178], [-57, 177], [-56, 176], [-31, 176], [-30, 175], [-29, 175], [-28, 176], [-22, 176], [-22, 177], [-21, 178], [-20, 179], [-20, 180], [-19, 181], [-19, 192], [-16, 195], [-16, 197], [-18, 197], [-20, 199], [-21, 203], [-21, 205], [-25, 209], [-25, 210], [-26, 211], [-27, 213], [-28, 214], [-28, 216], [-29, 217], [-29, 218], [-30, 219], [-30, 220], [-31, 221], [-31, 224], [-33, 226], [-33, 228], [-34, 229], [-34, 232], [-33, 233], [-33, 234], [-32, 235], [-30, 235], [-29, 234], [-29, 233], [-28, 233], [-27, 232], [-25, 232], [-24, 231], [-23, 231], [-22, 230], [-20, 230], [-19, 229], [-17, 229], [-16, 228], [8, 228], [9, 229], [10, 230], [11, 230], [11, 231], [12, 232], [13, 232], [14, 233], [17, 233], [18, 234], [19, 235], [21, 235], [22, 236], [23, 236], [26, 239], [26, 240], [23, 240], [23, 244], [23, 247], [22, 248], [-28, 248], [-29, 247], [-29, 246], [-30, 245], [-31, 244], [-32, 244], [-33, 245], [-36, 245], [-39, 248], [-44, 248], [-44, 251], [-45, 252]]}, "center": {"101-251": [-45, 198], "252-258": [-44, 198]}}, -{"id": 855, "name": "Vuk", "description": "Vuk is the protagonist of the book with the same title, written by István Fekete, a Hungarian author known for his novels about animals. The book is known as \"The Little Fox\" in English. This pixel art depicts Vuk in the 1981 animated film adaptation of the books.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Little_Fox"], "subreddit": ["hungary"]}, "path": {"109-258": [[-663, -35], [-667, -32], [-667, -27], [-668, -26], [-668, -21], [-667, -20], [-667, -13], [-662, -8], [-662, -6], [-636, -6], [-636, -9], [-633, -11], [-628, -23], [-628, -29], [-631, -33], [-632, -33], [-636, -29], [-640, -27], [-641, -27], [-644, -31], [-647, -31], [-649, -33], [-653, -33], [-653, -31], [-655, -31], [-658, -30]]}, "center": {"109-258": [-650, -18]}}, -{"id": 856, "name": "Red Bull Racing RB18/RB19", "description": "Red Bull Racing is a Formula 1 team owned by Austrian energy drink company Red Bull.\n\nThis particular car (#1) is that of Max Verstappen's, champion of the 2021 and 2022 Formula 1 seasons.", "links": {"website": ["https://www.redbullracing.com/int-en/", "https://en.wikipedia.org/wiki/Red_Bull_Racing", "https://en.wikipedia.org/wiki/Red_Bull_Racing_RB18", "https://en.wikipedia.org/wiki/Red_Bull_Racing_RB19"], "subreddit": ["formula1", "placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"110-258": [[-862, -43], [-862, -40], [-860, -37], [-860, -33], [-858, -33], [-858, -31], [-855, -27], [-853, -26], [-851, -26], [-847, -29], [-819, -29], [-818, -28], [-803, -28], [-801, -26], [-798, -26], [-795, -28], [-780, -28], [-780, -29], [-782, -32], [-787, -35], [-792, -35], [-802, -39], [-809, -39], [-815, -43], [-816, -43], [-821, -41], [-823, -41], [-823, -44], [-825, -46], [-835, -46], [-840, -44], [-850, -39], [-851, -39], [-853, -44], [-858, -44], [-858, -43]]}, "center": {"110-258": [-831, -38]}}, -{"id": 857, "name": "Ireland", "description": "The island of Ireland as it appears on a map, encompassing both the Republic of Ireland and the United Kingdom's Northern Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"93-258": [[-841, 80], [-847, 86], [-847, 88], [-849, 88], [-849, 93], [-855, 93], [-857, 95], [-857, 97], [-858, 98], [-858, 101], [-859, 101], [-859, 105], [-856, 109], [-854, 109], [-854, 111], [-858, 115], [-858, 119], [-860, 122], [-860, 123], [-857, 128], [-853, 128], [-843, 125], [-841, 122], [-837, 122], [-832, 117], [-831, 118], [-830, 118], [-825, 111], [-825, 109], [-826, 109], [-826, 101], [-828, 98], [-829, 98], [-829, 96], [-827, 96], [-825, 94], [-824, 91], [-824, 90], [-827, 86], [-830, 83], [-832, 82], [-837, 82]]}, "center": {"93-258": [-841, 106]}}, -{"id": 858, "name": "Agender flag", "description": "Agender, also known as genderless, is an identity to describe someone that entirely lacks a gender or with complete genderlessness. It falls under the non-binary umbrella in which one is not male, female, neutral, xenic, outherine, or any other gender. They may identify most strongly as just an individual, rather than as any given gender.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Agender"]}, "path": {"95-258": [[138, 94], [138, 102], [153, 102], [153, 94]]}, "center": {"95-258": [146, 98]}}, +{"id": 854, "name": "Perry the Platypus", "description": "This creation of the beloved character from the animated TV show \"Phineas and Ferb.\" was spearheaded by the streamer Papaplatte as an attack on the My Little Pony community.\n\nWith the MLP fandom planning to retake this spot following the end of his stream, Papaplatte threatened to destroy multiple pieces of artworks from the P3ACE alliance if the bronies decided to fight back, forcing them to move elsewhere on the canvas. \n\nSeemingly unaware of the controversy surrounding the piece, the official Reddit Twitter account posted a picture of Perry and said to protect him at all costs.", "links": {"website": ["https://www.twitch.tv/papaplatte", "https://phineasandferb.fandom.com/wiki/Perry_the_Platypus", "https://twitter.com/Reddit/status/1682855591209738240"]}, "path": {"252-258": [[-45, 253], [-54, 253], [-55, 252], [-55, 251], [-54, 250], [-55, 249], [-56, 248], [-79, 248], [-81, 246], [-81, 245], [-80, 244], [-80, 242], [-79, 241], [-74, 241], [-73, 240], [-73, 233], [-72, 232], [-71, 231], [-71, 223], [-72, 222], [-77, 222], [-78, 221], [-78, 216], [-75, 213], [-72, 213], [-71, 212], [-70, 212], [-69, 211], [-69, 210], [-72, 207], [-75, 207], [-75, 206], [-76, 205], [-77, 205], [-77, 204], [-79, 202], [-79, 199], [-78, 198], [-78, 196], [-72, 196], [-71, 197], [-70, 198], [-67, 198], [-66, 197], [-67, 196], [-67, 195], [-68, 194], [-70, 192], [-70, 191], [-71, 190], [-71, 186], [-70, 186], [-67, 183], [-66, 183], [-65, 182], [-61, 182], [-60, 181], [-60, 180], [-59, 179], [-58, 179], [-57, 178], [-57, 177], [-56, 176], [-31, 176], [-30, 175], [-29, 175], [-28, 176], [-22, 176], [-22, 177], [-21, 178], [-20, 179], [-20, 180], [-19, 181], [-19, 192], [-16, 195], [-16, 197], [-18, 197], [-20, 199], [-21, 203], [-21, 205], [-25, 209], [-25, 210], [-26, 211], [-27, 213], [-28, 214], [-28, 216], [-29, 217], [-29, 218], [-30, 219], [-30, 220], [-31, 221], [-31, 224], [-33, 226], [-33, 228], [-34, 229], [-34, 232], [-33, 233], [-33, 234], [-32, 235], [-30, 235], [-29, 234], [-29, 233], [-28, 233], [-27, 232], [-25, 232], [-24, 231], [-23, 231], [-22, 230], [-20, 230], [-19, 229], [-17, 229], [-16, 228], [8, 228], [9, 229], [10, 230], [11, 230], [11, 231], [12, 232], [13, 232], [14, 233], [17, 233], [18, 234], [19, 235], [21, 235], [22, 236], [23, 236], [26, 239], [26, 240], [23, 240], [23, 244], [23, 247], [22, 248], [-28, 248], [-29, 247], [-29, 246], [-30, 245], [-31, 244], [-32, 244], [-33, 245], [-36, 245], [-39, 248], [-44, 248], [-44, 251], [-45, 252]], "101-251, T": [[-76, 248], [-39, 248], [-39, 247], [-38, 246], [-35, 248], [21, 248], [22, 247], [22, 240], [23, 240], [24, 239], [24, 237], [23, 236], [22, 236], [21, 235], [20, 235], [19, 234], [18, 234], [17, 233], [16, 233], [15, 232], [14, 232], [13, 231], [11, 231], [10, 230], [9, 230], [9, 229], [8, 228], [-15, 228], [-16, 229], [-20, 229], [-22, 231], [-24, 231], [-25, 232], [-27, 232], [-28, 233], [-27, 232], [-29, 234], [-30, 234], [-31, 235], [-33, 235], [-34, 234], [-34, 228], [-33, 228], [-33, 223], [-31, 223], [-31, 219], [-30, 218], [-30, 217], [-29, 216], [-29, 215], [-27, 213], [-27, 212], [-25, 210], [-25, 209], [-21, 205], [-20, 199], [-18, 197], [-17, 197], [-16, 197], [-16, 195], [-19, 192], [-19, 189], [-19, 184], [-20, 183], [-20, 182], [-21, 181], [-22, 181], [-27, 176], [-29, 176], [-30, 175], [-34, 172], [-35, 172], [-39, 176], [-58, 176], [-59, 177], [-58, 178], [-60, 180], [-60, 181], [-61, 182], [-65, 182], [-66, 183], [-67, 183], [-71, 187], [-71, 190], [-70, 191], [-70, 192], [-68, 194], [-67, 195], [-67, 198], [-68, 199], [-69, 199], [-70, 200], [-72, 202], [-72, 203], [-74, 203], [-75, 202], [-77, 202], [-78, 201], [-80, 201], [-81, 202], [-82, 202], [-83, 203], [-84, 204], [-84, 207], [-83, 208], [-80, 208], [-79, 209], [-78, 209], [-77, 208], [-75, 208], [-74, 207], [-73, 207], [-70, 210], [-69, 211], [-69, 212], [-69, 213], [-76, 213], [-78, 215], [-78, 220], [-76, 222], [-74, 222], [-73, 221], [-71, 221], [-71, 232], [-72, 233], [-73, 233], [-73, 241], [-72, 242], [-72, 243], [-76, 247]]}, "center": {"252-258": [-44, 198], "101-251, T": [-45, 198]}}, +{"id": 855, "name": "Vuk", "description": "Vuk is the protagonist of the book with the same title, written by István Fekete, a Hungarian author known for his novels about animals. The book is known as \"The Little Fox\" in English. This pixel art depicts Vuk in the 1981 animated film adaptation of the books.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Little_Fox"], "subreddit": ["hungary"]}, "path": {"109-258, T": [[-663, -35], [-667, -32], [-667, -27], [-668, -26], [-668, -21], [-667, -20], [-667, -13], [-662, -8], [-662, -6], [-636, -6], [-636, -9], [-633, -11], [-628, -23], [-628, -29], [-631, -33], [-632, -33], [-636, -29], [-640, -27], [-641, -27], [-644, -31], [-647, -31], [-649, -33], [-653, -33], [-653, -31], [-655, -31], [-658, -30]]}, "center": {"109-258, T": [-650, -18]}}, +{"id": 856, "name": "Red Bull Racing RB18/RB19", "description": "Red Bull Racing is a Formula 1 team owned by Austrian energy drink company Red Bull.\n\nThis particular car (#1) is that of Max Verstappen's, champion of the 2021 and 2022 Formula 1 seasons.", "links": {"website": ["https://www.redbullracing.com/int-en/", "https://en.wikipedia.org/wiki/Red_Bull_Racing", "https://en.wikipedia.org/wiki/Red_Bull_Racing_RB18", "https://en.wikipedia.org/wiki/Red_Bull_Racing_RB19"], "subreddit": ["formula1", "placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"110-258, T": [[-862, -43], [-862, -40], [-860, -37], [-860, -33], [-858, -33], [-858, -31], [-855, -27], [-853, -26], [-851, -26], [-847, -29], [-819, -29], [-818, -28], [-803, -28], [-801, -26], [-798, -26], [-795, -28], [-780, -28], [-780, -29], [-782, -32], [-787, -35], [-792, -35], [-802, -39], [-809, -39], [-815, -43], [-816, -43], [-821, -41], [-823, -41], [-823, -44], [-825, -46], [-835, -46], [-840, -44], [-850, -39], [-851, -39], [-853, -44], [-858, -44], [-858, -43]]}, "center": {"110-258, T": [-831, -38]}}, +{"id": 857, "name": "Ireland", "description": "The island of Ireland as it appears on a map, encompassing both the Republic of Ireland and the United Kingdom's Northern Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"93-258, T": [[-841, 80], [-847, 86], [-847, 88], [-849, 88], [-849, 93], [-855, 93], [-857, 95], [-857, 97], [-858, 98], [-858, 101], [-859, 101], [-859, 105], [-856, 109], [-854, 109], [-854, 111], [-858, 115], [-858, 119], [-860, 122], [-860, 123], [-857, 128], [-853, 128], [-843, 125], [-841, 122], [-837, 122], [-832, 117], [-831, 118], [-830, 118], [-825, 111], [-825, 109], [-826, 109], [-826, 101], [-828, 98], [-829, 98], [-829, 96], [-827, 96], [-825, 94], [-824, 91], [-824, 90], [-827, 86], [-830, 83], [-832, 82], [-837, 82]]}, "center": {"93-258, T": [-841, 106]}}, +{"id": 858, "name": "Agender flag", "description": "Agender, also known as genderless, is an identity to describe someone that entirely lacks a gender or with complete genderlessness. It falls under the non-binary umbrella in which one is not male, female, neutral, xenic, outherine, or any other gender. They may identify most strongly as just an individual, rather than as any given gender.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Agender"]}, "path": {"95-258, T": [[138, 94], [138, 102], [153, 102], [153, 94]]}, "center": {"95-258, T": [146, 98]}}, {"id": 859, "name": "Flag of Nepal", "description": "Nepal is a landlocked country in South Asia. It is mainly situated in the Himalayas, but also includes parts of the Indo-Gangetic Plain. It borders the Tibet Autonomous Region of China to the north, and India in the south, east, and west, while it is narrowly separated from Bangladesh by the Siliguri Corridor, and from Bhutan by the Indian state of Sikkim.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Nepal", "https://en.wikipedia.org/wiki/Nepal"], "subreddit": ["Nepal"], "discord": ["tDm28xJ2DN"]}, "path": {"85-119": [[276, -24], [276, -6], [288, -6], [288, -7], [283, -12], [288, -12], [288, -13], [277, -24]]}, "center": {"85-119": [280, -15]}}, -{"id": 860, "name": "King Gizzard & the Lizard Wizard", "description": "King Gizzard & the Lizard Wizard is an Australian psych rock band. This art depicts the band's mascot, Gizzard Gator. The KGLW sign's colors are based off the band's albums.", "links": {"website": ["http://kinggizzardandthelizardwizard.com/", "https://en.wikipedia.org/wiki/King_Gizzard_%26_the_Lizard_Wizard"], "subreddit": ["EvilDeathPlace", "KGATLW"]}, "path": {"81-258": [[281, -6], [276, 1], [276, 8], [279, 11], [301, 11], [305, 6], [305, 4], [303, 2], [312, 2], [312, -8], [290, -8], [290, -6]]}, "center": {"81-258": [294, 2]}}, -{"id": 861, "name": "Allez Alain Philippe", "description": "During the Tour de France, many placards read \"Allez Alain Philippe\" (\"Go Alain Philippe\"). A rider who does not exist, but who is a phonetic reference to the Frenchman Julian Alaphilippe, who was absent during the Tour de France. It was also a nod to the very mixed crowd on the side of the road, who don't necessarily follow cycling all year round... The Phantom Player is the brainchild of the Fédération Française de la Lose (FFL) (French Federation of Losing), which is active on social networks. On its various social networks, the FFL pokes fun at failures in sport with a sense of humour. Particularly when it comes to the misadventures of French sportsmen and women.", "links": {"website": ["https://fflose.com/", "https://twitter.com/FFLose?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor", "https://www.instagram.com/federationfrancaisedelalose/?hl=fr", "https://www.lefigaro.fr/sports/cyclisme/tour-de-france/tour-de-france-quand-des-enfants-prennent-une-photo-avec-alaphilippe-et-remercient-alain-philippe-video-20230719"]}, "path": {"62-258": [[-462, 310], [-469, 310], [-469, 308], [-490, 308], [-490, 310], [-497, 310], [-497, 333], [-495, 333], [-495, 337], [-494, 337], [-493, 338], [-493, 339], [-494, 339], [-494, 342], [-493, 342], [-493, 343], [-492, 343], [-492, 346], [-490, 346], [-490, 344], [-489, 342], [-488, 342], [-488, 340], [-486, 340], [-486, 342], [-485, 342], [-485, 343], [-484, 343], [-484, 346], [-482, 346], [-482, 344], [-481, 344], [-481, 342], [-480, 342], [-480, 340], [-478, 340], [-478, 342], [-477, 342], [-477, 343], [-476, 343], [-476, 346], [-475, 346], [-474, 346], [-474, 344], [-473, 344], [-473, 342], [-472, 342], [-472, 340], [-470, 340], [-470, 342], [-469, 342], [-468, 343], [-468, 346], [-466, 346], [-466, 343], [-465, 342], [-464, 340], [-465, 339], [-465, 338], [-464, 337], [-463, 333], [-461, 333], [-461, 312]]}, "center": {"62-258": [-477, 324]}}, -{"id": 863, "name": "Croatian Kuna (HRK)", "description": "The kuna was the currency of Croatia from 30 May 1994. until 31 December 2022. It was replaced by the euro (€, EUR) in 2023. The kuna was subdivided into 100 lipa. It was issued by the Croatian National Bank and the coins were minted by the Croatian Mint.", "links": {"website": ["https://en.wikipedia.org/wiki/Croatian_kuna"]}, "path": {"105-258": [[348, -128], [350, -130], [353, -130], [355, -128], [355, -124], [353, -122], [350, -122], [348, -124]]}, "center": {"105-258": [352, -126]}}, -{"id": 865, "name": "Overhead Projector", "description": "An old-school overhead projector. Every school has them! Somehow still state-of-the-art in German public schools, they are sometimes referred to as a \"Tageslichtprojektor\" meaning \"Daylight Projector\" in German.", "links": {"subreddit": ["placeDE", "ich_iel", "de"], "discord": ["placede"]}, "path": {"196-258": [[-1354, -403], [-1349, -403], [-1349, -396], [-1351, -396], [-1354, -393], [-1358, -393], [-1359, -392], [-1361, -392], [-1362, -391], [-1374, -391], [-1375, -392], [-1377, -392], [-1378, -393], [-1383, -393], [-1384, -394], [-1389, -394], [-1390, -395], [-1392, -395], [-1392, -399], [-1393, -400], [-1395, -400], [-1395, -411], [-1393, -411], [-1392, -412], [-1391, -412], [-1390, -413], [-1389, -413], [-1388, -414], [-1387, -415], [-1386, -415], [-1385, -416], [-1375, -416], [-1374, -415], [-1371, -415], [-1370, -416], [-1370, -417], [-1371, -418], [-1372, -418], [-1376, -422], [-1376, -426], [-1379, -426], [-1380, -427], [-1382, -427], [-1384, -426], [-1385, -425], [-1386, -424], [-1387, -424], [-1388, -423], [-1389, -423], [-1390, -422], [-1391, -422], [-1392, -421], [-1396, -421], [-1397, -420], [-1409, -420], [-1410, -419], [-1417, -419], [-1418, -420], [-1419, -420], [-1420, -420], [-1418, -420], [-1417, -419], [-1410, -419], [-1409, -420], [-1397, -420], [-1396, -421], [-1392, -421], [-1391, -422], [-1390, -422], [-1389, -423], [-1388, -423], [-1387, -424], [-1386, -424], [-1385, -425], [-1384, -426], [-1383, -427], [-1381, -427], [-1381, -428], [-1380, -429], [-1381, -430], [-1389, -430], [-1390, -429], [-1394, -429], [-1394, -428], [-1399, -428], [-1400, -427], [-1416, -427], [-1416, -428], [-1422, -428], [-1416, -428], [-1416, -427], [-1400, -427], [-1399, -428], [-1394, -428], [-1394, -429], [-1390, -429], [-1389, -430], [-1383, -430], [-1380, -429], [-1379, -429], [-1378, -430], [-1379, -431], [-1380, -432], [-1381, -432], [-1382, -432], [-1382, -434], [-1386, -434], [-1387, -435], [-1391, -435], [-1392, -436], [-1396, -436], [-1397, -437], [-1417, -437], [-1397, -437], [-1396, -436], [-1392, -436], [-1391, -435], [-1387, -435], [-1386, -434], [-1382, -434], [-1380, -434], [-1380, -435], [-1381, -436], [-1382, -437], [-1382, -438], [-1384, -438], [-1385, -439], [-1387, -439], [-1387, -440], [-1411, -440], [-1387, -440], [-1387, -439], [-1385, -439], [-1384, -438], [-1382, -438], [-1382, -437], [-1381, -436], [-1379, -435], [-1378, -435], [-1377, -434], [-1376, -434], [-1375, -433], [-1374, -433], [-1373, -432], [-1372, -432], [-1371, -431], [-1371, -428], [-1372, -427], [-1373, -426], [-1374, -425], [-1374, -423], [-1373, -422], [-1372, -422], [-1371, -421], [-1370, -422], [-1370, -424], [-1368, -424], [-1368, -422], [-1367, -421], [-1367, -418], [-1368, -417], [-1368, -415], [-1367, -414], [-1365, -414], [-1364, -413], [-1359, -413], [-1359, -397], [-1360, -397], [-1361, -396], [-1362, -396], [-1363, -395], [-1363, -394], [-1360, -394], [-1359, -395], [-1355, -395], [-1355, -396], [-1354, -396]]}, "center": {"196-258": [-1373, -403]}}, -{"id": 866, "name": "TobinatorLP <2", "description": "This was made by Sukidingels for TobinatorLP, a good friend of Gronkh. He made a typo in a game and has had the <2 emote ever since.", "links": {"website": ["https://www.youtube.com/@TobinatorLetsPlay", "https://www.twitch.tv/tobinatorlp"]}, "path": {"49-258": [[238, -267], [232, -262], [237, -257], [247, -257], [247, -267], [237, -267]]}, "center": {"49-258": [241, -262]}}, -{"id": 867, "name": "Quentin the Quaos Jellyfish", "description": "Mascot of the GerVTuber EveryLunaEver", "links": {"website": ["https://www.twitch.tv/everylunaever"], "discord": ["mondlandingserver"]}, "path": {"3-100": [[177, -354], [190, -354], [189, -342], [177, -342]], "101-258": [[187, -356], [198, -356], [198, -349], [196, -349], [196, -348], [195, -348], [195, -347], [189, -347], [187, -348]]}, "center": {"3-100": [183, -348], "101-258": [192, -351]}}, +{"id": 860, "name": "King Gizzard & the Lizard Wizard", "description": "King Gizzard & the Lizard Wizard is an Australian psych rock band. This art depicts the band's mascot, Gizzard Gator. The KGLW sign's colors are based off the band's albums.", "links": {"website": ["http://kinggizzardandthelizardwizard.com/", "https://en.wikipedia.org/wiki/King_Gizzard_%26_the_Lizard_Wizard"], "subreddit": ["EvilDeathPlace", "KGATLW"]}, "path": {"81-258, T": [[281, -6], [276, 1], [276, 8], [279, 11], [301, 11], [305, 6], [305, 4], [303, 2], [312, 2], [312, -8], [290, -8], [290, -6]]}, "center": {"81-258, T": [294, 2]}}, +{"id": 861, "name": "Allez Alain Philippe", "description": "During the Tour de France, many placards read \"Allez Alain Philippe\" (\"Go Alain Philippe\"). A rider who does not exist, but who is a phonetic reference to the Frenchman Julian Alaphilippe, who was absent during the Tour de France. It was also a nod to the very mixed crowd on the side of the road, who don't necessarily follow cycling all year round... The Phantom Player is the brainchild of the Fédération Française de la Lose (FFL) (French Federation of Losing), which is active on social networks. On its various social networks, the FFL pokes fun at failures in sport with a sense of humour. Particularly when it comes to the misadventures of French sportsmen and women.", "links": {"website": ["https://fflose.com/", "https://twitter.com/FFLose?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor", "https://www.instagram.com/federationfrancaisedelalose/?hl=fr", "https://www.lefigaro.fr/sports/cyclisme/tour-de-france/tour-de-france-quand-des-enfants-prennent-une-photo-avec-alaphilippe-et-remercient-alain-philippe-video-20230719"]}, "path": {"62-258, T": [[-462, 310], [-469, 310], [-469, 308], [-490, 308], [-490, 310], [-497, 310], [-497, 333], [-495, 333], [-495, 337], [-494, 337], [-493, 338], [-493, 339], [-494, 339], [-494, 342], [-493, 342], [-493, 343], [-492, 343], [-492, 346], [-490, 346], [-490, 344], [-489, 342], [-488, 342], [-488, 340], [-486, 340], [-486, 342], [-485, 342], [-485, 343], [-484, 343], [-484, 346], [-482, 346], [-482, 344], [-481, 344], [-481, 342], [-480, 342], [-480, 340], [-478, 340], [-478, 342], [-477, 342], [-477, 343], [-476, 343], [-476, 346], [-475, 346], [-474, 346], [-474, 344], [-473, 344], [-473, 342], [-472, 342], [-472, 340], [-470, 340], [-470, 342], [-469, 342], [-468, 343], [-468, 346], [-466, 346], [-466, 343], [-465, 342], [-464, 340], [-465, 339], [-465, 338], [-464, 337], [-463, 333], [-461, 333], [-461, 312]]}, "center": {"62-258, T": [-477, 324]}}, +{"id": 863, "name": "Croatian Kuna (HRK)", "description": "The kuna was the currency of Croatia from 30 May 1994. until 31 December 2022. It was replaced by the euro (€, EUR) in 2023. The kuna was subdivided into 100 lipa. It was issued by the Croatian National Bank and the coins were minted by the Croatian Mint.", "links": {"website": ["https://en.wikipedia.org/wiki/Croatian_kuna"]}, "path": {"105-258, T": [[348, -128], [350, -130], [353, -130], [355, -128], [355, -124], [353, -122], [350, -122], [348, -124]]}, "center": {"105-258, T": [352, -126]}}, +{"id": 865, "name": "Overhead Projector", "description": "An old-school overhead projector. Every school has them! Somehow still state-of-the-art in German public schools, they are sometimes referred to as a \"Tageslichtprojektor\" meaning \"Daylight Projector\" in German.", "links": {"subreddit": ["placeDE", "ich_iel", "de"], "discord": ["placede"]}, "path": {"196-258, T": [[-1354, -403], [-1349, -403], [-1349, -396], [-1351, -396], [-1354, -393], [-1358, -393], [-1359, -392], [-1361, -392], [-1362, -391], [-1374, -391], [-1375, -392], [-1377, -392], [-1378, -393], [-1383, -393], [-1384, -394], [-1389, -394], [-1390, -395], [-1392, -395], [-1392, -399], [-1393, -400], [-1395, -400], [-1395, -411], [-1393, -411], [-1392, -412], [-1391, -412], [-1390, -413], [-1389, -413], [-1388, -414], [-1387, -415], [-1386, -415], [-1385, -416], [-1375, -416], [-1374, -415], [-1371, -415], [-1370, -416], [-1370, -417], [-1371, -418], [-1372, -418], [-1376, -422], [-1376, -426], [-1379, -426], [-1380, -427], [-1382, -427], [-1384, -426], [-1385, -425], [-1386, -424], [-1387, -424], [-1388, -423], [-1389, -423], [-1390, -422], [-1391, -422], [-1392, -421], [-1396, -421], [-1397, -420], [-1409, -420], [-1410, -419], [-1417, -419], [-1418, -420], [-1419, -420], [-1420, -420], [-1418, -420], [-1417, -419], [-1410, -419], [-1409, -420], [-1397, -420], [-1396, -421], [-1392, -421], [-1391, -422], [-1390, -422], [-1389, -423], [-1388, -423], [-1387, -424], [-1386, -424], [-1385, -425], [-1384, -426], [-1383, -427], [-1381, -427], [-1381, -428], [-1380, -429], [-1381, -430], [-1389, -430], [-1390, -429], [-1394, -429], [-1394, -428], [-1399, -428], [-1400, -427], [-1416, -427], [-1416, -428], [-1422, -428], [-1416, -428], [-1416, -427], [-1400, -427], [-1399, -428], [-1394, -428], [-1394, -429], [-1390, -429], [-1389, -430], [-1383, -430], [-1380, -429], [-1379, -429], [-1378, -430], [-1379, -431], [-1380, -432], [-1381, -432], [-1382, -432], [-1382, -434], [-1386, -434], [-1387, -435], [-1391, -435], [-1392, -436], [-1396, -436], [-1397, -437], [-1417, -437], [-1397, -437], [-1396, -436], [-1392, -436], [-1391, -435], [-1387, -435], [-1386, -434], [-1382, -434], [-1380, -434], [-1380, -435], [-1381, -436], [-1382, -437], [-1382, -438], [-1384, -438], [-1385, -439], [-1387, -439], [-1387, -440], [-1411, -440], [-1387, -440], [-1387, -439], [-1385, -439], [-1384, -438], [-1382, -438], [-1382, -437], [-1381, -436], [-1379, -435], [-1378, -435], [-1377, -434], [-1376, -434], [-1375, -433], [-1374, -433], [-1373, -432], [-1372, -432], [-1371, -431], [-1371, -428], [-1372, -427], [-1373, -426], [-1374, -425], [-1374, -423], [-1373, -422], [-1372, -422], [-1371, -421], [-1370, -422], [-1370, -424], [-1368, -424], [-1368, -422], [-1367, -421], [-1367, -418], [-1368, -417], [-1368, -415], [-1367, -414], [-1365, -414], [-1364, -413], [-1359, -413], [-1359, -397], [-1360, -397], [-1361, -396], [-1362, -396], [-1363, -395], [-1363, -394], [-1360, -394], [-1359, -395], [-1355, -395], [-1355, -396], [-1354, -396]]}, "center": {"196-258, T": [-1373, -403]}}, +{"id": 866, "name": "TobinatorLP <2", "description": "This was made by Sukidingels for TobinatorLP, a good friend of Gronkh. He made a typo in a game and has had the <2 emote ever since.", "links": {"website": ["https://www.youtube.com/@TobinatorLetsPlay", "https://www.twitch.tv/tobinatorlp"]}, "path": {"49-258, T": [[238, -267], [232, -262], [237, -257], [247, -257], [247, -267], [237, -267]]}, "center": {"49-258, T": [241, -262]}}, +{"id": 867, "name": "Quentin the Quaos Jellyfish", "description": "Mascot of the GerVTuber EveryLunaEver", "links": {"website": ["https://www.twitch.tv/everylunaever"], "discord": ["mondlandingserver"]}, "path": {"3-100": [[177, -354], [190, -354], [189, -342], [177, -342]], "101-258, T": [[187, -356], [198, -356], [198, -349], [196, -349], [196, -348], [195, -348], [195, -347], [189, -347], [187, -348]]}, "center": {"3-100": [183, -348], "101-258, T": [192, -351]}}, {"id": 868, "name": "HoneyPuu", "description": "Mascot by German streamer Honeypuu", "links": {"website": ["https://www.twitch.tv/honeypuu"], "discord": ["z2k6jEH"]}, "path": {"46-125": [[197, -267], [197, -234], [230, -234], [230, -267], [228, -267]]}, "center": {"46-125": [214, -250]}}, -{"id": 869, "name": "The Helpful Fox Senko-san", "description": "Helpful Fox Senko-san is a heartwarming slice-of-life anime series based on the manga by Rimukoro. The story follows the life of Nakano, an overworked and stressed office worker, who is unexpectedly visited by Senko, a fox deity. Senko takes on the role of Nakano's personal caretaker, striving to relieve his exhaustion and worries. With her kind and nurturing nature, Senko brings comfort and healing to Nakano's life, creating a heartwarming and endearing tale of friendship and solace.", "links": {"website": ["https://www.wikipedia.org/wiki/The_Helpful_Fox_Senko-san"], "subreddit": ["SewayakiKitsune"]}, "path": {"113-258": [[-197, 241], [-179, 241], [-178, 239], [-178, 238], [-177, 237], [-169, 237], [-170, 234], [-171, 232], [-170, 231], [-167, 227], [-167, 222], [-167, 219], [-169, 217], [-170, 212], [-171, 209], [-172, 207], [-172, 203], [-173, 202], [-174, 201], [-175, 202], [-176, 203], [-179, 203], [-180, 202], [-180, 201], [-183, 201], [-184, 202], [-186, 202], [-187, 201], [-187, 198], [-190, 194], [-191, 195], [-191, 198], [-192, 199], [-193, 200], [-193, 204], [-194, 205], [-196, 209], [-197, 214], [-198, 217], [-200, 219], [-201, 221], [-201, 225], [-201, 229], [-199, 232], [-197, 234], [-198, 235], [-198, 238], [-196, 240]]}, "center": {"113-258": [-184, 223]}}, +{"id": 869, "name": "The Helpful Fox Senko-san", "description": "Helpful Fox Senko-san is a heartwarming slice-of-life anime series based on the manga by Rimukoro. The story follows the life of Nakano, an overworked and stressed office worker, who is unexpectedly visited by Senko, a fox deity. Senko takes on the role of Nakano's personal caretaker, striving to relieve his exhaustion and worries. With her kind and nurturing nature, Senko brings comfort and healing to Nakano's life, creating a heartwarming and endearing tale of friendship and solace.", "links": {"website": ["https://www.wikipedia.org/wiki/The_Helpful_Fox_Senko-san"], "subreddit": ["SewayakiKitsune"]}, "path": {"113-258, T": [[-197, 241], [-179, 241], [-178, 239], [-178, 238], [-177, 237], [-169, 237], [-170, 234], [-171, 232], [-170, 231], [-167, 227], [-167, 222], [-167, 219], [-169, 217], [-170, 212], [-171, 209], [-172, 207], [-172, 203], [-173, 202], [-174, 201], [-175, 202], [-176, 203], [-179, 203], [-180, 202], [-180, 201], [-183, 201], [-184, 202], [-186, 202], [-187, 201], [-187, 198], [-190, 194], [-191, 195], [-191, 198], [-192, 199], [-193, 200], [-193, 204], [-194, 205], [-196, 209], [-197, 214], [-198, 217], [-200, 219], [-201, 221], [-201, 225], [-201, 229], [-199, 232], [-197, 234], [-198, 235], [-198, 238], [-196, 240]]}, "center": {"113-258, T": [-184, 223]}}, {"id": 870, "name": "IKEA", "description": "IKEA is a retail company that designs and sells furniture and other home goods. It was founded in Sweden in 1943.", "links": {"website": ["https://www.ikea.com/", "https://en.wikipedia.org/wiki/IKEA"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"93-141": [[207, -221], [200, -218], [198, -216], [198, -212], [201, -209], [207, -207], [231, -207], [238, -210], [240, -212], [240, -216], [237, -219], [230, -221]]}, "center": {"93-141": [219, -214]}}, -{"id": 871, "name": "Silja Line", "description": "Silja Line is a Finnish cruiseferry brand.", "links": {"website": ["https://en.wikipedia.org/wiki/Silja_Line"], "subreddit": ["Suomi", "nordics", "place_nordicunion"]}, "path": {"110-258": [[103, -297], [99, -291], [99, -290], [101, -288], [101, -283], [99, -281], [97, -281], [97, -279], [153, -279], [153, -284], [178, -284], [178, -281], [179, -281], [185, -287], [185, -288], [183, -288], [176, -295], [175, -295], [175, -298], [169, -298], [169, -299], [165, -302], [164, -302], [164, -298], [153, -298], [153, -296], [143, -296], [143, -297], [135, -297], [135, -296], [127, -296], [118, -302], [110, -302], [110, -297]]}, "center": {"110-258": [118, -290]}}, -{"id": 872, "name": "Jonas Vingegaard", "description": "Jonas Vingegaard Rasmussen (born 10 December 1996) is a Danish professional cyclist who rides for UCI WorldTeam Team Jumbo–Visma. He won the 2022 and 2023 edition of the Tour de France, beating the rest of the field with a 7,5 minute gap", "links": {"website": ["https://en.wikipedia.org/wiki/Jonas_Vingegaard", "https://www.letour.fr/en/rankings/stage-20", "https://en.wikipedia.org/wiki/Team_Jumbo%E2%80%93Visma_(men%27s_team)"]}, "path": {"99-258": [[-137, -273], [-137, -244], [-80, -244], [-80, -264], [-82, -264], [-83, -274], [-119, -275], [-120, -274], [-136, -273]]}, "center": {"99-258": [-109, -259]}}, -{"id": 873, "name": "TGV - Train à Grande Vitesse", "description": "The TGV in orange livery was the first TGV in service (after the TGV 001), commissioned in 1969, it began its testing in 1972. The TGV 001 was an experimental gas turbine-electric locomotive-powered trainset built by Alstom to break speed records between 250–300 kilometres per hour (160–190 mph).\nThis version of the TGV went as fast as 380.4 km/h (236 mph). The current version (TGV POS) holds the world speed record for the fastest wheeled train, reaching 574.8 km/h (357.2 mph).", "links": {"website": ["https://en.wikipedia.org/wiki/TGV_001"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"64-201": [[999, -387], [892, -387], [892, -386], [888, -386], [888, -385], [886, -385], [886, -384], [883, -384], [883, -383], [882, -383], [882, -382], [881, -381], [880, -381], [879, -380], [878, -380], [877, -379], [875, -379], [874, -378], [873, -378], [872, -377], [871, -377], [870, -376], [869, -376], [868, -375], [867, -374], [867, -373], [868, -372], [870, -372], [871, -371], [872, -371], [872, -370], [902, -370], [999, -370]], "202-258": [[879, -371], [874, -371], [873, -372], [871, -372], [870, -373], [869, -374], [868, -375], [869, -376], [870, -377], [872, -378], [874, -379], [877, -380], [880, -381], [881, -382], [882, -383], [884, -384], [886, -385], [888, -386], [894, -387], [895, -388], [929, -388], [929, -389], [930, -390], [933, -390], [934, -389], [935, -389], [936, -388], [938, -388], [939, -387], [940, -388], [956, -388], [957, -387], [1023, -387], [1203, -387], [1204, -387], [1203, -369], [1040, -369], [955, -370], [884, -370]]}, "center": {"64-201": [933, -378], "202-258": [931, -379]}}, -{"id": 874, "name": "Seraph's Last Stand Wizard", "description": "Character from the game Seraph's Last Stand, developed by the brazilian YouTuber Amdré Young", "links": {"website": ["https://store.steampowered.com/app/1919460/Seraphs_Last_Stand/"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"107-258": [[147, 426], [165, 426], [165, 422], [165, 419], [166, 416], [167, 414], [161, 407], [159, 405], [158, 404], [158, 401], [160, 399], [161, 400], [165, 402], [167, 402], [170, 401], [171, 398], [174, 396], [175, 395], [176, 394], [177, 395], [177, 397], [176, 398], [176, 399], [176, 401], [177, 402], [179, 403], [181, 403], [181, 404], [179, 405], [179, 406], [178, 407], [177, 408], [177, 413], [177, 414], [177, 416], [178, 417], [179, 418], [179, 425], [179, 426], [188, 426], [188, 430], [183, 433], [147, 451]]}, "center": {"107-258": [157, 435]}}, -{"id": 875, "name": "Flag of Australia", "description": "Australia is a country and continent in Oceania.", "links": {"website": ["https://en.wikipedia.org/wiki/Australia", "https://en.wikipedia.org/wiki/Flag_of_Australia"], "subreddit": ["placeaustralia", "australia"]}, "path": {"109-258": [[-868, 22], [-868, 55], [-811, 55], [-811, 22]]}, "center": {"109-258": [-839, 39]}}, -{"id": 876, "name": "Flag of the European Union", "description": "The European Union (EU) is an international organization of European countries.", "links": {"website": ["http://europa.eu/", "https://en.wikipedia.org/wiki/European_Union", "https://en.wikipedia.org/wiki/Flag_of_the_European_Union"], "subreddit": ["placeEU"], "discord": ["uxm3wbrHke"]}, "path": {"108-115": [[-864, 35], [-864, 55], [-828, 55], [-828, 35]], "142-258": [[-924, 55], [-924, 72], [-896, 72], [-896, 55]]}, "center": {"108-115": [-846, 45], "142-258": [-910, 64]}}, -{"id": 877, "name": "Flag of Serbia", "description": "Serbia is a landlocked country located in the Balkans region of Central Europe, known for its rich history, diverse culture, and warm hospitality. It boasts stunning landscapes, historical landmarks, and a resilient spirit that has shaped its identity throughout the ages.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbia", "https://en.wikipedia.org/wiki/Flag_of_Serbia"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"97-258": [[-770, 257], [-770, 278], [-590, 278], [-590, 258]]}, "center": {"97-258": [-759, 268]}}, -{"id": 878, "name": "Marina Bay Sands", "description": "The Marina Bay Sands is an iconic resort in Singapore, opening in 2010. It has since become a national symbol of Singapore.", "links": {"website": ["http://marinabaysands.com/", "https://en.wikipedia.org/wiki/Marina_Bay_Sands"], "subreddit": ["singapore"]}, "path": {"95-258": [[339, -19], [339, -17], [340, -17], [340, -13], [350, -13], [353, -16], [353, -17], [354, -17], [354, -19]]}, "center": {"95-258": [347, -16]}}, -{"id": 879, "name": "Changi Airport control tower", "description": "The control tower at Changi Airport in Singapore. The airport has been ranked in the top three airports in the world by Skytrax from 2000 to 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/Changi_Airport"], "subreddit": ["singapore"]}, "path": {"95-178": [[350, -15], [350, -20], [349, -20], [349, -21], [348, -21], [348, -23], [349, -23], [349, -24], [350, -24], [350, -25], [352, -25], [352, -24], [353, -24], [353, -23], [355, -23], [355, -21], [353, -21], [353, -20], [352, -20], [352, -15]], "179-258": [[351, -14], [351, -20], [350, -20], [350, -21], [349, -21], [349, -23], [350, -23], [350, -24], [351, -24], [351, -25], [353, -25], [353, -24], [354, -24], [354, -23], [355, -23], [355, -21], [354, -21], [354, -20], [353, -20], [353, -13], [351, -13]]}, "center": {"95-178": [351, -22], "179-258": [352, -22]}}, -{"id": 880, "name": "En passant", "description": "En passant (French for \"in passing\") is a obscure move in chess where if a pawn moves two spaces, an opposing pawn can capture it as if it had only moved one space. Because of its obscurity and the rarity in which it occurs in chess games, it has become a joke among r/AnarchyChess users that en passant is a \"forced move\" that must be performed whenever given the opportunity. The \"!!\" indicates that a brilliant move in chess notation.", "links": {"website": ["https://en.wikipedia.org/wiki/En_passant"], "subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"107-258": [[330, -252], [330, -227], [355, -227], [355, -252]]}, "center": {"107-258": [343, -239]}}, -{"id": 881, "name": "Croix de lorraine", "description": "In France, the Cross of Lorraine was the symbol of Free France and resistance during World War II, the liberation of France from Nazi Germany and Vichy France along with the allies the United Kingdom and the United States, and Gaullism and includes several variations of a two-barred cross.", "links": {"website": ["https://en.wikipedia.org/wiki/Cross_of_Lorraine"]}, "path": {"99-258": [[-398, -221], [-407, -204], [-386, -204], [-380, -212], [-386, -221]]}, "center": {"99-258": [-393, -212]}}, -{"id": 882, "name": "Urubu do Pix (Pix's Black Vulture)", "description": "Black vulture representing online scams, the loved pet of r/farialimabets", "links": {"subreddit": ["farialimabets", "brasil"], "discord": ["r-br"]}, "path": {"112-258": [[257, 447], [257, 440], [262, 440], [262, 431], [261, 430], [260, 430], [259, 428], [258, 425], [258, 423], [256, 421], [255, 420], [255, 418], [255, 417], [257, 417], [257, 415], [255, 415], [255, 410], [250, 410], [250, 415], [248, 415], [248, 417], [250, 417], [250, 418], [247, 418], [246, 420], [247, 421], [249, 421], [251, 422], [253, 422], [252, 424], [252, 425], [249, 424], [245, 424], [243, 422], [242, 419], [240, 419], [240, 421], [241, 424], [242, 427], [245, 428], [245, 427], [247, 428], [252, 428], [251, 430], [248, 430], [247, 431], [247, 440], [253, 440], [253, 445]]}, "center": {"112-258": [255, 434]}}, +{"id": 871, "name": "Silja Line", "description": "Silja Line is a Finnish cruiseferry brand.", "links": {"website": ["https://en.wikipedia.org/wiki/Silja_Line"], "subreddit": ["Suomi", "nordics", "place_nordicunion"]}, "path": {"110-258, T": [[103, -297], [99, -291], [99, -290], [101, -288], [101, -283], [99, -281], [97, -281], [97, -279], [153, -279], [153, -284], [178, -284], [178, -281], [179, -281], [185, -287], [185, -288], [183, -288], [176, -295], [175, -295], [175, -298], [169, -298], [169, -299], [165, -302], [164, -302], [164, -298], [153, -298], [153, -296], [143, -296], [143, -297], [135, -297], [135, -296], [127, -296], [118, -302], [110, -302], [110, -297]]}, "center": {"110-258, T": [118, -290]}}, +{"id": 872, "name": "Jonas Vingegaard", "description": "Jonas Vingegaard Rasmussen (born 10 December 1996) is a Danish professional cyclist who rides for UCI WorldTeam Team Jumbo–Visma. He won the 2022 and 2023 edition of the Tour de France, beating the rest of the field with a 7,5 minute gap", "links": {"website": ["https://en.wikipedia.org/wiki/Jonas_Vingegaard", "https://www.letour.fr/en/rankings/stage-20", "https://en.wikipedia.org/wiki/Team_Jumbo%E2%80%93Visma_(men%27s_team)"]}, "path": {"99-258, T": [[-137, -273], [-137, -244], [-80, -244], [-80, -264], [-82, -264], [-83, -274], [-119, -275], [-120, -274], [-136, -273]]}, "center": {"99-258, T": [-109, -259]}}, +{"id": 873, "name": "TGV - Train à Grande Vitesse", "description": "The TGV in orange livery was the first TGV in service (after the TGV 001), commissioned in 1969, it began its testing in 1972. The TGV 001 was an experimental gas turbine-electric locomotive-powered trainset built by Alstom to break speed records between 250–300 kilometres per hour (160–190 mph).\nThis version of the TGV went as fast as 380.4 km/h (236 mph). The current version (TGV POS) holds the world speed record for the fastest wheeled train, reaching 574.8 km/h (357.2 mph).", "links": {"website": ["https://en.wikipedia.org/wiki/TGV_001"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"64-201": [[999, -387], [892, -387], [892, -386], [888, -386], [888, -385], [886, -385], [886, -384], [883, -384], [883, -383], [882, -383], [882, -382], [881, -381], [880, -381], [879, -380], [878, -380], [877, -379], [875, -379], [874, -378], [873, -378], [872, -377], [871, -377], [870, -376], [869, -376], [868, -375], [867, -374], [867, -373], [868, -372], [870, -372], [871, -371], [872, -371], [872, -370], [902, -370], [999, -370]], "202-258, T": [[879, -371], [874, -371], [873, -372], [871, -372], [870, -373], [869, -374], [868, -375], [869, -376], [870, -377], [872, -378], [874, -379], [877, -380], [880, -381], [881, -382], [882, -383], [884, -384], [886, -385], [888, -386], [894, -387], [895, -388], [929, -388], [929, -389], [930, -390], [933, -390], [934, -389], [935, -389], [936, -388], [938, -388], [939, -387], [940, -388], [956, -388], [957, -387], [1023, -387], [1203, -387], [1204, -387], [1203, -369], [1040, -369], [955, -370], [884, -370]]}, "center": {"64-201": [933, -378], "202-258, T": [931, -379]}}, +{"id": 874, "name": "Seraph's Last Stand Wizard", "description": "Character from the game Seraph's Last Stand, developed by the brazilian YouTuber Amdré Young", "links": {"website": ["https://store.steampowered.com/app/1919460/Seraphs_Last_Stand/"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"107-258, T": [[147, 426], [165, 426], [165, 422], [165, 419], [166, 416], [167, 414], [161, 407], [159, 405], [158, 404], [158, 401], [160, 399], [161, 400], [165, 402], [167, 402], [170, 401], [171, 398], [174, 396], [175, 395], [176, 394], [177, 395], [177, 397], [176, 398], [176, 399], [176, 401], [177, 402], [179, 403], [181, 403], [181, 404], [179, 405], [179, 406], [178, 407], [177, 408], [177, 413], [177, 414], [177, 416], [178, 417], [179, 418], [179, 425], [179, 426], [188, 426], [188, 430], [183, 433], [147, 451]]}, "center": {"107-258, T": [157, 435]}}, +{"id": 875, "name": "Flag of Australia", "description": "Australia is a country and continent in Oceania.", "links": {"website": ["https://en.wikipedia.org/wiki/Australia", "https://en.wikipedia.org/wiki/Flag_of_Australia"], "subreddit": ["placeaustralia", "australia"]}, "path": {"109-258, T": [[-868, 22], [-868, 55], [-811, 55], [-811, 22]]}, "center": {"109-258, T": [-839, 39]}}, +{"id": 876, "name": "Flag of the European Union", "description": "The European Union (EU) is an international organization of European countries.", "links": {"website": ["http://europa.eu/", "https://en.wikipedia.org/wiki/European_Union", "https://en.wikipedia.org/wiki/Flag_of_the_European_Union"], "subreddit": ["placeEU"], "discord": ["uxm3wbrHke"]}, "path": {"108-115": [[-864, 35], [-864, 55], [-828, 55], [-828, 35]], "142-258, T": [[-924, 55], [-924, 72], [-896, 72], [-896, 55]]}, "center": {"108-115": [-846, 45], "142-258, T": [-910, 64]}}, +{"id": 877, "name": "Flag of Serbia", "description": "Serbia is a landlocked country located in the Balkans region of Central Europe, known for its rich history, diverse culture, and warm hospitality. It boasts stunning landscapes, historical landmarks, and a resilient spirit that has shaped its identity throughout the ages.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbia", "https://en.wikipedia.org/wiki/Flag_of_Serbia"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"97-258, T": [[-770, 257], [-770, 278], [-590, 278], [-590, 258]]}, "center": {"97-258, T": [-759, 268]}}, +{"id": 878, "name": "Marina Bay Sands", "description": "The Marina Bay Sands is an iconic resort in Singapore, opening in 2010. It has since become a national symbol of Singapore.", "links": {"website": ["http://marinabaysands.com/", "https://en.wikipedia.org/wiki/Marina_Bay_Sands"], "subreddit": ["singapore"]}, "path": {"95-258, T": [[339, -19], [339, -17], [340, -17], [340, -13], [350, -13], [353, -16], [353, -17], [354, -17], [354, -19]]}, "center": {"95-258, T": [347, -16]}}, +{"id": 879, "name": "Changi Airport control tower", "description": "The control tower at Changi Airport in Singapore. The airport has been ranked in the top three airports in the world by Skytrax from 2000 to 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/Changi_Airport"], "subreddit": ["singapore"]}, "path": {"95-178": [[350, -15], [350, -20], [349, -20], [349, -21], [348, -21], [348, -23], [349, -23], [349, -24], [350, -24], [350, -25], [352, -25], [352, -24], [353, -24], [353, -23], [355, -23], [355, -21], [353, -21], [353, -20], [352, -20], [352, -15]], "179-258, T": [[351, -14], [351, -20], [350, -20], [350, -21], [349, -21], [349, -23], [350, -23], [350, -24], [351, -24], [351, -25], [353, -25], [353, -24], [354, -24], [354, -23], [355, -23], [355, -21], [354, -21], [354, -20], [353, -20], [353, -13], [351, -13]]}, "center": {"95-178": [351, -22], "179-258, T": [352, -22]}}, +{"id": 880, "name": "En passant", "description": "En passant (French for \"in passing\") is a obscure move in chess where if a pawn moves two spaces, an opposing pawn can capture it as if it had only moved one space. Because of its obscurity and the rarity in which it occurs in chess games, it has become a joke among r/AnarchyChess users that en passant is a \"forced move\" that must be performed whenever given the opportunity. The \"!!\" indicates that a brilliant move in chess notation.", "links": {"website": ["https://en.wikipedia.org/wiki/En_passant"], "subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"107-258, T": [[330, -252], [330, -227], [355, -227], [355, -252]]}, "center": {"107-258, T": [343, -239]}}, +{"id": 881, "name": "Croix de lorraine", "description": "In France, the Cross of Lorraine was the symbol of Free France and resistance during World War II, the liberation of France from Nazi Germany and Vichy France along with the allies the United Kingdom and the United States, and Gaullism and includes several variations of a two-barred cross.", "links": {"website": ["https://en.wikipedia.org/wiki/Cross_of_Lorraine"]}, "path": {"99-258, T": [[-398, -221], [-407, -204], [-386, -204], [-380, -212], [-386, -221]]}, "center": {"99-258, T": [-393, -212]}}, +{"id": 882, "name": "Urubu do Pix (Pix's Black Vulture)", "description": "Black vulture representing online scams, the loved pet of r/farialimabets", "links": {"subreddit": ["farialimabets", "brasil"], "discord": ["r-br"]}, "path": {"112-258, T": [[257, 447], [257, 440], [262, 440], [262, 431], [261, 430], [260, 430], [259, 428], [258, 425], [258, 423], [256, 421], [255, 420], [255, 418], [255, 417], [257, 417], [257, 415], [255, 415], [255, 410], [250, 410], [250, 415], [248, 415], [248, 417], [250, 417], [250, 418], [247, 418], [246, 420], [247, 421], [249, 421], [251, 422], [253, 422], [252, 424], [252, 425], [249, 424], [245, 424], [243, 422], [242, 419], [240, 419], [240, 421], [241, 424], [242, 427], [245, 428], [245, 427], [247, 428], [252, 428], [251, 430], [248, 430], [247, 431], [247, 440], [253, 440], [253, 445]]}, "center": {"112-258, T": [255, 434]}}, {"id": 883, "name": "The Stanley Parable Reassurance Bucket", "description": "The Stanley Parable Reassurance Bucket is an item and character introduced in The Stanley Parable: Ultra Deluxe. It is supposed to comfort Stanley while playing the game, but also changes dialogue and greatly effects most endings. It is constantly referred to as an animate object, though appears to only be a bucket.", "links": {"website": ["https://thestanleyparable.fandom.com/wiki/The_Stanley_Parable_Reassurance_Bucket"], "subreddit": ["thestanleyparable"], "discord": ["kRpkG8Qgc6"]}, "path": {"107-125": [[-796, 360], [-791, 360], [-791, 361], [-790, 361], [-790, 364], [-791, 364], [-791, 366], [-796, 366], [-796, 364], [-797, 364], [-797, 361], [-796, 361]]}, "center": {"107-125": [-793, 363]}}, {"id": 884, "name": "STI2D", "description": "STI2D (Sciences and Technologies for Industry and Sustainable Development) is a vocational course at high school in France. They are often mocked thanks to clips posted on the social network Snapchat showing people as \"stupid with no future and just out to make a mess in class\".", "links": {"website": ["https://en.wikipedia.org/wiki/Baccalaur%C3%A9at_technologique"], "subreddit": ["placeSTI2D_"]}, "path": {"100-140": [[-502, -336], [-530, -336], [-530, -322], [-520, -322], [-520, -323], [-505, -323], [-505, -324], [-501, -324], [-501, -336]]}, "center": {"100-140": [-523, -329]}}, {"id": 885, "name": "r/Jahrein", "description": "The image you see is of \"Alfred,\" a dog owned by a Turkish Twitch streamer \"Jahrein.\" \n\nThree years ago, Alfred suffered an unexpected accident that left him partially paralyzed. As a result, both of his hind legs and his tail had to be amputated. Unfortunately, according to Jahrein, Alfred's time is limited. \n\nIn light of this, Jahrein wished to commemorate him with a presence in r/place 2023.", "links": {"website": ["https://www.twitch.tv/jahrein"], "subreddit": ["Jahrein"], "discord": ["jahrein"]}, "path": {"110-121": [[-368, 461], [-368, 500], [-306, 500], [-306, 461]]}, "center": {"110-121": [-337, 481]}}, -{"id": 886, "name": "FCK FPÖ + AFD", "description": "The FPÖ (Freedom Party of Austria) is a right-wing populist party in Austria. It advocates for conservative and nationalist policies. Some members have been labeled as right-wing extremists due to controversial statements. The party is under observation to monitor any extremist tendencies.\n\nThe AfD (Alternative for Germany) is a German right-wing political party. It has been observed by Germany's domestic intelligence service as a suspected right-wing extremist party. Certain members have faced scrutiny and criticism, with some being legally referred to as fascists.", "links": {"website": ["https://en.wikipedia.org/wiki/Freedom_Party_of_Austria"]}, "path": {"102-104": [[604, -313], [604, -292], [622, -292], [622, -313]], "100-101": [[610, -302], [610, -294], [641, -294], [641, -302]], "105-258": [[604, -313], [604, -292], [644, -292], [644, -302], [622, -302], [622, -313]]}, "center": {"102-104": [613, -302], "100-101": [626, -298], "105-258": [613, -301]}}, +{"id": 886, "name": "FCK FPÖ + AFD", "description": "The FPÖ (Freedom Party of Austria) is a right-wing populist party in Austria. It advocates for conservative and nationalist policies. Some members have been labeled as right-wing extremists due to controversial statements. The party is under observation to monitor any extremist tendencies.\n\nThe AfD (Alternative for Germany) is a German right-wing political party. It has been observed by Germany's domestic intelligence service as a suspected right-wing extremist party. Certain members have faced scrutiny and criticism, with some being legally referred to as fascists.", "links": {"website": ["https://en.wikipedia.org/wiki/Freedom_Party_of_Austria"]}, "path": {"102-104": [[604, -313], [604, -292], [622, -292], [622, -313]], "100-101": [[610, -302], [610, -294], [641, -294], [641, -302]], "105-258, T": [[604, -313], [604, -292], [644, -292], [644, -302], [622, -302], [622, -313]]}, "center": {"102-104": [613, -302], "100-101": [626, -298], "105-258, T": [613, -301]}}, {"id": 887, "name": "Flag of Germany", "description": "Germany is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"]}, "path": {"106-129": [[-1001, -368], [-1001, -80], [-972, -80], [-972, -191], [-868, -191], [-868, -206], [-764, -206], [-764, -205], [-748, -205], [-748, -227], [-850, -227], [-850, -266], [-859, -300], [-859, -309], [-852, -319], [-866, -327], [-868, -334], [-868, -368]]}, "center": {"106-129": [-927, -265]}}, {"id": 888, "name": "Flag of Bosnia and Herzegovina", "description": "Bosnia and Herzegovina (BiH) is a country in Southern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Bosnia_and_Herzegovina", "https://en.wikipedia.org/wiki/Flag_of_Bosnia_and_Herzegovina"], "subreddit": ["bih", "bosnia"]}, "path": {"109-121": [[-958, 480], [-958, 500], [-935, 500], [-935, 480]]}, "center": {"109-121": [-946, 490]}}, -{"id": 889, "name": "Lemmy", "description": "Lemmy is a selfhosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Lemmy has recently gained popularity as an alternative to Reddit.", "links": {"website": ["https://join-lemmy.org/", "https://en.wikipedia.org/wiki/Lemmy_(software)", "https://lemm.ee/c/place"]}, "path": {"97-147": [[-813, 8], [-813, 15], [-812, 15], [-812, 23], [-759, 23], [-759, 13], [-805, 13], [-805, 8]], "156-258": [[-29, -26], [-29, -11], [39, -11], [39, -26]]}, "center": {"97-147": [-807, 18], "156-258": [5, -18]}}, +{"id": 889, "name": "Lemmy", "description": "Lemmy is a selfhosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Lemmy has recently gained popularity as an alternative to Reddit.", "links": {"website": ["https://join-lemmy.org/", "https://en.wikipedia.org/wiki/Lemmy_(software)", "https://lemm.ee/c/place"]}, "path": {"97-147": [[-813, 8], [-813, 15], [-812, 15], [-812, 23], [-759, 23], [-759, 13], [-805, 13], [-805, 8]], "156-258, T": [[-29, -26], [-29, -11], [39, -11], [39, -26]]}, "center": {"97-147": [-807, 18], "156-258, T": [5, -18]}}, {"id": 890, "name": "The Fork", "description": "Our friend Jan Forkman was made immortal here", "links": {}, "path": {"146-147": [[-805, -6], [-789, -6], [-789, 8], [-805, 8]]}, "center": {"146-147": [-797, 1]}}, -{"id": 891, "name": "Costa Rica", "description": "The country of Costa Rica as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica"], "subreddit": ["costarica"]}, "path": {"103-258": [[-71, 34], [-76, 38], [-76, 48], [-74, 48], [-74, 50], [-71, 50], [-71, 52], [-62, 52], [-53, 56], [-50, 59], [-50, 61], [-52, 63], [-52, 64], [-50, 67], [-48, 69], [-38, 69], [-38, 59], [-40, 57], [-40, 56], [-39, 55], [-36, 55], [-36, 53], [-47, 43], [-47, 42], [-55, 36], [-60, 36], [-62, 34]]}, "center": {"103-258": [-65, 43]}}, -{"id": 892, "name": "¡Pura vida!", "description": "A popular greeting and slogan in Costa Rica that is Spanish for \"pure life\" or \"simple life\".", "links": {"website": ["https://costarica.org/people/pura-vida/"], "subreddit": ["costarica"]}, "path": {"79-258": [[-33, 59], [-33, 65], [2, 65], [2, 59]]}, "center": {"79-258": [-15, 62]}}, -{"id": 893, "name": "Lechonk", "description": "Lechonk is a Normal-type pig Pokémon introduced in the Generation IX Pokémon games (Pokémon Scarlet/Violet). The games are set in Paldea, a region based on Spain.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Lechonk_(Pok%C3%A9mon)"], "subreddit": ["esPlace", "spain"]}, "path": {"113-258": [[287, -74], [283, -72], [282, -71], [278, -71], [278, -66], [273, -63], [275, -61], [278, -61], [280, -56], [280, -53], [282, -51], [284, -51], [284, -52], [292, -52], [294, -50], [296, -50], [296, -51], [300, -51], [300, -55], [302, -55], [304, -57], [304, -62], [306, -62], [306, -65], [295, -73], [293, -74]]}, "center": {"113-258": [290, -63]}}, +{"id": 891, "name": "Costa Rica", "description": "The country of Costa Rica as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica"], "subreddit": ["costarica"]}, "path": {"103-258, T": [[-71, 34], [-76, 38], [-76, 48], [-74, 48], [-74, 50], [-71, 50], [-71, 52], [-62, 52], [-53, 56], [-50, 59], [-50, 61], [-52, 63], [-52, 64], [-50, 67], [-48, 69], [-38, 69], [-38, 59], [-40, 57], [-40, 56], [-39, 55], [-36, 55], [-36, 53], [-47, 43], [-47, 42], [-55, 36], [-60, 36], [-62, 34]]}, "center": {"103-258, T": [-65, 43]}}, +{"id": 892, "name": "¡Pura vida!", "description": "A popular greeting and slogan in Costa Rica that is Spanish for \"pure life\" or \"simple life\".", "links": {"website": ["https://costarica.org/people/pura-vida/"], "subreddit": ["costarica"]}, "path": {"79-258, T": [[-33, 59], [-33, 65], [2, 65], [2, 59]]}, "center": {"79-258, T": [-15, 62]}}, +{"id": 893, "name": "Lechonk", "description": "Lechonk is a Normal-type pig Pokémon introduced in the Generation IX Pokémon games (Pokémon Scarlet/Violet). The games are set in Paldea, a region based on Spain.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Lechonk_(Pok%C3%A9mon)"], "subreddit": ["esPlace", "spain"]}, "path": {"113-258, T": [[287, -74], [283, -72], [282, -71], [278, -71], [278, -66], [273, -63], [275, -61], [278, -61], [280, -56], [280, -53], [282, -51], [284, -51], [284, -52], [292, -52], [294, -50], [296, -50], [296, -51], [300, -51], [300, -55], [302, -55], [304, -57], [304, -62], [306, -62], [306, -65], [295, -73], [293, -74]]}, "center": {"113-258, T": [290, -63]}}, {"id": 894, "name": "Coat of arms of Spain", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Spain"], "subreddit": ["esPlace", "spain"]}, "path": {"61-120": [[417, -70], [415, -68], [415, -48], [444, -48], [444, -68], [442, -70]]}, "center": {"61-120": [430, -59]}}, {"id": 895, "name": "Gorilla tag monke", "description": "Gorilla tag is a popular 2021 VR game with unique locomotion system enabling players to move with their hands to play tag.", "links": {"website": ["https://www.gorillatagvr.com/"], "subreddit": ["GorillaTag"], "discord": ["gorillatag"]}, "path": {"108-196": [[-501, 237], [-501, 266], [-471, 266], [-471, 237]], "204-225": [[-1146, -550], [-1146, -514], [-1117, -514], [-1117, -550]], "241-244": [[-1088, -462], [-1088, -448], [-1074, -448], [-1074, -462]], "252-258": [[-1398, -79], [-1398, -57], [-1378, -57], [-1378, -79]]}, "center": {"108-196": [-486, 252], "204-225": [-1131, -532], "241-244": [-1081, -455], "252-258": [-1388, -68]}}, -{"id": 896, "name": "BastiGHG", "description": "BastiGHG is a german streamer and youtuber. His online persona is represented by his Minecraft skin. The artwork belongs to the one done by Sukidingels.", "links": {"website": ["https://www.twitch.tv/bastighg"]}, "path": {"117-258": [[-685, -326], [-678, -333], [-677, -337], [-682, -344], [-695, -345], [-699, -340], [-698, -331], [-697, -331], [-697, -327], [-695, -326], [-689, -325]]}, "center": {"117-258": [-689, -335]}}, -{"id": 897, "name": "Maudado", "description": "Maudado is a german youtuber. Her online persona is represented by the blue snail \"Schneckchen\". The artwork belongs to the one from Sukidingels.", "links": {"website": ["https://www.youtube.com/@maudado"]}, "path": {"117-258": [[-714, -294], [-712, -296], [-712, -299], [-713, -300], [-718, -301], [-718, -300], [-719, -296], [-718, -296], [-718, -295], [-719, -294], [-720, -293], [-720, -291], [-720, -290], [-717, -290], [-716, -289], [-715, -288], [-715, -284], [-716, -283], [-716, -282], [-714, -282], [-714, -280], [-713, -279], [-708, -280], [-706, -280], [-704, -281], [-703, -283], [-703, -289], [-704, -291], [-705, -292], [-704, -293], [-703, -295], [-703, -298], [-705, -299], [-707, -299], [-709, -298], [-710, -296], [-712, -297]]}, "center": {"117-258": [-709, -287]}}, -{"id": 898, "name": "byStegi", "description": "\"byStegi\" is a german streamer represented by his online persona and his stegosaurus. The artwork belongs to the one done by Sukidingels.", "links": {"website": ["https://www.twitch.tv/stegi"]}, "path": {"116-258": [[-737, -301], [-744, -294], [-744, -291], [-741, -288], [-741, -285], [-745, -285], [-748, -285], [-750, -283], [-748, -280], [-746, -279], [-745, -278], [-744, -277], [-743, -276], [-743, -275], [-742, -273], [-740, -272], [-739, -268], [-739, -262], [-738, -261], [-737, -260], [-736, -259], [-734, -259], [-733, -260], [-733, -263], [-731, -263], [-731, -265], [-730, -266], [-729, -267], [-727, -265], [-726, -260], [-719, -260], [-719, -266], [-715, -267], [-713, -270], [-706, -271], [-705, -277], [-706, -279], [-708, -280], [-710, -281], [-714, -280], [-714, -281], [-716, -283], [-715, -286], [-715, -288], [-716, -289], [-717, -290], [-720, -291], [-720, -294], [-719, -295], [-719, -301], [-720, -303], [-723, -304], [-726, -307], [-732, -308], [-737, -307], [-740, -305], [-742, -302], [-740, -299], [-741, -298]]}, "center": {"116-258": [-729, -280]}}, -{"id": 899, "name": "WatermelonVT", "description": "This is the logo from WatermelonVT, you may alsow call her Melon. She is a chill German VTuber that loves to play funny games and meme around.", "links": {"website": ["https://www.twitch.tv/watermelonvt"]}, "path": {"103-258": [[183, -346], [192, -346], [192, -343], [183, -343]]}, "center": {"103-258": [188, -344]}}, -{"id": 900, "name": "The Dream Team", "description": "The Dream Team is a group of three YouTubers who mainly create content about Minecraft plugins they coded, although they are also well-known for their involvement on the Dream SMP, a famous Minecraft server. From top to bottom, they are Sapnap, Dream, and GeorgeNotFound.", "links": {"website": ["https://www.youtube.com/@Sapnap", "https://www.youtube.com/@dream", "https://www.youtube.com/@georgenotfound"]}, "path": {"116-258": [[87, 9], [96, 9], [96, 33], [87, 33]]}, "center": {"116-258": [92, 21]}}, +{"id": 896, "name": "BastiGHG", "description": "BastiGHG is a german streamer and youtuber. His online persona is represented by his Minecraft skin. The artwork belongs to the one done by Sukidingels.", "links": {"website": ["https://www.twitch.tv/bastighg"]}, "path": {"117-258, T": [[-685, -326], [-678, -333], [-677, -337], [-682, -344], [-695, -345], [-699, -340], [-698, -331], [-697, -331], [-697, -327], [-695, -326], [-689, -325]]}, "center": {"117-258, T": [-689, -335]}}, +{"id": 897, "name": "Maudado", "description": "Maudado is a german youtuber. Her online persona is represented by the blue snail \"Schneckchen\". The artwork belongs to the one from Sukidingels.", "links": {"website": ["https://www.youtube.com/@maudado"]}, "path": {"117-258, T": [[-714, -294], [-712, -296], [-712, -299], [-713, -300], [-718, -301], [-718, -300], [-719, -296], [-718, -296], [-718, -295], [-719, -294], [-720, -293], [-720, -291], [-720, -290], [-717, -290], [-716, -289], [-715, -288], [-715, -284], [-716, -283], [-716, -282], [-714, -282], [-714, -280], [-713, -279], [-708, -280], [-706, -280], [-704, -281], [-703, -283], [-703, -289], [-704, -291], [-705, -292], [-704, -293], [-703, -295], [-703, -298], [-705, -299], [-707, -299], [-709, -298], [-710, -296], [-712, -297]]}, "center": {"117-258, T": [-709, -287]}}, +{"id": 898, "name": "byStegi", "description": "\"byStegi\" is a german streamer represented by his online persona and his stegosaurus. The artwork belongs to the one done by Sukidingels.", "links": {"website": ["https://www.twitch.tv/stegi"]}, "path": {"116-258, T": [[-737, -301], [-744, -294], [-744, -291], [-741, -288], [-741, -285], [-745, -285], [-748, -285], [-750, -283], [-748, -280], [-746, -279], [-745, -278], [-744, -277], [-743, -276], [-743, -275], [-742, -273], [-740, -272], [-739, -268], [-739, -262], [-738, -261], [-737, -260], [-736, -259], [-734, -259], [-733, -260], [-733, -263], [-731, -263], [-731, -265], [-730, -266], [-729, -267], [-727, -265], [-726, -260], [-719, -260], [-719, -266], [-715, -267], [-713, -270], [-706, -271], [-705, -277], [-706, -279], [-708, -280], [-710, -281], [-714, -280], [-714, -281], [-716, -283], [-715, -286], [-715, -288], [-716, -289], [-717, -290], [-720, -291], [-720, -294], [-719, -295], [-719, -301], [-720, -303], [-723, -304], [-726, -307], [-732, -308], [-737, -307], [-740, -305], [-742, -302], [-740, -299], [-741, -298]]}, "center": {"116-258, T": [-729, -280]}}, +{"id": 899, "name": "WatermelonVT", "description": "This is the logo from WatermelonVT, you may alsow call her Melon. She is a chill German VTuber that loves to play funny games and meme around.", "links": {"website": ["https://www.twitch.tv/watermelonvt"]}, "path": {"103-258, T": [[183, -346], [192, -346], [192, -343], [183, -343]]}, "center": {"103-258, T": [188, -344]}}, +{"id": 900, "name": "The Dream Team", "description": "The Dream Team is a group of three YouTubers who mainly create content about Minecraft plugins they coded, although they are also well-known for their involvement on the Dream SMP, a famous Minecraft server. From top to bottom, they are Sapnap, Dream, and GeorgeNotFound.", "links": {"website": ["https://www.youtube.com/@Sapnap", "https://www.youtube.com/@dream", "https://www.youtube.com/@georgenotfound"]}, "path": {"116-258, T": [[87, 9], [96, 9], [96, 33], [87, 33]]}, "center": {"116-258, T": [92, 21]}}, {"id": 901, "name": "DoktorFroid", "description": "DoktorFroid are three german streamers and youtubers. One of their go-to symbols is the \"360\".", "links": {"website": ["https://www.twitch.tv/doktorfroid", "https://www.youtube.com/@DoktorFroid"]}, "path": {"107": [[400, -298], [400, -290], [417, -290], [417, -298]]}, "center": {"107": [409, -294]}}, -{"id": 902, "name": "Satisfactory", "description": "The FICSIT Corporation Logo, featuring the adorable Lizard Doggo, a Nobelisk and a delicous but dry Beryl Nut.\n\nNOTE from FICSIT: \"Doggo happy, we happy, you happy\"", "links": {"website": ["https://www.satisfactorygame.com/", "https://www.coffeestainstudios.com/"], "subreddit": ["SatisfactoryGame"], "discord": ["nB6AYMzmr5", "Satisfactory"]}, "path": {"115-258": [[-537, -480], [-493, -480], [-493, -481], [-492, -481], [-492, -482], [-491, -482], [-491, -491], [-492, -491], [-492, -492], [-493, -492], [-493, -493], [-493, -498], [-502, -498], [-502, -495], [-503, -495], [-503, -494], [-505, -494], [-505, -495], [-506, -495], [-506, -496], [-509, -496], [-509, -495], [-510, -495], [-510, -493], [-512, -493], [-512, -499], [-513, -499], [-513, -500], [-520, -500], [-520, -499], [-521, -499], [-521, -493], [-523, -493], [-523, -494], [-523, -495], [-526, -495], [-526, -496], [-528, -496], [-528, -497], [-529, -497], [-529, -498], [-529, -499], [-531, -499], [-531, -500], [-537, -500], [-537, -499], [-539, -499], [-539, -497], [-540, -497], [-540, -485], [-539, -485], [-539, -482], [-538, -482], [-538, -481], [-537, -481]]}, "center": {"115-258": [-532, -488]}}, -{"id": 903, "name": "Terminal Window", "description": "A terminal is a computer application that allows a user to enter commands to execute actions on the computer.\n\nThis terminal, maintained by r/Morocco, initially executed some basic commands in Bash, a terminal shell language. It then proceeded to copy the nearby Bad Apple!! music video.", "links": {"website": ["https://en.wikipedia.org/wiki/Terminal_emulator"], "subreddit": ["Morocco"], "discord": ["r-morocco"]}, "path": {"204-249": [[363, 129], [366, 129], [366, 119], [367, 118], [368, 118], [369, 119], [369, 128], [370, 129], [373, 129], [374, 128], [374, 127], [373, 126], [372, 126], [371, 125], [370, 124], [370, 123], [369, 122], [370, 121], [374, 121], [374, 120], [377, 120], [378, 119], [379, 118], [379, 111], [380, 111], [380, 116], [381, 117], [384, 117], [384, 116], [385, 115], [393, 115], [394, 116], [394, 117], [395, 117], [396, 118], [396, 119], [402, 119], [403, 120], [403, 121], [404, 121], [404, 123], [403, 123], [403, 126], [402, 127], [402, 128], [424, 128], [424, 186], [362, 186]], "102-203, 250-258": [[362, 128], [362, 186], [424, 186], [424, 128]]}, "center": {"204-249": [393, 156], "102-203, 250-258": [393, 157]}}, -{"id": 904, "name": "O Amigo Imaginário", "description": "Amigo Imaginário (Portuguese for \"Imaginary Friend\") is a creature from Ordem Paranormal, a role-playing game created by Brazilian streamer Cellbit.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Amigo_Imagin%C3%A1rio"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"113-258": [[919, 128], [914, 131], [907, 144], [897, 143], [897, 153], [885, 156], [885, 171], [873, 177], [873, 179], [878, 188], [877, 248], [868, 272], [855, 292], [855, 298], [841, 313], [838, 324], [838, 326], [835, 326], [835, 350], [827, 360], [817, 366], [827, 376], [826, 388], [831, 393], [820, 405], [819, 410], [834, 410], [835, 435], [861, 437], [873, 442], [951, 442], [1000, 428], [1000, 317], [969, 281], [961, 239], [961, 197], [968, 183], [967, 177], [955, 171], [955, 163], [959, 160], [958, 157], [945, 151], [944, 146], [935, 146], [930, 134], [924, 128]]}, "center": {"113-258": [917, 357]}}, -{"id": 905, "name": "Oldroot Morse", "description": "This is morse code that translates \"oldroot\", an unsolved internet ARG", "links": {"subreddit": ["oldroot"]}, "path": {"118-258": [[502, 499], [559, 499], [502, 499], [559, 499]]}, "center": {"118-258": [502, 499]}}, +{"id": 902, "name": "Satisfactory", "description": "The FICSIT Corporation Logo, featuring the adorable Lizard Doggo, a Nobelisk and a delicous but dry Beryl Nut.\n\nNOTE from FICSIT: \"Doggo happy, we happy, you happy\"", "links": {"website": ["https://www.satisfactorygame.com/", "https://www.coffeestainstudios.com/"], "subreddit": ["SatisfactoryGame"], "discord": ["nB6AYMzmr5", "Satisfactory"]}, "path": {"115-258, T": [[-537, -480], [-493, -480], [-493, -481], [-492, -481], [-492, -482], [-491, -482], [-491, -491], [-492, -491], [-492, -492], [-493, -492], [-493, -493], [-493, -498], [-502, -498], [-502, -495], [-503, -495], [-503, -494], [-505, -494], [-505, -495], [-506, -495], [-506, -496], [-509, -496], [-509, -495], [-510, -495], [-510, -493], [-512, -493], [-512, -499], [-513, -499], [-513, -500], [-520, -500], [-520, -499], [-521, -499], [-521, -493], [-523, -493], [-523, -494], [-523, -495], [-526, -495], [-526, -496], [-528, -496], [-528, -497], [-529, -497], [-529, -498], [-529, -499], [-531, -499], [-531, -500], [-537, -500], [-537, -499], [-539, -499], [-539, -497], [-540, -497], [-540, -485], [-539, -485], [-539, -482], [-538, -482], [-538, -481], [-537, -481]]}, "center": {"115-258, T": [-532, -488]}}, +{"id": 903, "name": "Terminal Window", "description": "A terminal is a computer application that allows a user to enter commands to execute actions on the computer.\n\nThis terminal, maintained by r/Morocco, initially executed some basic commands in Bash, a terminal shell language. It then proceeded to copy the nearby Bad Apple!! music video.", "links": {"website": ["https://en.wikipedia.org/wiki/Terminal_emulator"], "subreddit": ["Morocco"], "discord": ["r-morocco"]}, "path": {"204-249": [[363, 129], [366, 129], [366, 119], [367, 118], [368, 118], [369, 119], [369, 128], [370, 129], [373, 129], [374, 128], [374, 127], [373, 126], [372, 126], [371, 125], [370, 124], [370, 123], [369, 122], [370, 121], [374, 121], [374, 120], [377, 120], [378, 119], [379, 118], [379, 111], [380, 111], [380, 116], [381, 117], [384, 117], [384, 116], [385, 115], [393, 115], [394, 116], [394, 117], [395, 117], [396, 118], [396, 119], [402, 119], [403, 120], [403, 121], [404, 121], [404, 123], [403, 123], [403, 126], [402, 127], [402, 128], [424, 128], [424, 186], [362, 186]], "102-203, 250-258, T": [[362, 128], [362, 186], [424, 186], [424, 128]]}, "center": {"204-249": [393, 156], "102-203, 250-258, T": [393, 157]}}, +{"id": 904, "name": "O Amigo Imaginário", "description": "Amigo Imaginário (Portuguese for \"Imaginary Friend\") is a creature from Ordem Paranormal, a role-playing game created by Brazilian streamer Cellbit.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Amigo_Imagin%C3%A1rio"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"113-258, T": [[919, 128], [914, 131], [907, 144], [897, 143], [897, 153], [885, 156], [885, 171], [873, 177], [873, 179], [878, 188], [877, 248], [868, 272], [855, 292], [855, 298], [841, 313], [838, 324], [838, 326], [835, 326], [835, 350], [827, 360], [817, 366], [827, 376], [826, 388], [831, 393], [820, 405], [819, 410], [834, 410], [835, 435], [861, 437], [873, 442], [951, 442], [1000, 428], [1000, 317], [969, 281], [961, 239], [961, 197], [968, 183], [967, 177], [955, 171], [955, 163], [959, 160], [958, 157], [945, 151], [944, 146], [935, 146], [930, 134], [924, 128]]}, "center": {"113-258, T": [917, 357]}}, +{"id": 905, "name": "Oldroot Morse", "description": "This is morse code that translates \"oldroot\", an unsolved internet ARG", "links": {"subreddit": ["oldroot"]}, "path": {"118-258, T": [[502, 499], [559, 499], [502, 499], [559, 499]]}, "center": {"118-258, T": [502, 499]}}, {"id": 906, "name": ":BangBang:", "description": "Emote that is commonly used in The Campaign Trail.", "links": {"website": ["https://www.newcampaigntrail.com/campaign-trail/index.html"], "subreddit": ["thecampaigntrail"], "discord": ["thecampaigntrail"]}, "path": {"26-29": [[55, 98], [57, 98], [57, 103], [55, 103]], "30-41": [[53, 98], [55, 98], [55, 103], [53, 103]]}, "center": {"26-29": [56, 101], "30-41": [54, 101]}}, {"id": 907, "name": "TCT (The Campaign Trail)", "description": "The Campaign Trail is a browser game that lets you play as candidates running for President of the United States.", "links": {"website": ["https://www.newcampaigntrail.com/campaign-trail/index.html"], "subreddit": ["thecampaigntrail"], "discord": ["thecampaigntrail"]}, "path": {"6-28": [[59, 97], [72, 97], [72, 103], [59, 103]], "29-41": [[57, 97], [74, 97], [74, 104], [57, 104]], "56-57": [[-13, 121], [0, 121], [0, 128], [-13, 128]]}, "center": {"6-28": [66, 100], "29-41": [66, 101], "56-57": [-6, 125]}}, -{"id": 908, "name": "MiaowArt", "description": "This is the mascot of MiaowArt. She herself is a VTuber and an amazing artist that loves gaming. Her chill and funny streams are in German.", "links": {"website": ["https://www.twitch.tv/miaowart"]}, "path": {"110-258": [[187, -335], [196, -335], [196, -342], [194, -342], [194, -343], [191, -343], [191, -342], [188, -342], [188, -341], [187, -341]]}, "center": {"110-258": [192, -338]}}, +{"id": 908, "name": "MiaowArt", "description": "This is the mascot of MiaowArt. She herself is a VTuber and an amazing artist that loves gaming. Her chill and funny streams are in German.", "links": {"website": ["https://www.twitch.tv/miaowart"]}, "path": {"110-258, T": [[187, -335], [196, -335], [196, -342], [194, -342], [194, -343], [191, -343], [191, -342], [188, -342], [188, -341], [187, -341]]}, "center": {"110-258, T": [192, -338]}}, {"id": 909, "name": "Shego", "description": "Shego is a fictional character from Disney's animated series Kim Possible.\n\nThis artwork was requested by German streamer Lattensepp (Papaplatte), who has a huge crush on Shego and Kim Possible's mom (And he's jerked off a few times on Kim Possible hentais). All the artwork was done in collaboration with streamers Rubius and Stegi. Stegi was very excited about the idea because Shego looks very similar to his Crush di1araa.s. Due to the extreme horniness of their chats, it escalated immediately. Reddit mods intervened when the artwork went too far, but it remained for several hours.", "links": {"website": ["https://en.wikipedia.org/wiki/Shego", "https://www.twitch.tv/stegi", "https://www.twitch.tv/rubius", "https://www.twitch.tv/papaplatte"], "subreddit": ["Shego"]}, "path": {"114-149": [[-993, 126], [-985, 114], [-971, 99], [-958, 94], [-937, 90], [-922, 89], [-898, 89], [-883, 87], [-885, 90], [-883, 94], [-884, 94], [-888, 99], [-890, 100], [-885, 107], [-885, 111], [-885, 116], [-888, 115], [-892, 114], [-894, 117], [-897, 119], [-897, 132], [-888, 133], [-881, 142], [-881, 147], [-881, 170], [-883, 175], [-887, 175], [-886, 177], [-882, 177], [-882, 190], [-888, 202], [-881, 221], [-890, 245], [-896, 246], [-900, 248], [-905, 249], [-906, 253], [-907, 254], [-905, 257], [-898, 265], [-898, 269], [-897, 275], [-899, 282], [-900, 285], [-903, 287], [-905, 290], [-906, 293], [-909, 298], [-912, 302], [-914, 306], [-973, 306], [-975, 298], [-976, 293], [-977, 292], [-978, 287], [-978, 276], [-975, 273], [-976, 267], [-975, 266], [-974, 263], [-973, 262], [-971, 260], [-971, 257], [-969, 257], [-969, 256], [-972, 252], [-973, 250], [-976, 247], [-988, 235], [-990, 229], [-988, 223], [-981, 217], [-985, 212], [-990, 208], [-991, 204], [-996, 197], [-997, 195], [-998, 194], [-998, 187], [-995, 185], [-992, 180], [-988, 178], [-986, 169], [-985, 163], [-985, 161], [-986, 159], [-988, 157], [-993, 151], [-994, 147], [-995, 146], [-994, 145], [-994, 135], [-993, 134], [-993, 133], [-993, 129], [-993, 127]]}, "center": {"114-149": [-937, 187]}}, -{"id": 910, "name": "<2 Pooya", "description": "Pooya is a Twitch streamer and a podcaster. After a typo of <3 to <2 by one community member, Pooya and crew has adopted the <2 and has become the <2 Crew (Less Than Two Crew).", "links": {"website": ["http://www.twitch.tv/pooya"], "subreddit": ["pooya"]}, "path": {"118-258": [[399, -286], [419, -286], [419, -299], [399, -299]]}, "center": {"118-258": [409, -292]}}, -{"id": 911, "name": "Le Cercle", "description": "Le Cercle is a tiny left-winged french discord community, where every member wear black and white custom pfp.", "links": {"website": ["https://disboard.org/fr/server/847224457865199647"], "discord": ["p4VUprFeRk"]}, "path": {"95-258": [[-531, 357], [-522, 357], [-522, 366], [-531, 366]]}, "center": {"95-258": [-526, 362]}}, -{"id": 912, "name": "Kirby", "description": "5 different colored Kirby's in a line, going green, blue, red, pink, (original) and yellow", "links": {}, "path": {"118-258": [[-139, 424], [-134, 422], [-126, 421], [-117, 422], [-106, 422], [-99, 421], [-97, 425], [-100, 428], [-109, 428], [-117, 428], [-124, 427], [-130, 427], [-135, 428], [-138, 428]]}, "center": {"118-258": [-102, 425]}}, +{"id": 910, "name": "<2 Pooya", "description": "Pooya is a Twitch streamer and a podcaster. After a typo of <3 to <2 by one community member, Pooya and crew has adopted the <2 and has become the <2 Crew (Less Than Two Crew).", "links": {"website": ["http://www.twitch.tv/pooya"], "subreddit": ["pooya"]}, "path": {"118-258, T": [[399, -286], [419, -286], [419, -299], [399, -299]]}, "center": {"118-258, T": [409, -292]}}, +{"id": 911, "name": "Le Cercle", "description": "Le Cercle is a tiny left-winged french discord community, where every member wear black and white custom pfp.", "links": {"website": ["https://disboard.org/fr/server/847224457865199647"], "discord": ["p4VUprFeRk"]}, "path": {"95-258, T": [[-531, 357], [-522, 357], [-522, 366], [-531, 366]]}, "center": {"95-258, T": [-526, 362]}}, +{"id": 912, "name": "Kirby", "description": "5 different colored Kirby's in a line, going green, blue, red, pink, (original) and yellow", "links": {}, "path": {"118-258, T": [[-139, 424], [-134, 422], [-126, 421], [-117, 422], [-106, 422], [-99, 421], [-97, 425], [-100, 428], [-109, 428], [-117, 428], [-124, 427], [-130, 427], [-135, 428], [-138, 428]]}, "center": {"118-258, T": [-102, 425]}}, {"id": 913, "name": "Last Prism", "description": "Artwork of the weapon \"Last Prism\" from the video game Terraria.", "links": {"website": ["https://terraria.wiki.gg/wiki/Last_Prism"], "subreddit": ["terraria"]}, "path": {"101": [[-208, 224], [-214, 235], [-209, 240], [-205, 240], [-199, 235]]}, "center": {"101": [-207, 234]}}, -{"id": 915, "name": "Dystopia for Reddit", "description": "Dystopia for Reddit is a third-party Reddit app.", "links": {"website": ["https://apps.apple.com/us/app/dystopia-for-reddit/id1430599061"], "subreddit": ["DystopiaForReddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 90-258": [[-40, 21], [-44, 24], [-44, 28], [-40, 31], [-38, 31], [-34, 28], [-34, 24], [-38, 21]]}, "center": {"10-80, 90-258": [-39, 26]}}, -{"id": 916, "name": "Infinity for Reddit", "description": "Infinity for Reddit is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=ml.docilealligator.infinityforreddit&hl=en_US&gl=US"], "subreddit": ["Infinity_For_Reddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 90-258": [[-29, 21], [-33, 24], [-33, 28], [-29, 31], [-27, 31], [-23, 28], [-23, 24], [-27, 21]]}, "center": {"10-80, 90-258": [-28, 26]}}, -{"id": 917, "name": "Joey for Reddit", "description": "Joey for Reddit is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=o.o.joey&hl=en_NZ&gl=US"], "subreddit": ["JoeyForReddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 93-258": [[-18, 21], [-22, 24], [-22, 28], [-18, 31], [-16, 31], [-12, 28], [-12, 24], [-16, 21]]}, "center": {"10-80, 93-258": [-17, 26]}}, -{"id": 918, "name": "Guido from Cars", "description": "Guido is a recurring character in the Cars series. He is a small, blue, optimistic, and fun pitty, and Luigi's best friend and business partner.\n\nThis artwork was created by the streamer Lattensepp (Papaplatte) to suck up to the Italian flag so they see that he has nothing going for them.", "links": {"website": ["https://pixarcars.fandom.com/wiki/Guido", "https://www.twitch.tv/papaplatte"], "subreddit": ["papaplatte"], "discord": ["7eJUtFgD"]}, "path": {"103-258": [[50, 249], [31, 249], [31, 247], [29, 247], [28, 245], [28, 244], [28, 243], [27, 242], [27, 241], [25, 240], [24, 240], [23, 239], [23, 238], [23, 236], [23, 235], [25, 234], [25, 233], [25, 231], [25, 227], [24, 228], [23, 228], [23, 227], [22, 227], [21, 227], [20, 226], [19, 224], [18, 223], [17, 222], [16, 222], [16, 210], [17, 210], [17, 209], [17, 208], [18, 208], [18, 207], [19, 207], [19, 206], [20, 206], [20, 205], [21, 205], [21, 204], [22, 204], [22, 203], [23, 203], [23, 202], [25, 202], [26, 202], [26, 201], [27, 201], [27, 200], [38, 200], [38, 201], [43, 201], [43, 202], [47, 202], [50, 206], [52, 210], [52, 219], [52, 248], [51, 249]]}, "center": {"103-258": [37, 217]}}, -{"id": 919, "name": "Narwhal", "description": "Narwhal is a third-party Reddit app.", "links": {"website": ["http://getnarwhal.com/"], "subreddit": ["getnarwhal", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 92-258": [[-7, 21], [-11, 24], [-11, 28], [-7, 31], [-5, 31], [-1, 28], [-1, 24], [-5, 21]]}, "center": {"10-80, 92-258": [-6, 26]}}, -{"id": 920, "name": "Now for Reddit", "description": "Now for Reddit is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=com.phyora.apps.reddit_now&hl=en_US&gl=US"], "subreddit": ["redditnow", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 91-258": [[4, 21], [0, 24], [0, 28], [4, 31], [6, 31], [10, 28], [10, 24], [6, 21]]}, "center": {"10-80, 91-258": [5, 26]}}, -{"id": 921, "name": "Redditoria for Reddit", "description": "Redditoria for Reddit is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=com.kirkbushman.redditoria&hl=en_US&gl=US"], "subreddit": ["RedditoriaApp", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 91-258": [[15, 21], [11, 24], [11, 28], [15, 31], [17, 31], [21, 28], [21, 24], [17, 21]]}, "center": {"10-80, 91-258": [16, 26]}}, -{"id": 922, "name": "ReddPlanet", "description": "ReddPlanet is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=com.reddplanet&hl=en_AU&gl=US"], "subreddit": ["ReddPlanet", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"11-80, 93-258": [[26, 21], [22, 24], [22, 28], [26, 31], [28, 31], [32, 28], [32, 24], [28, 21]]}, "center": {"11-80, 93-258": [27, 26]}}, -{"id": 923, "name": "Slide for Reddit", "description": "Slide for Reddit is a third-party Reddit app.", "links": {"website": ["https://github.com/Haptic-Apps/Slide"], "subreddit": ["slideforreddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"16-80, 95-258": [[37, 21], [33, 24], [33, 28], [37, 31], [39, 31], [43, 28], [43, 24], [39, 21]]}, "center": {"16-80, 95-258": [38, 26]}}, -{"id": 924, "name": "Relay for Reddit", "description": "Relay for Reddit is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=reddit.news&hl=en_US&gl=US"], "subreddit": ["RelayForReddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"11-80, 91-258": [[48, 21], [44, 24], [44, 28], [48, 31], [50, 31], [54, 28], [54, 24], [50, 21]]}, "center": {"11-80, 91-258": [49, 26]}}, -{"id": 925, "name": "Sync for Reddit", "description": "Sync for Reddit is a third-party Reddit app.", "links": {"subreddit": ["redditsync", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-81, 101-258": [[70, 21], [66, 24], [66, 28], [70, 31], [72, 31], [76, 28], [76, 24], [72, 21]]}, "center": {"10-81, 101-258": [71, 26]}}, +{"id": 915, "name": "Dystopia for Reddit", "description": "Dystopia for Reddit is a third-party Reddit app.", "links": {"website": ["https://apps.apple.com/us/app/dystopia-for-reddit/id1430599061"], "subreddit": ["DystopiaForReddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 90-258, T": [[-40, 21], [-44, 24], [-44, 28], [-40, 31], [-38, 31], [-34, 28], [-34, 24], [-38, 21]]}, "center": {"10-80, 90-258, T": [-39, 26]}}, +{"id": 916, "name": "Infinity for Reddit", "description": "Infinity for Reddit is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=ml.docilealligator.infinityforreddit&hl=en_US&gl=US"], "subreddit": ["Infinity_For_Reddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 90-258, T": [[-29, 21], [-33, 24], [-33, 28], [-29, 31], [-27, 31], [-23, 28], [-23, 24], [-27, 21]]}, "center": {"10-80, 90-258, T": [-28, 26]}}, +{"id": 917, "name": "Joey for Reddit", "description": "Joey for Reddit is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=o.o.joey&hl=en_NZ&gl=US"], "subreddit": ["JoeyForReddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 93-258, T": [[-18, 21], [-22, 24], [-22, 28], [-18, 31], [-16, 31], [-12, 28], [-12, 24], [-16, 21]]}, "center": {"10-80, 93-258, T": [-17, 26]}}, +{"id": 918, "name": "Guido from Cars", "description": "Guido is a recurring character in the Cars series. He is a small, blue, optimistic, and fun pitty, and Luigi's best friend and business partner.\n\nThis artwork was created by the streamer Lattensepp (Papaplatte) to suck up to the Italian flag so they see that he has nothing going for them.", "links": {"website": ["https://pixarcars.fandom.com/wiki/Guido", "https://www.twitch.tv/papaplatte"], "subreddit": ["papaplatte"], "discord": ["7eJUtFgD"]}, "path": {"103-258, T": [[50, 249], [31, 249], [31, 247], [29, 247], [28, 245], [28, 244], [28, 243], [27, 242], [27, 241], [25, 240], [24, 240], [23, 239], [23, 238], [23, 236], [23, 235], [25, 234], [25, 233], [25, 231], [25, 227], [24, 228], [23, 228], [23, 227], [22, 227], [21, 227], [20, 226], [19, 224], [18, 223], [17, 222], [16, 222], [16, 210], [17, 210], [17, 209], [17, 208], [18, 208], [18, 207], [19, 207], [19, 206], [20, 206], [20, 205], [21, 205], [21, 204], [22, 204], [22, 203], [23, 203], [23, 202], [25, 202], [26, 202], [26, 201], [27, 201], [27, 200], [38, 200], [38, 201], [43, 201], [43, 202], [47, 202], [50, 206], [52, 210], [52, 219], [52, 248], [51, 249]]}, "center": {"103-258, T": [37, 217]}}, +{"id": 919, "name": "Narwhal", "description": "Narwhal is a third-party Reddit app.", "links": {"website": ["http://getnarwhal.com/"], "subreddit": ["getnarwhal", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 92-258, T": [[-7, 21], [-11, 24], [-11, 28], [-7, 31], [-5, 31], [-1, 28], [-1, 24], [-5, 21]]}, "center": {"10-80, 92-258, T": [-6, 26]}}, +{"id": 920, "name": "Now for Reddit", "description": "Now for Reddit is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=com.phyora.apps.reddit_now&hl=en_US&gl=US"], "subreddit": ["redditnow", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 91-258, T": [[4, 21], [0, 24], [0, 28], [4, 31], [6, 31], [10, 28], [10, 24], [6, 21]]}, "center": {"10-80, 91-258, T": [5, 26]}}, +{"id": 921, "name": "Redditoria for Reddit", "description": "Redditoria for Reddit is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=com.kirkbushman.redditoria&hl=en_US&gl=US"], "subreddit": ["RedditoriaApp", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-80, 91-258, T": [[15, 21], [11, 24], [11, 28], [15, 31], [17, 31], [21, 28], [21, 24], [17, 21]]}, "center": {"10-80, 91-258, T": [16, 26]}}, +{"id": 922, "name": "ReddPlanet", "description": "ReddPlanet is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=com.reddplanet&hl=en_AU&gl=US"], "subreddit": ["ReddPlanet", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"11-80, 93-258, T": [[26, 21], [22, 24], [22, 28], [26, 31], [28, 31], [32, 28], [32, 24], [28, 21]]}, "center": {"11-80, 93-258, T": [27, 26]}}, +{"id": 923, "name": "Slide for Reddit", "description": "Slide for Reddit is a third-party Reddit app.", "links": {"website": ["https://github.com/Haptic-Apps/Slide"], "subreddit": ["slideforreddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"16-80, 95-258, T": [[37, 21], [33, 24], [33, 28], [37, 31], [39, 31], [43, 28], [43, 24], [39, 21]]}, "center": {"16-80, 95-258, T": [38, 26]}}, +{"id": 924, "name": "Relay for Reddit", "description": "Relay for Reddit is a third-party Reddit app.", "links": {"website": ["https://play.google.com/store/apps/details?id=reddit.news&hl=en_US&gl=US"], "subreddit": ["RelayForReddit", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"11-80, 91-258, T": [[48, 21], [44, 24], [44, 28], [48, 31], [50, 31], [54, 28], [54, 24], [50, 21]]}, "center": {"11-80, 91-258, T": [49, 26]}}, +{"id": 925, "name": "Sync for Reddit", "description": "Sync for Reddit is a third-party Reddit app.", "links": {"subreddit": ["redditsync", "PlaceAPI", "Save3rdPartyApps"]}, "path": {"10-81, 101-258, T": [[70, 21], [66, 24], [66, 28], [70, 31], [72, 31], [76, 28], [76, 24], [72, 21]]}, "center": {"10-81, 101-258, T": [71, 26]}}, {"id": 926, "name": "Counter-Strike 2", "description": "Counter-Strike 2 (CS2) is an upcoming first-person shooter game that is a sequel to Counter-Strike: Global Offensive (CS:GO).\\n\\nThis work was created by the community of the German/English streamer ohnePixel.", "links": {"website": ["https://www.counter-strike.net/cs2", "https://www.twitch.tv/ohnepixel"], "subreddit": ["ohnepixel"], "discord": ["ohnepixel"]}, "path": {"117-225": [[-15, -826], [-15, -628], [203, -628], [203, -826]]}, "center": {"117-225": [94, -727]}}, -{"id": 927, "name": "Patriotic Dragonite", "description": "Dragonite is a Dragon/Flying-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue). It has become a symbol of Spanish patriotism on many memes featuring it in front of a Spanish flag.\n\nSpanish streamers \"Rubius\" and \"Silithur\" helped build this artwork.", "links": {"website": ["https://twitter.com/ladamadel_lago/status/1143813408141316096", "https://bulbapedia.bulbagarden.net/wiki/Dragonite_(Pok%C3%A9mon)", "https://www.twitch.tv/rubius?twitch5=0"], "subreddit": ["esPlace", "spain"]}, "path": {"117-258": [[849, -1000], [849, -864], [1000, -864], [1000, -1000]]}, "center": {"117-258": [925, -932]}}, -{"id": 928, "name": "Brazil by Forever", "description": "This area was taken by the Brazilian streamer Forever as soon as the upper area expanded. He then proceeded to draw this cute artwork of Brazil.\nIt is Brazil's territory with multiple drawings of cultural elements of the country.\nDifferent from the another Brazil artwork that is on the lower side of the canvas, this art depicts Brazil as it appears on a map, and also features new references of things common in the country.", "links": {"website": ["https://en.wikipedia.org/wiki/Brazil"], "subreddit": ["foreverplayer", "brasil"], "discord": ["forever"]}, "path": {"117-258": [[-775, -755], [-775, -610], [-623, -610], [-623, -755]]}, "center": {"117-258": [-699, -682]}}, -{"id": 929, "name": "Flag of Chile", "description": "Chile is a country in western South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Flag_of_Chile"], "subreddit": ["chile"]}, "path": {"117-170": [[-1001, -912], [-1001, -755], [-708, -755], [-708, -912]], "171-258": [[-1500, -910], [-1500, -754], [-708, -755], [-708, -911], [-1017, -911], [-1017, -910]]}, "center": {"117-170": [-854, -833], "171-258": [-1004, -833]}}, -{"id": 930, "name": "Flag of Germany (Nordflagge)", "description": "This flag was originally a mistake from the Germans. They accidentally used the wrong coordinates because their lead designer (terz) was on the toilet.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"]}, "path": {"117-171": [[-1001, -967], [-1001, -912], [849, -912], [849, -1000], [-773, -1000], [-773, -967]], "172-258": [[-1273, -1000], [-1273, -967], [-1500, -967], [-1500, -910], [849, -910], [849, -1000]]}, "center": {"117-171": [-76, -956], "172-258": [-1140, -955]}}, -{"id": 931, "name": "Flag of Peru", "description": "Peru is a country on the west coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru", "https://en.wikipedia.org/wiki/Flag_of_Peru"], "subreddit": ["PERU"]}, "path": {"117-258": [[-708, -912], [-708, -755], [-535, -755], [-535, -911], [-535, -912]]}, "center": {"117-258": [-621, -833]}}, -{"id": 932, "name": "Ecuador", "description": "Ecuador, mitad del mundo, teleferico (meme), Pilsener, Encebollado, bandera gracias a Chile y a Capitan Gato y en Discord r/PlaceEcuador", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador", "https://en.wikipedia.org/wiki/Flag_of_Ecuador"], "subreddit": ["PlaceEcuador", "Ecuador"], "discord": ["8D4KkFWx"]}, "path": {"118-251": [[-535, -912], [-535, -873], [-387, -873], [-387, -912], [-473, -912]]}, "center": {"118-251": [-461, -892]}}, -{"id": 933, "name": "Flag of France", "description": "France is a country in Western Europe.\n\nThis flag of France, the one nearby below it, started out as the same flag. However, they got split in two by other communities, and the other flag expanded eastward once the canvas expanded.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"117-258": [[849, -842], [849, -501], [1000, -500], [1000, -842]]}, "center": {"117-258": [925, -671]}}, +{"id": 927, "name": "Patriotic Dragonite", "description": "Dragonite is a Dragon/Flying-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue). It has become a symbol of Spanish patriotism on many memes featuring it in front of a Spanish flag.\n\nSpanish streamers \"Rubius\" and \"Silithur\" helped build this artwork.", "links": {"website": ["https://twitter.com/ladamadel_lago/status/1143813408141316096", "https://bulbapedia.bulbagarden.net/wiki/Dragonite_(Pok%C3%A9mon)", "https://www.twitch.tv/rubius?twitch5=0"], "subreddit": ["esPlace", "spain"]}, "path": {"117-258, T": [[849, -1000], [849, -864], [1000, -864], [1000, -1000]]}, "center": {"117-258, T": [925, -932]}}, +{"id": 928, "name": "Brazil by Forever", "description": "This area was taken by the Brazilian streamer Forever as soon as the upper area expanded. He then proceeded to draw this cute artwork of Brazil.\nIt is Brazil's territory with multiple drawings of cultural elements of the country.\nDifferent from the another Brazil artwork that is on the lower side of the canvas, this art depicts Brazil as it appears on a map, and also features new references of things common in the country.", "links": {"website": ["https://en.wikipedia.org/wiki/Brazil"], "subreddit": ["foreverplayer", "brasil"], "discord": ["forever"]}, "path": {"117-258, T": [[-775, -755], [-775, -610], [-623, -610], [-623, -755]]}, "center": {"117-258, T": [-699, -682]}}, +{"id": 929, "name": "Flag of Chile", "description": "Chile is a country in western South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Flag_of_Chile"], "subreddit": ["chile"]}, "path": {"117-170": [[-1001, -912], [-1001, -755], [-708, -755], [-708, -912]], "171-258, T": [[-1500, -910], [-1500, -754], [-708, -755], [-708, -911], [-1017, -911], [-1017, -910]]}, "center": {"117-170": [-854, -833], "171-258, T": [-1004, -833]}}, +{"id": 930, "name": "Flag of Germany (Nordflagge)", "description": "This flag was originally a mistake from the Germans. They accidentally used the wrong coordinates because their lead designer (terz) was on the toilet.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"]}, "path": {"117-171": [[-1001, -967], [-1001, -912], [849, -912], [849, -1000], [-773, -1000], [-773, -967]], "172-258, T": [[-1273, -1000], [-1273, -967], [-1500, -967], [-1500, -910], [849, -910], [849, -1000]]}, "center": {"117-171": [-76, -956], "172-258, T": [-1140, -955]}}, +{"id": 931, "name": "Flag of Peru", "description": "Peru is a country on the west coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru", "https://en.wikipedia.org/wiki/Flag_of_Peru"], "subreddit": ["PERU"]}, "path": {"117-258, T": [[-708, -912], [-708, -755], [-535, -755], [-535, -911], [-535, -912]]}, "center": {"117-258, T": [-621, -833]}}, +{"id": 932, "name": "Ecuador", "description": "Ecuador, mitad del mundo, teleferico (meme), Pilsener, Encebollado, bandera gracias a Chile y a Capitan Gato y en Discord r/PlaceEcuador", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador", "https://en.wikipedia.org/wiki/Flag_of_Ecuador"], "subreddit": ["PlaceEcuador", "Ecuador"], "discord": ["8D4KkFWx"]}, "path": {"118-251, T": [[-535, -912], [-535, -873], [-387, -873], [-387, -912], [-473, -912]]}, "center": {"118-251, T": [-461, -892]}}, +{"id": 933, "name": "Flag of France", "description": "France is a country in Western Europe.\n\nThis flag of France, the one nearby below it, started out as the same flag. However, they got split in two by other communities, and the other flag expanded eastward once the canvas expanded.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"117-258, T": [[849, -842], [849, -501], [1000, -500], [1000, -842]]}, "center": {"117-258, T": [925, -671]}}, {"id": 934, "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"], "discord": ["placearg"]}, "path": {"142-167": [[447, -797], [447, -676], [849, -676], [849, -797]], "117-141, 168-188": [[203, -797], [203, -676], [1000, -676], [1000, -797]]}, "center": {"142-167": [648, -736], "117-141, 168-188": [602, -736]}}, {"id": 935, "name": "Flag of Portugal", "description": "Portugal is a country in Southwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal", "https://en.wikipedia.org/wiki/Flag_of_Portugal"], "discord": ["TugaPlace"]}, "path": {"117-139": [[306, -676], [306, -527], [681, -527], [681, -676]]}, "center": {"117-139": [494, -601]}}, -{"id": 936, "name": "Flag of Germany (Mittelflagge)", "description": "This Flag was claimed by the nightwatch in a cooperation with the streamer Stegi at 1am.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany", "https://www.twitch.tv/stegi"], "subreddit": ["placeDE"], "discord": ["placede"]}, "path": {"117-170": [[-1001, -611], [-1001, -550], [681, -550], [681, -611], [286, -611], [286, -591], [203, -591], [203, -611]], "171-258": [[-1500, -610], [-1500, -551], [681, -551], [681, -610], [286, -611], [286, -591], [203, -591], [203, -611]]}, "center": {"117-170": [-160, -580], "171-258": [150, -581]}}, -{"id": 937, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe. This flag is used both by the Kingdom of the Netherlands and by its constituent nation, the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"117-140": [[-1001, -551], [-1001, -520], [-582, -520], [-582, -551]], "141-258": [[-814, -551], [-826, -547], [-835, -541], [-835, -513], [-831, -513], [-825, -517], [-814, -520], [-719, -520], [-719, -551], [-670, -551], [-670, -520], [-582, -520], [-582, -551]]}, "center": {"117-140": [-791, -535], "141-258": [-600, -535]}}, +{"id": 936, "name": "Flag of Germany (Mittelflagge)", "description": "This Flag was claimed by the nightwatch in a cooperation with the streamer Stegi at 1am.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany", "https://www.twitch.tv/stegi"], "subreddit": ["placeDE"], "discord": ["placede"]}, "path": {"117-170": [[-1001, -611], [-1001, -550], [681, -550], [681, -611], [286, -611], [286, -591], [203, -591], [203, -611]], "171-258, T": [[-1500, -610], [-1500, -551], [681, -551], [681, -610], [286, -611], [286, -591], [203, -591], [203, -611]]}, "center": {"117-170": [-160, -580], "171-258, T": [150, -581]}}, +{"id": 937, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe. This flag is used both by the Kingdom of the Netherlands and by its constituent nation, the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"117-140": [[-1001, -551], [-1001, -520], [-582, -520], [-582, -551]], "141-258, T": [[-814, -551], [-826, -547], [-835, -541], [-835, -513], [-831, -513], [-825, -517], [-814, -520], [-719, -520], [-719, -551], [-670, -551], [-670, -520], [-582, -520], [-582, -551]]}, "center": {"117-140": [-791, -535], "141-258, T": [-600, -535]}}, {"id": 938, "name": "Lightning McQueen", "description": "Lightning McQueen is the main character of the Disney/Pixar movie franchise Cars. Kachow!", "links": {"website": ["https://en.wikipedia.org/wiki/Lightning_McQueen"]}, "path": {"121-147": [[203, -912], [203, -797], [392, -797], [392, -912]]}, "center": {"121-147": [298, -854]}}, -{"id": 939, "name": "Flag of Bolivia", "description": "Bolivia is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Flag_of_Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"117-258": [[604, -864], [604, -797], [849, -797], [849, -864]]}, "center": {"117-258": [727, -830]}}, +{"id": 939, "name": "Flag of Bolivia", "description": "Bolivia is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Flag_of_Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"117-258, T": [[604, -864], [604, -797], [849, -797], [849, -864]]}, "center": {"117-258, T": [727, -830]}}, {"id": 940, "name": "Connection lost", "description": "The \"Connection lost... Please wait - attempting to reestablish.\" message originates from RuneScape, a popular free massively multiplayer online role-playing game (MMORPG). This message appears in the top-left corner of the screen when the player's network connection to the RuneScape servers is lost.", "links": {"website": ["https://oldschool.runescape.com/", "https://en.wikipedia.org/wiki/Old_School_RuneScape"], "subreddit": ["2007scape"]}, "path": {"118-181": [[-1001, -1000], [-1001, -966], [-772, -966], [-772, -1000]]}, "center": {"118-181": [-886, -983]}}, {"id": 941, "name": "Malvinas/Falkland Islands", "description": "The Falkland/Malvinas Islands is an archipelago of islands off the coast of Argentina. They are a British overseas territory, but are also claimed by Argentina. They were the focal point of the Malvinas/Falklands War in 1982, and the territory continues to be disputed between the United Kingdom and Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Falkland_Islands", "https://en.wikipedia.org/wiki/Falkland_Islands_sovereignty_dispute"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"118-143": [[698, -746], [696, -743], [696, -739], [685, -739], [685, -740], [680, -740], [680, -739], [677, -739], [677, -733], [680, -729], [684, -729], [684, -719], [677, -719], [676, -718], [669, -718], [666, -715], [666, -706], [668, -706], [668, -695], [670, -692], [673, -689], [675, -689], [678, -687], [683, -687], [689, -689], [693, -692], [702, -692], [702, -690], [707, -686], [714, -686], [714, -684], [716, -681], [723, -681], [723, -685], [729, -691], [732, -691], [733, -692], [738, -692], [745, -697], [745, -700], [753, -704], [753, -710], [760, -710], [768, -715], [765, -719], [765, -731], [754, -736], [753, -735], [746, -735], [741, -741], [738, -741], [738, -743], [735, -743], [734, -742], [729, -742], [726, -739], [712, -739], [705, -746]], "104-112, 77-89": [[797, -172], [792, -169], [792, -164], [791, -163], [791, -158], [789, -158], [785, -154], [785, -151], [787, -149], [787, -147], [794, -141], [813, -141], [813, -139], [816, -137], [819, -137], [826, -142], [832, -148], [832, -150], [833, -150], [834, -151], [840, -151], [846, -154], [848, -156], [848, -157], [846, -161], [846, -165], [844, -167], [841, -167], [835, -172], [835, -174], [833, -176], [829, -176], [824, -172]]}, "center": {"118-143": [717, -713], "104-112, 77-89": [817, -156]}}, {"id": 942, "name": "Mafalda", "description": "Mafalda is an Argentinian comic strip written and drawn by cartoonist Quino. It has been translated into 20 languages.", "links": {"website": ["https://en.wikipedia.org/wiki/Mafalda"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"120-148": [[769, -713], [765, -711], [765, -708], [762, -705], [757, -700], [757, -692], [758, -691], [758, -681], [765, -676], [781, -676], [788, -681], [788, -691], [790, -693], [790, -700], [783, -708], [781, -713]]}, "center": {"120-148": [773, -695]}}, -{"id": 943, "name": "Lionel Messi", "description": "Lionel Messi (#10) is an Argentine association football (soccer) player, often considered one of the greatest football players of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Lionel_Messi"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"117-156": [[595, -794], [580, -777], [574, -756], [574, -753], [582, -739], [584, -739], [585, -737], [585, -720], [554, -693], [539, -677], [539, -676], [672, -676], [672, -677], [642, -704], [630, -709], [627, -712], [638, -726], [639, -730], [639, -743], [640, -744], [640, -763], [638, -763], [639, -766], [784, -766], [784, -770], [838, -770], [838, -776], [831, -776], [831, -784], [634, -784], [634, -789], [628, -794]], "157-188": [[704, -796], [692, -792], [676, -778], [674, -767], [674, -738], [681, -731], [684, -731], [684, -713], [669, -705], [644, -689], [633, -681], [632, -679], [632, -676], [773, -676], [773, -679], [762, -691], [753, -699], [727, -710], [727, -716], [728, -724], [732, -729], [732, -736], [733, -737], [733, -743], [731, -749], [731, -770], [724, -786], [718, -794], [713, -795]], "209-258": [[1262, 900], [1237, 916], [1233, 931], [1233, 956], [1235, 961], [1243, 966], [1243, 983], [1240, 985], [1227, 992], [1218, 999], [1218, 1000], [1314, 1000], [1314, 999], [1309, 994], [1288, 986], [1286, 984], [1286, 976], [1292, 967], [1292, 951], [1290, 948], [1290, 943], [1291, 942], [1291, 925], [1288, 921], [1288, 917], [1283, 907], [1280, 903], [1270, 900]]}, "center": {"117-156": [607, -759], "157-188": [703, -753], "209-258": [1262, 935]}}, +{"id": 943, "name": "Lionel Messi", "description": "Lionel Messi (#10) is an Argentine association football (soccer) player, often considered one of the greatest football players of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Lionel_Messi"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"117-156": [[595, -794], [580, -777], [574, -756], [574, -753], [582, -739], [584, -739], [585, -737], [585, -720], [554, -693], [539, -677], [539, -676], [672, -676], [672, -677], [642, -704], [630, -709], [627, -712], [638, -726], [639, -730], [639, -743], [640, -744], [640, -763], [638, -763], [639, -766], [784, -766], [784, -770], [838, -770], [838, -776], [831, -776], [831, -784], [634, -784], [634, -789], [628, -794]], "157-188": [[704, -796], [692, -792], [676, -778], [674, -767], [674, -738], [681, -731], [684, -731], [684, -713], [669, -705], [644, -689], [633, -681], [632, -679], [632, -676], [773, -676], [773, -679], [762, -691], [753, -699], [727, -710], [727, -716], [728, -724], [732, -729], [732, -736], [733, -737], [733, -743], [731, -749], [731, -770], [724, -786], [718, -794], [713, -795]], "209-258, T": [[1262, 900], [1237, 916], [1233, 931], [1233, 956], [1235, 961], [1243, 966], [1243, 983], [1240, 985], [1227, 992], [1218, 999], [1218, 1000], [1314, 1000], [1314, 999], [1309, 994], [1288, 986], [1286, 984], [1286, 976], [1292, 967], [1292, 951], [1290, 948], [1290, 943], [1291, 942], [1291, 925], [1288, 921], [1288, 917], [1283, 907], [1280, 903], [1270, 900]]}, "center": {"117-156": [607, -759], "157-188": [703, -753], "209-258, T": [1262, 935]}}, {"id": 944, "name": "Mate", "description": "Mate is a caffeine-rich infused drink commonly seen in South American tradition, most prominently in Argentina and Uruguay. It is traditionally consumed from a dried and hollowed calabash gourd using a special straw known as a bombilla.", "links": {"website": ["https://en.wikipedia.org/wiki/Mate_(drink)"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"120-197": [[462, -743], [462, -739], [468, -727], [468, -724], [463, -722], [460, -718], [460, -716], [456, -712], [454, -708], [454, -700], [460, -691], [460, -688], [456, -682], [456, -681], [460, -681], [464, -684], [473, -684], [488, -681], [489, -680], [492, -680], [494, -682], [489, -686], [489, -690], [494, -697], [494, -699], [493, -700], [493, -708], [489, -715], [489, -718], [484, -723], [481, -723], [480, -724], [475, -724], [475, -727], [473, -732], [467, -743]]}, "center": {"120-197": [474, -703]}}, {"id": 945, "name": "Argentina", "description": "The country of Argentina as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"119-141": [[408, -796], [389, -779], [350, -752], [285, -689], [283, -689], [281, -687], [281, -685], [277, -683], [271, -683], [271, -676], [296, -676], [296, -679], [299, -679], [320, -691], [327, -691], [332, -696], [340, -699], [342, -701], [354, -701], [357, -704], [357, -707], [359, -710], [364, -710], [369, -713], [385, -713], [406, -708], [409, -708], [417, -715], [422, -721], [422, -724], [427, -730], [425, -732], [425, -735], [427, -738], [433, -743], [434, -744], [442, -744], [443, -745], [462, -745], [469, -750], [469, -756], [463, -761], [462, -761], [457, -757], [450, -757], [449, -756], [442, -756], [440, -759], [438, -759], [438, -761], [442, -764], [442, -765], [429, -781], [426, -781], [417, -787]]}, "center": {"119-141": [394, -744]}}, {"id": 946, "name": "Coca-Cola", "description": "Coca-Cola is an American soft drink. In Argentina, it is commonly mixed with Fernet-Branca to make fernet con coca.", "links": {"website": ["https://www.coca-cola.com/", "https://en.wikipedia.org/wiki/Coca-Cola"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"121-141": [[443, -714], [441, -712], [441, -705], [440, -704], [440, -683], [442, -681], [449, -681], [451, -684], [451, -704], [450, -705], [450, -712], [448, -714]]}, "center": {"121-141": [446, -697]}}, {"id": 947, "name": "Fernet con coca", "description": "Fernet con coca is a common drink in Argentina. It consists of the Italian beverage Fernet-Branca mixed with Coca-Cola, usually in a 30-70 proportion.", "links": {"website": ["https://en.wikipedia.org/wiki/Fernet_con_coca"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"121-142": [[427, -697], [427, -688], [428, -688], [428, -682], [437, -682], [437, -688], [438, -688], [438, -697]]}, "center": {"121-142": [433, -691]}}, {"id": 948, "name": "Fernet-Branca", "description": "Fernet-Branca is an alcoholic beverage from Italy that is popular in Argentina. It can be mixed with Coca-Cola to make fernet con coca.", "links": {"website": ["https://www.fernetbranca.com/", "https://en.wikipedia.org/wiki/Fernet-Branca"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"121-142": [[417, -714], [415, -711], [415, -706], [413, -703], [413, -683], [415, -681], [422, -681], [424, -683], [424, -703], [422, -706], [422, -711], [420, -714]]}, "center": {"121-142": [419, -696]}}, -{"id": 949, "name": "Moai", "description": "Moai are iconic statues from the Chilean-owned Easter Island (also called Rapa Nui or Isla de Pascua). They were built by the Rapa Nui people in the 14th to 16th centuries. An emoji of a moai (🗿) has become an Internet meme recently.", "links": {"website": ["https://en.wikipedia.org/wiki/Moai"], "subreddit": ["chile"]}, "path": {"121-258": [[-748, -800], [-752, -795], [-752, -788], [-754, -785], [-754, -778], [-756, -774], [-756, -766], [-752, -763], [-741, -763], [-732, -767], [-729, -773], [-720, -778], [-720, -782], [-719, -782], [-714, -787], [-712, -791], [-715, -795], [-712, -799], [-715, -806], [-719, -810], [-720, -810], [-725, -806], [-725, -796], [-726, -795], [-726, -793], [-723, -790], [-722, -790], [-722, -785], [-724, -785], [-727, -783], [-727, -786], [-735, -800]]}, "center": {"121-258": [-741, -781]}}, +{"id": 949, "name": "Moai", "description": "Moai are iconic statues from the Chilean-owned Easter Island (also called Rapa Nui or Isla de Pascua). They were built by the Rapa Nui people in the 14th to 16th centuries. An emoji of a moai (🗿) has become an Internet meme recently.", "links": {"website": ["https://en.wikipedia.org/wiki/Moai"], "subreddit": ["chile"]}, "path": {"121-258, T": [[-748, -800], [-752, -795], [-752, -788], [-754, -785], [-754, -778], [-756, -774], [-756, -766], [-752, -763], [-741, -763], [-732, -767], [-729, -773], [-720, -778], [-720, -782], [-719, -782], [-714, -787], [-712, -791], [-715, -795], [-712, -799], [-715, -806], [-719, -810], [-720, -810], [-725, -806], [-725, -796], [-726, -795], [-726, -793], [-723, -790], [-722, -790], [-722, -785], [-724, -785], [-727, -783], [-727, -786], [-735, -800]]}, "center": {"121-258, T": [-741, -781]}}, {"id": 950, "name": "Flag of Uruguay", "description": "Uruguay is a country in the south part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Flag_of_Uruguay"], "subreddit": ["uruguay"]}, "path": {"118-142": [[62, -549], [62, -501], [132, -501], [132, -549]]}, "center": {"118-142": [97, -525]}}, -{"id": 951, "name": "Applejack", "description": "Applejack is one of the main ponies (Mane 6) in My Little Pony: Friendship is Magic, Generation 4 of My Little Pony. She represents the element of honesty.\n\nIn this art, Applejack is wearing the trademark straw hat of Luffy from One Piece.", "links": {"website": ["https://mlp.fandom.com/wiki/Applejack"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-258": [[-451, -636], [-451, -610], [-425, -610], [-425, -636]]}, "center": {"117-258": [-438, -623]}}, -{"id": 952, "name": "Rarity", "description": "Rarity is one of the main ponies (Mane 6) in My Little Pony: Friendship is Magic, Generation 4 of My Little Pony. She represents the element of generosity.", "links": {"website": ["https://mlp.fandom.com/wiki/Rarity"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-258": [[-476, -636], [-476, -610], [-450, -610], [-450, -636]]}, "center": {"117-258": [-463, -623]}}, -{"id": 953, "name": "Pinkie Pie", "description": "Pinkie Pie is an Earth Pony and one of the six main characters from My Little Pony: Friendship is Magic (also known as the \"Mane 6\"). She represents the element of laughter, as a fun-loving pony who often hosts parties for her friends and other ponies.", "links": {"website": ["https://mlp.fandom.com/wiki/Pinkie_Pie"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-258": [[-501, -636], [-501, -610], [-475, -610], [-475, -636]]}, "center": {"117-258": [-488, -623]}}, -{"id": 954, "name": "Fluttershy", "description": "Fluttershy is one of the main ponies (Mane 6) in My Little Pony: Friendship is Magic, Generation 4 of My Little Pony. She is a timid and kind-hearted pegasus who cares for animals and her friends, and represents the element of kindness.\n\nIn this art, Fluttershy is wearing the hoodie that she wears in ANTONYMPH, a fan-made music video by Vylet Pony.", "links": {"website": ["https://mlp.fandom.com/wiki/Fluttershy", "https://www.youtube.com/watch?v=CNPdO5TZ1DQ"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-119": [[-476, -661], [-476, -635], [-450, -635], [-450, -661]], "120-258": [[-551, -636], [-551, -610], [-525, -610], [-525, -636]]}, "center": {"117-119": [-463, -648], "120-258": [-538, -623]}}, -{"id": 955, "name": "Rainbow Dash", "description": "Rainbow Dash is one of the main ponies (Mane 6) in My Little Pony: Friendship is Magic, Generation 4 of My Little Pony. She represents the element of loyalty.", "links": {"website": ["https://mlp.fandom.com/wiki/Rainbow_Dash"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-119": [[-451, -661], [-451, -635], [-425, -635], [-425, -661]], "1-64, 73-98": [[-78, 206], [-81, 209], [-81, 212], [-83, 215], [-92, 224], [-92, 227], [-78, 241], [-78, 250], [-35, 250], [-32, 248], [-32, 245], [-35, 241], [-41, 237], [-44, 237], [-45, 238], [-50, 238], [-56, 242], [-57, 242], [-58, 241], [-58, 239], [-54, 224], [-54, 218], [-53, 217], [-53, 213], [-55, 209], [-57, 207], [-58, 207], [-59, 209], [-62, 209], [-69, 205], [-74, 205], [-75, 206]], "120-258": [[-526, -636], [-526, -610], [-500, -610], [-500, -636]]}, "center": {"117-119": [-438, -648], "1-64, 73-98": [-71, 225], "120-258": [-513, -623]}}, +{"id": 951, "name": "Applejack", "description": "Applejack is one of the main ponies (Mane 6) in My Little Pony: Friendship is Magic, Generation 4 of My Little Pony. She represents the element of honesty.\n\nIn this art, Applejack is wearing the trademark straw hat of Luffy from One Piece.", "links": {"website": ["https://mlp.fandom.com/wiki/Applejack"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-258, T": [[-451, -636], [-451, -610], [-425, -610], [-425, -636]]}, "center": {"117-258, T": [-438, -623]}}, +{"id": 952, "name": "Rarity", "description": "Rarity is one of the main ponies (Mane 6) in My Little Pony: Friendship is Magic, Generation 4 of My Little Pony. She represents the element of generosity.", "links": {"website": ["https://mlp.fandom.com/wiki/Rarity"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-258, T": [[-476, -636], [-476, -610], [-450, -610], [-450, -636]]}, "center": {"117-258, T": [-463, -623]}}, +{"id": 953, "name": "Pinkie Pie", "description": "Pinkie Pie is an Earth Pony and one of the six main characters from My Little Pony: Friendship is Magic (also known as the \"Mane 6\"). She represents the element of laughter, as a fun-loving pony who often hosts parties for her friends and other ponies.", "links": {"website": ["https://mlp.fandom.com/wiki/Pinkie_Pie"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-258, T": [[-501, -636], [-501, -610], [-475, -610], [-475, -636]]}, "center": {"117-258, T": [-488, -623]}}, +{"id": 954, "name": "Fluttershy", "description": "Fluttershy is one of the main ponies (Mane 6) in My Little Pony: Friendship is Magic, Generation 4 of My Little Pony. She is a timid and kind-hearted pegasus who cares for animals and her friends, and represents the element of kindness.\n\nIn this art, Fluttershy is wearing the hoodie that she wears in ANTONYMPH, a fan-made music video by Vylet Pony.", "links": {"website": ["https://mlp.fandom.com/wiki/Fluttershy", "https://www.youtube.com/watch?v=CNPdO5TZ1DQ"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-119": [[-476, -661], [-476, -635], [-450, -635], [-450, -661]], "120-258, T": [[-551, -636], [-551, -610], [-525, -610], [-525, -636]]}, "center": {"117-119": [-463, -648], "120-258, T": [-538, -623]}}, +{"id": 955, "name": "Rainbow Dash", "description": "Rainbow Dash is one of the main ponies (Mane 6) in My Little Pony: Friendship is Magic, Generation 4 of My Little Pony. She represents the element of loyalty.", "links": {"website": ["https://mlp.fandom.com/wiki/Rainbow_Dash"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"117-119": [[-451, -661], [-451, -635], [-425, -635], [-425, -661]], "1-64, 73-98": [[-78, 206], [-81, 209], [-81, 212], [-83, 215], [-92, 224], [-92, 227], [-78, 241], [-78, 250], [-35, 250], [-32, 248], [-32, 245], [-35, 241], [-41, 237], [-44, 237], [-45, 238], [-50, 238], [-56, 242], [-57, 242], [-58, 241], [-58, 239], [-54, 224], [-54, 218], [-53, 217], [-53, 213], [-55, 209], [-57, 207], [-58, 207], [-59, 209], [-62, 209], [-69, 205], [-74, 205], [-75, 206]], "120-258, T": [[-526, -636], [-526, -610], [-500, -610], [-500, -636]]}, "center": {"117-119": [-438, -648], "1-64, 73-98": [-71, 225], "120-258, T": [-513, -623]}}, {"id": 956, "name": "M1 Abrams", "description": "The M1 Abrams is an American tank currently in service with the American military. This tank has a flag of Ukraine on it to symbolize the recent donation of M1 Abrams tanks to Ukraine to oppose the Russian invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/M1_Abrams"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"121-136": [[-186, 142], [-186, 149], [-178, 149], [-178, 153], [-180, 153], [-180, 156], [-183, 156], [-185, 158], [-185, 160], [-180, 164], [-158, 164], [-154, 160], [-154, 156], [-151, 156], [-147, 160], [-145, 160], [-145, 158], [-142, 158], [-141, 157], [-136, 157], [-136, 153], [-140, 153], [-144, 149], [-146, 151], [-150, 151], [-150, 153], [-161, 153], [-161, 151], [-169, 151], [-169, 149], [-171, 149], [-171, 151], [-176, 151], [-176, 142]], "150-159": [[-180, 152], [-180, 156], [-183, 156], [-185, 158], [-185, 161], [-183, 161], [-183, 162], [-181, 164], [-158, 164], [-156, 162], [-156, 153], [-165, 153], [-165, 152]]}, "center": {"121-136": [-170, 157], "150-159": [-170, 158]}}, -{"id": 957, "name": "Apollo 11", "description": "Apollo 11 was an American space mission, and the first space mission to land humans on the Moon. This art depicts an iconic photograph of astronaut Buzz Aldrin planting an American flag on the Moon's surface.", "links": {"website": ["https://en.wikipedia.org/wiki/Apollo_11"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"116-258": [[-58, 175], [-56, 175], [-56, 174], [-54, 174], [-54, 173], [-53, 173], [-53, 172], [-52, 172], [-52, 171], [-51, 171], [-51, 169], [-57, 169], [-57, 161], [-44, 161], [-44, 175], [-30, 175], [-30, 174], [-31, 174], [-31, 173], [-32, 173], [-34, 173], [-34, 172], [-35, 172], [-35, 171], [-37, 171], [-37, 169], [-42, 169], [-44, 175]]}, "center": {"116-258": [-48, 165]}}, -{"id": 958, "name": "M142 HIMARS", "description": "The M142 HIMARS (High Mobility Artillery Rocket System) is a multiple rocket launcher developed by the United States. In response to the Russian invasion of Ukraine, the United States donated several HIMARS to Ukraine, which have been used extensively to aid the Ukrainian war effort.", "links": {"website": ["https://en.wikipedia.org/wiki/M142_HIMARS"], "subreddit": ["AmericanFlagInPlace", "placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"115-258": [[-18, -112], [-43, -99], [-43, -98], [-42, -97], [-42, -95], [-39, -92], [-37, -92], [-36, -91], [-36, -88], [-39, -85], [-39, -82], [-36, -79], [21, -79], [24, -82], [27, -89], [27, -99], [21, -105], [15, -105], [15, -108], [12, -113], [1, -113], [1, -112]]}, "center": {"115-258": [-14, -96]}}, -{"id": 959, "name": "Coat of arms of Solothurn", "description": "Solothurn is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Solothurn", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258": [[-518, 184], [-507, 184], [-507, 193], [-510, 196], [-515, 196], [-518, 193]]}, "center": {"95-258": [-512, 190]}}, -{"id": 960, "name": "Coat of arms of Nidwalden", "description": "Nidwalden or Nidwald is a canton in Switzerland", "links": {"website": ["https://en.wikipedia.org/wiki/Nidwalden", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"93-258": [[-562, 184], [-551, 184], [-551, 193], [-554, 196], [-559, 196], [-562, 193]]}, "center": {"93-258": [-556, 190]}}, -{"id": 961, "name": "Coat of arms of Obwalden", "description": "Obwalden is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Obwalden", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"92-258": [[-551, 184], [-540, 184], [-540, 193], [-543, 196], [-548, 196], [-551, 193]]}, "center": {"92-258": [-545, 190]}}, -{"id": 962, "name": "Coat of arms of Schwyz", "description": "Schwyz is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Schwyz", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258": [[-529, 184], [-518, 184], [-518, 193], [-521, 196], [-526, 196], [-529, 193]]}, "center": {"95-258": [-523, 190]}}, -{"id": 963, "name": "Coat of arms of Lucerne", "description": "Lucerne is a canton in central Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Lucerne", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"92-258": [[-581, 196], [-576, 196], [-573, 193], [-573, 184], [-584, 184], [-584, 193]]}, "center": {"92-258": [-578, 190]}}, -{"id": 964, "name": "Coat of arms of Schaffhausen", "description": "Schaffhausen is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Schaffhausen", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"93-258": [[-540, 184], [-529, 184], [-529, 193], [-532, 196], [-537, 196], [-540, 193]]}, "center": {"93-258": [-534, 190]}}, -{"id": 966, "name": "Coat of arms of Neuchâtel", "description": "Neuchâtel is a canton in western Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Neuch%C3%A2tel", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"92-258": [[-573, 193], [-573, 184], [-562, 184], [-562, 193], [-565, 196], [-570, 196]]}, "center": {"92-258": [-567, 190]}}, -{"id": 967, "name": "S.T.A.L.K.E.R", "description": "S.T.A.L.K.E.R is a video game franchise set in Chernobyl, Ukraine, the site of one of the largest nuclear disasters in history. The game is developed by Ukrainian developer GSC Game World.", "links": {"website": ["https://gsc-game.com/", "https://en.wikipedia.org/wiki/S.T.A.L.K.E.R."], "subreddit": ["placeukraine", "ukraine", "stalker"], "discord": ["fMf7RJBMw6", "stalker-gamma"]}, "path": {"79-258": [[57, -129], [57, -90], [90, -90], [90, -129]]}, "center": {"79-258": [74, -109]}}, -{"id": 968, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America. Its flag features Mexico's coat of arms, depicting a golden eagle eating a snake on a cactus. This symbol is based on a legend from the ancient Aztec people, signifying the place where the Aztecs should build their empire. This spot was contested by CSGO, and throughout the canvas history you can see Mexico and CSGO battling it out.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"122-258": [[2, -912], [2, -709], [18, -709], [18, -694], [53, -694], [53, -674], [63, -674], [63, -649], [63, -629], [134, -628], [134, -796], [162, -796], [162, -797], [163, -797], [163, -798], [164, -798], [164, -799], [165, -799], [165, -798], [166, -798], [166, -797], [168, -797], [168, -798], [169, -798], [169, -799], [170, -799], [170, -798], [171, -798], [171, -797], [172, -797], [172, -796], [203, -796], [203, -912]]}, "center": {"122-258": [75, -839]}}, -{"id": 969, "name": "Flag of Colombia", "description": "Colombia is a country on the northwest coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"123-147": [[-387, -912], [-387, -816], [-64, -816], [-64, -912]], "148-258": [[-388, -873], [-388, -816], [-262, -816], [-262, -855], [-286, -855], [-286, -873]]}, "center": {"123-147": [-225, -864], "148-258": [-325, -844]}}, -{"id": 970, "name": "Flag of Paraguay", "description": "Paraguay is a country in central South America. The back of its flag differs from the front, so both sides are shown here.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguay", "https://en.wikipedia.org/wiki/Flag_of_Paraguay"], "subreddit": ["Paraguay"]}, "path": {"117-122": [[-52, -912], [-52, -869], [112, -869], [112, -912]], "123-258": [[-64, -912], [-64, -826], [2, -826], [2, -912]]}, "center": {"117-122": [30, -890], "123-258": [-31, -869]}}, -{"id": 971, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"122-258": [[-535, -873], [-535, -828], [-475, -828], [-475, -873]]}, "center": {"122-258": [-505, -850]}}, -{"id": 972, "name": "Flag of Panama", "description": "Panama is a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Panama", "https://en.wikipedia.org/wiki/Flag_of_Panama"], "subreddit": ["Panama"]}, "path": {"123-258": [[-475, -813], [-475, -792], [-441, -792], [-441, -813]]}, "center": {"123-258": [-458, -802]}}, -{"id": 973, "name": "United States", "description": "The contiguous United States as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/United_States"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"122-258": [[-121, 103], [-122, 104], [-122, 115], [-123, 116], [-123, 119], [-122, 120], [-123, 121], [-123, 126], [-122, 127], [-122, 128], [-121, 130], [-120, 131], [-120, 132], [-118, 134], [-117, 134], [-116, 135], [-116, 136], [-114, 138], [-113, 138], [-110, 141], [-109, 141], [-108, 142], [-107, 142], [-105, 144], [-103, 144], [-102, 145], [-99, 145], [-98, 146], [-96, 146], [-93, 149], [-91, 147], [-87, 151], [-87, 152], [-85, 154], [-82, 154], [-81, 153], [-81, 151], [-80, 150], [-79, 150], [-77, 148], [-70, 148], [-69, 147], [-67, 146], [-58, 146], [-58, 147], [-57, 148], [-57, 149], [-55, 151], [-53, 151], [-52, 150], [-52, 145], [-53, 144], [-53, 143], [-54, 142], [-54, 140], [-53, 139], [-53, 138], [-52, 137], [-51, 137], [-49, 135], [-49, 134], [-48, 134], [-47, 133], [-48, 132], [-48, 131], [-46, 129], [-47, 127], [-46, 126], [-47, 125], [-47, 124], [-47, 123], [-46, 122], [-46, 121], [-45, 120], [-44, 121], [-43, 121], [-42, 120], [-43, 119], [-44, 119], [-44, 118], [-41, 118], [-40, 117], [-39, 117], [-38, 116], [-38, 115], [-39, 114], [-40, 115], [-41, 114], [-40, 113], [-40, 112], [-37, 109], [-38, 108], [-38, 107], [-39, 106], [-39, 104], [-40, 103], [-42, 103], [-44, 105], [-44, 106], [-45, 107], [-45, 108], [-46, 109], [-47, 109], [-48, 110], [-50, 110], [-53, 113], [-53, 114], [-54, 115], [-55, 116], [-55, 117], [-58, 120], [-59, 120], [-59, 117], [-58, 116], [-60, 114], [-61, 115], [-61, 114], [-62, 113], [-63, 112], [-64, 112], [-65, 113], [-66, 113], [-66, 112], [-62, 112], [-61, 111], [-62, 110], [-63, 109], [-66, 109], [-67, 108], [-69, 107], [-70, 107], [-71, 106], [-75, 106], [-76, 105], [-77, 106], [-78, 106], [-79, 105], [-81, 105], [-82, 106], [-83, 105], [-98, 105], [-99, 104], [-104, 104], [-106, 103]]}, "center": {"122-258": [-82, 128]}}, -{"id": 974, "name": "Coat of arms of Vaud", "description": "Vaud is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Vaud", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-98": [[-529, 197], [-518, 197], [-518, 206], [-521, 209], [-526, 209], [-529, 206]], "99-258": [[-518, 249], [-507, 249], [-507, 258], [-509, 260], [-516, 260], [-518, 258]]}, "center": {"95-98": [-523, 203], "99-258": [-512, 255]}}, -{"id": 975, "name": "Coat of arms of Ticino", "description": "Ticino is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Ticino", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"96-258": [[-518, 223], [-507, 223], [-507, 232], [-510, 235], [-515, 235], [-518, 232]]}, "center": {"96-258": [-512, 229]}}, -{"id": 976, "name": "Coat of arms of Fribourg", "description": "Fribourg is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Fribourg", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258": [[-584, 210], [-573, 210], [-573, 219], [-576, 222], [-581, 222], [-584, 219]]}, "center": {"95-258": [-578, 216]}}, -{"id": 977, "name": "Coat of arms of Appenzell Ausserrhoden", "description": "Appenzell Ausserrhoden is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Appenzell_Ausserrhoden", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"100-258": [[-573, 249], [-562, 249], [-562, 258], [-565, 261], [-570, 261], [-573, 258]]}, "center": {"100-258": [-567, 255]}}, -{"id": 978, "name": "Coat of arms of Glarus", "description": "Glarus is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Glarus", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258": [[-573, 197], [-562, 197], [-562, 206], [-565, 209], [-570, 209], [-573, 206]]}, "center": {"95-258": [-567, 203]}}, -{"id": 979, "name": "Coat of arms of Basel-Stadt", "description": "Basel-Stadt is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Basel-Stadt", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"93-258": [[-584, 197], [-573, 197], [-573, 206], [-576, 209], [-581, 209], [-584, 206]]}, "center": {"93-258": [-578, 203]}}, -{"id": 980, "name": "Coat of arms of Aargau", "description": "Aargau is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Aargau", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258": [[-540, 249], [-540, 258], [-543, 261], [-548, 261], [-551, 258], [-551, 249]]}, "center": {"98-258": [-545, 255]}}, +{"id": 957, "name": "Apollo 11", "description": "Apollo 11 was an American space mission, and the first space mission to land humans on the Moon. This art depicts an iconic photograph of astronaut Buzz Aldrin planting an American flag on the Moon's surface.", "links": {"website": ["https://en.wikipedia.org/wiki/Apollo_11"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"116-258, T": [[-58, 175], [-56, 175], [-56, 174], [-54, 174], [-54, 173], [-53, 173], [-53, 172], [-52, 172], [-52, 171], [-51, 171], [-51, 169], [-57, 169], [-57, 161], [-44, 161], [-44, 175], [-30, 175], [-30, 174], [-31, 174], [-31, 173], [-32, 173], [-34, 173], [-34, 172], [-35, 172], [-35, 171], [-37, 171], [-37, 169], [-42, 169], [-44, 175]]}, "center": {"116-258, T": [-48, 165]}}, +{"id": 958, "name": "M142 HIMARS", "description": "The M142 HIMARS (High Mobility Artillery Rocket System) is a multiple rocket launcher developed by the United States. In response to the Russian invasion of Ukraine, the United States donated several HIMARS to Ukraine, which have been used extensively to aid the Ukrainian war effort.", "links": {"website": ["https://en.wikipedia.org/wiki/M142_HIMARS"], "subreddit": ["AmericanFlagInPlace", "placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"115-258, T": [[-18, -112], [-43, -99], [-43, -98], [-42, -97], [-42, -95], [-39, -92], [-37, -92], [-36, -91], [-36, -88], [-39, -85], [-39, -82], [-36, -79], [21, -79], [24, -82], [27, -89], [27, -99], [21, -105], [15, -105], [15, -108], [12, -113], [1, -113], [1, -112]]}, "center": {"115-258, T": [-14, -96]}}, +{"id": 959, "name": "Coat of arms of Solothurn", "description": "Solothurn is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Solothurn", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258, T": [[-518, 184], [-507, 184], [-507, 193], [-510, 196], [-515, 196], [-518, 193]]}, "center": {"95-258, T": [-512, 190]}}, +{"id": 960, "name": "Coat of arms of Nidwalden", "description": "Nidwalden or Nidwald is a canton in Switzerland", "links": {"website": ["https://en.wikipedia.org/wiki/Nidwalden", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"93-258, T": [[-562, 184], [-551, 184], [-551, 193], [-554, 196], [-559, 196], [-562, 193]]}, "center": {"93-258, T": [-556, 190]}}, +{"id": 961, "name": "Coat of arms of Obwalden", "description": "Obwalden is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Obwalden", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"92-258, T": [[-551, 184], [-540, 184], [-540, 193], [-543, 196], [-548, 196], [-551, 193]]}, "center": {"92-258, T": [-545, 190]}}, +{"id": 962, "name": "Coat of arms of Schwyz", "description": "Schwyz is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Schwyz", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258, T": [[-529, 184], [-518, 184], [-518, 193], [-521, 196], [-526, 196], [-529, 193]]}, "center": {"95-258, T": [-523, 190]}}, +{"id": 963, "name": "Coat of arms of Lucerne", "description": "Lucerne is a canton in central Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Lucerne", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"92-258, T": [[-581, 196], [-576, 196], [-573, 193], [-573, 184], [-584, 184], [-584, 193]]}, "center": {"92-258, T": [-578, 190]}}, +{"id": 964, "name": "Coat of arms of Schaffhausen", "description": "Schaffhausen is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Schaffhausen", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"93-258, T": [[-540, 184], [-529, 184], [-529, 193], [-532, 196], [-537, 196], [-540, 193]]}, "center": {"93-258, T": [-534, 190]}}, +{"id": 966, "name": "Coat of arms of Neuchâtel", "description": "Neuchâtel is a canton in western Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Neuch%C3%A2tel", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"92-258, T": [[-573, 193], [-573, 184], [-562, 184], [-562, 193], [-565, 196], [-570, 196]]}, "center": {"92-258, T": [-567, 190]}}, +{"id": 967, "name": "S.T.A.L.K.E.R", "description": "S.T.A.L.K.E.R is a video game franchise set in Chernobyl, Ukraine, the site of one of the largest nuclear disasters in history. The game is developed by Ukrainian developer GSC Game World.", "links": {"website": ["https://gsc-game.com/", "https://en.wikipedia.org/wiki/S.T.A.L.K.E.R."], "subreddit": ["placeukraine", "ukraine", "stalker"], "discord": ["fMf7RJBMw6", "stalker-gamma"]}, "path": {"79-258, T": [[57, -129], [57, -90], [90, -90], [90, -129]]}, "center": {"79-258, T": [74, -109]}}, +{"id": 968, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America. Its flag features Mexico's coat of arms, depicting a golden eagle eating a snake on a cactus. This symbol is based on a legend from the ancient Aztec people, signifying the place where the Aztecs should build their empire. This spot was contested by CSGO, and throughout the canvas history you can see Mexico and CSGO battling it out.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"122-258, T": [[2, -912], [2, -709], [18, -709], [18, -694], [53, -694], [53, -674], [63, -674], [63, -649], [63, -629], [134, -628], [134, -796], [162, -796], [162, -797], [163, -797], [163, -798], [164, -798], [164, -799], [165, -799], [165, -798], [166, -798], [166, -797], [168, -797], [168, -798], [169, -798], [169, -799], [170, -799], [170, -798], [171, -798], [171, -797], [172, -797], [172, -796], [203, -796], [203, -912]]}, "center": {"122-258, T": [75, -839]}}, +{"id": 969, "name": "Flag of Colombia", "description": "Colombia is a country on the northwest coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"123-147": [[-387, -912], [-387, -816], [-64, -816], [-64, -912]], "148-258, T": [[-388, -873], [-388, -816], [-262, -816], [-262, -855], [-286, -855], [-286, -873]]}, "center": {"123-147": [-225, -864], "148-258, T": [-325, -844]}}, +{"id": 970, "name": "Flag of Paraguay", "description": "Paraguay is a country in central South America. The back of its flag differs from the front, so both sides are shown here.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguay", "https://en.wikipedia.org/wiki/Flag_of_Paraguay"], "subreddit": ["Paraguay"]}, "path": {"117-122": [[-52, -912], [-52, -869], [112, -869], [112, -912]], "123-258, T": [[-64, -912], [-64, -826], [2, -826], [2, -912]]}, "center": {"117-122": [30, -890], "123-258, T": [-31, -869]}}, +{"id": 971, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"122-258, T": [[-535, -873], [-535, -828], [-475, -828], [-475, -873]]}, "center": {"122-258, T": [-505, -850]}}, +{"id": 972, "name": "Flag of Panama", "description": "Panama is a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Panama", "https://en.wikipedia.org/wiki/Flag_of_Panama"], "subreddit": ["Panama"]}, "path": {"123-258, T": [[-475, -813], [-475, -792], [-441, -792], [-441, -813]]}, "center": {"123-258, T": [-458, -802]}}, +{"id": 973, "name": "United States", "description": "The contiguous United States as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/United_States"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"122-258, T": [[-121, 103], [-122, 104], [-122, 115], [-123, 116], [-123, 119], [-122, 120], [-123, 121], [-123, 126], [-122, 127], [-122, 128], [-121, 130], [-120, 131], [-120, 132], [-118, 134], [-117, 134], [-116, 135], [-116, 136], [-114, 138], [-113, 138], [-110, 141], [-109, 141], [-108, 142], [-107, 142], [-105, 144], [-103, 144], [-102, 145], [-99, 145], [-98, 146], [-96, 146], [-93, 149], [-91, 147], [-87, 151], [-87, 152], [-85, 154], [-82, 154], [-81, 153], [-81, 151], [-80, 150], [-79, 150], [-77, 148], [-70, 148], [-69, 147], [-67, 146], [-58, 146], [-58, 147], [-57, 148], [-57, 149], [-55, 151], [-53, 151], [-52, 150], [-52, 145], [-53, 144], [-53, 143], [-54, 142], [-54, 140], [-53, 139], [-53, 138], [-52, 137], [-51, 137], [-49, 135], [-49, 134], [-48, 134], [-47, 133], [-48, 132], [-48, 131], [-46, 129], [-47, 127], [-46, 126], [-47, 125], [-47, 124], [-47, 123], [-46, 122], [-46, 121], [-45, 120], [-44, 121], [-43, 121], [-42, 120], [-43, 119], [-44, 119], [-44, 118], [-41, 118], [-40, 117], [-39, 117], [-38, 116], [-38, 115], [-39, 114], [-40, 115], [-41, 114], [-40, 113], [-40, 112], [-37, 109], [-38, 108], [-38, 107], [-39, 106], [-39, 104], [-40, 103], [-42, 103], [-44, 105], [-44, 106], [-45, 107], [-45, 108], [-46, 109], [-47, 109], [-48, 110], [-50, 110], [-53, 113], [-53, 114], [-54, 115], [-55, 116], [-55, 117], [-58, 120], [-59, 120], [-59, 117], [-58, 116], [-60, 114], [-61, 115], [-61, 114], [-62, 113], [-63, 112], [-64, 112], [-65, 113], [-66, 113], [-66, 112], [-62, 112], [-61, 111], [-62, 110], [-63, 109], [-66, 109], [-67, 108], [-69, 107], [-70, 107], [-71, 106], [-75, 106], [-76, 105], [-77, 106], [-78, 106], [-79, 105], [-81, 105], [-82, 106], [-83, 105], [-98, 105], [-99, 104], [-104, 104], [-106, 103]]}, "center": {"122-258, T": [-82, 128]}}, +{"id": 974, "name": "Coat of arms of Vaud", "description": "Vaud is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Vaud", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-98": [[-529, 197], [-518, 197], [-518, 206], [-521, 209], [-526, 209], [-529, 206]], "99-258, T": [[-518, 249], [-507, 249], [-507, 258], [-509, 260], [-516, 260], [-518, 258]]}, "center": {"95-98": [-523, 203], "99-258, T": [-512, 255]}}, +{"id": 975, "name": "Coat of arms of Ticino", "description": "Ticino is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Ticino", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"96-258, T": [[-518, 223], [-507, 223], [-507, 232], [-510, 235], [-515, 235], [-518, 232]]}, "center": {"96-258, T": [-512, 229]}}, +{"id": 976, "name": "Coat of arms of Fribourg", "description": "Fribourg is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Fribourg", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258, T": [[-584, 210], [-573, 210], [-573, 219], [-576, 222], [-581, 222], [-584, 219]]}, "center": {"95-258, T": [-578, 216]}}, +{"id": 977, "name": "Coat of arms of Appenzell Ausserrhoden", "description": "Appenzell Ausserrhoden is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Appenzell_Ausserrhoden", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"100-258, T": [[-573, 249], [-562, 249], [-562, 258], [-565, 261], [-570, 261], [-573, 258]]}, "center": {"100-258, T": [-567, 255]}}, +{"id": 978, "name": "Coat of arms of Glarus", "description": "Glarus is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Glarus", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258, T": [[-573, 197], [-562, 197], [-562, 206], [-565, 209], [-570, 209], [-573, 206]]}, "center": {"95-258, T": [-567, 203]}}, +{"id": 979, "name": "Coat of arms of Basel-Stadt", "description": "Basel-Stadt is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Basel-Stadt", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"93-258, T": [[-584, 197], [-573, 197], [-573, 206], [-576, 209], [-581, 209], [-584, 206]]}, "center": {"93-258, T": [-578, 203]}}, +{"id": 980, "name": "Coat of arms of Aargau", "description": "Aargau is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Aargau", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258, T": [[-540, 249], [-540, 258], [-543, 261], [-548, 261], [-551, 258], [-551, 249]]}, "center": {"98-258, T": [-545, 255]}}, {"id": 981, "name": "Grupo de la Mafia Payasito", "description": "group of friends and Chilean content creators made up of Phirio, ShettuGames, elRenatelo, Habbcito, OwCrow, MrTina and Clauxlul", "links": {"website": ["https://twitch.tv/ShettuGames", "https://twitch.tv/Habbcito", "https://www.youtube.com/@Phirio", "https://www.youtube.com/@owcrow9274", "https://www.youtube.com/@elRenatelo"]}, "path": {"77-91": [[794, 415], [810, 415], [810, 421], [794, 421]]}, "center": {"77-91": [802, 418]}}, -{"id": 982, "name": "Coat of arms of Uri", "description": "Uri is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Uri", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258": [[-518, 236], [-507, 236], [-507, 245], [-510, 248], [-515, 248], [-518, 245]]}, "center": {"98-258": [-512, 242]}}, -{"id": 983, "name": "Coat of arms of Geneva", "description": "Geneva is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Geneva", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258": [[-573, 236], [-562, 236], [-562, 245], [-565, 248], [-570, 248], [-573, 245]]}, "center": {"98-258": [-567, 242]}}, -{"id": 984, "name": "Coat of arms of Jura", "description": "Jura is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Jura", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"100-258": [[-529, 197], [-518, 197], [-518, 206], [-521, 209], [-526, 209], [-529, 206]]}, "center": {"100-258": [-523, 203]}}, -{"id": 985, "name": "Coat of arms of Thurgau", "description": "Thurgau is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Thurgau", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"96-258": [[-518, 210], [-507, 210], [-507, 219], [-510, 222], [-515, 222], [-518, 219]]}, "center": {"96-258": [-512, 216]}}, -{"id": 986, "name": "Coat of arms of Appenzell Innerrhoden", "description": "Appenzell Innerrhoden is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Appenzell_Innerrhoden", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"99-258": [[-584, 236], [-573, 236], [-573, 245], [-576, 248], [-581, 248], [-584, 245]]}, "center": {"99-258": [-578, 242]}}, -{"id": 987, "name": "Coat of arms of Zurich", "description": "Zurich is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Z%C3%BCrich", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-96": [[-540, 197], [-529, 197], [-529, 206], [-532, 209], [-537, 209], [-540, 206]], "97-258": [[-562, 249], [-551, 249], [-551, 258], [-554, 261], [-559, 261], [-562, 258]]}, "center": {"95-96": [-534, 203], "97-258": [-556, 255]}}, -{"id": 988, "name": "Coat of arms of Basel-Landschaft", "description": "Basel-Landschaft is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Basel-Landschaft", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258": [[-584, 223], [-573, 223], [-573, 232], [-576, 235], [-581, 235], [-584, 232]]}, "center": {"95-258": [-578, 229]}}, -{"id": 989, "name": "Coat of arms of St. Gallen", "description": "St. Gallen is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_St._Gallen", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258": [[-518, 197], [-507, 197], [-507, 206], [-510, 209], [-515, 209], [-518, 206]]}, "center": {"95-258": [-512, 203]}}, -{"id": 990, "name": "Coat of arms of Grisons", "description": "Grisons is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Grisons", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258": [[-529, 236], [-518, 236], [-518, 245], [-521, 248], [-526, 248], [-529, 245]]}, "center": {"98-258": [-523, 242]}}, -{"id": 991, "name": "Coat of arms of Bern", "description": "Bern is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Bern", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"96-258": [[-584, 249], [-573, 249], [-573, 258], [-576, 261], [-581, 261], [-584, 258]]}, "center": {"96-258": [-578, 255]}}, +{"id": 982, "name": "Coat of arms of Uri", "description": "Uri is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Uri", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258, T": [[-518, 236], [-507, 236], [-507, 245], [-510, 248], [-515, 248], [-518, 245]]}, "center": {"98-258, T": [-512, 242]}}, +{"id": 983, "name": "Coat of arms of Geneva", "description": "Geneva is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Geneva", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258, T": [[-573, 236], [-562, 236], [-562, 245], [-565, 248], [-570, 248], [-573, 245]]}, "center": {"98-258, T": [-567, 242]}}, +{"id": 984, "name": "Coat of arms of Jura", "description": "Jura is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Jura", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"100-258, T": [[-529, 197], [-518, 197], [-518, 206], [-521, 209], [-526, 209], [-529, 206]]}, "center": {"100-258, T": [-523, 203]}}, +{"id": 985, "name": "Coat of arms of Thurgau", "description": "Thurgau is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Thurgau", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"96-258, T": [[-518, 210], [-507, 210], [-507, 219], [-510, 222], [-515, 222], [-518, 219]]}, "center": {"96-258, T": [-512, 216]}}, +{"id": 986, "name": "Coat of arms of Appenzell Innerrhoden", "description": "Appenzell Innerrhoden is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Appenzell_Innerrhoden", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"99-258, T": [[-584, 236], [-573, 236], [-573, 245], [-576, 248], [-581, 248], [-584, 245]]}, "center": {"99-258, T": [-578, 242]}}, +{"id": 987, "name": "Coat of arms of Zurich", "description": "Zurich is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Z%C3%BCrich", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-96": [[-540, 197], [-529, 197], [-529, 206], [-532, 209], [-537, 209], [-540, 206]], "97-258, T": [[-562, 249], [-551, 249], [-551, 258], [-554, 261], [-559, 261], [-562, 258]]}, "center": {"95-96": [-534, 203], "97-258, T": [-556, 255]}}, +{"id": 988, "name": "Coat of arms of Basel-Landschaft", "description": "Basel-Landschaft is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Basel-Landschaft", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258, T": [[-584, 223], [-573, 223], [-573, 232], [-576, 235], [-581, 235], [-584, 232]]}, "center": {"95-258, T": [-578, 229]}}, +{"id": 989, "name": "Coat of arms of St. Gallen", "description": "St. Gallen is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_St._Gallen", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"95-258, T": [[-518, 197], [-507, 197], [-507, 206], [-510, 209], [-515, 209], [-518, 206]]}, "center": {"95-258, T": [-512, 203]}}, +{"id": 990, "name": "Coat of arms of Grisons", "description": "Grisons is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Grisons", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258, T": [[-529, 236], [-518, 236], [-518, 245], [-521, 248], [-526, 248], [-529, 245]]}, "center": {"98-258, T": [-523, 242]}}, +{"id": 991, "name": "Coat of arms of Bern", "description": "Bern is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Bern", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"96-258, T": [[-584, 249], [-573, 249], [-573, 258], [-576, 261], [-581, 261], [-584, 258]]}, "center": {"96-258, T": [-578, 255]}}, {"id": 992, "name": "iFunny watermark", "description": "Uh oh, you forgot to crop your stolen meme again, now you deal with the consequences and a slightly improved watermark. Brought to you by r/Place_iFunny and (probably) other people outside.", "links": {"website": ["https://ifunny.co/"], "subreddit": ["Place_iFunny"], "discord": ["6h7vnBMEh"]}, "path": {"118-147": [[121, 499], [121, 491], [175, 491], [175, 499]]}, "center": {"118-147": [148, 495]}}, -{"id": 993, "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica"]}, "path": {"117-258": [[-535, -828], [-535, -792], [-475, -792], [-475, -828]]}, "center": {"117-258": [-505, -810]}}, -{"id": 994, "name": "Switzerland", "description": "The country of Switzerland as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"111-258": [[822, -342], [819, -339], [819, -335], [813, -329], [807, -320], [807, -315], [806, -314], [806, -312], [808, -312], [811, -314], [811, -316], [814, -318], [818, -318], [818, -312], [824, -305], [826, -307], [834, -307], [842, -319], [844, -313], [846, -311], [848, -311], [848, -309], [851, -305], [853, -307], [853, -312], [855, -315], [861, -315], [864, -317], [865, -317], [867, -314], [869, -314], [869, -318], [868, -319], [868, -322], [870, -322], [871, -321], [874, -321], [874, -329], [872, -331], [869, -328], [867, -328], [859, -333], [859, -336], [861, -339], [861, -340], [853, -346], [849, -346], [845, -349], [844, -349], [842, -347], [842, -345], [839, -345], [838, -344], [830, -344], [826, -340]]}, "center": {"111-258": [830, -326]}}, +{"id": 993, "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica"]}, "path": {"117-258, T": [[-535, -828], [-535, -792], [-475, -792], [-475, -828]]}, "center": {"117-258, T": [-505, -810]}}, +{"id": 994, "name": "Switzerland", "description": "The country of Switzerland as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"111-258, T": [[822, -342], [819, -339], [819, -335], [813, -329], [807, -320], [807, -315], [806, -314], [806, -312], [808, -312], [811, -314], [811, -316], [814, -318], [818, -318], [818, -312], [824, -305], [826, -307], [834, -307], [842, -319], [844, -313], [846, -311], [848, -311], [848, -309], [851, -305], [853, -307], [853, -312], [855, -315], [861, -315], [864, -317], [865, -317], [867, -314], [869, -314], [869, -318], [868, -319], [868, -322], [870, -322], [871, -321], [874, -321], [874, -329], [872, -331], [869, -328], [867, -328], [859, -333], [859, -336], [861, -339], [861, -340], [853, -346], [849, -346], [845, -349], [844, -349], [842, -347], [842, -345], [839, -345], [838, -344], [830, -344], [826, -340]]}, "center": {"111-258, T": [830, -326]}}, {"id": 995, "name": "monkaW", "description": "monkaW is a Twitch emote featuring meme character Pepe the Frog with a zoomed-in nervous face. Its creation on r/place was orchestrated by Kick streamer xQc.", "links": {"website": ["https://betterttv.com/emotes/59ca6551b27c823d5b1fd872"]}, "path": {"124-133": [[-591, -756], [-591, -635], [-576, -635], [-576, -627], [-458, -627], [-458, -756]], "134-147": [[-591, -756], [-591, -635], [-458, -635], [-458, -747], [-535, -747], [-535, -756]]}, "center": {"124-133": [-524, -691], "134-147": [-526, -691]}}, {"id": 996, "name": "Hermitcraft", "description": "Hermitcraft is a popular survival multiplayer (SMP) series for the game Minecraft, featuring many of the most popular creators in the Minecraft YouTube community.", "links": {"website": ["https://hermitcraft.com/", "https://hermitcraft.fandom.com/wiki/Hermitcraft"], "subreddit": ["HermitCraft"]}, "path": {"101-125": [[-843, 336], [-843, 343], [-838, 343], [-838, 367], [-829, 367], [-829, 391], [-820, 391], [-820, 389], [-775, 389], [-775, 381], [-811, 381], [-811, 373], [-802, 373], [-802, 343], [-799, 343], [-799, 336]], "126-163": [[-851, 330], [-851, 342], [-843, 342], [-843, 343], [-798, 343], [-798, 328], [-843, 328], [-843, 330]]}, "center": {"101-125": [-819, 353], "126-163": [-824, 336]}}, -{"id": 997, "name": "Dogmatix", "description": "Dogmatix (French: Idéfix) is the dog from the Asterix and Obelix comics. He is Obelix's pet and is against the uprooting of trees, gestures that make him cry, get mad, or even faint.", "links": {"website": ["https://en.wikipedia.org/wiki/Dogmatix"], "subreddit": ["asterix", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"122-143": [[937, -115], [934, -113], [938, -109], [938, -108], [936, -105], [936, -96], [948, -96], [948, -98], [947, -99], [947, -103], [945, -103], [945, -110], [946, -111], [946, -113], [944, -115]], "145-259": [[930, -97], [930, -99], [931, -100], [931, -102], [929, -103], [930, -106], [931, -108], [932, -109], [930, -111], [929, -112], [930, -115], [934, -110], [935, -115], [938, -114], [939, -111], [937, -107], [937, -103], [937, -102], [939, -103], [940, -101], [940, -100], [941, -97], [941, -96], [930, -96]]}, "center": {"122-143": [941, -101], "145-259": [934, -104]}}, -{"id": 998, "name": "Coat of arms of Valais", "description": "Valais is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Valais", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258": [[-529, 249], [-518, 249], [-518, 258], [-521, 261], [-526, 261], [-529, 258]]}, "center": {"98-258": [-523, 255]}}, -{"id": 999, "name": "Coat of arms of Zug", "description": "Zug is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Zug", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258": [[-540, 249], [-529, 249], [-529, 258], [-532, 261], [-537, 261], [-540, 258]]}, "center": {"98-258": [-534, 255]}}, +{"id": 997, "name": "Dogmatix", "description": "Dogmatix (French: Idéfix) is the dog from the Asterix and Obelix comics. He is Obelix's pet and is against the uprooting of trees, gestures that make him cry, get mad, or even faint.", "links": {"website": ["https://en.wikipedia.org/wiki/Dogmatix"], "subreddit": ["asterix", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"122-143": [[937, -115], [934, -113], [938, -109], [938, -108], [936, -105], [936, -96], [948, -96], [948, -98], [947, -99], [947, -103], [945, -103], [945, -110], [946, -111], [946, -113], [944, -115]], "145-259, T": [[930, -97], [930, -99], [931, -100], [931, -102], [929, -103], [930, -106], [931, -108], [932, -109], [930, -111], [929, -112], [930, -115], [934, -110], [935, -115], [938, -114], [939, -111], [937, -107], [937, -103], [937, -102], [939, -103], [940, -101], [940, -100], [941, -97], [941, -96], [930, -96]]}, "center": {"122-143": [941, -101], "145-259, T": [934, -104]}}, +{"id": 998, "name": "Coat of arms of Valais", "description": "Valais is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Valais", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258, T": [[-529, 249], [-518, 249], [-518, 258], [-521, 261], [-526, 261], [-529, 258]]}, "center": {"98-258, T": [-523, 255]}}, +{"id": 999, "name": "Coat of arms of Zug", "description": "Zug is a canton in Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Canton_of_Zug", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"98-258, T": [[-540, 249], [-529, 249], [-529, 258], [-532, 261], [-537, 261], [-540, 258]]}, "center": {"98-258, T": [-534, 255]}}, {"id": 1000, "name": "Grupo de la Mafia Payasito", "description": "group of friends and Chilean content creators made up of Phirio, ShettuGames, elRenatelo, Habbcito, OwCrow, MrTina and Clauxlul", "links": {"website": ["https://twitch.tv/ShettuGames", "https://twitch.tv/Habbcito", "https://www.youtube.com/@Phirio", "https://www.youtube.com/@owcrow9274", "https://www.youtube.com/@elRenatelo"]}, "path": {"76-92": [[808, 415], [794, 415], [794, 421], [808, 421]]}, "center": {"76-92": [801, 418]}}, {"id": 1001, "name": "Greenland", "description": "Greenland is an island country northeast of Canada, administered by Denmark. It is the world's largest island.", "links": {"website": ["https://en.wikipedia.org/wiki/Greenland"], "subreddit": ["Greenland", "nordics", "place_nordicunion"]}, "path": {"154-249": [[-122, -244], [-128, -240], [-128, -239], [-130, -239], [-134, -237], [-138, -232], [-138, -229], [-139, -229], [-142, -226], [-140, -224], [-140, -222], [-138, -220], [-135, -220], [-135, -215], [-132, -213], [-132, -206], [-129, -199], [-124, -205], [-121, -205], [-121, -208], [-119, -208], [-115, -211], [-115, -218], [-113, -218], [-113, -219], [-114, -220], [-114, -230], [-111, -234], [-111, -237], [-116, -237], [-116, -240], [-120, -244]]}, "center": {"154-249": [-126, -227]}}, {"id": 1002, "name": "Flag of Peru", "description": "Peru is a country on the west coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru", "https://en.wikipedia.org/wiki/Flag_of_Peru"], "subreddit": ["PERU"]}, "path": {"113-135": [[51, 33], [51, 132], [84, 132], [84, 105], [78, 105], [78, 82], [84, 82], [84, 33]]}, "center": {"113-135": [68, 50]}}, -{"id": 1005, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America. Its flag features Mexico's coat of arms, depicting a golden eagle eating a snake on a cactus. This symbol is based on a legend from the ancient Aztec people, signifying the place where the Aztecs should build their empire.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"108-149": [[-935, 428], [-935, 500], [-891, 500], [-891, 428]], "150-154": [[-935, 422], [-935, 500], [-891, 500], [-891, 422]], "155-258": [[-935, 399], [-935, 617], [-891, 617], [-891, 399]]}, "center": {"108-149": [-913, 464], "150-154": [-913, 461], "155-258": [-913, 508]}}, -{"id": 1006, "name": "r/place_brff", "description": "r/place_brff is a subreddit for r/place art organized by Russian streamer Bratishkinoff. This art depicts a Russian meme about a dog with a butterfly on its nose being at peace. The dog is being pet by the nearby Void monster created by Spanish streamer Rubius.", "links": {"website": ["https://www.twitch.tv/bratishkinoff"], "subreddit": ["place_brff"]}, "path": {"57-100": [[500, -47], [500, 96], [705, 96], [704, -47]], "108-258": [[500, -47], [500, 29], [501, 29], [501, 89], [705, 89], [704, -23], [619, -23], [619, -47]]}, "center": {"57-100": [603, 25], "108-258": [568, 21]}}, +{"id": 1005, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America. Its flag features Mexico's coat of arms, depicting a golden eagle eating a snake on a cactus. This symbol is based on a legend from the ancient Aztec people, signifying the place where the Aztecs should build their empire.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"108-149": [[-935, 428], [-935, 500], [-891, 500], [-891, 428]], "150-154": [[-935, 422], [-935, 500], [-891, 500], [-891, 422]], "155-258, T": [[-935, 399], [-935, 617], [-891, 617], [-891, 399]]}, "center": {"108-149": [-913, 464], "150-154": [-913, 461], "155-258, T": [-913, 508]}}, +{"id": 1006, "name": "r/place_brff", "description": "r/place_brff is a subreddit for r/place art organized by Russian streamer Bratishkinoff. This art depicts a Russian meme about a dog with a butterfly on its nose being at peace. The dog is being pet by the nearby Void monster created by Spanish streamer Rubius.", "links": {"website": ["https://www.twitch.tv/bratishkinoff"], "subreddit": ["place_brff"]}, "path": {"57-100": [[500, -47], [500, 96], [705, 96], [704, -47]], "108-258, T": [[500, -47], [500, 29], [501, 29], [501, 89], [705, 89], [704, -23], [619, -23], [619, -47]]}, "center": {"57-100": [603, 25], "108-258, T": [568, 21]}}, {"id": 1007, "name": "Dominican Republic", "description": "The country of the Dominican Republic as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Dominican_Republic"], "subreddit": ["Dominican"]}, "path": {"122-148": [[158, -7], [154, -4], [155, -1], [155, 2], [156, 3], [156, 13], [158, 18], [161, 18], [164, 15], [167, 14], [173, 14], [174, 13], [194, 13], [197, 11], [197, 9], [195, 6], [195, 1], [192, -1], [180, -1], [179, -2], [177, -2], [177, -5], [169, -7]]}, "center": {"122-148": [167, 3]}}, -{"id": 1008, "name": "14-bis", "description": "The 14-bis was a pioneer-era canard-style biplane designed and built by Brazilian aviation pioneer Alberto Santos-Dumont. In 1906, near Paris, the 14-bis made a manned powered flight that was the first to be publicly witnessed by a crowd.", "links": {"website": ["https://en.wikipedia.org/wiki/Santos-Dumont_14-bis"], "subreddit": ["brasil"]}, "path": {"121-258": [[-733, -679], [-760, -664], [-760, -658], [-755, -655], [-754, -655], [-748, -660], [-744, -662], [-743, -662], [-737, -657], [-736, -655], [-730, -652], [-728, -652], [-721, -656], [-721, -663], [-723, -665], [-728, -667], [-729, -667], [-729, -669], [-728, -670], [-726, -670], [-726, -675]]}, "center": {"121-258": [-737, -667]}}, -{"id": 1010, "name": "OXXO", "description": "OXXO is a convenience store chain in Mexico.", "links": {"website": ["http://www.oxxo.com/", "https://en.wikipedia.org/wiki/OXXO"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"125-258": [[12, -849], [12, -826], [56, -826], [56, -849]]}, "center": {"125-258": [34, -837]}}, -{"id": 1011, "name": "Tacos", "description": "Tacos are well-known Mexican food.", "links": {"website": ["https://en.wikipedia.org/wiki/Taco"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"126-258": [[176, -856], [173, -854], [166, -847], [163, -839], [163, -835], [166, -831], [170, -831], [170, -830], [173, -827], [176, -827], [186, -831], [197, -837], [198, -838], [199, -838], [201, -840], [201, -844], [194, -850], [190, -852], [186, -852], [179, -856]]}, "center": {"126-258": [179, -842]}}, -{"id": 1012, "name": "Bernd das Brothanos", "description": "A combination of German puppet character Bernd das Brot (from German TV channel KI.KA) and the supervillain Thanos from the Marvel Cinematic Universe.\n\nGermany takes over everything. With a snap, he pulls a German flag through everything that bothers him and helps the smaller countries and groups.\n\nHe even survived against around 100k people(xQc)", "links": {"website": ["https://en.wikipedia.org/wiki/Bernd_das_Brot", "https://en.wikipedia.org/wiki/Thanos"]}, "path": {"126-258": [[-734, -986], [-718, -992], [-712, -989], [-708, -975], [-704, -969], [-696, -974], [-691, -976], [-686, -974], [-678, -968], [-677, -962], [-669, -956], [-668, -947], [-659, -939], [-659, -927], [-665, -918], [-674, -920], [-683, -929], [-684, -912], [-754, -911], [-749, -918], [-748, -927], [-748, -936], [-751, -942], [-742, -955], [-730, -964]]}, "center": {"126-258": [-712, -941]}}, -{"id": 1023, "name": "ElZeein", "description": "ElZeein (también conocido como Andynsane) es un popular YouTuber y streamer peruano. Nació en Tarma, una ciudad en la región Junín de Perú, pero actualmente reside en los Estados Unidos. Actualmente es un streamer de Twitch, donde organizó los premios Luminy para la comunida peruana, tiene a su mascota llamada Grumpy la cual es muy querida por la comunidad de la Frente Army o Zeiners. \n\nENGLISH\nElZeein (also known as Andynsane) is a popular Peruvian YouTuber and streamer. He was born in Tarma, a city in the Junín region of Peru, but currently resides in the United States. He is currently a Twitch streamer, where he organized the Luminy awards for the Peruvian community, he has his pet called Grumpy which is very loved by the community of the Army Front or Zeiners.", "links": {"website": ["https://www.twitch.tv/elzeein", "https://www.youtube.com/@elzeein", "https://www.instagram.com/andynsane/", "https://twitter.com/ElZeeeein"]}, "path": {"74-93": [[-138, -26], [-138, 97], [-43, 97], [-43, -26]], "120-258": [[-1001, -755], [-1001, -611], [-774, -611], [-774, -755]]}, "center": {"74-93": [-90, 36], "120-258": [-887, -683]}}, -{"id": 1024, "name": "Sloth", "description": "An animal that is a national symbol of Costa Rica.", "links": {"website": ["https://en.wikipedia.org/wiki/Sloth"], "subreddit": ["costarica"]}, "path": {"87-258": [[15, 33], [11, 37], [11, 39], [13, 41], [13, 42], [22, 47], [25, 47], [31, 42], [32, 40], [32, 39], [28, 32]]}, "center": {"87-258": [23, 39]}}, -{"id": 1025, "name": "Keel-billed toucan", "description": "A bird species found in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Keel-billed_toucan"], "subreddit": ["costarica"]}, "path": {"84-258": [[-21, 34], [-25, 39], [-25, 40], [-22, 43], [-22, 46], [-19, 46], [-17, 44], [-17, 39], [-11, 39], [-11, 38], [-18, 34]]}, "center": {"84-258": [-20, 39]}}, -{"id": 1026, "name": "Hummingbird", "description": "One of the smallest species of birds.", "links": {"website": ["https://en.wikipedia.org/wiki/Hummingbird"], "subreddit": ["costarica"]}, "path": {"107-258": [[-58, 69], [-58, 72], [-54, 77], [-57, 82], [-57, 84], [-54, 84], [-45, 75], [-42, 75], [-42, 73], [-45, 73], [-47, 71], [-49, 71], [-51, 73], [-52, 73], [-56, 69]]}, "center": {"107-258": [-51, 76]}}, -{"id": 1027, "name": "Country purple girl", "description": "The national flower of Costa Rica.", "links": {"website": ["https://en.wikipedia.org/wiki/Guarianthe_skinneri"], "subreddit": ["costarica"]}, "path": {"89-258": [[-34, 68], [-36, 70], [-39, 70], [-41, 72], [-41, 74], [-38, 77], [-40, 79], [-41, 79], [-43, 81], [-43, 83], [-41, 86], [-28, 86], [-28, 84], [-25, 84], [-25, 81], [-30, 77], [-27, 74], [-27, 72], [-29, 70], [-32, 70]]}, "center": {"89-258": [-34, 81]}}, -{"id": 1028, "name": "Clannad", "description": "Clannad is the anime adaptation of the visual novel developed by KEY. Clannad is represented in this art by iconic characters called Dangos.", "links": {"website": ["https://en.wikipedia.org/wiki/Clannad_(video_game)"], "subreddit": ["Clannad"]}, "path": {"89-104": [[-571, 287], [-571, 294], [-529, 294], [-529, 287]], "105-258": [[-571, 282], [-571, 294], [-541, 294], [-541, 282]]}, "center": {"89-104": [-550, 291], "105-258": [-556, 288]}}, +{"id": 1008, "name": "14-bis", "description": "The 14-bis was a pioneer-era canard-style biplane designed and built by Brazilian aviation pioneer Alberto Santos-Dumont. In 1906, near Paris, the 14-bis made a manned powered flight that was the first to be publicly witnessed by a crowd.", "links": {"website": ["https://en.wikipedia.org/wiki/Santos-Dumont_14-bis"], "subreddit": ["brasil"]}, "path": {"121-258, T": [[-733, -679], [-760, -664], [-760, -658], [-755, -655], [-754, -655], [-748, -660], [-744, -662], [-743, -662], [-737, -657], [-736, -655], [-730, -652], [-728, -652], [-721, -656], [-721, -663], [-723, -665], [-728, -667], [-729, -667], [-729, -669], [-728, -670], [-726, -670], [-726, -675]]}, "center": {"121-258, T": [-737, -667]}}, +{"id": 1010, "name": "OXXO", "description": "OXXO is a convenience store chain in Mexico.", "links": {"website": ["http://www.oxxo.com/", "https://en.wikipedia.org/wiki/OXXO"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"125-258, T": [[12, -849], [12, -826], [56, -826], [56, -849]]}, "center": {"125-258, T": [34, -837]}}, +{"id": 1011, "name": "Tacos", "description": "Tacos are well-known Mexican food.", "links": {"website": ["https://en.wikipedia.org/wiki/Taco"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"126-258, T": [[176, -856], [173, -854], [166, -847], [163, -839], [163, -835], [166, -831], [170, -831], [170, -830], [173, -827], [176, -827], [186, -831], [197, -837], [198, -838], [199, -838], [201, -840], [201, -844], [194, -850], [190, -852], [186, -852], [179, -856]]}, "center": {"126-258, T": [179, -842]}}, +{"id": 1012, "name": "Bernd das Brothanos", "description": "A combination of German puppet character Bernd das Brot (from German TV channel KI.KA) and the supervillain Thanos from the Marvel Cinematic Universe.\n\nGermany takes over everything. With a snap, he pulls a German flag through everything that bothers him and helps the smaller countries and groups.\n\nHe even survived against around 100k people(xQc)", "links": {"website": ["https://en.wikipedia.org/wiki/Bernd_das_Brot", "https://en.wikipedia.org/wiki/Thanos"]}, "path": {"126-258, T": [[-734, -986], [-718, -992], [-712, -989], [-708, -975], [-704, -969], [-696, -974], [-691, -976], [-686, -974], [-678, -968], [-677, -962], [-669, -956], [-668, -947], [-659, -939], [-659, -927], [-665, -918], [-674, -920], [-683, -929], [-684, -912], [-754, -911], [-749, -918], [-748, -927], [-748, -936], [-751, -942], [-742, -955], [-730, -964]]}, "center": {"126-258, T": [-712, -941]}}, +{"id": 1023, "name": "ElZeein", "description": "ElZeein (también conocido como Andynsane) es un popular YouTuber y streamer peruano. Nació en Tarma, una ciudad en la región Junín de Perú, pero actualmente reside en los Estados Unidos. Actualmente es un streamer de Twitch, donde organizó los premios Luminy para la comunida peruana, tiene a su mascota llamada Grumpy la cual es muy querida por la comunidad de la Frente Army o Zeiners. \n\nENGLISH\nElZeein (also known as Andynsane) is a popular Peruvian YouTuber and streamer. He was born in Tarma, a city in the Junín region of Peru, but currently resides in the United States. He is currently a Twitch streamer, where he organized the Luminy awards for the Peruvian community, he has his pet called Grumpy which is very loved by the community of the Army Front or Zeiners.", "links": {"website": ["https://www.twitch.tv/elzeein", "https://www.youtube.com/@elzeein", "https://www.instagram.com/andynsane/", "https://twitter.com/ElZeeeein"]}, "path": {"74-93": [[-138, -26], [-138, 97], [-43, 97], [-43, -26]], "120-258, T": [[-1001, -755], [-1001, -611], [-774, -611], [-774, -755]]}, "center": {"74-93": [-90, 36], "120-258, T": [-887, -683]}}, +{"id": 1024, "name": "Sloth", "description": "An animal that is a national symbol of Costa Rica.", "links": {"website": ["https://en.wikipedia.org/wiki/Sloth"], "subreddit": ["costarica"]}, "path": {"87-258, T": [[15, 33], [11, 37], [11, 39], [13, 41], [13, 42], [22, 47], [25, 47], [31, 42], [32, 40], [32, 39], [28, 32]]}, "center": {"87-258, T": [23, 39]}}, +{"id": 1025, "name": "Keel-billed toucan", "description": "A bird species found in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Keel-billed_toucan"], "subreddit": ["costarica"]}, "path": {"84-258, T": [[-21, 34], [-25, 39], [-25, 40], [-22, 43], [-22, 46], [-19, 46], [-17, 44], [-17, 39], [-11, 39], [-11, 38], [-18, 34]]}, "center": {"84-258, T": [-20, 39]}}, +{"id": 1026, "name": "Hummingbird", "description": "One of the smallest species of birds.", "links": {"website": ["https://en.wikipedia.org/wiki/Hummingbird"], "subreddit": ["costarica"]}, "path": {"107-258, T": [[-58, 69], [-58, 72], [-54, 77], [-57, 82], [-57, 84], [-54, 84], [-45, 75], [-42, 75], [-42, 73], [-45, 73], [-47, 71], [-49, 71], [-51, 73], [-52, 73], [-56, 69]]}, "center": {"107-258, T": [-51, 76]}}, +{"id": 1027, "name": "Country purple girl", "description": "The national flower of Costa Rica.", "links": {"website": ["https://en.wikipedia.org/wiki/Guarianthe_skinneri"], "subreddit": ["costarica"]}, "path": {"89-258, T": [[-34, 68], [-36, 70], [-39, 70], [-41, 72], [-41, 74], [-38, 77], [-40, 79], [-41, 79], [-43, 81], [-43, 83], [-41, 86], [-28, 86], [-28, 84], [-25, 84], [-25, 81], [-30, 77], [-27, 74], [-27, 72], [-29, 70], [-32, 70]]}, "center": {"89-258, T": [-34, 81]}}, +{"id": 1028, "name": "Clannad", "description": "Clannad is the anime adaptation of the visual novel developed by KEY. Clannad is represented in this art by iconic characters called Dangos.", "links": {"website": ["https://en.wikipedia.org/wiki/Clannad_(video_game)"], "subreddit": ["Clannad"]}, "path": {"89-104": [[-571, 287], [-571, 294], [-529, 294], [-529, 287]], "105-258, T": [[-571, 282], [-571, 294], [-541, 294], [-541, 282]]}, "center": {"89-104": [-550, 291], "105-258, T": [-556, 288]}}, {"id": 1029, "name": "Natalan", "description": "Natalan is a Latin American streamer.", "links": {"website": ["https://twitch.tv/natalan"], "subreddit": ["natalan"]}, "path": {"117-150": [[199, -550], [199, -501], [306, -501], [306, -550]]}, "center": {"117-150": [253, -525]}}, {"id": 1030, "name": "Coat of arms of Argentina", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Argentina"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"124-141": [[234, -765], [230, -761], [230, -750], [228, -750], [223, -745], [219, -735], [219, -728], [218, -727], [218, -717], [222, -706], [227, -701], [233, -696], [228, -688], [229, -687], [232, -690], [236, -690], [236, -688], [246, -688], [246, -690], [249, -690], [253, -686], [254, -687], [249, -694], [261, -704], [263, -711], [263, -715], [265, -719], [265, -733], [261, -742], [258, -749], [251, -751], [251, -756], [249, -758], [249, -761], [247, -765]]}, "center": {"124-141": [242, -724]}}, -{"id": 1031, "name": "The Federation", "description": "The Federation is the secretive government of QSMP, a survival multiplayer (SMP) series for the game Minecraft.", "links": {"website": ["https://qsmp.fandom.com/wiki/The_Federation"]}, "path": {"117-258": [[640, -912], [640, -864], [849, -864], [849, -912]]}, "center": {"117-258": [745, -888]}}, +{"id": 1031, "name": "The Federation", "description": "The Federation is the secretive government of QSMP, a survival multiplayer (SMP) series for the game Minecraft.", "links": {"website": ["https://qsmp.fandom.com/wiki/The_Federation"]}, "path": {"117-258, T": [[640, -912], [640, -864], [849, -864], [849, -912]]}, "center": {"117-258, T": [745, -888]}}, {"id": 1032, "name": "Bloons Tower Defense 6", "description": "Bloons Tower Defense 6 (BTD6) is a tower defense game and the sixth game in the Bloons Tower Defense series. In the game, the player uses monkeys to pop enemy balloons known as bloons.", "links": {"website": ["https://en.wikipedia.org/wiki/Bloons_TD_6"], "subreddit": ["btd6"]}, "path": {"110-169": [[-739, -105], [-739, -79], [-706, -79], [-706, -105]]}, "center": {"110-169": [-722, -92]}}, -{"id": 1033, "name": "Tohru Adachi", "description": "Tohru Adachi is a bumbling detective character from the game Persona 4.\n\nThe canvas depicts the detective surrounded by cabbages (great vegetables), which are often associated with him.\nAlongside Adachi is a speech bubble with the word \"TRUE!\", referencing a meme of his portrait with \"TRUE!\" written in Comic Sans below him.\nThere's also a small banner saying \"ADACHI!!!\" nearby, which was the first thing related to him that was made on this canvas.", "links": {"website": ["https://megamitensei.fandom.com/wiki/Tohru_Adachi", "https://atlus.com/atlus-titles/persona4-golden/"], "subreddit": ["okbuddypersona"]}, "path": {"87-119": [[-635, 404], [-635, 411], [-597, 411], [-597, 404]], "120-164": [[-651, 381], [-656, 384], [-659, 388], [-659, 392], [-656, 398], [-653, 402], [-653, 404], [-656, 406], [-659, 406], [-659, 415], [-635, 415], [-635, 411], [-597, 411], [-597, 404], [-635, 404], [-635, 415], [-646, 415], [-646, 408], [-643, 397], [-641, 386], [-642, 381], [-640, 381], [-640, 375], [-657, 375], [-657, 381]], "165-233": [[-635, 404], [-597, 404], [-597, 411], [-639, 411], [-639, 375], [-668, 375], [-672, 373], [-691, 373], [-691, 367], [-673, 367], [-674, 363], [-673, 352], [-671, 351], [-664, 351], [-659, 356], [-659, 359], [-660, 361], [-660, 367], [-659, 369], [-659, 371], [-656, 374], [-638, 374], [-638, 404]], "234-258": [[-597, 404], [-597, 411], [-639, 411], [-639, 375], [-672, 375], [-672, 373], [-691, 373], [-691, 367], [-673, 367], [-673, 365], [-674, 364], [-674, 358], [-672, 353], [-660, 353], [-659, 354], [-657, 354], [-655, 356], [-655, 359], [-658, 362], [-656, 364], [-656, 367], [-658, 369], [-658, 371], [-655, 374], [-638, 374], [-638, 404]]}, "center": {"87-119": [-616, 408], "120-164": [-650, 390], "165-233": [-667, 363], "234-258": [-666, 361]}}, +{"id": 1033, "name": "Tohru Adachi", "description": "Tohru Adachi is a bumbling detective character from the game Persona 4.\n\nThe canvas depicts the detective surrounded by cabbages (great vegetables), which are often associated with him.\nAlongside Adachi is a speech bubble with the word \"TRUE!\", referencing a meme of his portrait with \"TRUE!\" written in Comic Sans below him.\nThere's also a small banner saying \"ADACHI!!!\" nearby, which was the first thing related to him that was made on this canvas.", "links": {"website": ["https://megamitensei.fandom.com/wiki/Tohru_Adachi", "https://atlus.com/atlus-titles/persona4-golden/"], "subreddit": ["okbuddypersona"]}, "path": {"87-119": [[-635, 404], [-635, 411], [-597, 411], [-597, 404]], "120-164": [[-651, 381], [-656, 384], [-659, 388], [-659, 392], [-656, 398], [-653, 402], [-653, 404], [-656, 406], [-659, 406], [-659, 415], [-635, 415], [-635, 411], [-597, 411], [-597, 404], [-635, 404], [-635, 415], [-646, 415], [-646, 408], [-643, 397], [-641, 386], [-642, 381], [-640, 381], [-640, 375], [-657, 375], [-657, 381]], "165-233": [[-635, 404], [-597, 404], [-597, 411], [-639, 411], [-639, 375], [-668, 375], [-672, 373], [-691, 373], [-691, 367], [-673, 367], [-674, 363], [-673, 352], [-671, 351], [-664, 351], [-659, 356], [-659, 359], [-660, 361], [-660, 367], [-659, 369], [-659, 371], [-656, 374], [-638, 374], [-638, 404]], "234-258, T": [[-597, 404], [-597, 411], [-639, 411], [-639, 375], [-672, 375], [-672, 373], [-691, 373], [-691, 367], [-673, 367], [-673, 365], [-674, 364], [-674, 358], [-672, 353], [-660, 353], [-659, 354], [-657, 354], [-655, 356], [-655, 359], [-658, 362], [-656, 364], [-656, 367], [-658, 369], [-658, 371], [-655, 374], [-638, 374], [-638, 404]]}, "center": {"87-119": [-616, 408], "120-164": [-650, 390], "165-233": [-667, 363], "234-258, T": [-666, 361]}}, {"id": 1035, "name": "Juan Valdez", "description": "Juan Valdez is both the name of a fictional character advertising the National Federation of Coffee growers of Colombia and the name of a brand of coffeehouse chain.", "links": {"website": ["https://en.wikipedia.org/wiki/Juan_Valdez"]}, "path": {"122": [[707, 120], [731, 97], [738, 97], [761, 120]]}, "center": {"122": [734, 109]}}, {"id": 1036, "name": "Chocoramo", "description": "A chocoramo is a popular chocolate covered cake snack enjoyed in Colombia by Gala under Productos Ramo.", "links": {"subreddit": ["Colombia"]}, "path": {"78-128": [[665, 98], [665, 114], [689, 114], [689, 98]]}, "center": {"78-128": [677, 106]}}, -{"id": 1037, "name": "Doki Doki Literature Club", "description": "Doki Doki Literature Club! is a 2017 Japanese freeware romance visual novel developed by American independent game studio Team Salvato for Microsoft Windows, macOS, and Linux. You play as a high school student who must woo the girls of the literature club... through poetry! While the game starts out innocuous, it eventually turns into a psychological horror.\n\nThis art depicts the four main girls from the novel: Sayori, Natsuki, Yuri, and Monika, along with the Main Character of the game. This art and the heart design was also featured during the 2022 r/place, albeit with different color choices. It also shows a cupcake styled like a cat, made by Natsuki. It reads in text ,\"READ VNS\". It was allied with Katawa Shoujo, Steins;Gate, Umineko, FNF, and a few others surrounding them.", "links": {"website": ["https://ddlc.moe/", "https://en.wikipedia.org/wiki/Doki_Doki_Literature_Club!"], "subreddit": ["DDLC"], "discord": ["ddlc"]}, "path": {"97-258": [[-582, 326], [-582, 387], [-570, 387], [-571, 356], [-558, 356], [-558, 355], [-550, 355], [-549, 356], [-533, 356], [-533, 327], [-545, 327], [-545, 340], [-558, 340], [-558, 350], [-571, 350], [-571, 327]]}, "center": {"97-258": [-542, 348]}}, -{"id": 1038, "name": "aldo_geo", "description": "aldo_geo is a Mexican Twitch streamer.", "links": {"website": ["https://www.twitch.tv/aldo_geo"], "subreddit": ["Pendegeos"]}, "path": {"120-258": [[-654, 433], [-654, 450], [-635, 450], [-635, 433], [-641, 433], [-643, 431], [-645, 431], [-646, 433]]}, "center": {"120-258": [-644, 441]}}, +{"id": 1037, "name": "Doki Doki Literature Club", "description": "Doki Doki Literature Club! is a 2017 Japanese freeware romance visual novel developed by American independent game studio Team Salvato for Microsoft Windows, macOS, and Linux. You play as a high school student who must woo the girls of the literature club... through poetry! While the game starts out innocuous, it eventually turns into a psychological horror.\n\nThis art depicts the four main girls from the novel: Sayori, Natsuki, Yuri, and Monika, along with the Main Character of the game. This art and the heart design was also featured during the 2022 r/place, albeit with different color choices. It also shows a cupcake styled like a cat, made by Natsuki. It reads in text ,\"READ VNS\". It was allied with Katawa Shoujo, Steins;Gate, Umineko, FNF, and a few others surrounding them.", "links": {"website": ["https://ddlc.moe/", "https://en.wikipedia.org/wiki/Doki_Doki_Literature_Club!"], "subreddit": ["DDLC"], "discord": ["ddlc"]}, "path": {"97-258, T": [[-582, 326], [-582, 387], [-570, 387], [-571, 356], [-558, 356], [-558, 355], [-550, 355], [-549, 356], [-533, 356], [-533, 327], [-545, 327], [-545, 340], [-558, 340], [-558, 350], [-571, 350], [-571, 327]]}, "center": {"97-258, T": [-542, 348]}}, +{"id": 1038, "name": "aldo_geo", "description": "aldo_geo is a Mexican Twitch streamer.", "links": {"website": ["https://www.twitch.tv/aldo_geo"], "subreddit": ["Pendegeos"]}, "path": {"120-258, T": [[-654, 433], [-654, 450], [-635, 450], [-635, 433], [-641, 433], [-643, 431], [-645, 431], [-646, 433]]}, "center": {"120-258, T": [-644, 441]}}, {"id": 1039, "name": "Alaska", "description": "Alaska is the largest state in the United States. It is located northwest of Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/Alaska"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"126-168": [[-174, 98], [-178, 102], [-178, 105], [-180, 107], [-180, 117], [-178, 120], [-174, 120], [-172, 121], [-172, 122], [-176, 126], [-180, 128], [-185, 128], [-185, 130], [-172, 130], [-172, 125], [-168, 121], [-168, 119], [-163, 114], [-161, 114], [-159, 118], [-151, 118], [-148, 121], [-146, 121], [-146, 119], [-150, 115], [-154, 115], [-159, 110], [-160, 108], [-160, 102], [-159, 101], [-161, 99], [-167, 99], [-168, 98]]}, "center": {"126-168": [-169, 108]}}, {"id": 1040, "name": "Hawaii", "description": "Hawaii is an island archipelago in the Pacific Ocean, and one of the states of the United States.", "links": {"website": ["https://en.wikipedia.org/wiki/Hawaii"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"126-155": [[-157, 123], [-159, 125], [-159, 126], [-153, 126], [-152, 127], [-147, 127], [-143, 129], [-143, 131], [-141, 131], [-139, 132], [-139, 136], [-137, 139], [-135, 139], [-132, 136], [-135, 132], [-137, 132], [-137, 131], [-139, 128], [-142, 128], [-142, 126], [-146, 126], [-148, 124], [-151, 124], [-152, 123]]}, "center": {"126-155": [-136, 136]}}, {"id": 1041, "name": "Yellow Pikmin", "description": "Yellow Pikmin are a type of Pikmin from the game Pikmin. They are immune to electricity.", "links": {"website": ["https://www.pikminwiki.com/Yellow_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"114-130": [[338, 164], [335, 167], [328, 167], [328, 168], [336, 175], [337, 177], [337, 181], [345, 181], [345, 174], [352, 168], [352, 167], [344, 167], [341, 164]]}, "center": {"114-130": [340, 171]}}, {"id": 1042, "name": "Red Pikmin", "description": "Red Pikmin are a type of Pikmin in the Pikmin games that are immune to fire. They are the first type of Pikmin introduced in the games.", "links": {"website": ["https://www.pikminwiki.com/Red_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"114-130": [[326, 164], [326, 175], [324, 177], [324, 180], [326, 182], [359, 182], [359, 180], [337, 180], [337, 177], [332, 174], [329, 170], [329, 164]]}, "center": {"114-130": [330, 178]}}, -{"id": 1043, "name": "Nature of Predators", "description": "A story by u/spacepaladin15 that was originally posted on the HFY (Humanity Fuck Yeah!) subreddit. It later went on to gain a cult following.\n\nPictured is a Yotul surrounded by a grey and black Venlil, all of which are alien species within the story. The right Venlil is Vikri, a character from the most popular fanfiction of NoP, \"Hunting with Predators\". While the left Venlil is Slanek from the main story. Added to the right is a Yotul railroad, and two Gojids above smaller versions of themselves holding a sign with their species' name.", "links": {"subreddit": ["NatureofPredators"]}, "path": {"117-176": [[-1001, 13], [-1001, 45], [-975, 45], [-970, 50], [-965, 50], [-958, 42], [-948, 43], [-940, 41], [-943, 36], [-943, 27], [-941, 25], [-941, 21], [-941, 14]], "177-258": [[-1034, 13], [-1035, 48], [-1002, 47], [-1000, 45], [-976, 45], [-969, 50], [-964, 50], [-958, 43], [-947, 45], [-941, 41], [-943, 38], [-943, 26], [-941, 26], [-941, 22], [-942, 22], [-942, 14], [-999, 13], [-1012, 13], [-1017, 12], [-1022, 13]]}, "center": {"117-176": [-969, 30], "177-258": [-1017, 30]}}, -{"id": 1044, "name": "Inkling Squid", "description": "Inkling Squid is the squid form of the Inklings, the main playable race in the game series Splatoon.\n\nThe colors in the background represent the official colors for each Splatoon game. \n\nFor the squid itself, Orange (current color), along with Blue (previous color before the bot attacks), are the colors for the first Splaoon Game.\n\nPink and Green, (top of background), are the colors for Splatoon 2.\n\nYellow and Purple (bottom of background), are the colors for Splatoon 3.", "links": {"website": ["https://splatoonwiki.org/wiki/Inkling"], "subreddit": ["Splatoon_Place", "placeFR", "SplatoonFrance", "france"], "discord": ["placeFR", "DbfxSYhP"]}, "path": {"119-258": [[969, -195], [969, -192], [970, -192], [970, -174], [969, -174], [969, -170], [973, -170], [973, -171], [990, -171], [990, -170], [994, -170], [994, -174], [993, -174], [993, -191], [994, -191], [994, -193], [992, -195], [990, -195], [990, -194], [972, -194], [972, -195]]}, "center": {"119-258": [982, -182]}}, -{"id": 1045, "name": "French nuclear power plant", "description": "France produces a large share of its electricity from nuclear power.", "links": {"website": ["https://en.wikipedia.org/wiki/Nuclear_power_in_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"116-258": [[900, -367], [900, -366], [904, -360], [904, -349], [907, -345], [907, -340], [909, -336], [909, -333], [910, -332], [910, -327], [912, -322], [912, -318], [906, -291], [904, -286], [904, -284], [998, -284], [998, -289], [994, -307], [994, -314], [995, -316], [996, -322], [997, -323], [997, -344], [999, -348], [999, -349], [994, -356], [971, -356], [966, -364], [961, -364], [961, -367]]}, "center": {"116-258": [951, -323]}}, -{"id": 1046, "name": "DreamNotFound flag", "description": "DreamNotFound (DNF) is a ship between YouTubers Dream and GeorgeNotFound, both focused on the game Minecraft.", "links": {"website": ["https://shipping.fandom.com/wiki/DreamNotFound"]}, "path": {"69-258": [[78, 27], [78, 33], [87, 33], [87, 27]]}, "center": {"69-258": [83, 30]}}, +{"id": 1043, "name": "Nature of Predators", "description": "A story by u/spacepaladin15 that was originally posted on the HFY (Humanity Fuck Yeah!) subreddit. It later went on to gain a cult following.\n\nPictured is a Yotul surrounded by a grey and black Venlil, all of which are alien species within the story. The right Venlil is Vikri, a character from the most popular fanfiction of NoP, \"Hunting with Predators\". While the left Venlil is Slanek from the main story. Added to the right is a Yotul railroad, and two Gojids above smaller versions of themselves holding a sign with their species' name.", "links": {"subreddit": ["NatureofPredators"]}, "path": {"117-176": [[-1001, 13], [-1001, 45], [-975, 45], [-970, 50], [-965, 50], [-958, 42], [-948, 43], [-940, 41], [-943, 36], [-943, 27], [-941, 25], [-941, 21], [-941, 14]], "177-258, T": [[-1034, 13], [-1035, 48], [-1002, 47], [-1000, 45], [-976, 45], [-969, 50], [-964, 50], [-958, 43], [-947, 45], [-941, 41], [-943, 38], [-943, 26], [-941, 26], [-941, 22], [-942, 22], [-942, 14], [-999, 13], [-1012, 13], [-1017, 12], [-1022, 13]]}, "center": {"117-176": [-969, 30], "177-258, T": [-1017, 30]}}, +{"id": 1044, "name": "Inkling Squid", "description": "Inkling Squid is the squid form of the Inklings, the main playable race in the game series Splatoon.\n\nThe colors in the background represent the official colors for each Splatoon game. \n\nFor the squid itself, Orange (current color), along with Blue (previous color before the bot attacks), are the colors for the first Splaoon Game.\n\nPink and Green, (top of background), are the colors for Splatoon 2.\n\nYellow and Purple (bottom of background), are the colors for Splatoon 3.", "links": {"website": ["https://splatoonwiki.org/wiki/Inkling"], "subreddit": ["Splatoon_Place", "placeFR", "SplatoonFrance", "france"], "discord": ["placeFR", "DbfxSYhP"]}, "path": {"119-258, T": [[969, -195], [969, -192], [970, -192], [970, -174], [969, -174], [969, -170], [973, -170], [973, -171], [990, -171], [990, -170], [994, -170], [994, -174], [993, -174], [993, -191], [994, -191], [994, -193], [992, -195], [990, -195], [990, -194], [972, -194], [972, -195]]}, "center": {"119-258, T": [982, -182]}}, +{"id": 1045, "name": "French nuclear power plant", "description": "France produces a large share of its electricity from nuclear power.", "links": {"website": ["https://en.wikipedia.org/wiki/Nuclear_power_in_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"116-258, T": [[900, -367], [900, -366], [904, -360], [904, -349], [907, -345], [907, -340], [909, -336], [909, -333], [910, -332], [910, -327], [912, -322], [912, -318], [906, -291], [904, -286], [904, -284], [998, -284], [998, -289], [994, -307], [994, -314], [995, -316], [996, -322], [997, -323], [997, -344], [999, -348], [999, -349], [994, -356], [971, -356], [966, -364], [961, -364], [961, -367]]}, "center": {"116-258, T": [951, -323]}}, +{"id": 1046, "name": "DreamNotFound flag", "description": "DreamNotFound (DNF) is a ship between YouTubers Dream and GeorgeNotFound, both focused on the game Minecraft.", "links": {"website": ["https://shipping.fandom.com/wiki/DreamNotFound"]}, "path": {"69-258, T": [[78, 27], [78, 33], [87, 33], [87, 27]]}, "center": {"69-258, T": [83, 30]}}, {"id": 1047, "name": "1776", "description": "The year 1776 is when the Founding Fathers of the United States signed the Declaration of Independence, declaring independence from Great Britain.", "links": {"website": ["https://en.wikipedia.org/wiki/United_States_Declaration_of_Independence"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"128-185": [[-13, 98], [-15, 100], [-15, 104], [-1, 104], [-1, 98]]}, "center": {"128-185": [-8, 101]}}, {"id": 1048, "name": "DOOMENTIO Y OVEJA", "description": "Este dibujo representa a 2 lolcows de internet hispanoamericanos,los cuales son protagonistas del Doomverso\n\n-Arte Echo por el grupo de Facebook \"Doomposting:The Last Casqueria\"", "links": {"website": ["https://facebook.com/groups/449058742730579/"], "subreddit": ["THE_LAST_CASQUERIA"]}, "path": {"128-135": [[-669, -500], [-649, -502], [-651, -516], [-669, -516], [-670, -500], [-650, -501], [-650, -515], [-652, -515], [-651, -515], [-651, -516], [-650, -515], [-649, -515], [-650, -515], [-649, -502], [-650, -500], [-650, -515], [-649, -501]]}, "center": {"128-135": [-661, -508]}}, -{"id": 1049, "name": "Indonesian Flag", "description": "A multicultural country with plenty of unique flora and fauna.", "links": {"website": ["https://en.wikipedia.org/wiki/Indonesia"], "subreddit": ["Indonesia"]}, "path": {"91": [[-735, -256], [-702, -256], [-702, -243], [-735, -243]], "79-82": [[899, -480], [899, -461], [932, -461], [932, -480]], "88-90": [[-735, -256], [-706, -256], [-706, -244], [-735, -244]], "92-96": [[-753, -256], [-702, -256], [-702, -237], [-753, -237]], "118-120": [[248, -819], [285, -819], [286, -819], [286, -797], [248, -797]], "126-258": [[-752, -258], [-752, -230], [-750, -230], [-750, -237], [-748, -237], [-747, -238], [-746, -239], [-746, -242], [-745, -243], [-744, -244], [-743, -245], [-742, -244], [-741, -244], [-740, -243], [-739, -243], [-738, -244], [-733, -244], [-732, -243], [-729, -243], [-728, -244], [-727, -245], [-726, -245], [-725, -246], [-724, -246], [-723, -246], [-723, -245], [-722, -244], [-722, -242], [-722, -241], [-723, -240], [-723, -238], [-724, -237], [-724, -236], [-723, -235], [-722, -234], [-721, -233], [-721, -229], [-721, -227], [-720, -224], [-719, -224], [-718, -225], [-718, -226], [-717, -227], [-716, -228], [-716, -229], [-715, -230], [-714, -230], [-713, -231], [-712, -232], [-712, -233], [-712, -234], [-711, -235], [-707, -235], [-708, -236], [-709, -236], [-710, -235], [-712, -235], [-713, -236], [-713, -237], [-712, -238], [-711, -239], [-710, -240], [-709, -241], [-705, -241], [-704, -240], [-703, -239], [-702, -238], [-702, -237], [-701, -236], [-701, -235], [-700, -235], [-699, -236], [-698, -237], [-697, -238], [-696, -239], [-694, -239], [-693, -240], [-691, -240], [-690, -239], [-689, -238], [-688, -237], [-688, -236], [-688, -235], [-688, -234], [-690, -234], [-691, -235], [-692, -236], [-693, -235], [-695, -235], [-695, -234], [-695, -235], [-692, -235], [-692, -234], [-691, -234], [-690, -233], [-690, -231], [-689, -230], [-688, -229], [-688, -227], [-687, -226], [-687, -225], [-686, -224], [-685, -225], [-685, -226], [-686, -227], [-687, -228], [-686, -229], [-685, -230], [-685, -232], [-684, -233], [-684, -234], [-683, -235], [-683, -237], [-684, -238], [-684, -240], [-685, -241], [-685, -242], [-686, -243], [-686, -258], [-738, -258], [-738, -255], [-739, -255], [-750, -255], [-751, -256], [-751, -258]]}, "center": {"91": [-718, -249], "79-82": [916, -470], "88-90": [-720, -250], "92-96": [-727, -246], "118-120": [267, -808], "126-258": [-699, -248]}}, -{"id": 1050, "name": "Twisten", "description": "Karel \"Twisten\" Ašenbrener (December 4, 2003 – June 6, 2023) was a Czech player for the likes of BIG and Team Vitality.\nOn June 7th 2023, Team Vitality announced that Twisten has passed away", "links": {"subreddit": ["ValorantCompetitive"]}, "path": {"125-258": [[717, -528], [684, -529], [682, -523], [682, -502], [741, -502], [741, -510], [734, -514], [718, -528]]}, "center": {"125-258": [695, -515]}}, +{"id": 1049, "name": "Indonesian Flag", "description": "A multicultural country with plenty of unique flora and fauna.", "links": {"website": ["https://en.wikipedia.org/wiki/Indonesia"], "subreddit": ["Indonesia"]}, "path": {"91": [[-735, -256], [-702, -256], [-702, -243], [-735, -243]], "79-82": [[899, -480], [899, -461], [932, -461], [932, -480]], "88-90": [[-735, -256], [-706, -256], [-706, -244], [-735, -244]], "92-96": [[-753, -256], [-702, -256], [-702, -237], [-753, -237]], "118-120": [[248, -819], [285, -819], [286, -819], [286, -797], [248, -797]], "126-258, T": [[-752, -258], [-752, -230], [-750, -230], [-750, -237], [-748, -237], [-747, -238], [-746, -239], [-746, -242], [-745, -243], [-744, -244], [-743, -245], [-742, -244], [-741, -244], [-740, -243], [-739, -243], [-738, -244], [-733, -244], [-732, -243], [-729, -243], [-728, -244], [-727, -245], [-726, -245], [-725, -246], [-724, -246], [-723, -246], [-723, -245], [-722, -244], [-722, -242], [-722, -241], [-723, -240], [-723, -238], [-724, -237], [-724, -236], [-723, -235], [-722, -234], [-721, -233], [-721, -229], [-721, -227], [-720, -224], [-719, -224], [-718, -225], [-718, -226], [-717, -227], [-716, -228], [-716, -229], [-715, -230], [-714, -230], [-713, -231], [-712, -232], [-712, -233], [-712, -234], [-711, -235], [-707, -235], [-708, -236], [-709, -236], [-710, -235], [-712, -235], [-713, -236], [-713, -237], [-712, -238], [-711, -239], [-710, -240], [-709, -241], [-705, -241], [-704, -240], [-703, -239], [-702, -238], [-702, -237], [-701, -236], [-701, -235], [-700, -235], [-699, -236], [-698, -237], [-697, -238], [-696, -239], [-694, -239], [-693, -240], [-691, -240], [-690, -239], [-689, -238], [-688, -237], [-688, -236], [-688, -235], [-688, -234], [-690, -234], [-691, -235], [-692, -236], [-693, -235], [-695, -235], [-695, -234], [-695, -235], [-692, -235], [-692, -234], [-691, -234], [-690, -233], [-690, -231], [-689, -230], [-688, -229], [-688, -227], [-687, -226], [-687, -225], [-686, -224], [-685, -225], [-685, -226], [-686, -227], [-687, -228], [-686, -229], [-685, -230], [-685, -232], [-684, -233], [-684, -234], [-683, -235], [-683, -237], [-684, -238], [-684, -240], [-685, -241], [-685, -242], [-686, -243], [-686, -258], [-738, -258], [-738, -255], [-739, -255], [-750, -255], [-751, -256], [-751, -258]]}, "center": {"91": [-718, -249], "79-82": [916, -470], "88-90": [-720, -250], "92-96": [-727, -246], "118-120": [267, -808], "126-258, T": [-699, -248]}}, +{"id": 1050, "name": "Twisten", "description": "Karel \"Twisten\" Ašenbrener (December 4, 2003 – June 6, 2023) was a Czech player for the likes of BIG and Team Vitality.\nOn June 7th 2023, Team Vitality announced that Twisten has passed away", "links": {"subreddit": ["ValorantCompetitive"]}, "path": {"125-258, T": [[717, -528], [684, -529], [682, -523], [682, -502], [741, -502], [741, -510], [734, -514], [718, -528]]}, "center": {"125-258, T": [695, -515]}}, {"id": 1051, "name": "NAILS", "description": "NAILS is an emoji originally created for & used in YouTube comments that was then made into a Twitch emote via third-party browser extensions. It is often used in sarcastic ways on Twitch, mocking its existence on YouTube. Its creation on r/place was orchestrated by Kick streamer xQc", "links": {"website": ["https://kick.com/xqc"], "subreddit": ["xqcow"]}, "path": {"129-150": [[-109, -635], [-58, -635], [-35, -635], [-24, -654], [-19, -669], [-18, -703], [-15, -714], [-19, -723], [-30, -727], [-32, -727], [-32, -747], [-38, -747], [-42, -742], [-56, -752], [-69, -754], [-91, -751], [-96, -750], [-106, -743], [-113, -738], [-115, -727], [-115, -704], [-126, -687], [-127, -663], [-126, -662], [-126, -644]]}, "center": {"129-150": [-69, -685]}}, -{"id": 1052, "name": "Tarik", "description": "Tarik is a former professional player of the game Counter-Strike: Global Offensive (CSGO). He is now a W Friend that plays the game Valorant.", "links": {"website": ["https://twitch.tv/tarik"], "subreddit": ["tarik"], "discord": ["tarik"]}, "path": {"125-258": [[848, -514], [848, -502], [796, -502], [797, -514]]}, "center": {"125-258": [822, -508]}}, -{"id": 1053, "name": "VALORANT", "description": "Valorant is a free-to-play first-person tactical hero shooter developed and published by Riot Games, for Windows.\nThis memorial is intended to commemorate the late player Karel \"Twisten\" Asenbrener. \"Twisten\" was a player on Team Vitality. He took his own life because of depression. Since then, the organizers have been trying to draw more attention to the topic.", "links": {"website": ["https://www.mhe-sme.org/library/youth-helplines/"], "subreddit": ["VALORANT"]}, "path": {"121-258": [[681, -501], [849, -501], [849, -676], [681, -676]]}, "center": {"121-258": [765, -588]}}, +{"id": 1052, "name": "Tarik", "description": "Tarik is a former professional player of the game Counter-Strike: Global Offensive (CSGO). He is now a W Friend that plays the game Valorant.", "links": {"website": ["https://twitch.tv/tarik"], "subreddit": ["tarik"], "discord": ["tarik"]}, "path": {"125-258, T": [[848, -514], [848, -502], [796, -502], [797, -514]]}, "center": {"125-258, T": [822, -508]}}, +{"id": 1053, "name": "VALORANT", "description": "Valorant is a free-to-play first-person tactical hero shooter developed and published by Riot Games, for Windows.\nThis memorial is intended to commemorate the late player Karel \"Twisten\" Asenbrener. \"Twisten\" was a player on Team Vitality. He took his own life because of depression. Since then, the organizers have been trying to draw more attention to the topic.", "links": {"website": ["https://www.mhe-sme.org/library/youth-helplines/"], "subreddit": ["VALORANT"]}, "path": {"121-258, T": [[681, -501], [849, -501], [849, -676], [681, -676]]}, "center": {"121-258, T": [765, -588]}}, {"id": 1054, "name": "Pepe", "description": "The character Pepe from My Chemical Romance's 3rd album \"The Black Parade\" which was made in 2006. Something something young boy something something black parade.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Black_Parade"], "subreddit": ["MyChemicalRomance"]}, "path": {"116-142": [[-785, 406], [-785, 407], [-784, 430], [-765, 430], [-765, 407], [-764, 406], [-765, 406]]}, "center": {"116-142": [-775, 416]}}, {"id": 1055, "name": "Femboy flag", "description": "A pride flag representing the femboy community. A femboy, also known as tomgirl, rosboy, janegirl, or calicogirl, is a person who chooses to adopt a more feminine appearance, such as by wearing feminine clothes or makeup, while usually retaining some aspect of boyishness in their appearance or identity. This can also sometimes refer to the way one acts or communicates, or what interests or hobbies one has. Most femboys still see themselves as male, as the name implies, but someone who identifies with the femboy label can be trans, nonbinary, or one of many other gender identities across the spectrum.", "links": {"website": ["https://aesthetics.fandom.com/wiki/Femboy"], "subreddit": ["femboy"]}, "path": {"117-143": [[-566, -166], [-566, -86], [-559, -86], [-560, -166]]}, "center": {"117-143": [-562, -92]}}, -{"id": 1056, "name": "Mexico", "description": "The country of Mexico as it appears on a map.\n\nThe additional accessories like the face and blue-yellow hairpins are courtesy of Bocchi the Rock! fans who collaborated with Mexico members.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"127-258": [[134, -908], [134, -894], [139, -890], [139, -887], [141, -887], [141, -886], [147, -880], [154, -880], [154, -875], [159, -870], [169, -867], [172, -864], [182, -864], [185, -861], [188, -861], [188, -864], [189, -864], [199, -874], [201, -881], [198, -884], [193, -884], [190, -882], [189, -877], [184, -874], [179, -876], [176, -882], [176, -890], [172, -894], [171, -894], [171, -896], [166, -901], [160, -901], [155, -906], [143, -906], [140, -908]]}, "center": {"127-258": [152, -892]}}, -{"id": 1057, "name": "Paraguay", "description": "The country of Paraguay as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguay"], "subreddit": ["Paraguay"]}, "path": {"126-258": [[-40, -885], [-43, -883], [-47, -876], [-47, -872], [-42, -867], [-33, -864], [-33, -861], [-36, -858], [-36, -857], [-34, -855], [-24, -855], [-19, -861], [-19, -868], [-25, -875], [-28, -875], [-28, -879], [-30, -882], [-34, -885]]}, "center": {"126-258": [-37, -875]}}, -{"id": 1058, "name": "Bolivia", "description": "The country of Bolivia as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"125-258": [[610, -855], [611, -854], [611, -853], [612, -852], [613, -852], [614, -850], [615, -849], [616, -848], [615, -847], [615, -846], [614, -845], [615, -844], [615, -841], [614, -840], [614, -836], [613, -835], [613, -831], [612, -830], [611, -831], [608, -831], [608, -829], [609, -828], [609, -827], [612, -824], [613, -824], [614, -823], [614, -817], [615, -816], [615, -812], [616, -811], [616, -810], [617, -809], [618, -808], [618, -806], [619, -805], [619, -803], [620, -802], [620, -801], [621, -800], [621, -799], [626, -799], [629, -802], [630, -803], [633, -803], [634, -802], [637, -802], [638, -803], [639, -803], [640, -804], [648, -804], [648, -807], [649, -808], [649, -809], [656, -816], [662, -816], [665, -813], [667, -813], [667, -817], [669, -819], [669, -825], [668, -826], [668, -828], [665, -831], [665, -833], [658, -833], [658, -836], [657, -837], [657, -838], [651, -844], [649, -844], [648, -845], [647, -845], [646, -846], [645, -847], [643, -847], [635, -855], [635, -858], [636, -859], [636, -861], [631, -861], [629, -859], [627, -859], [626, -858], [624, -858], [621, -855]]}, "center": {"125-258": [635, -826]}}, -{"id": 1059, "name": "Taipei 101", "description": "Taipei 101 is a skyscraper in the skyline of Taipei, Taiwan. Once the tallest building in the world, it has since been overtaken by the Burj Khalifa in Dubai, United Arab Emirates.", "links": {"website": ["https://en.wikipedia.org/wiki/Taipei_101"], "subreddit": ["placeTW"], "discord": ["8xSQKCHSnT"]}, "path": {"99-120": [[-97, 422], [-97, 425], [-98, 425], [-98, 445], [-91, 445], [-91, 429], [-93, 425], [-93, 422]], "121-130": [[-95, 422], [-98, 426], [-98, 461], [-91, 461], [-91, 425], [-93, 425], [-93, 422]], "131-154": [[-96, 421], [-96, 425], [-98, 425], [-98, 500], [-91, 500], [-91, 425], [-93, 425], [-93, 421]], "155-258": [[-96, 406], [-96, 410], [-98, 410], [-98, 586], [-91, 586], [-91, 410], [-93, 410], [-93, 406]]}, "center": {"99-120": [-94, 434], "121-130": [-94, 442], "131-154": [-94, 462], "155-258": [-94, 497]}}, +{"id": 1056, "name": "Mexico", "description": "The country of Mexico as it appears on a map.\n\nThe additional accessories like the face and blue-yellow hairpins are courtesy of Bocchi the Rock! fans who collaborated with Mexico members.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"127-258, T": [[134, -908], [134, -894], [139, -890], [139, -887], [141, -887], [141, -886], [147, -880], [154, -880], [154, -875], [159, -870], [169, -867], [172, -864], [182, -864], [185, -861], [188, -861], [188, -864], [189, -864], [199, -874], [201, -881], [198, -884], [193, -884], [190, -882], [189, -877], [184, -874], [179, -876], [176, -882], [176, -890], [172, -894], [171, -894], [171, -896], [166, -901], [160, -901], [155, -906], [143, -906], [140, -908]]}, "center": {"127-258, T": [152, -892]}}, +{"id": 1057, "name": "Paraguay", "description": "The country of Paraguay as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguay"], "subreddit": ["Paraguay"]}, "path": {"126-258, T": [[-40, -885], [-43, -883], [-47, -876], [-47, -872], [-42, -867], [-33, -864], [-33, -861], [-36, -858], [-36, -857], [-34, -855], [-24, -855], [-19, -861], [-19, -868], [-25, -875], [-28, -875], [-28, -879], [-30, -882], [-34, -885]]}, "center": {"126-258, T": [-37, -875]}}, +{"id": 1058, "name": "Bolivia", "description": "The country of Bolivia as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"125-258, T": [[610, -855], [611, -854], [611, -853], [612, -852], [613, -852], [614, -850], [615, -849], [616, -848], [615, -847], [615, -846], [614, -845], [615, -844], [615, -841], [614, -840], [614, -836], [613, -835], [613, -831], [612, -830], [611, -831], [608, -831], [608, -829], [609, -828], [609, -827], [612, -824], [613, -824], [614, -823], [614, -817], [615, -816], [615, -812], [616, -811], [616, -810], [617, -809], [618, -808], [618, -806], [619, -805], [619, -803], [620, -802], [620, -801], [621, -800], [621, -799], [626, -799], [629, -802], [630, -803], [633, -803], [634, -802], [637, -802], [638, -803], [639, -803], [640, -804], [648, -804], [648, -807], [649, -808], [649, -809], [656, -816], [662, -816], [665, -813], [667, -813], [667, -817], [669, -819], [669, -825], [668, -826], [668, -828], [665, -831], [665, -833], [658, -833], [658, -836], [657, -837], [657, -838], [651, -844], [649, -844], [648, -845], [647, -845], [646, -846], [645, -847], [643, -847], [635, -855], [635, -858], [636, -859], [636, -861], [631, -861], [629, -859], [627, -859], [626, -858], [624, -858], [621, -855]]}, "center": {"125-258, T": [635, -826]}}, +{"id": 1059, "name": "Taipei 101", "description": "Taipei 101 is a skyscraper in the skyline of Taipei, Taiwan. Once the tallest building in the world, it has since been overtaken by the Burj Khalifa in Dubai, United Arab Emirates.", "links": {"website": ["https://en.wikipedia.org/wiki/Taipei_101"], "subreddit": ["placeTW"], "discord": ["8xSQKCHSnT"]}, "path": {"99-120": [[-97, 422], [-97, 425], [-98, 425], [-98, 445], [-91, 445], [-91, 429], [-93, 425], [-93, 422]], "121-130": [[-95, 422], [-98, 426], [-98, 461], [-91, 461], [-91, 425], [-93, 425], [-93, 422]], "131-154": [[-96, 421], [-96, 425], [-98, 425], [-98, 500], [-91, 500], [-91, 425], [-93, 425], [-93, 421]], "155-258, T": [[-96, 406], [-96, 410], [-98, 410], [-98, 586], [-91, 586], [-91, 410], [-93, 410], [-93, 406]]}, "center": {"99-120": [-94, 434], "121-130": [-94, 442], "131-154": [-94, 462], "155-258, T": [-94, 497]}}, {"id": 1060, "name": "Taiwan", "description": "The island of Taiwan as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan"], "subreddit": ["taiwan"]}, "path": {"101-137": [[-79, 434], [-83, 439], [-85, 439], [-85, 441], [-83, 441], [-80, 446], [-76, 439], [-76, 437], [-78, 434]]}, "center": {"101-137": [-80, 440]}}, -{"id": 1061, "name": "Bravo", "description": "Bravo is the mascot of Taipei, Taiwan. Bravo's species is a Formosan black bear, an endemic subspecies of Asiatic black bear.", "links": {"website": ["https://bravo.travel.taipei/en"], "subreddit": ["placeTW"], "discord": ["8xSQKCHSnT"]}, "path": {"46-258": [[-76, 423], [-76, 427], [-75, 427], [-75, 440], [-74, 440], [-67, 433], [-67, 427], [-66, 427], [-66, 423]]}, "center": {"46-258": [-71, 428]}}, +{"id": 1061, "name": "Bravo", "description": "Bravo is the mascot of Taipei, Taiwan. Bravo's species is a Formosan black bear, an endemic subspecies of Asiatic black bear.", "links": {"website": ["https://bravo.travel.taipei/en"], "subreddit": ["placeTW"], "discord": ["8xSQKCHSnT"]}, "path": {"46-258, T": [[-76, 423], [-76, 427], [-75, 427], [-75, 440], [-74, 440], [-67, 433], [-67, 427], [-66, 427], [-66, 423]]}, "center": {"46-258, T": [-71, 428]}}, {"id": 1062, "name": "EVE Online", "description": "EVE Online is an economy-based space MMORPG (massively multiplayer online role-playing game).", "links": {"website": ["https://eveonline.com/", "https://en.wikipedia.org/wiki/Eve_Online"], "subreddit": ["Eve"]}, "path": {"119-134": [[-133, 445], [-133, 461], [-99, 461], [-99, 445]]}, "center": {"119-134": [-116, 453]}}, -{"id": 1063, "name": "Winged Pikmin", "description": "Winged Pikmin are a type of Pikmin that can fly.", "links": {"website": ["https://www.pikminwiki.com/Winged_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"66-116": [[206, 74], [204, 76], [204, 77], [203, 77], [201, 79], [203, 81], [203, 83], [207, 83], [207, 81], [209, 79], [208, 78], [208, 76]], "117-258": [[207, 72], [199, 78], [199, 80], [201, 83], [203, 84], [205, 84], [208, 82], [208, 75], [209, 74]]}, "center": {"66-116": [206, 79], "117-258": [204, 80]}}, -{"id": 1064, "name": "Glow Pikmin", "description": "Glow Pikmin are a type of Pikmin that can glow in the dark.", "links": {"website": ["https://www.pikminwiki.com/Glow_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"69-258": [[215, 72], [213, 74], [213, 76], [211, 78], [211, 79], [215, 84], [218, 84], [218, 80], [219, 79], [219, 78], [217, 76], [217, 74]]}, "center": {"69-258": [215, 79]}}, -{"id": 1065, "name": "Gats.io", "description": "Gats.io - Customize Upgrade Compete\n\nGats.io is a tactical, arena-based shooter. Select your weapon, armor and color. Attack and defeat other players to gain points, use points to unlock perks and special abilities.\n\nThe art is a tribute to the long-gone developer of the game, Dygn.", "links": {"website": ["http://gats.io/"], "subreddit": ["Gatsio"], "discord": ["zaWZm2y"]}, "path": {"87-102": [[-80, 489], [-71, 489], [-71, 498], [-80, 498]], "172-176": [[-1332, -74], [-1323, -74], [-1323, -65], [-1332, -65]], "209-217, 224-258": [[1468, 516], [1477, 516], [1477, 525], [1468, 525]]}, "center": {"87-102": [-75, 494], "172-176": [-1327, -69], "209-217, 224-258": [1473, 521]}}, -{"id": 1066, "name": "Rolace Group", "description": "An Alliance between The Professor Layton Community, The Ace Attorney Community and Rocc. \n\n(Also in alliance with Switzerland, Pats Logo, ASSE, and more)", "links": {"subreddit": ["professorlayton", "AceAttorney"], "discord": ["0zbq92d9640r86ac", "5krwbfRrve"]}, "path": {"88-259": [[-545, 183], [-545, 172], [-593, 172], [-593, 183]]}, "center": {"88-259": [-569, 178]}}, -{"id": 1067, "name": "Wriggle Nightbug", "description": "Wriggle is the first stage boss and mid-boss in Touhou 8 ~ Imperishable Night. She is a firefly youkai and next to her is a firefly which is a reference to her official game art.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"131-258": [[-544, 127], [-541, 125], [-539, 127], [-539, 125], [-540, 124], [-539, 123], [-538, 122], [-537, 123], [-536, 123], [-535, 123], [-534, 122], [-533, 123], [-532, 124], [-531, 125], [-530, 126], [-530, 127], [-530, 128], [-531, 129], [-531, 130], [-530, 131], [-530, 133], [-531, 134], [-533, 136], [-534, 137], [-535, 136], [-536, 135], [-538, 135], [-539, 134], [-540, 132], [-541, 131], [-542, 130], [-543, 129], [-544, 128]]}, "center": {"131-258": [-535, 131]}}, -{"id": 1068, "name": "Komodo Dragon", "description": "The largest extant species of lizard endemic to the Indonesian islands of Komodo, Rinca, Flores, and Gili Motang.", "links": {"website": ["https://en.wikipedia.org/wiki/Komodo_dragon"]}, "path": {"129-258": [[-705, -247], [-705, -248], [-702, -251], [-699, -251], [-698, -252], [-689, -252], [-688, -251], [-687, -251], [-685, -249], [-685, -243], [-684, -242], [-684, -241], [-683, -240], [-683, -238], [-682, -237], [-682, -235], [-683, -234], [-683, -232], [-684, -231], [-684, -230], [-687, -227], [-688, -226], [-689, -227], [-689, -229], [-690, -229], [-690, -231], [-691, -231], [-691, -233], [-692, -233], [-696, -234], [-695, -236], [-693, -236], [-693, -237], [-692, -237], [-690, -235], [-689, -235], [-689, -237], [-691, -239], [-693, -239], [-694, -238], [-696, -238], [-696, -239], [-697, -240], [-697, -241], [-700, -244], [-701, -244], [-702, -245], [-703, -245], [-704, -246], [-704, -243], [-703, -242], [-703, -241], [-707, -241], [-707, -242], [-706, -243], [-706, -247], [-705, -247], [-705, -248], [-704, -249], [-703, -250]]}, "center": {"129-258": [-692, -246]}}, -{"id": 1069, "name": "Jägermeister", "description": "Jägermeister (\"Hunter's Master\") is a German herbal liqueur that is produced and bottled in Wolfenbüttel, Lower Saxony. Additional bottling facilities are located in Kamenz, Saxony. Jägermeister contains 35% alcohol by volume and is made of 56 herbs.\n\nJägermeister is sold in many German bars and pubs, and is also exported worldwide. It has been popularized further by multiple German memes.\n\nThis art was drawn as a replacement for Maggi sauce because of controversy over the sauce's manufacturer, Nestlé.", "links": {"website": ["https://www.jagermeister.com", "https://en.wikipedia.org/wiki/J%C3%A4germeister"], "subreddit": ["placeDE", "ich_iel", "de"], "discord": ["placede"]}, "path": {"141-258": [[484, -390], [510, -390], [511, -391], [511, -434], [507, -438], [502, -438], [502, -443], [503, -444], [503, -446], [501, -448], [493, -448], [491, -446], [491, -444], [492, -443], [492, -438], [487, -438], [483, -434], [483, -391]]}, "center": {"141-258": [497, -416]}}, -{"id": 1070, "name": "Railjet", "description": "Railjet is a high-speed rail service in Europe operated by Austrian Federal Railways (ÖBB) and Czech Railways (ČD). Branded as Railjet Express (RJX) for the fastest services and as Railjet (RJ) for services with additional stops, it was introduced in 2008 and operates at speeds of up to 230 km/h (143 mph). Railjet is ÖBB's premier service and operates both domestically within Austria and on international services to adjacent major cities in the Czech Republic, Germany, Switzerland, Italy, Hungary and Slovakia.", "links": {"website": ["https://en.wikipedia.org/wiki/Railjet"]}, "path": {"124-258": [[-778, -388], [-779, -388], [-780, -387], [-781, -386], [-782, -385], [-783, -384], [-784, -383], [-784, -382], [-785, -381], [-785, -380], [-786, -379], [-786, -376], [-788, -376], [-789, -375], [-789, -370], [-598, -370], [-598, -375], [-599, -376], [-601, -376], [-601, -379], [-602, -380], [-602, -381], [-603, -382], [-603, -383], [-604, -384], [-605, -385], [-606, -386], [-607, -387], [-608, -388], [-609, -388], [-610, -389], [-673, -389], [-722, -389], [-723, -388], [-724, -387], [-724, -380], [-726, -380], [-726, -381], [-727, -382], [-727, -383], [-728, -384], [-729, -385], [-730, -386], [-731, -387], [-732, -388], [-733, -388], [-734, -389], [-736, -389], [-736, -390], [-742, -390], [-742, -389], [-761, -389], [-762, -390], [-766, -390], [-767, -389], [-774, -389], [-777, -389]]}, "center": {"124-258": [-773, -380]}}, -{"id": 1071, "name": "TCT (The Campaign Trail)", "description": "The Campaign Trail is a browser game that lets you play as candidates running for President of the United States.", "links": {"website": ["https://www.newcampaigntrail.com/campaign-trail/index.html"], "subreddit": ["thecampaigntrail"], "discord": ["thecampaigntrail"]}, "path": {"66-258": [[40, 138], [50, 138], [50, 142], [40, 142]]}, "center": {"66-258": [45, 140]}}, -{"id": 1072, "name": "Takanashi Kiara Oktoberfest", "description": "A depiction of Takanashi Kiara, an Austrian vtuber from Hololive English, wearing a dirndl outfit, typically worn during Oktoberfest. Kobo Kanaeru from Hololive Indonesia is also depicted accompanying her (bottom right), crying while drinking the overflowing beer. Kobo is often paired with Kiara by their fans for their wholesome mother-daughter relationship.", "links": {"subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"131-258": [[-225, -824], [-159, -824], [-159, -912], [-225, -912], [-225, -882]]}, "center": {"131-258": [-192, -868]}}, -{"id": 1073, "name": "Baso", "description": "It's a picture of Luna, Baso's cat. Baso is a german streamer, known to be friendly (unless you're playing Reyna), wholesome and loving cats. (Artwork made by Sukidingels)", "links": {"website": ["https://www.twitch.tv/baso"]}, "path": {"138-258": [[-681, -346], [-700, -344], [-695, -360], [-686, -361], [-682, -355], [-682, -352], [-681, -346], [-697, -345], [-701, -349], [-704, -346], [-701, -340], [-698, -344]]}, "center": {"138-258": [-689, -353]}}, -{"id": 1074, "name": "Octoprism", "description": "Octoprism is a Splatoon fan-made idol duo created in 2018 by Caitlin Koi, collaborating with Sampling Kid to make their music.\nThe duo consists of two octolings named Bo and Raina, who make music and host their own fan-made Splatfests through Discord.\n\nFor more information, visit the links here.", "links": {"website": ["https://inkidols.miraheze.org/wiki/Octoprism", "https://www.youtube.com/playlist?list=PLUGo2A8nTKerLlUCKLODqr3TFnM-Jxe9f"], "subreddit": ["OctoprismOfficial"], "discord": ["bPhHAFrws9"]}, "path": {"71-81": [[552, -47], [542, -47], [542, -36], [552, -36]], "102-109": [[-590, 243], [-600, 243], [-600, 254], [-590, 254]], "110-128": [[-590, 243], [-600, 243], [-600, 240], [-608, 240], [-608, 248], [-600, 248], [-600, 254], [-590, 254]], "129-132": [[-600, 240], [-606, 240], [-606, 248], [-600, 248]], "155-258": [[-600, 239], [-610, 239], [-610, 248], [-600, 248]]}, "center": {"71-81": [547, -41], "102-109": [-595, 249], "110-128": [-595, 248], "129-132": [-603, 244], "155-258": [-605, 244]}}, -{"id": 1075, "name": "N7 Armor Stripe", "description": "Iconic stripe from Commander Shepard's armor in the game series Mass Effect.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"72-258": [[370, -325], [391, -325], [387, -321], [370, -321]]}, "center": {"72-258": [380, -323]}}, +{"id": 1063, "name": "Winged Pikmin", "description": "Winged Pikmin are a type of Pikmin that can fly.", "links": {"website": ["https://www.pikminwiki.com/Winged_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"66-116": [[206, 74], [204, 76], [204, 77], [203, 77], [201, 79], [203, 81], [203, 83], [207, 83], [207, 81], [209, 79], [208, 78], [208, 76]], "117-258, T": [[207, 72], [199, 78], [199, 80], [201, 83], [203, 84], [205, 84], [208, 82], [208, 75], [209, 74]]}, "center": {"66-116": [206, 79], "117-258, T": [204, 80]}}, +{"id": 1064, "name": "Glow Pikmin", "description": "Glow Pikmin are a type of Pikmin that can glow in the dark.", "links": {"website": ["https://www.pikminwiki.com/Glow_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"69-258, T": [[215, 72], [213, 74], [213, 76], [211, 78], [211, 79], [215, 84], [218, 84], [218, 80], [219, 79], [219, 78], [217, 76], [217, 74]]}, "center": {"69-258, T": [215, 79]}}, +{"id": 1065, "name": "Gats.io", "description": "Gats.io - Customize Upgrade Compete\n\nGats.io is a tactical, arena-based shooter. Select your weapon, armor and color. Attack and defeat other players to gain points, use points to unlock perks and special abilities.\n\nThe art is a tribute to the long-gone developer of the game, Dygn.", "links": {"website": ["http://gats.io/"], "subreddit": ["Gatsio"], "discord": ["zaWZm2y"]}, "path": {"87-102": [[-80, 489], [-71, 489], [-71, 498], [-80, 498]], "172-176": [[-1332, -74], [-1323, -74], [-1323, -65], [-1332, -65]], "209-217, 224-258, T": [[1468, 516], [1477, 516], [1477, 525], [1468, 525]]}, "center": {"87-102": [-75, 494], "172-176": [-1327, -69], "209-217, 224-258, T": [1473, 521]}}, +{"id": 1066, "name": "Rolace Group", "description": "An Alliance between The Professor Layton Community, The Ace Attorney Community and Rocc. \n\n(Also in alliance with Switzerland, Pats Logo, ASSE, and more)", "links": {"subreddit": ["professorlayton", "AceAttorney"], "discord": ["0zbq92d9640r86ac", "5krwbfRrve"]}, "path": {"88-259, T": [[-545, 183], [-545, 172], [-593, 172], [-593, 183]]}, "center": {"88-259, T": [-569, 178]}}, +{"id": 1067, "name": "Wriggle Nightbug", "description": "Wriggle is the first stage boss and mid-boss in Touhou 8 ~ Imperishable Night. She is a firefly youkai and next to her is a firefly which is a reference to her official game art.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"131-258, T": [[-544, 127], [-541, 125], [-539, 127], [-539, 125], [-540, 124], [-539, 123], [-538, 122], [-537, 123], [-536, 123], [-535, 123], [-534, 122], [-533, 123], [-532, 124], [-531, 125], [-530, 126], [-530, 127], [-530, 128], [-531, 129], [-531, 130], [-530, 131], [-530, 133], [-531, 134], [-533, 136], [-534, 137], [-535, 136], [-536, 135], [-538, 135], [-539, 134], [-540, 132], [-541, 131], [-542, 130], [-543, 129], [-544, 128]]}, "center": {"131-258, T": [-535, 131]}}, +{"id": 1068, "name": "Komodo Dragon", "description": "The largest extant species of lizard endemic to the Indonesian islands of Komodo, Rinca, Flores, and Gili Motang.", "links": {"website": ["https://en.wikipedia.org/wiki/Komodo_dragon"]}, "path": {"129-258, T": [[-705, -247], [-705, -248], [-702, -251], [-699, -251], [-698, -252], [-689, -252], [-688, -251], [-687, -251], [-685, -249], [-685, -243], [-684, -242], [-684, -241], [-683, -240], [-683, -238], [-682, -237], [-682, -235], [-683, -234], [-683, -232], [-684, -231], [-684, -230], [-687, -227], [-688, -226], [-689, -227], [-689, -229], [-690, -229], [-690, -231], [-691, -231], [-691, -233], [-692, -233], [-696, -234], [-695, -236], [-693, -236], [-693, -237], [-692, -237], [-690, -235], [-689, -235], [-689, -237], [-691, -239], [-693, -239], [-694, -238], [-696, -238], [-696, -239], [-697, -240], [-697, -241], [-700, -244], [-701, -244], [-702, -245], [-703, -245], [-704, -246], [-704, -243], [-703, -242], [-703, -241], [-707, -241], [-707, -242], [-706, -243], [-706, -247], [-705, -247], [-705, -248], [-704, -249], [-703, -250]]}, "center": {"129-258, T": [-692, -246]}}, +{"id": 1069, "name": "Jägermeister", "description": "Jägermeister (\"Hunter's Master\") is a German herbal liqueur that is produced and bottled in Wolfenbüttel, Lower Saxony. Additional bottling facilities are located in Kamenz, Saxony. Jägermeister contains 35% alcohol by volume and is made of 56 herbs.\n\nJägermeister is sold in many German bars and pubs, and is also exported worldwide. It has been popularized further by multiple German memes.\n\nThis art was drawn as a replacement for Maggi sauce because of controversy over the sauce's manufacturer, Nestlé.", "links": {"website": ["https://www.jagermeister.com", "https://en.wikipedia.org/wiki/J%C3%A4germeister"], "subreddit": ["placeDE", "ich_iel", "de"], "discord": ["placede"]}, "path": {"141-258, T": [[484, -390], [510, -390], [511, -391], [511, -434], [507, -438], [502, -438], [502, -443], [503, -444], [503, -446], [501, -448], [493, -448], [491, -446], [491, -444], [492, -443], [492, -438], [487, -438], [483, -434], [483, -391]]}, "center": {"141-258, T": [497, -416]}}, +{"id": 1070, "name": "Railjet", "description": "Railjet is a high-speed rail service in Europe operated by Austrian Federal Railways (ÖBB) and Czech Railways (ČD). Branded as Railjet Express (RJX) for the fastest services and as Railjet (RJ) for services with additional stops, it was introduced in 2008 and operates at speeds of up to 230 km/h (143 mph). Railjet is ÖBB's premier service and operates both domestically within Austria and on international services to adjacent major cities in the Czech Republic, Germany, Switzerland, Italy, Hungary and Slovakia.", "links": {"website": ["https://en.wikipedia.org/wiki/Railjet"]}, "path": {"124-258, T": [[-778, -388], [-779, -388], [-780, -387], [-781, -386], [-782, -385], [-783, -384], [-784, -383], [-784, -382], [-785, -381], [-785, -380], [-786, -379], [-786, -376], [-788, -376], [-789, -375], [-789, -370], [-598, -370], [-598, -375], [-599, -376], [-601, -376], [-601, -379], [-602, -380], [-602, -381], [-603, -382], [-603, -383], [-604, -384], [-605, -385], [-606, -386], [-607, -387], [-608, -388], [-609, -388], [-610, -389], [-673, -389], [-722, -389], [-723, -388], [-724, -387], [-724, -380], [-726, -380], [-726, -381], [-727, -382], [-727, -383], [-728, -384], [-729, -385], [-730, -386], [-731, -387], [-732, -388], [-733, -388], [-734, -389], [-736, -389], [-736, -390], [-742, -390], [-742, -389], [-761, -389], [-762, -390], [-766, -390], [-767, -389], [-774, -389], [-777, -389]]}, "center": {"124-258, T": [-773, -380]}}, +{"id": 1071, "name": "TCT (The Campaign Trail)", "description": "The Campaign Trail is a browser game that lets you play as candidates running for President of the United States.", "links": {"website": ["https://www.newcampaigntrail.com/campaign-trail/index.html"], "subreddit": ["thecampaigntrail"], "discord": ["thecampaigntrail"]}, "path": {"66-258, T": [[40, 138], [50, 138], [50, 142], [40, 142]]}, "center": {"66-258, T": [45, 140]}}, +{"id": 1072, "name": "Takanashi Kiara Oktoberfest", "description": "A depiction of Takanashi Kiara, an Austrian vtuber from Hololive English, wearing a dirndl outfit, typically worn during Oktoberfest. Kobo Kanaeru from Hololive Indonesia is also depicted accompanying her (bottom right), crying while drinking the overflowing beer. Kobo is often paired with Kiara by their fans for their wholesome mother-daughter relationship.", "links": {"subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"131-258, T": [[-225, -824], [-159, -824], [-159, -912], [-225, -912], [-225, -882]]}, "center": {"131-258, T": [-192, -868]}}, +{"id": 1073, "name": "Baso", "description": "It's a picture of Luna, Baso's cat. Baso is a german streamer, known to be friendly (unless you're playing Reyna), wholesome and loving cats. (Artwork made by Sukidingels)", "links": {"website": ["https://www.twitch.tv/baso"]}, "path": {"138-258, T": [[-681, -346], [-700, -344], [-695, -360], [-686, -361], [-682, -355], [-682, -352], [-681, -346], [-697, -345], [-701, -349], [-704, -346], [-701, -340], [-698, -344]]}, "center": {"138-258, T": [-689, -353]}}, +{"id": 1074, "name": "Octoprism", "description": "Octoprism is a Splatoon fan-made idol duo created in 2018 by Caitlin Koi, collaborating with Sampling Kid to make their music.\nThe duo consists of two octolings named Bo and Raina, who make music and host their own fan-made Splatfests through Discord.\n\nFor more information, visit the links here.", "links": {"website": ["https://inkidols.miraheze.org/wiki/Octoprism", "https://www.youtube.com/playlist?list=PLUGo2A8nTKerLlUCKLODqr3TFnM-Jxe9f"], "subreddit": ["OctoprismOfficial"], "discord": ["bPhHAFrws9"]}, "path": {"71-81": [[552, -47], [542, -47], [542, -36], [552, -36]], "102-109": [[-590, 243], [-600, 243], [-600, 254], [-590, 254]], "110-128": [[-590, 243], [-600, 243], [-600, 240], [-608, 240], [-608, 248], [-600, 248], [-600, 254], [-590, 254]], "129-132": [[-600, 240], [-606, 240], [-606, 248], [-600, 248]], "155-258, T": [[-600, 239], [-610, 239], [-610, 248], [-600, 248]]}, "center": {"71-81": [547, -41], "102-109": [-595, 249], "110-128": [-595, 248], "129-132": [-603, 244], "155-258, T": [-605, 244]}}, +{"id": 1075, "name": "N7 Armor Stripe", "description": "Iconic stripe from Commander Shepard's armor in the game series Mass Effect.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"72-258, T": [[370, -325], [391, -325], [387, -321], [370, -321]]}, "center": {"72-258, T": [380, -323]}}, {"id": 1077, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"134-151": [[-798, 321], [-770, 321], [-770, 344], [-798, 344]], "154-155": [[-796, 344], [-796, 327], [-771, 327], [-771, 344]]}, "center": {"134-151": [-784, 333], "154-155": [-783, 336]}}, -{"id": 1078, "name": "De sterrennacht", "description": "The Starry Night (Dutch: De sterrennacht) is an oil-on-canvas painting by the Dutch painter Vincent van Gogh. Painted in June 1889, it depicts the view from the east-facing window of his asylum room at Saint-Rémy-de-Provence, just before sunrise, with the addition of an imaginary village.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Starry_Night"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"142-258": [[-1000, -550], [-858, -550], [-858, -463], [-864, -460], [-867, -456], [-868, -453], [-869, -451], [-1000, -451]]}, "center": {"142-258": [-929, -500]}}, +{"id": 1078, "name": "De sterrennacht", "description": "The Starry Night (Dutch: De sterrennacht) is an oil-on-canvas painting by the Dutch painter Vincent van Gogh. Painted in June 1889, it depicts the view from the east-facing window of his asylum room at Saint-Rémy-de-Provence, just before sunrise, with the addition of an imaginary village.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Starry_Night"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"142-258, T": [[-1000, -550], [-858, -550], [-858, -463], [-864, -460], [-867, -456], [-868, -453], [-869, -451], [-1000, -451]]}, "center": {"142-258, T": [-929, -500]}}, {"id": 1079, "name": "Made in Abyss (Faputa)", "description": "Made in Abyss is a manga created by Akihito Tsukushi where the story is about a giant pit in the middle of a island with tales and mysteries. \n\nThe displayed character saying \"sosu\" is called Faputa and is an acquaintance of one of the main characters \"Reg\". Faputa ends all phrases with sosu as a form of politeness.", "links": {"subreddit": ["madeinabyss"]}, "path": {"1-198": [[-221, 463], [-205, 463], [-205, 499], [-221, 499]]}, "center": {"1-198": [-213, 481]}}, -{"id": 1080, "name": "Staiy", "description": "Staiy is a German-speaking Twitch streamer, YouTuber, and musician. He is known for his reactions on YouTube videos and opinions on the current political discourse. He is the sidekick of Dekarldent", "links": {"website": ["http://staiy.live/", "https://www.twitch.tv/staiy"], "discord": ["staiy"]}, "path": {"136-258": [[307, -675], [401, -675], [402, -612], [307, -610], [306, -675], [287, -675], [287, -637], [306, -637], [307, -637]]}, "center": {"136-258": [340, -643]}}, -{"id": 1081, "name": "Hyperdimension Neptunia Series", "description": "The Hyperdimension Neptunia series is an RPG game developed by Compile Heart and published by Idea Factory. Gamindustri is the central plot of the series itself, the characters are represented from gaming consoles, gaming companies, and even games themselves.", "links": {"website": ["https://www.compileheart.com/neptune/", "https://www.compileheart.com/neptune_mk2/", "http://ifi.games/neptunia-sisters", "https://ifi.games/game/neptunia-game-maker-revolution/", "http://nep-anime.tv/"], "subreddit": ["gamindustri"], "discord": ["neptunia"]}, "path": {"5-112": [[-91, 406], [-91, 401], [-49, 401], [-49, 396], [-46, 396], [-46, 383], [-40, 383], [-40, 378], [-17, 378], [-17, 392], [-20, 392], [-20, 400], [-26, 400], [-26, 402], [-27, 402], [-27, 403], [-28, 403], [-28, 404], [-33, 404], [-33, 410], [-39, 410], [-39, 406]], "114-120": [[-763, -205], [-763, -202], [-762, -202], [-762, -201], [-763, -201], [-763, -196], [-762, -196], [-762, -195], [-762, -192], [-761, -192], [-761, -191], [-758, -191], [-758, -189], [-759, -189], [-759, -187], [-758, -187], [-758, -184], [-754, -184], [-754, -185], [-751, -185], [-751, -187], [-750, -187], [-750, -188], [-748, -188], [-748, -194], [-747, -194], [-747, -195], [-746, -195], [-746, -199], [-747, -199], [-747, -205]], "145-258": [[-848, -237], [-794, -237], [-794, -219], [-787, -219], [-787, -206], [-868, -206], [-868, -221], [-865, -221], [-863, -224], [-859, -220], [-858, -220], [-857, -221], [-856, -222], [-855, -223], [-852, -223], [-851, -224], [-850, -228], [-850, -237]]}, "center": {"5-112": [-35, 393], "114-120": [-755, -198], "145-258": [-827, -221]}}, -{"id": 1082, "name": "El Gato Inmortal", "description": "Artwork to showcase a battle of space of another conflict between the Destiny community and Rubius community. \n\nThe left showcases the mascot of Destiny's community, which was believed to be a cat by Rubius' community. The right side showcases Rubius' logo, trying to attack it.\n\nThe original artwork nicknamed \"El Gato Immortal\", was submitted to Destiny's subreddit and the community decided to add it to place.", "links": {"website": ["https://www.reddit.com/r/Destiny/comments/155tam0/el_gato_inmortal/"], "subreddit": ["Destiny"]}, "path": {"76-258": [[673, 425], [673, 499], [814, 499], [814, 425]]}, "center": {"76-258": [744, 462]}}, -{"id": 1083, "name": "France", "description": "A map of Metropolitan France (the part of France located in Europe) and it's overseas departments and regions", "links": {"website": ["https://en.wikipedia.org/wiki/Metropolitan_France", "https://en.wikipedia.org/wiki/Overseas_departments_and_regions_of_France"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"138": [[945, 65], [942, 65], [942, 66], [935, 66], [934, 67], [928, 67], [927, 64], [923, 64], [923, 67], [922, 67], [921, 67], [921, 68], [920, 69], [919, 69], [918, 68], [912, 68], [912, 67], [910, 67], [909, 68], [908, 69], [902, 69], [901, 70], [899, 71], [898, 71], [897, 72], [898, 74], [899, 75], [899, 82], [901, 82], [902, 83], [904, 84], [906, 86], [908, 91], [906, 94], [904, 96], [900, 100], [901, 108], [912, 114], [940, 120], [966, 122], [986, 128], [989, 121], [989, 109], [981, 103], [983, 89], [986, 86], [987, 78], [973, 69], [947, 63]], "139-258": [[887, 129], [997, 129], [998, 64], [887, 64]]}, "center": {"138": [951, 93], "139-258": [943, 97]}}, -{"id": 1084, "name": "HimechiiVT", "description": "Himechii is a german Butterfly Vtuber. She sings Covers and plays fun games on Twitch", "links": {"discord": ["PvzCZJne"]}, "path": {"132-258": [[179, -342], [177, -338], [177, -333], [185, -333], [185, -339], [183, -342]]}, "center": {"132-258": [181, -337]}}, -{"id": 1085, "name": "Depresstiny", "description": "Old photo of streamer Destiny, which manifested as the emote \"Depresstiny\" in the Destiny community.\n\nThe text in the top left is a reference to an argument between Destiny and Qorantos, an employee of his, who due to lack of job experience had strange expectations for his pay.", "links": {"website": ["https://www.destiny.gg/"], "subreddit": ["Destiny"]}, "path": {"106-258": [[-764, -206], [-868, -206], [-868, -80], [-764, -80]]}, "center": {"106-258": [-816, -143]}}, -{"id": 1086, "name": "Great Wave of Kanagawa", "description": "This is a recreation of the famous Japanese painting, Great Wave off Kanagawa. This version has baguette boats as a result of an alliance with r/PlaceFR.", "links": {"subreddit": ["place_the_wave", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"122-258": [[888, -13], [888, -23], [960, -22], [959, -15], [997, -14], [996, 63], [888, 63], [888, -12]]}, "center": {"122-258": [935, 20]}}, -{"id": 1088, "name": "German Twitch Streamer Pacohontaz", "description": "The allmighty eye of the german Twitch streamer Pacohontaz, a bald dude with a fun mustache", "links": {"website": ["https://www.twitch.tv/pacohontaz"], "subreddit": ["pacohontaz"]}, "path": {"64-258": [[230, -235], [240, -235], [240, -244], [230, -244]]}, "center": {"64-258": [235, -239]}}, -{"id": 1089, "name": "Aboriginal Flag", "description": "The Australian Aboriginal Flag represents Aboriginal Australians. It is one of the officially proclaimed flags of Australia, and has special legal and political status together with the national flag and the Torres Strait Islander Flag, with which it is often flown.", "links": {"website": ["https://en.wikipedia.org/wiki/Australian_Aboriginal_Flag"]}, "path": {"132-258": [[-910, 73], [-910, 87], [-887, 87], [-887, 73]]}, "center": {"132-258": [-898, 80]}}, -{"id": 1090, "name": "Andromeda Initiative", "description": "The Andromeda Initiative is the group that leaves the Milky Way galaxy in order to explore and colonize the Andromeda galaxy in the game Mass Effect: Andromeda.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"19-210": [[370, -339], [370, -346], [384, -346], [384, -339]], "211-258": [[1196, -675], [1210, -675], [1210, -668], [1196, -668]]}, "center": {"19-210": [377, -342], "211-258": [1203, -671]}}, -{"id": 1091, "name": "Pretzel", "description": "An original bavarian \"Laugenbretzel\"", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"123-258": [[-796, -609], [-797, -608], [-798, -608], [-798, -606], [-799, -606], [-800, -590], [-796, -587], [-776, -587], [-772, -590], [-772, -607], [-776, -610], [-778, -610], [-778, -611], [-779, -612], [-780, -610], [-785, -610], [-786, -612], [-787, -610], [-792, -610], [-793, -612], [-794, -610], [-797, -609]]}, "center": {"123-258": [-786, -599]}}, -{"id": 1093, "name": "Legion", "description": "Legion is a Geth platform that joins Commander Shepard in the fight against the Collectors in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"75-258": [[384, -349], [389, -349], [389, -348], [390, -348], [390, -339], [384, -339]]}, "center": {"75-258": [387, -344]}}, -{"id": 1094, "name": "Petr Pavel", "description": "Retired army general who is the current president of the Czech Republic since March 2023", "links": {"website": ["https://en.wikipedia.org/wiki/Petr_Pavel"]}, "path": {"136-258": [[437, -147], [436, -153], [438, -167], [437, -176], [431, -183], [421, -185], [409, -184], [403, -176], [405, -173], [406, -163], [408, -162], [408, -154], [409, -149], [411, -142], [415, -141], [418, -141], [419, -136]]}, "center": {"136-258": [422, -169]}}, +{"id": 1080, "name": "Staiy", "description": "Staiy is a German-speaking Twitch streamer, YouTuber, and musician. He is known for his reactions on YouTube videos and opinions on the current political discourse. He is the sidekick of Dekarldent", "links": {"website": ["http://staiy.live/", "https://www.twitch.tv/staiy"], "discord": ["staiy"]}, "path": {"136-258, T": [[307, -675], [401, -675], [402, -612], [307, -610], [306, -675], [287, -675], [287, -637], [306, -637], [307, -637]]}, "center": {"136-258, T": [340, -643]}}, +{"id": 1081, "name": "Hyperdimension Neptunia Series", "description": "The Hyperdimension Neptunia series is an RPG game developed by Compile Heart and published by Idea Factory. Gamindustri is the central plot of the series itself, the characters are represented from gaming consoles, gaming companies, and even games themselves.", "links": {"website": ["https://www.compileheart.com/neptune/", "https://www.compileheart.com/neptune_mk2/", "http://ifi.games/neptunia-sisters", "https://ifi.games/game/neptunia-game-maker-revolution/", "http://nep-anime.tv/"], "subreddit": ["gamindustri"], "discord": ["neptunia"]}, "path": {"5-112": [[-91, 406], [-91, 401], [-49, 401], [-49, 396], [-46, 396], [-46, 383], [-40, 383], [-40, 378], [-17, 378], [-17, 392], [-20, 392], [-20, 400], [-26, 400], [-26, 402], [-27, 402], [-27, 403], [-28, 403], [-28, 404], [-33, 404], [-33, 410], [-39, 410], [-39, 406]], "114-120": [[-763, -205], [-763, -202], [-762, -202], [-762, -201], [-763, -201], [-763, -196], [-762, -196], [-762, -195], [-762, -192], [-761, -192], [-761, -191], [-758, -191], [-758, -189], [-759, -189], [-759, -187], [-758, -187], [-758, -184], [-754, -184], [-754, -185], [-751, -185], [-751, -187], [-750, -187], [-750, -188], [-748, -188], [-748, -194], [-747, -194], [-747, -195], [-746, -195], [-746, -199], [-747, -199], [-747, -205]], "145-258, T": [[-848, -237], [-794, -237], [-794, -219], [-787, -219], [-787, -206], [-868, -206], [-868, -221], [-865, -221], [-863, -224], [-859, -220], [-858, -220], [-857, -221], [-856, -222], [-855, -223], [-852, -223], [-851, -224], [-850, -228], [-850, -237]]}, "center": {"5-112": [-35, 393], "114-120": [-755, -198], "145-258, T": [-827, -221]}}, +{"id": 1082, "name": "El Gato Inmortal", "description": "Artwork to showcase a battle of space of another conflict between the Destiny community and Rubius community. \n\nThe left showcases the mascot of Destiny's community, which was believed to be a cat by Rubius' community. The right side showcases Rubius' logo, trying to attack it.\n\nThe original artwork nicknamed \"El Gato Immortal\", was submitted to Destiny's subreddit and the community decided to add it to place.", "links": {"website": ["https://www.reddit.com/r/Destiny/comments/155tam0/el_gato_inmortal/"], "subreddit": ["Destiny"]}, "path": {"76-258, T": [[673, 425], [673, 499], [814, 499], [814, 425]]}, "center": {"76-258, T": [744, 462]}}, +{"id": 1083, "name": "France", "description": "A map of Metropolitan France (the part of France located in Europe) and it's overseas departments and regions", "links": {"website": ["https://en.wikipedia.org/wiki/Metropolitan_France", "https://en.wikipedia.org/wiki/Overseas_departments_and_regions_of_France"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"138": [[945, 65], [942, 65], [942, 66], [935, 66], [934, 67], [928, 67], [927, 64], [923, 64], [923, 67], [922, 67], [921, 67], [921, 68], [920, 69], [919, 69], [918, 68], [912, 68], [912, 67], [910, 67], [909, 68], [908, 69], [902, 69], [901, 70], [899, 71], [898, 71], [897, 72], [898, 74], [899, 75], [899, 82], [901, 82], [902, 83], [904, 84], [906, 86], [908, 91], [906, 94], [904, 96], [900, 100], [901, 108], [912, 114], [940, 120], [966, 122], [986, 128], [989, 121], [989, 109], [981, 103], [983, 89], [986, 86], [987, 78], [973, 69], [947, 63]], "139-258, T": [[887, 129], [997, 129], [998, 64], [887, 64]]}, "center": {"138": [951, 93], "139-258, T": [943, 97]}}, +{"id": 1084, "name": "HimechiiVT", "description": "Himechii is a german Butterfly Vtuber. She sings Covers and plays fun games on Twitch", "links": {"discord": ["PvzCZJne"]}, "path": {"132-258, T": [[179, -342], [177, -338], [177, -333], [185, -333], [185, -339], [183, -342]]}, "center": {"132-258, T": [181, -337]}}, +{"id": 1085, "name": "Depresstiny", "description": "Old photo of streamer Destiny, which manifested as the emote \"Depresstiny\" in the Destiny community.\n\nThe text in the top left is a reference to an argument between Destiny and Qorantos, an employee of his, who due to lack of job experience had strange expectations for his pay.", "links": {"website": ["https://www.destiny.gg/"], "subreddit": ["Destiny"]}, "path": {"106-258, T": [[-764, -206], [-868, -206], [-868, -80], [-764, -80]]}, "center": {"106-258, T": [-816, -143]}}, +{"id": 1086, "name": "Great Wave of Kanagawa", "description": "This is a recreation of the famous Japanese painting, Great Wave off Kanagawa. This version has baguette boats as a result of an alliance with r/PlaceFR.", "links": {"subreddit": ["place_the_wave", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"122-258, T": [[888, -13], [888, -23], [960, -22], [959, -15], [997, -14], [996, 63], [888, 63], [888, -12]]}, "center": {"122-258, T": [935, 20]}}, +{"id": 1088, "name": "German Twitch Streamer Pacohontaz", "description": "The allmighty eye of the german Twitch streamer Pacohontaz, a bald dude with a fun mustache", "links": {"website": ["https://www.twitch.tv/pacohontaz"], "subreddit": ["pacohontaz"]}, "path": {"64-258, T": [[230, -235], [240, -235], [240, -244], [230, -244]]}, "center": {"64-258, T": [235, -239]}}, +{"id": 1089, "name": "Aboriginal Flag", "description": "The Australian Aboriginal Flag represents Aboriginal Australians. It is one of the officially proclaimed flags of Australia, and has special legal and political status together with the national flag and the Torres Strait Islander Flag, with which it is often flown.", "links": {"website": ["https://en.wikipedia.org/wiki/Australian_Aboriginal_Flag"]}, "path": {"132-258, T": [[-910, 73], [-910, 87], [-887, 87], [-887, 73]]}, "center": {"132-258, T": [-898, 80]}}, +{"id": 1090, "name": "Andromeda Initiative", "description": "The Andromeda Initiative is the group that leaves the Milky Way galaxy in order to explore and colonize the Andromeda galaxy in the game Mass Effect: Andromeda.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"19-210": [[370, -339], [370, -346], [384, -346], [384, -339]], "211-258, T": [[1196, -675], [1210, -675], [1210, -668], [1196, -668]]}, "center": {"19-210": [377, -342], "211-258, T": [1203, -671]}}, +{"id": 1091, "name": "Pretzel", "description": "An original bavarian \"Laugenbretzel\"", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"123-258, T": [[-796, -609], [-797, -608], [-798, -608], [-798, -606], [-799, -606], [-800, -590], [-796, -587], [-776, -587], [-772, -590], [-772, -607], [-776, -610], [-778, -610], [-778, -611], [-779, -612], [-780, -610], [-785, -610], [-786, -612], [-787, -610], [-792, -610], [-793, -612], [-794, -610], [-797, -609]]}, "center": {"123-258, T": [-786, -599]}}, +{"id": 1093, "name": "Legion", "description": "Legion is a Geth platform that joins Commander Shepard in the fight against the Collectors in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"75-258, T": [[384, -349], [389, -349], [389, -348], [390, -348], [390, -339], [384, -339]]}, "center": {"75-258, T": [387, -344]}}, +{"id": 1094, "name": "Petr Pavel", "description": "Retired army general who is the current president of the Czech Republic since March 2023", "links": {"website": ["https://en.wikipedia.org/wiki/Petr_Pavel"]}, "path": {"136-258, T": [[437, -147], [436, -153], [438, -167], [437, -176], [431, -183], [421, -185], [409, -184], [403, -176], [405, -173], [406, -163], [408, -162], [408, -154], [409, -149], [411, -142], [415, -141], [418, -141], [419, -136]]}, "center": {"136-258, T": [422, -169]}}, {"id": 1095, "name": "Papaplatte", "description": "The image of the German Streamer Papaplatte drawn by the community of the Streamer Stegi", "links": {"website": ["https://www.twitch.tv/stegi", "https://www.twitch.tv/papaplatte"]}, "path": {"117-126": [[-35, -632], [-36, -641], [-130, -633], [-132, -638], [-135, -647], [-136, -694], [-140, -699], [-139, -738], [-123, -752], [-109, -753], [-93, -749], [-89, -754], [-83, -753], [-82, -751], [-73, -754], [-62, -754], [-44, -734], [-40, -737], [-31, -720], [-36, -710], [-32, -704], [-32, -652]]}, "center": {"117-126": [-84, -690]}}, -{"id": 1096, "name": "Charles Aznavour", "description": "Charles Aznavour was a French-Armenian singer, lyricist, actor and diplomat. Aznavour was known for his distinctive vibrato tenor voice. In a career as a composer, singer and songwriter, spanning over 70 years, he recorded more than 1,200 songs interpreted in 9 languages Moreover, he wrote or co-wrote more than 1,000 songs for himself and others. Aznavour is regarded as one of the greatest songwriters of all time and an icon of 20th-century pop culture.", "links": {"website": ["https://en.wikipedia.org/wiki/Charles_Aznavour"], "subreddit": ["armenia", "france", "placeFR"], "discord": ["placeFR"]}, "path": {"123-258": [[997, -67], [997, -73], [996, -73], [996, -76], [995, -76], [995, -77], [994, -77], [994, -78], [993, -79], [992, -80], [991, -81], [990, -81], [989, -82], [985, -82], [984, -83], [983, -83], [982, -84], [979, -84], [978, -85], [970, -85], [969, -84], [966, -84], [965, -83], [963, -83], [962, -82], [961, -81], [960, -80], [960, -79], [959, -79], [958, -78], [957, -77], [957, -67], [958, -66], [959, -58], [960, -55], [961, -51], [962, -49], [964, -46], [964, -43], [965, -43], [966, -41], [967, -39], [968, -37], [968, -36], [967, -35], [965, -35], [964, -34], [963, -33], [962, -33], [961, -32], [960, -31], [960, -14], [998, -14], [998, -58]]}, "center": {"123-258": [978, -64]}}, -{"id": 1097, "name": "Champagne", "description": "Champagne is a sparkling wine originated and produced in the Champagne wine region of France under the rules of the appellation, that demand specific vineyard practices, sourcing of grapes exclusively from designated places within it, specific grape-pressing methods and secondary fermentation of the wine in the bottle to cause carbonation.", "links": {"website": ["https://en.wikipedia.org/wiki/Champagne"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"122-258": [[957, -60], [957, -48], [958, -45], [959, -42], [960, -41], [960, -22], [944, -22], [944, -23], [945, -24], [946, -24], [946, -29], [945, -30], [944, -31], [944, -32], [943, -33], [943, -46], [944, -47], [950, -47], [951, -48], [951, -60], [952, -61], [953, -62], [955, -62], [956, -61]]}, "center": {"122-258": [952, -36]}}, -{"id": 1098, "name": "Mordin Solus", "description": "Mordin is a former Salarian STG agent and scientist that joins Commander Shepard in the fight against the Collectors in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"76-258": [[409, -369], [415, -369], [415, -360], [409, -360]]}, "center": {"76-258": [412, -364]}}, -{"id": 1099, "name": "Der Stuhl", "description": "\"Der Stuhl\" (The chair) is an inside joke by the German nightwatch. It serves as the symbol in honor of those who sacrifice their sleep to defend the German artworks. (Kenji & Flarson, geht ins Bett)\n\nPS: Never ask them about their 4th night", "links": {"website": ["https://en.wikipedia.org/wiki/Germany"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"147-258": [[-836, -610], [-811, -610], [-804, -610], [-801, -583], [-800, -559], [-778, -559], [-777, -551], [-850, -551], [-849, -560], [-826, -559], [-825, -607], [-835, -607]]}, "center": {"147-258": [-813, -565]}}, -{"id": 1100, "name": "Furcorn and Toe Jammer (My Singing Monsters)", "description": "Two monsters from the Big Blue Bubble mobile and PC game My Singing Monsters.", "links": {"website": ["https://mysingingmonsters.fandom.com/wiki/Furcorn", "https://mysingingmonsters.fandom.com/wiki/Toe_Jammer"], "subreddit": ["MySingingMonsters"]}, "path": {"173-258": [[475, -239], [478, -239], [478, -240], [485, -240], [489, -236], [489, -226], [487, -224], [487, -222], [489, -221], [489, -217], [478, -217], [478, -221], [478, -220], [478, -219], [477, -219], [476, -218], [474, -218], [467, -218], [466, -219], [464, -219], [463, -220], [462, -220], [462, -224], [463, -225], [463, -227], [464, -228], [464, -230], [465, -231], [466, -231], [467, -232], [474, -232], [476, -231], [477, -230], [477, -228], [478, -227], [478, -232], [477, -233], [475, -233]]}, "center": {"173-258": [471, -225]}}, -{"id": 1101, "name": "Long Live Belarus (Жыве Беларусь)", "description": "A Belarusian patriotic motto widely used by members of the Belarusian democratic opposition.\n\nThe phrase has been widely used by opponents of President Alexander Lukashenko, both inside and outside of Belarus, during the 2020 Belarusian protests.\n\nThe Ukrainian flag heart and the Orthodox cross can be seen since days 2 and 3.", "links": {"subreddit": ["PlaceFreeRussia", "FreedomofRussia", "belarus"]}, "path": {"68-73": [[168, 129], [168, 139], [237, 139], [237, 129]], "63-67, 82-85": [[168, 129], [168, 139], [227, 139], [227, 129]], "91-258": [[227, 129], [227, 139], [155, 139], [155, 129]]}, "center": {"68-73": [203, 134], "63-67, 82-85": [198, 134], "91-258": [191, 134]}}, -{"id": 1102, "name": "Rettungsgasse Sign", "description": "This Traffic Sign is a reminder for german drivers to form an emergency line, if they encounter a traffic jam.\nYou are required by law to form one, so that big firetrucks, police and ambulances can pass safely. You will find it mainly on the Autobahn.", "links": {"subreddit": ["placeDE", "ich_iel", "de", "STVO"], "discord": ["placeDE"]}, "path": {"199-258": [[-1346, -430], [-1292, -430], [-1292, -395], [-1346, -395]]}, "center": {"199-258": [-1319, -412]}}, -{"id": 1103, "name": "Tabaluga", "description": "Tabaluga is a German media franchise featuring a fictional green dragon. He is about 8 \"dragon-years\" old (800 human years, as one year for a dragon is 100 for a human), and he inhabits the fictional province of Greenland. \nTabaluga was created by German rock musician Peter Maffay, children's songwriter Rolf Zuckowski and author Gregor Rottschalk. Artist Helme Heine drew the image of Tabaluga as it is currently known. \nFirst appearance: \"Tabaluga ... oder die Reise zur Vernunft\"; 1983", "links": {"website": ["https://en.wikipedia.org/wiki/Tabaluga"]}, "path": {"142-258": [[-556, -551], [-555, -552], [-554, -553], [-554, -554], [-554, -555], [-553, -556], [-553, -557], [-553, -558], [-553, -559], [-553, -560], [-554, -561], [-554, -562], [-553, -562], [-552, -562], [-551, -562], [-550, -561], [-548, -561], [-547, -561], [-546, -562], [-546, -564], [-547, -565], [-547, -566], [-547, -567], [-548, -568], [-548, -569], [-549, -569], [-550, -570], [-551, -570], [-552, -570], [-552, -571], [-553, -571], [-554, -571], [-555, -571], [-555, -569], [-556, -569], [-556, -568], [-557, -568], [-558, -568], [-558, -569], [-559, -569], [-560, -570], [-560, -571], [-559, -571], [-558, -572], [-557, -572], [-556, -572], [-555, -572], [-554, -573], [-553, -573], [-552, -573], [-551, -574], [-550, -574], [-549, -574], [-548, -574], [-547, -575], [-546, -576], [-546, -577], [-545, -578], [-545, -579], [-546, -580], [-547, -580], [-548, -579], [-549, -578], [-551, -578], [-551, -579], [-552, -579], [-553, -579], [-553, -580], [-554, -580], [-554, -581], [-554, -582], [-554, -583], [-554, -584], [-555, -585], [-555, -586], [-555, -587], [-556, -588], [-556, -589], [-557, -590], [-558, -590], [-559, -590], [-560, -590], [-561, -590], [-562, -591], [-561, -592], [-560, -593], [-560, -594], [-559, -595], [-558, -596], [-557, -597], [-558, -597], [-559, -596], [-560, -596], [-561, -595], [-562, -594], [-563, -593], [-563, -592], [-563, -591], [-564, -591], [-565, -591], [-566, -591], [-567, -591], [-568, -592], [-568, -593], [-568, -594], [-568, -595], [-569, -596], [-569, -595], [-570, -594], [-570, -593], [-570, -592], [-570, -591], [-570, -590], [-570, -589], [-571, -588], [-572, -589], [-573, -590], [-574, -589], [-575, -589], [-576, -589], [-577, -588], [-576, -587], [-575, -586], [-575, -585], [-576, -584], [-577, -583], [-578, -582], [-579, -581], [-578, -581], [-577, -581], [-576, -581], [-575, -581], [-575, -580], [-576, -579], [-576, -578], [-577, -577], [-577, -576], [-577, -575], [-577, -574], [-576, -575], [-575, -576], [-574, -575], [-573, -574], [-573, -573], [-572, -572], [-571, -571], [-570, -571], [-569, -571], [-568, -571], [-567, -570], [-568, -569], [-569, -569], [-570, -568], [-571, -569], [-572, -569], [-573, -570], [-574, -571], [-575, -571], [-576, -571], [-577, -570], [-578, -569], [-579, -568], [-580, -568], [-581, -567], [-582, -566], [-582, -565], [-582, -564], [-582, -563], [-582, -562], [-582, -561], [-581, -562], [-580, -563], [-579, -564], [-578, -565], [-577, -564], [-577, -563], [-578, -562], [-578, -561], [-578, -560], [-577, -559], [-576, -558], [-575, -558], [-574, -557], [-573, -557], [-572, -556], [-572, -555], [-573, -554], [-572, -553], [-572, -552], [-571, -552], [-570, -552], [-569, -552], [-569, -551], [-568, -551], [-567, -551], [-566, -551], [-565, -551], [-564, -551], [-563, -551], [-562, -551], [-561, -551], [-560, -551], [-559, -551], [-558, -551], [-557, -551]]}, "center": {"142-258": [-564, -581]}}, -{"id": 1104, "name": "Herren im Bad", "description": "This artwork depicts a scene from the sketch \"Herren im Bad\" (Gentlemen in the bathtub) by german comedian Loriot, in which two men find themselves in the same bathtub due to a confusing hotel layout.", "links": {"website": ["https://de.wikipedia.org/wiki/Herren_im_Bad"], "subreddit": ["placeDE"], "discord": ["placede"]}, "path": {"140-258": [[-775, -550], [-775, -566], [-770, -571], [-767, -571], [-767, -595], [-703, -595], [-703, -569], [-700, -566], [-700, -550]]}, "center": {"140-258": [-737, -572]}}, +{"id": 1096, "name": "Charles Aznavour", "description": "Charles Aznavour was a French-Armenian singer, lyricist, actor and diplomat. Aznavour was known for his distinctive vibrato tenor voice. In a career as a composer, singer and songwriter, spanning over 70 years, he recorded more than 1,200 songs interpreted in 9 languages Moreover, he wrote or co-wrote more than 1,000 songs for himself and others. Aznavour is regarded as one of the greatest songwriters of all time and an icon of 20th-century pop culture.", "links": {"website": ["https://en.wikipedia.org/wiki/Charles_Aznavour"], "subreddit": ["armenia", "france", "placeFR"], "discord": ["placeFR"]}, "path": {"123-258, T": [[997, -67], [997, -73], [996, -73], [996, -76], [995, -76], [995, -77], [994, -77], [994, -78], [993, -79], [992, -80], [991, -81], [990, -81], [989, -82], [985, -82], [984, -83], [983, -83], [982, -84], [979, -84], [978, -85], [970, -85], [969, -84], [966, -84], [965, -83], [963, -83], [962, -82], [961, -81], [960, -80], [960, -79], [959, -79], [958, -78], [957, -77], [957, -67], [958, -66], [959, -58], [960, -55], [961, -51], [962, -49], [964, -46], [964, -43], [965, -43], [966, -41], [967, -39], [968, -37], [968, -36], [967, -35], [965, -35], [964, -34], [963, -33], [962, -33], [961, -32], [960, -31], [960, -14], [998, -14], [998, -58]]}, "center": {"123-258, T": [978, -64]}}, +{"id": 1097, "name": "Champagne", "description": "Champagne is a sparkling wine originated and produced in the Champagne wine region of France under the rules of the appellation, that demand specific vineyard practices, sourcing of grapes exclusively from designated places within it, specific grape-pressing methods and secondary fermentation of the wine in the bottle to cause carbonation.", "links": {"website": ["https://en.wikipedia.org/wiki/Champagne"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"122-258, T": [[957, -60], [957, -48], [958, -45], [959, -42], [960, -41], [960, -22], [944, -22], [944, -23], [945, -24], [946, -24], [946, -29], [945, -30], [944, -31], [944, -32], [943, -33], [943, -46], [944, -47], [950, -47], [951, -48], [951, -60], [952, -61], [953, -62], [955, -62], [956, -61]]}, "center": {"122-258, T": [952, -36]}}, +{"id": 1098, "name": "Mordin Solus", "description": "Mordin is a former Salarian STG agent and scientist that joins Commander Shepard in the fight against the Collectors in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"76-258, T": [[409, -369], [415, -369], [415, -360], [409, -360]]}, "center": {"76-258, T": [412, -364]}}, +{"id": 1099, "name": "Der Stuhl", "description": "\"Der Stuhl\" (The chair) is an inside joke by the German nightwatch. It serves as the symbol in honor of those who sacrifice their sleep to defend the German artworks. (Kenji & Flarson, geht ins Bett)\n\nPS: Never ask them about their 4th night", "links": {"website": ["https://en.wikipedia.org/wiki/Germany"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"147-258, T": [[-836, -610], [-811, -610], [-804, -610], [-801, -583], [-800, -559], [-778, -559], [-777, -551], [-850, -551], [-849, -560], [-826, -559], [-825, -607], [-835, -607]]}, "center": {"147-258, T": [-813, -565]}}, +{"id": 1100, "name": "Furcorn and Toe Jammer (My Singing Monsters)", "description": "Two monsters from the Big Blue Bubble mobile and PC game My Singing Monsters.", "links": {"website": ["https://mysingingmonsters.fandom.com/wiki/Furcorn", "https://mysingingmonsters.fandom.com/wiki/Toe_Jammer"], "subreddit": ["MySingingMonsters"]}, "path": {"173-258, T": [[475, -239], [478, -239], [478, -240], [485, -240], [489, -236], [489, -226], [487, -224], [487, -222], [489, -221], [489, -217], [478, -217], [478, -221], [478, -220], [478, -219], [477, -219], [476, -218], [474, -218], [467, -218], [466, -219], [464, -219], [463, -220], [462, -220], [462, -224], [463, -225], [463, -227], [464, -228], [464, -230], [465, -231], [466, -231], [467, -232], [474, -232], [476, -231], [477, -230], [477, -228], [478, -227], [478, -232], [477, -233], [475, -233]]}, "center": {"173-258, T": [471, -225]}}, +{"id": 1101, "name": "Long Live Belarus (Жыве Беларусь)", "description": "A Belarusian patriotic motto widely used by members of the Belarusian democratic opposition.\n\nThe phrase has been widely used by opponents of President Alexander Lukashenko, both inside and outside of Belarus, during the 2020 Belarusian protests.\n\nThe Ukrainian flag heart and the Orthodox cross can be seen since days 2 and 3.", "links": {"subreddit": ["PlaceFreeRussia", "FreedomofRussia", "belarus"]}, "path": {"68-73": [[168, 129], [168, 139], [237, 139], [237, 129]], "63-67, 82-85": [[168, 129], [168, 139], [227, 139], [227, 129]], "91-258, T": [[227, 129], [227, 139], [155, 139], [155, 129]]}, "center": {"68-73": [203, 134], "63-67, 82-85": [198, 134], "91-258, T": [191, 134]}}, +{"id": 1102, "name": "Rettungsgasse Sign", "description": "This Traffic Sign is a reminder for german drivers to form an emergency line, if they encounter a traffic jam.\nYou are required by law to form one, so that big firetrucks, police and ambulances can pass safely. You will find it mainly on the Autobahn.", "links": {"subreddit": ["placeDE", "ich_iel", "de", "STVO"], "discord": ["placeDE"]}, "path": {"199-258, T": [[-1346, -430], [-1292, -430], [-1292, -395], [-1346, -395]]}, "center": {"199-258, T": [-1319, -412]}}, +{"id": 1103, "name": "Tabaluga", "description": "Tabaluga is a German media franchise featuring a fictional green dragon. He is about 8 \"dragon-years\" old (800 human years, as one year for a dragon is 100 for a human), and he inhabits the fictional province of Greenland. \nTabaluga was created by German rock musician Peter Maffay, children's songwriter Rolf Zuckowski and author Gregor Rottschalk. Artist Helme Heine drew the image of Tabaluga as it is currently known. \nFirst appearance: \"Tabaluga ... oder die Reise zur Vernunft\"; 1983", "links": {"website": ["https://en.wikipedia.org/wiki/Tabaluga"]}, "path": {"142-258, T": [[-556, -551], [-555, -552], [-554, -553], [-554, -554], [-554, -555], [-553, -556], [-553, -557], [-553, -558], [-553, -559], [-553, -560], [-554, -561], [-554, -562], [-553, -562], [-552, -562], [-551, -562], [-550, -561], [-548, -561], [-547, -561], [-546, -562], [-546, -564], [-547, -565], [-547, -566], [-547, -567], [-548, -568], [-548, -569], [-549, -569], [-550, -570], [-551, -570], [-552, -570], [-552, -571], [-553, -571], [-554, -571], [-555, -571], [-555, -569], [-556, -569], [-556, -568], [-557, -568], [-558, -568], [-558, -569], [-559, -569], [-560, -570], [-560, -571], [-559, -571], [-558, -572], [-557, -572], [-556, -572], [-555, -572], [-554, -573], [-553, -573], [-552, -573], [-551, -574], [-550, -574], [-549, -574], [-548, -574], [-547, -575], [-546, -576], [-546, -577], [-545, -578], [-545, -579], [-546, -580], [-547, -580], [-548, -579], [-549, -578], [-551, -578], [-551, -579], [-552, -579], [-553, -579], [-553, -580], [-554, -580], [-554, -581], [-554, -582], [-554, -583], [-554, -584], [-555, -585], [-555, -586], [-555, -587], [-556, -588], [-556, -589], [-557, -590], [-558, -590], [-559, -590], [-560, -590], [-561, -590], [-562, -591], [-561, -592], [-560, -593], [-560, -594], [-559, -595], [-558, -596], [-557, -597], [-558, -597], [-559, -596], [-560, -596], [-561, -595], [-562, -594], [-563, -593], [-563, -592], [-563, -591], [-564, -591], [-565, -591], [-566, -591], [-567, -591], [-568, -592], [-568, -593], [-568, -594], [-568, -595], [-569, -596], [-569, -595], [-570, -594], [-570, -593], [-570, -592], [-570, -591], [-570, -590], [-570, -589], [-571, -588], [-572, -589], [-573, -590], [-574, -589], [-575, -589], [-576, -589], [-577, -588], [-576, -587], [-575, -586], [-575, -585], [-576, -584], [-577, -583], [-578, -582], [-579, -581], [-578, -581], [-577, -581], [-576, -581], [-575, -581], [-575, -580], [-576, -579], [-576, -578], [-577, -577], [-577, -576], [-577, -575], [-577, -574], [-576, -575], [-575, -576], [-574, -575], [-573, -574], [-573, -573], [-572, -572], [-571, -571], [-570, -571], [-569, -571], [-568, -571], [-567, -570], [-568, -569], [-569, -569], [-570, -568], [-571, -569], [-572, -569], [-573, -570], [-574, -571], [-575, -571], [-576, -571], [-577, -570], [-578, -569], [-579, -568], [-580, -568], [-581, -567], [-582, -566], [-582, -565], [-582, -564], [-582, -563], [-582, -562], [-582, -561], [-581, -562], [-580, -563], [-579, -564], [-578, -565], [-577, -564], [-577, -563], [-578, -562], [-578, -561], [-578, -560], [-577, -559], [-576, -558], [-575, -558], [-574, -557], [-573, -557], [-572, -556], [-572, -555], [-573, -554], [-572, -553], [-572, -552], [-571, -552], [-570, -552], [-569, -552], [-569, -551], [-568, -551], [-567, -551], [-566, -551], [-565, -551], [-564, -551], [-563, -551], [-562, -551], [-561, -551], [-560, -551], [-559, -551], [-558, -551], [-557, -551]]}, "center": {"142-258, T": [-564, -581]}}, +{"id": 1104, "name": "Herren im Bad", "description": "This artwork depicts a scene from the sketch \"Herren im Bad\" (Gentlemen in the bathtub) by german comedian Loriot, in which two men find themselves in the same bathtub due to a confusing hotel layout.", "links": {"website": ["https://de.wikipedia.org/wiki/Herren_im_Bad"], "subreddit": ["placeDE"], "discord": ["placede"]}, "path": {"140-258, T": [[-775, -550], [-775, -566], [-770, -571], [-767, -571], [-767, -595], [-703, -595], [-703, -569], [-700, -566], [-700, -550]]}, "center": {"140-258, T": [-737, -572]}}, {"id": 1105, "name": "Flag of the United Kingdom", "description": "The flag of the United Kingdom of Great Britain & Northern Ireland. The flag was placed here as a response to the Argentinians placing the Falkland Islands on their flag.", "links": {"website": ["https://placeuk.co"], "subreddit": ["ukplace"], "discord": ["ukplace"]}, "path": {"139-150": [[203, -676], [447, -676], [447, -797], [203, -797]]}, "center": {"139-150": [325, -736]}}, -{"id": 1106, "name": "HimechiiVT", "description": "Himechii is a German butterfly Vtuber. She is known for singing anime covers and playing games on twitch.", "links": {"website": ["https://www.twitch.tv/himechiivt"], "discord": ["PvzCZJne"]}, "path": {"140-258": [[181, -342], [178, -342], [177, -339], [177, -333], [185, -333], [185, -339], [183, -342]]}, "center": {"140-258": [181, -337]}}, -{"id": 1107, "name": "Globi", "description": "Globi is a Swiss cartoon character occasionally referred to as Switzerland's Mickey Mouse. He is pictured as an anthropomorphic blue parrot with a yellow beak wearing a black beret and a pair of red and black checkered trousers. He was created by the Swiss cartoonist Robert Lips, as an advertising character for the Swiss department store Globus in 1932 for the company's 25th anniversary.", "links": {"website": ["https://www.globi.ch/", "https://en.wikipedia.org/wiki/Globi"], "subreddit": ["Globi"]}, "path": {"147-258": [[-556, 236], [-556, 234], [-560, 236], [-553, 248], [-546, 248], [-542, 241], [-550, 232], [-557, 232], [-561, 235]]}, "center": {"147-258": [-550, 241]}}, -{"id": 1109, "name": "Shinobu Oshino", "description": "Character from the Monogatari Series, a series of light novels with an anime adaptation by Shaft. Also was allied with Colombia in 2022.", "links": {"subreddit": ["araragi"], "discord": ["CbRv3yNftx", "yJQ8RTkM"]}, "path": {"125-258": [[-683, 279], [-676, 279], [-667, 286], [-672, 294], [-667, 293], [-668, 298], [-673, 304], [-677, 306], [-683, 306], [-685, 303], [-687, 304], [-690, 304], [-696, 296], [-695, 292], [-691, 294], [-690, 288], [-692, 286], [-689, 284], [-684, 279]]}, "center": {"125-258": [-681, 290]}}, -{"id": 1110, "name": "Pyramid Head", "description": "", "links": {"website": ["https://www.twitch.tv/Femba"]}, "path": {"120-258": [[-808, -365], [-800, -367], [-787, -366], [-786, -354], [-794, -344], [-807, -344]]}, "center": {"120-258": [-797, -356]}}, -{"id": 1111, "name": "Opossum", "description": "A cute little fella, initiated by u/possum_mood", "links": {}, "path": {"134-258": [[-775, -571], [-775, -574], [-771, -574], [-772, -574], [-772, -575], [-772, -576], [-773, -576], [-773, -577], [-773, -578], [-772, -578], [-772, -579], [-773, -579], [-773, -578], [-773, -577], [-774, -577], [-776, -577], [-777, -577], [-777, -578], [-778, -578], [-782, -578], [-782, -577], [-783, -577], [-783, -573], [-784, -573], [-786, -571], [-788, -572], [-788, -573], [-785, -576], [-788, -573], [-788, -572], [-787, -571], [-786, -571], [-784, -573], [-783, -573], [-783, -571], [-783, -573], [-781, -573], [-781, -571], [-781, -573], [-777, -573], [-777, -571], [-777, -573], [-775, -573]]}, "center": {"134-258": [-779, -575]}}, -{"id": 1112, "name": "Senko san", "description": "Senko is the deuteragonist in the 2017 manga The Helpful Fox Senko-san (Sewayaki Kitsune no Senko-san) and its 2019 anime adaptation.", "links": {"subreddit": ["SewayakiKitsune"]}, "path": {"138-258": [[-684, -248], [-682, -248], [-682, -247], [-681, -247], [-680, -247], [-680, -246], [-678, -246], [-677, -246], [-677, -245], [-674, -245], [-673, -245], [-673, -244], [-667, -244], [-666, -244], [-666, -243], [-665, -243], [-664, -244], [-664, -245], [-664, -246], [-663, -246], [-663, -247], [-662, -247], [-662, -248], [-661, -248], [-660, -248], [-660, -247], [-656, -240], [-656, -235], [-655, -235], [-655, -232], [-654, -232], [-654, -226], [-655, -226], [-655, -224], [-656, -224], [-656, -222], [-655, -222], [-655, -219], [-654, -219], [-654, -217], [-657, -214], [-657, -211], [-658, -211], [-658, -203], [-664, -195], [-670, -195], [-670, -205], [-670, -206], [-687, -206], [-687, -209], [-685, -209], [-683, -212], [-683, -216], [-684, -220], [-686, -220], [-686, -224], [-684, -225], [-684, -227], [-686, -228], [-682, -235], [-682, -237], [-685, -244], [-685, -248]]}, "center": {"138-258": [-670, -228]}}, +{"id": 1106, "name": "HimechiiVT", "description": "Himechii is a German butterfly Vtuber. She is known for singing anime covers and playing games on twitch.", "links": {"website": ["https://www.twitch.tv/himechiivt"], "discord": ["PvzCZJne"]}, "path": {"140-258, T": [[181, -342], [178, -342], [177, -339], [177, -333], [185, -333], [185, -339], [183, -342]]}, "center": {"140-258, T": [181, -337]}}, +{"id": 1107, "name": "Globi", "description": "Globi is a Swiss cartoon character occasionally referred to as Switzerland's Mickey Mouse. He is pictured as an anthropomorphic blue parrot with a yellow beak wearing a black beret and a pair of red and black checkered trousers. He was created by the Swiss cartoonist Robert Lips, as an advertising character for the Swiss department store Globus in 1932 for the company's 25th anniversary.", "links": {"website": ["https://www.globi.ch/", "https://en.wikipedia.org/wiki/Globi"], "subreddit": ["Globi"]}, "path": {"147-258, T": [[-556, 236], [-556, 234], [-560, 236], [-553, 248], [-546, 248], [-542, 241], [-550, 232], [-557, 232], [-561, 235]]}, "center": {"147-258, T": [-550, 241]}}, +{"id": 1109, "name": "Shinobu Oshino", "description": "Character from the Monogatari Series, a series of light novels with an anime adaptation by Shaft. Also was allied with Colombia in 2022.", "links": {"subreddit": ["araragi"], "discord": ["CbRv3yNftx", "yJQ8RTkM"]}, "path": {"125-258, T": [[-683, 279], [-676, 279], [-667, 286], [-672, 294], [-667, 293], [-668, 298], [-673, 304], [-677, 306], [-683, 306], [-685, 303], [-687, 304], [-690, 304], [-696, 296], [-695, 292], [-691, 294], [-690, 288], [-692, 286], [-689, 284], [-684, 279]]}, "center": {"125-258, T": [-681, 290]}}, +{"id": 1110, "name": "Pyramid Head", "description": "", "links": {"website": ["https://www.twitch.tv/Femba"]}, "path": {"120-258, T": [[-808, -365], [-800, -367], [-787, -366], [-786, -354], [-794, -344], [-807, -344]]}, "center": {"120-258, T": [-797, -356]}}, +{"id": 1111, "name": "Opossum", "description": "A cute little fella, initiated by u/possum_mood", "links": {}, "path": {"134-258, T": [[-775, -571], [-775, -574], [-771, -574], [-772, -574], [-772, -575], [-772, -576], [-773, -576], [-773, -577], [-773, -578], [-772, -578], [-772, -579], [-773, -579], [-773, -578], [-773, -577], [-774, -577], [-776, -577], [-777, -577], [-777, -578], [-778, -578], [-782, -578], [-782, -577], [-783, -577], [-783, -573], [-784, -573], [-786, -571], [-788, -572], [-788, -573], [-785, -576], [-788, -573], [-788, -572], [-787, -571], [-786, -571], [-784, -573], [-783, -573], [-783, -571], [-783, -573], [-781, -573], [-781, -571], [-781, -573], [-777, -573], [-777, -571], [-777, -573], [-775, -573]]}, "center": {"134-258, T": [-779, -575]}}, +{"id": 1112, "name": "Senko san", "description": "Senko is the deuteragonist in the 2017 manga The Helpful Fox Senko-san (Sewayaki Kitsune no Senko-san) and its 2019 anime adaptation.", "links": {"subreddit": ["SewayakiKitsune"]}, "path": {"138-258, T": [[-684, -248], [-682, -248], [-682, -247], [-681, -247], [-680, -247], [-680, -246], [-678, -246], [-677, -246], [-677, -245], [-674, -245], [-673, -245], [-673, -244], [-667, -244], [-666, -244], [-666, -243], [-665, -243], [-664, -244], [-664, -245], [-664, -246], [-663, -246], [-663, -247], [-662, -247], [-662, -248], [-661, -248], [-660, -248], [-660, -247], [-656, -240], [-656, -235], [-655, -235], [-655, -232], [-654, -232], [-654, -226], [-655, -226], [-655, -224], [-656, -224], [-656, -222], [-655, -222], [-655, -219], [-654, -219], [-654, -217], [-657, -214], [-657, -211], [-658, -211], [-658, -203], [-664, -195], [-670, -195], [-670, -205], [-670, -206], [-687, -206], [-687, -209], [-685, -209], [-683, -212], [-683, -216], [-684, -220], [-686, -220], [-686, -224], [-684, -225], [-684, -227], [-686, -228], [-682, -235], [-682, -237], [-685, -244], [-685, -248]]}, "center": {"138-258, T": [-670, -228]}}, {"id": 1113, "name": "Bouboule the supreme entity", "description": "He is a supreme god (a joke between a group of friend) who managed to take place on r/place with the help of 6 friend. Bouboule travel across reddit on his car (appeared sometimes in the car on the french flag) to better understand this universe of pixel", "links": {"website": ["https://en.wikipedia.org/wiki/Draft:Bouboule"], "subreddit": ["bouboule"]}, "path": {"12-15": [[471, 169], [479, 169], [479, 175], [471, 175]]}, "center": {"12-15": [475, 172]}}, -{"id": 1114, "name": "Guy Lafleur", "description": "Guy Damien Lafleur was a Canadian professional ice hockey player. He was the first player in National Hockey League (NHL) history to score 50 goals in six consecutive seasons as well as 50 goals and 100 points in six consecutive seasons. Lafleur was inducted into the Hockey Hall of Fame in 1988, named one of the 100 Greatest NHL Players in history in 2017, and was named to the Order of Hockey in Canada in 2022.", "links": {"website": ["https://en.wikipedia.org/wiki/Guy_Lafleur"]}, "path": {"110-258": [[570, 130], [570, 151], [603, 151], [603, 129], [570, 129]]}, "center": {"110-258": [587, 140]}}, +{"id": 1114, "name": "Guy Lafleur", "description": "Guy Damien Lafleur was a Canadian professional ice hockey player. He was the first player in National Hockey League (NHL) history to score 50 goals in six consecutive seasons as well as 50 goals and 100 points in six consecutive seasons. Lafleur was inducted into the Hockey Hall of Fame in 1988, named one of the 100 Greatest NHL Players in history in 2017, and was named to the Order of Hockey in Canada in 2022.", "links": {"website": ["https://en.wikipedia.org/wiki/Guy_Lafleur"]}, "path": {"110-258, T": [[570, 130], [570, 151], [603, 151], [603, 129], [570, 129]]}, "center": {"110-258, T": [587, 140]}}, {"id": 1115, "name": "Mayhem", "description": "Mayhem is a Norwegian black metal band formed in 1984", "links": {"website": ["http://www.thetruemayhem.com/", "https://en.wikipedia.org/wiki/Mayhem_(band)"], "subreddit": ["Mayhem"]}, "path": {"88-135": [[-731, 102], [-731, 112], [-694, 112], [-694, 102]]}, "center": {"88-135": [-712, 107]}}, -{"id": 1116, "name": "Miraculous: Tales of Ladybug and Cat Noir", "description": "Ladybug (Marinette), Cat Noir (Adrien), and Gabriel Agreste (Hawk Moth) are three of the characters from the magical girl superhero television series \"Miraculous: Tales of Ladybug & Cat Noir\" (French: Miraculous, les aventures de Ladybug et Chat Noir), produced by French companies Zagtoon and Method Animation.\n\nThe series focuses on the two Parisian teenagers, Marinette Dupain-Cheng and Adrien Agreste, who transform into the superheroes Ladybug and Cat Noir to protect the city from the forces of evil, but mainly just Hawk Moth .", "links": {"website": ["https://en.wikipedia.org/wiki/Miraculous:_Tales_of_Ladybug_%26_Cat_Noir"], "subreddit": ["miraculousladybug", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"119-258": [[900, -611], [901, -610], [901, -608], [898, -604], [898, -602], [897, -602], [895, -600], [893, -599], [887, -593], [887, -591], [887, -592], [884, -595], [883, -595], [882, -596], [881, -596], [880, -597], [879, -598], [878, -598], [877, -599], [877, -601], [877, -602], [876, -604], [878, -606], [877, -607], [877, -608], [875, -610], [873, -607], [872, -606], [872, -602], [872, -606], [870, -607], [871, -608], [871, -609], [868, -612], [866, -610], [866, -607], [867, -606], [866, -607], [866, -611], [864, -613], [862, -611], [862, -605], [865, -602], [865, -601], [870, -596], [870, -595], [873, -592], [874, -592], [879, -587], [879, -582], [878, -581], [877, -582], [876, -582], [875, -583], [874, -582], [873, -582], [872, -581], [871, -582], [871, -583], [871, -582], [870, -581], [868, -581], [867, -580], [866, -580], [865, -579], [863, -579], [861, -577], [860, -577], [859, -576], [860, -575], [856, -572], [856, -569], [855, -568], [855, -567], [854, -566], [854, -554], [856, -552], [856, -550], [858, -548], [859, -548], [860, -547], [860, -546], [862, -544], [862, -543], [864, -541], [865, -541], [866, -540], [867, -540], [868, -539], [869, -539], [872, -536], [871, -536], [863, -528], [863, -525], [864, -524], [867, -524], [875, -532], [875, -531], [879, -527], [879, -526], [881, -524], [885, -524], [896, -535], [896, -536], [897, -537], [897, -538], [898, -539], [898, -540], [899, -541], [900, -542], [901, -542], [909, -542], [910, -541], [909, -541], [895, -527], [895, -526], [894, -525], [894, -524], [887, -517], [886, -517], [884, -515], [883, -515], [882, -514], [880, -514], [879, -513], [877, -513], [876, -512], [876, -511], [876, -509], [876, -508], [877, -507], [889, -507], [889, -509], [894, -509], [894, -512], [899, -517], [900, -517], [904, -521], [904, -522], [905, -523], [905, -524], [906, -524], [907, -525], [908, -526], [909, -526], [910, -527], [911, -526], [912, -526], [912, -525], [911, -524], [911, -522], [910, -521], [910, -516], [914, -512], [922, -512], [923, -511], [929, -511], [927, -509], [926, -509], [925, -508], [924, -507], [924, -506], [925, -505], [926, -504], [932, -504], [933, -505], [934, -505], [935, -506], [935, -508], [936, -509], [937, -510], [937, -511], [938, -511], [939, -512], [937, -514], [938, -517], [937, -518], [936, -519], [934, -519], [933, -520], [930, -520], [929, -521], [928, -521], [930, -521], [931, -522], [932, -523], [933, -524], [933, -526], [936, -526], [937, -525], [940, -525], [941, -526], [942, -526], [944, -528], [945, -528], [949, -527], [950, -526], [952, -526], [953, -525], [954, -525], [955, -524], [974, -524], [975, -525], [977, -525], [978, -526], [979, -526], [980, -527], [981, -528], [981, -529], [982, -530], [986, -534], [986, -536], [987, -537], [987, -539], [986, -540], [984, -543], [983, -543], [983, -544], [982, -545], [985, -548], [985, -549], [988, -552], [988, -558], [987, -559], [987, -561], [979, -569], [978, -569], [976, -571], [975, -571], [974, -572], [972, -572], [971, -573], [970, -573], [969, -574], [967, -574], [966, -575], [967, -576], [967, -584], [968, -585], [968, -587], [969, -588], [970, -588], [971, -589], [975, -594], [975, -595], [975, -596], [974, -597], [973, -598], [972, -598], [971, -597], [970, -598], [968, -596], [967, -595], [966, -597], [966, -602], [967, -601], [968, -601], [969, -602], [968, -603], [967, -603], [967, -606], [969, -608], [968, -609], [969, -610], [970, -610], [981, -621], [980, -622], [979, -621], [979, -622], [977, -624], [975, -622], [974, -622], [967, -615], [966, -615], [964, -613], [958, -613], [957, -612], [952, -612], [951, -613], [950, -613], [947, -613], [946, -614], [946, -636], [940, -642], [937, -642], [936, -643], [934, -643], [933, -644], [931, -644], [931, -643], [930, -642], [930, -641], [929, -641], [928, -640], [928, -639], [927, -638], [926, -637], [925, -637], [924, -636], [923, -636], [920, -633], [919, -633], [918, -632], [918, -629], [919, -628], [918, -627], [918, -626], [915, -623], [917, -621], [918, -621], [919, -620], [922, -620], [921, -619], [921, -618], [920, -619], [919, -619], [918, -620], [917, -619], [918, -618], [916, -618], [915, -619], [913, -619], [912, -618], [913, -617], [912, -617], [911, -618], [910, -617], [910, -616], [909, -616], [909, -617], [908, -618], [909, -619], [909, -622], [908, -623], [907, -623], [906, -622], [906, -621], [905, -621], [902, -624], [901, -624], [900, -623], [900, -621], [901, -620], [901, -619], [902, -618], [902, -617], [903, -616], [902, -615], [902, -614], [901, -613], [901, -612]]}, "center": {"119-258": [932, -576]}}, -{"id": 1117, "name": "Faputa", "description": "Faputa is a character from the manga Made in Abyss created by Akihito Tsukushi", "links": {}, "path": {"92-258": [[-214, 479], [-210, 479], [-207, 480], [-206, 481], [-206, 490], [-208, 492], [-219, 492], [-221, 491], [-221, 483], [-215, 479]]}, "center": {"92-258": [-213, 486]}}, +{"id": 1116, "name": "Miraculous: Tales of Ladybug and Cat Noir", "description": "Ladybug (Marinette), Cat Noir (Adrien), and Gabriel Agreste (Hawk Moth) are three of the characters from the magical girl superhero television series \"Miraculous: Tales of Ladybug & Cat Noir\" (French: Miraculous, les aventures de Ladybug et Chat Noir), produced by French companies Zagtoon and Method Animation.\n\nThe series focuses on the two Parisian teenagers, Marinette Dupain-Cheng and Adrien Agreste, who transform into the superheroes Ladybug and Cat Noir to protect the city from the forces of evil, but mainly just Hawk Moth .", "links": {"website": ["https://en.wikipedia.org/wiki/Miraculous:_Tales_of_Ladybug_%26_Cat_Noir"], "subreddit": ["miraculousladybug", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"119-258, T": [[900, -611], [901, -610], [901, -608], [898, -604], [898, -602], [897, -602], [895, -600], [893, -599], [887, -593], [887, -591], [887, -592], [884, -595], [883, -595], [882, -596], [881, -596], [880, -597], [879, -598], [878, -598], [877, -599], [877, -601], [877, -602], [876, -604], [878, -606], [877, -607], [877, -608], [875, -610], [873, -607], [872, -606], [872, -602], [872, -606], [870, -607], [871, -608], [871, -609], [868, -612], [866, -610], [866, -607], [867, -606], [866, -607], [866, -611], [864, -613], [862, -611], [862, -605], [865, -602], [865, -601], [870, -596], [870, -595], [873, -592], [874, -592], [879, -587], [879, -582], [878, -581], [877, -582], [876, -582], [875, -583], [874, -582], [873, -582], [872, -581], [871, -582], [871, -583], [871, -582], [870, -581], [868, -581], [867, -580], [866, -580], [865, -579], [863, -579], [861, -577], [860, -577], [859, -576], [860, -575], [856, -572], [856, -569], [855, -568], [855, -567], [854, -566], [854, -554], [856, -552], [856, -550], [858, -548], [859, -548], [860, -547], [860, -546], [862, -544], [862, -543], [864, -541], [865, -541], [866, -540], [867, -540], [868, -539], [869, -539], [872, -536], [871, -536], [863, -528], [863, -525], [864, -524], [867, -524], [875, -532], [875, -531], [879, -527], [879, -526], [881, -524], [885, -524], [896, -535], [896, -536], [897, -537], [897, -538], [898, -539], [898, -540], [899, -541], [900, -542], [901, -542], [909, -542], [910, -541], [909, -541], [895, -527], [895, -526], [894, -525], [894, -524], [887, -517], [886, -517], [884, -515], [883, -515], [882, -514], [880, -514], [879, -513], [877, -513], [876, -512], [876, -511], [876, -509], [876, -508], [877, -507], [889, -507], [889, -509], [894, -509], [894, -512], [899, -517], [900, -517], [904, -521], [904, -522], [905, -523], [905, -524], [906, -524], [907, -525], [908, -526], [909, -526], [910, -527], [911, -526], [912, -526], [912, -525], [911, -524], [911, -522], [910, -521], [910, -516], [914, -512], [922, -512], [923, -511], [929, -511], [927, -509], [926, -509], [925, -508], [924, -507], [924, -506], [925, -505], [926, -504], [932, -504], [933, -505], [934, -505], [935, -506], [935, -508], [936, -509], [937, -510], [937, -511], [938, -511], [939, -512], [937, -514], [938, -517], [937, -518], [936, -519], [934, -519], [933, -520], [930, -520], [929, -521], [928, -521], [930, -521], [931, -522], [932, -523], [933, -524], [933, -526], [936, -526], [937, -525], [940, -525], [941, -526], [942, -526], [944, -528], [945, -528], [949, -527], [950, -526], [952, -526], [953, -525], [954, -525], [955, -524], [974, -524], [975, -525], [977, -525], [978, -526], [979, -526], [980, -527], [981, -528], [981, -529], [982, -530], [986, -534], [986, -536], [987, -537], [987, -539], [986, -540], [984, -543], [983, -543], [983, -544], [982, -545], [985, -548], [985, -549], [988, -552], [988, -558], [987, -559], [987, -561], [979, -569], [978, -569], [976, -571], [975, -571], [974, -572], [972, -572], [971, -573], [970, -573], [969, -574], [967, -574], [966, -575], [967, -576], [967, -584], [968, -585], [968, -587], [969, -588], [970, -588], [971, -589], [975, -594], [975, -595], [975, -596], [974, -597], [973, -598], [972, -598], [971, -597], [970, -598], [968, -596], [967, -595], [966, -597], [966, -602], [967, -601], [968, -601], [969, -602], [968, -603], [967, -603], [967, -606], [969, -608], [968, -609], [969, -610], [970, -610], [981, -621], [980, -622], [979, -621], [979, -622], [977, -624], [975, -622], [974, -622], [967, -615], [966, -615], [964, -613], [958, -613], [957, -612], [952, -612], [951, -613], [950, -613], [947, -613], [946, -614], [946, -636], [940, -642], [937, -642], [936, -643], [934, -643], [933, -644], [931, -644], [931, -643], [930, -642], [930, -641], [929, -641], [928, -640], [928, -639], [927, -638], [926, -637], [925, -637], [924, -636], [923, -636], [920, -633], [919, -633], [918, -632], [918, -629], [919, -628], [918, -627], [918, -626], [915, -623], [917, -621], [918, -621], [919, -620], [922, -620], [921, -619], [921, -618], [920, -619], [919, -619], [918, -620], [917, -619], [918, -618], [916, -618], [915, -619], [913, -619], [912, -618], [913, -617], [912, -617], [911, -618], [910, -617], [910, -616], [909, -616], [909, -617], [908, -618], [909, -619], [909, -622], [908, -623], [907, -623], [906, -622], [906, -621], [905, -621], [902, -624], [901, -624], [900, -623], [900, -621], [901, -620], [901, -619], [902, -618], [902, -617], [903, -616], [902, -615], [902, -614], [901, -613], [901, -612]]}, "center": {"119-258, T": [932, -576]}}, +{"id": 1117, "name": "Faputa", "description": "Faputa is a character from the manga Made in Abyss created by Akihito Tsukushi", "links": {}, "path": {"92-258, T": [[-214, 479], [-210, 479], [-207, 480], [-206, 481], [-206, 490], [-208, 492], [-219, 492], [-221, 491], [-221, 483], [-215, 479]]}, "center": {"92-258, T": [-213, 486]}}, {"id": 1118, "name": "Item Label Oui Ouis", "description": "A mutual friendship between Colombia and ItemLabel, space was granted for the creation of the ColombOuians: CubeOui, BeeOui, CrabOui and SeaOui. \n\nThis agreement and lending of space was respectful and lasted until the Morrocan Red Band wiped out both Colombia and the small innocent Oui Ouis.", "links": {"website": ["https://itemlabel.com/"], "subreddit": ["itemLabel"], "discord": ["itemlabel"]}, "path": {"71-128": [[833, 98], [833, 115], [857, 115], [856, 98], [833, 99]]}, "center": {"71-128": [845, 107]}}, {"id": 1120, "name": "Burzum", "description": "A Norwegian Black Metal Band formed in 1991 by Varg Vikernes", "links": {"subreddit": ["burzum"]}, "path": {"101-112": [[-731, 126], [-732, 125], [-731, 125], [-731, 119], [-705, 119], [-705, 126]]}, "center": {"101-112": [-718, 123]}}, -{"id": 1121, "name": "Komodo Dragon", "description": "The Komodo dragon is the largest living lizard in the world. These wild dragons typically weigh about 70 kilograms (154 pounds). They also live in the Komodo Island, Nusa Tenggara Timur, Indonesia.", "links": {"subreddit": ["indonesia"], "discord": ["redditindo"]}, "path": {"132-258": [[-689, -252], [-698, -252], [-699, -251], [-702, -251], [-703, -250], [-704, -249], [-705, -248], [-705, -247], [-706, -246], [-706, -242], [-704, -242], [-703, -245], [-702, -245], [-701, -244], [-700, -244], [-699, -243], [-698, -243], [-698, -242], [-697, -241], [-697, -240], [-696, -239], [-696, -238], [-694, -238], [-693, -239], [-692, -239], [-691, -239], [-690, -238], [-689, -237], [-689, -235], [-690, -235], [-691, -236], [-692, -237], [-693, -237], [-693, -236], [-694, -236], [-695, -236], [-696, -235], [-697, -234], [-698, -233], [-699, -232], [-698, -232], [-697, -233], [-696, -233], [-695, -233], [-694, -234], [-693, -234], [-692, -233], [-691, -233], [-691, -232], [-691, -231], [-690, -230], [-690, -229], [-689, -229], [-689, -227], [-688, -226], [-688, -225], [-687, -224], [-687, -223], [-686, -223], [-685, -224], [-684, -225], [-684, -227], [-685, -227], [-686, -228], [-685, -229], [-684, -230], [-684, -232], [-683, -232], [-683, -234], [-682, -235], [-682, -237], [-683, -238], [-683, -240], [-684, -241], [-684, -242], [-685, -243], [-685, -249], [-686, -250], [-687, -251], [-688, -251]]}, "center": {"132-258": [-692, -245]}}, -{"id": 1122, "name": "Arona", "description": "Arona (アロナ), stylized as A.R.O.N.A, is a non-playable character in Blue Archive, a mobile gacha role-playing game developed by Nexon. She accompanies the player throughout their adventure in game as a guide.", "links": {"website": ["https://bluearchive.nexon.com"], "subreddit": ["BlueArchive"], "discord": ["bluearchiveglobal"]}, "path": {"95-258": [[-715, 160], [-709, 170], [-705, 170], [-704, 165], [-698, 160], [-698, 168], [-688, 174], [-685, 182], [-686, 186], [-689, 191], [-690, 194], [-687, 202], [-682, 204], [-682, 206], [-685, 207], [-690, 204], [-697, 199], [-703, 197], [-707, 197], [-709, 198], [-711, 198], [-714, 189], [-715, 185], [-715, 180], [-713, 178], [-713, 174], [-716, 171], [-717, 167]]}, "center": {"95-258": [-700, 183]}}, -{"id": 1123, "name": "Omniblade", "description": "An omniblade is a weapon that is rapidly 3D printed by Commander Shepard's omnitool during melee attacks in Mass Effect 3.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"28-38": [[395, -366], [402, -366], [402, -344], [394, -344]], "39-258": [[397, -366], [403, -366], [403, -361], [405, -359], [405, -344], [397, -344]]}, "center": {"28-38": [398, -355], "39-258": [401, -354]}}, -{"id": 1124, "name": "Bocchi The Trash Can", "description": "An icon featuring Bocchi/Hitori Gotoh, the main character of Bocchi the Rock! in a trash can.\n\nTrash can is synonymous with Bocchi as it is one of her favorite hideouts from society. Others includes mango boxes and any dark places that she sees fit (despite her \"physicals\", she can fit in any container she want to hide from)", "links": {"subreddit": ["BocchiTheRock", "kessokuband"], "discord": ["kessokuband", "bocchi"]}, "path": {"146-258": [[255, -849], [270, -848], [273, -866], [270, -874], [265, -876], [256, -876], [251, -872], [255, -849], [255, -850], [259, -858]]}, "center": {"146-258": [262, -867]}}, +{"id": 1121, "name": "Komodo Dragon", "description": "The Komodo dragon is the largest living lizard in the world. These wild dragons typically weigh about 70 kilograms (154 pounds). They also live in the Komodo Island, Nusa Tenggara Timur, Indonesia.", "links": {"subreddit": ["indonesia"], "discord": ["redditindo"]}, "path": {"132-258, T": [[-689, -252], [-698, -252], [-699, -251], [-702, -251], [-703, -250], [-704, -249], [-705, -248], [-705, -247], [-706, -246], [-706, -242], [-704, -242], [-703, -245], [-702, -245], [-701, -244], [-700, -244], [-699, -243], [-698, -243], [-698, -242], [-697, -241], [-697, -240], [-696, -239], [-696, -238], [-694, -238], [-693, -239], [-692, -239], [-691, -239], [-690, -238], [-689, -237], [-689, -235], [-690, -235], [-691, -236], [-692, -237], [-693, -237], [-693, -236], [-694, -236], [-695, -236], [-696, -235], [-697, -234], [-698, -233], [-699, -232], [-698, -232], [-697, -233], [-696, -233], [-695, -233], [-694, -234], [-693, -234], [-692, -233], [-691, -233], [-691, -232], [-691, -231], [-690, -230], [-690, -229], [-689, -229], [-689, -227], [-688, -226], [-688, -225], [-687, -224], [-687, -223], [-686, -223], [-685, -224], [-684, -225], [-684, -227], [-685, -227], [-686, -228], [-685, -229], [-684, -230], [-684, -232], [-683, -232], [-683, -234], [-682, -235], [-682, -237], [-683, -238], [-683, -240], [-684, -241], [-684, -242], [-685, -243], [-685, -249], [-686, -250], [-687, -251], [-688, -251]]}, "center": {"132-258, T": [-692, -245]}}, +{"id": 1122, "name": "Arona", "description": "Arona (アロナ), stylized as A.R.O.N.A, is a non-playable character in Blue Archive, a mobile gacha role-playing game developed by Nexon. She accompanies the player throughout their adventure in game as a guide.", "links": {"website": ["https://bluearchive.nexon.com"], "subreddit": ["BlueArchive"], "discord": ["bluearchiveglobal"]}, "path": {"95-258, T": [[-715, 160], [-709, 170], [-705, 170], [-704, 165], [-698, 160], [-698, 168], [-688, 174], [-685, 182], [-686, 186], [-689, 191], [-690, 194], [-687, 202], [-682, 204], [-682, 206], [-685, 207], [-690, 204], [-697, 199], [-703, 197], [-707, 197], [-709, 198], [-711, 198], [-714, 189], [-715, 185], [-715, 180], [-713, 178], [-713, 174], [-716, 171], [-717, 167]]}, "center": {"95-258, T": [-700, 183]}}, +{"id": 1123, "name": "Omniblade", "description": "An omniblade is a weapon that is rapidly 3D printed by Commander Shepard's omnitool during melee attacks in Mass Effect 3.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"28-38": [[395, -366], [402, -366], [402, -344], [394, -344]], "39-258, T": [[397, -366], [403, -366], [403, -361], [405, -359], [405, -344], [397, -344]]}, "center": {"28-38": [398, -355], "39-258, T": [401, -354]}}, +{"id": 1124, "name": "Bocchi The Trash Can", "description": "An icon featuring Bocchi/Hitori Gotoh, the main character of Bocchi the Rock! in a trash can.\n\nTrash can is synonymous with Bocchi as it is one of her favorite hideouts from society. Others includes mango boxes and any dark places that she sees fit (despite her \"physicals\", she can fit in any container she want to hide from)", "links": {"subreddit": ["BocchiTheRock", "kessokuband"], "discord": ["kessokuband", "bocchi"]}, "path": {"146-258, T": [[255, -849], [270, -848], [273, -866], [270, -874], [265, -876], [256, -876], [251, -872], [255, -849], [255, -850], [259, -858]]}, "center": {"146-258, T": [262, -867]}}, {"id": 1125, "name": "Echo VR", "description": "A logo of the game, Echo VR. Echo was the most popular VR esport and pioneered the genre. However, the game's servers will close on August 1st.", "links": {"subreddit": ["EchoArena"], "discord": ["9UqjJJdd"]}, "path": {"124-187": [[-536, -511], [-502, -511], [-502, -501], [-536, -501]]}, "center": {"124-187": [-519, -506]}}, {"id": 1126, "name": "Morinth", "description": "Morinth is an Ardat Yakshi Asari and daughter of Asari Justicar Samara. She can take the place of Samara as a companion to Commander Shepard in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"63-73": [[384, -348], [390, -348], [390, -339], [384, -339]], "75-169": [[405, -360], [411, -360], [411, -351], [405, -351]]}, "center": {"63-73": [387, -343], "75-169": [408, -355]}}, -{"id": 1127, "name": "Mako", "description": "The mako is Commander Shepard's ground vehicle in Mass Effect 1.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"107-258": [[358, -367], [370, -367], [370, -339], [358, -339]]}, "center": {"107-258": [364, -353]}}, -{"id": 1128, "name": "Bondold", "description": "Bondold is a character from the manga Made in Abyss created by Akihito Tsukushi", "links": {}, "path": {"92-258": [[-215, 464], [-211, 464], [-209, 466], [-209, 468], [-211, 472], [-215, 472], [-217, 468], [-217, 466]]}, "center": {"92-258": [-213, 468]}}, -{"id": 1129, "name": "Ijiranaide, Nagatoro-san / Don't Toy with Me, miss Nagatoro", "description": "A portrait of Hayase Nagatoro, a main protagonist of the anime/manga series \"Ijiranaide, Nagatoro-san / Don't Toy with Me, miss Nagatoro\". On the top left behind her is a small rendition of Naoto Hachiouji (aka. Senpai), the other main protagonist of the series. The shadowy figure below the vertical \"I (heart) TORO (heart)\" text represents \"Blobtoro\", a simplified form in which Nagatoro is often portrayed in the manga.", "links": {"website": ["https://nagatoro.fandom.com/wiki/Nagatoro_Wiki"], "subreddit": ["nagatoro"], "discord": ["nagatoro"]}, "path": {"192-258": [[-703, -298], [-703, -260], [-669, -260], [-669, -298], [-674, -298], [-690, -298], [-703, -299], [-669, -299]]}, "center": {"192-258": [-686, -279]}}, -{"id": 1130, "name": "Qwant", "description": "Qwant is a French search engine that launched in February 2013. Qwant claims to respect the privacy of its users by not tracking them for advertising purposes or reselling their personal data, as well as being impartial in the display of results.", "links": {"website": ["https://qwant.com", "https://en.wikipedia.org/wiki/Qwant", "https://fr.wikipedia.org/wiki/Qwant"]}, "path": {"122-258": [[897, -94], [897, -88], [923, -88], [923, -95], [897, -95]]}, "center": {"122-258": [910, -91]}}, -{"id": 1131, "name": "Bundesadler", "description": "The Bundesadler (Federation Eagle) is the German coat of arms. It has a long tradition in German history.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"43-47": [[-35, -435], [-40, -435], [-41, -434], [-41, -432], [-42, -431], [-43, -432], [-48, -432], [-49, -431], [-49, -430], [-50, -429], [-50, -428], [-51, -427], [-51, -426], [-56, -421], [-57, -421], [-58, -420], [-57, -419], [-54, -419], [-55, -418], [-56, -418], [-57, -417], [-56, -416], [-54, -416], [-52, -418], [-52, -417], [-53, -416], [-53, -415], [-55, -413], [-54, -412], [-53, -412], [-50, -415], [-50, -416], [-49, -417], [-49, -415], [-53, -411], [-52, -410], [-50, -410], [-47, -413], [-47, -412], [-48, -411], [-48, -410], [-45, -410], [-44, -409], [-27, -409], [-26, -410], [-22, -410], [-23, -411], [-24, -412], [-24, -413], [-22, -411], [-22, -410], [-19, -410], [-18, -411], [-22, -415], [-22, -417], [-21, -416], [-21, -415], [-18, -412], [-17, -412], [-16, -413], [-18, -415], [-18, -416], [-19, -417], [-19, -418], [-17, -416], [-15, -416], [-14, -417], [-15, -418], [-16, -418], [-17, -419], [-15, -419], [-14, -420], [-20, -426], [-20, -427], [-21, -428], [-21, -429], [-24, -432], [-29, -432], [-30, -431], [-31, -431], [-31, -433], [-33, -435], [-38, -435]], "48-258": [[-34, -429], [-34, -439], [-36, -441], [-41, -441], [-42, -440], [-43, -440], [-44, -439], [-44, -436], [-43, -435], [-41, -435], [-41, -433], [-43, -431], [-47, -431], [-48, -432], [-48, -434], [-45, -437], [-46, -438], [-50, -438], [-53, -435], [-53, -434], [-54, -433], [-54, -432], [-60, -426], [-59, -425], [-57, -425], [-58, -424], [-59, -424], [-60, -423], [-59, -422], [-57, -422], [-54, -425], [-55, -424], [-55, -423], [-56, -422], [-56, -421], [-58, -419], [-57, -418], [-56, -418], [-55, -419], [-54, -419], [-53, -420], [-53, -422], [-52, -423], [-52, -421], [-58, -415], [-57, -414], [-55, -414], [-51, -418], [-50, -418], [-56, -412], [-55, -411], [-53, -411], [-48, -416], [-48, -415], [-52, -411], [-51, -410], [-49, -410], [-45, -414], [-45, -413], [-47, -411], [-45, -411], [-44, -410], [-42, -410], [-41, -411], [-41, -412], [-40, -413], [-41, -412], [-40, -411], [-40, -410], [-37, -410], [-37, -411], [-36, -412], [-37, -413], [-36, -412], [-36, -410], [-33, -410], [-32, -411], [-31, -412], [-32, -413], [-32, -414], [-29, -411], [-31, -411], [-31, -410], [-26, -410], [-25, -411], [-29, -415], [-29, -416], [-24, -411], [-22, -411], [-21, -412], [-27, -418], [-27, -419], [-21, -414], [-20, -414], [-19, -415], [-25, -421], [-25, -423], [-24, -422], [-24, -421], [-21, -418], [-20, -418], [-19, -419], [-21, -421], [-21, -422], [-22, -423], [-22, -424], [-20, -422], [-18, -422], [-17, -423], [-18, -424], [-19, -424], [-20, -425], [-18, -425], [-17, -426], [-23, -432], [-23, -433], [-24, -434], [-24, -435], [-27, -438], [-31, -438], [-32, -437], [-29, -434], [-29, -432], [-30, -431], [-32, -429]]}, "center": {"43-47": [-36, -421], "48-258": [-40, -422]}}, -{"id": 1132, "name": "Marisa Kirisame", "description": "Marisa Kirisame is one of the main playable characters in the Touhou franchise, alongside Reimu Hakurei. When Reimu Hakurei got deleted by the Canada flag, Marisa started crying this was notable for the Touhou community.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"8-258": [[156, 148], [166, 148], [177, 141], [186, 149], [181, 171], [161, 171], [159, 165], [161, 171]]}, "center": {"8-258": [171, 159]}}, +{"id": 1127, "name": "Mako", "description": "The mako is Commander Shepard's ground vehicle in Mass Effect 1.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"107-258, T": [[358, -367], [370, -367], [370, -339], [358, -339]]}, "center": {"107-258, T": [364, -353]}}, +{"id": 1128, "name": "Bondold", "description": "Bondold is a character from the manga Made in Abyss created by Akihito Tsukushi", "links": {}, "path": {"92-258, T": [[-215, 464], [-211, 464], [-209, 466], [-209, 468], [-211, 472], [-215, 472], [-217, 468], [-217, 466]]}, "center": {"92-258, T": [-213, 468]}}, +{"id": 1129, "name": "Ijiranaide, Nagatoro-san / Don't Toy with Me, miss Nagatoro", "description": "A portrait of Hayase Nagatoro, a main protagonist of the anime/manga series \"Ijiranaide, Nagatoro-san / Don't Toy with Me, miss Nagatoro\". On the top left behind her is a small rendition of Naoto Hachiouji (aka. Senpai), the other main protagonist of the series. The shadowy figure below the vertical \"I (heart) TORO (heart)\" text represents \"Blobtoro\", a simplified form in which Nagatoro is often portrayed in the manga.", "links": {"website": ["https://nagatoro.fandom.com/wiki/Nagatoro_Wiki"], "subreddit": ["nagatoro"], "discord": ["nagatoro"]}, "path": {"192-258, T": [[-703, -298], [-703, -260], [-669, -260], [-669, -298], [-674, -298], [-690, -298], [-703, -299], [-669, -299]]}, "center": {"192-258, T": [-686, -279]}}, +{"id": 1130, "name": "Qwant", "description": "Qwant is a French search engine that launched in February 2013. Qwant claims to respect the privacy of its users by not tracking them for advertising purposes or reselling their personal data, as well as being impartial in the display of results.", "links": {"website": ["https://qwant.com", "https://en.wikipedia.org/wiki/Qwant", "https://fr.wikipedia.org/wiki/Qwant"]}, "path": {"122-258, T": [[897, -94], [897, -88], [923, -88], [923, -95], [897, -95]]}, "center": {"122-258, T": [910, -91]}}, +{"id": 1131, "name": "Bundesadler", "description": "The Bundesadler (Federation Eagle) is the German coat of arms. It has a long tradition in German history.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"43-47": [[-35, -435], [-40, -435], [-41, -434], [-41, -432], [-42, -431], [-43, -432], [-48, -432], [-49, -431], [-49, -430], [-50, -429], [-50, -428], [-51, -427], [-51, -426], [-56, -421], [-57, -421], [-58, -420], [-57, -419], [-54, -419], [-55, -418], [-56, -418], [-57, -417], [-56, -416], [-54, -416], [-52, -418], [-52, -417], [-53, -416], [-53, -415], [-55, -413], [-54, -412], [-53, -412], [-50, -415], [-50, -416], [-49, -417], [-49, -415], [-53, -411], [-52, -410], [-50, -410], [-47, -413], [-47, -412], [-48, -411], [-48, -410], [-45, -410], [-44, -409], [-27, -409], [-26, -410], [-22, -410], [-23, -411], [-24, -412], [-24, -413], [-22, -411], [-22, -410], [-19, -410], [-18, -411], [-22, -415], [-22, -417], [-21, -416], [-21, -415], [-18, -412], [-17, -412], [-16, -413], [-18, -415], [-18, -416], [-19, -417], [-19, -418], [-17, -416], [-15, -416], [-14, -417], [-15, -418], [-16, -418], [-17, -419], [-15, -419], [-14, -420], [-20, -426], [-20, -427], [-21, -428], [-21, -429], [-24, -432], [-29, -432], [-30, -431], [-31, -431], [-31, -433], [-33, -435], [-38, -435]], "48-258, T": [[-34, -429], [-34, -439], [-36, -441], [-41, -441], [-42, -440], [-43, -440], [-44, -439], [-44, -436], [-43, -435], [-41, -435], [-41, -433], [-43, -431], [-47, -431], [-48, -432], [-48, -434], [-45, -437], [-46, -438], [-50, -438], [-53, -435], [-53, -434], [-54, -433], [-54, -432], [-60, -426], [-59, -425], [-57, -425], [-58, -424], [-59, -424], [-60, -423], [-59, -422], [-57, -422], [-54, -425], [-55, -424], [-55, -423], [-56, -422], [-56, -421], [-58, -419], [-57, -418], [-56, -418], [-55, -419], [-54, -419], [-53, -420], [-53, -422], [-52, -423], [-52, -421], [-58, -415], [-57, -414], [-55, -414], [-51, -418], [-50, -418], [-56, -412], [-55, -411], [-53, -411], [-48, -416], [-48, -415], [-52, -411], [-51, -410], [-49, -410], [-45, -414], [-45, -413], [-47, -411], [-45, -411], [-44, -410], [-42, -410], [-41, -411], [-41, -412], [-40, -413], [-41, -412], [-40, -411], [-40, -410], [-37, -410], [-37, -411], [-36, -412], [-37, -413], [-36, -412], [-36, -410], [-33, -410], [-32, -411], [-31, -412], [-32, -413], [-32, -414], [-29, -411], [-31, -411], [-31, -410], [-26, -410], [-25, -411], [-29, -415], [-29, -416], [-24, -411], [-22, -411], [-21, -412], [-27, -418], [-27, -419], [-21, -414], [-20, -414], [-19, -415], [-25, -421], [-25, -423], [-24, -422], [-24, -421], [-21, -418], [-20, -418], [-19, -419], [-21, -421], [-21, -422], [-22, -423], [-22, -424], [-20, -422], [-18, -422], [-17, -423], [-18, -424], [-19, -424], [-20, -425], [-18, -425], [-17, -426], [-23, -432], [-23, -433], [-24, -434], [-24, -435], [-27, -438], [-31, -438], [-32, -437], [-29, -434], [-29, -432], [-30, -431], [-32, -429]]}, "center": {"43-47": [-36, -421], "48-258, T": [-40, -422]}}, +{"id": 1132, "name": "Marisa Kirisame", "description": "Marisa Kirisame is one of the main playable characters in the Touhou franchise, alongside Reimu Hakurei. When Reimu Hakurei got deleted by the Canada flag, Marisa started crying this was notable for the Touhou community.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"8-258, T": [[156, 148], [166, 148], [177, 141], [186, 149], [181, 171], [161, 171], [159, 165], [161, 171]]}, "center": {"8-258, T": [171, 159]}}, {"id": 1134, "name": "Kameto", "description": "Kameto is a French entrepreneur and videographer specialising in video games and e-sports. Popular on the Twitch platform, he is the CEO and co-founder of Karmine Corp, an e-sport team.\nHe was the person who led the French during the 2022 pixel war.", "links": {"website": ["https://fr.wikipedia.org/wiki/Kameto", "https://en.wikipedia.org/wiki/Karmine_Corp"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"17-65": [[-445, 145], [-463, 153], [-469, 177], [-465, 215], [-457, 220], [-495, 234], [-500, 242], [-500, 269], [-369, 269], [-368, 233], [-407, 214], [-408, 202], [-404, 198], [-405, 182], [-406, 181], [-407, 180], [-407, 179], [-406, 178], [-405, 175], [-405, 173], [-405, 171], [-405, 169], [-405, 166], [-405, 164], [-406, 161], [-406, 159], [-410, 154], [-414, 150], [-419, 147], [-422, 146], [-433, 145]]}, "center": {"17-65": [-430, 237]}}, -{"id": 1135, "name": "SukiDingels' Chest Guardian", "description": "Meet the Azure Avian, dubbed the 'Chest Guardian', this vivid, upright blue bird with a substantial beak hails from the tropics protects the streamer SukiDingels Boobas. Famed as the 'vanquisher of voluptuousness', there's a rumor fluttering about that this bird could be a distant cousin of the Great Tits species.", "links": {}, "path": {"111-258": [[-748, -284], [-752, -284], [-753, -286], [-757, -291], [-755, -296], [-755, -299], [-751, -302], [-747, -300], [-744, -298], [-744, -295], [-746, -294], [-746, -290]]}, "center": {"111-258": [-751, -292]}}, -{"id": 1137, "name": "EXSP", "description": "Experience Speedruns (EXSP for short) is a Super Mario Odyssey charity tournament made by the spanish community \"Gruta del Runner\"", "links": {"discord": ["CqZSjmr"]}, "path": {"141-258": [[545, -54], [545, -48], [581, -48], [579, -54]]}, "center": {"141-258": [563, -51]}}, -{"id": 1138, "name": "Skibrille", "description": "Skigoggles, dedicated to \"Friesenjung\" a collaboration Song between Otta Waalkes (see Ottifant), Joost Klein and Ski Aggu, a german rapper whichs trademark is his skigoggles. Friesenjung went 1st in german Charts for 4 weeks.", "links": {"website": ["https://friesenjung.eu", "https://www.offiziellecharts.de/titel-details-237594"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"10-258": [[368, -442], [377, -442], [380, -439], [382, -439], [391, -445], [394, -443], [389, -437], [380, -433], [378, -432], [376, -431], [370, -430], [368, -432], [364, -432], [363, -434], [363, -436]]}, "center": {"10-258": [373, -436]}}, -{"id": 1139, "name": "Maakurika", "description": "A German 3D-Artist which is also Vtuber.", "links": {"website": ["https://www.twitch.tv/maakurika"]}, "path": {"6-99": [[191, -356], [202, -356], [202, -343], [190, -343], [190, -356]], "101-258": [[198, -349], [198, -351], [205, -351], [203, -351], [203, -342], [202, -340], [201, -336], [197, -335], [197, -341], [194, -341], [195, -347]]}, "center": {"6-99": [196, -349], "101-258": [199, -344]}}, -{"id": 1140, "name": "Witch Hat Atelier", "description": "Witch Hat Atelier (とんがり帽子のアトリエ) is an ongoing manga written and illustrated by Kamome Shirahama.\n\nThe series follows a girl named Coco, who dreams of being a witch, but in her world only those born with magical abilities are able to become witches. However, after meeting a witch named Qifrey, it seems like there may be hope for Coco after all.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Witch_Hat_Atelier_Wiki"], "subreddit": ["WitchHatAtelier"], "discord": ["xpQSRKjH"]}, "path": {"55-258": [[506, -341], [507, -341], [510, -339], [508, -341], [509, -341], [510, -341], [511, -341], [512, -341], [513, -341], [514, -340], [514, -339], [515, -338], [516, -337], [517, -335], [517, -333], [518, -333], [519, -331], [519, -330], [521, -331], [523, -331], [524, -331], [524, -329], [524, -327], [525, -325], [526, -324], [526, -325], [528, -323], [529, -322], [530, -320], [530, -318], [529, -315], [528, -313], [527, -313], [525, -311], [524, -310], [523, -309], [521, -309], [518, -309], [515, -309], [512, -309], [508, -309], [505, -309], [502, -309], [500, -309], [499, -312], [500, -317], [500, -319], [499, -319], [500, -326], [500, -328], [504, -328], [506, -329], [508, -329], [508, -330], [509, -334], [509, -336], [509, -338]]}, "center": {"55-258": [514, -320]}}, -{"id": 1141, "name": "Samara", "description": "Samara is an Asari Justicar who joins Commander Shepard in the fight against the Collectors in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"34-39": [[386, -356], [392, -356], [392, -347], [386, -347]], "40-258": [[403, -369], [409, -369], [409, -360], [403, -360]]}, "center": {"34-39": [389, -351], "40-258": [406, -364]}}, -{"id": 1142, "name": "Aatrox sword", "description": "The sword of the video game character Aatrox from League of Legends.\nThis was created by the German streamer Tolkin.", "links": {"website": ["https://www.twitch.tv/tolkin", "https://lol.fandom.com/wiki/Tolkin/Statistics", "https://www.leagueoflegends.com", "https://leagueoflegends.fandom.com/wiki/Aatrox/LoL"]}, "path": {"4-258": [[361, -319], [378, -319], [378, -293], [361, -293]]}, "center": {"4-258": [370, -306]}}, -{"id": 1143, "name": "melW", "description": "Popular emote of the face of Melina, who is a Streamer/YouTuber/Model. Place was created by the Destiny community.", "links": {"website": ["https://linktr.ee/melinagoransson", "https://www.destiny.gg/"], "subreddit": ["Destiny"]}, "path": {"112-258": [[-868, -191], [-972, -191], [-972, -80], [-868, -80]]}, "center": {"112-258": [-920, -135]}}, -{"id": 1144, "name": "Benjamin Blümchen", "description": "Benjamin Blümchen is a famous german children's animation and audio character.\nBenjamin Blümchen has a dedicated cake, also famous in germany.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"126-258": [[-337, -915], [-356, -915], [-357, -916], [-360, -916], [-365, -921], [-365, -930], [-366, -931], [-366, -933], [-365, -934], [-365, -936], [-366, -936], [-366, -938], [-365, -939], [-363, -939], [-363, -940], [-362, -941], [-360, -941], [-359, -940], [-359, -939], [-357, -939], [-357, -942], [-353, -942], [-353, -940], [-350, -940], [-350, -941], [-347, -942], [-346, -940], [-343, -940], [-342, -942], [-340, -942], [-339, -939], [-338, -939], [-335, -940], [-334, -936], [-332, -934], [-332, -921], [-328, -921], [-328, -930], [-327, -931], [-325, -932], [-323, -933], [-320, -932], [-319, -933], [-319, -941], [-320, -941], [-326, -948], [-326, -955], [-322, -958], [-319, -961], [-320, -962], [-320, -963], [-316, -966], [-313, -967], [-309, -972], [-303, -977], [-294, -977], [-288, -971], [-288, -970], [-285, -970], [-283, -968], [-283, -966], [-284, -965], [-284, -959], [-283, -959], [-278, -963], [-275, -965], [-273, -966], [-270, -966], [-267, -963], [-267, -961], [-269, -958], [-272, -958], [-273, -957], [-272, -950], [-278, -942], [-279, -940], [-270, -933], [-269, -933], [-268, -932], [-267, -932], [-266, -930], [-264, -926], [-263, -926], [-262, -926], [-261, -930], [-259, -932], [-256, -931], [-256, -928], [-255, -928], [-255, -927], [-253, -927], [-254, -926], [-254, -925], [-253, -924], [-253, -921], [-252, -921], [-252, -919], [-254, -919], [-254, -918], [-265, -918], [-264, -919], [-265, -920], [-266, -921], [-267, -920], [-268, -919], [-269, -919], [-270, -918], [-306, -918], [-308, -918], [-308, -917], [-309, -916], [-310, -915], [-313, -915], [-313, -914], [-314, -913], [-324, -913], [-325, -914], [-327, -914], [-330, -916], [-331, -917], [-335, -917]]}, "center": {"126-258": [-299, -945]}}, -{"id": 1145, "name": "RVB Helmet", "description": "This helmet was moved multiple times to make room for the big drawing by Sukidingels. Therefore it was taken over by the Bonjwa Community.", "links": {"subreddit": ["RedvsBlue"]}, "path": {"90-107": [[-771, -327], [-765, -327], [-760, -321], [-761, -314], [-766, -310], [-771, -309], [-777, -315], [-777, -322], [-772, -327]], "119-258": [[-806, -340], [-803, -343], [-798, -343], [-792, -337], [-792, -331], [-798, -325], [-804, -325], [-809, -331], [-809, -337], [-803, -343]]}, "center": {"90-107": [-769, -318], "119-258": [-800, -334]}}, +{"id": 1135, "name": "SukiDingels' Chest Guardian", "description": "Meet the Azure Avian, dubbed the 'Chest Guardian', this vivid, upright blue bird with a substantial beak hails from the tropics protects the streamer SukiDingels Boobas. Famed as the 'vanquisher of voluptuousness', there's a rumor fluttering about that this bird could be a distant cousin of the Great Tits species.", "links": {}, "path": {"111-258, T": [[-748, -284], [-752, -284], [-753, -286], [-757, -291], [-755, -296], [-755, -299], [-751, -302], [-747, -300], [-744, -298], [-744, -295], [-746, -294], [-746, -290]]}, "center": {"111-258, T": [-751, -292]}}, +{"id": 1137, "name": "EXSP", "description": "Experience Speedruns (EXSP for short) is a Super Mario Odyssey charity tournament made by the spanish community \"Gruta del Runner\"", "links": {"discord": ["CqZSjmr"]}, "path": {"141-258, T": [[545, -54], [545, -48], [581, -48], [579, -54]]}, "center": {"141-258, T": [563, -51]}}, +{"id": 1138, "name": "Skibrille", "description": "Skigoggles, dedicated to \"Friesenjung\" a collaboration Song between Otta Waalkes (see Ottifant), Joost Klein and Ski Aggu, a german rapper whichs trademark is his skigoggles. Friesenjung went 1st in german Charts for 4 weeks.", "links": {"website": ["https://friesenjung.eu", "https://www.offiziellecharts.de/titel-details-237594"], "subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"10-258, T": [[368, -442], [377, -442], [380, -439], [382, -439], [391, -445], [394, -443], [389, -437], [380, -433], [378, -432], [376, -431], [370, -430], [368, -432], [364, -432], [363, -434], [363, -436]]}, "center": {"10-258, T": [373, -436]}}, +{"id": 1139, "name": "Maakurika", "description": "A German 3D-Artist which is also Vtuber.", "links": {"website": ["https://www.twitch.tv/maakurika"]}, "path": {"6-99": [[191, -356], [202, -356], [202, -343], [190, -343], [190, -356]], "101-258, T": [[198, -349], [198, -351], [205, -351], [203, -351], [203, -342], [202, -340], [201, -336], [197, -335], [197, -341], [194, -341], [195, -347]]}, "center": {"6-99": [196, -349], "101-258, T": [199, -344]}}, +{"id": 1140, "name": "Witch Hat Atelier", "description": "Witch Hat Atelier (とんがり帽子のアトリエ) is an ongoing manga written and illustrated by Kamome Shirahama.\n\nThe series follows a girl named Coco, who dreams of being a witch, but in her world only those born with magical abilities are able to become witches. However, after meeting a witch named Qifrey, it seems like there may be hope for Coco after all.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Witch_Hat_Atelier_Wiki"], "subreddit": ["WitchHatAtelier"], "discord": ["xpQSRKjH"]}, "path": {"55-258, T": [[506, -341], [507, -341], [510, -339], [508, -341], [509, -341], [510, -341], [511, -341], [512, -341], [513, -341], [514, -340], [514, -339], [515, -338], [516, -337], [517, -335], [517, -333], [518, -333], [519, -331], [519, -330], [521, -331], [523, -331], [524, -331], [524, -329], [524, -327], [525, -325], [526, -324], [526, -325], [528, -323], [529, -322], [530, -320], [530, -318], [529, -315], [528, -313], [527, -313], [525, -311], [524, -310], [523, -309], [521, -309], [518, -309], [515, -309], [512, -309], [508, -309], [505, -309], [502, -309], [500, -309], [499, -312], [500, -317], [500, -319], [499, -319], [500, -326], [500, -328], [504, -328], [506, -329], [508, -329], [508, -330], [509, -334], [509, -336], [509, -338]]}, "center": {"55-258, T": [514, -320]}}, +{"id": 1141, "name": "Samara", "description": "Samara is an Asari Justicar who joins Commander Shepard in the fight against the Collectors in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"34-39": [[386, -356], [392, -356], [392, -347], [386, -347]], "40-258, T": [[403, -369], [409, -369], [409, -360], [403, -360]]}, "center": {"34-39": [389, -351], "40-258, T": [406, -364]}}, +{"id": 1142, "name": "Aatrox sword", "description": "The sword of the video game character Aatrox from League of Legends.\nThis was created by the German streamer Tolkin.", "links": {"website": ["https://www.twitch.tv/tolkin", "https://lol.fandom.com/wiki/Tolkin/Statistics", "https://www.leagueoflegends.com", "https://leagueoflegends.fandom.com/wiki/Aatrox/LoL"]}, "path": {"4-258, T": [[361, -319], [378, -319], [378, -293], [361, -293]]}, "center": {"4-258, T": [370, -306]}}, +{"id": 1143, "name": "melW", "description": "Popular emote of the face of Melina, who is a Streamer/YouTuber/Model. Place was created by the Destiny community.", "links": {"website": ["https://linktr.ee/melinagoransson", "https://www.destiny.gg/"], "subreddit": ["Destiny"]}, "path": {"112-258, T": [[-868, -191], [-972, -191], [-972, -80], [-868, -80]]}, "center": {"112-258, T": [-920, -135]}}, +{"id": 1144, "name": "Benjamin Blümchen", "description": "Benjamin Blümchen is a famous german children's animation and audio character.\nBenjamin Blümchen has a dedicated cake, also famous in germany.", "links": {"subreddit": ["placeDe", "ich_iel", "de"], "discord": ["placede"]}, "path": {"126-258, T": [[-337, -915], [-356, -915], [-357, -916], [-360, -916], [-365, -921], [-365, -930], [-366, -931], [-366, -933], [-365, -934], [-365, -936], [-366, -936], [-366, -938], [-365, -939], [-363, -939], [-363, -940], [-362, -941], [-360, -941], [-359, -940], [-359, -939], [-357, -939], [-357, -942], [-353, -942], [-353, -940], [-350, -940], [-350, -941], [-347, -942], [-346, -940], [-343, -940], [-342, -942], [-340, -942], [-339, -939], [-338, -939], [-335, -940], [-334, -936], [-332, -934], [-332, -921], [-328, -921], [-328, -930], [-327, -931], [-325, -932], [-323, -933], [-320, -932], [-319, -933], [-319, -941], [-320, -941], [-326, -948], [-326, -955], [-322, -958], [-319, -961], [-320, -962], [-320, -963], [-316, -966], [-313, -967], [-309, -972], [-303, -977], [-294, -977], [-288, -971], [-288, -970], [-285, -970], [-283, -968], [-283, -966], [-284, -965], [-284, -959], [-283, -959], [-278, -963], [-275, -965], [-273, -966], [-270, -966], [-267, -963], [-267, -961], [-269, -958], [-272, -958], [-273, -957], [-272, -950], [-278, -942], [-279, -940], [-270, -933], [-269, -933], [-268, -932], [-267, -932], [-266, -930], [-264, -926], [-263, -926], [-262, -926], [-261, -930], [-259, -932], [-256, -931], [-256, -928], [-255, -928], [-255, -927], [-253, -927], [-254, -926], [-254, -925], [-253, -924], [-253, -921], [-252, -921], [-252, -919], [-254, -919], [-254, -918], [-265, -918], [-264, -919], [-265, -920], [-266, -921], [-267, -920], [-268, -919], [-269, -919], [-270, -918], [-306, -918], [-308, -918], [-308, -917], [-309, -916], [-310, -915], [-313, -915], [-313, -914], [-314, -913], [-324, -913], [-325, -914], [-327, -914], [-330, -916], [-331, -917], [-335, -917]]}, "center": {"126-258, T": [-299, -945]}}, +{"id": 1145, "name": "RVB Helmet", "description": "This helmet was moved multiple times to make room for the big drawing by Sukidingels. Therefore it was taken over by the Bonjwa Community.", "links": {"subreddit": ["RedvsBlue"]}, "path": {"90-107": [[-771, -327], [-765, -327], [-760, -321], [-761, -314], [-766, -310], [-771, -309], [-777, -315], [-777, -322], [-772, -327]], "119-258, T": [[-806, -340], [-803, -343], [-798, -343], [-792, -337], [-792, -331], [-798, -325], [-804, -325], [-809, -331], [-809, -337], [-803, -343]]}, "center": {"90-107": [-769, -318], "119-258, T": [-800, -334]}}, {"id": 1146, "name": "Bitcoin", "description": "Bitcoin (₿) is a decentralized digital currency (cryptocurrency) without a central bank or single administrator. It can be sent from user to user on the peer-to-peer Bitcoin network without the need for intermediaries.", "links": {"website": ["https://bitcoin.org/", "https://en.wikipedia.org/wiki/Bitcoin"], "subreddit": ["Bitcoin"]}, "path": {"136-152": [[54, -11], [54, -28], [70, -28], [70, -11]]}, "center": {"136-152": [62, -19]}}, -{"id": 1147, "name": "Will Wood -- \"In case I make it,\"", "description": "The cover of Will Wood's \"In case I make it,\" album, featuring Mr. Algernon Socrates Boy the rat and Ben the impulsively adopted amongus.", "links": {"website": ["https://www.willwood.net/", "https://en.wikipedia.org/wiki/Will_Wood_(musician)"], "subreddit": ["willwood"]}, "path": {"55-258": [[84, 104], [84, 129], [116, 129], [116, 104], [100, 104]]}, "center": {"55-258": [100, 117]}}, -{"id": 1148, "name": "Silent Fitz", "description": "Sylphiette (or Silent Fitz) is a fictional characters and one of the main protagonists of the Light Novel and Anime series Mushoku Tensei: Jobless Reincarnation.\n\nWhite hair explanation S2E0: During the displacement incident, people were teleported randomly across the world, Sylphiette was teleported to the sky, close to Ars, the capital of the Asuran Kingdom, in an attempt to survive, Sylphiette exhausts all of her mana using wind magic, with white hair being one of the main indicatives of mana exhaustion, although her hair turned white permanently. (S3 Content)", "links": {"website": ["https://mushokutensei.fandom.com/wiki/Sylphiette"], "subreddit": ["sixfacedworld"], "discord": ["mushokutensei"]}, "path": {"142-258": [[234, -805], [272, -805], [273, -810], [269, -816], [265, -821], [271, -829], [270, -833], [271, -837], [269, -841], [265, -842], [262, -845], [255, -845], [250, -845], [249, -843], [246, -842], [243, -840], [244, -839], [242, -834], [240, -829], [242, -825], [244, -824], [244, -819], [244, -816]]}, "center": {"142-258": [256, -831]}}, +{"id": 1147, "name": "Will Wood -- \"In case I make it,\"", "description": "The cover of Will Wood's \"In case I make it,\" album, featuring Mr. Algernon Socrates Boy the rat and Ben the impulsively adopted amongus.", "links": {"website": ["https://www.willwood.net/", "https://en.wikipedia.org/wiki/Will_Wood_(musician)"], "subreddit": ["willwood"]}, "path": {"55-258, T": [[84, 104], [84, 129], [116, 129], [116, 104], [100, 104]]}, "center": {"55-258, T": [100, 117]}}, +{"id": 1148, "name": "Silent Fitz", "description": "Sylphiette (or Silent Fitz) is a fictional characters and one of the main protagonists of the Light Novel and Anime series Mushoku Tensei: Jobless Reincarnation.\n\nWhite hair explanation S2E0: During the displacement incident, people were teleported randomly across the world, Sylphiette was teleported to the sky, close to Ars, the capital of the Asuran Kingdom, in an attempt to survive, Sylphiette exhausts all of her mana using wind magic, with white hair being one of the main indicatives of mana exhaustion, although her hair turned white permanently. (S3 Content)", "links": {"website": ["https://mushokutensei.fandom.com/wiki/Sylphiette"], "subreddit": ["sixfacedworld"], "discord": ["mushokutensei"]}, "path": {"142-258, T": [[234, -805], [272, -805], [273, -810], [269, -816], [265, -821], [271, -829], [270, -833], [271, -837], [269, -841], [265, -842], [262, -845], [255, -845], [250, -845], [249, -843], [246, -842], [243, -840], [244, -839], [242, -834], [240, -829], [242, -825], [244, -824], [244, -819], [244, -816]]}, "center": {"142-258, T": [256, -831]}}, {"id": 1149, "name": "Slime", "description": "The slime is a recurring monster in the Dragon Quest game franchise.", "links": {"website": ["https://dragonquest.fandom.com/wiki/Slime"], "subreddit": ["dragonquest"]}, "path": {"142-187": [[-78, -509], [-81, -512], [-81, -515], [-78, -518], [-77, -518], [-75, -520], [-75, -522], [-74, -523], [-73, -522], [-73, -520], [-71, -518], [-70, -518], [-67, -515], [-67, -512], [-70, -509]]}, "center": {"142-187": [-74, -514]}}, -{"id": 1150, "name": "Real Madrid", "description": "Real Madrid is a Spanish association football club based in Madrid.", "links": {"website": ["https://www.realmadrid.com/en", "https://en.wikipedia.org/wiki/Real_Madrid_CF"], "subreddit": ["realmadrid"]}, "path": {"142-258": [[-520, 55], [-517, 52], [-517, 49], [-515, 47], [-513, 47], [-512, 46], [-511, 47], [-509, 47], [-507, 49], [-507, 52], [-504, 55], [-504, 63], [-507, 66], [-517, 66], [-520, 63]], "105-258": [[-517, 66], [-520, 63], [-520, 55], [-517, 52], [-517, 49], [-515, 47], [-513, 47], [-513, 46], [-511, 46], [-511, 47], [-509, 47], [-507, 49], [-507, 52], [-504, 55], [-504, 63], [-507, 66]]}, "center": {"142-258": [-512, 58], "105-258": [-512, 58]}}, -{"id": 1151, "name": "Simon", "description": "Simon is a French flash-animated television serie.\nThe show centers on an anthropomorphic rabbit named Simon who lives with his parents Andre and Eva and little brother Gaspard and a pet orange cat named Milou and they go on many adventures.\nThe series premiered in France on December 17, 2016, on French channel France 5 before being exported across the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Simon_(French_TV_series)", "https://www.france.tv/france-5/simon/"]}, "path": {"101-258": [[-383, 460], [-385, 460], [-385, 461], [-386, 461], [-386, 463], [-387, 463], [-387, 470], [-387, 471], [-388, 471], [-388, 472], [-389, 472], [-389, 475], [-387, 475], [-386, 476], [-377, 476], [-377, 472], [-378, 472], [-378, 471], [-379, 471], [-379, 463], [-378, 462], [-377, 460]]}, "center": {"101-258": [-383, 468]}}, +{"id": 1150, "name": "Real Madrid", "description": "Real Madrid is a Spanish association football club based in Madrid.", "links": {"website": ["https://www.realmadrid.com/en", "https://en.wikipedia.org/wiki/Real_Madrid_CF"], "subreddit": ["realmadrid"]}, "path": {"142-258, T": [[-520, 55], [-517, 52], [-517, 49], [-515, 47], [-513, 47], [-512, 46], [-511, 47], [-509, 47], [-507, 49], [-507, 52], [-504, 55], [-504, 63], [-507, 66], [-517, 66], [-520, 63]], "105-258, T": [[-517, 66], [-520, 63], [-520, 55], [-517, 52], [-517, 49], [-515, 47], [-513, 47], [-513, 46], [-511, 46], [-511, 47], [-509, 47], [-507, 49], [-507, 52], [-504, 55], [-504, 63], [-507, 66]]}, "center": {"142-258, T": [-512, 58], "105-258, T": [-512, 58]}}, +{"id": 1151, "name": "Simon", "description": "Simon is a French flash-animated television serie.\nThe show centers on an anthropomorphic rabbit named Simon who lives with his parents Andre and Eva and little brother Gaspard and a pet orange cat named Milou and they go on many adventures.\nThe series premiered in France on December 17, 2016, on French channel France 5 before being exported across the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Simon_(French_TV_series)", "https://www.france.tv/france-5/simon/"]}, "path": {"101-258, T": [[-383, 460], [-385, 460], [-385, 461], [-386, 461], [-386, 463], [-387, 463], [-387, 470], [-387, 471], [-388, 471], [-388, 472], [-389, 472], [-389, 475], [-387, 475], [-386, 476], [-377, 476], [-377, 472], [-378, 472], [-378, 471], [-379, 471], [-379, 463], [-378, 462], [-377, 460]]}, "center": {"101-258, T": [-383, 468]}}, {"id": 1152, "name": "Peter R. de Vries", "description": "Peter the best-known crime reporter in the Netherlands for decades, he was killed in broad daylight, leaving the RTL broadcast studio on the 15th of july 2021.", "links": {"website": ["https://www.peterrdevries.nl/"]}, "path": {"148-151": [[663, -550], [550, -550], [549, -532], [627, -531], [626, -501], [664, -501]]}, "center": {"148-151": [645, -520]}}, -{"id": 1153, "name": "Democracy Monument", "description": "The Democracy Monument is a monument in Bangkok, Thailand.\n\nThis art was added by Thailand to protest current events in Thai politics.", "links": {"website": ["https://en.wikipedia.org/wiki/Democracy_Monument"], "subreddit": ["Thailand", "thaithai"]}, "path": {"54-258": [[92, 73], [89, 76], [89, 83], [109, 83], [109, 76], [106, 73]]}, "center": {"54-258": [99, 78]}}, +{"id": 1153, "name": "Democracy Monument", "description": "The Democracy Monument is a monument in Bangkok, Thailand.\n\nThis art was added by Thailand to protest current events in Thai politics.", "links": {"website": ["https://en.wikipedia.org/wiki/Democracy_Monument"], "subreddit": ["Thailand", "thaithai"]}, "path": {"54-258, T": [[92, 73], [89, 76], [89, 83], [109, 83], [109, 76], [106, 73]]}, "center": {"54-258, T": [99, 78]}}, {"id": 1154, "name": "IUT Vannes", "description": "The logo of the University of Vannes in France. It was made by the computer science students.", "links": {"website": ["https://www.iutvannes.fr/"], "discord": ["5yDbXeqTdq"]}, "path": {"138": [[-835, 405], [-799, 405], [-799, 429], [-799, 430], [-835, 430]]}, "center": {"138": [-817, 418]}}, -{"id": 1155, "name": "Zaai", "description": "\"Zaai\" was a dutch TV-series showing the adventures of two girls sitting on a fence in the marsh, in the episodes, a postman comes by and asks them why they are so bored, a widely known topic about the show was the type of voice the characters put on while talking, the show ran from 1998 to 2003, putting together 31 total episodes.", "links": {}, "path": {"147-258": [[243, -452], [243, -469], [245, -469], [245, -468], [246, -468], [246, -467], [247, -467], [247, -466], [248, -466], [248, -465], [249, -465], [250, -465], [250, -472], [248, -472], [248, -479], [249, -479], [249, -477], [251, -477], [251, -480], [250, -480], [250, -483], [251, -483], [251, -484], [252, -484], [252, -485], [254, -485], [254, -484], [255, -484], [255, -483], [256, -483], [256, -480], [255, -480], [255, -479], [255, -478], [256, -478], [256, -477], [257, -477], [257, -476], [259, -476], [259, -479], [260, -479], [260, -477], [262, -477], [262, -480], [261, -480], [261, -483], [266, -483], [266, -481], [265, -481], [265, -480], [265, -479], [264, -479], [264, -477], [266, -477], [266, -476], [267, -476], [267, -475], [268, -475], [268, -463], [277, -463], [277, -467], [278, -467], [278, -466], [282, -466], [282, -469], [281, -469], [281, -470], [280, -470], [280, -471], [278, -471], [278, -472], [277, -472], [277, -473], [276, -473], [276, -476], [275, -476], [275, -477], [277, -477], [277, -474], [278, -474], [278, -473], [280, -473], [280, -474], [281, -474], [281, -475], [282, -475], [283, -475], [284, -475], [284, -477], [282, -477], [282, -481], [281, -481], [282, -481], [282, -484], [284, -484], [284, -483], [286, -483], [286, -482], [287, -482], [287, -480], [286, -480], [286, -476], [287, -476], [287, -475], [288, -475], [288, -474], [289, -474], [289, -468], [288, -468], [288, -463], [296, -463], [296, -467], [297, -467], [297, -452], [297, -451], [243, -451]]}, "center": {"147-258": [259, -461]}}, -{"id": 1156, "name": "Najimi Osana", "description": "Najimi Osana (長おさ名ななじみ Osana Najimi?) is a character in Komi Can't Communicate. Their gender is unknown. They are also the complete antithesis of Komi Shouko; possessing phenomenal communication abilities which allowed them to get close to anyone within a few minutes of meeting them.", "links": {"website": ["https://komisan.fandom.com/wiki/Najimi_Osana"], "subreddit": ["Komi_san"], "discord": ["gFaQVxCGPV"]}, "path": {"104-258": [[-719, -222], [-719, -215], [-717, -210], [-721, -211], [-716, -206], [-713, -208], [-708, -206], [-696, -206], [-694, -209], [-689, -206], [-686, -208], [-685, -212], [-688, -213], [-685, -215], [-686, -221], [-688, -226], [-690, -230], [-713, -230]]}, "center": {"104-258": [-703, -218]}}, +{"id": 1155, "name": "Zaai", "description": "\"Zaai\" was a dutch TV-series showing the adventures of two girls sitting on a fence in the marsh, in the episodes, a postman comes by and asks them why they are so bored, a widely known topic about the show was the type of voice the characters put on while talking, the show ran from 1998 to 2003, putting together 31 total episodes.", "links": {}, "path": {"147-258, T": [[243, -452], [243, -469], [245, -469], [245, -468], [246, -468], [246, -467], [247, -467], [247, -466], [248, -466], [248, -465], [249, -465], [250, -465], [250, -472], [248, -472], [248, -479], [249, -479], [249, -477], [251, -477], [251, -480], [250, -480], [250, -483], [251, -483], [251, -484], [252, -484], [252, -485], [254, -485], [254, -484], [255, -484], [255, -483], [256, -483], [256, -480], [255, -480], [255, -479], [255, -478], [256, -478], [256, -477], [257, -477], [257, -476], [259, -476], [259, -479], [260, -479], [260, -477], [262, -477], [262, -480], [261, -480], [261, -483], [266, -483], [266, -481], [265, -481], [265, -480], [265, -479], [264, -479], [264, -477], [266, -477], [266, -476], [267, -476], [267, -475], [268, -475], [268, -463], [277, -463], [277, -467], [278, -467], [278, -466], [282, -466], [282, -469], [281, -469], [281, -470], [280, -470], [280, -471], [278, -471], [278, -472], [277, -472], [277, -473], [276, -473], [276, -476], [275, -476], [275, -477], [277, -477], [277, -474], [278, -474], [278, -473], [280, -473], [280, -474], [281, -474], [281, -475], [282, -475], [283, -475], [284, -475], [284, -477], [282, -477], [282, -481], [281, -481], [282, -481], [282, -484], [284, -484], [284, -483], [286, -483], [286, -482], [287, -482], [287, -480], [286, -480], [286, -476], [287, -476], [287, -475], [288, -475], [288, -474], [289, -474], [289, -468], [288, -468], [288, -463], [296, -463], [296, -467], [297, -467], [297, -452], [297, -451], [243, -451]]}, "center": {"147-258, T": [259, -461]}}, +{"id": 1156, "name": "Najimi Osana", "description": "Najimi Osana (長おさ名ななじみ Osana Najimi?) is a character in Komi Can't Communicate. Their gender is unknown. They are also the complete antithesis of Komi Shouko; possessing phenomenal communication abilities which allowed them to get close to anyone within a few minutes of meeting them.", "links": {"website": ["https://komisan.fandom.com/wiki/Najimi_Osana"], "subreddit": ["Komi_san"], "discord": ["gFaQVxCGPV"]}, "path": {"104-258, T": [[-719, -222], [-719, -215], [-717, -210], [-721, -211], [-716, -206], [-713, -208], [-708, -206], [-696, -206], [-694, -209], [-689, -206], [-686, -208], [-685, -212], [-688, -213], [-685, -215], [-686, -221], [-688, -226], [-690, -230], [-713, -230]]}, "center": {"104-258, T": [-703, -218]}}, {"id": 1158, "name": "IUT Vannes", "description": "The logo of the University of Vannes in France. It was made by the computer science students.", "links": {"website": ["https://www.iutvannes.fr/"], "discord": ["5yDbXeqTdq"]}, "path": {"138": [[-835, 405], [-799, 405], [-799, 429], [-799, 430], [-835, 430]]}, "center": {"138": [-817, 418]}}, {"id": 1159, "name": "Flag of Devon", "description": "St Petroc's Cross, adopted as the county flag in 2006, having been selected in two online polls conducted by the BBC three years earlier.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Devon"], "subreddit": ["DevonUK"]}, "path": {"136-148": [[-333, -290], [-333, -284], [-321, -284], [-321, -290]]}, "center": {"136-148": [-327, -287]}}, -{"id": 1160, "name": "ASML", "description": "ASML is a Dutch multinational corporation founded in 1984. ASML specializes in the development and manufacturing of photolithography machines which are used to produce computer chips.", "links": {"website": ["https://www.asml.com/en"]}, "path": {"149-258": [[458, -498], [424, -498], [424, -509], [458, -509]]}, "center": {"149-258": [441, -503]}}, -{"id": 1161, "name": "INRI | ICRU", "description": "INRI stands for \"IESVS NAZARENVS REX IVDÆORVM\", the Latin inscription inscribed on the Cross of Jesus Christ. ICRU stands for \"IESVUS CHRISTUS REX UNIVERSALIS\", which, in English, means \"Jesus Christ, King of the Universe\". On the mantle are several illustrations depicting (from L to R), a Catholic Parish, the Eucharist, the Immaculate Heart of Mary, and the Sacred Heart of Jesus Christ. On the top left is the Chi-Rho, a Christogram representing the word ΧΡΙΣΤΟΣ, meaning \"to Christ\". On the right is a simplified version of the flag of the Vatican City, the Capital of the Catholic Church.", "links": {"subreddit": ["catholicmemes"], "discord": ["9CeNKuU"]}, "path": {"97-258": [[-839, 21], [-867, 21], [-868, -6], [-839, -6]]}, "center": {"97-258": [-853, 8]}}, -{"id": 1162, "name": "Werner", "description": "Werner is a German comics character, appearing in a number of German comic books and animated films. He was created in 1978 by Brösel (Rötger Feldmann). Werner is the most successful German comic character of all time.\nThe Werner books are known for their anarchic humour, often based on Northern German dialects and puns.", "links": {"website": ["https://www.werner.de/"], "subreddit": ["placeDE"]}, "path": {"149-258": [[-423, -585], [-424, -585], [-426, -583], [-426, -580], [-425, -579], [-425, -578], [-428, -578], [-429, -577], [-429, -575], [-430, -575], [-436, -569], [-436, -568], [-437, -567], [-437, -566], [-438, -565], [-438, -557], [-437, -556], [-436, -555], [-428, -555], [-428, -556], [-426, -556], [-426, -557], [-425, -557], [-425, -558], [-420, -558], [-420, -557], [-419, -556], [-419, -555], [-423, -551], [-424, -551], [-399, -551], [-381, -551], [-379, -552], [-378, -556], [-378, -564], [-383, -569], [-382, -571], [-382, -572], [-385, -575], [-388, -575], [-394, -579], [-394, -585], [-397, -590], [-397, -595], [-410, -593], [-413, -589]]}, "center": {"149-258": [-409, -571]}}, -{"id": 1163, "name": "Hyves", "description": "Hyves was a social networking site in the Netherlands\nThe site launched on October 10th, 2004 and shut down in 2013, following the rise of other platforms such as Facebook and Twitter, it still exists to this day, focusing on easy-to-play games.", "links": {"website": ["https://hyvesgames.nl/"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"149-258": [[-822, -500], [-822, -499], [-821, -499], [-821, -497], [-820, -497], [-820, -493], [-819, -493], [-819, -492], [-818, -492], [-808, -492], [-808, -485], [-796, -485], [-796, -475], [-812, -474], [-812, -468], [-847, -468], [-847, -484], [-838, -487], [-836, -492], [-830, -491], [-829, -494]]}, "center": {"149-258": [-824, -480]}}, -{"id": 1164, "name": "The Nether[lands] Portal", "description": "In the video game Minecraft, a nether portal teleports a player to the Nether: a hellish dimension of fire and brimstone.\n\n\"Nether\" is an Old English word meaning \"low-lying\" or \"below\", hence its use as a name for both an underworld and a kingdom famously at sea level.", "links": {"subreddit": ["PlaceNL"], "discord": ["PlaceNL"]}, "path": {"149-258": [[-815, -500], [-814, -501], [-814, -520], [-803, -520], [-802, -519], [-802, -515], [-801, -514], [-795, -514], [-794, -515], [-793, -514], [-791, -514], [-790, -515], [-789, -515], [-788, -514], [-777, -514], [-776, -515], [-775, -514], [-770, -514], [-769, -515], [-768, -515], [-767, -516], [-766, -515], [-764, -515], [-763, -514], [-761, -514], [-760, -515], [-759, -516], [-758, -517], [-758, -524], [-759, -525], [-759, -526], [-757, -526], [-756, -527], [-755, -527], [-754, -526], [-752, -526], [-751, -527], [-751, -537], [-752, -537], [-753, -538], [-759, -538], [-760, -537], [-761, -538], [-767, -538], [-768, -537], [-769, -538], [-771, -538], [-772, -537], [-773, -537], [-774, -538], [-776, -538], [-777, -537], [-778, -538], [-778, -542], [-779, -543], [-779, -545], [-778, -546], [-778, -549], [-778, -550], [-779, -551], [-858, -551], [-858, -504], [-854, -500]]}, "center": {"149-258": [-835, -528]}}, +{"id": 1160, "name": "ASML", "description": "ASML is a Dutch multinational corporation founded in 1984. ASML specializes in the development and manufacturing of photolithography machines which are used to produce computer chips.", "links": {"website": ["https://www.asml.com/en"]}, "path": {"149-258, T": [[458, -498], [424, -498], [424, -509], [458, -509]]}, "center": {"149-258, T": [441, -503]}}, +{"id": 1161, "name": "INRI | ICRU", "description": "INRI stands for \"IESVS NAZARENVS REX IVDÆORVM\", the Latin inscription inscribed on the Cross of Jesus Christ. ICRU stands for \"IESVUS CHRISTUS REX UNIVERSALIS\", which, in English, means \"Jesus Christ, King of the Universe\". On the mantle are several illustrations depicting (from L to R), a Catholic Parish, the Eucharist, the Immaculate Heart of Mary, and the Sacred Heart of Jesus Christ. On the top left is the Chi-Rho, a Christogram representing the word ΧΡΙΣΤΟΣ, meaning \"to Christ\". On the right is a simplified version of the flag of the Vatican City, the Capital of the Catholic Church.", "links": {"subreddit": ["catholicmemes"], "discord": ["9CeNKuU"]}, "path": {"97-258, T": [[-839, 21], [-867, 21], [-868, -6], [-839, -6]]}, "center": {"97-258, T": [-853, 8]}}, +{"id": 1162, "name": "Werner", "description": "Werner is a German comics character, appearing in a number of German comic books and animated films. He was created in 1978 by Brösel (Rötger Feldmann). Werner is the most successful German comic character of all time.\nThe Werner books are known for their anarchic humour, often based on Northern German dialects and puns.", "links": {"website": ["https://www.werner.de/"], "subreddit": ["placeDE"]}, "path": {"149-258, T": [[-423, -585], [-424, -585], [-426, -583], [-426, -580], [-425, -579], [-425, -578], [-428, -578], [-429, -577], [-429, -575], [-430, -575], [-436, -569], [-436, -568], [-437, -567], [-437, -566], [-438, -565], [-438, -557], [-437, -556], [-436, -555], [-428, -555], [-428, -556], [-426, -556], [-426, -557], [-425, -557], [-425, -558], [-420, -558], [-420, -557], [-419, -556], [-419, -555], [-423, -551], [-424, -551], [-399, -551], [-381, -551], [-379, -552], [-378, -556], [-378, -564], [-383, -569], [-382, -571], [-382, -572], [-385, -575], [-388, -575], [-394, -579], [-394, -585], [-397, -590], [-397, -595], [-410, -593], [-413, -589]]}, "center": {"149-258, T": [-409, -571]}}, +{"id": 1163, "name": "Hyves", "description": "Hyves was a social networking site in the Netherlands\nThe site launched on October 10th, 2004 and shut down in 2013, following the rise of other platforms such as Facebook and Twitter, it still exists to this day, focusing on easy-to-play games.", "links": {"website": ["https://hyvesgames.nl/"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"149-258, T": [[-822, -500], [-822, -499], [-821, -499], [-821, -497], [-820, -497], [-820, -493], [-819, -493], [-819, -492], [-818, -492], [-808, -492], [-808, -485], [-796, -485], [-796, -475], [-812, -474], [-812, -468], [-847, -468], [-847, -484], [-838, -487], [-836, -492], [-830, -491], [-829, -494]]}, "center": {"149-258, T": [-824, -480]}}, +{"id": 1164, "name": "The Nether[lands] Portal", "description": "In the video game Minecraft, a nether portal teleports a player to the Nether: a hellish dimension of fire and brimstone.\n\n\"Nether\" is an Old English word meaning \"low-lying\" or \"below\", hence its use as a name for both an underworld and a kingdom famously at sea level.", "links": {"subreddit": ["PlaceNL"], "discord": ["PlaceNL"]}, "path": {"149-258, T": [[-815, -500], [-814, -501], [-814, -520], [-803, -520], [-802, -519], [-802, -515], [-801, -514], [-795, -514], [-794, -515], [-793, -514], [-791, -514], [-790, -515], [-789, -515], [-788, -514], [-777, -514], [-776, -515], [-775, -514], [-770, -514], [-769, -515], [-768, -515], [-767, -516], [-766, -515], [-764, -515], [-763, -514], [-761, -514], [-760, -515], [-759, -516], [-758, -517], [-758, -524], [-759, -525], [-759, -526], [-757, -526], [-756, -527], [-755, -527], [-754, -526], [-752, -526], [-751, -527], [-751, -537], [-752, -537], [-753, -538], [-759, -538], [-760, -537], [-761, -538], [-767, -538], [-768, -537], [-769, -538], [-771, -538], [-772, -537], [-773, -537], [-774, -538], [-776, -538], [-777, -537], [-778, -538], [-778, -542], [-779, -543], [-779, -545], [-778, -546], [-778, -549], [-778, -550], [-779, -551], [-858, -551], [-858, -504], [-854, -500]]}, "center": {"149-258, T": [-835, -528]}}, {"id": 1165, "name": "Inabakumori", "description": "inabakumori (稲葉曇), also stylized as INABAKUMORI, is a VOCALOID producer who primarily uses Kaai Yuki. He made his debut under this alias in February 2016, with the song \"Himitsu Ongaku\".\n\nOn December 2017, he indirectly confirmed that his former producer alias was MichouP (視長P), also known as PUKARI or 因幡プカリ (Inaba Pukari). MichouP was active from December 2011 until October 2014.\n\nHe was born on February 25, 1995", "links": {"website": ["http://www.nicovideo.jp/user/42833430", "https://www.youtube.com/channel/UCNElM45JypxqAR73RoUQ10g"], "discord": ["inabakumori"]}, "path": {"149-211": [[884, -154], [884, -193], [850, -193], [850, -154]]}, "center": {"149-211": [867, -173]}}, -{"id": 1166, "name": "Enterprise", "description": "Enterprise is a character from the gacha game Azur Lane.", "links": {"website": ["https://azurlane.koumakan.jp/wiki/Enterprise"], "subreddit": ["AzureLane"]}, "path": {"89-258": [[-707, 197], [-712, 201], [-716, 209], [-716, 229], [-713, 238], [-705, 250], [-674, 250], [-674, 246], [-682, 234], [-682, 219], [-688, 214], [-686, 211], [-686, 207], [-693, 201], [-701, 197]]}, "center": {"89-258": [-699, 228]}}, -{"id": 1167, "name": "M4A1", "description": "M4A1 is the protagonist of the gacha game Girls' Frontline.", "links": {"website": ["https://iopwiki.com/wiki/M4A1"], "subreddit": ["girlsfrontline"]}, "path": {"88-258": [[-674, 195], [-680, 201], [-682, 205], [-682, 222], [-683, 223], [-683, 231], [-677, 243], [-671, 249], [-670, 249], [-654, 242], [-648, 233], [-648, 222], [-657, 201], [-664, 195]]}, "center": {"88-258": [-665, 226]}}, -{"id": 1168, "name": "Artoria Caster", "description": "Artoria Caster (a.k.a. Castoria) is a character from the gacha game Fate/Grand Order", "links": {"website": ["https://fategrandorder.fandom.com/wiki/Artoria_Caster"], "subreddit": ["grandorder"], "discord": ["grandorder"]}, "path": {"89-258": [[-634, 194], [-640, 197], [-646, 203], [-650, 214], [-650, 217], [-645, 225], [-643, 236], [-643, 246], [-636, 246], [-634, 244], [-622, 244], [-612, 232], [-618, 226], [-618, 217], [-621, 212], [-618, 206], [-618, 204], [-629, 194]]}, "center": {"89-258": [-635, 214]}}, -{"id": 1169, "name": "Rad Shiba", "description": "Rad Shiba is a Shiba Inu character from the bartender simulation game VA-11 Hall-A: Cyberpunk Bartender Action", "links": {"website": ["https://va11halla.fandom.com/wiki/Rad_Shiba"], "subreddit": ["waifubartending"]}, "path": {"88-258": [[-618, 158], [-618, 166], [-621, 169], [-621, 171], [-618, 175], [-618, 177], [-613, 182], [-607, 182], [-597, 176], [-597, 166], [-600, 165], [-600, 158]]}, "center": {"88-258": [-609, 171]}}, -{"id": 1170, "name": "Flag of New Zealand", "description": "New Zealand, known as Aotearoa in the indigineous Māori language, is a country in Oceania.", "links": {"website": ["https://en.wikipedia.org/wiki/New_Zealand", "https://en.wikipedia.org/wiki/Flag_of_New_Zealand"], "subreddit": ["newzealand"]}, "path": {"116-258": [[-925, 22], [-925, 55], [-868, 55], [-868, 22]]}, "center": {"116-258": [-896, 39]}}, -{"id": 1171, "name": "Kiwi", "description": "The kiwi is a flightless bird that serves as the national bird of New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/Kiwi_(bird)"], "subreddit": ["newzealand"]}, "path": {"134-258": [[-868, 42], [-868, 49], [-863, 45], [-863, 44], [-861, 44], [-861, 42], [-863, 42], [-865, 40], [-866, 40]]}, "center": {"134-258": [-865, 44]}}, -{"id": 1172, "name": "Rubik's Cube", "description": "A puzzle created by Erno Rubik", "links": {"website": ["https://www.worldcubeassociation.org/"], "subreddit": ["cubers"], "discord": ["cubers"]}, "path": {"90-258": [[-562, -217], [-549, -210], [-539, -215], [-560, -224], [-562, -220], [-562, -216], [-548, -210], [-538, -215], [-535, -215], [-535, -218], [-532, -219], [-531, -241], [-549, -250], [-557, -247], [-557, -240], [-558, -240], [-559, -239], [-560, -238], [-561, -236], [-562, -235], [-543, -223], [-540, -223], [-536, -218], [-536, -215]]}, "center": {"90-258": [-542, -235]}}, +{"id": 1166, "name": "Enterprise", "description": "Enterprise is a character from the gacha game Azur Lane.", "links": {"website": ["https://azurlane.koumakan.jp/wiki/Enterprise"], "subreddit": ["AzureLane"]}, "path": {"89-258, T": [[-707, 197], [-712, 201], [-716, 209], [-716, 229], [-713, 238], [-705, 250], [-674, 250], [-674, 246], [-682, 234], [-682, 219], [-688, 214], [-686, 211], [-686, 207], [-693, 201], [-701, 197]]}, "center": {"89-258, T": [-699, 228]}}, +{"id": 1167, "name": "M4A1", "description": "M4A1 is the protagonist of the gacha game Girls' Frontline.", "links": {"website": ["https://iopwiki.com/wiki/M4A1"], "subreddit": ["girlsfrontline"]}, "path": {"88-258, T": [[-674, 195], [-680, 201], [-682, 205], [-682, 222], [-683, 223], [-683, 231], [-677, 243], [-671, 249], [-670, 249], [-654, 242], [-648, 233], [-648, 222], [-657, 201], [-664, 195]]}, "center": {"88-258, T": [-665, 226]}}, +{"id": 1168, "name": "Artoria Caster", "description": "Artoria Caster (a.k.a. Castoria) is a character from the gacha game Fate/Grand Order", "links": {"website": ["https://fategrandorder.fandom.com/wiki/Artoria_Caster"], "subreddit": ["grandorder"], "discord": ["grandorder"]}, "path": {"89-258, T": [[-634, 194], [-640, 197], [-646, 203], [-650, 214], [-650, 217], [-645, 225], [-643, 236], [-643, 246], [-636, 246], [-634, 244], [-622, 244], [-612, 232], [-618, 226], [-618, 217], [-621, 212], [-618, 206], [-618, 204], [-629, 194]]}, "center": {"89-258, T": [-635, 214]}}, +{"id": 1169, "name": "Rad Shiba", "description": "Rad Shiba is a Shiba Inu character from the bartender simulation game VA-11 Hall-A: Cyberpunk Bartender Action", "links": {"website": ["https://va11halla.fandom.com/wiki/Rad_Shiba"], "subreddit": ["waifubartending"]}, "path": {"88-258, T": [[-618, 158], [-618, 166], [-621, 169], [-621, 171], [-618, 175], [-618, 177], [-613, 182], [-607, 182], [-597, 176], [-597, 166], [-600, 165], [-600, 158]]}, "center": {"88-258, T": [-609, 171]}}, +{"id": 1170, "name": "Flag of New Zealand", "description": "New Zealand, known as Aotearoa in the indigineous Māori language, is a country in Oceania.", "links": {"website": ["https://en.wikipedia.org/wiki/New_Zealand", "https://en.wikipedia.org/wiki/Flag_of_New_Zealand"], "subreddit": ["newzealand"]}, "path": {"116-258, T": [[-925, 22], [-925, 55], [-868, 55], [-868, 22]]}, "center": {"116-258, T": [-896, 39]}}, +{"id": 1171, "name": "Kiwi", "description": "The kiwi is a flightless bird that serves as the national bird of New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/Kiwi_(bird)"], "subreddit": ["newzealand"]}, "path": {"134-258, T": [[-868, 42], [-868, 49], [-863, 45], [-863, 44], [-861, 44], [-861, 42], [-863, 42], [-865, 40], [-866, 40]]}, "center": {"134-258, T": [-865, 44]}}, +{"id": 1172, "name": "Rubik's Cube", "description": "A puzzle created by Erno Rubik", "links": {"website": ["https://www.worldcubeassociation.org/"], "subreddit": ["cubers"], "discord": ["cubers"]}, "path": {"90-258, T": [[-562, -217], [-549, -210], [-539, -215], [-560, -224], [-562, -220], [-562, -216], [-548, -210], [-538, -215], [-535, -215], [-535, -218], [-532, -219], [-531, -241], [-549, -250], [-557, -247], [-557, -240], [-558, -240], [-559, -239], [-560, -238], [-561, -236], [-562, -235], [-543, -223], [-540, -223], [-536, -218], [-536, -215]]}, "center": {"90-258, T": [-542, -235]}}, {"id": 1173, "name": "Brushbuddy", "description": "Brushbuddies (フデムシ, Fudemushi), or Brushbugs, are a small species of magical creature that inhabits the world of the manga Witch Hat Atelier.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Brushbuddy_(Species)"], "subreddit": ["WitchHatAtelier"], "discord": ["xpQSRKjH"]}, "path": {"149-162": [[306, -864], [312, -864], [316, -864], [320, -864], [321, -864], [321, -856], [321, -852], [321, -850], [315, -850], [311, -850], [307, -850], [306, -850]]}, "center": {"149-162": [314, -857]}}, -{"id": 1174, "name": "Football Stars", "description": "Two stars representing the two Men's World Cups won by the French Football Team. (1998/2018)", "links": {"website": ["https://www.fff.fr/", "https://en.wikipedia.org/wiki/France_national_football_team"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"146-173": [[892, -834], [892, -832], [891, -830], [890, -827], [889, -825], [888, -824], [874, -824], [873, -823], [874, -822], [875, -821], [876, -820], [878, -819], [880, -818], [882, -817], [884, -816], [885, -814], [885, -813], [884, -812], [883, -811], [883, -810], [882, -809], [881, -808], [880, -807], [879, -806], [879, -805], [878, -804], [878, -802], [879, -801], [881, -801], [882, -802], [884, -802], [885, -803], [886, -805], [888, -806], [890, -807], [891, -808], [895, -808], [897, -807], [899, -806], [900, -805], [900, -804], [902, -803], [904, -802], [908, -801], [942, -800], [943, -801], [944, -802], [945, -802], [946, -803], [947, -803], [948, -804], [950, -805], [951, -806], [953, -807], [954, -808], [956, -808], [958, -807], [960, -806], [961, -805], [962, -804], [963, -803], [964, -802], [965, -801], [966, -801], [967, -800], [968, -799], [969, -800], [970, -801], [970, -802], [969, -803], [969, -804], [968, -805], [967, -806], [967, -808], [966, -809], [965, -810], [965, -811], [964, -812], [964, -815], [965, -816], [965, -817], [966, -817], [967, -818], [968, -818], [969, -819], [970, -819], [971, -820], [972, -821], [974, -822], [975, -823], [974, -824], [960, -824], [959, -825], [959, -827], [958, -828], [958, -831], [957, -832], [957, -833], [956, -834], [956, -835], [955, -836], [954, -835], [954, -834], [953, -832], [952, -830], [952, -829], [951, -828], [950, -827], [950, -825], [949, -824], [937, -824], [898, -824], [897, -826], [896, -827], [896, -829], [895, -830], [895, -831], [894, -832], [894, -834], [893, -835]], "186-258": [[879, -814], [880, -814], [883, -817], [884, -816], [885, -817], [884, -818], [885, -819], [886, -819], [887, -820], [888, -819], [889, -820], [891, -820], [894, -817], [895, -817], [896, -816], [896, -815], [897, -814], [898, -814], [899, -815], [900, -816], [900, -818], [899, -819], [899, -821], [898, -822], [898, -826], [900, -828], [901, -828], [904, -831], [903, -832], [903, -833], [902, -834], [899, -834], [898, -835], [896, -835], [894, -837], [894, -838], [892, -840], [924, -840], [924, -842], [967, -842], [967, -843], [972, -843], [968, -839], [968, -838], [967, -837], [966, -837], [965, -836], [965, -835], [961, -835], [960, -834], [959, -835], [957, -833], [957, -832], [958, -831], [959, -831], [961, -829], [962, -829], [963, -828], [964, -829], [965, -829], [965, -826], [964, -825], [964, -824], [963, -823], [963, -822], [962, -821], [962, -819], [963, -818], [965, -818], [967, -820], [967, -821], [968, -822], [969, -822], [970, -823], [971, -823], [972, -822], [973, -823], [974, -823], [976, -821], [977, -821], [979, -819], [980, -819], [981, -818], [982, -818], [983, -819], [983, -821], [981, -823], [981, -824], [979, -826], [979, -829], [980, -829], [981, -830], [983, -830], [984, -831], [985, -831], [987, -833], [986, -834], [985, -834], [984, -835], [980, -835], [979, -836], [977, -836], [977, -837], [976, -838], [976, -840], [973, -843], [967, -843], [967, -842], [924, -842], [924, -840], [887, -840], [885, -838], [885, -837], [882, -834], [874, -834], [873, -833], [875, -831], [876, -831], [876, -829], [877, -828], [878, -828], [879, -827], [880, -827], [881, -826], [882, -826], [881, -825], [881, -824], [880, -823], [880, -822], [879, -821], [879, -816], [878, -815]]}, "center": {"146-173": [937, -812], "186-258": [890, -829]}}, -{"id": 1175, "name": "Map of Romania and Moldova", "description": "A map of Romania and Moldova appearing with a checkered background. \n\nInitially only the map of Romania was to be included as a background to the castle. But as some users continued Romania's border to include Moldova, it was decided to keep it as well, with the addition of the border between the two.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania"], "discord": ["placero"]}, "path": {"151-258": [[-334, 92], [-342, 97], [-350, 110], [-353, 115], [-356, 115], [-361, 118], [-361, 119], [-357, 123], [-357, 127], [-352, 131], [-352, 136], [-347, 139], [-339, 144], [-338, 147], [-330, 150], [-310, 149], [-307, 146], [-303, 147], [-299, 149], [-296, 143], [-292, 142], [-285, 142], [-284, 138], [-281, 135], [-278, 135], [-276, 129], [-278, 127], [-283, 128], [-287, 127], [-286, 122], [-283, 120], [-281, 111], [-276, 114], [-274, 112], [-273, 110], [-277, 105], [-281, 101], [-281, 95], [-285, 94], [-297, 91], [-304, 94], [-315, 95], [-327, 95], [-331, 94]]}, "center": {"151-258": [-322, 122]}}, -{"id": 1176, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe. This flag is used both by the Kingdom of the Netherlands and by its constituent nation, the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"118-258": [[-247, -551], [-247, -520], [627, -520], [627, -551]]}, "center": {"118-258": [190, -535]}}, -{"id": 1177, "name": "Kangaroo", "description": "The kangaroo is an animal native to Australia. It is an international icon of Australia recognized around the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Kangaroo"], "subreddit": ["placeaustralia", "australia"]}, "path": {"147-258": [[-845, 40], [-845, 45], [-847, 47], [-847, 50], [-849, 53], [-853, 53], [-853, 55], [-840, 55], [-840, 44], [-839, 43]]}, "center": {"147-258": [-844, 51]}}, -{"id": 1178, "name": "Flanders poppy", "description": "The Flanders poppy, also called the Anzac poppy, is a red flower in the poppy family. They are a symbol of Anzacs (soldiers of the Australian and New Zealand Army Corps), and are worn on November 11 (Remembrance Day) and April 25 (Anzac Day) to commemorate Australian and New Zealander soldiers who died in World War I.", "links": {"website": ["https://en.wikipedia.org/wiki/Papaver_rhoeas"], "subreddit": ["placeaustralia", "australia", "newzealand"]}, "path": {"135-149": [[-929, 49], [-929, 55], [-828, 55], [-828, 49]], "150-258": [[-925, 49], [-925, 55], [-836, 55], [-836, 49], [-840, 49], [-840, 55], [-860, 55], [-860, 49]]}, "center": {"135-149": [-878, 52], "150-258": [-889, 52]}}, -{"id": 1179, "name": "Vegemite", "description": "Vegemite is a popular Australian breakfast spread.", "links": {"website": ["https://vegemite.com.au/", "https://en.wikipedia.org/wiki/Vegemite"], "subreddit": ["placeaustralia", "australia"]}, "path": {"145-258": [[-820, 23], [-820, 33], [-812, 33], [-812, 23]]}, "center": {"145-258": [-816, 28]}}, -{"id": 1180, "name": "Frauenkirche, Dresden", "description": "The Dresden Frauenkirche is a Lutheran church in Dresden, the capital of the German state of Saxony. Destroyed during the Allied firebombing of Dresden towards the end of World War II, the church was reconstructed between 1994 and 2005", "links": {"website": ["https://en.wikipedia.org/wiki/Frauenkirche,_Dresden"]}, "path": {"151-258": [[347, -556], [357, -551], [370, -551], [379, -556], [380, -573], [379, -582], [368, -587], [368, -598], [365, -601], [365, -606], [362, -606], [361, -602], [359, -598], [358, -587], [354, -583], [349, -583], [347, -571], [345, -566]]}, "center": {"151-258": [363, -569]}}, -{"id": 1182, "name": "Rapunzel", "description": "\"Rapunzel\" is a European fairy tale most notably recorded by the Brothers Grimm and published in 1812 as part of Children's and Household Tales (KHM 12). The Brothers Grimm's story was developed from the French literary fairy tale of Persinette by Charlotte-Rose de Caumont de La Force (1698).", "links": {"website": ["https://en.wikipedia.org/wiki/Rapunzel"]}, "path": {"147-258": [[-177, -482], [-179, -575], [-185, -580], [-182, -600], [-168, -610], [-151, -597], [-143, -576], [-146, -563], [-147, -552], [-151, -545], [-150, -502], [-151, -501], [-158, -500], [-157, -481]]}, "center": {"147-258": [-162, -576]}}, -{"id": 1183, "name": "DHL Logo", "description": "DHL is an American-founded German logistics company providing courier, package delivery and express mail service, delivering over 1.8 billion parcels per year. A subsidiary of the German logistics firm DHL Group, its express mail service DHL Express is one of the market leaders for parcel services in Europe and Germany's main courier and parcel service.", "links": {"website": ["https://en.wikipedia.org/wiki/DHL"]}, "path": {"147-258": [[-526, -601], [-457, -601], [-457, -580], [-527, -580], [-527, -601]]}, "center": {"147-258": [-492, -590]}}, +{"id": 1174, "name": "Football Stars", "description": "Two stars representing the two Men's World Cups won by the French Football Team. (1998/2018)", "links": {"website": ["https://www.fff.fr/", "https://en.wikipedia.org/wiki/France_national_football_team"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"146-173": [[892, -834], [892, -832], [891, -830], [890, -827], [889, -825], [888, -824], [874, -824], [873, -823], [874, -822], [875, -821], [876, -820], [878, -819], [880, -818], [882, -817], [884, -816], [885, -814], [885, -813], [884, -812], [883, -811], [883, -810], [882, -809], [881, -808], [880, -807], [879, -806], [879, -805], [878, -804], [878, -802], [879, -801], [881, -801], [882, -802], [884, -802], [885, -803], [886, -805], [888, -806], [890, -807], [891, -808], [895, -808], [897, -807], [899, -806], [900, -805], [900, -804], [902, -803], [904, -802], [908, -801], [942, -800], [943, -801], [944, -802], [945, -802], [946, -803], [947, -803], [948, -804], [950, -805], [951, -806], [953, -807], [954, -808], [956, -808], [958, -807], [960, -806], [961, -805], [962, -804], [963, -803], [964, -802], [965, -801], [966, -801], [967, -800], [968, -799], [969, -800], [970, -801], [970, -802], [969, -803], [969, -804], [968, -805], [967, -806], [967, -808], [966, -809], [965, -810], [965, -811], [964, -812], [964, -815], [965, -816], [965, -817], [966, -817], [967, -818], [968, -818], [969, -819], [970, -819], [971, -820], [972, -821], [974, -822], [975, -823], [974, -824], [960, -824], [959, -825], [959, -827], [958, -828], [958, -831], [957, -832], [957, -833], [956, -834], [956, -835], [955, -836], [954, -835], [954, -834], [953, -832], [952, -830], [952, -829], [951, -828], [950, -827], [950, -825], [949, -824], [937, -824], [898, -824], [897, -826], [896, -827], [896, -829], [895, -830], [895, -831], [894, -832], [894, -834], [893, -835]], "186-258, T": [[879, -814], [880, -814], [883, -817], [884, -816], [885, -817], [884, -818], [885, -819], [886, -819], [887, -820], [888, -819], [889, -820], [891, -820], [894, -817], [895, -817], [896, -816], [896, -815], [897, -814], [898, -814], [899, -815], [900, -816], [900, -818], [899, -819], [899, -821], [898, -822], [898, -826], [900, -828], [901, -828], [904, -831], [903, -832], [903, -833], [902, -834], [899, -834], [898, -835], [896, -835], [894, -837], [894, -838], [892, -840], [924, -840], [924, -842], [967, -842], [967, -843], [972, -843], [968, -839], [968, -838], [967, -837], [966, -837], [965, -836], [965, -835], [961, -835], [960, -834], [959, -835], [957, -833], [957, -832], [958, -831], [959, -831], [961, -829], [962, -829], [963, -828], [964, -829], [965, -829], [965, -826], [964, -825], [964, -824], [963, -823], [963, -822], [962, -821], [962, -819], [963, -818], [965, -818], [967, -820], [967, -821], [968, -822], [969, -822], [970, -823], [971, -823], [972, -822], [973, -823], [974, -823], [976, -821], [977, -821], [979, -819], [980, -819], [981, -818], [982, -818], [983, -819], [983, -821], [981, -823], [981, -824], [979, -826], [979, -829], [980, -829], [981, -830], [983, -830], [984, -831], [985, -831], [987, -833], [986, -834], [985, -834], [984, -835], [980, -835], [979, -836], [977, -836], [977, -837], [976, -838], [976, -840], [973, -843], [967, -843], [967, -842], [924, -842], [924, -840], [887, -840], [885, -838], [885, -837], [882, -834], [874, -834], [873, -833], [875, -831], [876, -831], [876, -829], [877, -828], [878, -828], [879, -827], [880, -827], [881, -826], [882, -826], [881, -825], [881, -824], [880, -823], [880, -822], [879, -821], [879, -816], [878, -815]]}, "center": {"146-173": [937, -812], "186-258, T": [890, -829]}}, +{"id": 1175, "name": "Map of Romania and Moldova", "description": "A map of Romania and Moldova appearing with a checkered background. \n\nInitially only the map of Romania was to be included as a background to the castle. But as some users continued Romania's border to include Moldova, it was decided to keep it as well, with the addition of the border between the two.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania"], "discord": ["placero"]}, "path": {"151-258, T": [[-334, 92], [-342, 97], [-350, 110], [-353, 115], [-356, 115], [-361, 118], [-361, 119], [-357, 123], [-357, 127], [-352, 131], [-352, 136], [-347, 139], [-339, 144], [-338, 147], [-330, 150], [-310, 149], [-307, 146], [-303, 147], [-299, 149], [-296, 143], [-292, 142], [-285, 142], [-284, 138], [-281, 135], [-278, 135], [-276, 129], [-278, 127], [-283, 128], [-287, 127], [-286, 122], [-283, 120], [-281, 111], [-276, 114], [-274, 112], [-273, 110], [-277, 105], [-281, 101], [-281, 95], [-285, 94], [-297, 91], [-304, 94], [-315, 95], [-327, 95], [-331, 94]]}, "center": {"151-258, T": [-322, 122]}}, +{"id": 1176, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe. This flag is used both by the Kingdom of the Netherlands and by its constituent nation, the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"118-258, T": [[-247, -551], [-247, -520], [627, -520], [627, -551]]}, "center": {"118-258, T": [190, -535]}}, +{"id": 1177, "name": "Kangaroo", "description": "The kangaroo is an animal native to Australia. It is an international icon of Australia recognized around the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Kangaroo"], "subreddit": ["placeaustralia", "australia"]}, "path": {"147-258, T": [[-845, 40], [-845, 45], [-847, 47], [-847, 50], [-849, 53], [-853, 53], [-853, 55], [-840, 55], [-840, 44], [-839, 43]]}, "center": {"147-258, T": [-844, 51]}}, +{"id": 1178, "name": "Flanders poppy", "description": "The Flanders poppy, also called the Anzac poppy, is a red flower in the poppy family. They are a symbol of Anzacs (soldiers of the Australian and New Zealand Army Corps), and are worn on November 11 (Remembrance Day) and April 25 (Anzac Day) to commemorate Australian and New Zealander soldiers who died in World War I.", "links": {"website": ["https://en.wikipedia.org/wiki/Papaver_rhoeas"], "subreddit": ["placeaustralia", "australia", "newzealand"]}, "path": {"135-149": [[-929, 49], [-929, 55], [-828, 55], [-828, 49]], "150-258, T": [[-925, 49], [-925, 55], [-836, 55], [-836, 49], [-840, 49], [-840, 55], [-860, 55], [-860, 49]]}, "center": {"135-149": [-878, 52], "150-258, T": [-889, 52]}}, +{"id": 1179, "name": "Vegemite", "description": "Vegemite is a popular Australian breakfast spread.", "links": {"website": ["https://vegemite.com.au/", "https://en.wikipedia.org/wiki/Vegemite"], "subreddit": ["placeaustralia", "australia"]}, "path": {"145-258, T": [[-820, 23], [-820, 33], [-812, 33], [-812, 23]]}, "center": {"145-258, T": [-816, 28]}}, +{"id": 1180, "name": "Frauenkirche, Dresden", "description": "The Dresden Frauenkirche is a Lutheran church in Dresden, the capital of the German state of Saxony. Destroyed during the Allied firebombing of Dresden towards the end of World War II, the church was reconstructed between 1994 and 2005", "links": {"website": ["https://en.wikipedia.org/wiki/Frauenkirche,_Dresden"]}, "path": {"151-258, T": [[347, -556], [357, -551], [370, -551], [379, -556], [380, -573], [379, -582], [368, -587], [368, -598], [365, -601], [365, -606], [362, -606], [361, -602], [359, -598], [358, -587], [354, -583], [349, -583], [347, -571], [345, -566]]}, "center": {"151-258, T": [363, -569]}}, +{"id": 1182, "name": "Rapunzel", "description": "\"Rapunzel\" is a European fairy tale most notably recorded by the Brothers Grimm and published in 1812 as part of Children's and Household Tales (KHM 12). The Brothers Grimm's story was developed from the French literary fairy tale of Persinette by Charlotte-Rose de Caumont de La Force (1698).", "links": {"website": ["https://en.wikipedia.org/wiki/Rapunzel"]}, "path": {"147-258, T": [[-177, -482], [-179, -575], [-185, -580], [-182, -600], [-168, -610], [-151, -597], [-143, -576], [-146, -563], [-147, -552], [-151, -545], [-150, -502], [-151, -501], [-158, -500], [-157, -481]]}, "center": {"147-258, T": [-162, -576]}}, +{"id": 1183, "name": "DHL Logo", "description": "DHL is an American-founded German logistics company providing courier, package delivery and express mail service, delivering over 1.8 billion parcels per year. A subsidiary of the German logistics firm DHL Group, its express mail service DHL Express is one of the market leaders for parcel services in Europe and Germany's main courier and parcel service.", "links": {"website": ["https://en.wikipedia.org/wiki/DHL"]}, "path": {"147-258, T": [[-526, -601], [-457, -601], [-457, -580], [-527, -580], [-527, -601]]}, "center": {"147-258, T": [-492, -590]}}, {"id": 1184, "name": "Inka Cola", "description": "Inca Kola (also known as \"the Golden Kola\" in international advertising) is a soft drink that was created in Peru in 1935 by British immigrant Joseph Robinson Lindley. The soda has a sweet, fruity flavor that somewhat resembles its main ingredient, lemon verbena. Inca Kola is a source of national pride and patriotism in Peru.", "links": {"website": ["https://en.wikipedia.org/wiki/Inca_Kola"]}, "path": {"64-241": [[-167, 24], [-165, 24], [-165, 25], [-163, 27], [-163, 41], [-164, 42], [-168, 42], [-169, 41], [-169, 27], [-167, 25]]}, "center": {"64-241": [-166, 34]}}, -{"id": 1185, "name": "'Renault Twigo' and 'Peugeot 205'", "description": "The Peugeot 205 is a supermini (B-segment) car produced by the French manufacturer Peugeot from 1983 to 1999.\nIt was declared \"car of the decade\" by CAR Magazine in 1990. It was a popular car because of its low price at the time and its sustainability\n\nThe Renault Twingo is a four-seater passenger city car manufactured and marketed by the French automaker Renault, introduced in 1992 and currently in its third generation. It was also a popular car because of its low price at the time and its sustainability", "links": {"website": ["https://en.wikipedia.org/wiki/Peugeot_205", "https://en.wikipedia.org/wiki/Renault_Twingo"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"141-258": [[403, -676], [403, -610], [541, -609], [541, -676], [470, -675]]}, "center": {"141-258": [506, -642]}}, +{"id": 1185, "name": "'Renault Twigo' and 'Peugeot 205'", "description": "The Peugeot 205 is a supermini (B-segment) car produced by the French manufacturer Peugeot from 1983 to 1999.\nIt was declared \"car of the decade\" by CAR Magazine in 1990. It was a popular car because of its low price at the time and its sustainability\n\nThe Renault Twingo is a four-seater passenger city car manufactured and marketed by the French automaker Renault, introduced in 1992 and currently in its third generation. It was also a popular car because of its low price at the time and its sustainability", "links": {"website": ["https://en.wikipedia.org/wiki/Peugeot_205", "https://en.wikipedia.org/wiki/Renault_Twingo"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"141-258, T": [[403, -676], [403, -610], [541, -609], [541, -676], [470, -675]]}, "center": {"141-258, T": [506, -642]}}, {"id": 1186, "name": "Ena", "description": "Ena is a titular protagonist from the avant-garde animated comedy series published on YouTube and Newgrounds ENA created by Peruvian 2D artist and animator Joel Guerra", "links": {"website": ["https://www.youtube.com/@JoelG"], "subreddit": ["ENA"]}, "path": {"106-242, 66": [[-171, 50], [-171, 48], [-168, 45], [-166, 45], [-166, 44], [-165, 44], [-164, 43], [-162, 42], [-154, 42], [-150, 48], [-150, 52], [-152, 54], [-152, 55], [-150, 58], [-150, 61], [-158, 64], [-161, 64], [-165, 62], [-167, 60], [-170, 60], [-170, 61], [-171, 61], [-171, 60], [-172, 60], [-172, 58], [-171, 56], [-171, 54], [-170, 53], [-170, 51]]}, "center": {"106-242, 66": [-161, 53]}}, -{"id": 1187, "name": "Löwenzahn (German Kids Show)", "description": "Löwenzahn (Dandelion) is a children's television series produced and aired by German public broadcaster ZDF on German television. Originally conceived and hosted by Peter Lustig, the first episode aired on 7 January 1979, then titled Pusteblume.", "links": {"website": ["https://en.wikipedia.org/wiki/Löwenzahn"]}, "path": {"149-258": [[-534, -575], [-530, -575], [-530, -574], [-529, -574], [-529, -573], [-528, -573], [-528, -572], [-529, -572], [-529, -571], [-530, -571], [-530, -570], [-531, -570], [-531, -567], [-530, -567], [-530, -566], [-529, -566], [-528, -566], [-528, -568], [-527, -568], [-527, -569], [-526, -569], [-526, -572], [-525, -572], [-525, -574], [-522, -574], [-522, -573], [-521, -573], [-521, -572], [-520, -572], [-520, -570], [-521, -570], [-521, -569], [-522, -569], [-522, -568], [-524, -568], [-524, -569], [-525, -569], [-526, -569], [-526, -567], [-527, -567], [-527, -562], [-526, -562], [-525, -562], [-525, -563], [-524, -563], [-524, -562], [-523, -562], [-523, -561], [-520, -561], [-520, -559], [-519, -559], [-520, -559], [-520, -558], [-520, -557], [-519, -557], [-519, -556], [-518, -556], [-518, -555], [-519, -555], [-519, -554], [-522, -554], [-522, -552], [-523, -552], [-523, -551], [-526, -551], [-526, -552], [-527, -552], [-527, -553], [-530, -553], [-530, -552], [-531, -552], [-532, -552], [-532, -551], [-533, -551], [-533, -552], [-534, -552], [-534, -554], [-535, -554], [-536, -554], [-536, -553], [-539, -553], [-539, -554], [-540, -554], [-540, -555], [-539, -555], [-539, -556], [-539, -557], [-540, -557], [-540, -558], [-539, -558], [-539, -559], [-538, -559], [-538, -560], [-537, -560], [-537, -561], [-536, -561], [-536, -562], [-535, -562], [-535, -563], [-534, -563], [-533, -563], [-533, -562], [-532, -562], [-532, -561], [-531, -561], [-530, -561], [-530, -565], [-531, -565], [-531, -566], [-531, -567], [-532, -567], [-532, -568], [-533, -568], [-533, -569], [-533, -570], [-534, -570], [-534, -571], [-535, -571], [-535, -572], [-536, -572], [-536, -573], [-535, -573], [-535, -574], [-534, -574]]}, "center": {"149-258": [-526, -557]}}, -{"id": 1188, "name": "Beutolomäus (Kids TV Show Character)", "description": "Beutolomäus Sack is a jute sack with a face and a big bulbous nose. On his sack \"body\" he has an X patch that looks like the X in the former KiKA logo. He is the \"only true sack of Santa Claus.\" When the population increased in the Middle Ages and Santa Claus had to deliver more and more presents to the children, he needed new sacks to fit all the presents. The master tailor Johann created a sack for him that was so extraordinary that a dawdler gave him two magic button eyes for his work. Through these eyes, Beutolomew came to life. However, Johann's wife Auguste was not allowed to know this, as she had instructed him to sew ten simple jute sacks for Santa Claus. Beutolomäus is a mostly kind-hearted character, albeit a very skeptical one. He shows courage, for example, when he puts a robber to flight who was trying to rob the bard Wilhelm Wohlklang.", "links": {"website": ["https://de.wikipedia.org/wiki/Beutolomäus"]}, "path": {"144-258": [[216, -551], [223, -556], [221, -560], [224, -570], [232, -586], [237, -588], [244, -586], [250, -579], [250, -575], [259, -569], [263, -563], [262, -558], [264, -551]]}, "center": {"144-258": [238, -566]}}, -{"id": 1190, "name": "The Story of the Little Mole Who Knew It Was None of His Business", "description": "The Story of the Little Mole Who Knew It Was None of His Business or The Story of the Little Mole Who Went in Search of Whodunit (German, \"Vom kleinen Maulwurf, der wissen wollte, wer ihm auf den Kopf gemacht hat\", literally \"About the little mole, that wanted to know, who 'did' [defecate] on his head\") is a children's book by German children's authors Werner Holzwarth and Wolf Erlbruch. The book was first published by Peter Hammer Verlag in 1989; it was soon translated and became an international success.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Story_of_the_Little_Mole_Who_Knew_It_Was_None_of_His_Business"]}, "path": {"149-258": [[-283, -554], [-287, -556], [-293, -556], [-297, -560], [-297, -563], [-294, -563], [-292, -562], [-291, -562], [-291, -569], [-292, -569], [-292, -573], [-287, -578], [-291, -580], [-291, -584], [-288, -586], [-288, -591], [-281, -596], [-277, -591], [-277, -589], [-273, -586], [-273, -584], [-276, -582], [-269, -579], [-269, -576], [-273, -574], [-272, -571], [-270, -559], [-276, -554]]}, "center": {"149-258": [-281, -564]}}, +{"id": 1187, "name": "Löwenzahn (German Kids Show)", "description": "Löwenzahn (Dandelion) is a children's television series produced and aired by German public broadcaster ZDF on German television. Originally conceived and hosted by Peter Lustig, the first episode aired on 7 January 1979, then titled Pusteblume.", "links": {"website": ["https://en.wikipedia.org/wiki/Löwenzahn"]}, "path": {"149-258, T": [[-534, -575], [-530, -575], [-530, -574], [-529, -574], [-529, -573], [-528, -573], [-528, -572], [-529, -572], [-529, -571], [-530, -571], [-530, -570], [-531, -570], [-531, -567], [-530, -567], [-530, -566], [-529, -566], [-528, -566], [-528, -568], [-527, -568], [-527, -569], [-526, -569], [-526, -572], [-525, -572], [-525, -574], [-522, -574], [-522, -573], [-521, -573], [-521, -572], [-520, -572], [-520, -570], [-521, -570], [-521, -569], [-522, -569], [-522, -568], [-524, -568], [-524, -569], [-525, -569], [-526, -569], [-526, -567], [-527, -567], [-527, -562], [-526, -562], [-525, -562], [-525, -563], [-524, -563], [-524, -562], [-523, -562], [-523, -561], [-520, -561], [-520, -559], [-519, -559], [-520, -559], [-520, -558], [-520, -557], [-519, -557], [-519, -556], [-518, -556], [-518, -555], [-519, -555], [-519, -554], [-522, -554], [-522, -552], [-523, -552], [-523, -551], [-526, -551], [-526, -552], [-527, -552], [-527, -553], [-530, -553], [-530, -552], [-531, -552], [-532, -552], [-532, -551], [-533, -551], [-533, -552], [-534, -552], [-534, -554], [-535, -554], [-536, -554], [-536, -553], [-539, -553], [-539, -554], [-540, -554], [-540, -555], [-539, -555], [-539, -556], [-539, -557], [-540, -557], [-540, -558], [-539, -558], [-539, -559], [-538, -559], [-538, -560], [-537, -560], [-537, -561], [-536, -561], [-536, -562], [-535, -562], [-535, -563], [-534, -563], [-533, -563], [-533, -562], [-532, -562], [-532, -561], [-531, -561], [-530, -561], [-530, -565], [-531, -565], [-531, -566], [-531, -567], [-532, -567], [-532, -568], [-533, -568], [-533, -569], [-533, -570], [-534, -570], [-534, -571], [-535, -571], [-535, -572], [-536, -572], [-536, -573], [-535, -573], [-535, -574], [-534, -574]]}, "center": {"149-258, T": [-526, -557]}}, +{"id": 1188, "name": "Beutolomäus (Kids TV Show Character)", "description": "Beutolomäus Sack is a jute sack with a face and a big bulbous nose. On his sack \"body\" he has an X patch that looks like the X in the former KiKA logo. He is the \"only true sack of Santa Claus.\" When the population increased in the Middle Ages and Santa Claus had to deliver more and more presents to the children, he needed new sacks to fit all the presents. The master tailor Johann created a sack for him that was so extraordinary that a dawdler gave him two magic button eyes for his work. Through these eyes, Beutolomew came to life. However, Johann's wife Auguste was not allowed to know this, as she had instructed him to sew ten simple jute sacks for Santa Claus. Beutolomäus is a mostly kind-hearted character, albeit a very skeptical one. He shows courage, for example, when he puts a robber to flight who was trying to rob the bard Wilhelm Wohlklang.", "links": {"website": ["https://de.wikipedia.org/wiki/Beutolomäus"]}, "path": {"144-258, T": [[216, -551], [223, -556], [221, -560], [224, -570], [232, -586], [237, -588], [244, -586], [250, -579], [250, -575], [259, -569], [263, -563], [262, -558], [264, -551]]}, "center": {"144-258, T": [238, -566]}}, +{"id": 1190, "name": "The Story of the Little Mole Who Knew It Was None of His Business", "description": "The Story of the Little Mole Who Knew It Was None of His Business or The Story of the Little Mole Who Went in Search of Whodunit (German, \"Vom kleinen Maulwurf, der wissen wollte, wer ihm auf den Kopf gemacht hat\", literally \"About the little mole, that wanted to know, who 'did' [defecate] on his head\") is a children's book by German children's authors Werner Holzwarth and Wolf Erlbruch. The book was first published by Peter Hammer Verlag in 1989; it was soon translated and became an international success.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Story_of_the_Little_Mole_Who_Knew_It_Was_None_of_His_Business"]}, "path": {"149-258, T": [[-283, -554], [-287, -556], [-293, -556], [-297, -560], [-297, -563], [-294, -563], [-292, -562], [-291, -562], [-291, -569], [-292, -569], [-292, -573], [-287, -578], [-291, -580], [-291, -584], [-288, -586], [-288, -591], [-281, -596], [-277, -591], [-277, -589], [-273, -586], [-273, -584], [-276, -582], [-269, -579], [-269, -576], [-273, -574], [-272, -571], [-270, -559], [-276, -554]]}, "center": {"149-258, T": [-281, -564]}}, {"id": 1191, "name": "Inabakumori", "description": "inabakumori (稲葉曇), also stylized as INABAKUMORI, is a VOCALOID producer who primarily uses Kaai Yuki. He made his debut under this alias in February 2016, with the song \"Himitsu Ongaku\".\n\nOn December 2017, he indirectly confirmed that his former producer alias was MichouP (視長P), also known as PUKARI or 因幡プカリ (Inaba Pukari). MichouP was active from December 2011 until October 2014.\n\nHe was born on February 25, 1995", "links": {"website": ["http://www.nicovideo.jp/user/42833430", "https://www.youtube.com/channel/UCNElM45JypxqAR73RoUQ10g"], "discord": ["inabakumori"]}, "path": {"149": [[884, -154], [884, -193], [850, -193], [850, -154]]}, "center": {"149": [867, -173]}}, -{"id": 1192, "name": "Lidl", "description": "Lidl Stiftung & Co. KG is a German international discount retailer chain that operates over 12,000 stores across Europe and the United States. Headquartered in Neckarsulm, Baden-Württemberg, the company belongs to the Schwarz Group, which also operates the hypermarket chain Kaufland.\n\nLidl is the chief competitor of the similar German discount chain Aldi in several markets. There are Lidl stores in every member state of the European Union as well as in Serbia, Switzerland, the United Kingdom and the United States.", "links": {"website": ["https://en.wikipedia.org/wiki/Lidl"]}, "path": {"146-258": [[2, -596], [35, -596], [35, -565], [1, -565], [1, -596]]}, "center": {"146-258": [18, -580]}}, -{"id": 1193, "name": "Aldi", "description": "Aldi (stylised as ALDI) is the common company brand name of two German multinational family-owned discount supermarket chains operating over 10,000 stores in 20 countries. The chain was founded by brothers Karl and Theo Albrecht in 1946, when they took over their mother's store in Essen. The business was split into two separate groups in 1960, that later became Aldi Nord, headquartered in Essen, and Aldi Süd, headquartered in Mülheim.", "links": {"website": ["https://en.wikipedia.org/wiki/Aldi"]}, "path": {"145-258": [[-30, -597], [1, -596], [1, -554], [-29, -554]]}, "center": {"145-258": [-14, -575]}}, -{"id": 1194, "name": "St. Louis Blues", "description": "The St. Louis Blues is an NHL hockey team based in St. Louis, Missouri, United States.", "links": {"website": ["https://www.nhl.com/blues"], "subreddit": ["stlouisblues"], "discord": ["stlouisblues"]}, "path": {"105-109": [[572, -8], [600, -7], [588, 6], [581, 9], [582, 15], [581, 20], [573, 20], [572, 13], [578, 12], [579, 10]], "198-258": [[-1140, 172], [-1115, 172], [-1115, 173], [-1115, 174], [-1116, 174], [-1117, 176], [-1118, 177], [-1118, 178], [-1119, 178], [-1119, 179], [-1120, 179], [-1120, 180], [-1121, 180], [-1121, 181], [-1121, 182], [-1122, 182], [-1123, 183], [-1123, 184], [-1124, 184], [-1125, 185], [-1126, 185], [-1126, 186], [-1127, 186], [-1128, 186], [-1129, 187], [-1130, 187], [-1131, 188], [-1132, 188], [-1133, 189], [-1133, 190], [-1132, 190], [-1132, 191], [-1131, 191], [-1131, 192], [-1130, 193], [-1130, 194], [-1130, 195], [-1130, 196], [-1131, 197], [-1131, 198], [-1132, 199], [-1133, 200], [-1135, 200], [-1135, 201], [-1137, 202], [-1138, 202], [-1139, 201], [-1141, 201], [-1142, 201], [-1143, 200], [-1144, 200], [-1145, 199], [-1145, 193], [-1144, 192], [-1143, 191], [-1142, 190], [-1139, 190], [-1138, 189], [-1138, 188], [-1139, 187], [-1139, 186], [-1140, 186], [-1140, 184], [-1141, 182], [-1142, 179], [-1143, 178], [-1144, 174], [-1143, 173]]}, "center": {"105-109": [583, 0], "198-258": [-1133, 180]}}, -{"id": 1195, "name": "France with Twingo and 205", "description": "The Renault Twingo is a four-seater micro car produced by the French manufacturer Renault. It was introduced in the spring of 1993 and, with several million units sold to date, is one of the best-selling mass-produced models among passenger cars. In Germany alone, more than half a million 1st generation Twingos were sold. \nThe Peugeot 205 is a supermini car produced by the French manufacturer Peugeot from 1983 to 1999. It was declared \"car of the decade\" by CAR Magazine in 1990. It also won \"What Car\"'s Car of the Year for 1984.", "links": {"website": ["https://en.wikipedia.org/wiki/Renault_Twingo", "https://en.wikipedia.org/wiki/Peugeot_205"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"139-258": [[403, -674], [404, -610], [540, -610], [540, -675]]}, "center": {"139-258": [472, -642]}}, -{"id": 1196, "name": "Itemlabel OuiOui", "description": "A CelebOui from Series 3. A OuiOui is a young Peepy, they don't know anything but eating peanuts and sleeping. Isn't it cute? Whatever. \n\nThank you r/Colombia for your alliance and friendship <3", "links": {"website": ["https://itemlabel.com/"], "subreddit": ["itemLabel"], "discord": ["itemlabel"]}, "path": {"137-258": [[-670, 321], [-670, 327], [-676, 327], [-676, 321], [-673, 320]]}, "center": {"137-258": [-673, 324]}}, -{"id": 1197, "name": "Green Lattice", "description": "The green lattice is a group of people devoted to maintain a repeating pattern of black, light green and dark green. The green lattice first appeared in 2017 in the first r/place event.", "links": {"subreddit": ["GreenLattice"], "discord": ["y2qeb7sm"]}, "path": {"143-168": [[391, -912], [472, -911], [471, -797], [353, -800], [353, -911], [370, -911], [383, -911]], "124-133": [[392, -912], [392, -880], [472, -880], [472, -912]], "117-121": [[319, -861], [319, -797], [335, -797], [352, -806], [373, -812], [378, -825], [378, -836], [389, -845], [411, -845], [399, -850], [385, -850], [379, -859], [369, -866], [339, -863], [334, -860]], "134-142, 169-258": [[392, -912], [392, -797], [472, -797], [472, -912]]}, "center": {"143-168": [412, -855], "124-133": [432, -896], "117-121": [348, -835], "134-142, 169-258": [432, -854]}}, -{"id": 1198, "name": "German Waste separation", "description": "Waste sorting is the process by which waste is separated into different elements", "links": {"website": ["https://www.welt.de/kmpkt/article198117915/Plastikmuell-und-Recycling-Acht-Mythen-und-Irrtuemer.html"]}, "path": {"144-258": [[-260, -560], [-260, -589], [-251, -603], [-240, -598], [-237, -589], [-203, -593], [-197, -592], [-198, -561], [-232, -553], [-234, -553], [-242, -560], [-248, -555], [-260, -558]]}, "center": {"144-258": [-227, -572]}}, -{"id": 1199, "name": "Power (Chainsaw man)", "description": "Power is a character from the Anime \"Chainsaw man\". She was supposed to be pixeled on the french flag, but didn't get a spot anymore. After this people requested permission from Germany, which was promptly granted and pixeled.", "links": {"website": ["https://en.wikipedia.org/wiki/Power_(Chainsaw_Man)"]}, "path": {"150-258": [[-248, -912], [-248, -914], [-246, -914], [-246, -921], [-245, -936], [-248, -943], [-249, -964], [-248, -965], [-246, -972], [-248, -974], [-246, -984], [-236, -991], [-234, -991], [-230, -997], [-230, -991], [-224, -991], [-224, -997], [-220, -991], [-217, -991], [-212, -988], [-204, -983], [-197, -977], [-196, -969], [-196, -967], [-199, -966], [-199, -964], [-198, -964], [-196, -961], [-198, -962], [-198, -956], [-195, -954], [-197, -955], [-197, -949], [-194, -943], [-194, -912]]}, "center": {"150-258": [-223, -949]}}, -{"id": 1201, "name": "Tino Rangatiratanga flag", "description": "The Tino Rangatiratanga flag represents the Māori people, indigenous people of New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/M%C4%81ori_people", "https://en.wikipedia.org/wiki/National_M%C4%81ori_flag"], "subreddit": ["newzealand"]}, "path": {"135-258": [[-896, 55], [-896, 72], [-868, 72], [-868, 55]]}, "center": {"135-258": [-882, 64]}}, +{"id": 1192, "name": "Lidl", "description": "Lidl Stiftung & Co. KG is a German international discount retailer chain that operates over 12,000 stores across Europe and the United States. Headquartered in Neckarsulm, Baden-Württemberg, the company belongs to the Schwarz Group, which also operates the hypermarket chain Kaufland.\n\nLidl is the chief competitor of the similar German discount chain Aldi in several markets. There are Lidl stores in every member state of the European Union as well as in Serbia, Switzerland, the United Kingdom and the United States.", "links": {"website": ["https://en.wikipedia.org/wiki/Lidl"]}, "path": {"146-258, T": [[2, -596], [35, -596], [35, -565], [1, -565], [1, -596]]}, "center": {"146-258, T": [18, -580]}}, +{"id": 1193, "name": "Aldi", "description": "Aldi (stylised as ALDI) is the common company brand name of two German multinational family-owned discount supermarket chains operating over 10,000 stores in 20 countries. The chain was founded by brothers Karl and Theo Albrecht in 1946, when they took over their mother's store in Essen. The business was split into two separate groups in 1960, that later became Aldi Nord, headquartered in Essen, and Aldi Süd, headquartered in Mülheim.", "links": {"website": ["https://en.wikipedia.org/wiki/Aldi"]}, "path": {"145-258, T": [[-30, -597], [1, -596], [1, -554], [-29, -554]]}, "center": {"145-258, T": [-14, -575]}}, +{"id": 1194, "name": "St. Louis Blues", "description": "The St. Louis Blues is an NHL hockey team based in St. Louis, Missouri, United States.", "links": {"website": ["https://www.nhl.com/blues"], "subreddit": ["stlouisblues"], "discord": ["stlouisblues"]}, "path": {"105-109": [[572, -8], [600, -7], [588, 6], [581, 9], [582, 15], [581, 20], [573, 20], [572, 13], [578, 12], [579, 10]], "198-258, T": [[-1140, 172], [-1115, 172], [-1115, 173], [-1115, 174], [-1116, 174], [-1117, 176], [-1118, 177], [-1118, 178], [-1119, 178], [-1119, 179], [-1120, 179], [-1120, 180], [-1121, 180], [-1121, 181], [-1121, 182], [-1122, 182], [-1123, 183], [-1123, 184], [-1124, 184], [-1125, 185], [-1126, 185], [-1126, 186], [-1127, 186], [-1128, 186], [-1129, 187], [-1130, 187], [-1131, 188], [-1132, 188], [-1133, 189], [-1133, 190], [-1132, 190], [-1132, 191], [-1131, 191], [-1131, 192], [-1130, 193], [-1130, 194], [-1130, 195], [-1130, 196], [-1131, 197], [-1131, 198], [-1132, 199], [-1133, 200], [-1135, 200], [-1135, 201], [-1137, 202], [-1138, 202], [-1139, 201], [-1141, 201], [-1142, 201], [-1143, 200], [-1144, 200], [-1145, 199], [-1145, 193], [-1144, 192], [-1143, 191], [-1142, 190], [-1139, 190], [-1138, 189], [-1138, 188], [-1139, 187], [-1139, 186], [-1140, 186], [-1140, 184], [-1141, 182], [-1142, 179], [-1143, 178], [-1144, 174], [-1143, 173]]}, "center": {"105-109": [583, 0], "198-258, T": [-1133, 180]}}, +{"id": 1195, "name": "France with Twingo and 205", "description": "The Renault Twingo is a four-seater micro car produced by the French manufacturer Renault. It was introduced in the spring of 1993 and, with several million units sold to date, is one of the best-selling mass-produced models among passenger cars. In Germany alone, more than half a million 1st generation Twingos were sold. \nThe Peugeot 205 is a supermini car produced by the French manufacturer Peugeot from 1983 to 1999. It was declared \"car of the decade\" by CAR Magazine in 1990. It also won \"What Car\"'s Car of the Year for 1984.", "links": {"website": ["https://en.wikipedia.org/wiki/Renault_Twingo", "https://en.wikipedia.org/wiki/Peugeot_205"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"139-258, T": [[403, -674], [404, -610], [540, -610], [540, -675]]}, "center": {"139-258, T": [472, -642]}}, +{"id": 1196, "name": "Itemlabel OuiOui", "description": "A CelebOui from Series 3. A OuiOui is a young Peepy, they don't know anything but eating peanuts and sleeping. Isn't it cute? Whatever. \n\nThank you r/Colombia for your alliance and friendship <3", "links": {"website": ["https://itemlabel.com/"], "subreddit": ["itemLabel"], "discord": ["itemlabel"]}, "path": {"137-258, T": [[-670, 321], [-670, 327], [-676, 327], [-676, 321], [-673, 320]]}, "center": {"137-258, T": [-673, 324]}}, +{"id": 1197, "name": "Green Lattice", "description": "The green lattice is a group of people devoted to maintain a repeating pattern of black, light green and dark green. The green lattice first appeared in 2017 in the first r/place event.", "links": {"subreddit": ["GreenLattice"], "discord": ["y2qeb7sm"]}, "path": {"143-168": [[391, -912], [472, -911], [471, -797], [353, -800], [353, -911], [370, -911], [383, -911]], "124-133": [[392, -912], [392, -880], [472, -880], [472, -912]], "117-121": [[319, -861], [319, -797], [335, -797], [352, -806], [373, -812], [378, -825], [378, -836], [389, -845], [411, -845], [399, -850], [385, -850], [379, -859], [369, -866], [339, -863], [334, -860]], "134-142, 169-258, T": [[392, -912], [392, -797], [472, -797], [472, -912]]}, "center": {"143-168": [412, -855], "124-133": [432, -896], "117-121": [348, -835], "134-142, 169-258, T": [432, -854]}}, +{"id": 1198, "name": "German Waste separation", "description": "Waste sorting is the process by which waste is separated into different elements", "links": {"website": ["https://www.welt.de/kmpkt/article198117915/Plastikmuell-und-Recycling-Acht-Mythen-und-Irrtuemer.html"]}, "path": {"144-258, T": [[-260, -560], [-260, -589], [-251, -603], [-240, -598], [-237, -589], [-203, -593], [-197, -592], [-198, -561], [-232, -553], [-234, -553], [-242, -560], [-248, -555], [-260, -558]]}, "center": {"144-258, T": [-227, -572]}}, +{"id": 1199, "name": "Power (Chainsaw man)", "description": "Power is a character from the Anime \"Chainsaw man\". She was supposed to be pixeled on the french flag, but didn't get a spot anymore. After this people requested permission from Germany, which was promptly granted and pixeled.", "links": {"website": ["https://en.wikipedia.org/wiki/Power_(Chainsaw_Man)"]}, "path": {"150-258, T": [[-248, -912], [-248, -914], [-246, -914], [-246, -921], [-245, -936], [-248, -943], [-249, -964], [-248, -965], [-246, -972], [-248, -974], [-246, -984], [-236, -991], [-234, -991], [-230, -997], [-230, -991], [-224, -991], [-224, -997], [-220, -991], [-217, -991], [-212, -988], [-204, -983], [-197, -977], [-196, -969], [-196, -967], [-199, -966], [-199, -964], [-198, -964], [-196, -961], [-198, -962], [-198, -956], [-195, -954], [-197, -955], [-197, -949], [-194, -943], [-194, -912]]}, "center": {"150-258, T": [-223, -949]}}, +{"id": 1201, "name": "Tino Rangatiratanga flag", "description": "The Tino Rangatiratanga flag represents the Māori people, indigenous people of New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/M%C4%81ori_people", "https://en.wikipedia.org/wiki/National_M%C4%81ori_flag"], "subreddit": ["newzealand"]}, "path": {"135-258, T": [[-896, 55], [-896, 72], [-868, 72], [-868, 55]]}, "center": {"135-258, T": [-882, 64]}}, {"id": 1202, "name": "2014 FIFA World Cup", "description": "A representation of the trophy from the 2014 FIFA World Cup hosted in Brazil. It was built by Brazil in collaboration with Argentina, respectively the 4th and 2nd placed countries in the event. Later an alliance was made, ironically and poetically, with Germany (the winner of the event) to give the trophy a better design and help protect it from griefing, as people constantly tried to write \"7-1\" in it (explained below) or turn it into a phallic object.\n\nThe most infamous game was the semifinal between Brazil and Germany. The Brazil vs. Germany football match that took place on 8 July 2014 at the Estádio Mineirão in Belo Horizonte was the first of two semifinal matches of the 2014 FIFA World Cup.\n\nBoth Brazil and Germany reached the semifinals with an undefeated record in the competition, with the Brazilians' quarterfinal with Colombia causing them to lose forward Neymar to injury, and defender and captain Thiago Silva to accumulation of yellow cards. Despite the absence of these players, a close match was expected, given both teams were traditional FIFA World Cup forces, sharing eight tournaments won and having previously met in the 2002 FIFA World Cup Final, where Brazil won 2-0 and earned their fifth title. This match, however, ended in a shocking loss for Brazil; Germany led 5-0 at half time, with four goals scored within six minutes, and subsequently brought the score up to 7-0 in the second half. Brazil scored a consolation goal in the last minute, ending the match 7-1. Germany's Toni Kroos was selected as the man of the match.\n\nThe game marked several tournament records. Germany's win marked the largest margin of victory in a FIFA World Cup semifinal. The game saw Germany overtake Brazil as the highest scoring team in World Cup tournament history and become the first team to reach eight World Cup Finals. Miroslav Klose scored his 16th career World Cup goal and surpassed Brazil's own Ronaldo as the tournament's all-time record goalscorer. Brazil's loss broke their 62-match unbeaten streak at home in competitive matches, going back to the 1975 Copa América (where they lost 3-1 to Peru in the same stadium), and equalled their biggest margin of defeat in a match alongside a 6-0 loss to Uruguay in 1920. Ultimately, the match was described as a national humiliation.\n\nThe game has subsequently been dubbed the Mineirazo (Mineiraço [minejˈɾasu], Agony of Mineirão), evoking a previous \"spirit of national shame\" known as the Maracanazo (Maracanaço) in which Brazil unexpectedly lost the 1950 FIFA World Cup on home soil to Uruguay. Brazil subsequently lost 3-0 to the Netherlands in the third-place play-off. Germany went on to win the World Cup for the fourth time, defeating Argentina in the final.", "links": {"website": ["https://en.wikipedia.org/wiki/2014_FIFA_World_Cup"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"119-182": [[800, -771], [795, -767], [789, -760], [786, -752], [786, -741], [798, -701], [798, -692], [796, -692], [796, -689], [794, -687], [794, -684], [793, -683], [793, -681], [797, -677], [817, -677], [822, -681], [822, -686], [818, -692], [818, -701], [827, -734], [827, -754], [822, -764], [817, -769], [812, -771]]}, "center": {"119-182": [807, -742]}}, -{"id": 1203, "name": "Lake Titicaca", "description": "Lake Titicaca is a lake on the border of Bolivia and Peru.", "links": {"website": ["https://en.wikipedia.org/wiki/Lake_Titicaca"], "subreddit": ["BOLIVIA"]}, "path": {"125-133": [[611, -842], [609, -840], [609, -837], [615, -832], [619, -827], [621, -829], [621, -835], [617, -838], [613, -842]], "134-258": [[611, -839], [608, -836], [608, -833], [616, -825], [618, -825], [621, -827], [621, -829], [616, -834], [616, -839]]}, "center": {"125-133": [616, -835], "134-258": [612, -834]}}, -{"id": 1204, "name": "Andes Mountains", "description": "The Andes Mountains are the longest mountain range in the world, spanning much of the west coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Andes"], "subreddit": ["BOLIVIA"]}, "path": {"127-258": [[783, -858], [767, -842], [767, -841], [849, -841], [849, -847], [837, -858]]}, "center": {"127-258": [810, -849]}}, -{"id": 1205, "name": "Paraguayan harp", "description": "A Paraguayan harp is a traditional musical instrument in Paraguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguayan_harp"], "subreddit": ["Paraguay"]}, "path": {"151-258": [[-60, -867], [-60, -853], [-53, -853], [-49, -862], [-49, -865], [-54, -865], [-57, -867]]}, "center": {"151-258": [-55, -860]}}, -{"id": 1206, "name": "Lapacho", "description": "Lapachos, also known as trumpet trees, are trees found throughout South and Central America. They come in multiple colors including pink, golden, and white, with the pink lapacho being Paraguay's national tree.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguayan_harp"], "subreddit": ["Paraguay"]}, "path": {"149-258": [[-27, -840], [-32, -837], [-35, -834], [-31, -830], [-30, -830], [-30, -826], [-25, -826], [-25, -831], [-23, -831], [-19, -834], [-19, -835], [-24, -840]]}, "center": {"149-258": [-28, -834]}}, -{"id": 1207, "name": "Tereré", "description": "A refreshing drink common in Paraguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Terer%C3%A9"], "subreddit": ["Paraguay"]}, "path": {"130-258": [[-17, -884], [-19, -880], [-20, -880], [-22, -878], [-22, -873], [-17, -869], [-5, -869], [-2, -872], [-2, -879], [-4, -879], [-7, -883], [-11, -883], [-11, -884]]}, "center": {"130-258": [-13, -876]}}, -{"id": 1208, "name": "Grapu", "description": "Grapu is the Green Lattice's mascot. He started as a little work of art drawn by an ally in r/place 2017 that got destroyed twice and never made it to the final canvas. Over the years since then, we've grown to love him.", "links": {"subreddit": ["GreenLattice"]}, "path": {"130-258": [[400, -908], [394, -902], [394, -893], [401, -887], [408, -887], [415, -893], [415, -902], [408, -908]]}, "center": {"130-258": [405, -897]}}, +{"id": 1203, "name": "Lake Titicaca", "description": "Lake Titicaca is a lake on the border of Bolivia and Peru.", "links": {"website": ["https://en.wikipedia.org/wiki/Lake_Titicaca"], "subreddit": ["BOLIVIA"]}, "path": {"125-133": [[611, -842], [609, -840], [609, -837], [615, -832], [619, -827], [621, -829], [621, -835], [617, -838], [613, -842]], "134-258, T": [[611, -839], [608, -836], [608, -833], [616, -825], [618, -825], [621, -827], [621, -829], [616, -834], [616, -839]]}, "center": {"125-133": [616, -835], "134-258, T": [612, -834]}}, +{"id": 1204, "name": "Andes Mountains", "description": "The Andes Mountains are the longest mountain range in the world, spanning much of the west coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Andes"], "subreddit": ["BOLIVIA"]}, "path": {"127-258, T": [[783, -858], [767, -842], [767, -841], [849, -841], [849, -847], [837, -858]]}, "center": {"127-258, T": [810, -849]}}, +{"id": 1205, "name": "Paraguayan harp", "description": "A Paraguayan harp is a traditional musical instrument in Paraguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguayan_harp"], "subreddit": ["Paraguay"]}, "path": {"151-258, T": [[-60, -867], [-60, -853], [-53, -853], [-49, -862], [-49, -865], [-54, -865], [-57, -867]]}, "center": {"151-258, T": [-55, -860]}}, +{"id": 1206, "name": "Lapacho", "description": "Lapachos, also known as trumpet trees, are trees found throughout South and Central America. They come in multiple colors including pink, golden, and white, with the pink lapacho being Paraguay's national tree.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguayan_harp"], "subreddit": ["Paraguay"]}, "path": {"149-258, T": [[-27, -840], [-32, -837], [-35, -834], [-31, -830], [-30, -830], [-30, -826], [-25, -826], [-25, -831], [-23, -831], [-19, -834], [-19, -835], [-24, -840]]}, "center": {"149-258, T": [-28, -834]}}, +{"id": 1207, "name": "Tereré", "description": "A refreshing drink common in Paraguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Terer%C3%A9"], "subreddit": ["Paraguay"]}, "path": {"130-258, T": [[-17, -884], [-19, -880], [-20, -880], [-22, -878], [-22, -873], [-17, -869], [-5, -869], [-2, -872], [-2, -879], [-4, -879], [-7, -883], [-11, -883], [-11, -884]]}, "center": {"130-258, T": [-13, -876]}}, +{"id": 1208, "name": "Grapu", "description": "Grapu is the Green Lattice's mascot. He started as a little work of art drawn by an ally in r/place 2017 that got destroyed twice and never made it to the final canvas. Over the years since then, we've grown to love him.", "links": {"subreddit": ["GreenLattice"]}, "path": {"130-258, T": [[400, -908], [394, -902], [394, -893], [401, -887], [408, -887], [415, -893], [415, -902], [408, -908]]}, "center": {"130-258, T": [405, -897]}}, {"id": 1209, "name": "SEVENTEEN", "description": "SEVENTEEN is a 13-member South Korean boy group managed by Pledis Entertainment.", "links": {"website": ["http://www.pledis.co.kr/html/artist/seventeen", "https://en.wikipedia.org/wiki/Seventeen_(South_Korean_band)"], "subreddit": ["seventeen"]}, "path": {"138-169": [[324, -852], [324, -838], [344, -838], [344, -852]]}, "center": {"138-169": [334, -845]}}, {"id": 1210, "name": "TOMORROW X TOGETHER", "description": "TOMORROW X TOGETHER, or TXT for short, is a South Korean boy band under BigHit Music who debuted in 2019. Their music includes jazz-pop and pop rock genres, and they've produced songs such as Fairy of Shampoo and loser=lover. The members consist of Yeonjun, Soobin, Beomgyu, Taehyun and Huening Kai.", "links": {"website": ["https://en.wikipedia.org/wiki/Tomorrow_X_Together"], "subreddit": ["TomorrowByTogether"]}, "path": {"148-167": [[325, -838], [325, -830], [343, -830], [343, -838]]}, "center": {"148-167": [334, -834]}}, {"id": 1211, "name": "ENHYPEN", "description": "ENHYPEN (Hangul: 엔하이픈) is a K-pop boy band formed through the I-Land program under CJ ENM and Hybe Corporation. It is composed of seven members: Heeseung, Jay, Jake, Sunghoon, Sunoo, Jungwon, and Ni-ki. It debuted on November 30, 2020 with the single \"Given-Taken\" from their first EP Border: Day One. Their logo is known as Engene.", "links": {"website": ["http://beliftlab.com/enhypen", "https://en.wikipedia.org/wiki/Enhypen"], "subreddit": ["enhypen"]}, "path": {"150-167": [[343, -838], [343, -830], [358, -830], [358, -838]]}, "center": {"150-167": [351, -834]}}, -{"id": 1212, "name": "4chan", "description": "This clover is the logo of 4chan, a popular imageboard.", "links": {"website": ["http://www.4chan.org/", "https://en.wikipedia.org/wiki/4chan"]}, "path": {"139-161": [[229, -848], [227, -846], [227, -844], [228, -843], [228, -837], [230, -835], [238, -835], [241, -838], [241, -840], [240, -841], [240, -847], [238, -849], [236, -849], [235, -848]], "162-259": [[228, -848], [226, -848], [225, -847], [224, -846], [223, -845], [224, -844], [223, -843], [224, -842], [225, -841], [227, -839], [226, -838], [225, -837], [224, -836], [224, -834], [225, -833], [226, -832], [227, -831], [228, -832], [229, -831], [230, -832], [231, -833], [232, -834], [232, -835], [233, -835], [234, -834], [235, -833], [236, -832], [238, -832], [239, -833], [240, -834], [241, -835], [240, -836], [241, -837], [240, -838], [239, -839], [238, -840], [237, -840], [237, -841], [238, -842], [239, -843], [240, -844], [240, -846], [239, -847], [238, -848], [237, -849], [236, -848], [235, -849], [234, -848], [233, -847], [232, -846], [232, -845], [231, -845], [230, -846], [229, -847]]}, "center": {"139-161": [234, -842], "162-259": [232, -840]}}, -{"id": 1213, "name": "Megumin", "description": "Megumin is a character from the Japanese light novel series KonoSuba. She is a wizard from the Crimson Magic Clan.", "links": {"website": ["https://konosuba.fandom.com/wiki/Megumin", "https://en.wikipedia.org/wiki/Megumin"], "subreddit": ["pMegu", "megumin", "Konosuba"], "discord": ["konosuba"]}, "path": {"129-258": [[284, -909], [276, -903], [276, -901], [267, -897], [268, -899], [260, -908], [255, -908], [255, -905], [257, -905], [260, -902], [260, -900], [258, -898], [258, -895], [263, -890], [267, -890], [274, -883], [274, -882], [270, -882], [270, -880], [272, -878], [274, -878], [274, -872], [275, -871], [275, -863], [281, -863], [281, -861], [285, -861], [285, -868], [289, -868], [291, -866], [293, -866], [293, -871], [295, -874], [295, -876], [293, -876], [286, -883], [290, -885], [290, -889], [292, -889], [298, -893], [298, -894], [297, -895], [297, -901], [285, -909]]}, "center": {"129-258": [280, -892]}}, +{"id": 1212, "name": "4chan", "description": "This clover is the logo of 4chan, a popular imageboard.", "links": {"website": ["http://www.4chan.org/", "https://en.wikipedia.org/wiki/4chan"]}, "path": {"139-161": [[229, -848], [227, -846], [227, -844], [228, -843], [228, -837], [230, -835], [238, -835], [241, -838], [241, -840], [240, -841], [240, -847], [238, -849], [236, -849], [235, -848]], "162-259, T": [[228, -848], [226, -848], [225, -847], [224, -846], [223, -845], [224, -844], [223, -843], [224, -842], [225, -841], [227, -839], [226, -838], [225, -837], [224, -836], [224, -834], [225, -833], [226, -832], [227, -831], [228, -832], [229, -831], [230, -832], [231, -833], [232, -834], [232, -835], [233, -835], [234, -834], [235, -833], [236, -832], [238, -832], [239, -833], [240, -834], [241, -835], [240, -836], [241, -837], [240, -838], [239, -839], [238, -840], [237, -840], [237, -841], [238, -842], [239, -843], [240, -844], [240, -846], [239, -847], [238, -848], [237, -849], [236, -848], [235, -849], [234, -848], [233, -847], [232, -846], [232, -845], [231, -845], [230, -846], [229, -847]]}, "center": {"139-161": [234, -842], "162-259, T": [232, -840]}}, +{"id": 1213, "name": "Megumin", "description": "Megumin is a character from the Japanese light novel series KonoSuba. She is a wizard from the Crimson Magic Clan.", "links": {"website": ["https://konosuba.fandom.com/wiki/Megumin", "https://en.wikipedia.org/wiki/Megumin"], "subreddit": ["pMegu", "megumin", "Konosuba"], "discord": ["konosuba"]}, "path": {"129-258, T": [[284, -909], [276, -903], [276, -901], [267, -897], [268, -899], [260, -908], [255, -908], [255, -905], [257, -905], [260, -902], [260, -900], [258, -898], [258, -895], [263, -890], [267, -890], [274, -883], [274, -882], [270, -882], [270, -880], [272, -878], [274, -878], [274, -872], [275, -871], [275, -863], [281, -863], [281, -861], [285, -861], [285, -868], [289, -868], [291, -866], [293, -866], [293, -871], [295, -874], [295, -876], [293, -876], [286, -883], [290, -885], [290, -889], [292, -889], [298, -893], [298, -894], [297, -895], [297, -901], [285, -909]]}, "center": {"129-258, T": [280, -892]}}, {"id": 1214, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of Pusu (ぷす) on guitar, Reikoromo (礼衣) as vocals, and Miro on piano. Former members Omutatsu (おむたつ) and AzyuN were in charge of the illustration and video design. \"やっぱり雨は降るんだね\" (It's Raining After All) was released as a full album in March 2020. The two characters are from 2 music videos, Bus-chan and Otona-chan.", "links": {"website": ["https://www.youtube.com/channel/UCB2tP2QfRG7hTra0KTOtTBg"], "subreddit": ["TUYU_official"], "discord": ["tuyu"]}, "path": {"139-167": [[392, -842], [358, -842], [358, -820], [377, -820], [377, -807], [392, -807]]}, "center": {"139-167": [375, -831]}}, {"id": 1215, "name": "Sonic the Hedgehog", "description": "Sonic the Hedgehog is the titular protagonist of the Sonic the Hedgehog video game series published by Japanese company Sega. The franchise follows Sonic, an anthropomorphic blue hedgehog who battles the evil Doctor Eggman, a mad scientist. The main Sonic the Hedgehog games are platformers mostly developed by Sonic Team; other games, developed by various studios, include spin-offs in the racing, fighting, party and sports genres. The franchise also incorporates printed media, animations, feature films, and merchandise.", "links": {"website": ["https://en.wikipedia.org/wiki/Sonic_the_Hedgehog_(character)"], "subreddit": ["SonicTheHedgehog"], "discord": ["SRycb9p"]}, "path": {"147-169": [[324, -866], [321, -863], [321, -852], [331, -852], [335, -855], [335, -866]]}, "center": {"147-169": [328, -859]}}, -{"id": 1216, "name": "Tja (a German Word)", "description": "A German Reaction to the Apocalypse, Dawn of the Gods, Nuclear War, an Alien Attack or no Bread in the House.\nIt's basicly a word, which can be used all the time in every Situation.", "links": {"subreddit": ["tja"]}, "path": {"152-194": [[-1000, -610], [-974, -610], [-945, -599], [-943, -591], [-828, -590], [-827, -559], [-854, -559], [-855, -550], [-1001, -550]], "195-258": [[-1500, -550], [-1321, -550], [-1321, -591], [-1436, -591], [-1446, -611], [-1500, -611]]}, "center": {"152-194": [-971, -578], "195-258": [-1469, -580]}}, -{"id": 1217, "name": "Olympiahalle", "description": "Olympiahalle (Olimpia Hall) is a multi-purpose arena located in Munich, Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Olympiastadion_(Munich)"]}, "path": {"143-258": [[788, -978], [787, -977], [787, -971], [786, -970], [786, -968], [784, -968], [784, -961], [786, -959], [786, -950], [785, -949], [785, -937], [784, -936], [781, -936], [780, -937], [779, -937], [778, -938], [777, -938], [774, -941], [774, -942], [773, -943], [773, -944], [772, -945], [772, -947], [771, -948], [771, -952], [770, -953], [770, -955], [769, -956], [769, -961], [770, -962], [770, -963], [769, -964], [768, -964], [764, -960], [764, -959], [763, -958], [763, -957], [762, -956], [762, -955], [761, -954], [761, -953], [760, -953], [760, -951], [759, -950], [759, -948], [758, -947], [758, -946], [757, -945], [757, -944], [756, -943], [756, -942], [755, -942], [755, -940], [754, -939], [754, -938], [753, -938], [752, -937], [751, -937], [750, -936], [748, -936], [747, -935], [746, -934], [745, -934], [741, -930], [739, -930], [739, -923], [740, -922], [741, -922], [742, -921], [744, -921], [745, -920], [746, -920], [747, -919], [748, -919], [749, -918], [752, -918], [753, -917], [755, -917], [756, -916], [758, -916], [759, -915], [762, -915], [765, -912], [807, -912], [807, -915], [807, -917], [812, -922], [813, -922], [813, -923], [815, -925], [816, -925], [817, -924], [818, -925], [819, -925], [820, -924], [820, -925], [821, -925], [820, -926], [820, -928], [819, -929], [817, -929], [811, -935], [810, -935], [807, -938], [806, -938], [800, -944], [800, -945], [799, -946], [799, -947], [798, -948], [796, -948], [796, -946], [795, -945], [795, -944], [794, -943], [794, -942], [793, -941], [792, -940], [791, -941], [791, -949], [790, -950], [790, -959], [792, -961], [792, -968], [790, -968], [790, -970], [789, -971], [789, -977]]}, "center": {"143-258": [767, -928]}}, -{"id": 1218, "name": "Miniatur Wunderland (Miniature Wonderland)", "description": "The Miniatur Wunderland (German for \"Miniature Wonderland\") is according to Guinness World Records, the largest model railway system in the world. It is located at the historic Speicherstadt in Hamburg, Germany.\n\nIn December 2021 the railway consisted of 16,138 m (52,946 ft) of track in H0 scale, divided into nine sections: Harz mountains, the fictitious town of Knuffingen, the Alps and Austria, Hamburg, the United States, Scandinavia, Switzerland, a replica of Hamburg Airport, Italy and South America. Of the 7,000 m2 (75,347 sq ft) of floorspace, the models occupies 1,545 m2 (16,630 sq ft).\n\nThe exhibition includes around 1,120 digitally controlled trains with more than 10,000 wagons. The Wonderland is also designed with around 4,300 houses and bridges, more than 10,000 vehicles - of which around 350 drive independently on the installation - 52 airplanes and around 290,000 figures. In terms of lighting technology, the system has a recurring day-night cycle and almost 500,000 built-in LED lights. Planning is also in progress for the construction of sections for Central America and the Caribbean, Asia, England, Africa and The Netherlands.", "links": {"website": ["https://www.miniatur-wunderland.com/?_gl=1*1alcght*_ga*MjEzNzAwMjQyMy4xNjkwMTMyNzYz*_ga_QD4ZHC411D*MTY5MDEzMjc2My4xLjEuMTY5MDEzMjc2OS4wLjAuMA"]}, "path": {"150-258": [[-867, -913], [-876, -924], [-876, -935], [-854, -951], [-834, -951], [-815, -934], [-814, -923], [-823, -921], [-824, -914]]}, "center": {"150-258": [-846, -932]}}, -{"id": 1219, "name": "Catan (Board Game)", "description": "Catan, previously known as The Settlers of Catan or simply Settlers, is a multiplayer board game designed by Klaus Teuber. It was first published in 1995 in Germany by Franckh-Kosmos Verlag (Kosmos) as Die Siedler von Catan. Players take on the roles of settlers, each attempting to build and develop holdings while trading and acquiring resources. Players gain victory points as their settlements grow and the first to reach a set number of victory points, typically 10, wins. The game and its many expansions are also published by Catan Studio, Filosofia, GP, Inc., 999 Games, Κάισσα (Káissa), and Devir. Upon its release, The Settlers of Catan became one of the first Eurogames to achieve popularity outside Europe. As of 2020, more than 32 million copies in 40 languages had been sold.", "links": {"website": ["https://en.wikipedia.org/wiki/Catan"]}, "path": {"151-258": [[247, -941], [247, -992], [253, -997], [303, -997], [303, -946], [298, -941]]}, "center": {"151-258": [275, -969]}}, +{"id": 1216, "name": "Tja (a German Word)", "description": "A German Reaction to the Apocalypse, Dawn of the Gods, Nuclear War, an Alien Attack or no Bread in the House.\nIt's basicly a word, which can be used all the time in every Situation.", "links": {"subreddit": ["tja"]}, "path": {"152-194": [[-1000, -610], [-974, -610], [-945, -599], [-943, -591], [-828, -590], [-827, -559], [-854, -559], [-855, -550], [-1001, -550]], "195-258, T": [[-1500, -550], [-1321, -550], [-1321, -591], [-1436, -591], [-1446, -611], [-1500, -611]]}, "center": {"152-194": [-971, -578], "195-258, T": [-1469, -580]}}, +{"id": 1217, "name": "Olympiahalle", "description": "Olympiahalle (Olimpia Hall) is a multi-purpose arena located in Munich, Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Olympiastadion_(Munich)"]}, "path": {"143-258, T": [[788, -978], [787, -977], [787, -971], [786, -970], [786, -968], [784, -968], [784, -961], [786, -959], [786, -950], [785, -949], [785, -937], [784, -936], [781, -936], [780, -937], [779, -937], [778, -938], [777, -938], [774, -941], [774, -942], [773, -943], [773, -944], [772, -945], [772, -947], [771, -948], [771, -952], [770, -953], [770, -955], [769, -956], [769, -961], [770, -962], [770, -963], [769, -964], [768, -964], [764, -960], [764, -959], [763, -958], [763, -957], [762, -956], [762, -955], [761, -954], [761, -953], [760, -953], [760, -951], [759, -950], [759, -948], [758, -947], [758, -946], [757, -945], [757, -944], [756, -943], [756, -942], [755, -942], [755, -940], [754, -939], [754, -938], [753, -938], [752, -937], [751, -937], [750, -936], [748, -936], [747, -935], [746, -934], [745, -934], [741, -930], [739, -930], [739, -923], [740, -922], [741, -922], [742, -921], [744, -921], [745, -920], [746, -920], [747, -919], [748, -919], [749, -918], [752, -918], [753, -917], [755, -917], [756, -916], [758, -916], [759, -915], [762, -915], [765, -912], [807, -912], [807, -915], [807, -917], [812, -922], [813, -922], [813, -923], [815, -925], [816, -925], [817, -924], [818, -925], [819, -925], [820, -924], [820, -925], [821, -925], [820, -926], [820, -928], [819, -929], [817, -929], [811, -935], [810, -935], [807, -938], [806, -938], [800, -944], [800, -945], [799, -946], [799, -947], [798, -948], [796, -948], [796, -946], [795, -945], [795, -944], [794, -943], [794, -942], [793, -941], [792, -940], [791, -941], [791, -949], [790, -950], [790, -959], [792, -961], [792, -968], [790, -968], [790, -970], [789, -971], [789, -977]]}, "center": {"143-258, T": [767, -928]}}, +{"id": 1218, "name": "Miniatur Wunderland (Miniature Wonderland)", "description": "The Miniatur Wunderland (German for \"Miniature Wonderland\") is according to Guinness World Records, the largest model railway system in the world. It is located at the historic Speicherstadt in Hamburg, Germany.\n\nIn December 2021 the railway consisted of 16,138 m (52,946 ft) of track in H0 scale, divided into nine sections: Harz mountains, the fictitious town of Knuffingen, the Alps and Austria, Hamburg, the United States, Scandinavia, Switzerland, a replica of Hamburg Airport, Italy and South America. Of the 7,000 m2 (75,347 sq ft) of floorspace, the models occupies 1,545 m2 (16,630 sq ft).\n\nThe exhibition includes around 1,120 digitally controlled trains with more than 10,000 wagons. The Wonderland is also designed with around 4,300 houses and bridges, more than 10,000 vehicles - of which around 350 drive independently on the installation - 52 airplanes and around 290,000 figures. In terms of lighting technology, the system has a recurring day-night cycle and almost 500,000 built-in LED lights. Planning is also in progress for the construction of sections for Central America and the Caribbean, Asia, England, Africa and The Netherlands.", "links": {"website": ["https://www.miniatur-wunderland.com/?_gl=1*1alcght*_ga*MjEzNzAwMjQyMy4xNjkwMTMyNzYz*_ga_QD4ZHC411D*MTY5MDEzMjc2My4xLjEuMTY5MDEzMjc2OS4wLjAuMA"]}, "path": {"150-258, T": [[-867, -913], [-876, -924], [-876, -935], [-854, -951], [-834, -951], [-815, -934], [-814, -923], [-823, -921], [-824, -914]]}, "center": {"150-258, T": [-846, -932]}}, +{"id": 1219, "name": "Catan (Board Game)", "description": "Catan, previously known as The Settlers of Catan or simply Settlers, is a multiplayer board game designed by Klaus Teuber. It was first published in 1995 in Germany by Franckh-Kosmos Verlag (Kosmos) as Die Siedler von Catan. Players take on the roles of settlers, each attempting to build and develop holdings while trading and acquiring resources. Players gain victory points as their settlements grow and the first to reach a set number of victory points, typically 10, wins. The game and its many expansions are also published by Catan Studio, Filosofia, GP, Inc., 999 Games, Κάισσα (Káissa), and Devir. Upon its release, The Settlers of Catan became one of the first Eurogames to achieve popularity outside Europe. As of 2020, more than 32 million copies in 40 languages had been sold.", "links": {"website": ["https://en.wikipedia.org/wiki/Catan"]}, "path": {"151-258, T": [[247, -941], [247, -992], [253, -997], [303, -997], [303, -946], [298, -941]]}, "center": {"151-258, T": [275, -969]}}, {"id": 1220, "name": "Papaplatte, Stegi, Reeze and Filow", "description": "\"Papaplatte\" \"Stegi\" \"Reeze\" and \"Filoe are German Twitch streamers and youtubers. All of them have assisted the German community and also erected their own artworks. The Germans made this artwork as thanks for their help.", "links": {"website": ["https://www.twitch.tv/papaplatte", "https://www.twitch.tv/reeze", "https://www.twitch.tv/stegi", "https://www.twitch.tv/filow"], "subreddit": ["papaplatte"]}, "path": {"215": [[-399, -914], [-399, -915], [-404, -915], [-411, -921], [-411, -922], [-407, -926], [-409, -927], [-408, -930], [-407, -931], [-408, -936], [-408, -937], [-404, -937], [-403, -939], [-403, -941], [-406, -941], [-405, -944], [-403, -944], [-403, -946], [-404, -947], [-405, -948], [-403, -948], [-403, -950], [-401, -950], [-401, -951], [-400, -952], [-400, -953], [-401, -953], [-401, -956], [-400, -956], [-393, -956], [-393, -957], [-391, -960], [-389, -958], [-388, -956], [-382, -956], [-381, -950], [-383, -948], [-383, -947], [-380, -947], [-379, -946], [-378, -943], [-377, -940], [-380, -940], [-382, -941], [-383, -940], [-383, -938], [-383, -934], [-383, -933], [-384, -932], [-385, -932], [-385, -931], [-384, -929], [-384, -923], [-385, -921], [-386, -920], [-387, -919], [-387, -918], [-386, -916], [-386, -915], [-387, -914]]}, "center": {"215": [-396, -927]}}, -{"id": 1221, "name": "Loriot, die Badewanne", "description": "Loriot was among other things, a german comedian. One of his most popular acts, was \"Herren im Bad\" (men in the bathroom). This is a recreation of said scene.", "links": {"website": ["https://en.wikipedia.org/wiki/Loriot", "https://www.youtube.com/watch?v=6pp74P99yYY"]}, "path": {"122-258": [[-775, -551], [-775, -568], [-765, -594], [-703, -596], [-700, -566], [-700, -551]]}, "center": {"122-258": [-724, -573]}}, -{"id": 1222, "name": "Löwenbräu Brewery", "description": "Löwenbräu is a brewery in Munich. Its name is German for \"lion's brew\". Most Löwenbräu beers are marketed as being brewed according to the Reinheitsgebot, the Bavarian beer purity regulation of 1516.\n\nIt is a collab with V-Tubers", "links": {"website": ["https://en.wikipedia.org/wiki/Löwenbräu_Brewery"]}, "path": {"142-258": [[-170, -913], [-170, -916], [-178, -917], [-183, -919], [-186, -926], [-185, -947], [-183, -957], [-174, -960], [-163, -960], [-155, -958], [-151, -945], [-152, -927], [-154, -920], [-158, -916], [-167, -915]]}, "center": {"142-258": [-168, -942]}}, -{"id": 1223, "name": "ED250 Pendolino PKP Intercity Train", "description": "Express InterCity Premium (EIP), often simply called \"Pendolino\", which is the name of the Italian trains used, is a high-speed train system operating in Poland operated by PKP (\"Polskie Koleje Państwowe\" - \"Polish State Railways\"). The trains are designed for operation at up to 250 km/h (with 293 km/h reached under controlled conditions). However, they only reach 200 km/h during regular service.", "links": {"website": ["https://en.wikipedia.org/wiki/Pendolino", "https://en.wikipedia.org/wiki/Polish_State_Railways"], "subreddit": ["Polska", "poland"]}, "path": {"139-258": [[757, -114], [735, -128], [682, -128], [682, -114]]}, "center": {"139-258": [717, -121]}}, -{"id": 1224, "name": "Senko x Special Week (German Flag)", "description": "A guestart on the German flag of the Animes \"Sewayaki Kitsune no Senko-san\" and \"Uma Musume Puritī Dābī, lit. \"Horse Girl Pretty Derby\", depicting the characters Senko and Special Week holding German beer steins. \n\nThese 2 characters can be found on the French and Dutch flag around the canvas, holding various beverages.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Helpful_Fox_Senko-san", "https://en.wikipedia.org/wiki/Uma_Musume_Pretty_Derby"], "subreddit": ["SewayakiKitsune", "UmaMusume"], "discord": ["senkoplace", "umamusume"]}, "path": {"151-258": [[559, -550], [560, -606], [673, -609], [673, -551]]}, "center": {"151-258": [630, -579]}}, -{"id": 1225, "name": "Alfred J. Kwak (Kids TV Show)", "description": "Alfred J. Kwak is a Dutch-Japanese children's animated comedy-drama television series based on a Dutch theatre show by Herman van Veen, produced by Telecable Benelux B.V. in co-production with VARA, ZDF, TVE, TV Tokyo and animated by Telescreen Japan, and first shown in 1989. It consists of 52 episodes. The series characters were designed by Harald Siepermann. There are also toys and a comic based on the animated series.\n\nThe series has been broadcast in many countries and has been dubbed and subtitled in Dutch, French, Japanese, Greek, English, Italian, Spanish, Hebrew, Arabic, Hungarian, Finnish, Serbian, Polish, German, Swedish, Danish, Icelandic, Chinese, Czech, Romanian, Korean and Norwegian.\n\nIn 1991, Herman van Veen won the Goldene Kamera award for the cartoon.", "links": {"website": ["https://en.wikipedia.org/wiki/Alfred_J._Kwak"]}, "path": {"144-258": [[184, -922], [201, -914], [206, -931], [207, -931], [217, -922], [222, -921], [229, -929], [229, -931], [228, -933], [224, -942], [221, -955], [228, -957], [232, -959], [238, -962], [239, -963], [230, -963], [226, -965], [228, -972], [225, -976], [223, -980], [218, -981], [213, -982], [210, -981], [206, -978], [207, -982], [210, -989], [205, -991], [200, -986], [200, -977], [205, -975], [204, -963], [197, -954], [197, -951], [196, -946], [195, -943], [196, -937], [199, -936], [201, -936], [202, -934], [198, -931], [195, -928], [189, -926], [185, -925]]}, "center": {"144-258": [210, -946]}}, -{"id": 1226, "name": "Shiny Sylveon", "description": "Just a small Shiny Sylveon", "links": {"website": ["https://peerstudios.net"], "subreddit": ["peerstudios"], "discord": ["aHrqhwGyYh"]}, "path": {"152-258": [[472, -912], [472, -880], [495, -880], [495, -912]]}, "center": {"152-258": [484, -896]}}, +{"id": 1221, "name": "Loriot, die Badewanne", "description": "Loriot was among other things, a german comedian. One of his most popular acts, was \"Herren im Bad\" (men in the bathroom). This is a recreation of said scene.", "links": {"website": ["https://en.wikipedia.org/wiki/Loriot", "https://www.youtube.com/watch?v=6pp74P99yYY"]}, "path": {"122-258, T": [[-775, -551], [-775, -568], [-765, -594], [-703, -596], [-700, -566], [-700, -551]]}, "center": {"122-258, T": [-724, -573]}}, +{"id": 1222, "name": "Löwenbräu Brewery", "description": "Löwenbräu is a brewery in Munich. Its name is German for \"lion's brew\". Most Löwenbräu beers are marketed as being brewed according to the Reinheitsgebot, the Bavarian beer purity regulation of 1516.\n\nIt is a collab with V-Tubers", "links": {"website": ["https://en.wikipedia.org/wiki/Löwenbräu_Brewery"]}, "path": {"142-258, T": [[-170, -913], [-170, -916], [-178, -917], [-183, -919], [-186, -926], [-185, -947], [-183, -957], [-174, -960], [-163, -960], [-155, -958], [-151, -945], [-152, -927], [-154, -920], [-158, -916], [-167, -915]]}, "center": {"142-258, T": [-168, -942]}}, +{"id": 1223, "name": "ED250 Pendolino PKP Intercity Train", "description": "Express InterCity Premium (EIP), often simply called \"Pendolino\", which is the name of the Italian trains used, is a high-speed train system operating in Poland operated by PKP (\"Polskie Koleje Państwowe\" - \"Polish State Railways\"). The trains are designed for operation at up to 250 km/h (with 293 km/h reached under controlled conditions). However, they only reach 200 km/h during regular service.", "links": {"website": ["https://en.wikipedia.org/wiki/Pendolino", "https://en.wikipedia.org/wiki/Polish_State_Railways"], "subreddit": ["Polska", "poland"]}, "path": {"139-258, T": [[757, -114], [735, -128], [682, -128], [682, -114]]}, "center": {"139-258, T": [717, -121]}}, +{"id": 1224, "name": "Senko x Special Week (German Flag)", "description": "A guestart on the German flag of the Animes \"Sewayaki Kitsune no Senko-san\" and \"Uma Musume Puritī Dābī, lit. \"Horse Girl Pretty Derby\", depicting the characters Senko and Special Week holding German beer steins. \n\nThese 2 characters can be found on the French and Dutch flag around the canvas, holding various beverages.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Helpful_Fox_Senko-san", "https://en.wikipedia.org/wiki/Uma_Musume_Pretty_Derby"], "subreddit": ["SewayakiKitsune", "UmaMusume"], "discord": ["senkoplace", "umamusume"]}, "path": {"151-258, T": [[559, -550], [560, -606], [673, -609], [673, -551]]}, "center": {"151-258, T": [630, -579]}}, +{"id": 1225, "name": "Alfred J. Kwak (Kids TV Show)", "description": "Alfred J. Kwak is a Dutch-Japanese children's animated comedy-drama television series based on a Dutch theatre show by Herman van Veen, produced by Telecable Benelux B.V. in co-production with VARA, ZDF, TVE, TV Tokyo and animated by Telescreen Japan, and first shown in 1989. It consists of 52 episodes. The series characters were designed by Harald Siepermann. There are also toys and a comic based on the animated series.\n\nThe series has been broadcast in many countries and has been dubbed and subtitled in Dutch, French, Japanese, Greek, English, Italian, Spanish, Hebrew, Arabic, Hungarian, Finnish, Serbian, Polish, German, Swedish, Danish, Icelandic, Chinese, Czech, Romanian, Korean and Norwegian.\n\nIn 1991, Herman van Veen won the Goldene Kamera award for the cartoon.", "links": {"website": ["https://en.wikipedia.org/wiki/Alfred_J._Kwak"]}, "path": {"144-258, T": [[184, -922], [201, -914], [206, -931], [207, -931], [217, -922], [222, -921], [229, -929], [229, -931], [228, -933], [224, -942], [221, -955], [228, -957], [232, -959], [238, -962], [239, -963], [230, -963], [226, -965], [228, -972], [225, -976], [223, -980], [218, -981], [213, -982], [210, -981], [206, -978], [207, -982], [210, -989], [205, -991], [200, -986], [200, -977], [205, -975], [204, -963], [197, -954], [197, -951], [196, -946], [195, -943], [196, -937], [199, -936], [201, -936], [202, -934], [198, -931], [195, -928], [189, -926], [185, -925]]}, "center": {"144-258, T": [210, -946]}}, +{"id": 1226, "name": "Shiny Sylveon", "description": "Just a small Shiny Sylveon", "links": {"website": ["https://peerstudios.net"], "subreddit": ["peerstudios"], "discord": ["aHrqhwGyYh"]}, "path": {"152-258, T": [[472, -912], [472, -880], [495, -880], [495, -912]]}, "center": {"152-258, T": [484, -896]}}, {"id": 1227, "name": "Andean cock-of-the-rock", "description": "The Andean cock-of-the-rock is a large bird native to Andean cloud forests in Peru. It's also the national bird of the country.", "links": {"website": ["https://en.wikipedia.org/wiki/Andean_cock-of-the-rock"], "subreddit": ["PERU"]}, "path": {"58-243": [[-156, -19], [-157, -18], [-157, -17], [-158, -16], [-158, -15], [-156, -12], [-155, -12], [-154, -11], [-154, -5], [-155, -5], [-156, -6], [-158, -6], [-158, -4], [-142, 4], [-143, -7], [-147, -11], [-147, -12], [-148, -13], [-148, -14], [-154, -19]]}, "center": {"58-243": [-149, -5]}}, {"id": 1228, "name": "Miles \"Tails\" Prower", "description": "Tails is a character in the Sonic the Hedgehog games, and the trusty sidekick of Sonic the Hedgehog.", "links": {"website": ["https://en.wikipedia.org/wiki/Tails_(Sonic_the_Hedgehog)"], "subreddit": ["SonicTheHedgehog", "MilesPrower"], "discord": ["SRycb9p"]}, "path": {"149-169": [[339, -865], [336, -862], [336, -858], [337, -857], [337, -855], [339, -852], [349, -852], [349, -860], [350, -861], [350, -864], [348, -866], [345, -863], [340, -866]]}, "center": {"149-169": [343, -858]}}, -{"id": 1230, "name": "Ecuador", "description": "The country of Ecuador as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador"], "subreddit": ["ecuador"]}, "path": {"136-258": [[-486, -904], [-493, -899], [-493, -895], [-496, -891], [-496, -886], [-497, -885], [-492, -880], [-492, -875], [-490, -873], [-480, -873], [-475, -880], [-466, -886], [-466, -896], [-472, -900], [-474, -899], [-476, -899], [-485, -904]]}, "center": {"136-258": [-483, -889]}}, -{"id": 1232, "name": "Flag of Bulgaria", "description": "Bulgaria is a country in Southeast Europe. The flag of Bulgaria is a tricolour consisting of three equal-sized horizontal bands of (from top to bottom) white, green, and red. The flag was first adopted after the 1877-1878 Russo-Turkish War, when Bulgaria gained de facto independence. The national flag at times was charged with the state emblem, especially during the communist era. The current flag was re-established with the 1991 Constitution of Bulgaria and was confirmed in a 1998 law.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria", "https://en.wikipedia.org/wiki/Flag_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"153-258": [[-392, -644], [-392, -610], [-362, -610], [-362, -644]], "118-258": [[-393, -640], [-393, -610], [-360, -610], [-360, -640]]}, "center": {"153-258": [-377, -627], "118-258": [-376, -625]}}, -{"id": 1233, "name": "Anıtkabir", "description": "Anıtkabir is the mausoleum of Mustafa Kemal Atatürk, the leader of the Turkish War of Independence who later became the founder and the first president of Republic of Turkey. Anıtkabir is located in Ankara, the capital of Turkey.", "links": {"website": ["https://en.wikipedia.org/wiki/An%C4%B1tkabir"], "subreddit": ["Turkey"]}, "path": {"143-258": [[-630, 411], [-630, 446], [-570, 446], [-570, 411]]}, "center": {"143-258": [-600, 429]}}, -{"id": 1234, "name": "Liverpool F.C.", "description": "Liverpool Football Club (Liverpool F.C.) is an association football (soccer) club based in Liverpool, England, United Kingdom.", "links": {"website": ["https://www.liverpoolfc.com/", "https://en.wikipedia.org/wiki/Liverpool_F.C."], "subreddit": ["LiverpoolFC"]}, "path": {"89-258": [[-671, -171], [-671, -140], [-660, -140], [-660, -151], [-634, -151], [-634, -145], [-631, -145], [-631, -171]]}, "center": {"89-258": [-651, -161]}}, -{"id": 1235, "name": "Hermitcraft", "description": "Hermitcraft is a popular survival multiplayer (SMP) series for the game Minecraft, featuring many of the most popular creators in the Minecraft YouTube community.", "links": {"website": ["https://hermitcraft.com/", "https://hermitcraft.fandom.com/wiki/Hermitcraft"], "subreddit": ["HermitCraft"]}, "path": {"130-258": [[541, -676], [541, -621], [562, -621], [562, -618], [580, -618], [580, -629], [595, -629], [595, -676]]}, "center": {"130-258": [566, -651]}}, -{"id": 1236, "name": "Flag of Switzerland", "description": "Switzerland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"122-139": [[-706, -535], [-706, -512], [-683, -512], [-683, -535]], "140-258": [[-719, -550], [-719, -501], [-670, -501], [-670, -550]]}, "center": {"122-139": [-694, -523], "140-258": [-694, -525]}}, -{"id": 1237, "name": "Ralsei", "description": "Deltarune is a role-playing video game developed by Toby Fox. The player controls a teenage human, Kris, who is destined to save the world together with Susie, a monster, and Ralsei, a prince from the Dark World. During their quest to seal the \"Dark Fountains\" prophesied to end the world, the group meets the inhabitants of the \"Dark World\", some of whom try to stop them. The combat system is based on bullet hell attacks the player must dodge. Similar to Undertale, enemy encounters can be resolved peacefully or through violence. \n\n- This is a collaboration with the german place group r/placede", "links": {"website": ["https://deltarune.com/"], "subreddit": ["deltarune", "placede"]}, "path": {"143-258": [[-142, -913], [-145, -920], [-146, -935], [-145, -946], [-136, -955], [-125, -954], [-125, -938], [-118, -937], [-115, -935], [-115, -923], [-124, -920], [-128, -913], [-141, -913]]}, "center": {"143-258": [-133, -929]}}, +{"id": 1230, "name": "Ecuador", "description": "The country of Ecuador as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador"], "subreddit": ["ecuador"]}, "path": {"136-258, T": [[-486, -904], [-493, -899], [-493, -895], [-496, -891], [-496, -886], [-497, -885], [-492, -880], [-492, -875], [-490, -873], [-480, -873], [-475, -880], [-466, -886], [-466, -896], [-472, -900], [-474, -899], [-476, -899], [-485, -904]]}, "center": {"136-258, T": [-483, -889]}}, +{"id": 1232, "name": "Flag of Bulgaria", "description": "Bulgaria is a country in Southeast Europe. The flag of Bulgaria is a tricolour consisting of three equal-sized horizontal bands of (from top to bottom) white, green, and red. The flag was first adopted after the 1877-1878 Russo-Turkish War, when Bulgaria gained de facto independence. The national flag at times was charged with the state emblem, especially during the communist era. The current flag was re-established with the 1991 Constitution of Bulgaria and was confirmed in a 1998 law.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria", "https://en.wikipedia.org/wiki/Flag_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"153-258, T": [[-392, -644], [-392, -610], [-362, -610], [-362, -644]], "118-258, T": [[-393, -640], [-393, -610], [-360, -610], [-360, -640]]}, "center": {"153-258, T": [-377, -627], "118-258, T": [-376, -625]}}, +{"id": 1233, "name": "Anıtkabir", "description": "Anıtkabir is the mausoleum of Mustafa Kemal Atatürk, the leader of the Turkish War of Independence who later became the founder and the first president of Republic of Turkey. Anıtkabir is located in Ankara, the capital of Turkey.", "links": {"website": ["https://en.wikipedia.org/wiki/An%C4%B1tkabir"], "subreddit": ["Turkey"]}, "path": {"143-258, T": [[-630, 411], [-630, 446], [-570, 446], [-570, 411]]}, "center": {"143-258, T": [-600, 429]}}, +{"id": 1234, "name": "Liverpool F.C.", "description": "Liverpool Football Club (Liverpool F.C.) is an association football (soccer) club based in Liverpool, England, United Kingdom.", "links": {"website": ["https://www.liverpoolfc.com/", "https://en.wikipedia.org/wiki/Liverpool_F.C."], "subreddit": ["LiverpoolFC"]}, "path": {"89-258, T": [[-671, -171], [-671, -140], [-660, -140], [-660, -151], [-634, -151], [-634, -145], [-631, -145], [-631, -171]]}, "center": {"89-258, T": [-651, -161]}}, +{"id": 1235, "name": "Hermitcraft", "description": "Hermitcraft is a popular survival multiplayer (SMP) series for the game Minecraft, featuring many of the most popular creators in the Minecraft YouTube community.", "links": {"website": ["https://hermitcraft.com/", "https://hermitcraft.fandom.com/wiki/Hermitcraft"], "subreddit": ["HermitCraft"]}, "path": {"130-258, T": [[541, -676], [541, -621], [562, -621], [562, -618], [580, -618], [580, -629], [595, -629], [595, -676]]}, "center": {"130-258, T": [566, -651]}}, +{"id": 1236, "name": "Flag of Switzerland", "description": "Switzerland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"122-139": [[-706, -535], [-706, -512], [-683, -512], [-683, -535]], "140-258, T": [[-719, -550], [-719, -501], [-670, -501], [-670, -550]]}, "center": {"122-139": [-694, -523], "140-258, T": [-694, -525]}}, +{"id": 1237, "name": "Ralsei", "description": "Deltarune is a role-playing video game developed by Toby Fox. The player controls a teenage human, Kris, who is destined to save the world together with Susie, a monster, and Ralsei, a prince from the Dark World. During their quest to seal the \"Dark Fountains\" prophesied to end the world, the group meets the inhabitants of the \"Dark World\", some of whom try to stop them. The combat system is based on bullet hell attacks the player must dodge. Similar to Undertale, enemy encounters can be resolved peacefully or through violence. \n\n- This is a collaboration with the german place group r/placede", "links": {"website": ["https://deltarune.com/"], "subreddit": ["deltarune", "placede"]}, "path": {"143-258, T": [[-142, -913], [-145, -920], [-146, -935], [-145, -946], [-136, -955], [-125, -954], [-125, -938], [-118, -937], [-115, -935], [-115, -923], [-124, -920], [-128, -913], [-141, -913]]}, "center": {"143-258, T": [-133, -929]}}, {"id": 1238, "name": "r/Furry_IRL", "description": "a furry subreddit dedicated to furries IRL", "links": {"subreddit": ["furry_irl"]}, "path": {"146": [[-590, -635], [-544, -636], [-545, -692], [-533, -693], [-532, -700], [-606, -700], [-606, -694], [-593, -693], [-593, -688], [-589, -687]]}, "center": {"146": [-567, -658]}}, -{"id": 1239, "name": "Shrek", "description": "Shrek is the titular ogre from the Shrek film series.\n\nThis art was drawn by German streamer Papaplatte (Lattensepp) and Portuguese streamer wuant. It was attacked by Argentina, but later fought back.", "links": {"website": ["https://en.wikipedia.org/wiki/Shrek_(character)", "https://www.twitch.tv/papaplatte", "https://www.twitch.tv/wuant"]}, "path": {"152-171": [[204, -796], [446, -797], [447, -677], [293, -676], [288, -671], [278, -671], [271, -666], [269, -666], [266, -671], [260, -671], [257, -676], [255, -676], [255, -680], [254, -676], [203, -676], [203, -795]], "196-258": [[172, -796], [172, -676], [595, -676], [595, -797]]}, "center": {"152-171": [386, -737], "196-258": [384, -736]}}, -{"id": 1240, "name": "Hoppou", "description": "Hoppou is a character in the VR platform VRChat, based on Northern Princess from the game Kantai Collection. Her fandom uses \"Poi!\" as a catchphrase.\n\nThis art was created by Hoppou Legion, a group who uses Hoppou as their main avatar on VRChat.", "links": {"website": ["https://vrchat-legends.fandom.com/wiki/Hoppou"], "discord": ["hoppoulegion"]}, "path": {"152-258": [[-89, 406], [-41, 406], [-41, 401], [-89, 401]]}, "center": {"152-258": [-65, 404]}}, +{"id": 1239, "name": "Shrek", "description": "Shrek is the titular ogre from the Shrek film series.\n\nThis art was drawn by German streamer Papaplatte (Lattensepp) and Portuguese streamer wuant. It was attacked by Argentina, but later fought back.", "links": {"website": ["https://en.wikipedia.org/wiki/Shrek_(character)", "https://www.twitch.tv/papaplatte", "https://www.twitch.tv/wuant"]}, "path": {"152-171": [[204, -796], [446, -797], [447, -677], [293, -676], [288, -671], [278, -671], [271, -666], [269, -666], [266, -671], [260, -671], [257, -676], [255, -676], [255, -680], [254, -676], [203, -676], [203, -795]], "196-258, T": [[172, -796], [172, -676], [595, -676], [595, -797]]}, "center": {"152-171": [386, -737], "196-258, T": [384, -736]}}, +{"id": 1240, "name": "Hoppou", "description": "Hoppou is a character in the VR platform VRChat, based on Northern Princess from the game Kantai Collection. Her fandom uses \"Poi!\" as a catchphrase.\n\nThis art was created by Hoppou Legion, a group who uses Hoppou as their main avatar on VRChat.", "links": {"website": ["https://vrchat-legends.fandom.com/wiki/Hoppou"], "discord": ["hoppoulegion"]}, "path": {"152-258, T": [[-89, 406], [-41, 406], [-41, 401], [-89, 401]]}, "center": {"152-258, T": [-65, 404]}}, {"id": 1241, "name": "DB (Deutsche Bahn - German Railway)", "description": "The Logo of the Deutsche Bahn was a short raid of german streamers", "links": {}, "path": {"13-14": [[-216, 354], [-364, 354], [-364, 445], [-216, 444], [-216, 355]]}, "center": {"13-14": [-290, 399]}}, -{"id": 1242, "name": "E621.net", "description": "A furry porn (yiff) website popularized by the furry community", "links": {"website": ["https://e621.net"]}, "path": {"152-258": [[615, -640], [640, -639], [638, -631], [632, -631], [631, -624], [629, -610], [615, -611]]}, "center": {"152-258": [623, -630]}}, -{"id": 1243, "name": "Templin Institute", "description": "Investigating the organizations, figures, and places of alternate worlds. The Templin Institute is a Canadian YouTube channel that provides in-depth analyses of popular science fiction, fantasy, and alternate history works from across video games, movies, novels, and television.", "links": {"website": ["https://www.templin.institute/", "https://youtube.fandom.com/wiki/The_Templin_Institute"], "subreddit": ["TemplinInstitute"], "discord": ["templininstitute"]}, "path": {"211": [[-78, -26], [-45, -26], [-45, -10], [-78, -10]], "58-74, 91-100": [[-78, -26], [-61, -26], [-61, -10], [-78, -10]], "101-142, 251-258": [[-78, -26], [-46, -26], [-46, -11], [-78, -11]], "143-208, 212-258": [[-78, -26], [-30, -26], [-30, -11], [-78, -11]]}, "center": {"211": [-61, -18], "58-74, 91-100": [-69, -18], "101-142, 251-258": [-62, -18], "143-208, 212-258": [-54, -18]}}, -{"id": 1244, "name": "42", "description": "This 42 is a collaboration between the 42 school and members of the Douglas Adams and Hitchhiker's Guide to the Galaxy subreddits. 42 school is a private institution of higher education in computer science founded by Xavier Niel. In the book The Hitchhiker's Guide to the Galaxy written by British author Douglas Adams, 42 is the Answer to the Ultimate Question of Life, the Universe, and Everything.", "links": {"website": ["https://www.42network.org/"], "subreddit": ["42Born2Code", "DouglasAdams", "HitchhikersGuide"], "discord": ["7BJ4p5f9"]}, "path": {"117-258": [[-891, -6], [-904, 7], [-904, 16], [-908, 16], [-908, 22], [-868, 22], [-868, -6]]}, "center": {"117-258": [-885, 8]}}, -{"id": 1245, "name": "Stargate", "description": "Stargate is a military science fiction movie and television franchise involving travel to other planets through wormholes created with a ring-shaped \"Stargate\", connecting galaxies and creating alliances. The franchise debuted with the 1994 movie Stargate, and continued in a series of TV shows, starting in 1997 with Stargate: SG-1 and continuing with Stargate: Atlantis and Stargate: Universe.", "links": {"website": ["https://mgm.com/franchise/stargate", "https://en.wikipedia.org/wiki/Stargate"], "subreddit": ["Stargate"]}, "path": {"129-258": [[-946, 67], [-946, 87], [-923, 87], [-923, 72], [-924, 72], [-924, 67]]}, "center": {"129-258": [-934, 77]}}, -{"id": 1246, "name": "Flag/Design of Cyprus", "description": "Cyprus is an island country in the Mediterranean Sea, inhabited by both a large minority of Turks and a majority of Greeks, as well as a myriad of other communities, such as Armenians.\n\nIts inclusion was inspired by both the heavy cultural and ethnic ties between the Greek Cypriot and Greek community, the presense of many Greek Cypriots in the r/GreecePlace Discord, and the wanting of both to provide Greek Cypriots representation in the map.\n\nThis was made difficult due to it having become an epicenter for raids from both rogue Turks (with no affiliation with the Turkish Discord server) as well as streamers (a fact whcih can be seen in the heat map).\n\nNonetheless, its final presense on the map is a testament to the dedication of both Greek Cypriots and Greeks.", "links": {"website": ["https://en.wikipedia.org/wiki/Cyprus", "https://en.wikipedia.org/wiki/Flag_of_Cyprus"], "subreddit": ["cyprus", "GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"135-258": [[-304, 47], [-312, 52], [-312, 56], [-313, 56], [-313, 60], [-308, 63], [-308, 67], [-300, 67], [-300, 63], [-294, 60], [-294, 48], [-292, 48], [-292, 46], [-295, 46], [-296, 47]]}, "center": {"135-258": [-303, 56]}}, -{"id": 1247, "name": "Greece", "description": "The country of Greece as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Greece"], "subreddit": ["GreecePlace", "greece"]}, "path": {"137-258": [[-323, 42], [-329, 45], [-344, 47], [-351, 49], [-351, 55], [-350, 56], [-350, 61], [-348, 61], [-348, 64], [-341, 64], [-341, 65], [-335, 67], [-321, 67], [-321, 64], [-326, 64], [-326, 59], [-328, 55], [-331, 55], [-331, 49], [-326, 49], [-321, 44]]}, "center": {"137-258": [-340, 55]}}, -{"id": 1248, "name": "Inscryption", "description": "From the creator of Pony Island and The Hex comes the latest mind-melting, self-destructing love letter to video games. Inscryption is a narrative-focused, card-based odyssey developed by Daneil Mullins Games and released in 2021. It blends the deck-building roguelike, escape-room style puzzles, and psychological horror into a blood-laced smoothie. Darker still are the secrets inscrybed upon the cards.\n\nFeatured prominently is the Stoat (often mistaken for a cat) saying one of his iconic lines, \"(s)Total Misplay\".", "links": {"website": ["https://en.wikipedia.org/wiki/Inscryption"], "subreddit": ["inscryption"]}, "path": {"126-258": [[-1000, -325], [-1000, -332], [-941, -331], [-939, -273], [-1025, -273], [-1024, -324]]}, "center": {"126-258": [-981, -302]}}, -{"id": 1249, "name": "Held der Steine Inh. Thomas Panke", "description": "Thomas Panke is a German web video producer and retailer based in Frankfurt. He gained notoriety under the name Hero of the Bricks primarily through the videos he published on the YouTube platform about sets of clamping blocks, initially made exclusively from Lego, but now also from competitors such as e.g. B. BlueBrixx, Cobi, Qman or Xingbao.", "links": {"website": ["https://www.held-der-steine.de/", "https://https"], "subreddit": ["placeDE"]}, "path": {"153-258": [[510, -551], [505, -556], [505, -559], [503, -560], [504, -566], [502, -567], [503, -576], [506, -577], [508, -579], [503, -579], [503, -587], [537, -586], [537, -582], [537, -580], [550, -581], [550, -573], [531, -573], [532, -571], [534, -569], [534, -564], [534, -561], [530, -559], [528, -556], [524, -555], [523, -553], [520, -551]]}, "center": {"153-258": [518, -568]}}, -{"id": 1251, "name": "DougDoug Peppers and Rosa", "description": "A pair of bell peppers, used by YouTuber And Twitch streamer DougDoug. DougDoug's content frequently centers around funny ideas involving his own Twitch chat. On top of the Bus lays Rosa the sea otter! <3", "links": {"website": ["https://www.dougdoug.com"], "subreddit": ["DougDougOnReddit", "DougDoug", "DougDougW"], "discord": ["763mpbqxNq"]}, "path": {"153-258": [[101, 254], [101, 264], [119, 264], [119, 254], [119, 251], [101, 251], [101, 261]]}, "center": {"153-258": [110, 258]}}, -{"id": 1252, "name": "Bonjwa", "description": "Bonjwa is a collective of variety Twitch streamers based in Hamburg, Germany. Pictured here is one of their members Matteo (alias MentalMimicry or BonjwaMental). The French Press represents Niklas aka Honor, the founder of Bonjwa. The pixelartwork also includes some other german Twitch streamers and friends of Bonjwa: Fischersnet (right there behind Matteo), KekLuck (the \"eyecon\" on the bottom left) and TouristHistories (#justSitting). It also depicts the cutest member of Bonjwa: Peepo, the dog of Bonjwas streamer Leon aka Redpanda.", "links": {"website": ["https://www.twitch.tv/bonjwa", "https://www.bonjwa.de"]}, "path": {"155-258": [[-312, -343], [-312, -368], [-177, -367], [-177, -330], [-287, -331], [-288, -342], [-312, -342], [-312, -349], [-312, -347], [-312, -348], [-312, -349], [-312, -347], [-312, -343], [-313, -343], [-312, -364], [-313, -351], [-312, -369], [-313, -343], [-290, -341], [-311, -343], [-314, -342], [-313, -342], [-312, -355], [-313, -349], [-312, -351], [-313, -348], [-313, -344], [-306, -348]]}, "center": {"155-258": [-261, -349]}}, -{"id": 1253, "name": "Flag of the Orkney Islands", "description": "While being a part of Scotland, the Orkney islands have close cultural and historical ties to Norway and Scandinavia as a whole.", "links": {}, "path": {"155-258": [[-177, -301], [-145, -301], [-145, -279], [-177, -279]]}, "center": {"155-258": [-161, -290]}}, +{"id": 1242, "name": "E621.net", "description": "A furry porn (yiff) website popularized by the furry community", "links": {"website": ["https://e621.net"]}, "path": {"152-258, T": [[615, -640], [640, -639], [638, -631], [632, -631], [631, -624], [629, -610], [615, -611]]}, "center": {"152-258, T": [623, -630]}}, +{"id": 1243, "name": "Templin Institute", "description": "Investigating the organizations, figures, and places of alternate worlds. The Templin Institute is a Canadian YouTube channel that provides in-depth analyses of popular science fiction, fantasy, and alternate history works from across video games, movies, novels, and television.", "links": {"website": ["https://www.templin.institute/", "https://youtube.fandom.com/wiki/The_Templin_Institute"], "subreddit": ["TemplinInstitute"], "discord": ["templininstitute"]}, "path": {"211": [[-78, -26], [-45, -26], [-45, -10], [-78, -10]], "58-74, 91-100": [[-78, -26], [-61, -26], [-61, -10], [-78, -10]], "101-142, 251-258": [[-78, -26], [-46, -26], [-46, -11], [-78, -11]], "143-208, 212-258, T": [[-78, -26], [-30, -26], [-30, -11], [-78, -11]]}, "center": {"211": [-61, -18], "58-74, 91-100": [-69, -18], "101-142, 251-258": [-62, -18], "143-208, 212-258, T": [-54, -18]}}, +{"id": 1244, "name": "42", "description": "This 42 is a collaboration between the 42 school and members of the Douglas Adams and Hitchhiker's Guide to the Galaxy subreddits. 42 school is a private institution of higher education in computer science founded by Xavier Niel. In the book The Hitchhiker's Guide to the Galaxy written by British author Douglas Adams, 42 is the Answer to the Ultimate Question of Life, the Universe, and Everything.", "links": {"website": ["https://www.42network.org/"], "subreddit": ["42Born2Code", "DouglasAdams", "HitchhikersGuide"], "discord": ["7BJ4p5f9"]}, "path": {"117-258, T": [[-891, -6], [-904, 7], [-904, 16], [-908, 16], [-908, 22], [-868, 22], [-868, -6]]}, "center": {"117-258, T": [-885, 8]}}, +{"id": 1245, "name": "Stargate", "description": "Stargate is a military science fiction movie and television franchise involving travel to other planets through wormholes created with a ring-shaped \"Stargate\", connecting galaxies and creating alliances. The franchise debuted with the 1994 movie Stargate, and continued in a series of TV shows, starting in 1997 with Stargate: SG-1 and continuing with Stargate: Atlantis and Stargate: Universe.", "links": {"website": ["https://mgm.com/franchise/stargate", "https://en.wikipedia.org/wiki/Stargate"], "subreddit": ["Stargate"]}, "path": {"129-258, T": [[-946, 67], [-946, 87], [-923, 87], [-923, 72], [-924, 72], [-924, 67]]}, "center": {"129-258, T": [-934, 77]}}, +{"id": 1246, "name": "Flag/Design of Cyprus", "description": "Cyprus is an island country in the Mediterranean Sea, inhabited by both a large minority of Turks and a majority of Greeks, as well as a myriad of other communities, such as Armenians.\n\nIts inclusion was inspired by both the heavy cultural and ethnic ties between the Greek Cypriot and Greek community, the presense of many Greek Cypriots in the r/GreecePlace Discord, and the wanting of both to provide Greek Cypriots representation in the map.\n\nThis was made difficult due to it having become an epicenter for raids from both rogue Turks (with no affiliation with the Turkish Discord server) as well as streamers (a fact whcih can be seen in the heat map).\n\nNonetheless, its final presense on the map is a testament to the dedication of both Greek Cypriots and Greeks.", "links": {"website": ["https://en.wikipedia.org/wiki/Cyprus", "https://en.wikipedia.org/wiki/Flag_of_Cyprus"], "subreddit": ["cyprus", "GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"135-258, T": [[-304, 47], [-312, 52], [-312, 56], [-313, 56], [-313, 60], [-308, 63], [-308, 67], [-300, 67], [-300, 63], [-294, 60], [-294, 48], [-292, 48], [-292, 46], [-295, 46], [-296, 47]]}, "center": {"135-258, T": [-303, 56]}}, +{"id": 1247, "name": "Greece", "description": "The country of Greece as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Greece"], "subreddit": ["GreecePlace", "greece"]}, "path": {"137-258, T": [[-323, 42], [-329, 45], [-344, 47], [-351, 49], [-351, 55], [-350, 56], [-350, 61], [-348, 61], [-348, 64], [-341, 64], [-341, 65], [-335, 67], [-321, 67], [-321, 64], [-326, 64], [-326, 59], [-328, 55], [-331, 55], [-331, 49], [-326, 49], [-321, 44]]}, "center": {"137-258, T": [-340, 55]}}, +{"id": 1248, "name": "Inscryption", "description": "From the creator of Pony Island and The Hex comes the latest mind-melting, self-destructing love letter to video games. Inscryption is a narrative-focused, card-based odyssey developed by Daneil Mullins Games and released in 2021. It blends the deck-building roguelike, escape-room style puzzles, and psychological horror into a blood-laced smoothie. Darker still are the secrets inscrybed upon the cards.\n\nFeatured prominently is the Stoat (often mistaken for a cat) saying one of his iconic lines, \"(s)Total Misplay\".", "links": {"website": ["https://en.wikipedia.org/wiki/Inscryption"], "subreddit": ["inscryption"]}, "path": {"126-258, T": [[-1000, -325], [-1000, -332], [-941, -331], [-939, -273], [-1025, -273], [-1024, -324]]}, "center": {"126-258, T": [-981, -302]}}, +{"id": 1249, "name": "Held der Steine Inh. Thomas Panke", "description": "Thomas Panke is a German web video producer and retailer based in Frankfurt. He gained notoriety under the name Hero of the Bricks primarily through the videos he published on the YouTube platform about sets of clamping blocks, initially made exclusively from Lego, but now also from competitors such as e.g. B. BlueBrixx, Cobi, Qman or Xingbao.", "links": {"website": ["https://www.held-der-steine.de/", "https://https"], "subreddit": ["placeDE"]}, "path": {"153-258, T": [[510, -551], [505, -556], [505, -559], [503, -560], [504, -566], [502, -567], [503, -576], [506, -577], [508, -579], [503, -579], [503, -587], [537, -586], [537, -582], [537, -580], [550, -581], [550, -573], [531, -573], [532, -571], [534, -569], [534, -564], [534, -561], [530, -559], [528, -556], [524, -555], [523, -553], [520, -551]]}, "center": {"153-258, T": [518, -568]}}, +{"id": 1251, "name": "DougDoug Peppers and Rosa", "description": "A pair of bell peppers, used by YouTuber And Twitch streamer DougDoug. DougDoug's content frequently centers around funny ideas involving his own Twitch chat. On top of the Bus lays Rosa the sea otter! <3", "links": {"website": ["https://www.dougdoug.com"], "subreddit": ["DougDougOnReddit", "DougDoug", "DougDougW"], "discord": ["763mpbqxNq"]}, "path": {"153-258, T": [[101, 254], [101, 264], [119, 264], [119, 254], [119, 251], [101, 251], [101, 261]]}, "center": {"153-258, T": [110, 258]}}, +{"id": 1252, "name": "Bonjwa", "description": "Bonjwa is a collective of variety Twitch streamers based in Hamburg, Germany. Pictured here is one of their members Matteo (alias MentalMimicry or BonjwaMental). The French Press represents Niklas aka Honor, the founder of Bonjwa. The pixelartwork also includes some other german Twitch streamers and friends of Bonjwa: Fischersnet (right there behind Matteo), KekLuck (the \"eyecon\" on the bottom left) and TouristHistories (#justSitting). It also depicts the cutest member of Bonjwa: Peepo, the dog of Bonjwas streamer Leon aka Redpanda.", "links": {"website": ["https://www.twitch.tv/bonjwa", "https://www.bonjwa.de"]}, "path": {"155-258, T": [[-312, -343], [-312, -368], [-177, -367], [-177, -330], [-287, -331], [-288, -342], [-312, -342], [-312, -349], [-312, -347], [-312, -348], [-312, -349], [-312, -347], [-312, -343], [-313, -343], [-312, -364], [-313, -351], [-312, -369], [-313, -343], [-290, -341], [-311, -343], [-314, -342], [-313, -342], [-312, -355], [-313, -349], [-312, -351], [-313, -348], [-313, -344], [-306, -348]]}, "center": {"155-258, T": [-261, -349]}}, +{"id": 1253, "name": "Flag of the Orkney Islands", "description": "While being a part of Scotland, the Orkney islands have close cultural and historical ties to Norway and Scandinavia as a whole.", "links": {}, "path": {"155-258, T": [[-177, -301], [-145, -301], [-145, -279], [-177, -279]]}, "center": {"155-258, T": [-161, -290]}}, {"id": 1254, "name": "ppL", "description": "a Twitch emote by MahsumPlays and his chat <3", "links": {}, "path": {"108-113": [[911, -199], [911, -200], [915, -206], [919, -206], [921, -204], [920, -201], [919, -199]]}, "center": {"108-113": [916, -202]}}, {"id": 1255, "name": "Toggo", "description": "Toggo is a German childrens TV channel aimed at 6 to 12 year olds. It is owned by one of Germany's biggest broadcasting networks RTL. \nThis artwork was created by the community of Papaplatte and Rumathra.", "links": {"website": ["https://www.toggo.de/", "https://www.twitch.tv/papaplatte", "https://www.twitch.tv/rumathra"]}, "path": {"10-32": [[291, -265], [434, -284], [495, -263], [486, -233], [428, -202], [323, -199], [312, -236], [292, -237]]}, "center": {"10-32": [418, -242]}}, -{"id": 1256, "name": "ROCK ME", "description": "A reference to the Song \"Rock me Amadeus\" by Falco", "links": {"website": ["https://www.youtube.com/watch?v=cVikZ8Oe_XA"]}, "path": {"155-258": [[-31, -28], [-31, -45], [-5, -45], [-6, -36], [-3, -36], [-3, -28]]}, "center": {"155-258": [-17, -36]}}, -{"id": 1259, "name": "Family of Ducks", "description": "Quite a random and uncoordinated piece of the canvas. It started with the duck in the top-left corner. Then, two brothers added another. After yet other people made them fall in love, other ducks joined the party. Even when they were temporarily gone, people added them back again", "links": {"website": ["https://en.wikipedia.org/wiki/Duck"]}, "path": {"102-258": [[168, 140], [177, 140], [185, 149], [179, 150], [174, 151], [171, 149], [171, 145], [168, 144]]}, "center": {"102-258": [176, 146]}}, -{"id": 1260, "name": "Fauna Crying Emote (Saplings Cry)", "description": "The Crying emoji of Ceres Fauna, a vtuber from Hololive English. The emote is often associated with Fauna's fanbase (also known as Saplings). The emote is also a meme within the vtubing community for its association with the Fauna's signature \"uuuu~\" cries and her fanbase's apparent neediness.", "links": {"website": ["https://imissfauna.com/"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"155-258": [[-537, -368], [-537, -346], [-533, -343], [-532, -340], [-530, -335], [-502, -335], [-501, -335], [-501, -368]]}, "center": {"155-258": [-518, -352]}}, -{"id": 1261, "name": "Banhammer", "description": "The Banhammer voted by the German South Flags Community. This is an allusion to the r/placede administration which threatens very strongly with bans / timeouts and executes them partly without reason. (randombans)\n\nr/placede has already apologized for exactly this topic in a statement.", "links": {"subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"143-258": [[-684, -78], [-702, -78], [-703, -77], [-703, -74], [-703, -73], [-701, -72], [-697, -72], [-695, -72], [-695, -62], [-692, -62], [-692, -72], [-685, -72], [-684, -73]]}, "center": {"143-258": [-693, -75]}}, -{"id": 1262, "name": "Paluten and Edgar", "description": "Paluten is a german youtuber famous for various minecraft projects like \"freedom\" and \"flucht\" and Letsplays. The pig you can see in the middle is his minecraft pet, edgar.", "links": {"website": ["https://youtube.com/@Paluten", "https://www.instagram.com/paluten"]}, "path": {"140-258": [[-770, 404], [-867, 404], [-867, 348], [-854, 348], [-854, 344], [-770, 344]]}, "center": {"140-258": [-818, 374]}}, -{"id": 1263, "name": "TU Dortmund/TUM Cooperation", "description": "Cooperation between the german universities Technische Universität München and Technische Universität Dortmund in accordance with Südflagge", "links": {"website": ["https://www.tum.de/", "https://www.tu-dortmund.de/"]}, "path": {"144-148": [[-331, -76], [-286, -76], [-286, -63], [-331, -63]], "149-258": [[-331, -76], [-286, -76], [-286, -57], [-331, -57]]}, "center": {"144-148": [-308, -69], "149-258": [-308, -66]}}, -{"id": 1266, "name": "\"Whole Lotta Red\" Logo", "description": "The Logo from rapper Playboi Carti's album \"Whole Lotta Red\". Next to it there's a pixelated version of the artist himself and symbols used by his record label \"Opium\".", "links": {"website": ["https://en.wikipedia.org/wiki/Playboi_Carti"], "subreddit": ["playboicarti"]}, "path": {"155-258": [[-543, -191], [-543, -204], [-568, -204], [-567, -212], [-531, -211], [-531, -204], [-502, -204], [-502, -191]]}, "center": {"155-258": [-536, -199]}}, +{"id": 1256, "name": "ROCK ME", "description": "A reference to the Song \"Rock me Amadeus\" by Falco", "links": {"website": ["https://www.youtube.com/watch?v=cVikZ8Oe_XA"]}, "path": {"155-258, T": [[-31, -28], [-31, -45], [-5, -45], [-6, -36], [-3, -36], [-3, -28]]}, "center": {"155-258, T": [-17, -36]}}, +{"id": 1259, "name": "Family of Ducks", "description": "Quite a random and uncoordinated piece of the canvas. It started with the duck in the top-left corner. Then, two brothers added another. After yet other people made them fall in love, other ducks joined the party. Even when they were temporarily gone, people added them back again", "links": {"website": ["https://en.wikipedia.org/wiki/Duck"]}, "path": {"102-258, T": [[168, 140], [177, 140], [185, 149], [179, 150], [174, 151], [171, 149], [171, 145], [168, 144]]}, "center": {"102-258, T": [176, 146]}}, +{"id": 1260, "name": "Fauna Crying Emote (Saplings Cry)", "description": "The Crying emoji of Ceres Fauna, a vtuber from Hololive English. The emote is often associated with Fauna's fanbase (also known as Saplings). The emote is also a meme within the vtubing community for its association with the Fauna's signature \"uuuu~\" cries and her fanbase's apparent neediness.", "links": {"website": ["https://imissfauna.com/"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"155-258, T": [[-537, -368], [-537, -346], [-533, -343], [-532, -340], [-530, -335], [-502, -335], [-501, -335], [-501, -368]]}, "center": {"155-258, T": [-518, -352]}}, +{"id": 1261, "name": "Banhammer", "description": "The Banhammer voted by the German South Flags Community. This is an allusion to the r/placede administration which threatens very strongly with bans / timeouts and executes them partly without reason. (randombans)\n\nr/placede has already apologized for exactly this topic in a statement.", "links": {"subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"143-258, T": [[-684, -78], [-702, -78], [-703, -77], [-703, -74], [-703, -73], [-701, -72], [-697, -72], [-695, -72], [-695, -62], [-692, -62], [-692, -72], [-685, -72], [-684, -73]]}, "center": {"143-258, T": [-693, -75]}}, +{"id": 1262, "name": "Paluten and Edgar", "description": "Paluten is a german youtuber famous for various minecraft projects like \"freedom\" and \"flucht\" and Letsplays. The pig you can see in the middle is his minecraft pet, edgar.", "links": {"website": ["https://youtube.com/@Paluten", "https://www.instagram.com/paluten"]}, "path": {"140-258, T": [[-770, 404], [-867, 404], [-867, 348], [-854, 348], [-854, 344], [-770, 344]]}, "center": {"140-258, T": [-818, 374]}}, +{"id": 1263, "name": "TU Dortmund/TUM Cooperation", "description": "Cooperation between the german universities Technische Universität München and Technische Universität Dortmund in accordance with Südflagge", "links": {"website": ["https://www.tum.de/", "https://www.tu-dortmund.de/"]}, "path": {"144-148": [[-331, -76], [-286, -76], [-286, -63], [-331, -63]], "149-258, T": [[-331, -76], [-286, -76], [-286, -57], [-331, -57]]}, "center": {"144-148": [-308, -69], "149-258, T": [-308, -66]}}, +{"id": 1266, "name": "\"Whole Lotta Red\" Logo", "description": "The Logo from rapper Playboi Carti's album \"Whole Lotta Red\". Next to it there's a pixelated version of the artist himself and symbols used by his record label \"Opium\".", "links": {"website": ["https://en.wikipedia.org/wiki/Playboi_Carti"], "subreddit": ["playboicarti"]}, "path": {"155-258, T": [[-543, -191], [-543, -204], [-568, -204], [-567, -212], [-531, -211], [-531, -204], [-502, -204], [-502, -191]]}, "center": {"155-258, T": [-536, -199]}}, {"id": 1267, "name": "suunGuitar", "description": "suuN is a german Twitch Streamer playing Guitar, Bass & Drums on Stream. The picture is showing his mascott \"Jake\" from Adventure Time with a guitar.", "links": {"website": ["https://twitch.tv/suuN"], "discord": ["suuN"]}, "path": {"119-146": [[-763, -80], [-763, -81], [-738, -105], [-763, -105], [-763, -80], [-739, -80], [-738, -105], [-763, -81]]}, "center": {"119-146": [-746, -87]}}, -{"id": 1268, "name": "Wanderer above the Sea of Fog", "description": "Wanderer above the Sea of Fog (German: Der Wanderer über dem Nebelmeer) is a painting created in 1818 by German Romantic artist Caspar David Friedrich. It has been considered one of the masterpieces of the Romanticism movement and one of its most representative works. This painting makes a cameo in the paintings in the game Minecraft.\n\nThis is a project by the German Twitch streamer Lattensepp (Papaplatte), who wanted to create true art on the canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Wanderer_above_the_Sea_of_Fog"], "subreddit": ["Papaplatte"], "discord": ["papaplatte"]}, "path": {"155-258": [[-112, 586], [55, 586], [55, 854], [-112, 854]]}, "center": {"155-258": [-28, 720]}}, -{"id": 1269, "name": "5,0-Original-Bier", "description": "The \"5.0 Original\" is an iconic Pilsner beer in cans from the German brewery Oettinger. It is offered in several varieties, from Pils to Weizen to Radler. A feast for the eyes for relaxed enjoyment of special moments. Often referred to as a petrol station beer, this canned beer also enjoys great popularity among festival-goers due to its reasonable price.", "links": {"website": ["https://www.5-0-original.de/"]}, "path": {"153-258": [[269, -691], [269, -714], [270, -714], [270, -716], [271, -716], [271, -717], [272, -717], [272, -718], [282, -718], [281, -717], [281, -716], [282, -716], [282, -714], [283, -714], [283, -693], [277, -693], [276, -692], [275, -692], [274, -691]]}, "center": {"153-258": [276, -704]}}, -{"id": 1270, "name": "Littlepip", "description": "Littlepip the main character from fallout equestria", "links": {"website": ["https://en.wikipedia.org/wiki/Fallout:_Equestria"], "subreddit": ["falloutequestria"]}, "path": {"81-258": [[248, 40], [248, 36], [245, 38], [242, 37], [241, 28], [241, 15], [254, 15], [258, 20], [260, 22], [268, 23], [273, 28], [275, 33], [273, 36], [268, 38], [260, 38], [259, 39]]}, "center": {"81-258": [251, 27]}}, -{"id": 1271, "name": "Berliner Luft", "description": "\"Berliner Luft\" is the trade name of a peppermint liqueur originally from the GDR. Clear and fresh, just like the Berlin air. The cult drink of the Berlin party scene is always a welcome guest. Well chilled, Berliner Luft is not only a culinary delight on its own, but also excellent for mixing stylish cocktails and long drinks of all kinds.", "links": {"website": ["https://www.schilkin.de/"]}, "path": {"155-258": [[412, -752], [416, -752], [417, -728], [423, -724], [423, -677], [405, -677], [405, -721], [412, -730]]}, "center": {"155-258": [414, -707]}}, -{"id": 1272, "name": "Fondue", "description": "Fondue is a Swiss melted cheese and wine dish served in a communal pot over a portable stove heated with a candle or spirit lamp, and eaten by dipping bread into the cheese using long-stemmed forks.", "links": {"website": ["https://en.wikipedia.org/wiki/Fondue"]}, "path": {"155-258": [[-558, 211], [-557, 211], [-556, 211], [-556, 212], [-556, 213], [-557, 213], [-557, 214], [-557, 215], [-557, 216], [-556, 216], [-555, 216], [-554, 216], [-553, 216], [-553, 217], [-552, 217], [-551, 217], [-550, 217], [-550, 218], [-549, 218], [-549, 219], [-548, 219], [-548, 220], [-547, 220], [-541, 220], [-541, 221], [-543, 221], [-543, 222], [-546, 222], [-546, 221], [-548, 221], [-548, 223], [-549, 223], [-549, 224], [-551, 224], [-551, 225], [-552, 225], [-552, 226], [-560, 226], [-560, 225], [-562, 225], [-562, 224], [-563, 224], [-563, 219], [-564, 219], [-565, 219], [-565, 220], [-566, 220], [-566, 221], [-566, 222], [-566, 223], [-567, 223], [-567, 224], [-568, 224], [-568, 225], [-569, 225], [-569, 226], [-571, 226], [-571, 224], [-570, 224], [-570, 223], [-569, 223], [-569, 222], [-568, 222], [-568, 221], [-567, 221], [-564, 218], [-563, 217], [-562, 216], [-561, 215], [-560, 214], [-559, 213], [-559, 212], [-558, 214], [-557, 213], [-558, 212], [-558, 213], [-558, 214], [-559, 213], [-557, 214], [-557, 212], [-558, 212]]}, "center": {"155-258": [-557, 221]}}, +{"id": 1268, "name": "Wanderer above the Sea of Fog", "description": "Wanderer above the Sea of Fog (German: Der Wanderer über dem Nebelmeer) is a painting created in 1818 by German Romantic artist Caspar David Friedrich. It has been considered one of the masterpieces of the Romanticism movement and one of its most representative works. This painting makes a cameo in the paintings in the game Minecraft.\n\nThis is a project by the German Twitch streamer Lattensepp (Papaplatte), who wanted to create true art on the canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Wanderer_above_the_Sea_of_Fog"], "subreddit": ["Papaplatte"], "discord": ["papaplatte"]}, "path": {"155-258, T": [[-112, 586], [55, 586], [55, 854], [-112, 854]]}, "center": {"155-258, T": [-28, 720]}}, +{"id": 1269, "name": "5,0-Original-Bier", "description": "The \"5.0 Original\" is an iconic Pilsner beer in cans from the German brewery Oettinger. It is offered in several varieties, from Pils to Weizen to Radler. A feast for the eyes for relaxed enjoyment of special moments. Often referred to as a petrol station beer, this canned beer also enjoys great popularity among festival-goers due to its reasonable price.", "links": {"website": ["https://www.5-0-original.de/"]}, "path": {"153-258, T": [[269, -691], [269, -714], [270, -714], [270, -716], [271, -716], [271, -717], [272, -717], [272, -718], [282, -718], [281, -717], [281, -716], [282, -716], [282, -714], [283, -714], [283, -693], [277, -693], [276, -692], [275, -692], [274, -691]]}, "center": {"153-258, T": [276, -704]}}, +{"id": 1270, "name": "Littlepip", "description": "Littlepip the main character from fallout equestria", "links": {"website": ["https://en.wikipedia.org/wiki/Fallout:_Equestria"], "subreddit": ["falloutequestria"]}, "path": {"81-258, T": [[248, 40], [248, 36], [245, 38], [242, 37], [241, 28], [241, 15], [254, 15], [258, 20], [260, 22], [268, 23], [273, 28], [275, 33], [273, 36], [268, 38], [260, 38], [259, 39]]}, "center": {"81-258, T": [251, 27]}}, +{"id": 1271, "name": "Berliner Luft", "description": "\"Berliner Luft\" is the trade name of a peppermint liqueur originally from the GDR. Clear and fresh, just like the Berlin air. The cult drink of the Berlin party scene is always a welcome guest. Well chilled, Berliner Luft is not only a culinary delight on its own, but also excellent for mixing stylish cocktails and long drinks of all kinds.", "links": {"website": ["https://www.schilkin.de/"]}, "path": {"155-258, T": [[412, -752], [416, -752], [417, -728], [423, -724], [423, -677], [405, -677], [405, -721], [412, -730]]}, "center": {"155-258, T": [414, -707]}}, +{"id": 1272, "name": "Fondue", "description": "Fondue is a Swiss melted cheese and wine dish served in a communal pot over a portable stove heated with a candle or spirit lamp, and eaten by dipping bread into the cheese using long-stemmed forks.", "links": {"website": ["https://en.wikipedia.org/wiki/Fondue"]}, "path": {"155-258, T": [[-558, 211], [-557, 211], [-556, 211], [-556, 212], [-556, 213], [-557, 213], [-557, 214], [-557, 215], [-557, 216], [-556, 216], [-555, 216], [-554, 216], [-553, 216], [-553, 217], [-552, 217], [-551, 217], [-550, 217], [-550, 218], [-549, 218], [-549, 219], [-548, 219], [-548, 220], [-547, 220], [-541, 220], [-541, 221], [-543, 221], [-543, 222], [-546, 222], [-546, 221], [-548, 221], [-548, 223], [-549, 223], [-549, 224], [-551, 224], [-551, 225], [-552, 225], [-552, 226], [-560, 226], [-560, 225], [-562, 225], [-562, 224], [-563, 224], [-563, 219], [-564, 219], [-565, 219], [-565, 220], [-566, 220], [-566, 221], [-566, 222], [-566, 223], [-567, 223], [-567, 224], [-568, 224], [-568, 225], [-569, 225], [-569, 226], [-571, 226], [-571, 224], [-570, 224], [-570, 223], [-569, 223], [-569, 222], [-568, 222], [-568, 221], [-567, 221], [-564, 218], [-563, 217], [-562, 216], [-561, 215], [-560, 214], [-559, 213], [-559, 212], [-558, 214], [-557, 213], [-558, 212], [-558, 213], [-558, 214], [-559, 213], [-557, 214], [-557, 212], [-558, 212]]}, "center": {"155-258, T": [-557, 221]}}, {"id": 1273, "name": "Critical Strike Logo", "description": "The official logo for Critical Strike, a game on Roblox.com\n\nBeside the logo is Controllers Drone. Controller is a class in Critical Strike and its drone is often seen as a pet", "links": {"website": ["https://www.roblox.com/games/8246089782/CRITICAL-STRIKE-v5-9-1"], "discord": ["cs6"]}, "path": {"155-209": [[-686, 436], [-686, 445], [-672, 445], [-672, 436], [-715, 436], [-715, 445], [-686, 445], [-676, 436], [-672, 436], [-672, 429], [-676, 429], [-676, 436]]}, "center": {"155-209": [-710, 440]}}, {"id": 1274, "name": "German Lattice", "description": "After an alliance between the Green Lattice and Germany was made, the German flag had part of it \"latticed\" in a pattern similar to the Green Lattice below.", "links": {"subreddit": ["GreenLattice"], "discord": ["y2qeb7sm"]}, "path": {"146-166": [[307, -913], [471, -913], [471, -1000], [307, -1000]]}, "center": {"146-166": [389, -956]}}, -{"id": 1275, "name": "Paluten", "description": "Paluten is a German web video producer and youth novelist; he gained notoriety for publishing Let's Plays and vlogs on his YouTube channel.", "links": {"website": ["https://de.wikipedia.org/wiki/Paluten"]}, "path": {"155-258": [[-790, 344], [-790, 363], [-770, 364], [-771, 344]]}, "center": {"155-258": [-780, 354]}}, -{"id": 1276, "name": "GermanLetsPlay(GLP)", "description": "GLP is a german youtuber whose famous for his black and blue jacket he wore in his very first videos. He is currently taking some time off of youtube to fix his mental health.", "links": {"website": ["https://youtube.com/@GermanLetsPlay", "https://www.instagram.com/germanletsplay/", "https://twitter.com/GermanLetsPlay"]}, "path": {"145-258": [[-867, 405], [-770, 405], [-770, 428], [-867, 428], [-867, 425]]}, "center": {"145-258": [-818, 417]}}, -{"id": 1277, "name": "Twenty One Pilots", "description": "Twenty One Pilots are an American musical duo from Columbus, Ohio", "links": {"website": ["https://www.twentyonepilots.com/"], "subreddit": ["twentyonepilots"]}, "path": {"155-258": [[475, -328], [498, -328], [498, -294], [475, -294], [475, -311]]}, "center": {"155-258": [487, -311]}}, -{"id": 1278, "name": "\"Nothing Happend\" - Zoro", "description": "A legendary scene from Eiichiro Oda's famous manga One Piece where Zoro (the depicted character) states that \"nothing happened\" after taking an immense amount of pain and injuries.", "links": {"subreddit": ["onepiece"], "discord": ["oneplace"]}, "path": {"155-258": [[-828, -316], [-834, -359], [-832, -333], [-836, -340], [-845, -342], [-856, -342], [-859, -340], [-861, -339], [-864, -339], [-865, -337], [-866, -335], [-865, -328], [-863, -326], [-858, -324], [-853, -323], [-851, -322], [-844, -322], [-839, -323], [-835, -324], [-849, -318], [-855, -315], [-857, -312], [-858, -303], [-855, -291], [-854, -287], [-852, -283], [-851, -274], [-847, -267], [-847, -259], [-849, -250], [-849, -238], [-796, -238], [-796, -276], [-794, -278], [-792, -283], [-791, -289], [-790, -295], [-786, -299], [-787, -302], [-787, -306], [-789, -310], [-789, -312], [-792, -315], [-797, -317], [-802, -318], [-806, -321], [-808, -323], [-810, -326], [-812, -330], [-812, -333], [-813, -339], [-810, -342], [-809, -350], [-810, -359], [-810, -362], [-813, -366], [-821, -367], [-827, -367], [-831, -366], [-833, -364], [-834, -360], [-830, -329]]}, "center": {"155-258": [-823, -287]}}, -{"id": 1279, "name": "Amália Rodrigues and Fado", "description": "Fado is a portuguese musical style, which originated in Lisbon. It is generally sang by one person, accompanied by a classic guitar. \nFeatured in the canvas, is Amália Rodrigues, the most decorated portuguese fado singer.", "links": {"website": ["https://en.wikipedia.org/wiki/Fado"]}, "path": {"61-258": [[367, 341], [429, 341], [453, 334], [444, 327], [439, 310], [422, 294], [402, 302], [398, 321], [402, 328], [395, 327], [388, 313], [381, 311], [384, 318], [388, 325], [381, 341]]}, "center": {"61-258": [420, 320]}}, +{"id": 1275, "name": "Paluten", "description": "Paluten is a German web video producer and youth novelist; he gained notoriety for publishing Let's Plays and vlogs on his YouTube channel.", "links": {"website": ["https://de.wikipedia.org/wiki/Paluten"]}, "path": {"155-258, T": [[-790, 344], [-790, 363], [-770, 364], [-771, 344]]}, "center": {"155-258, T": [-780, 354]}}, +{"id": 1276, "name": "GermanLetsPlay(GLP)", "description": "GLP is a german youtuber whose famous for his black and blue jacket he wore in his very first videos. He is currently taking some time off of youtube to fix his mental health.", "links": {"website": ["https://youtube.com/@GermanLetsPlay", "https://www.instagram.com/germanletsplay/", "https://twitter.com/GermanLetsPlay"]}, "path": {"145-258, T": [[-867, 405], [-770, 405], [-770, 428], [-867, 428], [-867, 425]]}, "center": {"145-258, T": [-818, 417]}}, +{"id": 1277, "name": "Twenty One Pilots", "description": "Twenty One Pilots are an American musical duo from Columbus, Ohio", "links": {"website": ["https://www.twentyonepilots.com/"], "subreddit": ["twentyonepilots"]}, "path": {"155-258, T": [[475, -328], [498, -328], [498, -294], [475, -294], [475, -311]]}, "center": {"155-258, T": [487, -311]}}, +{"id": 1278, "name": "\"Nothing Happend\" - Zoro", "description": "A legendary scene from Eiichiro Oda's famous manga One Piece where Zoro (the depicted character) states that \"nothing happened\" after taking an immense amount of pain and injuries.", "links": {"subreddit": ["onepiece"], "discord": ["oneplace"]}, "path": {"155-258, T": [[-828, -316], [-834, -359], [-832, -333], [-836, -340], [-845, -342], [-856, -342], [-859, -340], [-861, -339], [-864, -339], [-865, -337], [-866, -335], [-865, -328], [-863, -326], [-858, -324], [-853, -323], [-851, -322], [-844, -322], [-839, -323], [-835, -324], [-849, -318], [-855, -315], [-857, -312], [-858, -303], [-855, -291], [-854, -287], [-852, -283], [-851, -274], [-847, -267], [-847, -259], [-849, -250], [-849, -238], [-796, -238], [-796, -276], [-794, -278], [-792, -283], [-791, -289], [-790, -295], [-786, -299], [-787, -302], [-787, -306], [-789, -310], [-789, -312], [-792, -315], [-797, -317], [-802, -318], [-806, -321], [-808, -323], [-810, -326], [-812, -330], [-812, -333], [-813, -339], [-810, -342], [-809, -350], [-810, -359], [-810, -362], [-813, -366], [-821, -367], [-827, -367], [-831, -366], [-833, -364], [-834, -360], [-830, -329]]}, "center": {"155-258, T": [-823, -287]}}, +{"id": 1279, "name": "Amália Rodrigues and Fado", "description": "Fado is a portuguese musical style, which originated in Lisbon. It is generally sang by one person, accompanied by a classic guitar. \nFeatured in the canvas, is Amália Rodrigues, the most decorated portuguese fado singer.", "links": {"website": ["https://en.wikipedia.org/wiki/Fado"]}, "path": {"61-258, T": [[367, 341], [429, 341], [453, 334], [444, 327], [439, 310], [422, 294], [402, 302], [398, 321], [402, 328], [395, 327], [388, 313], [381, 311], [384, 318], [388, 325], [381, 341]]}, "center": {"61-258, T": [420, 320]}}, {"id": 1280, "name": "Kush the clown", "description": "it did not survive", "links": {"discord": ["VVE6vNxyRy"]}, "path": {"117-141": [[-344, -783], [-336, -783], [-336, -790], [-335, -790], [-335, -793], [-337, -793], [-337, -792], [-338, -792], [-338, -790], [-342, -790], [-342, -792], [-343, -792], [-343, -793], [-345, -793], [-345, -790], [-344, -790]], "142-155": [[-347, -785], [-339, -785], [-339, -793], [-347, -793]], "156-166": [[-335, -787], [-335, -797], [-346, -797], [-346, -787]], "167-169": [[-346, -797], [-339, -797], [-339, -787], [-346, -787]], "202-206": [[-166, 944], [-160, 944], [-160, 950], [-166, 950]]}, "center": {"117-141": [-340, -786], "142-155": [-343, -789], "156-166": [-340, -792], "167-169": [-342, -792], "202-206": [-163, 947]}}, -{"id": 1281, "name": "Flag of Kurdistan", "description": "Indigenous to a mountainous region in the northern Middle East, the Kurds are the largest stateless nation in the world seeking independence and the fourth largest ethnic group in the Middle East. They have a long history of political marginalisation and persecution.\n\nThis time Kurds managed to get a bigger flag than last year, but many attempts to create other artwork were undermined by Turkish raids. Notable allies were r/Iran, r/Greece, r/Ireland, r/Spain & r/UK.", "links": {"website": ["https://en.wikipedia.org/wiki/Kurds", "https://en.wikipedia.org/wiki/Flag_of_Kurdistan", "https://en.wikipedia.org/wiki/Kurdistan"], "subreddit": ["Kurdistan"], "discord": ["2FwHvkjQ"]}, "path": {"67-258": [[555, -77], [555, -72], [632, -72], [632, -77]]}, "center": {"67-258": [594, -74]}}, -{"id": 1282, "name": "r/rvnxmango", "description": "RvNx Mango is a german Youtuber and Streamer. He became famous for his video about Germany's role in r/place 2022. The mentioned video is linked below (in German)", "links": {"website": ["https://www.youtube.com/watch?v=wAvCjaFIZiQ"], "subreddit": ["rvnxmango"]}, "path": {"198-258": [[-1500, -439], [-1500, -431], [-1433, -431], [-1433, -439]]}, "center": {"198-258": [-1466, -435]}}, +{"id": 1281, "name": "Flag of Kurdistan", "description": "Indigenous to a mountainous region in the northern Middle East, the Kurds are the largest stateless nation in the world seeking independence and the fourth largest ethnic group in the Middle East. They have a long history of political marginalisation and persecution.\n\nThis time Kurds managed to get a bigger flag than last year, but many attempts to create other artwork were undermined by Turkish raids. Notable allies were r/Iran, r/Greece, r/Ireland, r/Spain & r/UK.", "links": {"website": ["https://en.wikipedia.org/wiki/Kurds", "https://en.wikipedia.org/wiki/Flag_of_Kurdistan", "https://en.wikipedia.org/wiki/Kurdistan"], "subreddit": ["Kurdistan"], "discord": ["2FwHvkjQ"]}, "path": {"67-258, T": [[555, -77], [555, -72], [632, -72], [632, -77]]}, "center": {"67-258, T": [594, -74]}}, +{"id": 1282, "name": "r/rvnxmango", "description": "RvNx Mango is a german Youtuber and Streamer. He became famous for his video about Germany's role in r/place 2022. The mentioned video is linked below (in German)", "links": {"website": ["https://www.youtube.com/watch?v=wAvCjaFIZiQ"], "subreddit": ["rvnxmango"]}, "path": {"198-258, T": [[-1500, -439], [-1500, -431], [-1433, -431], [-1433, -439]]}, "center": {"198-258, T": [-1466, -435]}}, {"id": 1283, "name": "DoktorFroid", "description": "A Twitch streamer channel", "links": {"website": ["https://www.twitch.tv/doktorfroid", "https://shop.doktorfroid.de", "https://www.youtube.com/doktorfroid"], "subreddit": ["Sprechstunde"]}, "path": {"96": [[401, -295], [399, -299], [400, -295], [401, -289], [418, -289], [417, -299], [399, -298], [408, -294], [415, -297], [414, -299]]}, "center": {"96": [414, -292]}}, {"id": 1284, "name": "Muse", "description": "Area dedicated to the British three piece rock band Muse, showing their logo on the orange colour of the album Origin of Symmetry, along with two tuning forks either side, also from the album.\n\nUnderneath the logo is the message \"For Lina\", dedicating the space to a fan well known to the community who passed away a week prior to r/place 2023 beginning.", "links": {"website": ["https://en.wikipedia.org/wiki/Muse_(band)", "https://www.muse.mu/", "https://en.wikipedia.org/wiki/Origin_of_Symmetry", "https://www.instagram.com/p/CuxhoCjKQET/"], "subreddit": ["muse"], "discord": ["muse"]}, "path": {"6-39": [[-367, 37], [-330, 55], [-329, 36], [-367, 36], [-367, 56], [-329, 56], [-329, 36]]}, "center": {"6-39": [-359, 49]}}, -{"id": 1285, "name": "Metallica", "description": "Metallica is a legendary American heavy metal band formed in 1981. Comprising James Hetfield, Lars Ulrich, Kirk Hammett, and Robert Trujillo, they are pioneers of thrash metal. Their influential career includes iconic albums like \"Master of Puppets\" and the self-titled \"Black Album.\" Metallica's music features powerful riffs, emotional lyrics, and a blend of mainstream and aggressive sounds. With a massive global fanbase, they remain one of the most successful and enduring bands in heavy metal history. Below the logo is an homage to their late bass player, Cliff Burton, who was killed in a tour bus accident in 1986.", "links": {"subreddit": ["Metallica"]}, "path": {"123-252": [[-964, -231], [-964, -232], [-950, -260], [-954, -260], [-954, -261], [-948, -272], [-939, -272], [-939, -265], [-938, -265], [-938, -264], [-893, -264], [-893, -265], [-892, -265], [-892, -273], [-885, -273], [-885, -268], [-884, -268], [-884, -266], [-883, -266], [-883, -265], [-878, -265], [-878, -263], [-879, -263], [-879, -254], [-878, -254], [-878, -252], [-877, -252], [-877, -251], [-876, -251], [-876, -249], [-875, -249], [-882, -249], [-882, -250], [-902, -250], [-902, -251], [-903, -251], [-903, -252], [-904, -252], [-904, -253], [-925, -253], [-925, -252], [-926, -252], [-926, -251], [-927, -251], [-927, -250], [-942, -250], [-942, -247], [-946, -247], [-946, -246], [-948, -246], [-948, -245], [-949, -245], [-949, -244], [-950, -244], [-950, -242], [-954, -242], [-954, -241], [-955, -241], [-955, -240], [-956, -240], [-956, -237], [-958, -237], [-959, -237], [-959, -236], [-960, -236], [-960, -235], [-961, -235], [-961, -234], [-962, -234], [-962, -233]]}, "center": {"123-252": [-888, -258]}}, -{"id": 1287, "name": "TU Dortmund + TU München", "description": "A cooperation between the technical universities of Dortmund and Munich as well as the TUM mascot - a penguin (what harm could he do?)", "links": {"website": ["https://tum.de", "https://tu-dortmund.de"], "discord": ["tGev57T8"]}, "path": {"199-258": [[-334, -76], [-333, -57], [-206, -58], [-206, -76], [-223, -76], [-223, -58], [-286, -58], [-286, -75]]}, "center": {"199-258": [-324, -66]}}, -{"id": 1288, "name": "Sora (Super Danganronpa Another 2)", "description": "The protagonist of the Korean Danganronpa Fan Game \"Super Danganronpa Another 2.\" by LINUJ. She lacks any memories, the only thing she remembers is the Kanji \"空\" and chose to adopt it as her name", "links": {"subreddit": ["DanganronpaAnother"]}, "path": {"154-258": [[222, 7], [227, 34], [236, 35], [241, 26], [238, 10], [235, 8]]}, "center": {"154-258": [233, 25]}}, -{"id": 1289, "name": "DougDoug", "description": "The two bell peppers of DougDoug: DougDoug and WaluigiDoug.", "links": {"website": ["https://www.dougdoug.com", "https://www.youtube.com/channel/UClyGlKOhDUooPJFy4v_mqPg", "https://www.twitch.tv/DougDoug"], "subreddit": ["DougDougOnReddit", "DougDougAfterStream", "DougDougW"], "discord": ["763mpbqxNq"]}, "path": {"155-258": [[100, 264], [119, 264], [119, 274], [100, 274]]}, "center": {"155-258": [110, 269]}}, -{"id": 1290, "name": "Żabka convenience store", "description": "Żabka (\"little frog\") is a popular chain of convenience stores in Poland.", "links": {"website": ["https://en.wikipedia.org/wiki/%C5%BBabka_(convenience_store)"], "subreddit": ["Polska", "poland"], "discord": ["39J5zwpfha"]}, "path": {"155-258": [[705, -112], [756, -112], [756, -88], [705, -88]]}, "center": {"155-258": [731, -100]}}, -{"id": 1291, "name": "among us", "description": "sus", "links": {}, "path": {"155-258": [[14, 224], [16, 224], [16, 225], [17, 225], [17, 226], [16, 226], [16, 228], [16, 227], [15, 227], [14, 227], [14, 228]]}, "center": {"155-258": [15, 226]}}, -{"id": 1292, "name": "Niko from oneshot", "description": "The main character Niko from the game Oneshot\n\nOneShot is a surreal top down Puzzle/Adventure game with unique gameplay capabilities. You are to guide a child through a mysterious world on a mission to restore its long-dead sun. The world knows you exist.", "links": {"website": ["https://store.steampowered.com/app/420530/OneShot/"], "subreddit": ["oneshot"], "discord": ["oneshot"]}, "path": {"127-258": [[-650, -579], [-663, -579], [-663, -609], [-640, -609], [-640, -579]]}, "center": {"127-258": [-651, -594]}}, -{"id": 1293, "name": "Croatian Independence Day", "description": "Independence Day is a memorial day in Croatia, marked yearly on 25 June that celebrates the decision of the Croatian Parliament to declare the independence of Croatia from the SFR Yugoslavia. From 2002 to 2019, the day was celebrated as a public holiday on October 8th; as of 2020 it is not considered a public holiday.", "links": {"website": ["https://en.wikipedia.org/wiki/Independence_Day_(Croatia)"]}, "path": {"155-258": [[341, -148], [395, -148], [395, -143], [379, -143], [379, -148], [361, -148], [361, -143], [341, -143]]}, "center": {"155-258": [359, -145]}}, -{"id": 1294, "name": "Reved", "description": "The logo of the German streamer abd YouTuber Reved (Antonia Staab).", "links": {"website": ["https://www.twitch.tv/revedtv"], "subreddit": ["reved"], "discord": ["reved"]}, "path": {"158-258": [[16, 573], [44, 573], [44, 586], [16, 586], [16, 574]]}, "center": {"158-258": [30, 580]}}, -{"id": 1296, "name": "GermanLetsPlay(GLP)", "description": "GermanLetsPlay or in short GLP is a big German YouTuber who is playing different games on his channel, like Minecraft or Raft.", "links": {"website": ["https://www.youtube.com/@GermanLetsPlay/videos"]}, "path": {"155-258": [[-838, 404], [-838, 428], [-771, 428], [-771, 404]]}, "center": {"155-258": [-804, 416]}}, -{"id": 1298, "name": "Die Südflagge", "description": "The southernflag community grew out of hivemind and was subsequently claimed by a reddit created on 07/21/2023 called PlaceSuedflagge. This has won over more and more users through its created writing.", "links": {"subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"153-258": [[-900, -80], [-821, -80], [-821, -74], [-900, -74]]}, "center": {"153-258": [-860, -77]}}, -{"id": 1299, "name": "Leinfors Memorial", "description": "Jason \"Leinfors\" Parker was part of the Quality Assurance team at Re-Logic, developers of Terraria. Prior to this he was a beta tester and moderator of the Terraria Community Forums. He also branched out into low-level programming during the development of the 1.4.0.1 update. He passed away in February 2023. This artwork was created by the Terraria Community in honor of him. His in-game avatar can be seen on the left.", "links": {"website": ["https://terraria.wiki.gg/wiki/Re-Logic#Leinfors", "https://forums.terraria.org/index.php"], "subreddit": ["terraria"], "discord": ["terraria"]}, "path": {"110-258": [[647, -47], [704, -47], [704, -23], [647, -23]]}, "center": {"110-258": [676, -35]}}, -{"id": 1300, "name": "r/rentnerzeigenaufdinge", "description": "A subreddit (literally translated as \"Retirees pointing at things\") showing old people, usually retirees, pointing at things in news articles.", "links": {"subreddit": ["rentnerzeigenaufdinge"]}, "path": {"198-258": [[-1500, -449], [-1372, -449], [-1372, -441], [-1500, -440]]}, "center": {"198-258": [-1495, -444]}}, +{"id": 1285, "name": "Metallica", "description": "Metallica is a legendary American heavy metal band formed in 1981. Comprising James Hetfield, Lars Ulrich, Kirk Hammett, and Robert Trujillo, they are pioneers of thrash metal. Their influential career includes iconic albums like \"Master of Puppets\" and the self-titled \"Black Album.\" Metallica's music features powerful riffs, emotional lyrics, and a blend of mainstream and aggressive sounds. With a massive global fanbase, they remain one of the most successful and enduring bands in heavy metal history. Below the logo is an homage to their late bass player, Cliff Burton, who was killed in a tour bus accident in 1986.", "links": {"subreddit": ["Metallica"]}, "path": {"123-252, T": [[-964, -231], [-964, -232], [-950, -260], [-954, -260], [-954, -261], [-948, -272], [-939, -272], [-939, -265], [-938, -265], [-938, -264], [-893, -264], [-893, -265], [-892, -265], [-892, -273], [-885, -273], [-885, -268], [-884, -268], [-884, -266], [-883, -266], [-883, -265], [-878, -265], [-878, -263], [-879, -263], [-879, -254], [-878, -254], [-878, -252], [-877, -252], [-877, -251], [-876, -251], [-876, -249], [-875, -249], [-882, -249], [-882, -250], [-902, -250], [-902, -251], [-903, -251], [-903, -252], [-904, -252], [-904, -253], [-925, -253], [-925, -252], [-926, -252], [-926, -251], [-927, -251], [-927, -250], [-942, -250], [-942, -247], [-946, -247], [-946, -246], [-948, -246], [-948, -245], [-949, -245], [-949, -244], [-950, -244], [-950, -242], [-954, -242], [-954, -241], [-955, -241], [-955, -240], [-956, -240], [-956, -237], [-958, -237], [-959, -237], [-959, -236], [-960, -236], [-960, -235], [-961, -235], [-961, -234], [-962, -234], [-962, -233]]}, "center": {"123-252, T": [-888, -258]}}, +{"id": 1287, "name": "TU Dortmund + TU München", "description": "A cooperation between the technical universities of Dortmund and Munich as well as the TUM mascot - a penguin (what harm could he do?)", "links": {"website": ["https://tum.de", "https://tu-dortmund.de"], "discord": ["tGev57T8"]}, "path": {"199-258, T": [[-334, -76], [-333, -57], [-206, -58], [-206, -76], [-223, -76], [-223, -58], [-286, -58], [-286, -75]]}, "center": {"199-258, T": [-324, -66]}}, +{"id": 1288, "name": "Sora (Super Danganronpa Another 2)", "description": "The protagonist of the Korean Danganronpa Fan Game \"Super Danganronpa Another 2.\" by LINUJ. She lacks any memories, the only thing she remembers is the Kanji \"空\" and chose to adopt it as her name", "links": {"subreddit": ["DanganronpaAnother"]}, "path": {"154-258, T": [[222, 7], [227, 34], [236, 35], [241, 26], [238, 10], [235, 8]]}, "center": {"154-258, T": [233, 25]}}, +{"id": 1289, "name": "DougDoug", "description": "The two bell peppers of DougDoug: DougDoug and WaluigiDoug.", "links": {"website": ["https://www.dougdoug.com", "https://www.youtube.com/channel/UClyGlKOhDUooPJFy4v_mqPg", "https://www.twitch.tv/DougDoug"], "subreddit": ["DougDougOnReddit", "DougDougAfterStream", "DougDougW"], "discord": ["763mpbqxNq"]}, "path": {"155-258, T": [[100, 264], [119, 264], [119, 274], [100, 274]]}, "center": {"155-258, T": [110, 269]}}, +{"id": 1290, "name": "Żabka convenience store", "description": "Żabka (\"little frog\") is a popular chain of convenience stores in Poland.", "links": {"website": ["https://en.wikipedia.org/wiki/%C5%BBabka_(convenience_store)"], "subreddit": ["Polska", "poland"], "discord": ["39J5zwpfha"]}, "path": {"155-258, T": [[705, -112], [756, -112], [756, -88], [705, -88]]}, "center": {"155-258, T": [731, -100]}}, +{"id": 1291, "name": "among us", "description": "sus", "links": {}, "path": {"155-258, T": [[14, 224], [16, 224], [16, 225], [17, 225], [17, 226], [16, 226], [16, 228], [16, 227], [15, 227], [14, 227], [14, 228]]}, "center": {"155-258, T": [15, 226]}}, +{"id": 1292, "name": "Niko from oneshot", "description": "The main character Niko from the game Oneshot\n\nOneShot is a surreal top down Puzzle/Adventure game with unique gameplay capabilities. You are to guide a child through a mysterious world on a mission to restore its long-dead sun. The world knows you exist.", "links": {"website": ["https://store.steampowered.com/app/420530/OneShot/"], "subreddit": ["oneshot"], "discord": ["oneshot"]}, "path": {"127-258, T": [[-650, -579], [-663, -579], [-663, -609], [-640, -609], [-640, -579]]}, "center": {"127-258, T": [-651, -594]}}, +{"id": 1293, "name": "Croatian Independence Day", "description": "Independence Day is a memorial day in Croatia, marked yearly on 25 June that celebrates the decision of the Croatian Parliament to declare the independence of Croatia from the SFR Yugoslavia. From 2002 to 2019, the day was celebrated as a public holiday on October 8th; as of 2020 it is not considered a public holiday.", "links": {"website": ["https://en.wikipedia.org/wiki/Independence_Day_(Croatia)"]}, "path": {"155-258, T": [[341, -148], [395, -148], [395, -143], [379, -143], [379, -148], [361, -148], [361, -143], [341, -143]]}, "center": {"155-258, T": [359, -145]}}, +{"id": 1294, "name": "Reved", "description": "The logo of the German streamer abd YouTuber Reved (Antonia Staab).", "links": {"website": ["https://www.twitch.tv/revedtv"], "subreddit": ["reved"], "discord": ["reved"]}, "path": {"158-258, T": [[16, 573], [44, 573], [44, 586], [16, 586], [16, 574]]}, "center": {"158-258, T": [30, 580]}}, +{"id": 1296, "name": "GermanLetsPlay(GLP)", "description": "GermanLetsPlay or in short GLP is a big German YouTuber who is playing different games on his channel, like Minecraft or Raft.", "links": {"website": ["https://www.youtube.com/@GermanLetsPlay/videos"]}, "path": {"155-258, T": [[-838, 404], [-838, 428], [-771, 428], [-771, 404]]}, "center": {"155-258, T": [-804, 416]}}, +{"id": 1298, "name": "Die Südflagge", "description": "The southernflag community grew out of hivemind and was subsequently claimed by a reddit created on 07/21/2023 called PlaceSuedflagge. This has won over more and more users through its created writing.", "links": {"subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"153-258, T": [[-900, -80], [-821, -80], [-821, -74], [-900, -74]]}, "center": {"153-258, T": [-860, -77]}}, +{"id": 1299, "name": "Leinfors Memorial", "description": "Jason \"Leinfors\" Parker was part of the Quality Assurance team at Re-Logic, developers of Terraria. Prior to this he was a beta tester and moderator of the Terraria Community Forums. He also branched out into low-level programming during the development of the 1.4.0.1 update. He passed away in February 2023. This artwork was created by the Terraria Community in honor of him. His in-game avatar can be seen on the left.", "links": {"website": ["https://terraria.wiki.gg/wiki/Re-Logic#Leinfors", "https://forums.terraria.org/index.php"], "subreddit": ["terraria"], "discord": ["terraria"]}, "path": {"110-258, T": [[647, -47], [704, -47], [704, -23], [647, -23]]}, "center": {"110-258, T": [676, -35]}}, +{"id": 1300, "name": "r/rentnerzeigenaufdinge", "description": "A subreddit (literally translated as \"Retirees pointing at things\") showing old people, usually retirees, pointing at things in news articles.", "links": {"subreddit": ["rentnerzeigenaufdinge"]}, "path": {"198-258, T": [[-1500, -449], [-1372, -449], [-1372, -441], [-1500, -440]]}, "center": {"198-258, T": [-1495, -444]}}, {"id": 1301, "name": "Edgar", "description": "Edgar is a fictional pig from Minecraft made famous by the German YouTuber Paluten. \n\nThe character comes from the Minecraft Galaxy project and has accompanied Paluten through many of his projects such as Minecraft Freedom and has been an integral part of his channel ever since.", "links": {"website": ["https://www.youtube.com/watch?v=_dB5KUi9Bts", "https://www.youtube.com/@Paluten"]}, "path": {"128-198": [[-851, 354], [-850, 371], [-846, 376], [-837, 378], [-838, 385], [-833, 393], [-833, 401], [-827, 402], [-825, 402], [-824, 395], [-821, 395], [-820, 400], [-820, 403], [-813, 403], [-813, 400], [-812, 398], [-810, 398], [-810, 395], [-807, 393], [-803, 393], [-802, 400], [-799, 402], [-795, 401], [-794, 394], [-786, 386], [-785, 372], [-795, 360], [-795, 357], [-793, 357], [-792, 356], [-791, 351], [-794, 348], [-797, 349], [-795, 352], [-801, 357], [-813, 357], [-815, 349], [-818, 345], [-823, 345], [-826, 348], [-833, 345], [-847, 345], [-853, 349], [-853, 351]]}, "center": {"128-198": [-817, 376]}}, -{"id": 1303, "name": "Kagamine Rin", "description": "Kagamine Rin (Japanese: 鏡音リン), known for being with her twin Kagamine Len (Japanese: 鏡音レン), officially codenamed CV02, is a Vocaloid software voicebank developed by Crypton Future Media.", "links": {"website": ["https://en.wikipedia.org/wiki/Kagamine_Rin/Len"], "subreddit": ["kagamine"]}, "path": {"155-258": [[203, 177], [213, 183], [204, 185], [203, 182]]}, "center": {"155-258": [206, 182]}}, -{"id": 1304, "name": "Kottbrüder", "description": "The \"Kottbrüder\" are a german youtuber duo consisitng of the youtuber \"Paluten\" and \"GermanLetsPlay\". They also have a podcast.", "links": {"website": ["https://kottbruder.de/"]}, "path": {"143-258": [[-867, 348], [-854, 348], [-854, 344], [-770, 344], [-770, 428], [-867, 428], [-867, 361]]}, "center": {"143-258": [-818, 386]}}, -{"id": 1305, "name": "Bonjwa", "description": "Bonjwa is a group of German streamers, Youtubers, and podcasters. The picture shows a recent meme of Matteo (1.5 meters wide) in the centre and the logo on the right-hand side. Also, TouristHistories is depicted just alongside the logo sitting on a chair. She is also a streamer and was shortly part of the Bonjwa team. On the left-hand side, there is Peepo, the dog of Leon (redpanda). Between Matteo and Peepo is Marius, or Fischersnet, who streams regularly with Bonjwa and was part of the original meme.", "links": {"website": ["http://www.twitch.tv/bonjwa", "https://www.bonjwa.de/", "http://www.youtube.com/user/BonjwaDE", "https://twitter.com/BonjwaDE"]}, "path": {"155-258": [[-311, -367], [-262, -367], [-262, -374], [-260, -382], [-251, -385], [-241, -384], [-234, -379], [-233, -374], [-234, -369], [-178, -368], [-178, -346], [-178, -331], [-241, -331], [-276, -331], [-277, -341], [-287, -344], [-311, -344]]}, "center": {"155-258": [-246, -352]}}, -{"id": 1306, "name": "HeyStan", "description": "HeyStan is a german Twitch Streamer wich was on the search for asyl almost the whole duration of r/place 2023. Luckily he found a small and save spot where his signiture, a Tomato with the letter S, could rest.", "links": {"website": ["https://www.twitch.tv/heystan"]}, "path": {"147-258": [[-670, -352], [-670, -359], [-671, -359], [-671, -360], [-672, -360], [-672, -362], [-671, -362], [-671, -363], [-671, -364], [-672, -364], [-672, -365], [-677, -365], [-676, -363], [-676, -361], [-677, -361], [-677, -360], [-678, -360], [-678, -359], [-679, -359], [-679, -358], [-680, -358], [-680, -354], [-679, -354], [-679, -353], [-678, -353], [-678, -351], [-672, -351], [-672, -352]]}, "center": {"147-258": [-675, -356]}}, -{"id": 1307, "name": "Gigachad Destiny", "description": "The Streamer Destiny drawn in the style of Gigachad, with his catchphrase \"Gotcha. Anything else?\" he uses at the most inappropriate times.\nE.g.: \nA: \"My dad died in a missile strike\". Destiny: \"Gotcha. Anything else?\"", "links": {"website": ["https://www.destiny.gg/bigscreen"], "subreddit": ["destiny"]}, "path": {"155-258": [[693, 500], [693, 666], [792, 666], [792, 500]]}, "center": {"155-258": [743, 583]}}, -{"id": 1308, "name": "Komasan & Komajiro", "description": "Komasan and Komajiro from the Yo kai Watch franchise.", "links": {}, "path": {"155-258": [[332, 63], [328, 58], [333, 55], [352, 55], [351, 64], [345, 67], [337, 71], [336, 71], [334, 70], [333, 69], [332, 67], [330, 68], [329, 68], [328, 60], [328, 58], [330, 57], [331, 56], [332, 55]]}, "center": {"155-258": [339, 62]}}, -{"id": 1309, "name": "TU Dortmund", "description": "The Technical University of Dortmund (TU Dortmund), is a University based in Dortmund, Germany\nCreated in collaboration with the Technical University of Munich (TUM)", "links": {"website": ["https://www.tu-dortmund.de/"], "subreddit": ["tudortmund"]}, "path": {"155-258": [[-331, -76], [-312, -76], [-312, -57], [-331, -57]]}, "center": {"155-258": [-321, -66]}}, -{"id": 1310, "name": "Mate", "description": "Mate or maté, is a traditional South American caffeine-rich infused herbal drink. It is made by soaking dried leaves of the yerba mate in hot water and is traditionally served with a metal straw (bombilla) in a container typically made from a calabash gourd (also called the mate), but also in some areas made from a cattle horn (guampa).", "links": {"subreddit": ["uruguay"]}, "path": {"70-258": [[254, 145], [258, 149], [256, 143], [259, 147], [266, 149], [267, 156], [262, 158], [257, 155], [257, 149]]}, "center": {"70-258": [262, 153]}}, -{"id": 1311, "name": "Austrian Ori", "description": "Main character from the Ori game series. The team nicknamed this Ori AusOri!", "links": {"website": ["https://www.orithegame.com/"], "subreddit": ["OriAndTheBlindForest"], "discord": ["YjtHtZexbN"]}, "path": {"155-258": [[14, -28], [13, -29], [14, -30], [17, -33], [17, -46], [13, -44], [10, -43], [5, -43], [5, -39], [-1, -46], [-3, -46], [-3, -39], [-2, -37], [-1, -35], [2, -32], [4, -30], [6, -30], [5, -28], [15, -28]]}, "center": {"155-258": [10, -36]}}, -{"id": 1312, "name": "Turtle Love", "description": "This small picture was created by the German Discord Wolfsdelfinbären/Rehpotter. they are also the initiators of the turtle chain in the upper german flag.", "links": {"subreddit": ["TurtleloveDE"]}, "path": {"115-258": [[-968, 51], [-970, 51], [-970, 58], [-946, 58], [-946, 53], [-941, 53], [-941, 49], [-940, 49], [-940, 41], [-946, 41], [-946, 42], [-947, 43], [-948, 44], [-955, 44], [-956, 43], [-958, 43], [-959, 44], [-960, 45], [-960, 46], [-961, 47], [-962, 48], [-963, 49], [-964, 50], [-970, 50]]}, "center": {"115-258": [-954, 51]}}, -{"id": 1313, "name": "The Four Emperors", "description": "The Four Emperors (otherwise known as the Yonko) originate from Eiichiro Oda's famous manga One Piece. They are recognized as the four most powerful pirates in the world. The current Four Emperors, that of which are displayed are (from left to right) \"Blackbeard\" Marshall D. Teach, \"Strawhat\" Monkey D. Luffy, Buggy the Clown and \"Red Hair\" Shanks.", "links": {"website": ["https://onepiece.fandom.com/wiki/Four_Emperors"], "subreddit": ["onepiece"]}, "path": {"155-258": [[-361, -777], [-362, -643], [-425, -643], [-425, -639], [-622, -636], [-623, -755], [-535, -755], [-535, -747], [-449, -746], [-449, -745], [-425, -745], [-425, -781], [-419, -782], [-418, -777], [-360, -777]]}, "center": {"155-258": [-563, -696]}}, -{"id": 1314, "name": "Sans (Undertale)", "description": "Sans is a fictional character created by Toby Fox for the 2015 role-playing video game Undertale. Initially appearing as a friendly NPC with an easy-going and laid-back personality, he becomes the de facto final boss if the player chooses to complete the \"genocide route\" and go out of their way to destroy the game's race of monsters. His name is based on the Comic Sans font, which is used for most of his in-game dialogue. Critics praised the character for his dialogue and boss fight, which is considered to be one of the most difficult in the game. His popularity with fans inspired several user-created mods and other types of projects.", "links": {"website": ["https://en.wikipedia.org/wiki/Sans_(Undertale)"]}, "path": {"154-258": [[-405, -779], [-404, -785], [-409, -790], [-401, -808], [-390, -804], [-386, -787], [-388, -778], [-398, -778]]}, "center": {"154-258": [-397, -792]}}, -{"id": 1315, "name": "Luxembourg Flag", "description": "The flag of the country Luxembourg located in central Europe.\n\nMade by the r/placeluxembourg community and in collaboration with Luxembourgish Streamer byTobi.", "links": {"website": ["https://www.twitch.tv/bytobi"], "subreddit": ["placeluxembourg"]}, "path": {"157-258": [[640, -648], [640, -641], [681, -641], [681, -648], [657, -648], [648, -647], [640, -610], [640, -612], [681, -611], [681, -648], [640, -647], [641, -611], [664, -625], [678, -630], [676, -630], [681, -648], [680, -648], [636, -648], [636, -630], [640, -630], [641, -629], [640, -610], [681, -610]]}, "center": {"157-258": [652, -627]}}, -{"id": 1316, "name": "Midjourney", "description": "Previously a simple sailing ship design until towards the last moments of the r/place event. \n\nThe ship was later replaced with the logo (which happens to also be a sailing ship ship) of the independent research lab Midjourney, which focuses primarily on generative artificial intelligence. Namely image generation, and could be considered a competitor to the likes of OpenAI's Dall-E and Stability AI's Stable Diffusion.", "links": {"website": ["https://en.wikipedia.org/wiki/Sailing_ship", "https://en.wikipedia.org/wiki/Midjourney", "https://www.midjourney.com/"], "discord": ["midjourney"]}, "path": {"155-258": [[-17, 217], [-12, 222], [1, 222], [9, 214], [3, 214], [3, 210], [2, 209], [2, 208], [1, 207], [1, 206], [0, 205], [-5, 200], [-9, 200], [-13, 196], [-15, 196], [-15, 199], [-13, 203], [-13, 208], [-16, 214], [-16, 216], [-17, 216]]}, "center": {"155-258": [-6, 213]}}, -{"id": 1317, "name": "Der Rahmen / De Randlijst", "description": "A big canvas for artworks. Made by the r/placeDE and r/placeNL communities.\n\nIf you have artwork to place here, we are still looking for more! Follow the website link.", "links": {"website": ["https://www.reddit.com/r/place/comments/157sjo8/placede_and_placenl_searching_for_classical/"], "subreddit": ["placeDE", "placeNL"], "discord": ["placeDE", "placeNL"]}, "path": {"155-258": [[-887, 626], [-887, 635], [-883, 639], [-883, 640], [-886, 643], [-886, 649], [-883, 652], [-884, 738], [-887, 741], [-887, 747], [-884, 751], [-884, 773], [-887, 777], [-897, 783], [-897, 801], [-884, 810], [-884, 833], [-887, 835], [-887, 842], [-884, 844], [-884, 956], [-864, 956], [-861, 953], [-776, 953], [-772, 957], [-766, 957], [-762, 953], [-740, 953], [-731, 967], [-714, 967], [-703, 953], [-681, 953], [-677, 957], [-671, 957], [-668, 954], [-581, 954], [-578, 957], [-556, 957], [-556, 935], [-560, 931], [-560, 845], [-557, 842], [-557, 836], [-560, 833], [-560, 811], [-547, 801], [-547, 783], [-560, 774], [-561, 750], [-557, 747], [-557, 741], [-560, 738], [-560, 653], [-557, 649], [-557, 636], [-556, 635], [-556, 626], [-565, 626], [-566, 627], [-579, 627], [-582, 630], [-668, 630], [-671, 627], [-676, 627], [-679, 630], [-703, 630], [-708, 627], [-713, 617], [-730, 617], [-736, 627], [-740, 630], [-763, 630], [-766, 627], [-772, 627], [-775, 630], [-861, 630], [-864, 627], [-870, 627], [-872, 629], [-872, 630], [-872, 641], [-572, 642], [-572, 941], [-871, 941], [-872, 630], [-874, 630], [-878, 626]]}, "center": {"155-258": [-724, 954]}}, -{"id": 1319, "name": "Glagolitic script", "description": "The Glagolitic script is the oldest known Slavic alphabet. It is generally agreed to have been created in the 9th century by Saint Cyril, a monk from Thessalonica.", "links": {"website": ["https://en.wikipedia.org/wiki/Glagolitic_script"]}, "path": {"155-258": [[344, -154], [394, -154], [394, -148], [344, -148]]}, "center": {"155-258": [369, -151]}}, -{"id": 1320, "name": "The Nürburgring", "description": "The Nürburgring is a motorsport race track named after the Nürburg on the territory of the municipality of Adenau (district of Ahrweiler, Rhineland-Palatinate) in the Eifel and was inaugurated on June 18, 1927. The original total to about 28 kilometers long \"mountain race and test road\" was in its original form until 1982 in operation. The Nürburgring is the longest permanent race track in the world.", "links": {"website": ["https://de.wikipedia.org/wiki/Nürburgring", "https://nuerburgring.de"], "subreddit": ["nurburgring"]}, "path": {"152-258": [[148, -979], [198, -980], [197, -967], [139, -968], [115, -947], [103, -947], [112, -966], [106, -985], [116, -1000], [147, -999], [150, -996], [166, -997], [165, -986], [150, -979], [148, -980], [153, -980]]}, "center": {"152-258": [126, -981]}}, -{"id": 1321, "name": "Lion", "description": "One of the national symbols of Bulgaria, part of the coat of arms of Bulgaria.", "links": {"website": ["https://en.wikipedia.org/wiki/National_symbols_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"155-258": [[-368, -4], [-368, 13], [-367, 28], [-367, 35], [-367, 41], [-359, 41], [-356, 38], [-353, 35], [-350, 33], [-346, 30], [-346, 27], [-345, 24], [-343, 21], [-342, 19], [-344, 17], [-345, 15], [-344, 11], [-344, 9], [-346, 8], [-346, 7], [-347, 6], [-348, 5], [-349, 4], [-349, 3], [-351, 1], [-353, 1], [-353, -1], [-354, -3], [-355, -4], [-357, -5], [-358, -6], [-362, -6], [-364, -5], [-366, -4], [-367, -3]]}, "center": {"155-258": [-356, 19]}}, -{"id": 1322, "name": "Nuclear Ghandi", "description": "Nuclear Gandhi is a video game hoax purporting the existence of a software bug in the 1991 strategy video game Civilization that would eventually force the pacifist leader Mahatma Gandhi to become extremely aggressive and make heavy use of nuclear weapons.", "links": {"website": ["https://en.wikipedia.org/wiki/Nuclear_Gandhi"]}, "path": {"146-258": [[689, -193], [689, -167], [673, -167], [673, -155], [703, -154], [703, -160], [703, -154], [756, -154], [756, -175], [744, -193], [690, -193]]}, "center": {"146-258": [732, -173]}}, -{"id": 1323, "name": "Lauras Stern", "description": "Lauras Stern (Laura's Star) is a German book series created by Klaus Baumgart. It follows about five-year-old Laura who finds a \"wounded star\". She takes the star in and experiences many adventures with him.\n\nThe book series was adapted as an animated series in 2002 and as a feature film in 2004 the film, the later of which received the German Film Award for Best Children's and Youth Film.\n\nThe franchise has seen several more films since, including a live-action adaptation in 2021.", "links": {"website": ["https://de.wikipedia.org/wiki/Lauras_Stern"], "subreddit": ["placeDE"]}, "path": {"154-258": [[712, -912], [693, -912], [693, -921], [691, -923], [691, -924], [689, -926], [689, -932], [690, -933], [690, -934], [692, -936], [693, -936], [694, -937], [694, -939], [695, -940], [695, -942], [696, -943], [696, -944], [697, -945], [697, -947], [698, -948], [698, -949], [699, -950], [699, -953], [700, -954], [700, -955], [702, -957], [708, -957], [709, -956], [711, -956], [715, -952], [717, -954], [717, -955], [718, -956], [722, -956], [724, -958], [724, -960], [725, -961], [725, -963], [726, -964], [727, -964], [728, -963], [728, -962], [730, -960], [730, -959], [731, -958], [732, -958], [733, -957], [737, -957], [737, -955], [734, -952], [734, -950], [733, -949], [734, -944], [733, -943], [732, -943], [730, -945], [729, -945], [728, -946], [727, -946], [723, -942], [722, -943], [722, -944], [721, -945], [721, -950], [717, -954], [715, -952], [715, -948], [716, -947], [716, -943], [713, -940], [713, -938], [714, -937], [714, -936], [715, -935], [716, -935], [717, -936], [719, -936], [720, -935], [721, -936], [723, -938], [724, -937], [724, -936], [726, -936], [727, -935], [726, -934], [723, -931], [722, -931], [720, -929], [721, -928], [721, -927], [720, -926], [710, -926], [711, -926], [711, -922], [712, -921], [712, -920], [713, -919], [713, -918], [712, -917]]}, "center": {"154-258": [700, -929]}}, -{"id": 1324, "name": "Flag of India", "description": "", "links": {}, "path": {"140-258": [[672, -193], [887, -193], [887, -154], [672, -154]]}, "center": {"140-258": [780, -173]}}, -{"id": 1325, "name": "TGV", "description": "The TGV is France's intercity high-speed rail service, operated by SNCF.", "links": {}, "path": {"89-258": [[-590, -371], [-586, -377], [-577, -383], [-563, -387], [-458, -387], [-428, -387], [-417, -384], [-405, -378], [-400, -370], [-589, -371]]}, "center": {"89-258": [-437, -379]}}, -{"id": 1326, "name": "Kurisu Makise (牧瀬 紅莉栖)", "description": "The female protagonist of Steins;Gate, a visual novel later adapted into anime. Kurisu is a member of the Brain Science Institute at Viktor Chondria University and the Future Gadget Lab. She is a brain scientist (neuroscientist). She's only 18, yet she's already published a thesis. She is a brillant genius and a loyal friend.", "links": {"website": ["https://store.steampowered.com/app/412830/STEINSGATE/", "https://en.wikipedia.org/wiki/Steins;Gate", "https://myanimelist.net/anime/9253/Steins_Gate"], "subreddit": ["steinsplace"], "discord": ["elpsykongroo"]}, "path": {"115-258": [[-694, 338], [-699, 338], [-702, 340], [-703, 343], [-704, 344], [-704, 356], [-705, 358], [-705, 364], [-691, 364], [-688, 361], [-688, 359], [-689, 356], [-691, 354], [-693, 354], [-693, 348], [-692, 348], [-690, 347], [-690, 343], [-692, 340]]}, "center": {"115-258": [-698, 358]}}, -{"id": 1327, "name": "Swiss Army Knife", "description": "Swiss Army knife", "links": {"website": ["https://en.wikipedia.org/wiki/Swiss_Army_knife"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"102-258": [[-539, 235], [-519, 235], [-520, 225], [-524, 224], [-524, 225], [-531, 220], [-532, 221], [-525, 229], [-537, 229], [-539, 229]]}, "center": {"102-258": [-523, 231]}}, -{"id": 1328, "name": "Geometry Dash 10 Years Anniversary", "description": "Geometry Dash is a platforming game nearing its 10th anniversary, occurring on the 13th of August 2023", "links": {"subreddit": ["geometrydash"], "discord": ["hZj5evMRZr"]}, "path": {"155-258": [[-466, -873], [-466, -896], [-460, -900], [-415, -899], [-413, -902], [-410, -900], [-402, -897], [-402, -870], [-407, -867], [-461, -867]]}, "center": {"155-258": [-449, -883]}}, -{"id": 1329, "name": "Blueyes", "description": "Musical Artistic name of the portuguese youtuber and streamer Wuant", "links": {"website": ["https://soundcloud.com/blueyes-sc", "https://www.youtube.com/c/blueyesworld"]}, "path": {"111-129": [[601, 413], [601, 465], [645, 465], [645, 413]], "144-258": [[601, 414], [601, 465], [645, 465], [645, 414]]}, "center": {"111-129": [623, 439], "144-258": [623, 440]}}, -{"id": 1331, "name": "Minecraft Creeper", "description": "Creepers are the only mobs in minecraft that explode themselves and everything around them. Unlike zombies or skeletons that can survive in the sun, but tend to be in poorly lit areas. Creepers provide some useful materials when killed by players or certain Hostile Mobs.", "links": {}, "path": {"136-258": [[537, -911], [537, -902], [546, -902], [546, -911], [542, -911], [537, -911], [541, -903], [544, -910]]}, "center": {"136-258": [544, -904]}}, +{"id": 1303, "name": "Kagamine Rin", "description": "Kagamine Rin (Japanese: 鏡音リン), known for being with her twin Kagamine Len (Japanese: 鏡音レン), officially codenamed CV02, is a Vocaloid software voicebank developed by Crypton Future Media.", "links": {"website": ["https://en.wikipedia.org/wiki/Kagamine_Rin/Len"], "subreddit": ["kagamine"]}, "path": {"155-258, T": [[203, 177], [213, 183], [204, 185], [203, 182]]}, "center": {"155-258, T": [206, 182]}}, +{"id": 1304, "name": "Kottbrüder", "description": "The \"Kottbrüder\" are a german youtuber duo consisitng of the youtuber \"Paluten\" and \"GermanLetsPlay\". They also have a podcast.", "links": {"website": ["https://kottbruder.de/"]}, "path": {"143-258, T": [[-867, 348], [-854, 348], [-854, 344], [-770, 344], [-770, 428], [-867, 428], [-867, 361]]}, "center": {"143-258, T": [-818, 386]}}, +{"id": 1305, "name": "Bonjwa", "description": "Bonjwa is a group of German streamers, Youtubers, and podcasters. The picture shows a recent meme of Matteo (1.5 meters wide) in the centre and the logo on the right-hand side. Also, TouristHistories is depicted just alongside the logo sitting on a chair. She is also a streamer and was shortly part of the Bonjwa team. On the left-hand side, there is Peepo, the dog of Leon (redpanda). Between Matteo and Peepo is Marius, or Fischersnet, who streams regularly with Bonjwa and was part of the original meme.", "links": {"website": ["http://www.twitch.tv/bonjwa", "https://www.bonjwa.de/", "http://www.youtube.com/user/BonjwaDE", "https://twitter.com/BonjwaDE"]}, "path": {"155-258, T": [[-311, -367], [-262, -367], [-262, -374], [-260, -382], [-251, -385], [-241, -384], [-234, -379], [-233, -374], [-234, -369], [-178, -368], [-178, -346], [-178, -331], [-241, -331], [-276, -331], [-277, -341], [-287, -344], [-311, -344]]}, "center": {"155-258, T": [-246, -352]}}, +{"id": 1306, "name": "HeyStan", "description": "HeyStan is a german Twitch Streamer wich was on the search for asyl almost the whole duration of r/place 2023. Luckily he found a small and save spot where his signiture, a Tomato with the letter S, could rest.", "links": {"website": ["https://www.twitch.tv/heystan"]}, "path": {"147-258, T": [[-670, -352], [-670, -359], [-671, -359], [-671, -360], [-672, -360], [-672, -362], [-671, -362], [-671, -363], [-671, -364], [-672, -364], [-672, -365], [-677, -365], [-676, -363], [-676, -361], [-677, -361], [-677, -360], [-678, -360], [-678, -359], [-679, -359], [-679, -358], [-680, -358], [-680, -354], [-679, -354], [-679, -353], [-678, -353], [-678, -351], [-672, -351], [-672, -352]]}, "center": {"147-258, T": [-675, -356]}}, +{"id": 1307, "name": "Gigachad Destiny", "description": "The Streamer Destiny drawn in the style of Gigachad, with his catchphrase \"Gotcha. Anything else?\" he uses at the most inappropriate times.\nE.g.: \nA: \"My dad died in a missile strike\". Destiny: \"Gotcha. Anything else?\"", "links": {"website": ["https://www.destiny.gg/bigscreen"], "subreddit": ["destiny"]}, "path": {"155-258, T": [[693, 500], [693, 666], [792, 666], [792, 500]]}, "center": {"155-258, T": [743, 583]}}, +{"id": 1308, "name": "Komasan & Komajiro", "description": "Komasan and Komajiro from the Yo kai Watch franchise.", "links": {}, "path": {"155-258, T": [[332, 63], [328, 58], [333, 55], [352, 55], [351, 64], [345, 67], [337, 71], [336, 71], [334, 70], [333, 69], [332, 67], [330, 68], [329, 68], [328, 60], [328, 58], [330, 57], [331, 56], [332, 55]]}, "center": {"155-258, T": [339, 62]}}, +{"id": 1309, "name": "TU Dortmund", "description": "The Technical University of Dortmund (TU Dortmund), is a University based in Dortmund, Germany\nCreated in collaboration with the Technical University of Munich (TUM)", "links": {"website": ["https://www.tu-dortmund.de/"], "subreddit": ["tudortmund"]}, "path": {"155-258, T": [[-331, -76], [-312, -76], [-312, -57], [-331, -57]]}, "center": {"155-258, T": [-321, -66]}}, +{"id": 1310, "name": "Mate", "description": "Mate or maté, is a traditional South American caffeine-rich infused herbal drink. It is made by soaking dried leaves of the yerba mate in hot water and is traditionally served with a metal straw (bombilla) in a container typically made from a calabash gourd (also called the mate), but also in some areas made from a cattle horn (guampa).", "links": {"subreddit": ["uruguay"]}, "path": {"70-258, T": [[254, 145], [258, 149], [256, 143], [259, 147], [266, 149], [267, 156], [262, 158], [257, 155], [257, 149]]}, "center": {"70-258, T": [262, 153]}}, +{"id": 1311, "name": "Austrian Ori", "description": "Main character from the Ori game series. The team nicknamed this Ori AusOri!", "links": {"website": ["https://www.orithegame.com/"], "subreddit": ["OriAndTheBlindForest"], "discord": ["YjtHtZexbN"]}, "path": {"155-258, T": [[14, -28], [13, -29], [14, -30], [17, -33], [17, -46], [13, -44], [10, -43], [5, -43], [5, -39], [-1, -46], [-3, -46], [-3, -39], [-2, -37], [-1, -35], [2, -32], [4, -30], [6, -30], [5, -28], [15, -28]]}, "center": {"155-258, T": [10, -36]}}, +{"id": 1312, "name": "Turtle Love", "description": "This small picture was created by the German Discord Wolfsdelfinbären/Rehpotter. they are also the initiators of the turtle chain in the upper german flag.", "links": {"subreddit": ["TurtleloveDE"]}, "path": {"115-258, T": [[-968, 51], [-970, 51], [-970, 58], [-946, 58], [-946, 53], [-941, 53], [-941, 49], [-940, 49], [-940, 41], [-946, 41], [-946, 42], [-947, 43], [-948, 44], [-955, 44], [-956, 43], [-958, 43], [-959, 44], [-960, 45], [-960, 46], [-961, 47], [-962, 48], [-963, 49], [-964, 50], [-970, 50]]}, "center": {"115-258, T": [-954, 51]}}, +{"id": 1313, "name": "The Four Emperors", "description": "The Four Emperors (otherwise known as the Yonko) originate from Eiichiro Oda's famous manga One Piece. They are recognized as the four most powerful pirates in the world. The current Four Emperors, that of which are displayed are (from left to right) \"Blackbeard\" Marshall D. Teach, \"Strawhat\" Monkey D. Luffy, Buggy the Clown and \"Red Hair\" Shanks.", "links": {"website": ["https://onepiece.fandom.com/wiki/Four_Emperors"], "subreddit": ["onepiece"]}, "path": {"155-258, T": [[-361, -777], [-362, -643], [-425, -643], [-425, -639], [-622, -636], [-623, -755], [-535, -755], [-535, -747], [-449, -746], [-449, -745], [-425, -745], [-425, -781], [-419, -782], [-418, -777], [-360, -777]]}, "center": {"155-258, T": [-563, -696]}}, +{"id": 1314, "name": "Sans (Undertale)", "description": "Sans is a fictional character created by Toby Fox for the 2015 role-playing video game Undertale. Initially appearing as a friendly NPC with an easy-going and laid-back personality, he becomes the de facto final boss if the player chooses to complete the \"genocide route\" and go out of their way to destroy the game's race of monsters. His name is based on the Comic Sans font, which is used for most of his in-game dialogue. Critics praised the character for his dialogue and boss fight, which is considered to be one of the most difficult in the game. His popularity with fans inspired several user-created mods and other types of projects.", "links": {"website": ["https://en.wikipedia.org/wiki/Sans_(Undertale)"]}, "path": {"154-258, T": [[-405, -779], [-404, -785], [-409, -790], [-401, -808], [-390, -804], [-386, -787], [-388, -778], [-398, -778]]}, "center": {"154-258, T": [-397, -792]}}, +{"id": 1315, "name": "Luxembourg Flag", "description": "The flag of the country Luxembourg located in central Europe.\n\nMade by the r/placeluxembourg community and in collaboration with Luxembourgish Streamer byTobi.", "links": {"website": ["https://www.twitch.tv/bytobi"], "subreddit": ["placeluxembourg"]}, "path": {"157-258, T": [[640, -648], [640, -641], [681, -641], [681, -648], [657, -648], [648, -647], [640, -610], [640, -612], [681, -611], [681, -648], [640, -647], [641, -611], [664, -625], [678, -630], [676, -630], [681, -648], [680, -648], [636, -648], [636, -630], [640, -630], [641, -629], [640, -610], [681, -610]]}, "center": {"157-258, T": [652, -627]}}, +{"id": 1316, "name": "Midjourney", "description": "Previously a simple sailing ship design until towards the last moments of the r/place event. \n\nThe ship was later replaced with the logo (which happens to also be a sailing ship ship) of the independent research lab Midjourney, which focuses primarily on generative artificial intelligence. Namely image generation, and could be considered a competitor to the likes of OpenAI's Dall-E and Stability AI's Stable Diffusion.", "links": {"website": ["https://en.wikipedia.org/wiki/Sailing_ship", "https://en.wikipedia.org/wiki/Midjourney", "https://www.midjourney.com/"], "discord": ["midjourney"]}, "path": {"155-258, T": [[-17, 217], [-12, 222], [1, 222], [9, 214], [3, 214], [3, 210], [2, 209], [2, 208], [1, 207], [1, 206], [0, 205], [-5, 200], [-9, 200], [-13, 196], [-15, 196], [-15, 199], [-13, 203], [-13, 208], [-16, 214], [-16, 216], [-17, 216]]}, "center": {"155-258, T": [-6, 213]}}, +{"id": 1317, "name": "Der Rahmen / De Randlijst", "description": "A big canvas for artworks. Made by the r/placeDE and r/placeNL communities.\n\nIf you have artwork to place here, we are still looking for more! Follow the website link.", "links": {"website": ["https://www.reddit.com/r/place/comments/157sjo8/placede_and_placenl_searching_for_classical/"], "subreddit": ["placeDE", "placeNL"], "discord": ["placeDE", "placeNL"]}, "path": {"155-258, T": [[-887, 626], [-887, 635], [-883, 639], [-883, 640], [-886, 643], [-886, 649], [-883, 652], [-884, 738], [-887, 741], [-887, 747], [-884, 751], [-884, 773], [-887, 777], [-897, 783], [-897, 801], [-884, 810], [-884, 833], [-887, 835], [-887, 842], [-884, 844], [-884, 956], [-864, 956], [-861, 953], [-776, 953], [-772, 957], [-766, 957], [-762, 953], [-740, 953], [-731, 967], [-714, 967], [-703, 953], [-681, 953], [-677, 957], [-671, 957], [-668, 954], [-581, 954], [-578, 957], [-556, 957], [-556, 935], [-560, 931], [-560, 845], [-557, 842], [-557, 836], [-560, 833], [-560, 811], [-547, 801], [-547, 783], [-560, 774], [-561, 750], [-557, 747], [-557, 741], [-560, 738], [-560, 653], [-557, 649], [-557, 636], [-556, 635], [-556, 626], [-565, 626], [-566, 627], [-579, 627], [-582, 630], [-668, 630], [-671, 627], [-676, 627], [-679, 630], [-703, 630], [-708, 627], [-713, 617], [-730, 617], [-736, 627], [-740, 630], [-763, 630], [-766, 627], [-772, 627], [-775, 630], [-861, 630], [-864, 627], [-870, 627], [-872, 629], [-872, 630], [-872, 641], [-572, 642], [-572, 941], [-871, 941], [-872, 630], [-874, 630], [-878, 626]]}, "center": {"155-258, T": [-724, 954]}}, +{"id": 1319, "name": "Glagolitic script", "description": "The Glagolitic script is the oldest known Slavic alphabet. It is generally agreed to have been created in the 9th century by Saint Cyril, a monk from Thessalonica.", "links": {"website": ["https://en.wikipedia.org/wiki/Glagolitic_script"]}, "path": {"155-258, T": [[344, -154], [394, -154], [394, -148], [344, -148]]}, "center": {"155-258, T": [369, -151]}}, +{"id": 1320, "name": "The Nürburgring", "description": "The Nürburgring is a motorsport race track named after the Nürburg on the territory of the municipality of Adenau (district of Ahrweiler, Rhineland-Palatinate) in the Eifel and was inaugurated on June 18, 1927. The original total to about 28 kilometers long \"mountain race and test road\" was in its original form until 1982 in operation. The Nürburgring is the longest permanent race track in the world.", "links": {"website": ["https://de.wikipedia.org/wiki/Nürburgring", "https://nuerburgring.de"], "subreddit": ["nurburgring"]}, "path": {"152-258, T": [[148, -979], [198, -980], [197, -967], [139, -968], [115, -947], [103, -947], [112, -966], [106, -985], [116, -1000], [147, -999], [150, -996], [166, -997], [165, -986], [150, -979], [148, -980], [153, -980]]}, "center": {"152-258, T": [126, -981]}}, +{"id": 1321, "name": "Lion", "description": "One of the national symbols of Bulgaria, part of the coat of arms of Bulgaria.", "links": {"website": ["https://en.wikipedia.org/wiki/National_symbols_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"155-258, T": [[-368, -4], [-368, 13], [-367, 28], [-367, 35], [-367, 41], [-359, 41], [-356, 38], [-353, 35], [-350, 33], [-346, 30], [-346, 27], [-345, 24], [-343, 21], [-342, 19], [-344, 17], [-345, 15], [-344, 11], [-344, 9], [-346, 8], [-346, 7], [-347, 6], [-348, 5], [-349, 4], [-349, 3], [-351, 1], [-353, 1], [-353, -1], [-354, -3], [-355, -4], [-357, -5], [-358, -6], [-362, -6], [-364, -5], [-366, -4], [-367, -3]]}, "center": {"155-258, T": [-356, 19]}}, +{"id": 1322, "name": "Nuclear Ghandi", "description": "Nuclear Gandhi is a video game hoax purporting the existence of a software bug in the 1991 strategy video game Civilization that would eventually force the pacifist leader Mahatma Gandhi to become extremely aggressive and make heavy use of nuclear weapons.", "links": {"website": ["https://en.wikipedia.org/wiki/Nuclear_Gandhi"]}, "path": {"146-258, T": [[689, -193], [689, -167], [673, -167], [673, -155], [703, -154], [703, -160], [703, -154], [756, -154], [756, -175], [744, -193], [690, -193]]}, "center": {"146-258, T": [732, -173]}}, +{"id": 1323, "name": "Lauras Stern", "description": "Lauras Stern (Laura's Star) is a German book series created by Klaus Baumgart. It follows about five-year-old Laura who finds a \"wounded star\". She takes the star in and experiences many adventures with him.\n\nThe book series was adapted as an animated series in 2002 and as a feature film in 2004 the film, the later of which received the German Film Award for Best Children's and Youth Film.\n\nThe franchise has seen several more films since, including a live-action adaptation in 2021.", "links": {"website": ["https://de.wikipedia.org/wiki/Lauras_Stern"], "subreddit": ["placeDE"]}, "path": {"154-258, T": [[712, -912], [693, -912], [693, -921], [691, -923], [691, -924], [689, -926], [689, -932], [690, -933], [690, -934], [692, -936], [693, -936], [694, -937], [694, -939], [695, -940], [695, -942], [696, -943], [696, -944], [697, -945], [697, -947], [698, -948], [698, -949], [699, -950], [699, -953], [700, -954], [700, -955], [702, -957], [708, -957], [709, -956], [711, -956], [715, -952], [717, -954], [717, -955], [718, -956], [722, -956], [724, -958], [724, -960], [725, -961], [725, -963], [726, -964], [727, -964], [728, -963], [728, -962], [730, -960], [730, -959], [731, -958], [732, -958], [733, -957], [737, -957], [737, -955], [734, -952], [734, -950], [733, -949], [734, -944], [733, -943], [732, -943], [730, -945], [729, -945], [728, -946], [727, -946], [723, -942], [722, -943], [722, -944], [721, -945], [721, -950], [717, -954], [715, -952], [715, -948], [716, -947], [716, -943], [713, -940], [713, -938], [714, -937], [714, -936], [715, -935], [716, -935], [717, -936], [719, -936], [720, -935], [721, -936], [723, -938], [724, -937], [724, -936], [726, -936], [727, -935], [726, -934], [723, -931], [722, -931], [720, -929], [721, -928], [721, -927], [720, -926], [710, -926], [711, -926], [711, -922], [712, -921], [712, -920], [713, -919], [713, -918], [712, -917]]}, "center": {"154-258, T": [700, -929]}}, +{"id": 1324, "name": "Flag of India", "description": "", "links": {}, "path": {"140-258, T": [[672, -193], [887, -193], [887, -154], [672, -154]]}, "center": {"140-258, T": [780, -173]}}, +{"id": 1325, "name": "TGV", "description": "The TGV is France's intercity high-speed rail service, operated by SNCF.", "links": {}, "path": {"89-258, T": [[-590, -371], [-586, -377], [-577, -383], [-563, -387], [-458, -387], [-428, -387], [-417, -384], [-405, -378], [-400, -370], [-589, -371]]}, "center": {"89-258, T": [-437, -379]}}, +{"id": 1326, "name": "Kurisu Makise (牧瀬 紅莉栖)", "description": "The female protagonist of Steins;Gate, a visual novel later adapted into anime. Kurisu is a member of the Brain Science Institute at Viktor Chondria University and the Future Gadget Lab. She is a brain scientist (neuroscientist). She's only 18, yet she's already published a thesis. She is a brillant genius and a loyal friend.", "links": {"website": ["https://store.steampowered.com/app/412830/STEINSGATE/", "https://en.wikipedia.org/wiki/Steins;Gate", "https://myanimelist.net/anime/9253/Steins_Gate"], "subreddit": ["steinsplace"], "discord": ["elpsykongroo"]}, "path": {"115-258, T": [[-694, 338], [-699, 338], [-702, 340], [-703, 343], [-704, 344], [-704, 356], [-705, 358], [-705, 364], [-691, 364], [-688, 361], [-688, 359], [-689, 356], [-691, 354], [-693, 354], [-693, 348], [-692, 348], [-690, 347], [-690, 343], [-692, 340]]}, "center": {"115-258, T": [-698, 358]}}, +{"id": 1327, "name": "Swiss Army Knife", "description": "Swiss Army knife", "links": {"website": ["https://en.wikipedia.org/wiki/Swiss_Army_knife"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"102-258, T": [[-539, 235], [-519, 235], [-520, 225], [-524, 224], [-524, 225], [-531, 220], [-532, 221], [-525, 229], [-537, 229], [-539, 229]]}, "center": {"102-258, T": [-523, 231]}}, +{"id": 1328, "name": "Geometry Dash 10 Years Anniversary", "description": "Geometry Dash is a platforming game nearing its 10th anniversary, occurring on the 13th of August 2023", "links": {"subreddit": ["geometrydash"], "discord": ["hZj5evMRZr"]}, "path": {"155-258, T": [[-466, -873], [-466, -896], [-460, -900], [-415, -899], [-413, -902], [-410, -900], [-402, -897], [-402, -870], [-407, -867], [-461, -867]]}, "center": {"155-258, T": [-449, -883]}}, +{"id": 1329, "name": "Blueyes", "description": "Musical Artistic name of the portuguese youtuber and streamer Wuant", "links": {"website": ["https://soundcloud.com/blueyes-sc", "https://www.youtube.com/c/blueyesworld"]}, "path": {"111-129": [[601, 413], [601, 465], [645, 465], [645, 413]], "144-258, T": [[601, 414], [601, 465], [645, 465], [645, 414]]}, "center": {"111-129": [623, 439], "144-258, T": [623, 440]}}, +{"id": 1331, "name": "Minecraft Creeper", "description": "Creepers are the only mobs in minecraft that explode themselves and everything around them. Unlike zombies or skeletons that can survive in the sun, but tend to be in poorly lit areas. Creepers provide some useful materials when killed by players or certain Hostile Mobs.", "links": {}, "path": {"136-258, T": [[537, -911], [537, -902], [546, -902], [546, -911], [542, -911], [537, -911], [541, -903], [544, -910]]}, "center": {"136-258, T": [544, -904]}}, {"id": 1332, "name": "KDRkitten Mew", "description": "A small project of the german Twitch-Streamer KDRkitten.", "links": {"website": ["https://www.twitch.tv/kdrkitten"]}, "path": {"155-185": [[-902, 329], [-902, 332], [-901, 332], [-901, 334], [-904, 339], [-905, 339], [-906, 339], [-904, 347], [-899, 352], [-893, 352], [-886, 360], [-880, 364], [-877, 358], [-885, 353], [-884, 349], [-882, 351], [-878, 353], [-872, 349], [-869, 346], [-870, 343], [-879, 345], [-880, 345], [-882, 342], [-884, 342], [-878, 341], [-875, 340], [-872, 337], [-869, 334], [-871, 331], [-873, 330], [-874, 327], [-878, 326], [-882, 323], [-884, 322], [-888, 323], [-890, 329], [-893, 334], [-897, 321], [-906, 322], [-907, 328]]}, "center": {"155-185": [-895, 343]}}, -{"id": 1335, "name": "DoktorFroid", "description": "First, it was the \"360\" as a symbol, then it changed to the official logo of DoktorFroid.", "links": {"website": ["https://www.twitch.tv/doktorfroid", "https://www.youtube.com/doktorfroid"], "subreddit": ["Sprechstunde"]}, "path": {"118-258": [[399, -286], [419, -286], [419, -299], [399, -299], [400, -294], [400, -288], [408, -294], [399, -293], [399, -294]]}, "center": {"118-258": [413, -292]}}, -{"id": 1336, "name": "GLP (German Let's Play)", "description": "GLP is a german youtuber famous for his lets play videos. He retired 2023.", "links": {}, "path": {"142-258": [[-867, 404], [-867, 428], [-770, 429], [-770, 404]]}, "center": {"142-258": [-818, 416]}}, -{"id": 1337, "name": "Black Ops Zombie Perks", "description": "Perk Symbols of the Call of Duty: Black Ops Zombie Mode Perks. Also the numbers 115 (for element 115) and 935 (for Gruppe 935) are written down.", "links": {"subreddit": ["CODZombies"]}, "path": {"155-258": [[91, -71], [91, -56], [91, -47], [191, -47], [199, -47], [200, -72]]}, "center": {"155-258": [166, -59]}}, +{"id": 1335, "name": "DoktorFroid", "description": "First, it was the \"360\" as a symbol, then it changed to the official logo of DoktorFroid.", "links": {"website": ["https://www.twitch.tv/doktorfroid", "https://www.youtube.com/doktorfroid"], "subreddit": ["Sprechstunde"]}, "path": {"118-258, T": [[399, -286], [419, -286], [419, -299], [399, -299], [400, -294], [400, -288], [408, -294], [399, -293], [399, -294]]}, "center": {"118-258, T": [413, -292]}}, +{"id": 1336, "name": "GLP (German Let's Play)", "description": "GLP is a german youtuber famous for his lets play videos. He retired 2023.", "links": {}, "path": {"142-258, T": [[-867, 404], [-867, 428], [-770, 429], [-770, 404]]}, "center": {"142-258, T": [-818, 416]}}, +{"id": 1337, "name": "Black Ops Zombie Perks", "description": "Perk Symbols of the Call of Duty: Black Ops Zombie Mode Perks. Also the numbers 115 (for element 115) and 935 (for Gruppe 935) are written down.", "links": {"subreddit": ["CODZombies"]}, "path": {"155-258, T": [[91, -71], [91, -56], [91, -47], [191, -47], [199, -47], [200, -72]]}, "center": {"155-258, T": [166, -59]}}, {"id": 1341, "name": "Ultra Terrance", "description": "In the colorful world of Pixeland, where video game characters came to life, Ultra Terrance emerged as a unique amalgamation of retro Mario, possessing awesome power. Chosen by the Pixel Elder to combat the spreading Pixelvirus, he embarked on a challenging quest, alongside his fellow pixelated warriors, Mega Ethan and Super Lucas, forming a formidable team. Uncovering the villainous Glitchmaster's plot, Ultra Terrance faced a final epic clash, purifying the virus and saving Pixeland. Humble despite his incredible abilities, he became a symbol of hope and inspiration, his adventures forever etched in the legendary tales of gaming worlds.", "links": {"discord": ["MM4j63Agvh"]}, "path": {"128-152": [[264, -797], [264, -815], [278, -815], [278, -797]]}, "center": {"128-152": [271, -806]}}, -{"id": 1342, "name": "feddit.de", "description": "feddit.de is the largest German Lemmy Instance.", "links": {"website": ["https://feddit.de"]}, "path": {"141-191": [[-998, -380], [-960, -380], [-955, -376], [-955, -371], [-999, -372], [-1000, -376]], "192-258": [[-1455, -380], [-1455, -372], [-1500, -371], [-1500, -379], [-1480, -380]]}, "center": {"141-191": [-977, -376], "192-258": [-1478, -376]}}, -{"id": 1343, "name": "The Stanley Parable", "description": "The Stanley Parable is a story-based adventure game designed and written by developers Davey Wreden and William Pugh. You play as an office worker named Stanley, who is doomed to explore the never-ending office building that he now resides in. The game carries themes such as choice and freedom in video games, the relationship between a game creator and the player, and predestination and fate.", "links": {"website": ["https://www.stanleyparable.com/"], "subreddit": ["StanleyParable"]}, "path": {"164-258": [[595, -631], [612, -631], [612, -616], [595, -616]]}, "center": {"164-258": [604, -623]}}, +{"id": 1342, "name": "feddit.de", "description": "feddit.de is the largest German Lemmy Instance.", "links": {"website": ["https://feddit.de"]}, "path": {"141-191": [[-998, -380], [-960, -380], [-955, -376], [-955, -371], [-999, -372], [-1000, -376]], "192-258, T": [[-1455, -380], [-1455, -372], [-1500, -371], [-1500, -379], [-1480, -380]]}, "center": {"141-191": [-977, -376], "192-258, T": [-1478, -376]}}, +{"id": 1343, "name": "The Stanley Parable", "description": "The Stanley Parable is a story-based adventure game designed and written by developers Davey Wreden and William Pugh. You play as an office worker named Stanley, who is doomed to explore the never-ending office building that he now resides in. The game carries themes such as choice and freedom in video games, the relationship between a game creator and the player, and predestination and fate.", "links": {"website": ["https://www.stanleyparable.com/"], "subreddit": ["StanleyParable"]}, "path": {"164-258, T": [[595, -631], [612, -631], [612, -616], [595, -616]]}, "center": {"164-258, T": [604, -623]}}, {"id": 1344, "name": "Turtle Chain", "description": "The turtle chain was initiated by the German Discord group Wolfsdelfinbären/Rehpotter and continued by many individual members or small groups. they also built the Turtle Love picture in the Nature of Predators", "links": {"subreddit": ["TurtleloveDE"]}, "path": {"129-155": [[-119, -920], [-119, -912], [763, -912], [763, -915], [742, -923]]}, "center": {"129-155": [734, -917]}}, -{"id": 1345, "name": "The Stanley Parable Reassurance Bucket", "description": "The Stanley Parable Reassurance Bucket is an item and character introduced in The Stanley Parable: Ultra Deluxe. It is supposed to comfort Stanley while playing the game, but also changes the dialogue and greatly effects most endings. It is constantly referred to as an animate object, though it appears to only be a bucket.", "links": {"website": ["https://thestanleyparable.fandom.com/wiki/The_Stanley_Parable_Reassurance_Bucket"]}, "path": {"164-258": [[601, -629], [606, -629], [606, -628], [607, -628], [607, -625], [606, -625], [606, -623], [601, -623], [601, -625], [600, -625], [600, -628], [601, -628]]}, "center": {"164-258": [604, -626]}}, +{"id": 1345, "name": "The Stanley Parable Reassurance Bucket", "description": "The Stanley Parable Reassurance Bucket is an item and character introduced in The Stanley Parable: Ultra Deluxe. It is supposed to comfort Stanley while playing the game, but also changes the dialogue and greatly effects most endings. It is constantly referred to as an animate object, though it appears to only be a bucket.", "links": {"website": ["https://thestanleyparable.fandom.com/wiki/The_Stanley_Parable_Reassurance_Bucket"]}, "path": {"164-258, T": [[601, -629], [606, -629], [606, -628], [607, -628], [607, -625], [606, -625], [606, -623], [601, -623], [601, -625], [600, -625], [600, -628], [601, -628]]}, "center": {"164-258, T": [604, -626]}}, {"id": 1346, "name": "The Four Emperors", "description": "The Four Emperors are the four strongest pirates in the world of the Eiichiros Oda's manga One Piece. Their respective pirate groups have the most influence on the Grand Line. Depicted are (from left to right) Blackbeard, Strawhat Luffy, Buggy the Clown and Red Hair Shanks.", "links": {"subreddit": ["OnePiece"]}, "path": {"155": [[-622, -755], [-622, -638], [-425, -637], [-425, -643], [-361, -644], [-361, -776], [-426, -777], [-425, -745], [-535, -746], [-536, -755]]}, "center": {"155": [-564, -696]}}, -{"id": 1347, "name": "Itemlabel's Fishcar", "description": "Your very own fish car is about to drive on over to your house.", "links": {"website": ["https://itemlabel.com"], "subreddit": ["itemlabel"], "discord": ["itemlabel"]}, "path": {"165-258": [[602, 871], [607, 869], [609, 869], [612, 870], [614, 869], [615, 870], [616, 871], [616, 876], [614, 878], [613, 878], [612, 879], [604, 880], [603, 879], [602, 877], [601, 876], [602, 874]]}, "center": {"165-258": [608, 874]}}, -{"id": 1348, "name": "DELTARUNE", "description": "Deltarune (also stylized as \"DELTARUNE\" and \"deltarune\") is the second game released by Toby Fox. \n\nDeltarune serves as a follow-up to Toby's successful game Undertale, and is intended for those who have finished it. While Deltarune has many returning characters from Undertale, the game is set in a different continuity and features new protagonists. \n\nThe game currently only has two chapters released out of an estimated total of seven, but it has received plenty of positive attention so far.", "links": {"website": ["https://deltarune.com/", "https://deltarune.fandom.com/wiki/Deltarune"], "subreddit": ["Deltarune"], "discord": ["deltarune"]}, "path": {"165-258": [[327, 924], [327, 955], [378, 955], [378, 924]]}, "center": {"165-258": [353, 940]}}, -{"id": 1349, "name": "Pooya and The <2 Crew", "description": "Pooya is a Twitch streamer and a podcaster. After a typo of <3 to <2 by one community member, Pooya and crew has adopted the <2 and has become the <2 Crew (Less Than Two Crew). Beneath is Pooya's Goose from the game Goose Goose Duck, based off of Pooya's chaos emote. The purple wax (candle) nearby was made the the <2 Crew in remembrance of Daq, a beloved mod who passed.\n\nThese pieces have moved in case of the toolbar's expansion.", "links": {"website": ["http://www.twitch.tv/pooya"], "subreddit": ["pooya"]}, "path": {"227-258": [[463, 904], [485, 904], [485, 934], [463, 934]]}, "center": {"227-258": [474, 919]}}, -{"id": 1350, "name": "Matschbirne from VTuber Moepi", "description": "The mud pear symbolizes the community of Moepi. It means you should not take life so seriously and also be able to laugh about your stupidities.", "links": {"website": ["https://www.twitch.tv/moepi"], "subreddit": ["moepi"], "discord": ["moep"]}, "path": {"155-258": [[652, 783], [652, 782], [650, 782], [650, 781], [649, 781], [649, 780], [648, 780], [648, 779], [647, 779], [647, 777], [646, 777], [646, 772], [647, 772], [647, 770], [648, 770], [648, 767], [649, 767], [649, 766], [650, 766], [650, 764], [651, 764], [651, 763], [652, 763], [652, 762], [653, 762], [653, 761], [656, 761], [656, 758], [659, 758], [659, 757], [660, 757], [660, 755], [661, 755], [661, 754], [664, 754], [664, 755], [666, 755], [666, 756], [667, 756], [667, 757], [666, 757], [666, 758], [665, 758], [665, 759], [664, 759], [663, 759], [663, 760], [661, 760], [661, 759], [660, 759], [660, 758], [656, 758], [656, 761], [658, 761], [658, 762], [659, 762], [659, 763], [660, 763], [660, 764], [661, 764], [661, 766], [662, 766], [662, 767], [663, 767], [663, 770], [664, 770], [664, 771], [664, 772], [665, 772], [665, 777], [664, 777], [664, 779], [663, 779], [663, 780], [662, 780], [662, 781], [661, 781], [661, 782], [659, 782], [659, 783], [656, 783], [652, 783], [652, 782], [651, 782]]}, "center": {"155-258": [656, 774]}}, -{"id": 1351, "name": "The Price is Right Wheel", "description": "The wheel from a popular TV Show in Portugal, \"The Price is Right\". Contestants get a number on the wheel. The contestant who gets the closest number to 100 passes to the final", "links": {"website": ["https://www.rtp.pt/programa/tv/p13007"]}, "path": {"165-258": [[609, 208], [616, 211], [616, 250], [602, 253], [596, 239], [594, 222], [601, 207]]}, "center": {"165-258": [605, 227]}}, -{"id": 1352, "name": "Windows Vista Taskbar", "description": "A taskbar is the primary method of launching, displaying, and switching between applications on Microsoft Windows, along with the Start button. This taskbar is the one featured in Windows Vista, a major release of the Windows NT operating system developed by Microsoft as the direct successor to Windows XP, which was the version of the taskbar featured in r/place 2022", "links": {"website": ["https://en.wikipedia.org/wiki/Windows_Vista"], "subreddit": ["placestart"]}, "path": {"156-171": [[-1001, 970], [-1001, 1000], [-13, 1000], [-13, 970], [-956, 969], [-962, 965], [-976, 965], [-981, 967], [-984, 969], [-1001, 969]], "182-213": [[-1500, 970], [-1485, 970], [-1482, 967], [-1481, 967], [-1481, 966], [-1478, 966], [-1478, 965], [-1475, 965], [-1475, 964], [-1464, 964], [-1464, 965], [-1462, 965], [-1460, 966], [-1457, 968], [-1455, 970], [-24, 970], [-24, 999], [-1500, 999]], "214-258": [[-1500, 970], [-1485, 970], [-1482, 967], [-1481, 967], [-1481, 966], [-1478, 966], [-1478, 965], [-1475, 965], [-1475, 964], [-1464, 964], [-1464, 965], [-1462, 965], [-1460, 966], [-1457, 968], [-1455, 970], [-24, 970], [79, 971], [79, 999], [-1500, 999]]}, "center": {"156-171": [-967, 983], "182-213": [-1468, 982], "214-258": [-1468, 982]}}, +{"id": 1347, "name": "Itemlabel's Fishcar", "description": "Your very own fish car is about to drive on over to your house.", "links": {"website": ["https://itemlabel.com"], "subreddit": ["itemlabel"], "discord": ["itemlabel"]}, "path": {"165-258, T": [[602, 871], [607, 869], [609, 869], [612, 870], [614, 869], [615, 870], [616, 871], [616, 876], [614, 878], [613, 878], [612, 879], [604, 880], [603, 879], [602, 877], [601, 876], [602, 874]]}, "center": {"165-258, T": [608, 874]}}, +{"id": 1348, "name": "DELTARUNE", "description": "Deltarune (also stylized as \"DELTARUNE\" and \"deltarune\") is the second game released by Toby Fox. \n\nDeltarune serves as a follow-up to Toby's successful game Undertale, and is intended for those who have finished it. While Deltarune has many returning characters from Undertale, the game is set in a different continuity and features new protagonists. \n\nThe game currently only has two chapters released out of an estimated total of seven, but it has received plenty of positive attention so far.", "links": {"website": ["https://deltarune.com/", "https://deltarune.fandom.com/wiki/Deltarune"], "subreddit": ["Deltarune"], "discord": ["deltarune"]}, "path": {"165-258, T": [[327, 924], [327, 955], [378, 955], [378, 924]]}, "center": {"165-258, T": [353, 940]}}, +{"id": 1349, "name": "Pooya and The <2 Crew", "description": "Pooya is a Twitch streamer and a podcaster. After a typo of <3 to <2 by one community member, Pooya and crew has adopted the <2 and has become the <2 Crew (Less Than Two Crew). Beneath is Pooya's Goose from the game Goose Goose Duck, based off of Pooya's chaos emote. The purple wax (candle) nearby was made the the <2 Crew in remembrance of Daq, a beloved mod who passed.\n\nThese pieces have moved in case of the toolbar's expansion.", "links": {"website": ["http://www.twitch.tv/pooya"], "subreddit": ["pooya"]}, "path": {"227-258, T": [[463, 904], [485, 904], [485, 934], [463, 934]]}, "center": {"227-258, T": [474, 919]}}, +{"id": 1350, "name": "Matschbirne from VTuber Moepi", "description": "The mud pear symbolizes the community of Moepi. It means you should not take life so seriously and also be able to laugh about your stupidities.", "links": {"website": ["https://www.twitch.tv/moepi"], "subreddit": ["moepi"], "discord": ["moep"]}, "path": {"155-258, T": [[652, 783], [652, 782], [650, 782], [650, 781], [649, 781], [649, 780], [648, 780], [648, 779], [647, 779], [647, 777], [646, 777], [646, 772], [647, 772], [647, 770], [648, 770], [648, 767], [649, 767], [649, 766], [650, 766], [650, 764], [651, 764], [651, 763], [652, 763], [652, 762], [653, 762], [653, 761], [656, 761], [656, 758], [659, 758], [659, 757], [660, 757], [660, 755], [661, 755], [661, 754], [664, 754], [664, 755], [666, 755], [666, 756], [667, 756], [667, 757], [666, 757], [666, 758], [665, 758], [665, 759], [664, 759], [663, 759], [663, 760], [661, 760], [661, 759], [660, 759], [660, 758], [656, 758], [656, 761], [658, 761], [658, 762], [659, 762], [659, 763], [660, 763], [660, 764], [661, 764], [661, 766], [662, 766], [662, 767], [663, 767], [663, 770], [664, 770], [664, 771], [664, 772], [665, 772], [665, 777], [664, 777], [664, 779], [663, 779], [663, 780], [662, 780], [662, 781], [661, 781], [661, 782], [659, 782], [659, 783], [656, 783], [652, 783], [652, 782], [651, 782]]}, "center": {"155-258, T": [656, 774]}}, +{"id": 1351, "name": "The Price is Right Wheel", "description": "The wheel from a popular TV Show in Portugal, \"The Price is Right\". Contestants get a number on the wheel. The contestant who gets the closest number to 100 passes to the final", "links": {"website": ["https://www.rtp.pt/programa/tv/p13007"]}, "path": {"165-258, T": [[609, 208], [616, 211], [616, 250], [602, 253], [596, 239], [594, 222], [601, 207]]}, "center": {"165-258, T": [605, 227]}}, +{"id": 1352, "name": "Windows Vista Taskbar", "description": "A taskbar is the primary method of launching, displaying, and switching between applications on Microsoft Windows, along with the Start button. This taskbar is the one featured in Windows Vista, a major release of the Windows NT operating system developed by Microsoft as the direct successor to Windows XP, which was the version of the taskbar featured in r/place 2022", "links": {"website": ["https://en.wikipedia.org/wiki/Windows_Vista"], "subreddit": ["placestart"]}, "path": {"156-171": [[-1001, 970], [-1001, 1000], [-13, 1000], [-13, 970], [-956, 969], [-962, 965], [-976, 965], [-981, 967], [-984, 969], [-1001, 969]], "182-213": [[-1500, 970], [-1485, 970], [-1482, 967], [-1481, 967], [-1481, 966], [-1478, 966], [-1478, 965], [-1475, 965], [-1475, 964], [-1464, 964], [-1464, 965], [-1462, 965], [-1460, 966], [-1457, 968], [-1455, 970], [-24, 970], [-24, 999], [-1500, 999]], "214-258, T": [[-1500, 970], [-1485, 970], [-1482, 967], [-1481, 967], [-1481, 966], [-1478, 966], [-1478, 965], [-1475, 965], [-1475, 964], [-1464, 964], [-1464, 965], [-1462, 965], [-1460, 966], [-1457, 968], [-1455, 970], [-24, 970], [79, 971], [79, 999], [-1500, 999]]}, "center": {"156-171": [-967, 983], "182-213": [-1468, 982], "214-258, T": [-1468, 982]}}, {"id": 1353, "name": "Hurdy Gurdy", "description": "The Hurdy Gurdy is a unique stringed instrument with a rosined wheel that, when turned, creates sound as keys or buttons stop melody strings, producing a distinctive and ancient musical tone.", "links": {"subreddit": ["HurdyGurdy"]}, "path": {"62-73": [[-96, 61], [-96, 58], [-91, 50], [-89, 48], [-88, 46], [-82, 47], [-81, 45], [-79, 45], [-79, 48], [-79, 57], [-86, 61]], "175-185, 216-232, 97-154": [[-96, 61], [-87, 60], [-80, 54], [-80, 50], [-79, 47], [-81, 45], [-83, 47], [-88, 48], [-95, 59]]}, "center": {"62-73": [-85, 53], "175-185, 216-232, 97-154": [-85, 52]}}, -{"id": 1354, "name": "La Creación de Ratges", "description": "El presente dibujo, elaborado por el streamer y youtuber FranquitoM,AleWang y su comunidad, representa una parodia de la célebre pintura \"Die Erschaffung Adams\", conocido también como \"La Creación de Adán\", en el cual Dios Padre otorga vida a Adán mediante un dedo índice extendido. En esta ocasión, la parodia se materializa al reemplazar a Dios Padre y a Adán por los personajes de Ratges.", "links": {"website": ["https://de.wikipedia.org/wiki/Die_Erschaffung_Adams", "https://www.youtube.com/@FranqitoM/channels", "https://www.twitch.tv/franqitom"], "subreddit": ["Franquito"], "discord": ["YrU5zcgsME", "franqitom"]}, "path": {"163-258": [[472, -880], [603, -880], [603, -797], [472, -797], [471, -841]]}, "center": {"163-258": [537, -838]}}, -{"id": 1355, "name": "TwoSet Violin", "description": "TwoSet Violin is a musical comedy duo consisting of Australian violinists and YouTubers Brett Yang and Eddy Chen. They started out posting classical covers of pop music on their YouTube channel, but eventually switched focus to musical comedy videos, which gained them more viewership. Nowadays, their videos are more of the educational sort, as the duo seek to educate younger generations about classical music.\n\nThis violin was drawn by some members of TwoSet Violin's subreddit, r/lingling40hrs.", "links": {"website": ["https://www.twosetviolin.com/about", "https://www.youtube.com/@twosetviolin/featured"], "subreddit": ["lingling40hrs"]}, "path": {"164-258": [[602, 838], [608, 838], [608, 849], [602, 849]]}, "center": {"164-258": [605, 844]}}, -{"id": 1356, "name": "Boombox", "description": "A character from the Roblox game \"PHIGHTING!\"", "links": {"website": ["https://www.roblox.com/games/7138009149/ICE-CREAM-VS-POPSICLE-PHIGHTING", "https://phighting.fandom.com/wiki/Boombox"], "discord": ["48Vab5TQpE"]}, "path": {"120-121": [[357, -861], [355, -863], [355, -866], [357, -868], [358, -866], [362, -866], [363, -868], [365, -866], [365, -863], [362, -860]], "150-169": [[374, -871], [370, -875], [370, -879], [373, -882], [375, -880], [378, -880], [380, -882], [383, -879], [383, -875], [379, -871]], "207-210": [[1147, -625], [1143, -629], [1143, -633], [1146, -636], [1148, -634], [1151, -634], [1153, -636], [1156, -633], [1156, -629], [1152, -625]], "211-231": [[1144, -625], [1140, -629], [1140, -633], [1143, -636], [1145, -634], [1148, -634], [1150, -636], [1153, -633], [1153, -629], [1149, -625]], "232-258": [[1144, -629], [1140, -633], [1140, -637], [1143, -640], [1145, -638], [1148, -638], [1150, -640], [1153, -637], [1153, -633], [1149, -629]]}, "center": {"120-121": [360, -863], "150-169": [377, -875], "207-210": [1150, -629], "211-231": [1147, -629], "232-258": [1147, -633]}}, -{"id": 1357, "name": "Astolfo", "description": "Originating from the Japanese light novel and anime series \"Fate/Apocrypha,\" Astolfo is depicted as a male character, but his appearance and personality have led to the \"femboy\" interpretation within fandoms. The pixel art was created by r/astolfo and r/femboy. They were also allied with r/Overlord, who helped defend each other and repair after attacks.", "links": {"subreddit": ["astolfo", "femboy", "overlord"]}, "path": {"156-258": [[609, 936], [609, 934], [608, 934], [608, 931], [607, 931], [607, 926], [606, 926], [606, 921], [607, 921], [607, 920], [609, 920], [609, 919], [610, 919], [610, 916], [609, 916], [609, 912], [610, 912], [611, 912], [611, 910], [612, 910], [612, 908], [613, 908], [613, 905], [614, 905], [614, 904], [615, 904], [615, 903], [616, 903], [616, 902], [637, 902], [637, 903], [638, 903], [638, 904], [639, 904], [639, 905], [640, 905], [640, 908], [641, 908], [641, 909], [642, 909], [642, 912], [644, 912], [644, 915], [643, 915], [643, 916], [643, 920], [642, 920], [642, 921], [641, 921], [641, 922], [640, 922], [640, 928], [640, 929], [641, 929], [641, 930], [642, 930], [642, 931], [642, 932], [643, 932], [643, 936], [639, 937], [639, 944], [649, 944], [651, 965], [631, 965], [630, 936]]}, "center": {"156-258": [625, 918]}}, -{"id": 1359, "name": "Märzrevolution (1848)", "description": "The German revolutions of 1848–1849 (German: Deutsche Revolution 1848/1849), the opening phase of which was also called the March Revolution (German: Märzrevolution), were initially part of the Revolutions of 1848 that broke out in many European countries. They were a series of loosely coordinated protests and rebellions in the states of the German Confederation, including the Austrian Empire. The revolutions, which stressed pan-Germanism, demonstrated popular discontent with the traditional, largely autocratic political structure of the thirty-nine independent states of the Confederation that inherited the German territory of the former Holy Roman Empire after its dismantlement as a result of the Napoleonic Wars. This process began in the mid 1840s.\n\nThe middle-class elements were committed to liberal principles, while the working class sought radical improvements to their working and living conditions. As the middle class and working class components of the Revolution split, the conservative aristocracy defeated it. Liberals were forced into exile to escape political persecution, where they became known as Forty-Eighters. Many emigrated to the United States, settling from Wisconsin to Texas.\n\n- Art:\nPicture of the fights between revolutionaries and the royal military in the Breite Strasse Street, Berlin during the March 1848 revolution.\n- Original Title:\n\"Erinnerung an den Befreiungskampf in der verhängnisvollen Nacht 18.-19. März 1848\"\n- Author: Unknown", "links": {"website": ["https://en.wikipedia.org/wiki/German_revolutions_of_1848%E2%80%931849"], "subreddit": ["placede"]}, "path": {"165-258": [[-773, 642], [-660, 641], [-660, 712], [-773, 714]]}, "center": {"165-258": [-719, 677]}}, -{"id": 1360, "name": "small snail", "description": "a snail for StyledSnail, chillin with the monke.", "links": {"website": ["https://www.youtube.com/channel/UC4YKoRpqRoyMPup7gQqlB3g"], "discord": ["styledsnail"]}, "path": {"161-258": [[-502, 228], [-493, 228], [-493, 239], [-502, 239]]}, "center": {"161-258": [-497, 234]}}, +{"id": 1354, "name": "La Creación de Ratges", "description": "El presente dibujo, elaborado por el streamer y youtuber FranquitoM,AleWang y su comunidad, representa una parodia de la célebre pintura \"Die Erschaffung Adams\", conocido también como \"La Creación de Adán\", en el cual Dios Padre otorga vida a Adán mediante un dedo índice extendido. En esta ocasión, la parodia se materializa al reemplazar a Dios Padre y a Adán por los personajes de Ratges.", "links": {"website": ["https://de.wikipedia.org/wiki/Die_Erschaffung_Adams", "https://www.youtube.com/@FranqitoM/channels", "https://www.twitch.tv/franqitom"], "subreddit": ["Franquito"], "discord": ["YrU5zcgsME", "franqitom"]}, "path": {"163-258, T": [[472, -880], [603, -880], [603, -797], [472, -797], [471, -841]]}, "center": {"163-258, T": [537, -838]}}, +{"id": 1355, "name": "TwoSet Violin", "description": "TwoSet Violin is a musical comedy duo consisting of Australian violinists and YouTubers Brett Yang and Eddy Chen. They started out posting classical covers of pop music on their YouTube channel, but eventually switched focus to musical comedy videos, which gained them more viewership. Nowadays, their videos are more of the educational sort, as the duo seek to educate younger generations about classical music.\n\nThis violin was drawn by some members of TwoSet Violin's subreddit, r/lingling40hrs.", "links": {"website": ["https://www.twosetviolin.com/about", "https://www.youtube.com/@twosetviolin/featured"], "subreddit": ["lingling40hrs"]}, "path": {"164-258, T": [[602, 838], [608, 838], [608, 849], [602, 849]]}, "center": {"164-258, T": [605, 844]}}, +{"id": 1356, "name": "Boombox", "description": "A character from the Roblox game \"PHIGHTING!\"", "links": {"website": ["https://www.roblox.com/games/7138009149/ICE-CREAM-VS-POPSICLE-PHIGHTING", "https://phighting.fandom.com/wiki/Boombox"], "discord": ["48Vab5TQpE"]}, "path": {"120-121": [[357, -861], [355, -863], [355, -866], [357, -868], [358, -866], [362, -866], [363, -868], [365, -866], [365, -863], [362, -860]], "150-169": [[374, -871], [370, -875], [370, -879], [373, -882], [375, -880], [378, -880], [380, -882], [383, -879], [383, -875], [379, -871]], "207-210": [[1147, -625], [1143, -629], [1143, -633], [1146, -636], [1148, -634], [1151, -634], [1153, -636], [1156, -633], [1156, -629], [1152, -625]], "211-231": [[1144, -625], [1140, -629], [1140, -633], [1143, -636], [1145, -634], [1148, -634], [1150, -636], [1153, -633], [1153, -629], [1149, -625]], "232-258, T": [[1144, -629], [1140, -633], [1140, -637], [1143, -640], [1145, -638], [1148, -638], [1150, -640], [1153, -637], [1153, -633], [1149, -629]]}, "center": {"120-121": [360, -863], "150-169": [377, -875], "207-210": [1150, -629], "211-231": [1147, -629], "232-258, T": [1147, -633]}}, +{"id": 1357, "name": "Astolfo", "description": "Originating from the Japanese light novel and anime series \"Fate/Apocrypha,\" Astolfo is depicted as a male character, but his appearance and personality have led to the \"femboy\" interpretation within fandoms. The pixel art was created by r/astolfo and r/femboy. They were also allied with r/Overlord, who helped defend each other and repair after attacks.", "links": {"subreddit": ["astolfo", "femboy", "overlord"]}, "path": {"156-258, T": [[609, 936], [609, 934], [608, 934], [608, 931], [607, 931], [607, 926], [606, 926], [606, 921], [607, 921], [607, 920], [609, 920], [609, 919], [610, 919], [610, 916], [609, 916], [609, 912], [610, 912], [611, 912], [611, 910], [612, 910], [612, 908], [613, 908], [613, 905], [614, 905], [614, 904], [615, 904], [615, 903], [616, 903], [616, 902], [637, 902], [637, 903], [638, 903], [638, 904], [639, 904], [639, 905], [640, 905], [640, 908], [641, 908], [641, 909], [642, 909], [642, 912], [644, 912], [644, 915], [643, 915], [643, 916], [643, 920], [642, 920], [642, 921], [641, 921], [641, 922], [640, 922], [640, 928], [640, 929], [641, 929], [641, 930], [642, 930], [642, 931], [642, 932], [643, 932], [643, 936], [639, 937], [639, 944], [649, 944], [651, 965], [631, 965], [630, 936]]}, "center": {"156-258, T": [625, 918]}}, +{"id": 1359, "name": "Märzrevolution (1848)", "description": "The German revolutions of 1848–1849 (German: Deutsche Revolution 1848/1849), the opening phase of which was also called the March Revolution (German: Märzrevolution), were initially part of the Revolutions of 1848 that broke out in many European countries. They were a series of loosely coordinated protests and rebellions in the states of the German Confederation, including the Austrian Empire. The revolutions, which stressed pan-Germanism, demonstrated popular discontent with the traditional, largely autocratic political structure of the thirty-nine independent states of the Confederation that inherited the German territory of the former Holy Roman Empire after its dismantlement as a result of the Napoleonic Wars. This process began in the mid 1840s.\n\nThe middle-class elements were committed to liberal principles, while the working class sought radical improvements to their working and living conditions. As the middle class and working class components of the Revolution split, the conservative aristocracy defeated it. Liberals were forced into exile to escape political persecution, where they became known as Forty-Eighters. Many emigrated to the United States, settling from Wisconsin to Texas.\n\n- Art:\nPicture of the fights between revolutionaries and the royal military in the Breite Strasse Street, Berlin during the March 1848 revolution.\n- Original Title:\n\"Erinnerung an den Befreiungskampf in der verhängnisvollen Nacht 18.-19. März 1848\"\n- Author: Unknown", "links": {"website": ["https://en.wikipedia.org/wiki/German_revolutions_of_1848%E2%80%931849"], "subreddit": ["placede"]}, "path": {"165-258, T": [[-773, 642], [-660, 641], [-660, 712], [-773, 714]]}, "center": {"165-258, T": [-719, 677]}}, +{"id": 1360, "name": "small snail", "description": "a snail for StyledSnail, chillin with the monke.", "links": {"website": ["https://www.youtube.com/channel/UC4YKoRpqRoyMPup7gQqlB3g"], "discord": ["styledsnail"]}, "path": {"161-258, T": [[-502, 228], [-493, 228], [-493, 239], [-502, 239]]}, "center": {"161-258, T": [-497, 234]}}, {"id": 1362, "name": "Norminet", "description": "Norminet is the cat from the 42 school in Paris. There is also a reference to the \"Don't Panic\" from the book The Hitchhiker's Guide to the Galaxy", "links": {"website": ["https://42.fr/"], "subreddit": ["42Born2Code"]}, "path": {"163-215": [[433, -525], [475, -525], [475, -530], [457, -530], [457, -532], [458, -532], [458, -533], [459, -533], [459, -534], [460, -534], [460, -543], [459, -543], [459, -544], [459, -543], [458, -543], [458, -542], [457, -542], [456, -542], [456, -541], [450, -541], [450, -542], [449, -542], [449, -543], [447, -543], [447, -544], [447, -543], [446, -543], [446, -534], [447, -534], [447, -533], [448, -533], [448, -532], [449, -532], [449, -530], [433, -530]]}, "center": {"163-215": [453, -536]}}, -{"id": 1363, "name": "Ludwig van Beethoven", "description": "This shows a stone bust of Beethoven. Ludwig van Beethoven (baptised 17 December 1770 – 26 March 1827) was a German composer and pianist. Beethoven remains one of the most admired composers in the history of Western music; his works rank among the most performed of the classical music repertoire and span the transition from the Classical period to the Romantic era in classical music. His career has conventionally been divided into early, middle, and late periods. His early period, during which he forged his craft, is typically considered to have lasted until 1802. From 1802 to around 1812, his middle period showed an individual development from the styles of Joseph Haydn and Wolfgang Amadeus Mozart, and is sometimes characterized as heroic. During this time, he began to grow increasingly deaf. In his late period, from 1812 to 1827, he extended his innovations in musical form and expression.", "links": {"website": ["https://en.wikipedia.org/wiki/Ludwig_van_Beethoven#"], "subreddit": ["placeDE"], "discord": ["placeDE"]}, "path": {"162-258": [[149, -590], [140, -564], [149, -545], [182, -545], [187, -574], [172, -591], [149, -591]]}, "center": {"162-258": [164, -567]}}, -{"id": 1364, "name": "LetsHugoTV", "description": "LetsHugoTV, or simply Hugo, is a popular german speaking Twitch streamer living and being born in Luxembourg. There he is the biggest streamer in the whole country and one of the fastest growing ones in Germany. He is known for his funny, autistic and over the top nature.\nHe himself cannot participate in this event and thus his community alone tries to save his spot on the canvas. As a reward he offered to gift 100 subs to them. What a Gentleman!", "links": {"website": ["https://www.twitch.tv/letshugotv"], "subreddit": ["letshugotv"], "discord": ["LetsHugo"]}, "path": {"90-258": [[-698, -309], [-698, -298], [-670, -298], [-670, -308], [-677, -308], [-677, -314], [-679, -314], [-679, -320], [-680, -320], [-680, -322], [-681, -322], [-681, -323], [-682, -323], [-682, -324], [-684, -324], [-684, -325], [-685, -325], [-685, -326], [-695, -326], [-695, -325], [-696, -325], [-696, -324], [-697, -324], [-697, -322], [-698, -322], [-698, -321], [-699, -321], [-699, -309]]}, "center": {"90-258": [-687, -308]}}, -{"id": 1365, "name": "flag of belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors.", "links": {"subreddit": ["Belgium"], "discord": ["Belgium"]}, "path": {"165-258": [[792, 587], [873, 586], [872, 499], [823, 499], [824, 484], [828, 480], [823, 476], [794, 475], [794, 494], [792, 494]]}, "center": {"165-258": [832, 539]}}, -{"id": 1366, "name": "Lohr am Main", "description": "Fränkische Stadt", "links": {"website": ["https://de.wikipedia.org/wiki/Lohr_am_Main"], "discord": ["7NuqMxE"]}, "path": {"166-258": [[-106, 929], [-92, 929], [-92, 933], [-106, 933], [-106, 929], [-92, 929], [-92, 933], [-106, 933]]}, "center": {"166-258": [-92, 931]}}, -{"id": 1367, "name": "Logo historique FC Nantes", "description": "", "links": {"website": ["https://www.fcnantes.com/"], "subreddit": ["FCNantes"], "discord": ["peuples-jaune-vert-1007938714871275602"]}, "path": {"205-258": [[-367, 616], [-338, 616], [-336, 652], [-367, 652]]}, "center": {"205-258": [-352, 637]}}, -{"id": 1368, "name": "My God, Help Me to Survive This Deadly Love", "description": "Sometimes referred to as the Fraternal Kiss (German: Bruderkuss), is a graffiti painting by Dmitri Vrubel on the eastern side Berlin wall. Painted in 1990, it has become one of the best known pieces of Berlin wall graffiti art. The painting depicts Leonid Brezhnev and Erich Honecker in a socialist fraternal kiss, reproducing a photograph taken in 1979 during the 30th anniversary celebration of the foundation of the German Democratic Republic.", "links": {"website": ["https://en.wikipedia.org/wiki/My_God,_Help_Me_to_Survive_This_Deadly_Love"]}, "path": {"166-258": [[489, -996], [577, -996], [576, -940], [489, -941]]}, "center": {"166-258": [533, -968]}}, -{"id": 1369, "name": "Minesweeper pixel art", "description": "Minesweeper is a logic puzzle video game genre generally played on personal computers. The game features a grid of clickable squares, with hidden \"mines\" scattered throughout the board. The objective is to clear the board without detonating any mines, with help from clues about the number of neighboring mines in each field. Variants of Minesweeper have been made that expand on the basic concepts, such as Minesweeper X, Crossmines, and Minehunt. Minesweeper has been incorporated as a minigame in other games, such as RuneScape and Minecraft's 2015 April Fools update.\n\nThe origin of Minesweeper is unclear. According to TechRadar, the first version of the game was 1990's Microsoft Minesweeper, but Eurogamer says Mined-Out by Ian Andrew (1983) was the first Minesweeper game. Curt Johnson, the creator of Microsoft Minesweeper, acknowledges that his game's design was borrowed from another game, but it was not Mined-Out, and he does not remember which game it is.", "links": {"website": ["https://en.wikipedia.org/wiki/Minesweeper_(video_game)"], "subreddit": ["placede"]}, "path": {"166-258": [[321, -607], [341, -607], [341, -583], [321, -583]]}, "center": {"166-258": [331, -595]}}, +{"id": 1363, "name": "Ludwig van Beethoven", "description": "This shows a stone bust of Beethoven. Ludwig van Beethoven (baptised 17 December 1770 – 26 March 1827) was a German composer and pianist. Beethoven remains one of the most admired composers in the history of Western music; his works rank among the most performed of the classical music repertoire and span the transition from the Classical period to the Romantic era in classical music. His career has conventionally been divided into early, middle, and late periods. His early period, during which he forged his craft, is typically considered to have lasted until 1802. From 1802 to around 1812, his middle period showed an individual development from the styles of Joseph Haydn and Wolfgang Amadeus Mozart, and is sometimes characterized as heroic. During this time, he began to grow increasingly deaf. In his late period, from 1812 to 1827, he extended his innovations in musical form and expression.", "links": {"website": ["https://en.wikipedia.org/wiki/Ludwig_van_Beethoven#"], "subreddit": ["placeDE"], "discord": ["placeDE"]}, "path": {"162-258, T": [[149, -590], [140, -564], [149, -545], [182, -545], [187, -574], [172, -591], [149, -591]]}, "center": {"162-258, T": [164, -567]}}, +{"id": 1364, "name": "LetsHugoTV", "description": "LetsHugoTV, or simply Hugo, is a popular german speaking Twitch streamer living and being born in Luxembourg. There he is the biggest streamer in the whole country and one of the fastest growing ones in Germany. He is known for his funny, autistic and over the top nature.\nHe himself cannot participate in this event and thus his community alone tries to save his spot on the canvas. As a reward he offered to gift 100 subs to them. What a Gentleman!", "links": {"website": ["https://www.twitch.tv/letshugotv"], "subreddit": ["letshugotv"], "discord": ["LetsHugo"]}, "path": {"90-258, T": [[-698, -309], [-698, -298], [-670, -298], [-670, -308], [-677, -308], [-677, -314], [-679, -314], [-679, -320], [-680, -320], [-680, -322], [-681, -322], [-681, -323], [-682, -323], [-682, -324], [-684, -324], [-684, -325], [-685, -325], [-685, -326], [-695, -326], [-695, -325], [-696, -325], [-696, -324], [-697, -324], [-697, -322], [-698, -322], [-698, -321], [-699, -321], [-699, -309]]}, "center": {"90-258, T": [-687, -308]}}, +{"id": 1365, "name": "flag of belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors.", "links": {"subreddit": ["Belgium"], "discord": ["Belgium"]}, "path": {"165-258, T": [[792, 587], [873, 586], [872, 499], [823, 499], [824, 484], [828, 480], [823, 476], [794, 475], [794, 494], [792, 494]]}, "center": {"165-258, T": [832, 539]}}, +{"id": 1366, "name": "Lohr am Main", "description": "Fränkische Stadt", "links": {"website": ["https://de.wikipedia.org/wiki/Lohr_am_Main"], "discord": ["7NuqMxE"]}, "path": {"166-258, T": [[-106, 929], [-92, 929], [-92, 933], [-106, 933], [-106, 929], [-92, 929], [-92, 933], [-106, 933]]}, "center": {"166-258, T": [-92, 931]}}, +{"id": 1367, "name": "Logo historique FC Nantes", "description": "", "links": {"website": ["https://www.fcnantes.com/"], "subreddit": ["FCNantes"], "discord": ["peuples-jaune-vert-1007938714871275602"]}, "path": {"205-258, T": [[-367, 616], [-338, 616], [-336, 652], [-367, 652]]}, "center": {"205-258, T": [-352, 637]}}, +{"id": 1368, "name": "My God, Help Me to Survive This Deadly Love", "description": "Sometimes referred to as the Fraternal Kiss (German: Bruderkuss), is a graffiti painting by Dmitri Vrubel on the eastern side Berlin wall. Painted in 1990, it has become one of the best known pieces of Berlin wall graffiti art. The painting depicts Leonid Brezhnev and Erich Honecker in a socialist fraternal kiss, reproducing a photograph taken in 1979 during the 30th anniversary celebration of the foundation of the German Democratic Republic.", "links": {"website": ["https://en.wikipedia.org/wiki/My_God,_Help_Me_to_Survive_This_Deadly_Love"]}, "path": {"166-258, T": [[489, -996], [577, -996], [576, -940], [489, -941]]}, "center": {"166-258, T": [533, -968]}}, +{"id": 1369, "name": "Minesweeper pixel art", "description": "Minesweeper is a logic puzzle video game genre generally played on personal computers. The game features a grid of clickable squares, with hidden \"mines\" scattered throughout the board. The objective is to clear the board without detonating any mines, with help from clues about the number of neighboring mines in each field. Variants of Minesweeper have been made that expand on the basic concepts, such as Minesweeper X, Crossmines, and Minehunt. Minesweeper has been incorporated as a minigame in other games, such as RuneScape and Minecraft's 2015 April Fools update.\n\nThe origin of Minesweeper is unclear. According to TechRadar, the first version of the game was 1990's Microsoft Minesweeper, but Eurogamer says Mined-Out by Ian Andrew (1983) was the first Minesweeper game. Curt Johnson, the creator of Microsoft Minesweeper, acknowledges that his game's design was borrowed from another game, but it was not Mined-Out, and he does not remember which game it is.", "links": {"website": ["https://en.wikipedia.org/wiki/Minesweeper_(video_game)"], "subreddit": ["placede"]}, "path": {"166-258, T": [[321, -607], [341, -607], [341, -583], [321, -583]]}, "center": {"166-258, T": [331, -595]}}, {"id": 1371, "name": "Happy Slice", "description": "A homage to the a pizza delivery service owned by German streamers Trymacs and Knossi", "links": {"website": ["https://happy-slice.com/", "https://www.youtube.com/channel/UC6Gc4KQ1ueDnh8x7plaAD3w", "https://www.youtube.com/channel/UCtckLvYloMnsey8E5qTwWwA"]}, "path": {"2-30": [[420, -353], [434, -358], [436, -368], [440, -359], [449, -360], [449, -356], [455, -356], [454, -352], [450, -350], [451, -342], [435, -321], [420, -351]]}, "center": {"2-30": [437, -345]}}, -{"id": 1372, "name": "Reeze-Schwein", "description": "It's the pig of the popular german YouTuber and Twitch-Streamer \"Reeze\"", "links": {"website": ["https://www.twitch.tv/reeze"]}, "path": {"165-258": [[56, 738], [56, 787], [105, 787], [105, 738]]}, "center": {"165-258": [81, 763]}}, -{"id": 1373, "name": "Our Flag Means Death", "description": "Celebrating Season 2 and throwbacks from Season 1 of the HBO Max show Our Flag Means Death.", "links": {"subreddit": ["OurFlagMeansDeath"]}, "path": {"211-258": [[-952, -202], [-947, -202], [-947, -206], [-945, -206], [-945, -205], [-941, -205], [-941, -208], [-940, -208], [-940, -209], [-939, -209], [-939, -210], [-938, -210], [-938, -211], [-937, -211], [-937, -212], [-935, -212], [-935, -209], [-936, -209], [-936, -205], [-931, -205], [-931, -209], [-932, -209], [-932, -211], [-932, -212], [-931, -212], [-930, -212], [-930, -211], [-929, -211], [-929, -210], [-928, -210], [-928, -209], [-927, -209], [-927, -206], [-926, -206], [-926, -205], [-922, -205], [-922, -209], [-921, -209], [-921, -212], [-919, -212], [-919, -214], [-917, -214], [-917, -227], [-923, -227], [-923, -228], [-929, -228], [-929, -229], [-956, -229], [-956, -218], [-955, -218], [-955, -217], [-952, -217]]}, "center": {"211-258": [-943, -220]}}, -{"id": 1374, "name": "Peridot", "description": "Peridot is one of the Crystal Gems in Steven Universe.", "links": {"subreddit": ["peridot", "stevenuniverse"]}, "path": {"166-258": [[630, 977], [647, 977], [647, 976], [651, 976], [651, 959], [630, 959], [630, 960], [630, 959]]}, "center": {"166-258": [641, 968]}}, -{"id": 1375, "name": "Rabe Rudi & Koffer", "description": "Characters of the children's television series Siebenstein.\n\nSiebenstein is a German children's television series produced from 1988 to 2019. The series was originally broadcast on german TV channel ZDF and was taken over by the Kinderkanal (now KiKA) from 1997.\n\nThe series is about Mrs. Siebenstein, who runs a junk store where she talks to the brash raven Rudi and the know-it-all Suitcase and tells the two stories.", "links": {"website": ["https://de.wikipedia.org/wiki/Siebenstein"], "subreddit": ["placede"]}, "path": {"166-258": [[278, -550], [278, -565], [281, -567], [286, -567], [286, -566], [291, -566], [294, -568], [295, -571], [295, -574], [301, -580], [301, -581], [300, -581], [300, -588], [302, -590], [308, -590], [311, -587], [311, -582], [310, -581], [310, -580], [315, -575], [315, -573], [316, -572], [315, -571], [315, -569], [312, -566], [325, -567], [330, -567], [330, -550]]}, "center": {"166-258": [302, -561]}}, -{"id": 1376, "name": "cyrusR", "description": "CyrusR is an emote from CyrusTWO, a Swedish streamer. He and his community played a crucial role in keeping the artwork alive.", "links": {"website": ["https://www.twitch.tv/CyrusTWO", "https://www.youtube.com/@CyrusTv3"], "discord": ["btAdCFg"]}, "path": {"166-190": [[-709, 479], [-709, 498], [-690, 498], [-690, 479]], "191-211": [[-709, 481], [-709, 498], [-690, 498], [-690, 481]], "240-241": [[108, -244], [108, -215], [137, -215], [137, -244]], "242-253": [[113, -207], [110, -211], [108, -216], [108, -222], [106, -227], [104, -229], [104, -236], [107, -241], [113, -245], [118, -246], [130, -246], [135, -243], [137, -240], [140, -233], [138, -226], [137, -221], [136, -216], [133, -214], [133, -210], [133, -207]]}, "center": {"166-190": [-699, 489], "191-211": [-699, 490], "240-241": [123, -229], "242-253": [122, -230]}}, -{"id": 1377, "name": "Papaplatte and Stegi Troll", "description": "As a joke the german streamers \"Papaplatte\" and \"Stegi\" trolled the kick streamer \"Westcol\" to destroy the Rosins art by \"Rumathra\" after he stopped streaming.", "links": {"website": ["https://www.twitch.tv/papaplatte", "https://www.twitch.tv/stegi", "https://kick.com/westcol"]}, "path": {"165-258": [[-110, 901], [-55, 901], [-55, 902], [-42, 902], [-42, 927], [-110, 927]]}, "center": {"165-258": [-76, 914]}}, -{"id": 1378, "name": "Abaporu", "description": "A Famous Brazilian painting, made by Tarsila do Amaral in 1928.", "links": {"website": ["https://en.wikipedia.org/wiki/Abaporu"], "subreddit": ["brasil"], "discord": ["r-br", "cellbit"]}, "path": {"165-258": [[162, 507], [160, 510], [159, 516], [156, 521], [154, 526], [152, 533], [151, 542], [156, 547], [160, 549], [163, 551], [164, 549], [167, 549], [173, 550], [174, 548], [175, 549], [181, 549], [181, 550], [182, 551], [184, 551], [186, 549], [185, 509]]}, "center": {"165-258": [169, 532]}}, +{"id": 1372, "name": "Reeze-Schwein", "description": "It's the pig of the popular german YouTuber and Twitch-Streamer \"Reeze\"", "links": {"website": ["https://www.twitch.tv/reeze"]}, "path": {"165-258, T": [[56, 738], [56, 787], [105, 787], [105, 738]]}, "center": {"165-258, T": [81, 763]}}, +{"id": 1373, "name": "Our Flag Means Death", "description": "Celebrating Season 2 and throwbacks from Season 1 of the HBO Max show Our Flag Means Death.", "links": {"subreddit": ["OurFlagMeansDeath"]}, "path": {"211-258, T": [[-952, -202], [-947, -202], [-947, -206], [-945, -206], [-945, -205], [-941, -205], [-941, -208], [-940, -208], [-940, -209], [-939, -209], [-939, -210], [-938, -210], [-938, -211], [-937, -211], [-937, -212], [-935, -212], [-935, -209], [-936, -209], [-936, -205], [-931, -205], [-931, -209], [-932, -209], [-932, -211], [-932, -212], [-931, -212], [-930, -212], [-930, -211], [-929, -211], [-929, -210], [-928, -210], [-928, -209], [-927, -209], [-927, -206], [-926, -206], [-926, -205], [-922, -205], [-922, -209], [-921, -209], [-921, -212], [-919, -212], [-919, -214], [-917, -214], [-917, -227], [-923, -227], [-923, -228], [-929, -228], [-929, -229], [-956, -229], [-956, -218], [-955, -218], [-955, -217], [-952, -217]]}, "center": {"211-258, T": [-943, -220]}}, +{"id": 1374, "name": "Peridot", "description": "Peridot is one of the Crystal Gems in Steven Universe.", "links": {"subreddit": ["peridot", "stevenuniverse"]}, "path": {"166-258, T": [[630, 977], [647, 977], [647, 976], [651, 976], [651, 959], [630, 959], [630, 960], [630, 959]]}, "center": {"166-258, T": [641, 968]}}, +{"id": 1375, "name": "Rabe Rudi & Koffer", "description": "Characters of the children's television series Siebenstein.\n\nSiebenstein is a German children's television series produced from 1988 to 2019. The series was originally broadcast on german TV channel ZDF and was taken over by the Kinderkanal (now KiKA) from 1997.\n\nThe series is about Mrs. Siebenstein, who runs a junk store where she talks to the brash raven Rudi and the know-it-all Suitcase and tells the two stories.", "links": {"website": ["https://de.wikipedia.org/wiki/Siebenstein"], "subreddit": ["placede"]}, "path": {"166-258, T": [[278, -550], [278, -565], [281, -567], [286, -567], [286, -566], [291, -566], [294, -568], [295, -571], [295, -574], [301, -580], [301, -581], [300, -581], [300, -588], [302, -590], [308, -590], [311, -587], [311, -582], [310, -581], [310, -580], [315, -575], [315, -573], [316, -572], [315, -571], [315, -569], [312, -566], [325, -567], [330, -567], [330, -550]]}, "center": {"166-258, T": [302, -561]}}, +{"id": 1376, "name": "cyrusR", "description": "CyrusR is an emote from CyrusTWO, a Swedish streamer. He and his community played a crucial role in keeping the artwork alive.", "links": {"website": ["https://www.twitch.tv/CyrusTWO", "https://www.youtube.com/@CyrusTv3"], "discord": ["btAdCFg"]}, "path": {"166-190": [[-709, 479], [-709, 498], [-690, 498], [-690, 479]], "191-211": [[-709, 481], [-709, 498], [-690, 498], [-690, 481]], "240-241": [[108, -244], [108, -215], [137, -215], [137, -244]], "242-253, T": [[113, -207], [110, -211], [108, -216], [108, -222], [106, -227], [104, -229], [104, -236], [107, -241], [113, -245], [118, -246], [130, -246], [135, -243], [137, -240], [140, -233], [138, -226], [137, -221], [136, -216], [133, -214], [133, -210], [133, -207]]}, "center": {"166-190": [-699, 489], "191-211": [-699, 490], "240-241": [123, -229], "242-253, T": [122, -230]}}, +{"id": 1377, "name": "Papaplatte and Stegi Troll", "description": "As a joke the german streamers \"Papaplatte\" and \"Stegi\" trolled the kick streamer \"Westcol\" to destroy the Rosins art by \"Rumathra\" after he stopped streaming.", "links": {"website": ["https://www.twitch.tv/papaplatte", "https://www.twitch.tv/stegi", "https://kick.com/westcol"]}, "path": {"165-258, T": [[-110, 901], [-55, 901], [-55, 902], [-42, 902], [-42, 927], [-110, 927]]}, "center": {"165-258, T": [-76, 914]}}, +{"id": 1378, "name": "Abaporu", "description": "A Famous Brazilian painting, made by Tarsila do Amaral in 1928.", "links": {"website": ["https://en.wikipedia.org/wiki/Abaporu"], "subreddit": ["brasil"], "discord": ["r-br", "cellbit"]}, "path": {"165-258, T": [[162, 507], [160, 510], [159, 516], [156, 521], [154, 526], [152, 533], [151, 542], [156, 547], [160, 549], [163, 551], [164, 549], [167, 549], [173, 550], [174, 548], [175, 549], [181, 549], [181, 550], [182, 551], [184, 551], [186, 549], [185, 509]]}, "center": {"165-258, T": [169, 532]}}, {"id": 1379, "name": "Ohio", "description": "Ohio is a state in the United States located in the Midwest region. It has become a meme in recent years as a center of strange occurances.\n\nCreated by Foolish_Gamers and his community. Was replaced by a different artwork eventually", "links": {"subreddit": ["placeOhio"]}, "path": {"158-225": [[-13, 933], [55, 933], [54, 999], [-13, 999]]}, "center": {"158-225": [21, 966]}}, {"id": 1381, "name": "Flag of Bangladesh", "description": "Bangladesh, to the east of India on the Bay of Bengal, is a South Asian country marked by lush greenery and many waterways. The green on Bangladesh's flag represents the aforementioned greenery of the country. The red disc symbolizes the dawn of a new day and end of oppression, as well as the blood of those who died for the independence of the country - it is slightly offset towards the hoist so it appears to be centered when the flag is flying.\n\nThis art depicts the flag of Bangladesh with a Bengal tiger, National Martyrs' Memorial, Martyr Monument.", "links": {"website": ["https://en.wikipedia.org/wiki/Bangladesh"], "subreddit": ["Bangladesh"], "discord": ["bangladesh"]}, "path": {"127-249": [[348, -550], [348, -527], [388, -527], [388, -550], [348, -550], [348, -527], [348, -520], [388, -520], [388, -550], [366, -550]]}, "center": {"127-249": [368, -524]}}, -{"id": 1382, "name": "Project Moon Banner 3", "description": "A banner for South Korean indie game developer Project Moon, featuring the studio's logo and main characters of their games. From left to right, Angela from Lobotomy Corporation, Dante from Limbus Company, Roland from Library of Ruina, and Angela again from Library of Ruina", "links": {"subreddit": ["libraryofruina", "lobotomycorp", "limbuscompany", "Project_Moon"]}, "path": {"166-258": [[-13, 910], [-13, 932], [34, 932], [34, 910], [8, 910]]}, "center": {"166-258": [11, 921]}}, -{"id": 1383, "name": "O Carente", "description": "O Carente (The Needy) is a creature from Paranormal Order, a RPG Webseries created by the brazilian streamer Cellbit", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/O_Carente"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"166-258": [[508, 788], [474, 839], [467, 838], [497, 786], [507, 774], [495, 769], [494, 780], [492, 780], [489, 766], [475, 761], [467, 753], [473, 744], [461, 721], [457, 728], [467, 738], [457, 735], [466, 747], [456, 743], [466, 754], [456, 753], [471, 768], [460, 768], [470, 780], [462, 777], [467, 790], [457, 781], [452, 758], [446, 751], [454, 701], [460, 702], [473, 726], [491, 726], [466, 708], [460, 683], [480, 684], [520, 696], [497, 673], [476, 638], [466, 635], [412, 673], [407, 673], [410, 667], [462, 629], [477, 632], [503, 669], [507, 670], [485, 606], [498, 611], [512, 630], [518, 654], [516, 656], [507, 633], [496, 622], [507, 655], [519, 674], [530, 685], [534, 685], [532, 676], [538, 675], [529, 658], [535, 659], [542, 670], [546, 670], [550, 660], [548, 651], [539, 648], [542, 636], [545, 627], [540, 623], [537, 636], [533, 626], [536, 618], [545, 616], [544, 602], [529, 605], [532, 599], [546, 597], [549, 608], [553, 614], [561, 609], [564, 603], [560, 599], [552, 605], [557, 595], [564, 595], [568, 600], [566, 608], [586, 611], [602, 633], [608, 649], [607, 660], [607, 663], [598, 665], [589, 658], [590, 639], [577, 625], [568, 633], [574, 642], [574, 654], [575, 660], [583, 658], [588, 660], [594, 665], [597, 668], [607, 665], [611, 668], [627, 656], [617, 677], [644, 666], [657, 647], [656, 630], [648, 631], [652, 623], [646, 625], [649, 616], [642, 621], [648, 607], [632, 621], [618, 647], [616, 645], [628, 614], [649, 593], [664, 631], [664, 647], [648, 673], [630, 684], [647, 678], [677, 653], [679, 657], [646, 687], [674, 680], [667, 701], [657, 719], [666, 718], [680, 696], [686, 703], [682, 729], [687, 754], [687, 773], [683, 782], [682, 791], [683, 778], [666, 782], [683, 773], [683, 764], [667, 769], [682, 759], [679, 748], [668, 754], [675, 746], [676, 742], [675, 721], [662, 734], [643, 730], [654, 741], [663, 742], [659, 753], [651, 762], [640, 769], [642, 777], [648, 789], [651, 798], [650, 810], [650, 821], [643, 829], [630, 824], [617, 787], [612, 809], [613, 818], [609, 825], [608, 815], [602, 826], [602, 835], [598, 835], [596, 814], [592, 833], [590, 824], [597, 798], [582, 803], [580, 813], [583, 823], [584, 827], [576, 812], [580, 800], [596, 787], [588, 774], [578, 771], [583, 775], [582, 787], [579, 783], [577, 772], [568, 774], [574, 786], [576, 804], [568, 818], [569, 826], [579, 836], [577, 837], [563, 826], [563, 816], [568, 806], [566, 788], [549, 782], [551, 803], [561, 818], [562, 832], [559, 837], [557, 823], [548, 815], [547, 836], [542, 835], [541, 818], [536, 836], [535, 827], [534, 800], [508, 826], [497, 819], [498, 812], [519, 780], [548, 739], [542, 736], [529, 751], [528, 745], [538, 731], [535, 727], [513, 744], [517, 749], [511, 750], [512, 758], [518, 762], [540, 746], [514, 783]]}, "center": {"166-258": [594, 721]}}, -{"id": 1384, "name": "Foddacitron from JogandoFoddaci", "description": "This box contains an art dedicated to the mascot entitled \"Foddacitron\" from the channel JogandoFoddaci. The same is a Brazilian longplays channel known for its immature and very funny jokes among Brazilians. The Foddacitron is the \"video closing alarm\" that won the hearts of the channel's viewers after being created from a realistic version that is the main mascot: the Vaca Medonha. JogandoFoddaci is made up of great streamers and Youtubers: Gemaplys, Carteiro Cósmico and Saiko.", "links": {"website": ["https://www.youtube.com/@jogandofoddaci"], "subreddit": ["JogandoFoddaci"]}, "path": {"157-258": [[-98, 924], [-97, 924], [-96, 923], [-95, 922], [-94, 921], [-94, 920], [-93, 919], [-92, 918], [-91, 917], [-90, 916], [-90, 915], [-90, 914], [-90, 913], [-91, 912], [-92, 911], [-91, 910], [-90, 909], [-89, 908], [-88, 907], [-88, 906], [-89, 905], [-90, 904], [-91, 903], [-92, 904], [-93, 904], [-94, 905], [-95, 905], [-96, 904], [-97, 904], [-98, 903], [-99, 903], [-100, 902], [-101, 902], [-102, 902], [-103, 903], [-104, 903], [-105, 904], [-106, 904], [-107, 905], [-108, 905], [-109, 904], [-110, 904], [-111, 904], [-112, 905], [-113, 906], [-113, 907], [-112, 908], [-111, 909], [-110, 909], [-110, 910], [-110, 911], [-111, 912], [-112, 913], [-112, 914], [-112, 915], [-112, 916], [-110, 917], [-110, 918], [-109, 919], [-108, 920], [-108, 921], [-107, 922], [-106, 923], [-105, 924], [-104, 924]]}, "center": {"157-258": [-101, 913]}}, -{"id": 1385, "name": "Soleil's Tree", "description": "A tree created by the Discord user Soleilbordeux to represent Soleil's home state of Maine. The tree was maintained by the Jet Lag: The Game community as the tree is located on the nose of it's Shinkansen, and eventually gained a cult following. There was a brief period where Soleil's Tree was repurposed into the flag of Lebanon before ultimately being engulfed by light blue pixels from the Jet Lag: The Game community meant to represent the sky.", "links": {}, "path": {"166-258": [[-982, -5], [-982, 0], [-980, 0], [-980, -1], [-972, -1], [-972, -2], [-970, -2], [-970, -3], [-967, -3], [-968, -4], [-965, -4], [-963, -5], [-972, -5]]}, "center": {"166-258": [-975, -3]}}, -{"id": 1386, "name": "Minesweeper Community", "description": "Minesweeper gained considerable popularity internationally and in Germany, especially after its introduction on Windows to familiarize users with using the mouse. Minesweeper is iconic and a cultural asset for promoting the digital era and computer games.\nThat's why MinenMichel campaigned for a small minesweeper field to find its place on the German flag from r/placeDE.\nIf you are interested in Minesweeper, you can simply join our community on various platforms.", "links": {"website": ["https://minesweeper.online/"], "subreddit": ["Minesweeper"], "discord": ["6Qz8zsquKA"]}, "path": {"160-251": [[340, -607], [321, -607], [321, -583], [341, -583], [341, -585], [341, -607]]}, "center": {"160-251": [331, -595]}}, -{"id": 1387, "name": "Kr3w", "description": "Small group of People who love´s the Kr3w", "links": {"website": ["https://twitch.com/Kr3wDTB"], "discord": ["yfuAK9cP"]}, "path": {"166-258": [[412, -937], [425, -936], [425, -930], [412, -930]]}, "center": {"166-258": [418, -933]}}, -{"id": 1388, "name": "Ducks United", "description": "The great union of ducks from mutliple subreddit all united under one banner (https://discord.gg/ySXpJwzTzs)", "links": {"subreddit": ["placeducks", "duck_place", "shareducks"], "discord": ["ySXpJwzTzs"]}, "path": {"100-258": [[-538, -250], [-538, -244], [-536, -244], [-536, -243], [-534, -243], [-534, -242], [-532, -242], [-532, -241], [-531, -241], [-531, -224], [-501, -224], [-501, -251], [-538, -251]]}, "center": {"100-258": [-517, -238]}}, +{"id": 1382, "name": "Project Moon Banner 3", "description": "A banner for South Korean indie game developer Project Moon, featuring the studio's logo and main characters of their games. From left to right, Angela from Lobotomy Corporation, Dante from Limbus Company, Roland from Library of Ruina, and Angela again from Library of Ruina", "links": {"subreddit": ["libraryofruina", "lobotomycorp", "limbuscompany", "Project_Moon"]}, "path": {"166-258, T": [[-13, 910], [-13, 932], [34, 932], [34, 910], [8, 910]]}, "center": {"166-258, T": [11, 921]}}, +{"id": 1383, "name": "O Carente", "description": "O Carente (The Needy) is a creature from Paranormal Order, a RPG Webseries created by the brazilian streamer Cellbit", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/O_Carente"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"166-258, T": [[508, 788], [474, 839], [467, 838], [497, 786], [507, 774], [495, 769], [494, 780], [492, 780], [489, 766], [475, 761], [467, 753], [473, 744], [461, 721], [457, 728], [467, 738], [457, 735], [466, 747], [456, 743], [466, 754], [456, 753], [471, 768], [460, 768], [470, 780], [462, 777], [467, 790], [457, 781], [452, 758], [446, 751], [454, 701], [460, 702], [473, 726], [491, 726], [466, 708], [460, 683], [480, 684], [520, 696], [497, 673], [476, 638], [466, 635], [412, 673], [407, 673], [410, 667], [462, 629], [477, 632], [503, 669], [507, 670], [485, 606], [498, 611], [512, 630], [518, 654], [516, 656], [507, 633], [496, 622], [507, 655], [519, 674], [530, 685], [534, 685], [532, 676], [538, 675], [529, 658], [535, 659], [542, 670], [546, 670], [550, 660], [548, 651], [539, 648], [542, 636], [545, 627], [540, 623], [537, 636], [533, 626], [536, 618], [545, 616], [544, 602], [529, 605], [532, 599], [546, 597], [549, 608], [553, 614], [561, 609], [564, 603], [560, 599], [552, 605], [557, 595], [564, 595], [568, 600], [566, 608], [586, 611], [602, 633], [608, 649], [607, 660], [607, 663], [598, 665], [589, 658], [590, 639], [577, 625], [568, 633], [574, 642], [574, 654], [575, 660], [583, 658], [588, 660], [594, 665], [597, 668], [607, 665], [611, 668], [627, 656], [617, 677], [644, 666], [657, 647], [656, 630], [648, 631], [652, 623], [646, 625], [649, 616], [642, 621], [648, 607], [632, 621], [618, 647], [616, 645], [628, 614], [649, 593], [664, 631], [664, 647], [648, 673], [630, 684], [647, 678], [677, 653], [679, 657], [646, 687], [674, 680], [667, 701], [657, 719], [666, 718], [680, 696], [686, 703], [682, 729], [687, 754], [687, 773], [683, 782], [682, 791], [683, 778], [666, 782], [683, 773], [683, 764], [667, 769], [682, 759], [679, 748], [668, 754], [675, 746], [676, 742], [675, 721], [662, 734], [643, 730], [654, 741], [663, 742], [659, 753], [651, 762], [640, 769], [642, 777], [648, 789], [651, 798], [650, 810], [650, 821], [643, 829], [630, 824], [617, 787], [612, 809], [613, 818], [609, 825], [608, 815], [602, 826], [602, 835], [598, 835], [596, 814], [592, 833], [590, 824], [597, 798], [582, 803], [580, 813], [583, 823], [584, 827], [576, 812], [580, 800], [596, 787], [588, 774], [578, 771], [583, 775], [582, 787], [579, 783], [577, 772], [568, 774], [574, 786], [576, 804], [568, 818], [569, 826], [579, 836], [577, 837], [563, 826], [563, 816], [568, 806], [566, 788], [549, 782], [551, 803], [561, 818], [562, 832], [559, 837], [557, 823], [548, 815], [547, 836], [542, 835], [541, 818], [536, 836], [535, 827], [534, 800], [508, 826], [497, 819], [498, 812], [519, 780], [548, 739], [542, 736], [529, 751], [528, 745], [538, 731], [535, 727], [513, 744], [517, 749], [511, 750], [512, 758], [518, 762], [540, 746], [514, 783]]}, "center": {"166-258, T": [594, 721]}}, +{"id": 1384, "name": "Foddacitron from JogandoFoddaci", "description": "This box contains an art dedicated to the mascot entitled \"Foddacitron\" from the channel JogandoFoddaci. The same is a Brazilian longplays channel known for its immature and very funny jokes among Brazilians. The Foddacitron is the \"video closing alarm\" that won the hearts of the channel's viewers after being created from a realistic version that is the main mascot: the Vaca Medonha. JogandoFoddaci is made up of great streamers and Youtubers: Gemaplys, Carteiro Cósmico and Saiko.", "links": {"website": ["https://www.youtube.com/@jogandofoddaci"], "subreddit": ["JogandoFoddaci"]}, "path": {"157-258, T": [[-98, 924], [-97, 924], [-96, 923], [-95, 922], [-94, 921], [-94, 920], [-93, 919], [-92, 918], [-91, 917], [-90, 916], [-90, 915], [-90, 914], [-90, 913], [-91, 912], [-92, 911], [-91, 910], [-90, 909], [-89, 908], [-88, 907], [-88, 906], [-89, 905], [-90, 904], [-91, 903], [-92, 904], [-93, 904], [-94, 905], [-95, 905], [-96, 904], [-97, 904], [-98, 903], [-99, 903], [-100, 902], [-101, 902], [-102, 902], [-103, 903], [-104, 903], [-105, 904], [-106, 904], [-107, 905], [-108, 905], [-109, 904], [-110, 904], [-111, 904], [-112, 905], [-113, 906], [-113, 907], [-112, 908], [-111, 909], [-110, 909], [-110, 910], [-110, 911], [-111, 912], [-112, 913], [-112, 914], [-112, 915], [-112, 916], [-110, 917], [-110, 918], [-109, 919], [-108, 920], [-108, 921], [-107, 922], [-106, 923], [-105, 924], [-104, 924]]}, "center": {"157-258, T": [-101, 913]}}, +{"id": 1385, "name": "Soleil's Tree", "description": "A tree created by the Discord user Soleilbordeux to represent Soleil's home state of Maine. The tree was maintained by the Jet Lag: The Game community as the tree is located on the nose of it's Shinkansen, and eventually gained a cult following. There was a brief period where Soleil's Tree was repurposed into the flag of Lebanon before ultimately being engulfed by light blue pixels from the Jet Lag: The Game community meant to represent the sky.", "links": {}, "path": {"166-258, T": [[-982, -5], [-982, 0], [-980, 0], [-980, -1], [-972, -1], [-972, -2], [-970, -2], [-970, -3], [-967, -3], [-968, -4], [-965, -4], [-963, -5], [-972, -5]]}, "center": {"166-258, T": [-975, -3]}}, +{"id": 1386, "name": "Minesweeper Community", "description": "Minesweeper gained considerable popularity internationally and in Germany, especially after its introduction on Windows to familiarize users with using the mouse. Minesweeper is iconic and a cultural asset for promoting the digital era and computer games.\nThat's why MinenMichel campaigned for a small minesweeper field to find its place on the German flag from r/placeDE.\nIf you are interested in Minesweeper, you can simply join our community on various platforms.", "links": {"website": ["https://minesweeper.online/"], "subreddit": ["Minesweeper"], "discord": ["6Qz8zsquKA"]}, "path": {"160-251, T": [[340, -607], [321, -607], [321, -583], [341, -583], [341, -585], [341, -607]]}, "center": {"160-251, T": [331, -595]}}, +{"id": 1387, "name": "Kr3w", "description": "Small group of People who love´s the Kr3w", "links": {"website": ["https://twitch.com/Kr3wDTB"], "discord": ["yfuAK9cP"]}, "path": {"166-258, T": [[412, -937], [425, -936], [425, -930], [412, -930]]}, "center": {"166-258, T": [418, -933]}}, +{"id": 1388, "name": "Ducks United", "description": "The great union of ducks from mutliple subreddit all united under one banner (https://discord.gg/ySXpJwzTzs)", "links": {"subreddit": ["placeducks", "duck_place", "shareducks"], "discord": ["ySXpJwzTzs"]}, "path": {"100-258, T": [[-538, -250], [-538, -244], [-536, -244], [-536, -243], [-534, -243], [-534, -242], [-532, -242], [-532, -241], [-531, -241], [-531, -224], [-501, -224], [-501, -251], [-538, -251]]}, "center": {"100-258, T": [-517, -238]}}, {"id": 1389, "name": "Holo (Spice and Wolf)", "description": "Holo is a wolf harvest deity, she has chosen the form of a 15-year old girl, though she still retains her large white-tipped wolf tail, ears, and two sharp fangs. Her true form is that of a very large wolf which many people feared.\nShe made a promise with inhabitants from a town called Pasloe that she would ensure the town would have good wheat harvests year after year, however, as time went on, the townspeople slowly started to forsake Holo, regarding her as unnecessary. So then, Holo escapes from town in Lawrence's wagon and started traveling with him to see how much the world has changed since she has been in Pasloe.\n\nSpice and Wolf (狼と香辛料, Ōkami to Kōshinryō) is a Japanese light novel series that received an anime adaptation in 2007 and had two seasons, now has a remake announced for 2024.", "links": {"subreddit": ["SpiceandWolf"], "discord": ["YG5aP6un"]}, "path": {"147-167": [[-384, -908], [-384, -909], [-378, -909], [-377, -909], [-376, -910], [-375, -911], [-374, -912], [-373, -911], [-372, -910], [-372, -908], [-371, -908], [-371, -906], [-370, -906], [-370, -903], [-369, -903], [-369, -897], [-368, -895], [-367, -901], [-366, -904], [-364, -905], [-363, -904], [-362, -903], [-361, -901], [-361, -896], [-362, -895], [-362, -893], [-363, -892], [-363, -889], [-364, -888], [-364, -887], [-363, -886], [-361, -884], [-361, -882], [-360, -881], [-360, -880], [-361, -879], [-361, -878], [-364, -875], [-362, -877], [-363, -876], [-364, -875], [-364, -874], [-364, -873], [-365, -873], [-366, -872], [-367, -872], [-367, -871], [-368, -871], [-369, -871], [-370, -870], [-371, -870], [-371, -869], [-371, -868], [-370, -868], [-370, -867], [-370, -866], [-370, -865], [-371, -864], [-372, -863], [-373, -863], [-374, -863], [-375, -864], [-377, -863], [-376, -863], [-378, -863], [-379, -863], [-380, -864], [-380, -865], [-379, -866], [-378, -867], [-378, -868], [-379, -869], [-380, -869], [-381, -869], [-382, -869], [-383, -870], [-384, -871], [-385, -872], [-386, -873], [-386, -875], [-386, -877], [-385, -877], [-385, -878], [-384, -879], [-383, -880], [-382, -881], [-383, -882], [-384, -883], [-384, -884], [-383, -885], [-382, -886], [-381, -887], [-381, -888], [-381, -889], [-382, -888], [-383, -888], [-384, -888], [-385, -889], [-386, -889], [-387, -890], [-387, -891], [-387, -893], [-386, -893], [-385, -894], [-384, -894], [-383, -894], [-382, -895], [-381, -895], [-382, -896], [-382, -897], [-383, -897], [-383, -898], [-384, -899], [-384, -900], [-384, -902], [-384, -903], [-383, -904], [-383, -905], [-384, -906], [-385, -907]]}, "center": {"147-167": [-372, -881]}}, -{"id": 1390, "name": "Hitori Bocchi", "description": "from Hitori Bocchi no ◯◯ Seikatsu", "links": {"website": ["http://hitoribocchi.jp/"], "subreddit": ["HitoriBocchiOfficial"]}, "path": {"162-258": [[296, -883], [302, -883], [303, -882], [303, -881], [304, -880], [304, -876], [296, -876], [295, -877], [295, -882]]}, "center": {"162-258": [300, -879]}}, +{"id": 1390, "name": "Hitori Bocchi", "description": "from Hitori Bocchi no ◯◯ Seikatsu", "links": {"website": ["http://hitoribocchi.jp/"], "subreddit": ["HitoriBocchiOfficial"]}, "path": {"162-258, T": [[296, -883], [302, -883], [303, -882], [303, -881], [304, -880], [304, -876], [296, -876], [295, -877], [295, -882]]}, "center": {"162-258, T": [300, -879]}}, {"id": 1391, "name": "Flag of Austria", "description": "Austria is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"156-173": [[-891, 562], [-891, 616], [-709, 616], [-709, 585], [-805, 585], [-805, 562]], "174-208": [[-890, 562], [-843, 563], [-843, 616], [-891, 618]]}, "center": {"156-173": [-864, 589], "174-208": [-867, 590]}}, {"id": 1392, "name": "WESTCOL", "description": "Streamer 1# Colombiano, popular por sus trasmisiones en Twitch y Kick, y su variacion de eventos creados e sus invitaciones de gente famosa a sus streams, como \"Arcangel\", \"Nicky Jam\", \"Blssd\", etc. Actualmente su nombre sale en el Alfa Romero de la F1, tiene un contracto vigente de Kick, rodandolo aproximadamente a los 1M de Dolares, asi haciendole ser el contracto mas grande actualmente para un streamer latino.", "links": {"website": ["https://kick.com/westcol"], "subreddit": ["WestCOL"], "discord": ["WestCOL"]}, "path": {"214-242": [[-1000, 639], [-1000, 773], [-883, 773], [-883, 639]]}, "center": {"214-242": [-941, 706]}}, -{"id": 1393, "name": "Froggy Chair", "description": "The Froggy Chair is furniture item from the Nintendo game Animal Crossing. \n\nIt became a meme in 2019 due to its funny looks and in 2020 when the latest game in the series, New Horizons, did not include it until a update in 2021.\n\nIt has previously been in r/place 2022 near the top left corner of the canvas.", "links": {"website": ["https://[https://nookipedia.com/wiki/Item:Froggy_chair_(New_Horizons)](https://nookipedia.com/wiki/Item:Froggy_chair_(New_Horizons))"], "subreddit": ["AnimalCrossing"]}, "path": {"166-258": [[858, 228], [859, 227], [864, 227], [866, 225], [870, 225], [872, 227], [872, 233], [876, 237], [876, 246], [874, 248], [871, 248], [869, 246], [869, 245], [868, 245], [868, 249], [866, 251], [863, 251], [861, 249], [861, 247], [858, 247], [856, 245], [856, 239], [858, 237], [858, 235], [857, 234], [857, 229]]}, "center": {"166-258": [866, 237]}}, -{"id": 1394, "name": "The Atlas from No Man's Sky", "description": "The Atlas is an entity that plays a central role in the lore in the game No Man's Sky.\n\nThe Game:\nNo Man's Sky is an action-adventure survival game developed and published by Hello Games. It was released worldwide for the PlayStation 4 and Windows in August 2016, for Xbox One in July 2018, for the PlayStation 5 and Xbox Series X and Series S consoles in November 2020, for Nintendo Switch in October 2022, and for macOS in June 2023. The game is built around five pillars: exploration, survival, combat, trading and base building. Players are free to perform within the entirety of a procedurally generated deterministic open world universe, which includes over 18 quintillion planets. Through the game's procedural generation system, planets have their own ecosystems with unique forms of flora and fauna, and various alien species may engage the player in combat or trade within planetary systems. Players advance in the game by mining for resources to power and improve their equipment, buying and selling resources using credits earned by documenting flora and fauna or trading with the aforementioned lifeforms, building planetary bases and expanding space fleets, or otherwise following the game's overarching plot by seeking out the mystery around the entity known as The Atlas.", "links": {"website": ["https://www.nomanssky.com/", "https://en.wikipedia.org/wiki/No_Man%27s_Sky"], "subreddit": ["placede", "NoMansSkyTheGame"], "discord": ["nomanssky"]}, "path": {"149-258": [[-618, -970], [-636, -952], [-636, -950], [-618, -913], [-600, -950], [-600, -952]]}, "center": {"149-258": [-618, -948]}}, -{"id": 1395, "name": "Bag [Bleebtown]", "description": "Bag is the OC of Scratch user, 'Bleebtown'.", "links": {"website": ["https://scratch.mit.edu/users/Bleebtown"], "subreddit": ["Bleebtown"]}, "path": {"208-258": [[74, -159], [77, -159], [77, -160], [79, -160], [79, -159], [82, -159], [82, -161], [81, -161], [81, -163], [79, -165], [79, -168], [76, -168], [76, -167], [74, -167], [74, -164], [76, -164], [75, -163], [75, -161], [74, -161]]}, "center": {"208-258": [78, -162]}}, -{"id": 1396, "name": "Phosphophyllite", "description": "The Main Character of Land of the Lustrous (Houseki no Kuni). Organized by the discord server \"land of the lustruous r/place idk\" in alliance with the communities within the blue square.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous", "HousekiNoKuni"], "discord": ["gDKwmDndPA"]}, "path": {"150-258": [[284, -835], [303, -835], [305, -860], [300, -866], [296, -867], [290, -867], [281, -858], [283, -842]]}, "center": {"150-258": [293, -853]}}, -{"id": 1397, "name": "Tampa Bay Buccaneers", "description": "The Buccaneers, or Bucs for short, are an American football team based out of Tampa Bay, Florida. The Buccaneers are a part of the National Football League (NFL), and are two time Super Bowl Champions (XXXVII, and recently Super Bowl LV in 2021). \n\nFeatured is a green and yellow checkered border to represent Tampa's Soccer club, The Rowdies", "links": {"website": ["https://www.buccaneers.com/"], "subreddit": ["TampaPlace"], "discord": ["GegV2F6k"]}, "path": {"167-258": [[-931, 6], [-931, 11], [-930, 11], [-930, 15], [-905, 15], [-905, 6]]}, "center": {"167-258": [-918, 11]}}, +{"id": 1393, "name": "Froggy Chair", "description": "The Froggy Chair is furniture item from the Nintendo game Animal Crossing. \n\nIt became a meme in 2019 due to its funny looks and in 2020 when the latest game in the series, New Horizons, did not include it until a update in 2021.\n\nIt has previously been in r/place 2022 near the top left corner of the canvas.", "links": {"website": ["https://[https://nookipedia.com/wiki/Item:Froggy_chair_(New_Horizons)](https://nookipedia.com/wiki/Item:Froggy_chair_(New_Horizons))"], "subreddit": ["AnimalCrossing"]}, "path": {"166-258, T": [[858, 228], [859, 227], [864, 227], [866, 225], [870, 225], [872, 227], [872, 233], [876, 237], [876, 246], [874, 248], [871, 248], [869, 246], [869, 245], [868, 245], [868, 249], [866, 251], [863, 251], [861, 249], [861, 247], [858, 247], [856, 245], [856, 239], [858, 237], [858, 235], [857, 234], [857, 229]]}, "center": {"166-258, T": [866, 237]}}, +{"id": 1394, "name": "The Atlas from No Man's Sky", "description": "The Atlas is an entity that plays a central role in the lore in the game No Man's Sky.\n\nThe Game:\nNo Man's Sky is an action-adventure survival game developed and published by Hello Games. It was released worldwide for the PlayStation 4 and Windows in August 2016, for Xbox One in July 2018, for the PlayStation 5 and Xbox Series X and Series S consoles in November 2020, for Nintendo Switch in October 2022, and for macOS in June 2023. The game is built around five pillars: exploration, survival, combat, trading and base building. Players are free to perform within the entirety of a procedurally generated deterministic open world universe, which includes over 18 quintillion planets. Through the game's procedural generation system, planets have their own ecosystems with unique forms of flora and fauna, and various alien species may engage the player in combat or trade within planetary systems. Players advance in the game by mining for resources to power and improve their equipment, buying and selling resources using credits earned by documenting flora and fauna or trading with the aforementioned lifeforms, building planetary bases and expanding space fleets, or otherwise following the game's overarching plot by seeking out the mystery around the entity known as The Atlas.", "links": {"website": ["https://www.nomanssky.com/", "https://en.wikipedia.org/wiki/No_Man%27s_Sky"], "subreddit": ["placede", "NoMansSkyTheGame"], "discord": ["nomanssky"]}, "path": {"149-258, T": [[-618, -970], [-636, -952], [-636, -950], [-618, -913], [-600, -950], [-600, -952]]}, "center": {"149-258, T": [-618, -948]}}, +{"id": 1395, "name": "Bag [Bleebtown]", "description": "Bag is the OC of Scratch user, 'Bleebtown'.", "links": {"website": ["https://scratch.mit.edu/users/Bleebtown"], "subreddit": ["Bleebtown"]}, "path": {"208-258, T": [[74, -159], [77, -159], [77, -160], [79, -160], [79, -159], [82, -159], [82, -161], [81, -161], [81, -163], [79, -165], [79, -168], [76, -168], [76, -167], [74, -167], [74, -164], [76, -164], [75, -163], [75, -161], [74, -161]]}, "center": {"208-258, T": [78, -162]}}, +{"id": 1396, "name": "Phosphophyllite", "description": "The Main Character of Land of the Lustrous (Houseki no Kuni). Organized by the discord server \"land of the lustruous r/place idk\" in alliance with the communities within the blue square.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous", "HousekiNoKuni"], "discord": ["gDKwmDndPA"]}, "path": {"150-258, T": [[284, -835], [303, -835], [305, -860], [300, -866], [296, -867], [290, -867], [281, -858], [283, -842]]}, "center": {"150-258, T": [293, -853]}}, +{"id": 1397, "name": "Tampa Bay Buccaneers", "description": "The Buccaneers, or Bucs for short, are an American football team based out of Tampa Bay, Florida. The Buccaneers are a part of the National Football League (NFL), and are two time Super Bowl Champions (XXXVII, and recently Super Bowl LV in 2021). \n\nFeatured is a green and yellow checkered border to represent Tampa's Soccer club, The Rowdies", "links": {"website": ["https://www.buccaneers.com/"], "subreddit": ["TampaPlace"], "discord": ["GegV2F6k"]}, "path": {"167-258, T": [[-931, 6], [-931, 11], [-930, 11], [-930, 15], [-905, 15], [-905, 6]]}, "center": {"167-258, T": [-918, 11]}}, {"id": 1398, "name": "Lohr am Main", "description": "Fränkische Stadt", "links": {"website": ["https://de.wikipedia.org/wiki/Lohr_am_Main"], "discord": ["7NuqMxE"]}, "path": {"162": [[-72, 920], [-55, 920], [-55, 928], [-72, 928]]}, "center": {"162": [-63, 924]}}, -{"id": 1399, "name": "Fuleco", "description": "Fuleco was the official mascot of the 2014 FIFA World Cup, hosted in Brazil. Fuleco is a Brazilian three-banded armadillo, a species of armadillo which is native to Brazil and categorized as a vulnerable species on the IUCN Red List.", "links": {"website": ["https://en.wikipedia.org/wiki/Fuleco"]}, "path": {"167-258": [[241, 375], [243, 373], [241, 371], [241, 370], [238, 370], [236, 368], [235, 368], [235, 365], [233, 365], [231, 363], [231, 358], [232, 358], [232, 356], [234, 354], [237, 354], [240, 357], [240, 363], [239, 363], [239, 365], [241, 365], [241, 363], [242, 362], [242, 355], [244, 355], [245, 356], [245, 359], [250, 359], [252, 361], [254, 359], [254, 358], [256, 358], [256, 361], [255, 362], [254, 362], [254, 366], [253, 366], [250, 369], [250, 371], [251, 372], [251, 374], [250, 375], [250, 376], [253, 379], [253, 382], [250, 382], [249, 381], [248, 381], [247, 380], [247, 377], [244, 377], [244, 379], [245, 380], [245, 381], [243, 383], [239, 383], [238, 382], [238, 380], [241, 377]]}, "center": {"167-258": [247, 364]}}, -{"id": 1400, "name": "Flag of Colombia", "description": "In this flag we can see images that are representative of Colombia, in it we can recognize several typical products in Colombian culture which have been in the hands of the majority of Colombians, these being these.\n\nLa pony malta: which is a non-alcoholic malt drink made from malt, produced in Colombia by Cervecería Bavaria since 1956.\n\nEl chocoramo: a rectangular-shaped cake covered in chocolate distributed by the Colombian grocery company Ramo.\n\nThe Rey soap: It is a very common bar soap in Colombia created by the company Dersa, to which many uses are attributed in different areas.\n\nAguardiente Antioqueño: It is a bottle of liquor of the well-known Colombian brandy and it is one of the most famous in Colombia.\n\nGranito (cafe aguila roja): This is the mascot of \"cafe aguila roja\", a great Colombian coffee brand which is well recognized for its popular commercials and especially its Christmas commercial.\n\nArepa: The arepa is a food of pre-Columbian origin, made from ground dry corn dough or precooked cornmeal, circular and flattened. It is known under that name in Colombia and Venezuela. It is traditionally consumed in the cuisines of these countries.\n\nEmeralds: Emerald is the green variety of beryl, a beryllium and aluminum cyclosilicate mineral with the chemical formula Be₃Al₂(SiO₃)₆, which also contains small amounts of chromium and, in some cases, vanadium, which give it its characteristic green color. Colombia is well known for the quality of its emeralds and is a large exporter of these.\n\nWe can also see images that are not products but are representative for Colombians, these are:\n\nToucan: Toucans are a very large family of piciform birds, housing six genera and forty-two different species. They are characterized by having a highly developed beak and bright colors. They measure between 18 and 65 cm, being the toco toucan the largest, these birds are common in the tropical forests of Colombia, 21 species are known to be distributed throughout our territory.\n\nSombrero vueltiao: The sombrero vueltiao is a typical article of clothing from the Caribbean coast of Colombia, specifically from the savannas of the Colombian departments of Córdoba, Sucre and Bolívar, and one of the main pieces of crafts in Colombia. It has its origin in the Zenú indigenous culture, settled in the region of the Sinú river, in this case the toucan is wearing it because it looked very good with it.\n\nWilson: He is a Belgian shepherd from the Colombian army who was entrusted with the search mission for 4 children lost in the Amazon jungle of Guaviare. These children were found and admitted to a hospital, however Wilson got lost in the search, the image presented on the flag was made in honor of him.\n\nThe accordion: The accordion is a harmonic wind musical instrument, made up of a bellows, a fingerboard and two wooden harmonic boxes. At both ends, the bellows are closed by wooden boxes. This instrument is very popular in Colombian culture, being the leading instrument in the vallenato musical genre.\n\nOrchids: Orchids or orchids are a family of monocotyledonous plants that are distinguished by the complexity of their flowers and their ecological interactions with pollinating agents and with the fungi with which they form mycorrhizae. This is the emblematic flower of Colombia and so far we know that Of the 4,270 species of orchids registered in Colombia, 1,572 are endemic and, in addition, 274 genera of orchids are distributed in the different regions of Colombia.\n\nHummingbird: Very small bird, with bright plumage and bright colors, a very long and fine beak, which allows it to feed on the nectar of flowers, very short legs and very long wings; it flies suspended in the air, thanks to the strength and speed with which it beats its wings, and it is the only bird capable of flying backwards; There are many different species, spread throughout America, of the 264 registered species, 177 are located in Colombia, being in this place the peak of diversity of this bird.\n\nYellow butterfly: We have put these butterflies in honor of Gabriel José de la Concordia García Márquez Colombian writer who was well known for his works of the magical realism genre and for including yellow butterflies in his works.\n\nLogo of \" El minuto de Dios\": The Organization Corporation El Minuto de Dios is a Colombian social non-profit organization, of Catholic religious origin founded by the Servant of God Father Rafael García Herreros, this has a television space every day in one of the best-known television channels in Colombia, in this case it has been honored to José Diego Jaramillo Cuartas who was the presenter of this space.\n\nErnesto Perez's frailejon: This is a drawing made by Ernesto Perez which represents an Espeletia, whose members are commonly known as frailejones, is a genus of plants of the Asteraceae family, native to Colombia, Venezuela and Ecuador. It includes 175 described species and of these, only 73 accepted, this was created to give an environmental message and was very loved by Colombians.\n\nBetty la fea: This image represents the protagonist of the acclaimed Colombian novel I am Ugly Betty, which was nominated for many awards in different categories including an entry to Guinness records 2010 for being the most successful novel in the history of television.\n\nBurrita: This animal is a very representative animal in Colombia since in the past it was one of the main labor forces in Colombia, this animal has been welcomed as a figure of agricultural work and has been represented in various ways such as statues, handicrafts, paintings and music, this idea was proposed by the coastal vtuber Ryumivt.\n\nDesign made by ansichan: AnsiChan is a Colombian youtuber and streamer, cosplayer, this figure was made to show appreciation to this Colombian streamer for helping out in the r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"162-170": [[-1000, 843], [-883, 843], [-883, 970], [-1000, 970]], "171-258": [[-1001, 843], [-883, 843], [-883, 970], [-1001, 970], [-1016, 969], [-1018, 942], [-1028, 900], [-1030, 869], [-1034, 842]], "251-258": [[-1037, 766], [-1000, 767], [-1000, 744], [-975, 744], [-974, 740], [-959, 740], [-939, 765], [-906, 765], [-905, 776], [-886, 776], [-898, 784], [-897, 800], [-884, 809], [-884, 945], [-872, 956], [-871, 969], [-1016, 968], [-1027, 911], [-1031, 871], [-1036, 850], [-1037, 800], [-1038, 797], [-1038, 766]]}, "center": {"162-170": [-941, 907], "171-258": [-947, 906], "251-258": [-960, 842]}}, +{"id": 1399, "name": "Fuleco", "description": "Fuleco was the official mascot of the 2014 FIFA World Cup, hosted in Brazil. Fuleco is a Brazilian three-banded armadillo, a species of armadillo which is native to Brazil and categorized as a vulnerable species on the IUCN Red List.", "links": {"website": ["https://en.wikipedia.org/wiki/Fuleco"]}, "path": {"167-258, T": [[241, 375], [243, 373], [241, 371], [241, 370], [238, 370], [236, 368], [235, 368], [235, 365], [233, 365], [231, 363], [231, 358], [232, 358], [232, 356], [234, 354], [237, 354], [240, 357], [240, 363], [239, 363], [239, 365], [241, 365], [241, 363], [242, 362], [242, 355], [244, 355], [245, 356], [245, 359], [250, 359], [252, 361], [254, 359], [254, 358], [256, 358], [256, 361], [255, 362], [254, 362], [254, 366], [253, 366], [250, 369], [250, 371], [251, 372], [251, 374], [250, 375], [250, 376], [253, 379], [253, 382], [250, 382], [249, 381], [248, 381], [247, 380], [247, 377], [244, 377], [244, 379], [245, 380], [245, 381], [243, 383], [239, 383], [238, 382], [238, 380], [241, 377]]}, "center": {"167-258, T": [247, 364]}}, +{"id": 1400, "name": "Flag of Colombia", "description": "In this flag we can see images that are representative of Colombia, in it we can recognize several typical products in Colombian culture which have been in the hands of the majority of Colombians, these being these.\n\nLa pony malta: which is a non-alcoholic malt drink made from malt, produced in Colombia by Cervecería Bavaria since 1956.\n\nEl chocoramo: a rectangular-shaped cake covered in chocolate distributed by the Colombian grocery company Ramo.\n\nThe Rey soap: It is a very common bar soap in Colombia created by the company Dersa, to which many uses are attributed in different areas.\n\nAguardiente Antioqueño: It is a bottle of liquor of the well-known Colombian brandy and it is one of the most famous in Colombia.\n\nGranito (cafe aguila roja): This is the mascot of \"cafe aguila roja\", a great Colombian coffee brand which is well recognized for its popular commercials and especially its Christmas commercial.\n\nArepa: The arepa is a food of pre-Columbian origin, made from ground dry corn dough or precooked cornmeal, circular and flattened. It is known under that name in Colombia and Venezuela. It is traditionally consumed in the cuisines of these countries.\n\nEmeralds: Emerald is the green variety of beryl, a beryllium and aluminum cyclosilicate mineral with the chemical formula Be₃Al₂(SiO₃)₆, which also contains small amounts of chromium and, in some cases, vanadium, which give it its characteristic green color. Colombia is well known for the quality of its emeralds and is a large exporter of these.\n\nWe can also see images that are not products but are representative for Colombians, these are:\n\nToucan: Toucans are a very large family of piciform birds, housing six genera and forty-two different species. They are characterized by having a highly developed beak and bright colors. They measure between 18 and 65 cm, being the toco toucan the largest, these birds are common in the tropical forests of Colombia, 21 species are known to be distributed throughout our territory.\n\nSombrero vueltiao: The sombrero vueltiao is a typical article of clothing from the Caribbean coast of Colombia, specifically from the savannas of the Colombian departments of Córdoba, Sucre and Bolívar, and one of the main pieces of crafts in Colombia. It has its origin in the Zenú indigenous culture, settled in the region of the Sinú river, in this case the toucan is wearing it because it looked very good with it.\n\nWilson: He is a Belgian shepherd from the Colombian army who was entrusted with the search mission for 4 children lost in the Amazon jungle of Guaviare. These children were found and admitted to a hospital, however Wilson got lost in the search, the image presented on the flag was made in honor of him.\n\nThe accordion: The accordion is a harmonic wind musical instrument, made up of a bellows, a fingerboard and two wooden harmonic boxes. At both ends, the bellows are closed by wooden boxes. This instrument is very popular in Colombian culture, being the leading instrument in the vallenato musical genre.\n\nOrchids: Orchids or orchids are a family of monocotyledonous plants that are distinguished by the complexity of their flowers and their ecological interactions with pollinating agents and with the fungi with which they form mycorrhizae. This is the emblematic flower of Colombia and so far we know that Of the 4,270 species of orchids registered in Colombia, 1,572 are endemic and, in addition, 274 genera of orchids are distributed in the different regions of Colombia.\n\nHummingbird: Very small bird, with bright plumage and bright colors, a very long and fine beak, which allows it to feed on the nectar of flowers, very short legs and very long wings; it flies suspended in the air, thanks to the strength and speed with which it beats its wings, and it is the only bird capable of flying backwards; There are many different species, spread throughout America, of the 264 registered species, 177 are located in Colombia, being in this place the peak of diversity of this bird.\n\nYellow butterfly: We have put these butterflies in honor of Gabriel José de la Concordia García Márquez Colombian writer who was well known for his works of the magical realism genre and for including yellow butterflies in his works.\n\nLogo of \" El minuto de Dios\": The Organization Corporation El Minuto de Dios is a Colombian social non-profit organization, of Catholic religious origin founded by the Servant of God Father Rafael García Herreros, this has a television space every day in one of the best-known television channels in Colombia, in this case it has been honored to José Diego Jaramillo Cuartas who was the presenter of this space.\n\nErnesto Perez's frailejon: This is a drawing made by Ernesto Perez which represents an Espeletia, whose members are commonly known as frailejones, is a genus of plants of the Asteraceae family, native to Colombia, Venezuela and Ecuador. It includes 175 described species and of these, only 73 accepted, this was created to give an environmental message and was very loved by Colombians.\n\nBetty la fea: This image represents the protagonist of the acclaimed Colombian novel I am Ugly Betty, which was nominated for many awards in different categories including an entry to Guinness records 2010 for being the most successful novel in the history of television.\n\nBurrita: This animal is a very representative animal in Colombia since in the past it was one of the main labor forces in Colombia, this animal has been welcomed as a figure of agricultural work and has been represented in various ways such as statues, handicrafts, paintings and music, this idea was proposed by the coastal vtuber Ryumivt.\n\nDesign made by ansichan: AnsiChan is a Colombian youtuber and streamer, cosplayer, this figure was made to show appreciation to this Colombian streamer for helping out in the r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"162-170": [[-1000, 843], [-883, 843], [-883, 970], [-1000, 970]], "251-258": [[-1037, 766], [-1000, 767], [-1000, 744], [-975, 744], [-974, 740], [-959, 740], [-939, 765], [-906, 765], [-905, 776], [-886, 776], [-898, 784], [-897, 800], [-884, 809], [-884, 945], [-872, 956], [-871, 969], [-1016, 968], [-1027, 911], [-1031, 871], [-1036, 850], [-1037, 800], [-1038, 797], [-1038, 766]], "171-258, T": [[-1001, 843], [-883, 843], [-883, 970], [-1001, 970], [-1016, 969], [-1018, 942], [-1028, 900], [-1030, 869], [-1034, 842]]}, "center": {"162-170": [-941, 907], "251-258": [-960, 842], "171-258, T": [-947, 906]}}, {"id": 1401, "name": "Flag of Chile", "description": "Chile is a country in western South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Flag_of_Chile"], "subreddit": ["chile"]}, "path": {"168-199": [[146, 885], [146, 966], [381, 966], [381, 955], [327, 955], [327, 914], [299, 914], [299, 885]], "159-160": [[146, 885], [146, 966], [269, 966], [268, 885]], "161-167": [[146, 885], [146, 966], [327, 966], [327, 915], [299, 914], [299, 885]]}, "center": {"168-199": [227, 926], "159-160": [208, 926], "161-167": [227, 926]}}, -{"id": 1402, "name": "Flag of the United States", "description": "The United States is a country in North America.\nThis is the secondary flag of r/AmericanFlagInPlace. The Americans fought the Germans, eventually winning and securing their flag. Furthermore, they fended off streamers, coordinated attacks, and formed alliances with many other comminutes.", "links": {"website": ["https://en.wikipedia.org/wiki/United_States", "https://en.wikipedia.org/wiki/Flag_of_the_United_States"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"155-258": [[772, 780], [772, 898], [1000, 898], [1000, 780]]}, "center": {"155-258": [886, 839]}}, -{"id": 1403, "name": "Flag of Morocco", "description": "Morocco is a country on the northwest coast of Africa. On this particular space,there is the Flag of Morocco,a green pentagram on a red background. The country's national animal,The Atlas Lion,is represented in this flag as well. We can also see a Moroccan football Jersey,above a World Cup trophy with and the inscription: \"4th Place\" As a way to remember Morocco's historic run during the 2022 Football World Cup. Also, a drawing of Hoalid Regragui, coach of Moroccan Team with his famous phrase that he asked the supporters to say as it reminded him of when he was coaching Wydad Athletic Club, « Sir, Sir, Sir » which means « Go, Go, Go » in Moroccan dialect", "links": {"website": ["https://en.wikipedia.org/wiki/Morocco", "https://en.wikipedia.org/wiki/Flag_of_Morocco"], "subreddit": ["Morocco"]}, "path": {"157": [[792, 586], [873, 586], [873, 780], [792, 780]], "158": [[793, 586], [873, 586], [873, 780], [751, 780], [751, 703], [693, 703], [693, 666], [793, 666]], "155-156": [[793, 586], [873, 586], [873, 704], [793, 704]], "159-258": [[792, 586], [792, 666], [693, 666], [693, 780], [873, 780], [873, 586]]}, "center": {"157": [833, 683], "158": [814, 721], "155-156": [833, 645], "159-258": [811, 721]}}, -{"id": 1405, "name": "Vietnam poster", "description": "This poster was created by the Vietnamese community, led by the initiative of streamer MixiGaming.\n\nThe poster consists of the logo of MixiGaming channel and the name of the country to the top, then an outline of the country's territory, which includes a depiction of Paracel and Spratly islands (which the country calls \"Hoàng Sa\" and \"Trường Sa\" respectively) along with the text \"Truong Sa, Hoang Sa belong to Vietnam\" stating the country's territorial claim on the islands, and a drawing of four figures representing various classes of the Vietnamese society. The background is red with a bronze drum face pattern and a star in yellow, following the flag of the country. The bottom-left corner has the name of the r/mixiFA subreddit for fans of MixiGaming channel.\n\nDuring the last day of the event, rogue members of the Vietnamese community started to use bots to expand the flag very quickly to the right and destroying everything in its path until it was stopped.", "links": {"website": ["https://en.wikipedia.org/wiki/Vietnam", "https://en.wikipedia.org/wiki/Flag_of_Vietnam", "https://vi.wikipedia.org/wiki/%C4%90%E1%BB%99_Mixi"], "subreddit": ["mixifa", "VietNam"], "discord": ["mixigaming"]}, "path": {"152-154": [[873, 442], [873, 500], [1000, 500], [1000, 442]], "155-201": [[873, 442], [873, 780], [1000, 780], [1000, 442]], "202-258": [[873, 444], [873, 780], [1111, 780], [1111, 444]]}, "center": {"152-154": [937, 471], "155-201": [937, 611], "202-258": [992, 612]}}, -{"id": 1406, "name": "Flag of Paraguay", "description": "Paraguay is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguay", "https://en.wikipedia.org/wiki/Flag_of_Paraguay"], "subreddit": ["Paraguay"]}, "path": {"155-258": [[55, 788], [55, 854], [146, 854], [146, 788]]}, "center": {"155-258": [101, 821]}}, -{"id": 1407, "name": "Flag of Switzerland", "description": "Switzerland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"155-258": [[-557, 744], [-557, 747], [-560, 750], [-560, 773], [-547, 783], [-547, 801], [-556, 806], [-560, 811], [-560, 944], [-556, 948], [-556, 957], [-531, 957], [-531, 946], [-515, 946], [-515, 942], [-501, 942], [-501, 744]]}, "center": {"155-258": [-530, 851]}}, -{"id": 1408, "name": "Pilfrut", "description": "A popular flavored milk drink in Bolivia", "links": {"website": ["https://pilandina.com.bo/producto/pilfrut-manzana-190-ml/"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[222, 761], [219, 770], [248, 757], [247, 774], [212, 774], [212, 757], [249, 757], [223, 770], [217, 763]]}, "center": {"250-258": [241, 768]}}, -{"id": 1409, "name": "Portugal", "description": "The country of Portugal as it appears on a map, along with its 18 districts and autonomous regions of Azores and Madeira.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal"], "discord": ["TugaPlace"]}, "path": {"155-163": [[381, 500], [500, 500], [500, 1000], [381, 1000]], "164-258": [[381, 555], [381, 871], [500, 871], [500, 555]]}, "center": {"155-163": [441, 750], "164-258": [441, 713]}}, -{"id": 1410, "name": "Scotland - Nessie & Unicone", "description": "Scotland is a country in the United Kingdom. The lower portion depicts Nessie/the Loch Ness Monster wearing a tam o' shanter cap and the upper portion depicts a thistle and a unicorn, Scotland's national animal with a traffic cone horn referencing the statue of the Duke of Wellington which resides in Glasgow, often seen with a cone on its head. Also included is a silhouette of the country as well as the triskelion, an ancient Celtic symbol. The right side was gifted to our allies, Your Turn to Die and Made of Styrofoam.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland"], "subreddit": ["Scotland"]}, "path": {"155-164": [[722, 839], [722, 898], [772, 898], [772, 839]], "165-258": [[722, 839], [722, 898], [772, 898], [772, 880], [758, 880], [758, 839]]}, "center": {"155-164": [747, 869], "165-258": [740, 858]}}, -{"id": 1411, "name": "Flag of Ireland", "description": "The Republic of Ireland is a country in northwestern Europe. It consists of most of the island of Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"156-258": [[637, 856], [637, 902], [644, 913], [644, 915], [719, 915], [719, 898], [722, 898], [722, 856]]}, "center": {"156-258": [680, 886]}}, -{"id": 1412, "name": "Flag of Ecuador", "description": "Ecuador is a country in northwestern South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador", "https://en.wikipedia.org/wiki/Flag_of_Ecuador"], "subreddit": ["ecuador"]}, "path": {"156-258": [[316, 672], [316, 750], [381, 750], [381, 672]]}, "center": {"156-258": [349, 711]}}, +{"id": 1402, "name": "Flag of the United States", "description": "The United States is a country in North America.\nThis is the secondary flag of r/AmericanFlagInPlace. The Americans fought the Germans, eventually winning and securing their flag. Furthermore, they fended off streamers, coordinated attacks, and formed alliances with many other comminutes.", "links": {"website": ["https://en.wikipedia.org/wiki/United_States", "https://en.wikipedia.org/wiki/Flag_of_the_United_States"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"155-258, T": [[772, 780], [772, 898], [1000, 898], [1000, 780]]}, "center": {"155-258, T": [886, 839]}}, +{"id": 1403, "name": "Flag of Morocco", "description": "Morocco is a country on the northwest coast of Africa. On this particular space,there is the Flag of Morocco,a green pentagram on a red background. The country's national animal,The Atlas Lion,is represented in this flag as well. We can also see a Moroccan football Jersey,above a World Cup trophy with and the inscription: \"4th Place\" As a way to remember Morocco's historic run during the 2022 Football World Cup. Also, a drawing of Hoalid Regragui, coach of Moroccan Team with his famous phrase that he asked the supporters to say as it reminded him of when he was coaching Wydad Athletic Club, « Sir, Sir, Sir » which means « Go, Go, Go » in Moroccan dialect", "links": {"website": ["https://en.wikipedia.org/wiki/Morocco", "https://en.wikipedia.org/wiki/Flag_of_Morocco"], "subreddit": ["Morocco"]}, "path": {"157": [[792, 586], [873, 586], [873, 780], [792, 780]], "158": [[793, 586], [873, 586], [873, 780], [751, 780], [751, 703], [693, 703], [693, 666], [793, 666]], "155-156": [[793, 586], [873, 586], [873, 704], [793, 704]], "159-258, T": [[792, 586], [792, 666], [693, 666], [693, 780], [873, 780], [873, 586]]}, "center": {"157": [833, 683], "158": [814, 721], "155-156": [833, 645], "159-258, T": [811, 721]}}, +{"id": 1405, "name": "Vietnam poster", "description": "This poster was created by the Vietnamese community, led by the initiative of streamer MixiGaming.\n\nThe poster consists of the logo of MixiGaming channel and the name of the country to the top, then an outline of the country's territory, which includes a depiction of Paracel and Spratly islands (which the country calls \"Hoàng Sa\" and \"Trường Sa\" respectively) along with the text \"Truong Sa, Hoang Sa belong to Vietnam\" stating the country's territorial claim on the islands, and a drawing of four figures representing various classes of the Vietnamese society. The background is red with a bronze drum face pattern and a star in yellow, following the flag of the country. The bottom-left corner has the name of the r/mixiFA subreddit for fans of MixiGaming channel.\n\nDuring the last day of the event, rogue members of the Vietnamese community started to use bots to expand the flag very quickly to the right and destroying everything in its path until it was stopped.", "links": {"website": ["https://en.wikipedia.org/wiki/Vietnam", "https://en.wikipedia.org/wiki/Flag_of_Vietnam", "https://vi.wikipedia.org/wiki/%C4%90%E1%BB%99_Mixi"], "subreddit": ["mixifa", "VietNam"], "discord": ["mixigaming"]}, "path": {"152-154": [[873, 442], [873, 500], [1000, 500], [1000, 442]], "155-201": [[873, 442], [873, 780], [1000, 780], [1000, 442]], "202-258, T": [[873, 444], [873, 780], [1111, 780], [1111, 444]]}, "center": {"152-154": [937, 471], "155-201": [937, 611], "202-258, T": [992, 612]}}, +{"id": 1406, "name": "Flag of Paraguay", "description": "Paraguay is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguay", "https://en.wikipedia.org/wiki/Flag_of_Paraguay"], "subreddit": ["Paraguay"]}, "path": {"155-258, T": [[55, 788], [55, 854], [146, 854], [146, 788]]}, "center": {"155-258, T": [101, 821]}}, +{"id": 1407, "name": "Flag of Switzerland", "description": "Switzerland is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"155-258, T": [[-557, 744], [-557, 747], [-560, 750], [-560, 773], [-547, 783], [-547, 801], [-556, 806], [-560, 811], [-560, 944], [-556, 948], [-556, 957], [-531, 957], [-531, 946], [-515, 946], [-515, 942], [-501, 942], [-501, 744]]}, "center": {"155-258, T": [-530, 851]}}, +{"id": 1408, "name": "Pilfrut", "description": "A popular flavored milk drink in Bolivia", "links": {"website": ["https://pilandina.com.bo/producto/pilfrut-manzana-190-ml/"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[222, 761], [219, 770], [248, 757], [247, 774], [212, 774], [212, 757], [249, 757], [223, 770], [217, 763]]}, "center": {"250-258, T": [241, 768]}}, +{"id": 1409, "name": "Portugal", "description": "The country of Portugal as it appears on a map, along with its 18 districts and autonomous regions of Azores and Madeira.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal"], "discord": ["TugaPlace"]}, "path": {"155-163": [[381, 500], [500, 500], [500, 1000], [381, 1000]], "164-258, T": [[381, 555], [381, 871], [500, 871], [500, 555]]}, "center": {"155-163": [441, 750], "164-258, T": [441, 713]}}, +{"id": 1410, "name": "Scotland - Nessie & Unicone", "description": "Scotland is a country in the United Kingdom. The lower portion depicts Nessie/the Loch Ness Monster wearing a tam o' shanter cap and the upper portion depicts a thistle and a unicorn, Scotland's national animal with a traffic cone horn referencing the statue of the Duke of Wellington which resides in Glasgow, often seen with a cone on its head. Also included is a silhouette of the country as well as the triskelion, an ancient Celtic symbol. The right side was gifted to our allies, Your Turn to Die and Made of Styrofoam.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland"], "subreddit": ["Scotland"]}, "path": {"155-164": [[722, 839], [722, 898], [772, 898], [772, 839]], "165-258, T": [[722, 839], [722, 898], [772, 898], [772, 880], [758, 880], [758, 839]]}, "center": {"155-164": [747, 869], "165-258, T": [740, 858]}}, +{"id": 1411, "name": "Flag of Ireland", "description": "The Republic of Ireland is a country in northwestern Europe. It consists of most of the island of Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"156-258, T": [[637, 856], [637, 902], [644, 913], [644, 915], [719, 915], [719, 898], [722, 898], [722, 856]]}, "center": {"156-258, T": [680, 886]}}, +{"id": 1412, "name": "Flag of Ecuador", "description": "Ecuador is a country in northwestern South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador", "https://en.wikipedia.org/wiki/Flag_of_Ecuador"], "subreddit": ["ecuador"]}, "path": {"156-258, T": [[316, 672], [316, 750], [381, 750], [381, 672]]}, "center": {"156-258, T": [349, 711]}}, {"id": 1413, "name": "Flag of Germany", "description": "Germany is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"]}, "path": {"155-159": [[-368, 616], [-368, 745], [-111, 745], [-111, 616]], "160-202": [[-154, 616], [-154, 745], [-113, 745], [-113, 616]]}, "center": {"155-159": [-239, 681], "160-202": [-133, 681]}}, -{"id": 1414, "name": "Ayrton Senna´s Helmet", "description": "Ayrton Senna da Silva was a Brazilian racing driver who won the Formula One World Drivers' Championship in 1988, 1990, and 1991. Senna is one of three Formula One drivers from Brazil to win the World Championship and won 41 Grands Prix and 65 pole positions, with the latter being the record until 2006. He left us during the 1994 Imola Grand Prix.", "links": {"website": ["https://en.wikipedia.org/wiki/Ayrton_Senna"]}, "path": {"167-258": [[-671, -658], [-673, -642], [-668, -634], [-653, -635], [-647, -642], [-649, -650], [-655, -657], [-664, -660], [-671, -659]]}, "center": {"167-258": [-661, -646]}}, -{"id": 1415, "name": "PPT - Power Point Tenshi - Amane Kanata", "description": "PPT is a nickname for Amane Kanata of Hololive, a vtuber. It stands for Power Point Tenshi, because she originally debuted using a power point presentation and is canonically an angel (Tenshi in Japanese). It also has a few other meanings, such as Perfect Pitch Tenshi, as Kanata also has a perfect pitch when singing.", "links": {"website": ["https://hololive.hololivepro.com/en/talents/amane-kanata/"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"168-258": [[-575, -326], [-575, -321], [-558, -321], [-558, -327], [-575, -327]]}, "center": {"168-258": [-566, -324]}}, -{"id": 1416, "name": "Frühschwimmerabzeichen Seepferdchen", "description": "The early swimmer is a preparatory qualification in swimming. Colloquially, it is called Seepferdchen in Germany and Pinguin in Austria because of the swimming badge. It is not a proof of safe swimming, so intensive observation of the swimmer remains necessary.\n\nIn Germany, the examination requirements are defined in the \"German Examination Regulations for Swimming\". These are published by the swimming associations that are members of the Federal Association for the Promotion of Swimming Education (BFS). The benefits for adults and children are the same. Up to 17 years of age, one receives the early swimmer's badge - Seepferdchen -, from 18 years of age, the beginner's certificate for adults.\n\nRequirements (as of January 1, 2020):\n- Knowledge of swimming rules\n- Jump from the edge of the pool followed by a 25 m swim in a prone or supine position (rough form, while swimming in a prone position, exhale recognizably into the water)\n- Retrieving an object with the hands from shoulder-deep water (shoulder depth related to the examinee)\n\nThe next level after the early swimmer or beginner certificate is the age-independent German swimming badge in bronze. Until 2019, children and young people could take the youth swimming badge. Even in the GDR, the swimming badges (basic as well as three proficiency levels) could already be awarded to children.", "links": {"website": ["https://de.wikipedia.org/wiki/Fr%C3%BChschwimmer"], "subreddit": ["placede"]}, "path": {"167-258": [[-712, -936], [-712, -929], [-710, -928], [-709, -927], [-708, -926], [-707, -926], [-706, -925], [-702, -925], [-701, -926], [-700, -926], [-697, -929], [-696, -930], [-696, -936], [-700, -940], [-701, -940], [-702, -941], [-706, -941], [-707, -940], [-708, -940], [-709, -939]]}, "center": {"167-258": [-704, -933]}}, -{"id": 1417, "name": "Oleksandr Matsievskiy", "description": "Oleksandr Ihorovych Matsievskyi was a Moldovan-born Ukrainian Ground Forces member and captive executed by Russian soldiers during the Battle of Bakhmut.\n\nZelenskiy said Matsievskyi had become a symbol of resistance to the Ukrainian people.", "links": {"website": ["https://savelife.in.ua/en/donate-en/#donate-army-card-monthly"]}, "path": {"167-258": [[37, -129], [51, -129], [55, -126], [57, -122], [57, -100], [53, -94], [57, -91], [58, -77], [25, -76], [26, -81], [28, -90], [31, -93], [28, -99], [28, -108], [30, -108], [26, -114]]}, "center": {"167-258": [43, -113]}}, -{"id": 1418, "name": "Indian Train Coach", "description": "A familiar sight to many Indians, this depicts not just the coach of an indian train but also a famous scene from the Hindi movie Dilwale Dulhania Le Jayenge", "links": {"subreddit": ["indiaplace"], "discord": ["AkMhfejtkP"]}, "path": {"168-258": [[364, -194], [364, -222], [500, -221], [500, -193]]}, "center": {"168-258": [432, -207]}}, +{"id": 1414, "name": "Ayrton Senna´s Helmet", "description": "Ayrton Senna da Silva was a Brazilian racing driver who won the Formula One World Drivers' Championship in 1988, 1990, and 1991. Senna is one of three Formula One drivers from Brazil to win the World Championship and won 41 Grands Prix and 65 pole positions, with the latter being the record until 2006. He left us during the 1994 Imola Grand Prix.", "links": {"website": ["https://en.wikipedia.org/wiki/Ayrton_Senna"]}, "path": {"167-258, T": [[-671, -658], [-673, -642], [-668, -634], [-653, -635], [-647, -642], [-649, -650], [-655, -657], [-664, -660], [-671, -659]]}, "center": {"167-258, T": [-661, -646]}}, +{"id": 1415, "name": "PPT - Power Point Tenshi - Amane Kanata", "description": "PPT is a nickname for Amane Kanata of Hololive, a vtuber. It stands for Power Point Tenshi, because she originally debuted using a power point presentation and is canonically an angel (Tenshi in Japanese). It also has a few other meanings, such as Perfect Pitch Tenshi, as Kanata also has a perfect pitch when singing.", "links": {"website": ["https://hololive.hololivepro.com/en/talents/amane-kanata/"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"168-258, T": [[-575, -326], [-575, -321], [-558, -321], [-558, -327], [-575, -327]]}, "center": {"168-258, T": [-566, -324]}}, +{"id": 1416, "name": "Frühschwimmerabzeichen Seepferdchen", "description": "The early swimmer is a preparatory qualification in swimming. Colloquially, it is called Seepferdchen in Germany and Pinguin in Austria because of the swimming badge. It is not a proof of safe swimming, so intensive observation of the swimmer remains necessary.\n\nIn Germany, the examination requirements are defined in the \"German Examination Regulations for Swimming\". These are published by the swimming associations that are members of the Federal Association for the Promotion of Swimming Education (BFS). The benefits for adults and children are the same. Up to 17 years of age, one receives the early swimmer's badge - Seepferdchen -, from 18 years of age, the beginner's certificate for adults.\n\nRequirements (as of January 1, 2020):\n- Knowledge of swimming rules\n- Jump from the edge of the pool followed by a 25 m swim in a prone or supine position (rough form, while swimming in a prone position, exhale recognizably into the water)\n- Retrieving an object with the hands from shoulder-deep water (shoulder depth related to the examinee)\n\nThe next level after the early swimmer or beginner certificate is the age-independent German swimming badge in bronze. Until 2019, children and young people could take the youth swimming badge. Even in the GDR, the swimming badges (basic as well as three proficiency levels) could already be awarded to children.", "links": {"website": ["https://de.wikipedia.org/wiki/Fr%C3%BChschwimmer"], "subreddit": ["placede"]}, "path": {"167-258, T": [[-712, -936], [-712, -929], [-710, -928], [-709, -927], [-708, -926], [-707, -926], [-706, -925], [-702, -925], [-701, -926], [-700, -926], [-697, -929], [-696, -930], [-696, -936], [-700, -940], [-701, -940], [-702, -941], [-706, -941], [-707, -940], [-708, -940], [-709, -939]]}, "center": {"167-258, T": [-704, -933]}}, +{"id": 1417, "name": "Oleksandr Matsievskiy", "description": "Oleksandr Ihorovych Matsievskyi was a Moldovan-born Ukrainian Ground Forces member and captive executed by Russian soldiers during the Battle of Bakhmut.\n\nZelenskiy said Matsievskyi had become a symbol of resistance to the Ukrainian people.", "links": {"website": ["https://savelife.in.ua/en/donate-en/#donate-army-card-monthly"]}, "path": {"167-258, T": [[37, -129], [51, -129], [55, -126], [57, -122], [57, -100], [53, -94], [57, -91], [58, -77], [25, -76], [26, -81], [28, -90], [31, -93], [28, -99], [28, -108], [30, -108], [26, -114]]}, "center": {"167-258, T": [43, -113]}}, +{"id": 1418, "name": "Indian Train Coach", "description": "A familiar sight to many Indians, this depicts not just the coach of an indian train but also a famous scene from the Hindi movie Dilwale Dulhania Le Jayenge", "links": {"subreddit": ["indiaplace"], "discord": ["AkMhfejtkP"]}, "path": {"168-258, T": [[364, -194], [364, -222], [500, -221], [500, -193]]}, "center": {"168-258, T": [432, -207]}}, {"id": 1419, "name": "Musky Husky's logo", "description": "A furry Discord private server.", "links": {}, "path": {"163-188": [[-3, -674], [3, -678], [6, -678], [12, -674], [12, -667], [6, -663], [3, -663], [-3, -667]], "189-199": [[182, -651], [188, -655], [191, -655], [197, -651], [197, -644], [191, -640], [188, -640], [182, -644]]}, "center": {"163-188": [5, -670], "189-199": [190, -647]}}, -{"id": 1420, "name": "Juninho Pernambucano", "description": "Antônio Augusto Ribeiro Reis Júnior, commonly known as Juninho Pernambucano or simply Juninho, is a Brazilian former professional footballer who was most recently the sporting director of French club Olympique Lyonnais.\nHe also played for the french team between 2001 and 2009. This art was a collab between r/Brasil and the OL Discord Server.\nMerci amis lyonnais!", "links": {"website": ["https://en.wikipedia.org/wiki/Juninho_Pernambucano"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"163-258": [[236, 517], [242, 519], [250, 519], [256, 517], [256, 504], [263, 503], [262, 498], [261, 496], [259, 495], [256, 493], [255, 492], [237, 492], [233, 497], [231, 496], [229, 499], [230, 502], [230, 503], [234, 504], [236, 504]]}, "center": {"163-258": [246, 502]}}, -{"id": 1421, "name": "Tiemiau", "description": "A frog representing Tiemiau community", "links": {"website": ["https://twitch.tv/tiemiau"]}, "path": {"167-258": [[28, 501], [55, 501], [54, 528], [28, 528]]}, "center": {"167-258": [41, 514]}}, -{"id": 1422, "name": "José Carioca (Zé Carioca)", "description": "José \"Zé\" Carioca is a cartoon parrot created by the Brazilian cartoonist José Carlos de Brito and shown to Walt Disney on his trip to Rio de Janeiro in 1941.\nThe Walt Disney Company then incorporated the idea, being introduced in the 1942 film Saludos Amigos as a friend of Donald Duck, described by Time as \"a dapper Brazilian parrot, who is as superior to Donald Duck as the Duck was to Mickey Mouse.\" He speaks Brazilian Portuguese. José is from Rio de Janeiro, Brazil (thus the name \"Carioca\", which is a term used for a person born in Rio).", "links": {"website": ["https://en.wikipedia.org/wiki/José_Carioca"], "discord": ["r-br", "cellbit"]}, "path": {"166-258": [[207, 550], [210, 553], [211, 552], [214, 554], [214, 556], [218, 556], [218, 559], [217, 563], [214, 566], [211, 566], [211, 572], [212, 573], [215, 575], [215, 579], [212, 582], [216, 585], [214, 588], [203, 587], [204, 584], [205, 583], [203, 581], [200, 581], [196, 582], [197, 584], [195, 587], [183, 587], [184, 583], [189, 583], [189, 580], [192, 578], [194, 574], [192, 574], [191, 571], [188, 569], [186, 566], [186, 563], [189, 563], [191, 565], [195, 568], [197, 568], [199, 565], [202, 564], [202, 562], [201, 560], [203, 559], [200, 556]]}, "center": {"166-258": [203, 573]}}, -{"id": 1424, "name": "Bye Echo VR", "description": "A logo of the game, Echo VR. Echo was the most popular VR esport and pioneered the genre. However, the game's servers will close on August 1st, 2023.", "links": {"subreddit": ["EchoArena"], "discord": ["9UqjJJdd"]}, "path": {"160-258": [[327, 914], [358, 914], [358, 915], [359, 915], [360, 915], [361, 915], [361, 923], [327, 923], [300, 923], [300, 914]]}, "center": {"160-258": [331, 919]}}, -{"id": 1425, "name": "Emília", "description": "Emília, also known as the Marchioness of Rabicó , A Boneca Gente (\"The Human Doll\") is a fictional character and a titular of the Sítio do Picapau Amarelo series of fantasy novels written by Brazilian author Monteiro Lobato.", "links": {"website": ["https://en.wikipedia.org/wiki/Emilia_(Sítio_do_Picapau_Amarelo)"]}, "path": {"168-258": [[247, 308], [247, 332], [263, 332], [263, 306], [247, 306]]}, "center": {"168-258": [255, 319]}}, +{"id": 1420, "name": "Juninho Pernambucano", "description": "Antônio Augusto Ribeiro Reis Júnior, commonly known as Juninho Pernambucano or simply Juninho, is a Brazilian former professional footballer who was most recently the sporting director of French club Olympique Lyonnais.\nHe also played for the french team between 2001 and 2009. This art was a collab between r/Brasil and the OL Discord Server.\nMerci amis lyonnais!", "links": {"website": ["https://en.wikipedia.org/wiki/Juninho_Pernambucano"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"163-258, T": [[236, 517], [242, 519], [250, 519], [256, 517], [256, 504], [263, 503], [262, 498], [261, 496], [259, 495], [256, 493], [255, 492], [237, 492], [233, 497], [231, 496], [229, 499], [230, 502], [230, 503], [234, 504], [236, 504]]}, "center": {"163-258, T": [246, 502]}}, +{"id": 1421, "name": "Tiemiau", "description": "A frog representing Tiemiau community", "links": {"website": ["https://twitch.tv/tiemiau"]}, "path": {"167-258, T": [[28, 501], [55, 501], [54, 528], [28, 528]]}, "center": {"167-258, T": [41, 514]}}, +{"id": 1422, "name": "José Carioca (Zé Carioca)", "description": "José \"Zé\" Carioca is a cartoon parrot created by the Brazilian cartoonist José Carlos de Brito and shown to Walt Disney on his trip to Rio de Janeiro in 1941.\nThe Walt Disney Company then incorporated the idea, being introduced in the 1942 film Saludos Amigos as a friend of Donald Duck, described by Time as \"a dapper Brazilian parrot, who is as superior to Donald Duck as the Duck was to Mickey Mouse.\" He speaks Brazilian Portuguese. José is from Rio de Janeiro, Brazil (thus the name \"Carioca\", which is a term used for a person born in Rio).", "links": {"website": ["https://en.wikipedia.org/wiki/José_Carioca"], "discord": ["r-br", "cellbit"]}, "path": {"166-258, T": [[207, 550], [210, 553], [211, 552], [214, 554], [214, 556], [218, 556], [218, 559], [217, 563], [214, 566], [211, 566], [211, 572], [212, 573], [215, 575], [215, 579], [212, 582], [216, 585], [214, 588], [203, 587], [204, 584], [205, 583], [203, 581], [200, 581], [196, 582], [197, 584], [195, 587], [183, 587], [184, 583], [189, 583], [189, 580], [192, 578], [194, 574], [192, 574], [191, 571], [188, 569], [186, 566], [186, 563], [189, 563], [191, 565], [195, 568], [197, 568], [199, 565], [202, 564], [202, 562], [201, 560], [203, 559], [200, 556]]}, "center": {"166-258, T": [203, 573]}}, +{"id": 1424, "name": "Bye Echo VR", "description": "A logo of the game, Echo VR. Echo was the most popular VR esport and pioneered the genre. However, the game's servers will close on August 1st, 2023.", "links": {"subreddit": ["EchoArena"], "discord": ["9UqjJJdd"]}, "path": {"160-258, T": [[327, 914], [358, 914], [358, 915], [359, 915], [360, 915], [361, 915], [361, 923], [327, 923], [300, 923], [300, 914]]}, "center": {"160-258, T": [331, 919]}}, +{"id": 1425, "name": "Emília", "description": "Emília, also known as the Marchioness of Rabicó , A Boneca Gente (\"The Human Doll\") is a fictional character and a titular of the Sítio do Picapau Amarelo series of fantasy novels written by Brazilian author Monteiro Lobato.", "links": {"website": ["https://en.wikipedia.org/wiki/Emilia_(Sítio_do_Picapau_Amarelo)"]}, "path": {"168-258, T": [[247, 308], [247, 332], [263, 332], [263, 306], [247, 306]]}, "center": {"168-258, T": [255, 319]}}, {"id": 1426, "name": "Bis", "description": "Bis is a crispy wafer stuffed and coated with milk chocolate produced by Lacta do Brasil since 1942. \n\nThe name Bis is a reference to the Brazilian expression \"pedir Bis\", which means asking or wanting something one more time.", "links": {"website": ["https://www.lacta.com.br/lacta/bis"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"158-229": [[251, 282], [251, 290], [266, 291], [265, 282]]}, "center": {"158-229": [259, 286]}}, -{"id": 1429, "name": "Etika Memorial", "description": "Desmond Daniel Amofah (May 12, 1990 – c. June 19, 2019), better known as Etika, was an American YouTuber and online streamer. He became known online for his highly energetic reactions to Super Smash Bros. character reveals and Nintendo Direct presentations, and for playing and reacting to various games.", "links": {"subreddit": ["etikaworldnetwork"]}, "path": {"166-258": [[-794, 161], [-794, 178], [-775, 178], [-776, 162]]}, "center": {"166-258": [-785, 170]}}, -{"id": 1430, "name": "Arkeanos", "description": "Arkeanos is a team of Spanish content creators on YouTube and Twitch. \"Siempre con el Jefecito.\"", "links": {"website": ["https://www.youtube.com/channel/UCggHFGmLDDStxyM-uy9DYnQ"], "subreddit": ["Arkeanos"]}, "path": {"164-258": [[-709, 498], [-709, 619], [-580, 618], [-580, 498]]}, "center": {"164-258": [-645, 558]}}, -{"id": 1431, "name": "Flag of Bosnia and Herzegovina", "description": "This artwork depicts the Bosnian and Herzegovinian flag. On it is a symbol of remembrance of the Srebrenica genocide, the Flower of Srebrenica, a pattern from traditional Bosnian carpets, and a traditional coffee drinking set.", "links": {"subreddit": ["bih"], "discord": ["gukrSH2Q"]}, "path": {"166-258": [[318, 164], [318, 184], [363, 184], [363, 164]]}, "center": {"166-258": [341, 174]}}, -{"id": 1432, "name": "Taiwan independence flag", "description": "The flag is commonly used to represent the Taiwanese independence movement from China. It is officially used by the World Taiwanese Congress, a yearly meeting of organizations supporting formal independence of Taiwan.", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan_independence_movement"], "subreddit": ["placeTW"], "discord": ["8xSQKCHSnT"]}, "path": {"161-258": [[-92, 565], [-92, 586], [-64, 586], [-64, 565]]}, "center": {"161-258": [-78, 576]}}, -{"id": 1433, "name": "The Ride Never Ends", "description": "\"The Ride Never Ends\" is a phrase from the Mr. Bones' Wild Ride meme, originating from the game Roller Coaster Tycoon 2. The meme features a model car amusement park ride that lasts for 4 years of in-game time. At the end of the ride, the only path from the ride exit is back to the entrance, with a nearby sign saying \"The Ride Never Ends\".\n\nThe phrase has become a meme on its own within the My Little Pony community to represent how the fandom will never die despite the end of the show Friendship is Magic in 2019, though on the early morning of Day 6, they changed the text of the word \"Never\" to red to depict how r/place was going for too long.", "links": {"website": ["https://knowyourmeme.com/memes/mr-bones-wild-ride"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"165-258": [[500, 895], [572, 895], [572, 901], [500, 901]]}, "center": {"165-258": [536, 898]}}, -{"id": 1434, "name": "Derpy Hooves", "description": "Derpy Hooves is a background character from the TV series My Little Pony: Friendship is Magic. Derpy was first noticed by fans in 2010 for her cross-eyed look in the pilot episode of the show, and became a fan favorite ever since.", "links": {"website": ["https://mlp.fandom.com/wiki/Derpy"], "subreddit": ["mylittlepony", "MLP_Pixel"], "discord": ["adQYFgeVC9", "3h7Xpz2XgD"]}, "path": {"155-258": [[683, 809], [679, 811], [672, 822], [672, 826], [679, 833], [675, 833], [673, 835], [673, 836], [678, 840], [680, 840], [681, 841], [681, 843], [677, 848], [677, 851], [679, 853], [683, 853], [687, 851], [693, 851], [693, 852], [696, 855], [701, 855], [707, 847], [711, 847], [711, 842], [719, 838], [719, 836], [717, 834], [713, 834], [719, 828], [719, 826], [717, 824], [716, 824], [712, 826], [712, 824], [710, 822], [709, 822], [704, 827], [704, 823], [705, 822], [705, 815], [702, 811], [700, 811], [698, 813], [697, 813], [695, 811], [690, 809]]}, "center": {"155-258": [694, 837]}}, -{"id": 1435, "name": "Twilight Sparkle", "description": "Twilight Sparkle is one of the main ponies (Mane 6) from the TV series My Little Pony: Friendship is Magic, Generation 4 of the My Little Pony series. She is a unicorn representing the element of magic. Her final version is wearing her element of harmony in the form of a crown.", "links": {"website": ["https://mlp.fandom.com/wiki/Twilight_Sparkle"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"155-163": [[645, 800], [643, 802], [641, 806], [641, 807], [644, 807], [644, 810], [640, 810], [640, 818], [639, 820], [639, 822], [641, 824], [643, 824], [643, 818], [640, 818], [640, 810], [644, 810], [644, 811], [662, 811], [662, 809], [660, 807], [657, 807], [657, 804], [654, 801], [651, 800]], "164-258": [[545, 845], [543, 845], [543, 842], [545, 842], [545, 843], [547, 841], [549, 843], [550, 842], [551, 842], [551, 846], [552, 846], [554, 844], [556, 846], [556, 849], [555, 850], [555, 851], [556, 852], [560, 852], [561, 853], [561, 856], [543, 856], [543, 869], [541, 869], [539, 867], [539, 865], [541, 863], [543, 863], [543, 856], [541, 854], [542, 853], [542, 852], [539, 852], [542, 846], [543, 846]]}, "center": {"155-163": [650, 806], "164-258": [548, 850]}}, -{"id": 1436, "name": "French J", "description": "J, officially known as Serial Designation J, is a disassembly drone from the YouTube series Murder Drones, produced by Glitch Productions. She is holding a French flag here with her armband recolored to match, as this piece was made in an alliance with r/placeFR.", "links": {"website": ["https://murder-drones.fandom.com/wiki/Serial_Designation_J"], "subreddit": ["MurderDrones", "placeFR", "france"], "discord": ["placeFR", "g9T4JbyDar"]}, "path": {"159-163": [[-407, 836], [-413, 821], [-425, 824], [-422, 834], [-411, 830], [-409, 836], [-412, 839], [-404, 849], [-398, 844], [-396, 846], [-396, 849], [-398, 853], [-398, 855], [-398, 858], [-399, 865], [-400, 871], [-401, 877], [-402, 881], [-402, 886], [-401, 887], [-399, 885], [-397, 881], [-396, 877], [-394, 874], [-394, 871], [-395, 868], [-395, 866], [-394, 863], [-392, 860], [-392, 859], [-390, 860], [-386, 866], [-388, 871], [-380, 887], [-379, 887], [-379, 874], [-383, 867], [-385, 859], [-382, 857], [-380, 859], [-377, 858], [-377, 854], [-377, 851], [-377, 849], [-376, 847], [-374, 845], [-375, 841], [-375, 837], [-374, 836], [-374, 831], [-372, 826], [-372, 820], [-376, 814], [-378, 814], [-379, 813], [-382, 813], [-383, 814], [-385, 814], [-389, 813], [-391, 813], [-393, 812], [-394, 814], [-396, 814], [-397, 812], [-400, 814], [-403, 816], [-404, 818], [-406, 819], [-407, 821], [-407, 824], [-406, 827], [-404, 830], [-403, 832], [-404, 835], [-403, 837], [-403, 838]], "168-211": [[-359, 740], [-358, 741], [-357, 742], [-356, 742], [-355, 741], [-354, 740], [-353, 739], [-353, 737], [-354, 736], [-354, 734], [-353, 733], [-353, 731], [-352, 730], [-351, 729], [-350, 728], [-350, 725], [-351, 724], [-351, 720], [-350, 719], [-350, 714], [-349, 713], [-349, 710], [-348, 709], [-348, 702], [-349, 701], [-350, 700], [-351, 699], [-352, 698], [-355, 697], [-356, 696], [-357, 695], [-358, 695], [-359, 696], [-360, 696], [-361, 697], [-362, 696], [-370, 696], [-371, 697], [-372, 698], [-372, 697], [-371, 696], [-372, 695], [-375, 695], [-376, 696], [-376, 697], [-377, 697], [-378, 697], [-379, 698], [-380, 698], [-381, 699], [-381, 700], [-382, 701], [-383, 702], [-384, 703], [-385, 704], [-385, 709], [-384, 710], [-383, 711], [-383, 712], [-382, 713], [-382, 714], [-381, 715], [-381, 722], [-382, 721], [-383, 720], [-384, 720], [-385, 719], [-385, 717], [-386, 716], [-386, 713], [-387, 712], [-387, 710], [-388, 709], [-388, 706], [-389, 705], [-389, 704], [-390, 703], [-392, 703], [-393, 704], [-398, 705], [-400, 705], [-401, 706], [-403, 707], [-403, 709], [-402, 710], [-402, 712], [-401, 713], [-401, 715], [-400, 716], [-399, 717], [-398, 716], [-395, 716], [-394, 715], [-391, 715], [-390, 714], [-388, 714], [-388, 717], [-387, 718], [-387, 719], [-386, 720], [-386, 721], [-387, 721], [-388, 722], [-388, 724], [-387, 725], [-387, 726], [-386, 727], [-385, 728], [-385, 729], [-384, 730], [-384, 731], [-383, 732], [-382, 733], [-379, 733], [-378, 732], [-377, 731], [-376, 730], [-375, 729], [-374, 728], [-373, 729], [-373, 732], [-374, 733], [-374, 734], [-375, 735], [-375, 737], [-376, 738], [-376, 741], [-375, 742], [-376, 743], [-376, 750], [-377, 754], [-378, 755], [-378, 759], [-379, 760], [-379, 765], [-380, 766], [-380, 770], [-379, 771], [-377, 771], [-376, 770], [-376, 769], [-375, 768], [-375, 767], [-374, 766], [-374, 764], [-373, 763], [-373, 762], [-372, 761], [-372, 760], [-370, 758], [-370, 753], [-371, 752], [-371, 749], [-370, 748], [-370, 746], [-369, 745], [-369, 743], [-367, 743], [-367, 744], [-366, 745], [-366, 746], [-365, 747], [-365, 748], [-364, 749], [-364, 753], [-365, 754], [-365, 757], [-364, 758], [-364, 759], [-363, 760], [-362, 762], [-361, 764], [-360, 766], [-358, 770], [-357, 771], [-356, 771], [-355, 770], [-355, 759], [-356, 758], [-357, 755], [-358, 753], [-359, 751], [-359, 747], [-360, 746], [-360, 743], [-361, 742], [-361, 741], [-359, 740], [-358, 741]], "212-238": [[-359, 740], [-358, 741], [-357, 742], [-356, 742], [-355, 741], [-354, 740], [-353, 739], [-353, 737], [-354, 736], [-354, 734], [-353, 733], [-353, 731], [-352, 730], [-351, 729], [-350, 728], [-350, 725], [-351, 724], [-351, 720], [-350, 719], [-350, 714], [-349, 713], [-349, 710], [-348, 709], [-348, 702], [-349, 701], [-350, 700], [-351, 699], [-352, 698], [-355, 697], [-356, 696], [-357, 695], [-358, 695], [-359, 696], [-360, 696], [-361, 697], [-362, 696], [-370, 696], [-371, 697], [-372, 698], [-372, 697], [-371, 696], [-372, 695], [-375, 695], [-376, 696], [-376, 697], [-377, 697], [-378, 697], [-379, 698], [-380, 698], [-381, 699], [-381, 700], [-382, 701], [-383, 702], [-384, 703], [-385, 704], [-385, 709], [-384, 710], [-383, 711], [-383, 712], [-382, 713], [-382, 714], [-381, 715], [-381, 722], [-382, 721], [-383, 720], [-384, 720], [-385, 719], [-385, 717], [-386, 716], [-386, 713], [-387, 712], [-387, 710], [-388, 709], [-388, 706], [-389, 705], [-389, 704], [-390, 703], [-392, 703], [-393, 704], [-398, 705], [-400, 705], [-401, 706], [-403, 707], [-403, 709], [-402, 710], [-402, 712], [-401, 713], [-401, 715], [-400, 716], [-399, 717], [-398, 716], [-395, 716], [-394, 715], [-391, 715], [-390, 714], [-388, 714], [-388, 717], [-387, 718], [-387, 719], [-386, 720], [-386, 721], [-387, 721], [-388, 722], [-388, 724], [-387, 725], [-387, 726], [-386, 727], [-385, 728], [-385, 729], [-384, 730], [-384, 731], [-383, 732], [-382, 733], [-379, 733], [-378, 732], [-377, 731], [-376, 730], [-375, 729], [-374, 728], [-373, 729], [-373, 732], [-374, 733], [-374, 734], [-375, 735], [-375, 737], [-376, 738], [-376, 741], [-375, 742], [-376, 743], [-376, 750], [-377, 754], [-378, 755], [-378, 759], [-379, 760], [-379, 765], [-380, 766], [-380, 770], [-379, 771], [-377, 771], [-376, 770], [-376, 769], [-375, 768], [-375, 767], [-374, 766], [-374, 764], [-373, 763], [-373, 762], [-372, 761], [-372, 760], [-370, 758], [-370, 753], [-371, 752], [-371, 749], [-370, 748], [-370, 746], [-369, 745], [-369, 743], [-367, 743], [-367, 744], [-366, 745], [-366, 746], [-365, 747], [-365, 748], [-364, 749], [-364, 753], [-365, 754], [-365, 757], [-364, 758], [-364, 759], [-363, 760], [-362, 762], [-361, 764], [-360, 766], [-358, 770], [-357, 771], [-356, 771], [-355, 770], [-355, 759], [-356, 758], [-357, 755], [-358, 753], [-359, 751], [-359, 747], [-360, 746], [-360, 743], [-361, 742], [-361, 741], [-359, 740], [-358, 741], [-356, 744], [-356, 745], [-355, 746], [-354, 748], [-353, 749], [-352, 750], [-350, 751], [-349, 750], [-349, 746], [-350, 744], [-351, 743], [-352, 742]], "239-258": [[-359, 742], [-356, 742], [-356, 743], [-355, 744], [-355, 745], [-354, 746], [-354, 747], [-353, 748], [-353, 749], [-352, 750], [-352, 751], [-351, 752], [-351, 753], [-350, 754], [-350, 755], [-349, 756], [-349, 757], [-348, 758], [-348, 759], [-347, 760], [-346, 759], [-346, 754], [-347, 753], [-346, 752], [-345, 751], [-345, 750], [-346, 749], [-346, 748], [-347, 747], [-347, 746], [-348, 745], [-348, 744], [-349, 743], [-350, 742], [-351, 741], [-352, 741], [-353, 742], [-354, 742], [-354, 740], [-353, 739], [-353, 737], [-354, 736], [-354, 734], [-353, 733], [-353, 731], [-353, 730], [-352, 731], [-351, 729], [-350, 728], [-350, 725], [-351, 724], [-351, 720], [-350, 719], [-350, 714], [-349, 713], [-349, 710], [-348, 709], [-348, 703], [-349, 702], [-349, 701], [-350, 700], [-356, 699], [-357, 700], [-358, 696], [-360, 698], [-361, 697], [-362, 697], [-363, 696], [-370, 696], [-371, 697], [-372, 698], [-372, 697], [-373, 696], [-374, 695], [-375, 695], [-376, 696], [-375, 697], [-378, 697], [-379, 698], [-380, 699], [-381, 700], [-382, 701], [-383, 702], [-384, 703], [-384, 704], [-385, 705], [-385, 706], [-385, 707], [-385, 708], [-384, 709], [-384, 710], [-383, 711], [-383, 712], [-382, 713], [-382, 714], [-381, 715], [-381, 722], [-382, 721], [-383, 720], [-384, 720], [-384, 719], [-385, 718], [-386, 717], [-386, 716], [-387, 715], [-387, 710], [-388, 709], [-388, 706], [-389, 705], [-390, 703], [-391, 703], [-392, 704], [-396, 705], [-400, 705], [-401, 706], [-403, 707], [-403, 709], [-402, 710], [-402, 712], [-401, 713], [-401, 716], [-400, 717], [-398, 717], [-397, 716], [-395, 716], [-394, 715], [-391, 715], [-390, 714], [-390, 715], [-389, 717], [-389, 718], [-388, 719], [-387, 721], [-388, 724], [-386, 726], [-385, 728], [-384, 730], [-383, 732], [-382, 733], [-379, 733], [-378, 732], [-377, 731], [-375, 730], [-374, 730], [-373, 732], [-374, 734], [-375, 736], [-376, 741], [-375, 742], [-376, 743], [-376, 750], [-377, 751], [-377, 754], [-378, 755], [-378, 759], [-379, 760], [-379, 765], [-380, 766], [-380, 770], [-379, 771], [-377, 771], [-376, 770], [-375, 767], [-374, 764], [-373, 763], [-372, 760], [-371, 759], [-370, 758], [-370, 747], [-369, 744], [-368, 743], [-367, 743], [-366, 745], [-365, 747], [-364, 749], [-364, 752], [-365, 754], [-365, 757], [-364, 758], [-363, 760], [-362, 762], [-361, 765], [-360, 766], [-359, 769], [-356, 770], [-355, 769], [-355, 759], [-357, 755], [-358, 752], [-359, 744], [-360, 743], [-360, 742], [-361, 741], [-359, 740], [-358, 741]]}, "center": {"159-163": [-389, 829], "168-211": [-365, 712], "212-238": [-365, 712], "239-258": [-366, 713]}}, +{"id": 1429, "name": "Etika Memorial", "description": "Desmond Daniel Amofah (May 12, 1990 – c. June 19, 2019), better known as Etika, was an American YouTuber and online streamer. He became known online for his highly energetic reactions to Super Smash Bros. character reveals and Nintendo Direct presentations, and for playing and reacting to various games.", "links": {"subreddit": ["etikaworldnetwork"]}, "path": {"166-258, T": [[-794, 161], [-794, 178], [-775, 178], [-776, 162]]}, "center": {"166-258, T": [-785, 170]}}, +{"id": 1430, "name": "Arkeanos", "description": "Arkeanos is a team of Spanish content creators on YouTube and Twitch. \"Siempre con el Jefecito.\"", "links": {"website": ["https://www.youtube.com/channel/UCggHFGmLDDStxyM-uy9DYnQ"], "subreddit": ["Arkeanos"]}, "path": {"164-258, T": [[-709, 498], [-709, 619], [-580, 618], [-580, 498]]}, "center": {"164-258, T": [-645, 558]}}, +{"id": 1431, "name": "Flag of Bosnia and Herzegovina", "description": "This artwork depicts the Bosnian and Herzegovinian flag. On it is a symbol of remembrance of the Srebrenica genocide, the Flower of Srebrenica, a pattern from traditional Bosnian carpets, and a traditional coffee drinking set.", "links": {"subreddit": ["bih"], "discord": ["gukrSH2Q"]}, "path": {"166-258, T": [[318, 164], [318, 184], [363, 184], [363, 164]]}, "center": {"166-258, T": [341, 174]}}, +{"id": 1432, "name": "Taiwan independence flag", "description": "The flag is commonly used to represent the Taiwanese independence movement from China. It is officially used by the World Taiwanese Congress, a yearly meeting of organizations supporting formal independence of Taiwan.", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan_independence_movement"], "subreddit": ["placeTW"], "discord": ["8xSQKCHSnT"]}, "path": {"161-258, T": [[-92, 565], [-92, 586], [-64, 586], [-64, 565]]}, "center": {"161-258, T": [-78, 576]}}, +{"id": 1433, "name": "The Ride Never Ends", "description": "\"The Ride Never Ends\" is a phrase from the Mr. Bones' Wild Ride meme, originating from the game Roller Coaster Tycoon 2. The meme features a model car amusement park ride that lasts for 4 years of in-game time. At the end of the ride, the only path from the ride exit is back to the entrance, with a nearby sign saying \"The Ride Never Ends\".\n\nThe phrase has become a meme on its own within the My Little Pony community to represent how the fandom will never die despite the end of the show Friendship is Magic in 2019, though on the early morning of Day 6, they changed the text of the word \"Never\" to red to depict how r/place was going for too long.", "links": {"website": ["https://knowyourmeme.com/memes/mr-bones-wild-ride"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"165-258, T": [[500, 895], [572, 895], [572, 901], [500, 901]]}, "center": {"165-258, T": [536, 898]}}, +{"id": 1434, "name": "Derpy Hooves", "description": "Derpy Hooves is a background character from the TV series My Little Pony: Friendship is Magic. Derpy was first noticed by fans in 2010 for her cross-eyed look in the pilot episode of the show, and became a fan favorite ever since.", "links": {"website": ["https://mlp.fandom.com/wiki/Derpy"], "subreddit": ["mylittlepony", "MLP_Pixel"], "discord": ["adQYFgeVC9", "3h7Xpz2XgD"]}, "path": {"155-258, T": [[683, 809], [679, 811], [672, 822], [672, 826], [679, 833], [675, 833], [673, 835], [673, 836], [678, 840], [680, 840], [681, 841], [681, 843], [677, 848], [677, 851], [679, 853], [683, 853], [687, 851], [693, 851], [693, 852], [696, 855], [701, 855], [707, 847], [711, 847], [711, 842], [719, 838], [719, 836], [717, 834], [713, 834], [719, 828], [719, 826], [717, 824], [716, 824], [712, 826], [712, 824], [710, 822], [709, 822], [704, 827], [704, 823], [705, 822], [705, 815], [702, 811], [700, 811], [698, 813], [697, 813], [695, 811], [690, 809]]}, "center": {"155-258, T": [694, 837]}}, +{"id": 1435, "name": "Twilight Sparkle", "description": "Twilight Sparkle is one of the main ponies (Mane 6) from the TV series My Little Pony: Friendship is Magic, Generation 4 of the My Little Pony series. She is a unicorn representing the element of magic. Her final version is wearing her element of harmony in the form of a crown.", "links": {"website": ["https://mlp.fandom.com/wiki/Twilight_Sparkle"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"155-163": [[645, 800], [643, 802], [641, 806], [641, 807], [644, 807], [644, 810], [640, 810], [640, 818], [639, 820], [639, 822], [641, 824], [643, 824], [643, 818], [640, 818], [640, 810], [644, 810], [644, 811], [662, 811], [662, 809], [660, 807], [657, 807], [657, 804], [654, 801], [651, 800]], "164-258, T": [[545, 845], [543, 845], [543, 842], [545, 842], [545, 843], [547, 841], [549, 843], [550, 842], [551, 842], [551, 846], [552, 846], [554, 844], [556, 846], [556, 849], [555, 850], [555, 851], [556, 852], [560, 852], [561, 853], [561, 856], [543, 856], [543, 869], [541, 869], [539, 867], [539, 865], [541, 863], [543, 863], [543, 856], [541, 854], [542, 853], [542, 852], [539, 852], [542, 846], [543, 846]]}, "center": {"155-163": [650, 806], "164-258, T": [548, 850]}}, +{"id": 1436, "name": "French J", "description": "J, officially known as Serial Designation J, is a disassembly drone from the YouTube series Murder Drones, produced by Glitch Productions. She is holding a French flag here with her armband recolored to match, as this piece was made in an alliance with r/placeFR.", "links": {"website": ["https://murder-drones.fandom.com/wiki/Serial_Designation_J"], "subreddit": ["MurderDrones", "placeFR", "france"], "discord": ["placeFR", "g9T4JbyDar"]}, "path": {"159-163": [[-407, 836], [-413, 821], [-425, 824], [-422, 834], [-411, 830], [-409, 836], [-412, 839], [-404, 849], [-398, 844], [-396, 846], [-396, 849], [-398, 853], [-398, 855], [-398, 858], [-399, 865], [-400, 871], [-401, 877], [-402, 881], [-402, 886], [-401, 887], [-399, 885], [-397, 881], [-396, 877], [-394, 874], [-394, 871], [-395, 868], [-395, 866], [-394, 863], [-392, 860], [-392, 859], [-390, 860], [-386, 866], [-388, 871], [-380, 887], [-379, 887], [-379, 874], [-383, 867], [-385, 859], [-382, 857], [-380, 859], [-377, 858], [-377, 854], [-377, 851], [-377, 849], [-376, 847], [-374, 845], [-375, 841], [-375, 837], [-374, 836], [-374, 831], [-372, 826], [-372, 820], [-376, 814], [-378, 814], [-379, 813], [-382, 813], [-383, 814], [-385, 814], [-389, 813], [-391, 813], [-393, 812], [-394, 814], [-396, 814], [-397, 812], [-400, 814], [-403, 816], [-404, 818], [-406, 819], [-407, 821], [-407, 824], [-406, 827], [-404, 830], [-403, 832], [-404, 835], [-403, 837], [-403, 838]], "168-211": [[-359, 740], [-358, 741], [-357, 742], [-356, 742], [-355, 741], [-354, 740], [-353, 739], [-353, 737], [-354, 736], [-354, 734], [-353, 733], [-353, 731], [-352, 730], [-351, 729], [-350, 728], [-350, 725], [-351, 724], [-351, 720], [-350, 719], [-350, 714], [-349, 713], [-349, 710], [-348, 709], [-348, 702], [-349, 701], [-350, 700], [-351, 699], [-352, 698], [-355, 697], [-356, 696], [-357, 695], [-358, 695], [-359, 696], [-360, 696], [-361, 697], [-362, 696], [-370, 696], [-371, 697], [-372, 698], [-372, 697], [-371, 696], [-372, 695], [-375, 695], [-376, 696], [-376, 697], [-377, 697], [-378, 697], [-379, 698], [-380, 698], [-381, 699], [-381, 700], [-382, 701], [-383, 702], [-384, 703], [-385, 704], [-385, 709], [-384, 710], [-383, 711], [-383, 712], [-382, 713], [-382, 714], [-381, 715], [-381, 722], [-382, 721], [-383, 720], [-384, 720], [-385, 719], [-385, 717], [-386, 716], [-386, 713], [-387, 712], [-387, 710], [-388, 709], [-388, 706], [-389, 705], [-389, 704], [-390, 703], [-392, 703], [-393, 704], [-398, 705], [-400, 705], [-401, 706], [-403, 707], [-403, 709], [-402, 710], [-402, 712], [-401, 713], [-401, 715], [-400, 716], [-399, 717], [-398, 716], [-395, 716], [-394, 715], [-391, 715], [-390, 714], [-388, 714], [-388, 717], [-387, 718], [-387, 719], [-386, 720], [-386, 721], [-387, 721], [-388, 722], [-388, 724], [-387, 725], [-387, 726], [-386, 727], [-385, 728], [-385, 729], [-384, 730], [-384, 731], [-383, 732], [-382, 733], [-379, 733], [-378, 732], [-377, 731], [-376, 730], [-375, 729], [-374, 728], [-373, 729], [-373, 732], [-374, 733], [-374, 734], [-375, 735], [-375, 737], [-376, 738], [-376, 741], [-375, 742], [-376, 743], [-376, 750], [-377, 754], [-378, 755], [-378, 759], [-379, 760], [-379, 765], [-380, 766], [-380, 770], [-379, 771], [-377, 771], [-376, 770], [-376, 769], [-375, 768], [-375, 767], [-374, 766], [-374, 764], [-373, 763], [-373, 762], [-372, 761], [-372, 760], [-370, 758], [-370, 753], [-371, 752], [-371, 749], [-370, 748], [-370, 746], [-369, 745], [-369, 743], [-367, 743], [-367, 744], [-366, 745], [-366, 746], [-365, 747], [-365, 748], [-364, 749], [-364, 753], [-365, 754], [-365, 757], [-364, 758], [-364, 759], [-363, 760], [-362, 762], [-361, 764], [-360, 766], [-358, 770], [-357, 771], [-356, 771], [-355, 770], [-355, 759], [-356, 758], [-357, 755], [-358, 753], [-359, 751], [-359, 747], [-360, 746], [-360, 743], [-361, 742], [-361, 741], [-359, 740], [-358, 741]], "212-238": [[-359, 740], [-358, 741], [-357, 742], [-356, 742], [-355, 741], [-354, 740], [-353, 739], [-353, 737], [-354, 736], [-354, 734], [-353, 733], [-353, 731], [-352, 730], [-351, 729], [-350, 728], [-350, 725], [-351, 724], [-351, 720], [-350, 719], [-350, 714], [-349, 713], [-349, 710], [-348, 709], [-348, 702], [-349, 701], [-350, 700], [-351, 699], [-352, 698], [-355, 697], [-356, 696], [-357, 695], [-358, 695], [-359, 696], [-360, 696], [-361, 697], [-362, 696], [-370, 696], [-371, 697], [-372, 698], [-372, 697], [-371, 696], [-372, 695], [-375, 695], [-376, 696], [-376, 697], [-377, 697], [-378, 697], [-379, 698], [-380, 698], [-381, 699], [-381, 700], [-382, 701], [-383, 702], [-384, 703], [-385, 704], [-385, 709], [-384, 710], [-383, 711], [-383, 712], [-382, 713], [-382, 714], [-381, 715], [-381, 722], [-382, 721], [-383, 720], [-384, 720], [-385, 719], [-385, 717], [-386, 716], [-386, 713], [-387, 712], [-387, 710], [-388, 709], [-388, 706], [-389, 705], [-389, 704], [-390, 703], [-392, 703], [-393, 704], [-398, 705], [-400, 705], [-401, 706], [-403, 707], [-403, 709], [-402, 710], [-402, 712], [-401, 713], [-401, 715], [-400, 716], [-399, 717], [-398, 716], [-395, 716], [-394, 715], [-391, 715], [-390, 714], [-388, 714], [-388, 717], [-387, 718], [-387, 719], [-386, 720], [-386, 721], [-387, 721], [-388, 722], [-388, 724], [-387, 725], [-387, 726], [-386, 727], [-385, 728], [-385, 729], [-384, 730], [-384, 731], [-383, 732], [-382, 733], [-379, 733], [-378, 732], [-377, 731], [-376, 730], [-375, 729], [-374, 728], [-373, 729], [-373, 732], [-374, 733], [-374, 734], [-375, 735], [-375, 737], [-376, 738], [-376, 741], [-375, 742], [-376, 743], [-376, 750], [-377, 754], [-378, 755], [-378, 759], [-379, 760], [-379, 765], [-380, 766], [-380, 770], [-379, 771], [-377, 771], [-376, 770], [-376, 769], [-375, 768], [-375, 767], [-374, 766], [-374, 764], [-373, 763], [-373, 762], [-372, 761], [-372, 760], [-370, 758], [-370, 753], [-371, 752], [-371, 749], [-370, 748], [-370, 746], [-369, 745], [-369, 743], [-367, 743], [-367, 744], [-366, 745], [-366, 746], [-365, 747], [-365, 748], [-364, 749], [-364, 753], [-365, 754], [-365, 757], [-364, 758], [-364, 759], [-363, 760], [-362, 762], [-361, 764], [-360, 766], [-358, 770], [-357, 771], [-356, 771], [-355, 770], [-355, 759], [-356, 758], [-357, 755], [-358, 753], [-359, 751], [-359, 747], [-360, 746], [-360, 743], [-361, 742], [-361, 741], [-359, 740], [-358, 741], [-356, 744], [-356, 745], [-355, 746], [-354, 748], [-353, 749], [-352, 750], [-350, 751], [-349, 750], [-349, 746], [-350, 744], [-351, 743], [-352, 742]], "239-258, T": [[-359, 742], [-356, 742], [-356, 743], [-355, 744], [-355, 745], [-354, 746], [-354, 747], [-353, 748], [-353, 749], [-352, 750], [-352, 751], [-351, 752], [-351, 753], [-350, 754], [-350, 755], [-349, 756], [-349, 757], [-348, 758], [-348, 759], [-347, 760], [-346, 759], [-346, 754], [-347, 753], [-346, 752], [-345, 751], [-345, 750], [-346, 749], [-346, 748], [-347, 747], [-347, 746], [-348, 745], [-348, 744], [-349, 743], [-350, 742], [-351, 741], [-352, 741], [-353, 742], [-354, 742], [-354, 740], [-353, 739], [-353, 737], [-354, 736], [-354, 734], [-353, 733], [-353, 731], [-353, 730], [-352, 731], [-351, 729], [-350, 728], [-350, 725], [-351, 724], [-351, 720], [-350, 719], [-350, 714], [-349, 713], [-349, 710], [-348, 709], [-348, 703], [-349, 702], [-349, 701], [-350, 700], [-356, 699], [-357, 700], [-358, 696], [-360, 698], [-361, 697], [-362, 697], [-363, 696], [-370, 696], [-371, 697], [-372, 698], [-372, 697], [-373, 696], [-374, 695], [-375, 695], [-376, 696], [-375, 697], [-378, 697], [-379, 698], [-380, 699], [-381, 700], [-382, 701], [-383, 702], [-384, 703], [-384, 704], [-385, 705], [-385, 706], [-385, 707], [-385, 708], [-384, 709], [-384, 710], [-383, 711], [-383, 712], [-382, 713], [-382, 714], [-381, 715], [-381, 722], [-382, 721], [-383, 720], [-384, 720], [-384, 719], [-385, 718], [-386, 717], [-386, 716], [-387, 715], [-387, 710], [-388, 709], [-388, 706], [-389, 705], [-390, 703], [-391, 703], [-392, 704], [-396, 705], [-400, 705], [-401, 706], [-403, 707], [-403, 709], [-402, 710], [-402, 712], [-401, 713], [-401, 716], [-400, 717], [-398, 717], [-397, 716], [-395, 716], [-394, 715], [-391, 715], [-390, 714], [-390, 715], [-389, 717], [-389, 718], [-388, 719], [-387, 721], [-388, 724], [-386, 726], [-385, 728], [-384, 730], [-383, 732], [-382, 733], [-379, 733], [-378, 732], [-377, 731], [-375, 730], [-374, 730], [-373, 732], [-374, 734], [-375, 736], [-376, 741], [-375, 742], [-376, 743], [-376, 750], [-377, 751], [-377, 754], [-378, 755], [-378, 759], [-379, 760], [-379, 765], [-380, 766], [-380, 770], [-379, 771], [-377, 771], [-376, 770], [-375, 767], [-374, 764], [-373, 763], [-372, 760], [-371, 759], [-370, 758], [-370, 747], [-369, 744], [-368, 743], [-367, 743], [-366, 745], [-365, 747], [-364, 749], [-364, 752], [-365, 754], [-365, 757], [-364, 758], [-363, 760], [-362, 762], [-361, 765], [-360, 766], [-359, 769], [-356, 770], [-355, 769], [-355, 759], [-357, 755], [-358, 752], [-359, 744], [-360, 743], [-360, 742], [-361, 741], [-359, 740], [-358, 741]]}, "center": {"159-163": [-389, 829], "168-211": [-365, 712], "212-238": [-365, 712], "239-258, T": [-366, 713]}}, {"id": 1437, "name": "bmc", "description": "Picture of the osu! streamer BTMC", "links": {"website": ["https://www.twitch.tv/btmc"], "subreddit": ["osuplace", "osugame"], "discord": ["osuplace"]}, "path": {"155-158": [[704, 704], [750, 704], [750, 750], [704, 750]]}, "center": {"155-158": [727, 727]}}, -{"id": 1438, "name": "Croatian interlace", "description": "The Croatian interlace or Croatian wattle, known as the pleter or troplet in Croatian, is a type of interlace, most characteristic for its three-ribbon pattern. It is one of the most often used patterns of pre-romanesque Croatian art. It is found on and within churches as well as monasteries built in early medieval Kingdom of Croatia between the 9th and beginning of the 12th century. The ornamental strings were sometimes grouped together with animal and herbal figures.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Croatian_interlace"]}, "path": {"149-258": [[379, -138], [380, -139], [383, -141], [386, -141], [388, -139], [391, -140], [394, -140], [396, -138], [398, -140], [400, -134], [396, -135], [394, -134], [391, -134], [388, -136], [386, -134], [382, -133], [380, -136], [379, -135], [379, -130], [375, -127], [365, -126], [363, -129], [362, -134], [358, -133], [357, -135], [357, -140], [355, -139], [354, -137], [350, -137], [348, -139], [346, -139], [345, -136], [346, -134], [341, -134], [340, -135], [339, -139], [343, -140], [345, -139], [349, -140], [355, -140], [358, -140], [361, -140], [362, -130], [365, -127], [376, -126], [380, -129], [380, -138]]}, "center": {"149-258": [384, -137]}}, -{"id": 1439, "name": "Vande Bharat Express", "description": "A new High-Speed trainset developed by the Indian Railways capable of reaching up to 183 kph", "links": {}, "path": {"104-258": [[673, -218], [776, -218], [794, -202], [794, -193], [672, -193], [672, -218]]}, "center": {"104-258": [733, -205]}}, -{"id": 1440, "name": "Puppysmiles", "description": "Puppysmiles, the main character in the Fallout Equestria fanfiction Pink Eyes", "links": {"website": ["https://falloutequestria.fandom.com/wiki/Puppysmiles_(Pink_Eyes)"], "subreddit": ["falloutequestria"]}, "path": {"166-258": [[558, 841], [560, 841], [559, 841], [558, 841], [558, 839], [563, 839], [563, 843], [564, 844], [565, 842], [567, 843], [567, 847], [562, 846], [562, 845], [561, 845], [561, 846], [559, 846], [559, 845], [559, 844], [559, 843], [559, 840]]}, "center": {"166-258": [561, 843]}}, +{"id": 1438, "name": "Croatian interlace", "description": "The Croatian interlace or Croatian wattle, known as the pleter or troplet in Croatian, is a type of interlace, most characteristic for its three-ribbon pattern. It is one of the most often used patterns of pre-romanesque Croatian art. It is found on and within churches as well as monasteries built in early medieval Kingdom of Croatia between the 9th and beginning of the 12th century. The ornamental strings were sometimes grouped together with animal and herbal figures.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Croatian_interlace"]}, "path": {"149-258, T": [[379, -138], [380, -139], [383, -141], [386, -141], [388, -139], [391, -140], [394, -140], [396, -138], [398, -140], [400, -134], [396, -135], [394, -134], [391, -134], [388, -136], [386, -134], [382, -133], [380, -136], [379, -135], [379, -130], [375, -127], [365, -126], [363, -129], [362, -134], [358, -133], [357, -135], [357, -140], [355, -139], [354, -137], [350, -137], [348, -139], [346, -139], [345, -136], [346, -134], [341, -134], [340, -135], [339, -139], [343, -140], [345, -139], [349, -140], [355, -140], [358, -140], [361, -140], [362, -130], [365, -127], [376, -126], [380, -129], [380, -138]]}, "center": {"149-258, T": [384, -137]}}, +{"id": 1439, "name": "Vande Bharat Express", "description": "A new High-Speed trainset developed by the Indian Railways capable of reaching up to 183 kph", "links": {}, "path": {"104-258, T": [[673, -218], [776, -218], [794, -202], [794, -193], [672, -193], [672, -218]]}, "center": {"104-258, T": [733, -205]}}, +{"id": 1440, "name": "Puppysmiles", "description": "Puppysmiles, the main character in the Fallout Equestria fanfiction Pink Eyes", "links": {"website": ["https://falloutequestria.fandom.com/wiki/Puppysmiles_(Pink_Eyes)"], "subreddit": ["falloutequestria"]}, "path": {"166-258, T": [[558, 841], [560, 841], [559, 841], [558, 841], [558, 839], [563, 839], [563, 843], [564, 844], [565, 842], [567, 843], [567, 847], [562, 846], [562, 845], [561, 845], [561, 846], [559, 846], [559, 845], [559, 844], [559, 843], [559, 840]]}, "center": {"166-258, T": [561, 843]}}, {"id": 1441, "name": "The work of Bernd the Brothanos", "description": "Bernd the Brothanos once snapped to destroy the work of the kick streamer who wanted to destroy others and laughed about it", "links": {"website": ["https://kick.com/westcol"]}, "path": {"169-195": [[-999, 619], [-886, 620], [-884, 743], [-999, 743], [-999, 744], [-999, 743], [-1001, 744]]}, "center": {"169-195": [-942, 682]}}, -{"id": 1442, "name": "Alice Margatroid", "description": "Alice is a character from the Touhou Project franchise. She is a youkai magician who makes and controls magical dolls.\n\nOne of her themes is named \"The Doll Maker of Bucuresti\". Bucuresti, also known as Bucharest, is the capital city of Romania. As such, she is often speculated to have connections with the European country by fans.\n\nThis also explains why she is located on the Romanian flag wearing its colors as a scarf.", "links": {"website": ["https://en.touhouwiki.net/wiki/Alice_Margatroid"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"116-258": [[-299, 157], [-299, 150], [-298, 149], [-298, 148], [-296, 146], [-296, 145], [-295, 144], [-294, 143], [-293, 143], [-292, 142], [-284, 142], [-283, 143], [-282, 143], [-281, 144], [-280, 145], [-279, 146], [-279, 147], [-278, 148], [-277, 149], [-276, 150], [-276, 151], [-278, 152], [-278, 157], [-279, 158], [-279, 159], [-280, 160], [-282, 160], [-282, 163], [-279, 166], [-279, 167], [-278, 168], [-278, 169], [-283, 169], [-283, 172], [-284, 173], [-286, 173], [-287, 171], [-289, 171], [-290, 172], [-291, 173], [-292, 173], [-293, 172], [-293, 171], [-293, 170], [-294, 169], [-294, 168], [-295, 167], [-295, 166], [-295, 165], [-294, 164], [-294, 163], [-293, 162], [-293, 161], [-294, 160], [-295, 161], [-296, 161], [-297, 160], [-298, 159], [-298, 158], [-299, 157], [-299, 158], [-298, 158], [-299, 158], [-299, 157], [-299, 158], [-299, 157], [-299, 158]]}, "center": {"116-258": [-288, 152]}}, -{"id": 1444, "name": "Indie Alliance bench", "description": "This area was a collaboration between multiple indie game communities. The bench concept makes a return from r/place 2022, originating from the benches in the game Hollow Knight that serve as rest points.\n\nFrom left to right:\n-Batter from OFF\n-Beheaded from Dead Cells\n-Ori from Ori and the Blind Forest\n-Bugs from APICO above Ori\n-Quantum Moon from Outer Wilds next to bugs\n-Purple Guy from FNaF \n-Mae from Night in the Woods\n-OMORI from OMORI\n-Commando from Risk of Rain\n-Madeline from Celeste above Commando\n-Engi, Bosco, and Lootbug from Deep Rock Galactic\n-Soul Knight logo below Engi\n-Tiny Niko on top of Bosco\n-Sprite Companion from Hyperlight Drifter next to Tiny Niko\n-Isaac from Binding of Isaac\n-Chompy from Bug Fables underneath Isaac\n-Engineer from Factorio\n-Strabby on Engineer's shoulder\n-A penguin from Starbound\n-Junimo from Stardew Valley\n-OneShot bulb above Stardew Valley's apple\n-A router from Mindustry\n-Keg from Sea of Thieves\n-Lamb from Cult of the Lamb sitting on the keg\n-Monika from DDLC above Lamb\n-Fish bowl cuz why not\n-Spooky from Spooky's Mansion\n-White Face and flower from IMSCARED above Spooky\n-V1 from ULTRAKILL\n-The Conductor from Final Station in front of V1's legs\n-Moth from Sky: Children of the Light above V1\n-Apollo from Ace Attorney bottom-right of V1\n-Gnome from Everhood\n-Rivulet on Looks to the Moon from Rain World\n-Gail from Phoenotopia above Rivulet\n-Captain Viridian from VVVVVV above Gail\n-Flowey from Undertale below Looks to the Moon\n-Grimm from Hollow Knight\n-Undertale red heart above Paprika\n-King Slime in front of Grimm\n-The Spiral Heart from Grime next to Grimm\n-Carp from Lisa\n-Richard mask from Hotline Miami above The Spiral Heart\n-Paprika from Them's Fightin' Herds below the Richard mask and above Grimm", "links": {"subreddit": ["IndieAlliance", "APICO", "bindingofisaac", "celestegame", "CultOfTheLamb", "deadcells", "DDLC", "DeepRockGalactic", "DeepRockGalacticPlace", "Everhood", "factorio", "fivenightsatfreddys", "HKPlace", "hotlinemiami", "hyperlightdrifter", "lisathepainfulrpg", "mindustry", "NightInTheWoods", "offthegame", "OMORI", "oneshot", "OriAndTheBlindForest", "outerwilds", "phoenotopia", "placeattorney", "PlaceFishCult", "rainworld", "riskofrain", "Seaofthieves", "starbound", "StardewValley", "terraria", "ultrakill", "Undertale"], "discord": ["FmDZQsjkBW", "GfSmdgha", "celeste", "ddlc", "factorio", "freddit", "mindustry", "orithegame", "rainworld", "terraria", "undertale", "38DGdydTFb", "5dQMafBgGZ", "5TyCKk8h", "6gawWXyU", "NHmc6Jpt", "s625J5tT", "XdMxvvcP", "xHQmkAYN8G", "ypSr9JG2ht"]}, "path": {"162-258": [[-770, 374], [-770, 430], [-640, 429], [-640, 374]]}, "center": {"162-258": [-714, 402]}}, -{"id": 1445, "name": "Cursedfiber78's pato mamado", "description": "CursedFiber78, better known as \"Pato,\" is a talented Twitch streamer hailing from Mexico. His channel primarily focuses on creating content centered around Overwatch 2.", "links": {"website": ["https://www.twitch.tv/cursedfiber78"], "discord": ["S5rNxbwf"]}, "path": {"168-258": [[500, 969], [524, 969], [524, 999], [500, 999]]}, "center": {"168-258": [512, 984]}}, -{"id": 1446, "name": "Coat of arms of the Czech Republic", "description": "The national coat of arms of the Czech Republic depicts the three historical regions which make up the country: Bohemia and the whole Czech lands, Moravia, and Silesia.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_the_Czech_Republic"], "subreddit": ["czech"]}, "path": {"136-154": [[-203, 461], [-131, 461], [-131, 499], [-203, 499]], "155-258": [[-203, 461], [-203, 541], [-200, 544], [-170, 544], [-168, 546], [-167, 546], [-165, 544], [-135, 544], [-132, 541], [-132, 461]]}, "center": {"136-154": [-167, 480], "155-258": [-167, 502]}}, -{"id": 1447, "name": "Flag of Brittany", "description": "Brittany is the westernmost region of France and a region of Celtic ethnicity and culture. The Breton flag, also known as Gwenn-ha-du, features nine stripes representing the nine Breton districts, along with eleven ermines. \nThis Gwenn-ha-du features a Breton ermine shading ; the ermine is a characteristic symbol of the Breton heraldry. \n\nThe flag was placed by members of the PlaceBZH server, with help of their Corsican and Czech allies.", "links": {"website": ["https://en.wikipedia.org/wiki/Brittany", "https://en.wikipedia.org/wiki/Flag_of_Brittany"], "subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"137-258": [[-131, 461], [-131, 481], [-98, 481], [-98, 461]]}, "center": {"137-258": [-114, 471]}}, -{"id": 1448, "name": "Deep Rock Galactic", "description": "Deep Rock Galactic is a 1-4-player co-op first-person shooter (FPS) game featuring badass space dwarves, 100% destructible environments, procedurally-generated caves, and endless hordes of alien monsters.", "links": {"website": ["https://www.deeprockgalactic.com/", "https://en.wikipedia.org/wiki/Deep_Rock_Galactic"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic"]}, "path": {"155-258": [[-299, 568], [-299, 572], [-298, 572], [-298, 586], [-245, 586], [-245, 589], [-244, 589], [-242, 586], [-242, 568]]}, "center": {"155-258": [-270, 577]}}, -{"id": 1449, "name": "Sea of Thieves", "description": "Sea of Thieves (SoT) is a sandbox pirate game developed by Rare and released in 2018. The game features both player-vs.-player and player-vs.-enemy combat.", "links": {"website": ["https://www.seaofthieves.com/", "https://en.wikipedia.org/wiki/Sea_of_Thieves"], "subreddit": ["Seaofthieves"]}, "path": {"155-258": [[-285, 585], [-289, 589], [-289, 601], [-285, 603], [-234, 603], [-232, 601], [-232, 589], [-244, 589], [-244, 588], [-255, 588], [-257, 585]]}, "center": {"155-258": [-262, 594]}}, -{"id": 1450, "name": "Factorio", "description": "Factorio is a factory simulation and construction indie game developed by Czech studio Wube Software. \n\nThe game follows an engineer who crash-lands onto an alien planet, exploiting its resources to build a rocket to escape while battling native insect-like attackers. The game is commonly nicknamed \"Cracktorio\" by fans due to its addictive and time obliterating qualities.\n\nThe game's iconic transport belts can be see extending beyond the confines of the main piece.", "links": {"website": ["https://factorio.com/", "https://en.wikipedia.org/wiki/Factorio"], "subreddit": ["factorio"], "discord": ["factorio", "256GTXgN"]}, "path": {"160-203": [[-298, 603], [-231, 603], [-231, 626], [-231, 631], [-236, 631], [-236, 623], [-300, 624], [-300, 603]], "204-214": [[-298, 603], [-231, 603], [-231, 626], [-195, 626], [-195, 630], [-195, 632], [-237, 632], [-237, 623], [-299, 623], [-299, 603]], "215-258": [[-298, 603], [-231, 603], [-231, 626], [-195, 626], [-195, 630], [-193, 632], [-193, 662], [-199, 662], [-199, 632], [-236, 632], [-236, 621], [-294, 621], [-294, 626], [-299, 626]]}, "center": {"160-203": [-286, 613], "204-214": [-288, 613], "215-258": [-250, 612]}}, -{"id": 1451, "name": "Olympia Logo", "description": "Logo of an historic german typewriter brand. Artwork propsed by r/typewriters", "links": {"subreddit": ["placeDE", "typewriters"]}, "path": {"199-258": [[-916, -566], [-916, -553], [-861, -553], [-861, -566]]}, "center": {"199-258": [-888, -559]}}, +{"id": 1442, "name": "Alice Margatroid", "description": "Alice is a character from the Touhou Project franchise. She is a youkai magician who makes and controls magical dolls.\n\nOne of her themes is named \"The Doll Maker of Bucuresti\". Bucuresti, also known as Bucharest, is the capital city of Romania. As such, she is often speculated to have connections with the European country by fans.\n\nThis also explains why she is located on the Romanian flag wearing its colors as a scarf.", "links": {"website": ["https://en.touhouwiki.net/wiki/Alice_Margatroid"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"116-258, T": [[-299, 157], [-299, 150], [-298, 149], [-298, 148], [-296, 146], [-296, 145], [-295, 144], [-294, 143], [-293, 143], [-292, 142], [-284, 142], [-283, 143], [-282, 143], [-281, 144], [-280, 145], [-279, 146], [-279, 147], [-278, 148], [-277, 149], [-276, 150], [-276, 151], [-278, 152], [-278, 157], [-279, 158], [-279, 159], [-280, 160], [-282, 160], [-282, 163], [-279, 166], [-279, 167], [-278, 168], [-278, 169], [-283, 169], [-283, 172], [-284, 173], [-286, 173], [-287, 171], [-289, 171], [-290, 172], [-291, 173], [-292, 173], [-293, 172], [-293, 171], [-293, 170], [-294, 169], [-294, 168], [-295, 167], [-295, 166], [-295, 165], [-294, 164], [-294, 163], [-293, 162], [-293, 161], [-294, 160], [-295, 161], [-296, 161], [-297, 160], [-298, 159], [-298, 158], [-299, 157], [-299, 158], [-298, 158], [-299, 158], [-299, 157], [-299, 158], [-299, 157], [-299, 158]]}, "center": {"116-258, T": [-288, 152]}}, +{"id": 1444, "name": "Indie Alliance bench", "description": "This area was a collaboration between multiple indie game communities. The bench concept makes a return from r/place 2022, originating from the benches in the game Hollow Knight that serve as rest points.\n\nFrom left to right:\n-Batter from OFF\n-Beheaded from Dead Cells\n-Ori from Ori and the Blind Forest\n-Bugs from APICO above Ori\n-Quantum Moon from Outer Wilds next to bugs\n-Purple Guy from FNaF \n-Mae from Night in the Woods\n-OMORI from OMORI\n-Commando from Risk of Rain\n-Madeline from Celeste above Commando\n-Engi, Bosco, and Lootbug from Deep Rock Galactic\n-Soul Knight logo below Engi\n-Tiny Niko on top of Bosco\n-Sprite Companion from Hyperlight Drifter next to Tiny Niko\n-Isaac from Binding of Isaac\n-Chompy from Bug Fables underneath Isaac\n-Engineer from Factorio\n-Strabby on Engineer's shoulder\n-A penguin from Starbound\n-Junimo from Stardew Valley\n-OneShot bulb above Stardew Valley's apple\n-A router from Mindustry\n-Keg from Sea of Thieves\n-Lamb from Cult of the Lamb sitting on the keg\n-Monika from DDLC above Lamb\n-Fish bowl cuz why not\n-Spooky from Spooky's Mansion\n-White Face and flower from IMSCARED above Spooky\n-V1 from ULTRAKILL\n-The Conductor from Final Station in front of V1's legs\n-Moth from Sky: Children of the Light above V1\n-Apollo from Ace Attorney bottom-right of V1\n-Gnome from Everhood\n-Rivulet on Looks to the Moon from Rain World\n-Gail from Phoenotopia above Rivulet\n-Captain Viridian from VVVVVV above Gail\n-Flowey from Undertale below Looks to the Moon\n-Grimm from Hollow Knight\n-Undertale red heart above Paprika\n-King Slime in front of Grimm\n-The Spiral Heart from Grime next to Grimm\n-Carp from Lisa\n-Richard mask from Hotline Miami above The Spiral Heart\n-Paprika from Them's Fightin' Herds below the Richard mask and above Grimm", "links": {"subreddit": ["IndieAlliance", "APICO", "bindingofisaac", "celestegame", "CultOfTheLamb", "deadcells", "DDLC", "DeepRockGalactic", "DeepRockGalacticPlace", "Everhood", "factorio", "fivenightsatfreddys", "HKPlace", "hotlinemiami", "hyperlightdrifter", "lisathepainfulrpg", "mindustry", "NightInTheWoods", "offthegame", "OMORI", "oneshot", "OriAndTheBlindForest", "outerwilds", "phoenotopia", "placeattorney", "PlaceFishCult", "rainworld", "riskofrain", "Seaofthieves", "starbound", "StardewValley", "terraria", "ultrakill", "Undertale"], "discord": ["FmDZQsjkBW", "GfSmdgha", "celeste", "ddlc", "factorio", "freddit", "mindustry", "orithegame", "rainworld", "terraria", "undertale", "38DGdydTFb", "5dQMafBgGZ", "5TyCKk8h", "6gawWXyU", "NHmc6Jpt", "s625J5tT", "XdMxvvcP", "xHQmkAYN8G", "ypSr9JG2ht"]}, "path": {"162-258, T": [[-770, 374], [-770, 430], [-640, 429], [-640, 374]]}, "center": {"162-258, T": [-714, 402]}}, +{"id": 1445, "name": "Cursedfiber78's pato mamado", "description": "CursedFiber78, better known as \"Pato,\" is a talented Twitch streamer hailing from Mexico. His channel primarily focuses on creating content centered around Overwatch 2.", "links": {"website": ["https://www.twitch.tv/cursedfiber78"], "discord": ["S5rNxbwf"]}, "path": {"168-258, T": [[500, 969], [524, 969], [524, 999], [500, 999]]}, "center": {"168-258, T": [512, 984]}}, +{"id": 1446, "name": "Coat of arms of the Czech Republic", "description": "The national coat of arms of the Czech Republic depicts the three historical regions which make up the country: Bohemia and the whole Czech lands, Moravia, and Silesia.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_the_Czech_Republic"], "subreddit": ["czech"]}, "path": {"136-154": [[-203, 461], [-131, 461], [-131, 499], [-203, 499]], "155-258, T": [[-203, 461], [-203, 541], [-200, 544], [-170, 544], [-168, 546], [-167, 546], [-165, 544], [-135, 544], [-132, 541], [-132, 461]]}, "center": {"136-154": [-167, 480], "155-258, T": [-167, 502]}}, +{"id": 1447, "name": "Flag of Brittany", "description": "Brittany is the westernmost region of France and a region of Celtic ethnicity and culture. The Breton flag, also known as Gwenn-ha-du, features nine stripes representing the nine Breton districts, along with eleven ermines. \nThis Gwenn-ha-du features a Breton ermine shading ; the ermine is a characteristic symbol of the Breton heraldry. \n\nThe flag was placed by members of the PlaceBZH server, with help of their Corsican and Czech allies.", "links": {"website": ["https://en.wikipedia.org/wiki/Brittany", "https://en.wikipedia.org/wiki/Flag_of_Brittany"], "subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"137-258, T": [[-131, 461], [-131, 481], [-98, 481], [-98, 461]]}, "center": {"137-258, T": [-114, 471]}}, +{"id": 1448, "name": "Deep Rock Galactic", "description": "Deep Rock Galactic is a 1-4-player co-op first-person shooter (FPS) game featuring badass space dwarves, 100% destructible environments, procedurally-generated caves, and endless hordes of alien monsters.", "links": {"website": ["https://www.deeprockgalactic.com/", "https://en.wikipedia.org/wiki/Deep_Rock_Galactic"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic"]}, "path": {"155-258, T": [[-299, 568], [-299, 572], [-298, 572], [-298, 586], [-245, 586], [-245, 589], [-244, 589], [-242, 586], [-242, 568]]}, "center": {"155-258, T": [-270, 577]}}, +{"id": 1449, "name": "Sea of Thieves", "description": "Sea of Thieves (SoT) is a sandbox pirate game developed by Rare and released in 2018. The game features both player-vs.-player and player-vs.-enemy combat.", "links": {"website": ["https://www.seaofthieves.com/", "https://en.wikipedia.org/wiki/Sea_of_Thieves"], "subreddit": ["Seaofthieves"]}, "path": {"155-258, T": [[-285, 585], [-289, 589], [-289, 601], [-285, 603], [-234, 603], [-232, 601], [-232, 589], [-244, 589], [-244, 588], [-255, 588], [-257, 585]]}, "center": {"155-258, T": [-262, 594]}}, +{"id": 1450, "name": "Factorio", "description": "Factorio is a factory simulation and construction indie game developed by Czech studio Wube Software. \n\nThe game follows an engineer who crash-lands onto an alien planet, exploiting its resources to build a rocket to escape while battling native insect-like attackers. The game is commonly nicknamed \"Cracktorio\" by fans due to its addictive and time obliterating qualities.\n\nThe game's iconic transport belts can be see extending beyond the confines of the main piece.", "links": {"website": ["https://factorio.com/", "https://en.wikipedia.org/wiki/Factorio"], "subreddit": ["factorio"], "discord": ["factorio", "256GTXgN"]}, "path": {"160-203": [[-298, 603], [-231, 603], [-231, 626], [-231, 631], [-236, 631], [-236, 623], [-300, 624], [-300, 603]], "204-214": [[-298, 603], [-231, 603], [-231, 626], [-195, 626], [-195, 630], [-195, 632], [-237, 632], [-237, 623], [-299, 623], [-299, 603]], "215-258, T": [[-298, 603], [-231, 603], [-231, 626], [-195, 626], [-195, 630], [-193, 632], [-193, 662], [-199, 662], [-199, 632], [-236, 632], [-236, 621], [-294, 621], [-294, 626], [-299, 626]]}, "center": {"160-203": [-286, 613], "204-214": [-288, 613], "215-258, T": [-250, 612]}}, +{"id": 1451, "name": "Olympia Logo", "description": "Logo of an historic german typewriter brand. Artwork propsed by r/typewriters", "links": {"subreddit": ["placeDE", "typewriters"]}, "path": {"199-258, T": [[-916, -566], [-916, -553], [-861, -553], [-861, -566]]}, "center": {"199-258, T": [-888, -559]}}, {"id": 1452, "name": "Grover II", "description": "Emperor Grover II from the HoI4 mod, Equestria At War.", "links": {"website": ["https://equestria-at-war-lore.fandom.com/wiki/Grover_II"], "subreddit": ["equestriaatwar", "mylittlepony"], "discord": ["manechat"]}, "path": {"27-98": [[-37, 179], [-37, 180], [-38, 180], [-38, 184], [-39, 184], [-39, 181], [-39, 186], [-41, 186], [-41, 193], [-42, 193], [-42, 194], [-43, 194], [-43, 195], [-44, 195], [-44, 196], [-45, 196], [-45, 197], [-47, 197], [-47, 196], [-50, 196], [-50, 195], [-52, 195], [-52, 196], [-53, 196], [-53, 197], [-53, 193], [-52, 193], [-52, 191], [-51, 191], [-51, 185], [-52, 185], [-52, 181], [-53, 181], [-53, 178], [-52, 179], [-52, 180], [-52, 181], [-50, 181], [-50, 180], [-50, 181], [-47, 181], [-47, 179], [-46, 179], [-46, 178], [-45, 179], [-45, 181], [-44, 182], [-43, 181], [-42, 182], [-41, 181], [-41, 182], [-40, 183]]}, "center": {"27-98": [-46, 187]}}, -{"id": 1453, "name": "Cebolinha", "description": "Jimmy Five, known as Cebolinha in Portuguese, is one of Monica and Friends' main characters. \nJimmy's family name is \"Cebola\" (\"onion\" in Portuguese). \nHis English name is Jimmy Five due to his hair composed of only five strands. In the first adaptations of comics into English, the character's name was Stanley, and later Frizz.", "links": {"website": ["https://en.wikipedia.org/wiki/Jimmy_Five"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"170-258": [[244, 532], [246, 532], [246, 527], [247, 527], [247, 526], [246, 526], [246, 525], [246, 524], [247, 524], [245, 524], [245, 523], [246, 522], [245, 523], [245, 524], [243, 524], [243, 521], [243, 524], [241, 524], [241, 523], [240, 522], [241, 523], [241, 524], [239, 524], [240, 524], [240, 525], [240, 526], [239, 526], [239, 528], [240, 528], [240, 532], [246, 532]]}, "center": {"170-258": [243, 528]}}, -{"id": 1454, "name": "Cascão", "description": "Cassius, known as Smudge (originally Cascão – Portuguese for a dirt layer that may appear on the human skin when not washed frequently - in the Brazilian version) is one of the main characters of Monica's Gang.", "links": {"website": ["https://en.wikipedia.org/wiki/Smudge_(Monica_and_Friends)"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"170-258": [[163, 559], [169, 559], [169, 555], [170, 555], [170, 553], [169, 553], [169, 552], [168, 552], [168, 551], [167, 551], [167, 550], [165, 550], [165, 551], [164, 551], [164, 552], [163, 552], [163, 553], [162, 553], [162, 554], [163, 554]]}, "center": {"170-258": [166, 555]}}, -{"id": 1455, "name": "\"Mission Erde\" Logo", "description": "Logo of a nature conservation oragnisation based in germany. It was initiated by the german underwater nature photographer Robert Mark Lehmann.", "links": {"website": ["https://missionerde.de/"], "subreddit": ["placede"]}, "path": {"170-258": [[43, -987], [51, -938], [65, -928], [82, -928], [95, -937], [102, -986], [74, -994]]}, "center": {"170-258": [73, -967]}}, -{"id": 1457, "name": "1UP Graffity on TGV", "description": "Graffity in the style of an popular german graffity crew. The abbreviation 1UP is short for one united power.", "links": {"website": ["https://de.wikipedia.org/wiki/1UP_(Sprayer)"], "subreddit": ["placede"]}, "path": {"170-258": [[-471, -386], [-499, -387], [-508, -372], [-460, -371]]}, "center": {"170-258": [-476, -379]}}, -{"id": 1458, "name": "Mônica", "description": "Mônica is a Brazilian fictional character and Mauricio de Sousa's best-known creation. Introduced in 1963, she serves as the main protagonist and title character of the Monica and Friends (Turma da Mônica) comic book series and media franchise.", "links": {"website": ["https://en.wikipedia.org/wiki/Monica_(Monica_and_Friends)"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"169-258": [[153, 550], [159, 550], [159, 551], [160, 551], [159, 551], [159, 552], [159, 553], [160, 553], [160, 555], [159, 555], [159, 559], [153, 559], [153, 555], [152, 555], [152, 554], [151, 554], [151, 552], [152, 552], [152, 551], [153, 551]]}, "center": {"169-258": [155, 553]}}, -{"id": 1459, "name": "Arc de Triomphe", "description": "A mini version of the Arc de Triomphe, one of the most famous monuments in Paris, standing at the western end of the Champs-Élysées and at the centre of Place Charles de Gaulle", "author": "AnElongated_Muskrat", "links": {"website": ["https://en.wikipedia.org/wiki/Arc_de_Triomphe"]}, "path": {"169-258": [[-421, 768], [-421, 714], [-381, 714], [-381, 767], [-381, 768]]}, "center": {"169-258": [-401, 741]}}, +{"id": 1453, "name": "Cebolinha", "description": "Jimmy Five, known as Cebolinha in Portuguese, is one of Monica and Friends' main characters. \nJimmy's family name is \"Cebola\" (\"onion\" in Portuguese). \nHis English name is Jimmy Five due to his hair composed of only five strands. In the first adaptations of comics into English, the character's name was Stanley, and later Frizz.", "links": {"website": ["https://en.wikipedia.org/wiki/Jimmy_Five"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"170-258, T": [[244, 532], [246, 532], [246, 527], [247, 527], [247, 526], [246, 526], [246, 525], [246, 524], [247, 524], [245, 524], [245, 523], [246, 522], [245, 523], [245, 524], [243, 524], [243, 521], [243, 524], [241, 524], [241, 523], [240, 522], [241, 523], [241, 524], [239, 524], [240, 524], [240, 525], [240, 526], [239, 526], [239, 528], [240, 528], [240, 532], [246, 532]]}, "center": {"170-258, T": [243, 528]}}, +{"id": 1454, "name": "Cascão", "description": "Cassius, known as Smudge (originally Cascão – Portuguese for a dirt layer that may appear on the human skin when not washed frequently - in the Brazilian version) is one of the main characters of Monica's Gang.", "links": {"website": ["https://en.wikipedia.org/wiki/Smudge_(Monica_and_Friends)"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"170-258, T": [[163, 559], [169, 559], [169, 555], [170, 555], [170, 553], [169, 553], [169, 552], [168, 552], [168, 551], [167, 551], [167, 550], [165, 550], [165, 551], [164, 551], [164, 552], [163, 552], [163, 553], [162, 553], [162, 554], [163, 554]]}, "center": {"170-258, T": [166, 555]}}, +{"id": 1455, "name": "\"Mission Erde\" Logo", "description": "Logo of a nature conservation oragnisation based in germany. It was initiated by the german underwater nature photographer Robert Mark Lehmann.", "links": {"website": ["https://missionerde.de/"], "subreddit": ["placede"]}, "path": {"170-258, T": [[43, -987], [51, -938], [65, -928], [82, -928], [95, -937], [102, -986], [74, -994]]}, "center": {"170-258, T": [73, -967]}}, +{"id": 1457, "name": "1UP Graffity on TGV", "description": "Graffity in the style of an popular german graffity crew. The abbreviation 1UP is short for one united power.", "links": {"website": ["https://de.wikipedia.org/wiki/1UP_(Sprayer)"], "subreddit": ["placede"]}, "path": {"170-258, T": [[-471, -386], [-499, -387], [-508, -372], [-460, -371]]}, "center": {"170-258, T": [-476, -379]}}, +{"id": 1458, "name": "Mônica", "description": "Mônica is a Brazilian fictional character and Mauricio de Sousa's best-known creation. Introduced in 1963, she serves as the main protagonist and title character of the Monica and Friends (Turma da Mônica) comic book series and media franchise.", "links": {"website": ["https://en.wikipedia.org/wiki/Monica_(Monica_and_Friends)"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"169-258, T": [[153, 550], [159, 550], [159, 551], [160, 551], [159, 551], [159, 552], [159, 553], [160, 553], [160, 555], [159, 555], [159, 559], [153, 559], [153, 555], [152, 555], [152, 554], [151, 554], [151, 552], [152, 552], [152, 551], [153, 551]]}, "center": {"169-258, T": [155, 553]}}, +{"id": 1459, "name": "Arc de Triomphe", "description": "A mini version of the Arc de Triomphe, one of the most famous monuments in Paris, standing at the western end of the Champs-Élysées and at the centre of Place Charles de Gaulle", "author": "AnElongated_Muskrat", "links": {"website": ["https://en.wikipedia.org/wiki/Arc_de_Triomphe"]}, "path": {"169-258, T": [[-421, 768], [-421, 714], [-381, 714], [-381, 767], [-381, 768]]}, "center": {"169-258, T": [-401, 741]}}, {"id": 1460, "name": "Zeno", "description": "A little drawing of the robotic mascot of the 2D r/place-inspired canvas, PixelLand, and the 3D canvas, VoxelTown.", "links": {"website": ["https://pixel.land/", "https://voxels.town/"], "discord": ["gTR3qCTpgU"]}, "path": {"169-177": [[-817, -2], [-804, -2], [-804, 12], [-817, 12]]}, "center": {"169-177": [-810, 5]}}, -{"id": 1461, "name": "Magali", "description": "Maggy (original \"Magali\"), is a character of the popular Brazilian comic book series Monica and Friends. She was created by Mauricio de Sousa, who based the character on one of his daughters.", "links": {"website": ["https://en.wikipedia.org/wiki/Maggy_(Monica_and_Friends)"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"170-258": [[180, 559], [180, 555], [181, 555], [182, 556], [181, 555], [181, 554], [182, 554], [182, 552], [181, 552], [181, 551], [180, 551], [180, 550], [174, 550], [174, 551], [173, 551], [174, 551], [174, 552], [174, 553], [173, 553], [173, 555], [174, 555], [174, 556], [174, 559]]}, "center": {"170-258": [178, 553]}}, -{"id": 1462, "name": "Grass Cutting Incremental", "description": "A Roblox Incremental Game based on cutting grass and do reset layers. The characters beside the GCI text are Grassman and Anti-Grassman. Both of these character are the main characters in the game.", "links": {"website": ["https://www.roblox.com/games/9292879820/BIG-UPD-Grass-Cutting-Incremental"], "subreddit": ["GrassCutting"], "discord": ["lethalgames"]}, "path": {"170-258": [[-215, 171], [-195, 171], [-195, 176], [-215, 176], [-225, 176], [-225, 171]]}, "center": {"170-258": [-210, 174]}}, -{"id": 1464, "name": "Flag of Estonia", "description": "Estonia is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia", "https://en.wikipedia.org/wiki/Flag_of_Estonia"], "subreddit": ["Eesti"]}, "path": {"155-258": [[3, 893], [3, 909], [55, 909], [55, 893], [-16, 893], [-22, 900], [-22, 905], [-27, 909], [11, 909], [12, 909], [14, 909]]}, "center": {"155-258": [29, 901]}}, -{"id": 1465, "name": "BattleBots", "description": "BattleBots is a robot combat TV show.", "links": {"website": ["https://battlebots.com/", "https://en.wikipedia.org/wiki/BattleBots"], "subreddit": ["battlebots"]}, "path": {"167-258": [[-202, 560], [-202, 568], [-192, 568], [-192, 560]]}, "center": {"167-258": [-197, 564]}}, -{"id": 1466, "name": "Flag of Albania", "description": "Albania is a country in Southeastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Albania", "https://en.wikipedia.org/wiki/Flag_of_Albania"], "subreddit": ["placeAL", "albania"], "discord": ["CA2vjK2nsR", "tHFXfxxHTy"]}, "path": {"158-258": [[30, 872], [30, 885], [55, 885], [55, 872]]}, "center": {"158-258": [43, 879]}}, -{"id": 1467, "name": "QSMP", "description": "QSMP is a survival multiplayer server in the game Minecraft featuring many Minecraft-focused YouTubers who speak various languages. It is known as \"the world's first multilingual Minecraft server\".", "links": {"website": ["https://qsmp.fandom.com/wiki/QSMP"], "subreddit": ["placestart"]}, "path": {"165-258": [[-149, 971], [-151, 973], [-151, 996], [-149, 998], [-53, 998], [-51, 996], [-51, 973], [-53, 971]]}, "center": {"165-258": [-101, 985]}}, +{"id": 1461, "name": "Magali", "description": "Maggy (original \"Magali\"), is a character of the popular Brazilian comic book series Monica and Friends. She was created by Mauricio de Sousa, who based the character on one of his daughters.", "links": {"website": ["https://en.wikipedia.org/wiki/Maggy_(Monica_and_Friends)"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"170-258, T": [[180, 559], [180, 555], [181, 555], [182, 556], [181, 555], [181, 554], [182, 554], [182, 552], [181, 552], [181, 551], [180, 551], [180, 550], [174, 550], [174, 551], [173, 551], [174, 551], [174, 552], [174, 553], [173, 553], [173, 555], [174, 555], [174, 556], [174, 559]]}, "center": {"170-258, T": [178, 553]}}, +{"id": 1462, "name": "Grass Cutting Incremental", "description": "A Roblox Incremental Game based on cutting grass and do reset layers. The characters beside the GCI text are Grassman and Anti-Grassman. Both of these character are the main characters in the game.", "links": {"website": ["https://www.roblox.com/games/9292879820/BIG-UPD-Grass-Cutting-Incremental"], "subreddit": ["GrassCutting"], "discord": ["lethalgames"]}, "path": {"170-258, T": [[-215, 171], [-195, 171], [-195, 176], [-215, 176], [-225, 176], [-225, 171]]}, "center": {"170-258, T": [-210, 174]}}, +{"id": 1464, "name": "Flag of Estonia", "description": "Estonia is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia", "https://en.wikipedia.org/wiki/Flag_of_Estonia"], "subreddit": ["Eesti"]}, "path": {"155-258, T": [[3, 893], [3, 909], [55, 909], [55, 893], [-16, 893], [-22, 900], [-22, 905], [-27, 909], [11, 909], [12, 909], [14, 909]]}, "center": {"155-258, T": [29, 901]}}, +{"id": 1465, "name": "BattleBots", "description": "BattleBots is a robot combat TV show.", "links": {"website": ["https://battlebots.com/", "https://en.wikipedia.org/wiki/BattleBots"], "subreddit": ["battlebots"]}, "path": {"167-258, T": [[-202, 560], [-202, 568], [-192, 568], [-192, 560]]}, "center": {"167-258, T": [-197, 564]}}, +{"id": 1466, "name": "Flag of Albania", "description": "Albania is a country in Southeastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Albania", "https://en.wikipedia.org/wiki/Flag_of_Albania"], "subreddit": ["placeAL", "albania"], "discord": ["CA2vjK2nsR", "tHFXfxxHTy"]}, "path": {"158-258, T": [[30, 872], [30, 885], [55, 885], [55, 872]]}, "center": {"158-258, T": [43, 879]}}, +{"id": 1467, "name": "QSMP", "description": "QSMP is a survival multiplayer server in the game Minecraft featuring many Minecraft-focused YouTubers who speak various languages. It is known as \"the world's first multilingual Minecraft server\".", "links": {"website": ["https://qsmp.fandom.com/wiki/QSMP"], "subreddit": ["placestart"]}, "path": {"165-258, T": [[-149, 971], [-151, 973], [-151, 996], [-149, 998], [-53, 998], [-51, 996], [-51, 973], [-53, 971]]}, "center": {"165-258, T": [-101, 985]}}, {"id": 1468, "name": "Destiny", "description": "Steven Kenneth \"Destiny\" Bonnell II is a gaming and politics Twitch streamer and YouTuber.", "links": {"website": ["https://destiny.gg/", "https://en.wikipedia.org/wiki/Destiny_(streamer)"], "subreddit": ["Destiny", "placestart"]}, "path": {"163-193": [[-353, 971], [-355, 973], [-355, 996], [-354, 998], [-256, 998], [-255, 997], [-255, 973], [-257, 971]]}, "center": {"163-193": [-305, 985]}}, -{"id": 1469, "name": "Hololive", "description": "Hololive Production is a virtual YouTuber (VTuber) agency owned by Japanese tech entertainment company Cover Corporation. In addition to acting as a multi-channel network, Hololive Production also handles merchandising especially in music production and concert organization. The brand gained popularity as a talent agency for popular VTubers, managing 75 talents as of January 2023. Among them are the most subscribed active VTubers in Japan (Houshou Marine), Southeast Asia (Kobo Kanaeru), and North America (Gawr Gura). The star-like logo on the right depicts Holostars, the male-only branch, while \"Hololive\" represents the female-only unit.", "links": {"website": ["https://en.hololive.tv/", "https://en.wikipedia.org/wiki/Hololive_Production"], "subreddit": ["Hololive", "placestart"], "discord": ["vtubersplace", "holofans"]}, "path": {"163-258": [[-380, 970], [-382, 972], [-382, 997], [-380, 999], [-356, 999], [-354, 997], [-354, 972], [-356, 970]]}, "center": {"163-258": [-368, 985]}}, -{"id": 1470, "name": "VShojo", "description": "VShojo is a VTuber organization founded by TheGunrun and based in San Francisco, California, United States. VShojo brands itself as a talent-first VTuber company. Unlike Japan-based VTuber organizations, VShojo primarily uses Twitch for livestreaming, with YouTube reserved primarily for highlight clips and edited content.", "links": {"website": ["https://www.vshojo.com/", "https://en.wikipedia.org/wiki/VShojo"], "subreddit": ["VShojo", "placestart"], "discord": ["vtubersplace"]}, "path": {"163-258": [[-410, 971], [-412, 973], [-412, 997], [-410, 999], [-385, 999], [-383, 997], [-383, 973], [-386, 970], [-409, 970]]}, "center": {"163-258": [-397, 985]}}, -{"id": 1471, "name": "NIJISANJI", "description": "NIJISANJI is a VTuber agency featuring a variety of talented influencers who create exciting content. The objective of this project is to accelerate the beginning of the next generation of entertainment through various activities and services such as events, goods and digital content, original music, etc. Currently, over 200 VTubers are active, regularly creating unique content on various video streaming platforms such as YouTube.\n\nThis specific icon was planned by Vtubers Place and the Task Bar to be added, however an unaffiliated group mistakenly placed it over the location that was allocated for Senko's Lab. VTubers Place and the Senko community eventually coordinated to relocate the icon to its intended location while also building the Senko's Lab icon in its rightful place.", "links": {"website": ["https://www.nijisanji.jp/en", "https://en.wikipedia.org/wiki/Nijisanji"], "subreddit": ["Nijisanji", "placestart"], "discord": ["vtubersplace"]}, "path": {"164-193": [[-437, 970], [-439, 972], [-439, 997], [-437, 999], [-415, 999], [-413, 997], [-413, 973], [-416, 970]], "194-258": [[-321, 973], [-320, 972], [-319, 971], [-295, 971], [-295, 972], [-294, 973], [-294, 995], [-295, 996], [-295, 997], [-296, 997], [-297, 998], [-318, 998], [-319, 997], [-320, 997], [-320, 996], [-321, 995]]}, "center": {"164-193": [-426, 985], "194-258": [-307, 985]}}, -{"id": 1472, "name": "Straw hat tab", "description": "This tile represents the jolly roger of the straw hat pirates from the famous anime show \"One Piece\"", "links": {"subreddit": ["OnePiece"], "discord": ["Oneplace"]}, "path": {"221-258": [[-582, 975], [-560, 975], [-560, 996], [-583, 996]]}, "center": {"221-258": [-571, 986]}}, -{"id": 1473, "name": "Minecraft", "description": "Minecraft is a voxel-based sandbox game.", "links": {"website": ["https://www.minecraft.net/en-us/", "https://en.wikipedia.org/wiki/Minecraft"], "subreddit": ["Minecraft", "placestart"]}, "path": {"162-185": [[-709, 970], [-712, 973], [-712, 997], [-710, 999], [-600, 999], [-598, 997], [-598, 973], [-601, 970]], "200-258": [[-712, 971], [-683, 971], [-683, 999], [-712, 999]]}, "center": {"162-185": [-655, 985], "200-258": [-697, 985]}}, -{"id": 1474, "name": "Destiny.gg", "description": "Destiny.gg is the site of the streamer Destiny", "links": {"website": ["https://www.destiny.gg/"], "subreddit": ["Destiny"], "discord": ["ywvWYsyw"]}, "path": {"202-258": [[-813, 972], [-815, 974], [-816, 999], [-744, 999], [-743, 974], [-746, 972]]}, "center": {"202-258": [-779, 986]}}, +{"id": 1469, "name": "Hololive", "description": "Hololive Production is a virtual YouTuber (VTuber) agency owned by Japanese tech entertainment company Cover Corporation. In addition to acting as a multi-channel network, Hololive Production also handles merchandising especially in music production and concert organization. The brand gained popularity as a talent agency for popular VTubers, managing 75 talents as of January 2023. Among them are the most subscribed active VTubers in Japan (Houshou Marine), Southeast Asia (Kobo Kanaeru), and North America (Gawr Gura). The star-like logo on the right depicts Holostars, the male-only branch, while \"Hololive\" represents the female-only unit.", "links": {"website": ["https://en.hololive.tv/", "https://en.wikipedia.org/wiki/Hololive_Production"], "subreddit": ["Hololive", "placestart"], "discord": ["vtubersplace", "holofans"]}, "path": {"163-258, T": [[-380, 970], [-382, 972], [-382, 997], [-380, 999], [-356, 999], [-354, 997], [-354, 972], [-356, 970]]}, "center": {"163-258, T": [-368, 985]}}, +{"id": 1470, "name": "VShojo", "description": "VShojo is a VTuber organization founded by TheGunrun and based in San Francisco, California, United States. VShojo brands itself as a talent-first VTuber company. Unlike Japan-based VTuber organizations, VShojo primarily uses Twitch for livestreaming, with YouTube reserved primarily for highlight clips and edited content.", "links": {"website": ["https://www.vshojo.com/", "https://en.wikipedia.org/wiki/VShojo"], "subreddit": ["VShojo", "placestart"], "discord": ["vtubersplace"]}, "path": {"163-258, T": [[-410, 971], [-412, 973], [-412, 997], [-410, 999], [-385, 999], [-383, 997], [-383, 973], [-386, 970], [-409, 970]]}, "center": {"163-258, T": [-397, 985]}}, +{"id": 1471, "name": "NIJISANJI", "description": "NIJISANJI is a VTuber agency featuring a variety of talented influencers who create exciting content. The objective of this project is to accelerate the beginning of the next generation of entertainment through various activities and services such as events, goods and digital content, original music, etc. Currently, over 200 VTubers are active, regularly creating unique content on various video streaming platforms such as YouTube.\n\nThis specific icon was planned by Vtubers Place and the Task Bar to be added, however an unaffiliated group mistakenly placed it over the location that was allocated for Senko's Lab. VTubers Place and the Senko community eventually coordinated to relocate the icon to its intended location while also building the Senko's Lab icon in its rightful place.", "links": {"website": ["https://www.nijisanji.jp/en", "https://en.wikipedia.org/wiki/Nijisanji"], "subreddit": ["Nijisanji", "placestart"], "discord": ["vtubersplace"]}, "path": {"164-193": [[-437, 970], [-439, 972], [-439, 997], [-437, 999], [-415, 999], [-413, 997], [-413, 973], [-416, 970]], "194-258, T": [[-321, 973], [-320, 972], [-319, 971], [-295, 971], [-295, 972], [-294, 973], [-294, 995], [-295, 996], [-295, 997], [-296, 997], [-297, 998], [-318, 998], [-319, 997], [-320, 997], [-320, 996], [-321, 995]]}, "center": {"164-193": [-426, 985], "194-258, T": [-307, 985]}}, +{"id": 1472, "name": "Straw hat tab", "description": "This tile represents the jolly roger of the straw hat pirates from the famous anime show \"One Piece\"", "links": {"subreddit": ["OnePiece"], "discord": ["Oneplace"]}, "path": {"221-258, T": [[-582, 975], [-560, 975], [-560, 996], [-583, 996]]}, "center": {"221-258, T": [-571, 986]}}, +{"id": 1473, "name": "Minecraft", "description": "Minecraft is a voxel-based sandbox game.", "links": {"website": ["https://www.minecraft.net/en-us/", "https://en.wikipedia.org/wiki/Minecraft"], "subreddit": ["Minecraft", "placestart"]}, "path": {"162-185": [[-709, 970], [-712, 973], [-712, 997], [-710, 999], [-600, 999], [-598, 997], [-598, 973], [-601, 970]], "200-258, T": [[-712, 971], [-683, 971], [-683, 999], [-712, 999]]}, "center": {"162-185": [-655, 985], "200-258, T": [-697, 985]}}, +{"id": 1474, "name": "Destiny.gg", "description": "Destiny.gg is the site of the streamer Destiny", "links": {"website": ["https://www.destiny.gg/"], "subreddit": ["Destiny"], "discord": ["ywvWYsyw"]}, "path": {"202-258, T": [[-813, 972], [-815, 974], [-816, 999], [-744, 999], [-743, 974], [-746, 972]]}, "center": {"202-258, T": [-779, 986]}}, {"id": 1475, "name": "Rosa The Sea Otter", "description": "Rosa is a female sea otter at the Monterey Bay Aquarium. \n\nRosa is a fan favorite for the DougDoug community. They have donated towards the aquarium in the past.", "links": {"website": ["https://www.montereybayaquarium.org", "https://www.youtube.com/watch?v=FBWe2009vak"]}, "path": {"169": [[101, 253], [101, 250], [118, 250], [118, 255], [101, 255], [101, 254]]}, "center": {"169": [110, 253]}}, -{"id": 1476, "name": "Bingo Heeler", "description": "This shot of Bluey character Bingo Heeler depicts her popping out of an Earth, as shown in the Season Two episode \"Sleepytime\".", "links": {"website": ["https://blueypedia.fandom.com/wiki/Bingo_Heeler", "https://blueypedia.fandom.com/wiki/Sleepytime"], "subreddit": ["Bluey"], "discord": ["blueyheeler"]}, "path": {"171-258": [[723, 780], [723, 839], [771, 839], [772, 780]]}, "center": {"171-258": [747, 809]}}, +{"id": 1476, "name": "Bingo Heeler", "description": "This shot of Bluey character Bingo Heeler depicts her popping out of an Earth, as shown in the Season Two episode \"Sleepytime\".", "links": {"website": ["https://blueypedia.fandom.com/wiki/Bingo_Heeler", "https://blueypedia.fandom.com/wiki/Sleepytime"], "subreddit": ["Bluey"], "discord": ["blueyheeler"]}, "path": {"171-258, T": [[723, 780], [723, 839], [771, 839], [772, 780]]}, "center": {"171-258, T": [747, 809]}}, {"id": 1477, "name": "Wally/Waldo", "description": "Where's Wally? (called Where's Waldo? in Canada and the USA) is a British series of children's puzzle books created by English illustrator Martin Handford. The books consist of a series of detailed double-page spread illustrations depicting dozens or more people doing a variety of amusing things at a given location. Readers are challenged to find a character named Wally hidden in the group.", "links": {"website": ["https://en.wikipedia.org/wiki/Where%27s_Wally%3F"]}, "path": {"161-176": [[-660, 843], [-660, 845], [-658, 845], [-658, 849], [-658, 860], [-657, 862], [-655, 865], [-654, 867], [-658, 871], [-659, 873], [-660, 877], [-662, 880], [-663, 882], [-663, 884], [-658, 884], [-657, 881], [-656, 878], [-655, 877], [-656, 889], [-655, 888], [-652, 885], [-651, 884], [-647, 884], [-646, 885], [-645, 885], [-645, 874], [-642, 880], [-640, 880], [-638, 884], [-637, 882], [-635, 884], [-634, 883], [-634, 881], [-639, 876], [-639, 875], [-640, 875], [-640, 874], [-643, 870], [-646, 867], [-646, 865], [-645, 865], [-645, 863], [-644, 863], [-644, 861], [-643, 861], [-643, 860], [-642, 860], [-642, 855], [-641, 855], [-641, 851], [-642, 851], [-642, 850], [-645, 850], [-645, 849], [-646, 848], [-648, 848], [-652, 846]], "177-239": [[-660, 843], [-660, 845], [-658, 845], [-658, 849], [-658, 860], [-657, 862], [-655, 865], [-654, 867], [-658, 871], [-659, 873], [-660, 877], [-662, 880], [-663, 882], [-663, 884], [-660, 884], [-659, 883], [-658, 879], [-654, 873], [-654, 884], [-645, 884], [-645, 874], [-640, 880], [-638, 883], [-637, 884], [-634, 881], [-637, 878], [-642, 870], [-644, 867], [-645, 866], [-642, 860], [-642, 857], [-642, 853], [-645, 849], [-650, 846], [-653, 846]], "135-153": [[857, 72], [860, 72], [862, 71], [862, 56], [861, 55], [861, 52], [860, 51], [860, 49], [859, 48], [859, 43], [857, 41], [857, 39], [854, 36], [851, 39], [851, 48], [854, 52], [852, 54], [852, 60], [853, 62], [855, 65], [855, 70]]}, "center": {"161-176": [-650, 856], "177-239": [-650, 858], "135-153": [857, 58]}}, {"id": 1478, "name": "Cardiacs", "description": "Cardiacs is an English rock band that started in 1977. The band is hailed as an influence by bands as diverse as Blur, Faith No More and Radiohead. This icon, alongside the daisy, is a common icon for the Cardiacs; both icons come from the Cardiacs's debut album, A Little Man and a House and the Whole World Window.", "links": {"website": ["https://cardiacs.net"], "subreddit": ["cardiacs"]}, "path": {"124-199": [[-801, 435], [-771, 435], [-771, 441], [-793, 441], [-793, 447], [-801, 447], [-801, 446]]}, "center": {"124-199": [-797, 439]}}, -{"id": 1479, "name": "Favela 5 QSMP", "description": "some houses to represent QSMP BR area", "links": {}, "path": {"171-258": [[31, 416], [146, 417], [147, 431], [30, 431]]}, "center": {"171-258": [60, 424]}}, -{"id": 1480, "name": "Lua", "description": "Lua is a programming language designed primarily for embedded use in applications.\nLua was created in 1993 by Roberto Ierusalimschy, Luiz Henrique de Figueiredo, and Waldemar Celes, members of the Computer Graphics Technology Group (Tecgraf) at the Pontifical Catholic University of Rio de Janeiro, in Brazil.", "links": {"website": ["https://en.wikipedia.org/wiki/Lua_(programming_language)"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"170-258": [[244, 409], [246, 409], [246, 408], [247, 408], [247, 406], [246, 406], [246, 405], [244, 405], [244, 406], [243, 406], [243, 408], [244, 408], [244, 409], [242, 410], [241, 410], [241, 409], [239, 409], [239, 408], [234, 408], [234, 409], [232, 409], [232, 410], [231, 410], [231, 411], [230, 411], [230, 413], [229, 413], [229, 418], [230, 418], [230, 420], [231, 420], [231, 421], [232, 421], [232, 422], [234, 422], [234, 423], [239, 423], [239, 422], [241, 422], [241, 421], [242, 421], [242, 420], [243, 420], [243, 418], [244, 418], [244, 413], [243, 413], [243, 411]]}, "center": {"170-258": [237, 415]}}, -{"id": 1481, "name": "Estrangeiro", "description": "Estrangeiro is a creature made for the 'Ordem Paranormal' a Brazilian tabletop RPG, created by Cellbit.\n\nThis creature was introduced in the season 'Sinais do Outro Lado'.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Estrangeiro"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"171-185": [[-1009, 999], [-1018, 956], [-1024, 935], [-1028, 896], [-1035, 843], [-1039, 767], [-1040, 725], [-1035, 668], [-1028, 628], [-1025, 611], [-1022, 583], [-1043, 599], [-1060, 601], [-1075, 605], [-1082, 608], [-1097, 607], [-1103, 604], [-1110, 591], [-1111, 586], [-1114, 568], [-1116, 563], [-1117, 553], [-1122, 547], [-1122, 531], [-1138, 522], [-1148, 519], [-1158, 520], [-1172, 526], [-1179, 528], [-1179, 551], [-1189, 564], [-1189, 574], [-1194, 584], [-1194, 598], [-1203, 607], [-1220, 607], [-1231, 605], [-1239, 601], [-1255, 594], [-1255, 596], [-1260, 596], [-1280, 585], [-1274, 620], [-1266, 679], [-1263, 694], [-1262, 722], [-1263, 806], [-1266, 844], [-1268, 854], [-1276, 907], [-1281, 939], [-1288, 968], [-1292, 990], [-1297, 999]], "186-258": [[-1015, 971], [-1025, 913], [-1032, 864], [-1037, 819], [-1039, 757], [-1039, 716], [-1032, 646], [-1024, 609], [-1022, 584], [-1036, 595], [-1044, 599], [-1056, 600], [-1079, 607], [-1103, 608], [-1108, 594], [-1110, 593], [-1111, 573], [-1115, 564], [-1117, 553], [-1122, 547], [-1122, 530], [-1135, 525], [-1145, 518], [-1156, 518], [-1167, 524], [-1179, 529], [-1179, 550], [-1189, 564], [-1190, 575], [-1195, 584], [-1195, 598], [-1203, 606], [-1224, 607], [-1249, 596], [-1259, 594], [-1275, 588], [-1278, 586], [-1276, 608], [-1268, 659], [-1261, 717], [-1263, 806], [-1267, 850], [-1271, 870], [-1276, 897], [-1280, 921], [-1283, 947], [-1287, 956], [-1289, 971], [-1197, 971], [-1200, 978], [-1200, 984], [-1189, 971], [-1186, 971], [-1187, 979], [-1192, 987], [-1192, 991], [-1189, 992], [-1180, 977], [-1179, 971], [-1175, 971], [-1174, 981], [-1172, 993], [-1169, 971], [-1168, 980], [-1166, 987], [-1166, 989], [-1163, 983], [-1164, 977], [-1165, 971], [-1137, 971], [-1136, 988], [-1134, 988], [-1133, 971], [-1132, 971], [-1129, 991], [-1125, 989], [-1126, 971], [-1121, 971], [-1118, 982], [-1117, 984], [-1116, 991], [-1115, 993], [-1114, 982], [-1116, 971], [-1109, 971], [-1103, 980], [-1103, 974], [-1104, 971]]}, "center": {"171-185": [-1151, 879], "186-258": [-1150, 854]}}, +{"id": 1479, "name": "Favela 5 QSMP", "description": "some houses to represent QSMP BR area", "links": {}, "path": {"171-258, T": [[31, 416], [146, 417], [147, 431], [30, 431]]}, "center": {"171-258, T": [60, 424]}}, +{"id": 1480, "name": "Lua", "description": "Lua is a programming language designed primarily for embedded use in applications.\nLua was created in 1993 by Roberto Ierusalimschy, Luiz Henrique de Figueiredo, and Waldemar Celes, members of the Computer Graphics Technology Group (Tecgraf) at the Pontifical Catholic University of Rio de Janeiro, in Brazil.", "links": {"website": ["https://en.wikipedia.org/wiki/Lua_(programming_language)"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"170-258, T": [[244, 409], [246, 409], [246, 408], [247, 408], [247, 406], [246, 406], [246, 405], [244, 405], [244, 406], [243, 406], [243, 408], [244, 408], [244, 409], [242, 410], [241, 410], [241, 409], [239, 409], [239, 408], [234, 408], [234, 409], [232, 409], [232, 410], [231, 410], [231, 411], [230, 411], [230, 413], [229, 413], [229, 418], [230, 418], [230, 420], [231, 420], [231, 421], [232, 421], [232, 422], [234, 422], [234, 423], [239, 423], [239, 422], [241, 422], [241, 421], [242, 421], [242, 420], [243, 420], [243, 418], [244, 418], [244, 413], [243, 413], [243, 411]]}, "center": {"170-258, T": [237, 415]}}, +{"id": 1481, "name": "Estrangeiro", "description": "Estrangeiro is a creature made for the 'Ordem Paranormal' a Brazilian tabletop RPG, created by Cellbit.\n\nThis creature was introduced in the season 'Sinais do Outro Lado'.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Estrangeiro"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"171-185": [[-1009, 999], [-1018, 956], [-1024, 935], [-1028, 896], [-1035, 843], [-1039, 767], [-1040, 725], [-1035, 668], [-1028, 628], [-1025, 611], [-1022, 583], [-1043, 599], [-1060, 601], [-1075, 605], [-1082, 608], [-1097, 607], [-1103, 604], [-1110, 591], [-1111, 586], [-1114, 568], [-1116, 563], [-1117, 553], [-1122, 547], [-1122, 531], [-1138, 522], [-1148, 519], [-1158, 520], [-1172, 526], [-1179, 528], [-1179, 551], [-1189, 564], [-1189, 574], [-1194, 584], [-1194, 598], [-1203, 607], [-1220, 607], [-1231, 605], [-1239, 601], [-1255, 594], [-1255, 596], [-1260, 596], [-1280, 585], [-1274, 620], [-1266, 679], [-1263, 694], [-1262, 722], [-1263, 806], [-1266, 844], [-1268, 854], [-1276, 907], [-1281, 939], [-1288, 968], [-1292, 990], [-1297, 999]], "186-258, T": [[-1015, 971], [-1025, 913], [-1032, 864], [-1037, 819], [-1039, 757], [-1039, 716], [-1032, 646], [-1024, 609], [-1022, 584], [-1036, 595], [-1044, 599], [-1056, 600], [-1079, 607], [-1103, 608], [-1108, 594], [-1110, 593], [-1111, 573], [-1115, 564], [-1117, 553], [-1122, 547], [-1122, 530], [-1135, 525], [-1145, 518], [-1156, 518], [-1167, 524], [-1179, 529], [-1179, 550], [-1189, 564], [-1190, 575], [-1195, 584], [-1195, 598], [-1203, 606], [-1224, 607], [-1249, 596], [-1259, 594], [-1275, 588], [-1278, 586], [-1276, 608], [-1268, 659], [-1261, 717], [-1263, 806], [-1267, 850], [-1271, 870], [-1276, 897], [-1280, 921], [-1283, 947], [-1287, 956], [-1289, 971], [-1197, 971], [-1200, 978], [-1200, 984], [-1189, 971], [-1186, 971], [-1187, 979], [-1192, 987], [-1192, 991], [-1189, 992], [-1180, 977], [-1179, 971], [-1175, 971], [-1174, 981], [-1172, 993], [-1169, 971], [-1168, 980], [-1166, 987], [-1166, 989], [-1163, 983], [-1164, 977], [-1165, 971], [-1137, 971], [-1136, 988], [-1134, 988], [-1133, 971], [-1132, 971], [-1129, 991], [-1125, 989], [-1126, 971], [-1121, 971], [-1118, 982], [-1117, 984], [-1116, 991], [-1115, 993], [-1114, 982], [-1116, 971], [-1109, 971], [-1103, 980], [-1103, 974], [-1104, 971]]}, "center": {"171-185": [-1151, 879], "186-258, T": [-1150, 854]}}, {"id": 1482, "name": "BFDI (Battle for Dream Island)", "description": "BFDI, short for Battle for Dream Island, is a YouTube series started in 2010. It currently has 5 seasons, with the most recent one being The Power of Two, which was since 2021.", "links": {"website": ["https://bfdi.tv"], "subreddit": ["BattleForDreamIsland"]}, "path": {"169-234": [[-600, 800], [-600, 831], [-592, 831], [-592, 814], [-572, 814], [-572, 800]]}, "center": {"169-234": [-593, 807]}}, -{"id": 1483, "name": "Bocchi The Brasil", "description": "Some houses that represents \nthe Kessoku Band members", "links": {}, "path": {"171-258": [[94, 424], [113, 424], [112, 431], [94, 431]]}, "center": {"171-258": [104, 428]}}, +{"id": 1483, "name": "Bocchi The Brasil", "description": "Some houses that represents \nthe Kessoku Band members", "links": {}, "path": {"171-258, T": [[94, 424], [113, 424], [112, 431], [94, 431]]}, "center": {"171-258, T": [104, 428]}}, {"id": 1484, "name": "Finger Painter Badge", "description": "The Finger Painter Badge is a badge awarded to players in the VR game Gorilla Tag for posting high quality and consistent content about the game on YouTube, TikTok, or Twitch.", "links": {"website": ["https://www.gorillatagvr.com/"], "subreddit": ["GorillaTag"], "discord": ["gorillatag"]}, "path": {"158-187": [[-483, 266], [-483, 270], [-481, 270], [-481, 269], [-479, 269], [-481, 269], [-481, 266], [-481, 268], [-483, 268]]}, "center": {"158-187": [-482, 269]}}, -{"id": 1485, "name": "Power", "description": "Power is a character from the manga & anime \"Chainsaw Man\". She can also be spotted on the German flag at the top of the map", "links": {}, "path": {"156-160": [[-410, 688], [-368, 688], [-368, 653], [-369, 653], [-370, 652], [-370, 651], [-371, 650], [-371, 644], [-372, 643], [-372, 638], [-373, 637], [-373, 635], [-372, 634], [-371, 634], [-370, 633], [-370, 627], [-371, 626], [-371, 624], [-372, 623], [-372, 622], [-375, 619], [-376, 619], [-381, 614], [-382, 614], [-383, 613], [-384, 612], [-385, 612], [-386, 611], [-387, 611], [-388, 610], [-390, 610], [-391, 609], [-392, 609], [-393, 608], [-394, 607], [-394, 606], [-395, 605], [-396, 604], [-397, 604], [-397, 609], [-405, 609], [-405, 605], [-406, 605], [-409, 608], [-409, 609], [-410, 610], [-411, 610], [-412, 611], [-413, 611], [-416, 614], [-418, 614], [-420, 616], [-420, 617], [-421, 618], [-421, 622], [-422, 623], [-422, 624], [-421, 625], [-421, 630], [-420, 631], [-421, 632], [-421, 633], [-418, 636], [-418, 641], [-418, 642], [-418, 645], [-417, 646], [-417, 653], [-416, 654], [-416, 656], [-415, 657], [-415, 658], [-413, 660], [-410, 664], [-411, 665], [-411, 668], [-410, 669], [-410, 671], [-407, 674], [-408, 676], [-409, 677], [-409, 678], [-408, 679], [-408, 680], [-407, 680], [-407, 681], [-408, 682], [-408, 683], [-408, 684], [-409, 685], [-409, 686], [-410, 687]], "164-258": [[-397, 560], [-397, 567], [-398, 568], [-402, 568], [-403, 567], [-403, 560], [-405, 562], [-405, 563], [-406, 564], [-406, 565], [-412, 571], [-413, 571], [-414, 572], [-415, 572], [-416, 573], [-417, 573], [-419, 575], [-419, 576], [-420, 577], [-420, 583], [-421, 584], [-421, 588], [-420, 589], [-420, 590], [-421, 591], [-421, 594], [-422, 595], [-422, 600], [-421, 601], [-421, 617], [-420, 617], [-420, 620], [-419, 621], [-419, 622], [-418, 623], [-418, 637], [-419, 638], [-419, 648], [-420, 649], [-421, 650], [-421, 651], [-420, 652], [-420, 653], [-419, 654], [-417, 654], [-417, 655], [-416, 656], [-416, 660], [-415, 661], [-415, 663], [-414, 664], [-414, 665], [-413, 667], [-412, 669], [-412, 671], [-411, 672], [-410, 672], [-409, 673], [-408, 672], [-409, 671], [-408, 668], [-409, 667], [-408, 666], [-408, 663], [-408, 662], [-409, 661], [-409, 659], [-408, 658], [-408, 655], [-409, 654], [-409, 652], [-408, 652], [-407, 651], [-407, 648], [-385, 648], [-385, 652], [-384, 653], [-383, 653], [-383, 654], [-384, 655], [-384, 658], [-383, 659], [-383, 661], [-384, 662], [-384, 670], [-383, 671], [-381, 671], [-380, 670], [-380, 669], [-379, 668], [-379, 666], [-378, 665], [-378, 661], [-377, 661], [-375, 659], [-374, 659], [-373, 658], [-373, 655], [-373, 658], [-372, 659], [-371, 659], [-370, 660], [-370, 661], [-369, 662], [-368, 661], [-368, 626], [-369, 625], [-369, 622], [-370, 621], [-370, 604], [-371, 603], [-371, 599], [-372, 598], [-372, 593], [-369, 590], [-369, 587], [-370, 586], [-370, 584], [-371, 583], [-371, 582], [-377, 576], [-378, 576], [-381, 573], [-382, 573], [-384, 571], [-385, 571], [-386, 570], [-387, 570], [-388, 569], [-389, 569], [-390, 568], [-391, 568], [-394, 565], [-394, 564], [-395, 563], [-395, 562], [-396, 561]]}, "center": {"156-160": [-396, 632], "164-258": [-396, 610]}}, -{"id": 1486, "name": "Monster Hunter - Glavenus, The Cutting Wyvern", "description": "Art depicts 'Glavenus', the primary flagship monster of Monster Hunter Generations. This monster reappeared in the Iceborne Expansion of Monster Hunter World, which icon design in The Hunter Notes and Hunting Quests is this one.\n\nGlavenus is a large Brute Wyvern with dark red scales covering its body. Two rows of blue, bony plates run along its back, going from the eyes to the tail. Its underside is more of a cream color. Its hind legs are powerful and muscular, while its arms are much smaller and mostly useless in combat.\n\nWhat makes Glavenus unique, is the signature huge, sword-like tail that Glavenus uses to combat the hunters and other monsters like the Rathalos, Tigrex, Odogaron and Zinogre.\n\nGlavenus often drags its tail across the ground when is wandering in the multiple hot and tropical habitats in which it lives, like deserts, volcanos and jungles; but when this monster has to battle any intruder, Glavenus is able to sharpen its tail in its mouth to scrape it off the soot and ores, making its tail blade brand new and ready to cut and pierce its enemies with great skill.\n\nWhen the tail blade is in the sharpened state, attacks using its tail will gradually heat the tail up, which in the end, turning the tail red hot. During this heated state, the attack power of the tail significantly increases, as well as creating explosion and fiery wave with its tail. However, after some time has passed, the red hot tail blade will cool down, turning it dull and rusty color, in which the monster will resharpen to restore the tail to its original property and continue fighting.\n\n\"A brute wyvern that wields its heavy blue tail like a blade. It grows hotter and more keen with each strike until it glows red.\" - Monster Hunter World Iceborne description.", "links": {"subreddit": ["MonsterHunter", "monster_hunter_place"]}, "path": {"102-258": [[-616, -222], [-586, -222], [-580, -216], [-578, -211], [-571, -206], [-571, -191], [-576, -191], [-576, -176], [-604, -176], [-604, -171], [-616, -171]]}, "center": {"102-258": [-595, -199]}}, -{"id": 1487, "name": "Flag of the Dominican Republic", "description": "The Dominican Republic is a country in the Caribbean region of the Americas.", "links": {"website": ["https://en.wikipedia.org/wiki/Dominican_Republic", "https://en.wikipedia.org/wiki/Flag_of_the_Dominican_Republic"], "subreddit": ["Dominican"]}, "path": {"163-258": [[-338, -816], [-338, -761], [-262, -761], [-262, -816]]}, "center": {"163-258": [-300, -788]}}, +{"id": 1485, "name": "Power", "description": "Power is a character from the manga & anime \"Chainsaw Man\". She can also be spotted on the German flag at the top of the map", "links": {}, "path": {"156-160": [[-410, 688], [-368, 688], [-368, 653], [-369, 653], [-370, 652], [-370, 651], [-371, 650], [-371, 644], [-372, 643], [-372, 638], [-373, 637], [-373, 635], [-372, 634], [-371, 634], [-370, 633], [-370, 627], [-371, 626], [-371, 624], [-372, 623], [-372, 622], [-375, 619], [-376, 619], [-381, 614], [-382, 614], [-383, 613], [-384, 612], [-385, 612], [-386, 611], [-387, 611], [-388, 610], [-390, 610], [-391, 609], [-392, 609], [-393, 608], [-394, 607], [-394, 606], [-395, 605], [-396, 604], [-397, 604], [-397, 609], [-405, 609], [-405, 605], [-406, 605], [-409, 608], [-409, 609], [-410, 610], [-411, 610], [-412, 611], [-413, 611], [-416, 614], [-418, 614], [-420, 616], [-420, 617], [-421, 618], [-421, 622], [-422, 623], [-422, 624], [-421, 625], [-421, 630], [-420, 631], [-421, 632], [-421, 633], [-418, 636], [-418, 641], [-418, 642], [-418, 645], [-417, 646], [-417, 653], [-416, 654], [-416, 656], [-415, 657], [-415, 658], [-413, 660], [-410, 664], [-411, 665], [-411, 668], [-410, 669], [-410, 671], [-407, 674], [-408, 676], [-409, 677], [-409, 678], [-408, 679], [-408, 680], [-407, 680], [-407, 681], [-408, 682], [-408, 683], [-408, 684], [-409, 685], [-409, 686], [-410, 687]], "164-258, T": [[-397, 560], [-397, 567], [-398, 568], [-402, 568], [-403, 567], [-403, 560], [-405, 562], [-405, 563], [-406, 564], [-406, 565], [-412, 571], [-413, 571], [-414, 572], [-415, 572], [-416, 573], [-417, 573], [-419, 575], [-419, 576], [-420, 577], [-420, 583], [-421, 584], [-421, 588], [-420, 589], [-420, 590], [-421, 591], [-421, 594], [-422, 595], [-422, 600], [-421, 601], [-421, 617], [-420, 617], [-420, 620], [-419, 621], [-419, 622], [-418, 623], [-418, 637], [-419, 638], [-419, 648], [-420, 649], [-421, 650], [-421, 651], [-420, 652], [-420, 653], [-419, 654], [-417, 654], [-417, 655], [-416, 656], [-416, 660], [-415, 661], [-415, 663], [-414, 664], [-414, 665], [-413, 667], [-412, 669], [-412, 671], [-411, 672], [-410, 672], [-409, 673], [-408, 672], [-409, 671], [-408, 668], [-409, 667], [-408, 666], [-408, 663], [-408, 662], [-409, 661], [-409, 659], [-408, 658], [-408, 655], [-409, 654], [-409, 652], [-408, 652], [-407, 651], [-407, 648], [-385, 648], [-385, 652], [-384, 653], [-383, 653], [-383, 654], [-384, 655], [-384, 658], [-383, 659], [-383, 661], [-384, 662], [-384, 670], [-383, 671], [-381, 671], [-380, 670], [-380, 669], [-379, 668], [-379, 666], [-378, 665], [-378, 661], [-377, 661], [-375, 659], [-374, 659], [-373, 658], [-373, 655], [-373, 658], [-372, 659], [-371, 659], [-370, 660], [-370, 661], [-369, 662], [-368, 661], [-368, 626], [-369, 625], [-369, 622], [-370, 621], [-370, 604], [-371, 603], [-371, 599], [-372, 598], [-372, 593], [-369, 590], [-369, 587], [-370, 586], [-370, 584], [-371, 583], [-371, 582], [-377, 576], [-378, 576], [-381, 573], [-382, 573], [-384, 571], [-385, 571], [-386, 570], [-387, 570], [-388, 569], [-389, 569], [-390, 568], [-391, 568], [-394, 565], [-394, 564], [-395, 563], [-395, 562], [-396, 561]]}, "center": {"156-160": [-396, 632], "164-258, T": [-396, 610]}}, +{"id": 1486, "name": "Monster Hunter - Glavenus, The Cutting Wyvern", "description": "Art depicts 'Glavenus', the primary flagship monster of Monster Hunter Generations. This monster reappeared in the Iceborne Expansion of Monster Hunter World, which icon design in The Hunter Notes and Hunting Quests is this one.\n\nGlavenus is a large Brute Wyvern with dark red scales covering its body. Two rows of blue, bony plates run along its back, going from the eyes to the tail. Its underside is more of a cream color. Its hind legs are powerful and muscular, while its arms are much smaller and mostly useless in combat.\n\nWhat makes Glavenus unique, is the signature huge, sword-like tail that Glavenus uses to combat the hunters and other monsters like the Rathalos, Tigrex, Odogaron and Zinogre.\n\nGlavenus often drags its tail across the ground when is wandering in the multiple hot and tropical habitats in which it lives, like deserts, volcanos and jungles; but when this monster has to battle any intruder, Glavenus is able to sharpen its tail in its mouth to scrape it off the soot and ores, making its tail blade brand new and ready to cut and pierce its enemies with great skill.\n\nWhen the tail blade is in the sharpened state, attacks using its tail will gradually heat the tail up, which in the end, turning the tail red hot. During this heated state, the attack power of the tail significantly increases, as well as creating explosion and fiery wave with its tail. However, after some time has passed, the red hot tail blade will cool down, turning it dull and rusty color, in which the monster will resharpen to restore the tail to its original property and continue fighting.\n\n\"A brute wyvern that wields its heavy blue tail like a blade. It grows hotter and more keen with each strike until it glows red.\" - Monster Hunter World Iceborne description.", "links": {"subreddit": ["MonsterHunter", "monster_hunter_place"]}, "path": {"102-258, T": [[-616, -222], [-586, -222], [-580, -216], [-578, -211], [-571, -206], [-571, -191], [-576, -191], [-576, -176], [-604, -176], [-604, -171], [-616, -171]]}, "center": {"102-258, T": [-595, -199]}}, +{"id": 1487, "name": "Flag of the Dominican Republic", "description": "The Dominican Republic is a country in the Caribbean region of the Americas.", "links": {"website": ["https://en.wikipedia.org/wiki/Dominican_Republic", "https://en.wikipedia.org/wiki/Flag_of_the_Dominican_Republic"], "subreddit": ["Dominican"]}, "path": {"163-258, T": [[-338, -816], [-338, -761], [-262, -761], [-262, -816]]}, "center": {"163-258, T": [-300, -788]}}, {"id": 1488, "name": "Latin America", "description": "A map of Latin America, the Spanish-speaking portion of the Americas. Each country in Latin America is drawn with its flag as a background.", "links": {"website": ["https://en.wikipedia.org/wiki/Latin_America"]}, "path": {"160-182": [[-159, -863], [-159, -745], [-70, -745], [-70, -784], [-64, -784], [-64, -863]]}, "center": {"160-182": [-111, -815]}}, -{"id": 1489, "name": "TWICE", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".", "links": {"website": ["http://twice.jype.com/", "https://en.wikipedia.org/wiki/Twice"], "subreddit": ["twice"]}, "path": {"163-258": [[-158, -885], [-158, -864], [-135, -864], [-135, -885]]}, "center": {"163-258": [-146, -874]}}, +{"id": 1489, "name": "TWICE", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".", "links": {"website": ["http://twice.jype.com/", "https://en.wikipedia.org/wiki/Twice"], "subreddit": ["twice"]}, "path": {"163-258, T": [[-158, -885], [-158, -864], [-135, -864], [-135, -885]]}, "center": {"163-258, T": [-146, -874]}}, {"id": 1490, "name": "Flag of Brittany", "description": "Brittany is the westernmost region of France and a region of Celtic ethnicity and culture. The Breton flag, also known as Gwenn-ha-du, features nine stripes representing the nine Breton districts, along with eleven ermines. \n\nThis was the third location in which members of r/Bretagne and the PlaceBZH server tried settling, before being wiped out once more.", "links": {"website": ["https://en.wikipedia.org/wiki/Brittany"], "subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"117-122": [[-1000, -724], [-975, -724], [-975, -714], [-1000, -714]]}, "center": {"117-122": [-987, -719]}}, -{"id": 1491, "name": "Je me souviens", "description": "\"Je me souviens\" is Quebec's national motto, French for \"I remember\". This motto is also found on Quebec license plates.", "links": {"website": ["https://en.wikipedia.org/wiki/Je_me_souviens"], "subreddit": ["Quebec"]}, "path": {"121-258": [[504, 164], [504, 168], [501, 168], [501, 171], [588, 171], [588, 166], [589, 166], [589, 164]]}, "center": {"121-258": [545, 168]}}, -{"id": 1492, "name": "Quebec", "description": "The province of Quebec as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Quebec"], "subreddit": ["Quebec"]}, "path": {"81-258": [[523, 133], [521, 135], [521, 139], [524, 144], [524, 147], [526, 149], [526, 161], [524, 161], [524, 164], [527, 170], [527, 177], [529, 184], [530, 186], [530, 189], [537, 195], [547, 195], [551, 191], [553, 191], [553, 188], [555, 184], [557, 184], [557, 181], [562, 175], [563, 176], [567, 172], [568, 170], [568, 167], [566, 164], [569, 161], [570, 160], [570, 156], [569, 156], [568, 157], [559, 157], [553, 154], [553, 150], [551, 148], [551, 145], [546, 137], [545, 137], [541, 140], [539, 140], [539, 139], [534, 134], [531, 134], [529, 132], [527, 132], [526, 133]]}, "center": {"81-258": [544, 169]}}, -{"id": 1493, "name": "North American beaver", "description": "The North American beaver is an animal that serves as an official wildlife symbol of Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/North_American_beaver"], "subreddit": ["placecanada", "canada"]}, "path": {"127-128": [[137, 166], [134, 169], [134, 171], [130, 171], [130, 173], [134, 179], [134, 180], [132, 183], [132, 184], [151, 184], [151, 179], [147, 179], [151, 174], [151, 172], [149, 172], [146, 175], [146, 172], [148, 170], [142, 166]], "129-258": [[100, 166], [94, 170], [91, 170], [91, 174], [93, 175], [95, 179], [92, 179], [90, 181], [90, 184], [110, 184], [110, 183], [109, 180], [108, 179], [112, 173], [112, 172], [110, 170], [108, 170], [108, 169], [105, 166]]}, "center": {"127-128": [139, 175], "129-258": [102, 175]}}, -{"id": 1494, "name": "Hockey stick", "description": "Ice hockey is a popular sport in Canada. It is Canada's national winter sport and is often considered a national pastime of Canada. This stick is used in ice hockey to hit a puck into the opposing team's goal.", "links": {"website": ["https://en.wikipedia.org/wiki/Ice_hockey_in_Canada", "https://en.wikipedia.org/wiki/Hockey_stick"], "subreddit": ["placecanada", "canada"]}, "path": {"128": [[143, 163], [143, 165], [145, 167], [147, 167], [149, 170], [149, 172], [146, 181], [146, 184], [148, 184], [148, 181], [151, 172], [151, 166], [147, 163]], "129-258": [[95, 163], [91, 166], [91, 174], [94, 181], [94, 184], [96, 184], [96, 181], [94, 177], [94, 168], [99, 165], [99, 163]]}, "center": {"128": [149, 167], "129-258": [94, 166]}}, -{"id": 1495, "name": "Moose", "description": "The moose is a type of deer commonly seen in Canada. They are known for their distinctive antlers.", "links": {"website": ["https://en.wikipedia.org/wiki/Moose"], "subreddit": ["placecanada", "canada"]}, "path": {"136-258": [[92, 150], [92, 156], [91, 156], [91, 159], [92, 159], [92, 165], [99, 165], [102, 163], [102, 162], [106, 159], [106, 155], [107, 155], [107, 151], [104, 151], [104, 150]]}, "center": {"136-258": [98, 157]}}, -{"id": 1496, "name": "Territory of Ukraine", "description": "The country of Ukraine as it appears on a map.", "links": {"subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"166-258": [[-173, -88], [-180, -82], [-182, -84], [-179, -89], [-177, -89], [-182, -95], [-185, -95], [-188, -93], [-195, -93], [-198, -96], [-198, -98], [-196, -104], [-193, -106], [-193, -107], [-195, -107], [-195, -111], [-190, -113], [-186, -113], [-179, -110], [-178, -110], [-174, -113], [-171, -114], [-165, -114], [-163, -109], [-160, -106], [-157, -106], [-150, -103], [-149, -101], [-150, -99], [-149, -97], [-149, -94], [-153, -92], [-155, -89], [-163, -87], [-158, -86], [-159, -84], [-166, -80], [-167, -80], [-168, -83], [-170, -83], [-170, -85], [-169, -87], [-171, -87]]}, "center": {"166-258": [-171, -100]}}, -{"id": 1497, "name": "Iceland", "description": "The country of Iceland as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Iceland"], "subreddit": ["Iceland", "nordics", "place_nordicunion"]}, "path": {"117-258": [[-7, -332], [-10, -328], [-10, -321], [-11, -320], [-10, -319], [-8, -319], [-7, -314], [2, -314], [7, -317], [9, -319], [10, -321], [9, -322], [9, -328], [5, -328], [3, -329], [2, -328], [-2, -328]]}, "center": {"117-258": [-1, -321]}}, -{"id": 1498, "name": "Emotional Support Demon", "description": "Emotional Support Demon is a mascot of Swedish YouTuber \"The Click\".", "links": {"website": ["https://www.youtube.com/channel/UCPr3T20IPZ03gU9gZ2BwM5g", "https://youtube.fandom.com/wiki/The_Click"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"63-109": [[163, -244], [161, -242], [155, -242], [155, -235], [157, -233], [157, -229], [159, -227], [159, -225], [151, -225], [149, -223], [143, -223], [143, -216], [145, -214], [145, -210], [147, -208], [147, -206], [181, -206], [181, -208], [183, -210], [183, -214], [185, -216], [185, -223], [179, -223], [177, -225], [174, -225], [174, -233], [176, -235], [176, -242], [170, -242], [168, -244]], "110-258": [[94, -226], [91, -223], [91, -220], [88, -222], [86, -222], [86, -217], [88, -214], [88, -210], [90, -208], [90, -206], [103, -206], [103, -208], [105, -210], [105, -214], [107, -217], [107, -222], [105, -222], [102, -220], [102, -223], [99, -226]]}, "center": {"63-109": [166, -217], "110-258": [96, -214]}}, -{"id": 1499, "name": "Dala horse", "description": "Traditional carved, painted wooden statue of a horse originating in the Swedish province of Dalarna.", "links": {"website": ["https://en.wikipedia.org/wiki/Dalecarlian_horse"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"152-258": [[68, -233], [60, -224], [60, -223], [56, -223], [52, -221], [50, -218], [50, -211], [53, -208], [55, -208], [57, -210], [57, -213], [63, -213], [63, -210], [65, -208], [67, -208], [69, -210], [69, -219], [73, -219], [75, -221], [75, -224], [70, -229], [70, -230]]}, "center": {"152-258": [63, -219]}}, -{"id": 1500, "name": "Flag of Åland", "description": "Åland is an autonomous archipelago region of Finland. Its people primarily speak Swedish.", "links": {"website": ["https://en.wikipedia.org/wiki/%C3%85land", "https://en.wikipedia.org/wiki/Flag_of_%C3%85land"], "subreddit": ["Suomi", "nordics", "place_nordicunion"]}, "path": {"145-258": [[176, -302], [176, -294], [186, -294], [186, -302]]}, "center": {"145-258": [181, -298]}}, -{"id": 1501, "name": "Crowdy Chick", "description": "Crowdy is the main character of the soon-to-come series by the same name, he has the ability to use lightning to destroy his enemies", "links": {"website": ["https://www.youtube.com/@Crowdy_Chick_Official"], "subreddit": ["CrowdyChick"]}, "path": {"173-258": [[82, -169], [82, -164], [83, -163], [82, -162], [82, -161], [88, -161], [88, -167], [89, -168], [87, -170], [86, -170], [85, -169]]}, "center": {"173-258": [85, -165]}}, -{"id": 1502, "name": "Mindblast Games Logo", "description": "Mindblast Games is a videogame development studio.", "links": {"website": ["https://mindblast.games"], "subreddit": ["MindblastGames"], "discord": ["tVCXcUTRvF"]}, "path": {"168-258": [[659, 102], [674, 102], [674, 119], [659, 119]]}, "center": {"168-258": [667, 111]}}, +{"id": 1491, "name": "Je me souviens", "description": "\"Je me souviens\" is Quebec's national motto, French for \"I remember\". This motto is also found on Quebec license plates.", "links": {"website": ["https://en.wikipedia.org/wiki/Je_me_souviens"], "subreddit": ["Quebec"]}, "path": {"121-258, T": [[504, 164], [504, 168], [501, 168], [501, 171], [588, 171], [588, 166], [589, 166], [589, 164]]}, "center": {"121-258, T": [545, 168]}}, +{"id": 1492, "name": "Quebec", "description": "The province of Quebec as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Quebec"], "subreddit": ["Quebec"]}, "path": {"81-258, T": [[523, 133], [521, 135], [521, 139], [524, 144], [524, 147], [526, 149], [526, 161], [524, 161], [524, 164], [527, 170], [527, 177], [529, 184], [530, 186], [530, 189], [537, 195], [547, 195], [551, 191], [553, 191], [553, 188], [555, 184], [557, 184], [557, 181], [562, 175], [563, 176], [567, 172], [568, 170], [568, 167], [566, 164], [569, 161], [570, 160], [570, 156], [569, 156], [568, 157], [559, 157], [553, 154], [553, 150], [551, 148], [551, 145], [546, 137], [545, 137], [541, 140], [539, 140], [539, 139], [534, 134], [531, 134], [529, 132], [527, 132], [526, 133]]}, "center": {"81-258, T": [544, 169]}}, +{"id": 1493, "name": "North American beaver", "description": "The North American beaver is an animal that serves as an official wildlife symbol of Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/North_American_beaver"], "subreddit": ["placecanada", "canada"]}, "path": {"127-128": [[137, 166], [134, 169], [134, 171], [130, 171], [130, 173], [134, 179], [134, 180], [132, 183], [132, 184], [151, 184], [151, 179], [147, 179], [151, 174], [151, 172], [149, 172], [146, 175], [146, 172], [148, 170], [142, 166]], "129-258, T": [[100, 166], [94, 170], [91, 170], [91, 174], [93, 175], [95, 179], [92, 179], [90, 181], [90, 184], [110, 184], [110, 183], [109, 180], [108, 179], [112, 173], [112, 172], [110, 170], [108, 170], [108, 169], [105, 166]]}, "center": {"127-128": [139, 175], "129-258, T": [102, 175]}}, +{"id": 1494, "name": "Hockey stick", "description": "Ice hockey is a popular sport in Canada. It is Canada's national winter sport and is often considered a national pastime of Canada. This stick is used in ice hockey to hit a puck into the opposing team's goal.", "links": {"website": ["https://en.wikipedia.org/wiki/Ice_hockey_in_Canada", "https://en.wikipedia.org/wiki/Hockey_stick"], "subreddit": ["placecanada", "canada"]}, "path": {"128": [[143, 163], [143, 165], [145, 167], [147, 167], [149, 170], [149, 172], [146, 181], [146, 184], [148, 184], [148, 181], [151, 172], [151, 166], [147, 163]], "129-258, T": [[95, 163], [91, 166], [91, 174], [94, 181], [94, 184], [96, 184], [96, 181], [94, 177], [94, 168], [99, 165], [99, 163]]}, "center": {"128": [149, 167], "129-258, T": [94, 166]}}, +{"id": 1495, "name": "Moose", "description": "The moose is a type of deer commonly seen in Canada. They are known for their distinctive antlers.", "links": {"website": ["https://en.wikipedia.org/wiki/Moose"], "subreddit": ["placecanada", "canada"]}, "path": {"136-258, T": [[92, 150], [92, 156], [91, 156], [91, 159], [92, 159], [92, 165], [99, 165], [102, 163], [102, 162], [106, 159], [106, 155], [107, 155], [107, 151], [104, 151], [104, 150]]}, "center": {"136-258, T": [98, 157]}}, +{"id": 1496, "name": "Territory of Ukraine", "description": "The country of Ukraine as it appears on a map.", "links": {"subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"166-258, T": [[-173, -88], [-180, -82], [-182, -84], [-179, -89], [-177, -89], [-182, -95], [-185, -95], [-188, -93], [-195, -93], [-198, -96], [-198, -98], [-196, -104], [-193, -106], [-193, -107], [-195, -107], [-195, -111], [-190, -113], [-186, -113], [-179, -110], [-178, -110], [-174, -113], [-171, -114], [-165, -114], [-163, -109], [-160, -106], [-157, -106], [-150, -103], [-149, -101], [-150, -99], [-149, -97], [-149, -94], [-153, -92], [-155, -89], [-163, -87], [-158, -86], [-159, -84], [-166, -80], [-167, -80], [-168, -83], [-170, -83], [-170, -85], [-169, -87], [-171, -87]]}, "center": {"166-258, T": [-171, -100]}}, +{"id": 1497, "name": "Iceland", "description": "The country of Iceland as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Iceland"], "subreddit": ["Iceland", "nordics", "place_nordicunion"]}, "path": {"117-258, T": [[-7, -332], [-10, -328], [-10, -321], [-11, -320], [-10, -319], [-8, -319], [-7, -314], [2, -314], [7, -317], [9, -319], [10, -321], [9, -322], [9, -328], [5, -328], [3, -329], [2, -328], [-2, -328]]}, "center": {"117-258, T": [-1, -321]}}, +{"id": 1498, "name": "Emotional Support Demon", "description": "Emotional Support Demon is a mascot of Swedish YouTuber \"The Click\".", "links": {"website": ["https://www.youtube.com/channel/UCPr3T20IPZ03gU9gZ2BwM5g", "https://youtube.fandom.com/wiki/The_Click"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"63-109": [[163, -244], [161, -242], [155, -242], [155, -235], [157, -233], [157, -229], [159, -227], [159, -225], [151, -225], [149, -223], [143, -223], [143, -216], [145, -214], [145, -210], [147, -208], [147, -206], [181, -206], [181, -208], [183, -210], [183, -214], [185, -216], [185, -223], [179, -223], [177, -225], [174, -225], [174, -233], [176, -235], [176, -242], [170, -242], [168, -244]], "110-258, T": [[94, -226], [91, -223], [91, -220], [88, -222], [86, -222], [86, -217], [88, -214], [88, -210], [90, -208], [90, -206], [103, -206], [103, -208], [105, -210], [105, -214], [107, -217], [107, -222], [105, -222], [102, -220], [102, -223], [99, -226]]}, "center": {"63-109": [166, -217], "110-258, T": [96, -214]}}, +{"id": 1499, "name": "Dala horse", "description": "Traditional carved, painted wooden statue of a horse originating in the Swedish province of Dalarna.", "links": {"website": ["https://en.wikipedia.org/wiki/Dalecarlian_horse"], "subreddit": ["sweden", "nordics", "place_nordicunion"]}, "path": {"152-258, T": [[68, -233], [60, -224], [60, -223], [56, -223], [52, -221], [50, -218], [50, -211], [53, -208], [55, -208], [57, -210], [57, -213], [63, -213], [63, -210], [65, -208], [67, -208], [69, -210], [69, -219], [73, -219], [75, -221], [75, -224], [70, -229], [70, -230]]}, "center": {"152-258, T": [63, -219]}}, +{"id": 1500, "name": "Flag of Åland", "description": "Åland is an autonomous archipelago region of Finland. Its people primarily speak Swedish.", "links": {"website": ["https://en.wikipedia.org/wiki/%C3%85land", "https://en.wikipedia.org/wiki/Flag_of_%C3%85land"], "subreddit": ["Suomi", "nordics", "place_nordicunion"]}, "path": {"145-258, T": [[176, -302], [176, -294], [186, -294], [186, -302]]}, "center": {"145-258, T": [181, -298]}}, +{"id": 1501, "name": "Crowdy Chick", "description": "Crowdy is the main character of the soon-to-come series by the same name, he has the ability to use lightning to destroy his enemies", "links": {"website": ["https://www.youtube.com/@Crowdy_Chick_Official"], "subreddit": ["CrowdyChick"]}, "path": {"173-258, T": [[82, -169], [82, -164], [83, -163], [82, -162], [82, -161], [88, -161], [88, -167], [89, -168], [87, -170], [86, -170], [85, -169]]}, "center": {"173-258, T": [85, -165]}}, +{"id": 1502, "name": "Mindblast Games Logo", "description": "Mindblast Games is a videogame development studio.", "links": {"website": ["https://mindblast.games"], "subreddit": ["MindblastGames"], "discord": ["tVCXcUTRvF"]}, "path": {"168-258, T": [[659, 102], [674, 102], [674, 119], [659, 119]]}, "center": {"168-258, T": [667, 111]}}, {"id": 1503, "name": "Flags of Brittany and Corsica", "description": "Brittany is the westernmost region of France, of Celtic heritage.\nCorsica is a French island in the Meditteranean Sea, southeast of the French mainland.\nBoth regions have a strong and lively cultural and traditional heritage. Albeit not related, they often support each other in their aspirations for cultural preservation and independence.\n\nThe area was secured together by an alliance of Bretons and Corsicans.\nAfter a brief return, they were erased for the third time, in spite of Chile's help.", "links": {"website": ["https://en.wikipedia.org/wiki/Brittany", "https://en.wikipedia.org/wiki/Corsica"], "subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"93-98": [[-205, 469], [-172, 469], [-172, 499], [-205, 499]]}, "center": {"93-98": [-188, 484]}}, {"id": 1504, "name": "Flag of Brittany", "description": "Brittany is the westernmost region of France and a region of Celtic ethnicity and culture. The Breton flag, also known as Gwenn-ha-du, features nine stripes representing the nine Breton districts, along with eleven ermines. \n\nThis was the second place where Bretons of PlaceBZH and r/Bretagne settled, forging an alliance with the neighboring anarchist faction and the Vanis community.", "links": {"website": ["https://en.wikipedia.org/wiki/Brittany"], "subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"46": [[-206, 463], [-191, 463], [-191, 473], [-206, 473]], "47-68": [[-206, 463], [-186, 463], [-186, 481], [-206, 481]]}, "center": {"46": [-198, 468], "47-68": [-196, 472]}}, -{"id": 1505, "name": "Mega Man", "description": "Mega Man series, known as Rockman in Japan, is a run and gun game that was released on December 17, 1987 on Famicom in Japan and Nintendo Entertainment System in North America and Europe. It has also expanded aside from classic series to include Mega Man X, Zero, ZX, Battle Network, Star Force and Legends.", "links": {"website": ["https://megaman.capcom.com/"], "subreddit": ["Megaman"], "discord": ["megaman"]}, "path": {"173-258": [[59, -629], [59, -633], [60, -633], [60, -634], [61, -635], [62, -635], [63, -636], [64, -636], [64, -637], [63, -638], [63, -640], [64, -641], [64, -642], [65, -643], [67, -645], [70, -651], [72, -653], [72, -662], [71, -663], [71, -666], [70, -666], [69, -666], [69, -669], [68, -669], [68, -673], [71, -673], [71, -676], [72, -677], [72, -679], [74, -679], [74, -680], [79, -680], [79, -679], [81, -679], [82, -680], [83, -679], [84, -678], [84, -677], [88, -676], [89, -678], [90, -678], [91, -679], [92, -679], [93, -680], [96, -680], [97, -680], [97, -675], [96, -676], [95, -675], [94, -674], [95, -673], [95, -672], [96, -671], [97, -667], [96, -667], [94, -666], [89, -666], [89, -661], [88, -661], [88, -653], [89, -653], [89, -649], [93, -649], [94, -647], [95, -647], [96, -646], [96, -645], [97, -644], [97, -628], [59, -628]]}, "center": {"173-258": [79, -641]}}, -{"id": 1506, "name": "Lapras made by \"ANTONIcraTV\"", "description": "Lapras is an Water/Ice-type plesiosaur Pokémon. This artwork was created by famous peruvian streamer called \"ANTONIcraTV\" also known as \"CHICOS\", he and his community firstly fought against xQc to protect the lapras from the giant pokemon card, and at the end they ended up in the same voicecall and agreed to put the lapras inside the card.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Lapras_(Pok%C3%A9mon)", "https://www.youtube.com/watch?v=a2q6VXdhauU", "https://www.youtube.com/watch?v=E6cwF3rj6oY"], "discord": ["gKHsKQVren", "gKHsKQVren"]}, "path": {"171-180": [[-1435, 277], [-1435, 337], [-1374, 337], [-1374, 277]], "181-258": [[-1482, 294], [-1489, 302], [-1489, 311], [-1490, 312], [-1490, 316], [-1488, 319], [-1481, 319], [-1481, 325], [-1486, 341], [-1486, 347], [-1487, 347], [-1494, 354], [-1494, 357], [-1490, 359], [-1477, 359], [-1472, 362], [-1466, 362], [-1462, 360], [-1454, 360], [-1449, 362], [-1443, 362], [-1436, 358], [-1436, 353], [-1427, 350], [-1439, 343], [-1441, 331], [-1447, 331], [-1452, 322], [-1456, 325], [-1458, 325], [-1461, 323], [-1461, 321], [-1463, 319], [-1465, 319], [-1469, 327], [-1470, 326], [-1470, 321], [-1467, 308], [-1466, 308], [-1462, 303], [-1462, 301], [-1467, 295], [-1470, 295], [-1474, 298], [-1476, 298], [-1476, 297], [-1479, 294]]}, "center": {"171-180": [-1404, 307], "181-258": [-1460, 342]}}, -{"id": 1507, "name": "Void Monster & Dog", "description": "This art was a collaboration between Spanish streamer Rubius and Russian streamer Bratishkinoff. It is a continuation of Rubius's Void monster and Bratishkinoff's Russian dog meme created at (700, 25), and features the two embracing as both their younger and older selves.", "links": {"website": ["https://www.twitch.tv/rubius", "https://www.twitch.tv/bratishkinoff"], "subreddit": ["ubius", "place_brff"]}, "path": {"154-258": [[-362, -745], [-362, -610], [-15, -610], [-15, -745]]}, "center": {"154-258": [-188, -677]}}, -{"id": 1508, "name": "MSMContent", "description": "A Pango with green earmuffs, the mascot of My Singing Monsters youtuber MSMContent's channel.", "links": {"website": ["https://www.youtube.com/@MSMContentReal", "https://mysingingmonsters.fandom.com/wiki/Pango"]}, "path": {"144-258": [[659, -329], [663, -329], [666, -326], [666, -321], [665, -320], [666, -319], [666, -311], [665, -310], [665, -304], [657, -304], [657, -310], [656, -311], [656, -319], [657, -320], [656, -321], [656, -326]]}, "center": {"144-258": [661, -317]}}, +{"id": 1505, "name": "Mega Man", "description": "Mega Man series, known as Rockman in Japan, is a run and gun game that was released on December 17, 1987 on Famicom in Japan and Nintendo Entertainment System in North America and Europe. It has also expanded aside from classic series to include Mega Man X, Zero, ZX, Battle Network, Star Force and Legends.", "links": {"website": ["https://megaman.capcom.com/"], "subreddit": ["Megaman"], "discord": ["megaman"]}, "path": {"173-258, T": [[59, -629], [59, -633], [60, -633], [60, -634], [61, -635], [62, -635], [63, -636], [64, -636], [64, -637], [63, -638], [63, -640], [64, -641], [64, -642], [65, -643], [67, -645], [70, -651], [72, -653], [72, -662], [71, -663], [71, -666], [70, -666], [69, -666], [69, -669], [68, -669], [68, -673], [71, -673], [71, -676], [72, -677], [72, -679], [74, -679], [74, -680], [79, -680], [79, -679], [81, -679], [82, -680], [83, -679], [84, -678], [84, -677], [88, -676], [89, -678], [90, -678], [91, -679], [92, -679], [93, -680], [96, -680], [97, -680], [97, -675], [96, -676], [95, -675], [94, -674], [95, -673], [95, -672], [96, -671], [97, -667], [96, -667], [94, -666], [89, -666], [89, -661], [88, -661], [88, -653], [89, -653], [89, -649], [93, -649], [94, -647], [95, -647], [96, -646], [96, -645], [97, -644], [97, -628], [59, -628]]}, "center": {"173-258, T": [79, -641]}}, +{"id": 1506, "name": "Lapras made by \"ANTONIcraTV\"", "description": "Lapras is an Water/Ice-type plesiosaur Pokémon. This artwork was created by famous peruvian streamer called \"ANTONIcraTV\" also known as \"CHICOS\", he and his community firstly fought against xQc to protect the lapras from the giant pokemon card, and at the end they ended up in the same voicecall and agreed to put the lapras inside the card.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Lapras_(Pok%C3%A9mon)", "https://www.youtube.com/watch?v=a2q6VXdhauU", "https://www.youtube.com/watch?v=E6cwF3rj6oY"], "discord": ["gKHsKQVren", "gKHsKQVren"]}, "path": {"171-180": [[-1435, 277], [-1435, 337], [-1374, 337], [-1374, 277]], "181-258, T": [[-1482, 294], [-1489, 302], [-1489, 311], [-1490, 312], [-1490, 316], [-1488, 319], [-1481, 319], [-1481, 325], [-1486, 341], [-1486, 347], [-1487, 347], [-1494, 354], [-1494, 357], [-1490, 359], [-1477, 359], [-1472, 362], [-1466, 362], [-1462, 360], [-1454, 360], [-1449, 362], [-1443, 362], [-1436, 358], [-1436, 353], [-1427, 350], [-1439, 343], [-1441, 331], [-1447, 331], [-1452, 322], [-1456, 325], [-1458, 325], [-1461, 323], [-1461, 321], [-1463, 319], [-1465, 319], [-1469, 327], [-1470, 326], [-1470, 321], [-1467, 308], [-1466, 308], [-1462, 303], [-1462, 301], [-1467, 295], [-1470, 295], [-1474, 298], [-1476, 298], [-1476, 297], [-1479, 294]]}, "center": {"171-180": [-1404, 307], "181-258, T": [-1460, 342]}}, +{"id": 1507, "name": "Void Monster & Dog", "description": "This art was a collaboration between Spanish streamer Rubius and Russian streamer Bratishkinoff. It is a continuation of Rubius's Void monster and Bratishkinoff's Russian dog meme created at (700, 25), and features the two embracing as both their younger and older selves.", "links": {"website": ["https://www.twitch.tv/rubius", "https://www.twitch.tv/bratishkinoff"], "subreddit": ["ubius", "place_brff"]}, "path": {"154-258, T": [[-362, -745], [-362, -610], [-15, -610], [-15, -745]]}, "center": {"154-258, T": [-188, -677]}}, +{"id": 1508, "name": "MSMContent", "description": "A Pango with green earmuffs, the mascot of My Singing Monsters youtuber MSMContent's channel.", "links": {"website": ["https://www.youtube.com/@MSMContentReal", "https://mysingingmonsters.fandom.com/wiki/Pango"]}, "path": {"144-258, T": [[659, -329], [663, -329], [666, -326], [666, -321], [665, -320], [666, -319], [666, -311], [665, -310], [665, -304], [657, -304], [657, -310], [656, -311], [656, -319], [657, -320], [656, -321], [656, -326]]}, "center": {"144-258, T": [661, -317]}}, {"id": 1509, "name": "Incredible Gassy", "description": "This is the Mr. Incredible logo except it's green to symbolize flatulence. The character it's supposed to represent is Incredible Gassy, a morbidly obese version of Bob Parr with a green suit originating from an animation by BoboComics. In the video, he hops on a comically large dildo and farts a lot.", "links": {"website": ["https://knowyourmeme.com/memes/incredible-gassy"], "subreddit": ["gassers"]}, "path": {"173-175": [[-1375, -150], [-1376, -150], [-1376, -144], [-1368, -144], [-1368, -150], [-1372, -150], [-1373, -150]]}, "center": {"173-175": [-1372, -147]}}, -{"id": 1510, "name": "Oldroot Morse", "description": "This says \"oldroot\" in morse code, which is an unsolved internet ARG.", "links": {"subreddit": ["oldroot"], "discord": ["nYmdDfp3Px"]}, "path": {"250-258": [[-1458, 509], [-1458, 521], [-1452, 523], [-1449, 523], [-1449, 509]]}, "center": {"250-258": [-1453, 516]}}, -{"id": 1511, "name": "Hong Kong", "description": "This part of the canvas displays various symbols of the pro-democracy movement of Hong Kong (a city in China).\n\nIn the background is the Lion Rock, a mountain in Hong Kong that has been the place of several pro-democracy events while culturally representing the spirit of the Hong Kong people. The yellow banner seen on the side is a reference to the various protest banners hung on Lion Rock over the years, beginning in 2014 with the 「我要真普選」(\"We Demand Genuine Universal Suffrage\") sign.(https://en.wikipedia.org/wiki/Hong_Kong_Way)\n(https://en.wikipedia.org/wiki/Vertical_banner)\n\nIn the middle resides s a Republic of China (Taiwan) flag, in solidarity with Taiwan's plight against the Chinese Communist Party. The flag began as a mainland Chinese (PRC) flag, but was eventually turned into a Taiwanese flag with help from the r/Taiwan community.\n\nThe pig at the forefront is a depiction of one of the mascots of Hong Kong's popular forum board LIHKG. It is seen with a yellow hard hat and gas mask in a black T-shirt, representing the appearance of protesters during the pro-democracy protests. (https://en.wikipedia.org/wiki/LIHKG)", "links": {"subreddit": ["hongkong"], "discord": ["6Qj6ne92de"]}, "path": {"174-258": [[-1449, 557], [-1449, 500], [-1408, 500], [-1408, 557]]}, "center": {"174-258": [-1428, 529]}}, -{"id": 1512, "name": "Breton Alliance", "description": "An alliance forged by Bretons and Corsicans to secure an area for both regions. They served as a temporary home for other communities as well, and developed alliances with their neighbors.\n\nLed by members of the PlaceBZH and r/place Corse servers.", "links": {"subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"137-141": [[-98, 461], [-131, 461], [-131, 481], [-98, 481]], "142-154": [[-131, 461], [-98, 461], [-98, 499], [-131, 499]], "155-258": [[-131, 461], [-98, 461], [-98, 523], [-131, 523]]}, "center": {"137-141": [-114, 471], "142-154": [-114, 480], "155-258": [-114, 492]}}, +{"id": 1510, "name": "Oldroot Morse", "description": "This says \"oldroot\" in morse code, which is an unsolved internet ARG.", "links": {"subreddit": ["oldroot"], "discord": ["nYmdDfp3Px"]}, "path": {"250-258, T": [[-1458, 509], [-1458, 521], [-1452, 523], [-1449, 523], [-1449, 509]]}, "center": {"250-258, T": [-1453, 516]}}, +{"id": 1511, "name": "Hong Kong", "description": "This part of the canvas displays various symbols of the pro-democracy movement of Hong Kong (a city in China).\n\nIn the background is the Lion Rock, a mountain in Hong Kong that has been the place of several pro-democracy events while culturally representing the spirit of the Hong Kong people. The yellow banner seen on the side is a reference to the various protest banners hung on Lion Rock over the years, beginning in 2014 with the 「我要真普選」(\"We Demand Genuine Universal Suffrage\") sign.(https://en.wikipedia.org/wiki/Hong_Kong_Way)\n(https://en.wikipedia.org/wiki/Vertical_banner)\n\nIn the middle resides s a Republic of China (Taiwan) flag, in solidarity with Taiwan's plight against the Chinese Communist Party. The flag began as a mainland Chinese (PRC) flag, but was eventually turned into a Taiwanese flag with help from the r/Taiwan community.\n\nThe pig at the forefront is a depiction of one of the mascots of Hong Kong's popular forum board LIHKG. It is seen with a yellow hard hat and gas mask in a black T-shirt, representing the appearance of protesters during the pro-democracy protests. (https://en.wikipedia.org/wiki/LIHKG)", "links": {"subreddit": ["hongkong"], "discord": ["6Qj6ne92de"]}, "path": {"174-258, T": [[-1449, 557], [-1449, 500], [-1408, 500], [-1408, 557]]}, "center": {"174-258, T": [-1428, 529]}}, +{"id": 1512, "name": "Breton Alliance", "description": "An alliance forged by Bretons and Corsicans to secure an area for both regions. They served as a temporary home for other communities as well, and developed alliances with their neighbors.\n\nLed by members of the PlaceBZH and r/place Corse servers.", "links": {"subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"137-141": [[-98, 461], [-131, 461], [-131, 481], [-98, 481]], "142-154": [[-131, 461], [-98, 461], [-98, 499], [-131, 499]], "155-258, T": [[-131, 461], [-98, 461], [-98, 523], [-131, 523]]}, "center": {"137-141": [-114, 471], "142-154": [-114, 480], "155-258, T": [-114, 492]}}, {"id": 1513, "name": "Buc-ee's Logo", "description": "Built by the Jet Lag: The Game fans, this Buc-ee's logo was created to reference the occasions on which the American convenience store chain has appeared in the show.", "links": {"website": ["https://youtube.com/jetlagthegame", "https://nebula.tv/jetlag"], "subreddit": ["JetLagTheGame"], "discord": ["jetlag"]}, "path": {"174-226": [[-601, 693], [-610, 697], [-614, 700], [-615, 706], [-612, 714], [-606, 717], [-596, 718], [-589, 712], [-588, 708], [-588, 701], [-590, 701], [-590, 695], [-591, 695], [-591, 694], [-592, 694], [-592, 693], [-594, 693], [-595, 692], [-596, 692], [-597, 691], [-604, 691], [-605, 694]]}, "center": {"174-226": [-601, 706]}}, {"id": 1514, "name": "Papalatte", "description": "The Twitch streamer Stegi drew fellow streamer Papaplatte.", "links": {"website": ["https://www.twitch.tv/papaplatte", "https://www.twitch.tv/stegi"]}, "path": {"171-174": [[-1448, -118], [-1461, -131], [-1460, -151], [-1449, -162], [-1426, -158], [-1422, -141], [-1428, -119], [-1429, -110], [-1447, -115], [-1448, -117], [-1448, -120], [-1445, -120]]}, "center": {"171-174": [-1442, -140]}}, {"id": 1515, "name": "SocksNeedsHelp", "description": "Youtube variety content creator who has an emphasis on modded Risk of Rain 2.", "links": {"website": ["https://www.youtube.com/channel/UC8kp6O4MuQ5juLlNCnnVOoA"]}, "path": {"172-195": [[-717, 439], [-717, 431], [-725, 431], [-725, 439]]}, "center": {"172-195": [-721, 435]}}, -{"id": 1516, "name": "Omsk Flag", "description": "omsk flag from the mod for hoi4 called: the new order", "links": {"website": ["https://the-new-order-last-days-of-europe.fandom.com/wiki/The_New_Order:_Last_Days_of_Europe_Wiki"], "subreddit": ["TNOmod"]}, "path": {"173-258": [[-24, 996], [-24, 971], [-12, 971], [-12, 996]]}, "center": {"173-258": [-18, 984]}}, -{"id": 1517, "name": "Sonic The Hedgehog", "description": "Sonic the Hedgehog is the titular main protagonist of the Sonic the Hedgehog series and Sega's mascot. He is an anthropomorphic hedgehog born with the ability to run faster than the speed of sound, hence his name. \nHe was designed by character designer Naoto Oshima. \nHe debuted in a game bearing the same name as him in 1991, launching him to widespread fame and giving him the reputation of being the main rival to Super Mario, a rivalry that would persist until 2001 with the release of Sonic Advance on the Gameboy Advance and the discontinuation of the Dreamcast console. \nThe latest instalment in the Sonic franchise, Sonic Frontiers, is directed by Morio Kishimoto, and sees Sonic placed in various \"open zones\". The game has received a positive response from fans, and the game is receiving free content updates, which are adding fan-requested fixes and features.", "links": {"website": ["https://www.sonicthehedgehog.com"], "subreddit": ["sonicthehedgehog"], "discord": ["SRycb9p"]}, "path": {"173-258": [[-1131, 371], [-1132, 372], [-1134, 373], [-1130, 374], [-1134, 378], [-1131, 378], [-1131, 379], [-1133, 381], [-1133, 383], [-1131, 382], [-1130, 382], [-1128, 383], [-1124, 383], [-1124, 382], [-1121, 382], [-1122, 380], [-1121, 379], [-1122, 377], [-1121, 377], [-1122, 376], [-1122, 375], [-1121, 374], [-1121, 372], [-1123, 372], [-1123, 373], [-1124, 373], [-1125, 372], [-1126, 372], [-1127, 371]]}, "center": {"173-258": [-1127, 377]}}, -{"id": 1518, "name": "White Ermine (Stoat)", "description": "The white-furred Ermine (or Stoat) is a recurrent figure in the Breton symbolism and heraldry. It is said that a white ermine would rather surrender its life than dirty its immaculate winter fur ; hence the Breton motto, \"Kentoc'h mervel eget em zaotra\" (\"Rather death than defilement\").\n\nThis ermine was adapted to pat the little amongus charater created to her left during construction.", "links": {"website": ["https://en.wikipedia.org/wiki/Stoat#Folklore_and_mythology"], "subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"166-258": [[-127, 510], [-126, 509], [-126, 507], [-125, 508], [-124, 508], [-123, 507], [-121, 509], [-121, 511], [-122, 512], [-122, 514], [-120, 516], [-119, 516], [-118, 515], [-115, 515], [-111, 517], [-110, 518], [-110, 521], [-111, 522], [-111, 523], [-112, 524], [-113, 525], [-113, 527], [-114, 528], [-114, 525], [-113, 524], [-112, 523], [-112, 522], [-114, 520], [-118, 520], [-120, 522], [-122, 522], [-121, 521], [-121, 519], [-122, 519], [-123, 520], [-126, 520], [-128, 518], [-129, 518], [-128, 517], [-127, 517], [-126, 516], [-126, 514], [-125, 513], [-125, 512], [-126, 511], [-127, 511]]}, "center": {"166-258": [-123, 517]}}, -{"id": 1519, "name": "Skol Table", "description": "Skol is one of the biggest Brazilian beer brands. As a marketing and advertising move, Skol offers partner bars yellow tables and chairs stamped with the beer logo, which soon became a Brazilian symbol.", "links": {"website": ["https://en.wikipedia.org/wiki/Skol"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"175-258": [[224, 586], [222, 586], [222, 567], [241, 557], [248, 557], [263, 567], [263, 587], [242, 596]]}, "center": {"175-258": [243, 576]}}, -{"id": 1521, "name": "Calçadão de Copacabana", "description": "The Copacabana Boardwalk (Calçadão de Copacabana) is a boardwalk located in Rio de Janeiro, Brazil.\nInaugurated in 1906, the boardwalk adopted the famous wave layout, known as \"wide sea\", as a way of honoring the Portuguese cultural heritage in the city.", "links": {"website": ["https://pt.wikipedia.org/wiki/Cal%C3%A7ad%C3%A3o_de_Copacabana"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"166-258": [[146, 597], [146, 575], [149, 575], [149, 578], [150, 578], [151, 580], [156, 586], [165, 586], [165, 585], [169, 585], [170, 585], [170, 583], [171, 583], [171, 582], [172, 582], [172, 580], [173, 580], [173, 579], [174, 579], [174, 578], [174, 577], [175, 576], [175, 574], [192, 574], [194, 575], [189, 579], [188, 580], [188, 582], [186, 582], [185, 583], [184, 584], [184, 587], [195, 587], [197, 585], [197, 584], [197, 583], [196, 582], [198, 582], [198, 581], [203, 581], [205, 583], [204, 584], [203, 585], [203, 587], [215, 587], [216, 587], [216, 584], [214, 582], [213, 582], [213, 581], [213, 580], [214, 579], [215, 578], [216, 579], [217, 579], [217, 578], [216, 577], [214, 574], [223, 574], [223, 585], [225, 585], [225, 582], [226, 581], [226, 574], [227, 573], [228, 573], [239, 579], [240, 581], [240, 588], [241, 589], [241, 594], [244, 594], [244, 589], [245, 588], [245, 581], [246, 579], [247, 578], [254, 575], [254, 576], [253, 576], [253, 577], [253, 587], [254, 587], [254, 589], [253, 591], [253, 597]]}, "center": {"166-258": [232, 589]}}, -{"id": 1522, "name": "Marcy Wu", "description": "Marcy Regina Wu is one of the three deuteragonists (alongside Sprig and Sasha) of the Disney Channel animated series Amphibia, and the titular main protagonist of its tie-in book Marcy's Journal: A Guide to Amphibia.", "links": {"website": ["https://amphibia.fandom.com/wiki/Marcy_Wu"], "subreddit": ["Amphibia", "place_CentralAlliance"], "discord": ["Amphibia"]}, "path": {"165-258": [[-202, 545], [-188, 545], [-188, 560], [-202, 560]]}, "center": {"165-258": [-195, 553]}}, -{"id": 1523, "name": "Map of Brittany", "description": "A tiny map of Brittany. The blue pattern in the back stands for the sea, and was home to other Brittany-related artworks.", "links": {"subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"161-258": [[-108, 511], [-109, 510], [-109, 504], [-110, 503], [-111, 502], [-115, 502], [-116, 503], [-118, 501], [-120, 501], [-121, 502], [-125, 502], [-126, 503], [-126, 504], [-124, 506], [-125, 507], [-125, 508], [-123, 509], [-119, 509], [-118, 510], [-117, 510], [-112, 515], [-111, 515], [-109, 513], [-109, 512]]}, "center": {"161-258": [-114, 507]}}, -{"id": 1524, "name": "Vieux de '37", "description": "the \"Vieux de '37\" (French for \"The Old Man of '37\") is an iconic symbol of the Patriot Rebellion of 1837 that hapenned in Lower-Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/Henri_Julien#Le_Vieux_de_'37"], "subreddit": ["Quebec"]}, "path": {"176-258": [[464, 172], [471, 173], [472, 165], [478, 158], [471, 161], [469, 155], [466, 156]]}, "center": {"176-258": [469, 164]}}, -{"id": 1525, "name": "French Ori", "description": "Ori from Ori and the Blind Forest/ Will of the Wisp but with a French theming. The team nicknamed this Ori FOri!", "links": {"subreddit": ["OriAndTheBlindForest", "franceplace"], "discord": ["YjtHtZexbN"]}, "path": {"157-163": [[-469, 900], [-439, 900], [-439, 890], [-436, 887], [-436, 882], [-447, 883], [-435, 875], [-434, 869], [-435, 859], [-444, 867], [-446, 867], [-447, 860], [-456, 864], [-459, 860], [-462, 865], [-463, 868], [-467, 861], [-471, 861], [-470, 879], [-461, 883]], "164-258": [[-466, 629], [-466, 621], [-463, 616], [-463, 613], [-468, 612], [-468, 613], [-471, 615], [-473, 616], [-474, 612], [-468, 611], [-463, 607], [-461, 603], [-461, 601], [-461, 589], [-471, 599], [-473, 597], [-473, 590], [-478, 595], [-478, 592], [-483, 595], [-486, 590], [-488, 594], [-489, 597], [-490, 596], [-496, 589], [-498, 590], [-498, 604], [-497, 602], [-493, 610], [-490, 612], [-488, 612], [-486, 613], [-491, 617], [-491, 621], [-494, 627], [-495, 630], [-480, 630], [-479, 630]]}, "center": {"157-163": [-454, 875], "164-258": [-480, 604]}}, -{"id": 1526, "name": "Madoka and Outer Wilds Collaboration", "description": "This art is a collaboration with the Madoka and Outer Wilds communities. \n\nThis art depicts Ultimate Madoka (Madokami) at a pivotal moment in the Puella Magi Madoka☆Magica anime and manga series. Madoka Kaname is one of the five main Magical Girls.\n\nThis art also depicts the planetary chart in the action-adventure game Outer Wilds, in which the player character solves the mysteries of a doomed solar system.\nYou can sometimes see a moon move around the solar system or even disappear. Don't blink or you'll miss it !", "links": {"website": ["https://www.mobiusdigitalgames.com/outer-wilds.html", "https://en.wikipedia.org/wiki/Puella_Magi_Madoka_Magica"], "subreddit": ["outerwilds", "MadokaMagica"], "discord": ["JrZMPsPn", "madoka"]}, "path": {"155-258": [[299, 749], [300, 831], [380, 831], [380, 750]]}, "center": {"155-258": [340, 790]}}, +{"id": 1516, "name": "Omsk Flag", "description": "omsk flag from the mod for hoi4 called: the new order", "links": {"website": ["https://the-new-order-last-days-of-europe.fandom.com/wiki/The_New_Order:_Last_Days_of_Europe_Wiki"], "subreddit": ["TNOmod"]}, "path": {"173-258, T": [[-24, 996], [-24, 971], [-12, 971], [-12, 996]]}, "center": {"173-258, T": [-18, 984]}}, +{"id": 1517, "name": "Sonic The Hedgehog", "description": "Sonic the Hedgehog is the titular main protagonist of the Sonic the Hedgehog series and Sega's mascot. He is an anthropomorphic hedgehog born with the ability to run faster than the speed of sound, hence his name. \nHe was designed by character designer Naoto Oshima. \nHe debuted in a game bearing the same name as him in 1991, launching him to widespread fame and giving him the reputation of being the main rival to Super Mario, a rivalry that would persist until 2001 with the release of Sonic Advance on the Gameboy Advance and the discontinuation of the Dreamcast console. \nThe latest instalment in the Sonic franchise, Sonic Frontiers, is directed by Morio Kishimoto, and sees Sonic placed in various \"open zones\". The game has received a positive response from fans, and the game is receiving free content updates, which are adding fan-requested fixes and features.", "links": {"website": ["https://www.sonicthehedgehog.com"], "subreddit": ["sonicthehedgehog"], "discord": ["SRycb9p"]}, "path": {"173-258, T": [[-1131, 371], [-1132, 372], [-1134, 373], [-1130, 374], [-1134, 378], [-1131, 378], [-1131, 379], [-1133, 381], [-1133, 383], [-1131, 382], [-1130, 382], [-1128, 383], [-1124, 383], [-1124, 382], [-1121, 382], [-1122, 380], [-1121, 379], [-1122, 377], [-1121, 377], [-1122, 376], [-1122, 375], [-1121, 374], [-1121, 372], [-1123, 372], [-1123, 373], [-1124, 373], [-1125, 372], [-1126, 372], [-1127, 371]]}, "center": {"173-258, T": [-1127, 377]}}, +{"id": 1518, "name": "White Ermine (Stoat)", "description": "The white-furred Ermine (or Stoat) is a recurrent figure in the Breton symbolism and heraldry. It is said that a white ermine would rather surrender its life than dirty its immaculate winter fur ; hence the Breton motto, \"Kentoc'h mervel eget em zaotra\" (\"Rather death than defilement\").\n\nThis ermine was adapted to pat the little amongus charater created to her left during construction.", "links": {"website": ["https://en.wikipedia.org/wiki/Stoat#Folklore_and_mythology"], "subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"166-258, T": [[-127, 510], [-126, 509], [-126, 507], [-125, 508], [-124, 508], [-123, 507], [-121, 509], [-121, 511], [-122, 512], [-122, 514], [-120, 516], [-119, 516], [-118, 515], [-115, 515], [-111, 517], [-110, 518], [-110, 521], [-111, 522], [-111, 523], [-112, 524], [-113, 525], [-113, 527], [-114, 528], [-114, 525], [-113, 524], [-112, 523], [-112, 522], [-114, 520], [-118, 520], [-120, 522], [-122, 522], [-121, 521], [-121, 519], [-122, 519], [-123, 520], [-126, 520], [-128, 518], [-129, 518], [-128, 517], [-127, 517], [-126, 516], [-126, 514], [-125, 513], [-125, 512], [-126, 511], [-127, 511]]}, "center": {"166-258, T": [-123, 517]}}, +{"id": 1519, "name": "Skol Table", "description": "Skol is one of the biggest Brazilian beer brands. As a marketing and advertising move, Skol offers partner bars yellow tables and chairs stamped with the beer logo, which soon became a Brazilian symbol.", "links": {"website": ["https://en.wikipedia.org/wiki/Skol"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"175-258, T": [[224, 586], [222, 586], [222, 567], [241, 557], [248, 557], [263, 567], [263, 587], [242, 596]]}, "center": {"175-258, T": [243, 576]}}, +{"id": 1521, "name": "Calçadão de Copacabana", "description": "The Copacabana Boardwalk (Calçadão de Copacabana) is a boardwalk located in Rio de Janeiro, Brazil.\nInaugurated in 1906, the boardwalk adopted the famous wave layout, known as \"wide sea\", as a way of honoring the Portuguese cultural heritage in the city.", "links": {"website": ["https://pt.wikipedia.org/wiki/Cal%C3%A7ad%C3%A3o_de_Copacabana"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"166-258, T": [[146, 597], [146, 575], [149, 575], [149, 578], [150, 578], [151, 580], [156, 586], [165, 586], [165, 585], [169, 585], [170, 585], [170, 583], [171, 583], [171, 582], [172, 582], [172, 580], [173, 580], [173, 579], [174, 579], [174, 578], [174, 577], [175, 576], [175, 574], [192, 574], [194, 575], [189, 579], [188, 580], [188, 582], [186, 582], [185, 583], [184, 584], [184, 587], [195, 587], [197, 585], [197, 584], [197, 583], [196, 582], [198, 582], [198, 581], [203, 581], [205, 583], [204, 584], [203, 585], [203, 587], [215, 587], [216, 587], [216, 584], [214, 582], [213, 582], [213, 581], [213, 580], [214, 579], [215, 578], [216, 579], [217, 579], [217, 578], [216, 577], [214, 574], [223, 574], [223, 585], [225, 585], [225, 582], [226, 581], [226, 574], [227, 573], [228, 573], [239, 579], [240, 581], [240, 588], [241, 589], [241, 594], [244, 594], [244, 589], [245, 588], [245, 581], [246, 579], [247, 578], [254, 575], [254, 576], [253, 576], [253, 577], [253, 587], [254, 587], [254, 589], [253, 591], [253, 597]]}, "center": {"166-258, T": [232, 589]}}, +{"id": 1522, "name": "Marcy Wu", "description": "Marcy Regina Wu is one of the three deuteragonists (alongside Sprig and Sasha) of the Disney Channel animated series Amphibia, and the titular main protagonist of its tie-in book Marcy's Journal: A Guide to Amphibia.", "links": {"website": ["https://amphibia.fandom.com/wiki/Marcy_Wu"], "subreddit": ["Amphibia", "place_CentralAlliance"], "discord": ["Amphibia"]}, "path": {"165-258, T": [[-202, 545], [-188, 545], [-188, 560], [-202, 560]]}, "center": {"165-258, T": [-195, 553]}}, +{"id": 1523, "name": "Map of Brittany", "description": "A tiny map of Brittany. The blue pattern in the back stands for the sea, and was home to other Brittany-related artworks.", "links": {"subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"161-258, T": [[-108, 511], [-109, 510], [-109, 504], [-110, 503], [-111, 502], [-115, 502], [-116, 503], [-118, 501], [-120, 501], [-121, 502], [-125, 502], [-126, 503], [-126, 504], [-124, 506], [-125, 507], [-125, 508], [-123, 509], [-119, 509], [-118, 510], [-117, 510], [-112, 515], [-111, 515], [-109, 513], [-109, 512]]}, "center": {"161-258, T": [-114, 507]}}, +{"id": 1524, "name": "Vieux de '37", "description": "the \"Vieux de '37\" (French for \"The Old Man of '37\") is an iconic symbol of the Patriot Rebellion of 1837 that hapenned in Lower-Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/Henri_Julien#Le_Vieux_de_'37"], "subreddit": ["Quebec"]}, "path": {"176-258, T": [[464, 172], [471, 173], [472, 165], [478, 158], [471, 161], [469, 155], [466, 156]]}, "center": {"176-258, T": [469, 164]}}, +{"id": 1525, "name": "French Ori", "description": "Ori from Ori and the Blind Forest/ Will of the Wisp but with a French theming. The team nicknamed this Ori FOri!", "links": {"subreddit": ["OriAndTheBlindForest", "franceplace"], "discord": ["YjtHtZexbN"]}, "path": {"157-163": [[-469, 900], [-439, 900], [-439, 890], [-436, 887], [-436, 882], [-447, 883], [-435, 875], [-434, 869], [-435, 859], [-444, 867], [-446, 867], [-447, 860], [-456, 864], [-459, 860], [-462, 865], [-463, 868], [-467, 861], [-471, 861], [-470, 879], [-461, 883]], "164-258, T": [[-466, 629], [-466, 621], [-463, 616], [-463, 613], [-468, 612], [-468, 613], [-471, 615], [-473, 616], [-474, 612], [-468, 611], [-463, 607], [-461, 603], [-461, 601], [-461, 589], [-471, 599], [-473, 597], [-473, 590], [-478, 595], [-478, 592], [-483, 595], [-486, 590], [-488, 594], [-489, 597], [-490, 596], [-496, 589], [-498, 590], [-498, 604], [-497, 602], [-493, 610], [-490, 612], [-488, 612], [-486, 613], [-491, 617], [-491, 621], [-494, 627], [-495, 630], [-480, 630], [-479, 630]]}, "center": {"157-163": [-454, 875], "164-258, T": [-480, 604]}}, +{"id": 1526, "name": "Madoka and Outer Wilds Collaboration", "description": "This art is a collaboration with the Madoka and Outer Wilds communities. \n\nThis art depicts Ultimate Madoka (Madokami) at a pivotal moment in the Puella Magi Madoka☆Magica anime and manga series. Madoka Kaname is one of the five main Magical Girls.\n\nThis art also depicts the planetary chart in the action-adventure game Outer Wilds, in which the player character solves the mysteries of a doomed solar system.\nYou can sometimes see a moon move around the solar system or even disappear. Don't blink or you'll miss it !", "links": {"website": ["https://www.mobiusdigitalgames.com/outer-wilds.html", "https://en.wikipedia.org/wiki/Puella_Magi_Madoka_Magica"], "subreddit": ["outerwilds", "MadokaMagica"], "discord": ["JrZMPsPn", "madoka"]}, "path": {"155-258, T": [[299, 749], [300, 831], [380, 831], [380, 750]]}, "center": {"155-258, T": [340, 790]}}, {"id": 1527, "name": "MrStiven TC Logo", "description": "MrStiven TC is a Columbian YouTube Gamer and content creator.", "links": {"website": ["https://kick.com/mrstiventc", "https://www.youtube.com/c/MrStivenTc"]}, "path": {"170-189": [[-1002, 999], [-1002, 984], [-990, 984], [-990, 975], [-980, 967], [-979, 966], [-961, 966], [-958, 969], [-954, 973], [-953, 976], [-952, 977], [-952, 984], [-950, 985], [-932, 984], [-932, 999]]}, "center": {"170-189": [-969, 983]}}, -{"id": 1528, "name": "Miles \"Tails\" Prower", "description": "Miles Prower, better known by his nickname Tails, is a character from Sega's Sonic the Hedgehog series. He is the second character to consistently appear by Sonic's side in the series as his best friend and sidekick, appearing in nearly every mainline and spin-off since his debut.", "links": {"subreddit": ["sonicthehedgehog", "milesprower"], "discord": ["SRycb9p"]}, "path": {"174-258": [[-1121, 370], [-1123, 370], [-1123, 372], [-1121, 373], [-1121, 374], [-1122, 375], [-1121, 376], [-1121, 379], [-1122, 380], [-1121, 381], [-1121, 382], [-1121, 383], [-1114, 383], [-1114, 382], [-1113, 382], [-1113, 381], [-1112, 380], [-1113, 379], [-1113, 376], [-1112, 376], [-1111, 375], [-1111, 372], [-1113, 372], [-1113, 370], [-1115, 370], [-1115, 371], [-1116, 372], [-1117, 373], [-1119, 373], [-1120, 372], [-1121, 371], [-1123, 370], [-1123, 372]]}, "center": {"174-258": [-1117, 377]}}, -{"id": 1529, "name": "Knuckles the Echidna", "description": "Knuckles the Echidna is a character from Sega's Sonic the Hedgehog series. He is a red anthropomorphic short-beaked echidna who is Sonic's secondary best friend and former rival. Determined and serious, but sometimes gullible, he fights his enemies using brute strength. He serves as the guardian of the Master Emerald, a huge gemstone that controls the series' integral Chaos Emeralds, and is the last living member of the echidna tribe.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["SRycb9p"]}, "path": {"176-258": [[-1130, 382], [-1129, 382], [-1129, 383], [-1124, 383], [-1123, 384], [-1122, 384], [-1122, 385], [-1121, 386], [-1120, 387], [-1120, 389], [-1120, 392], [-1122, 392], [-1122, 393], [-1126, 393], [-1127, 392], [-1131, 392], [-1133, 393], [-1133, 387], [-1132, 385], [-1132, 384], [-1131, 383], [-1131, 382], [-1129, 382], [-1129, 383]]}, "center": {"176-258": [-1126, 388]}}, +{"id": 1528, "name": "Miles \"Tails\" Prower", "description": "Miles Prower, better known by his nickname Tails, is a character from Sega's Sonic the Hedgehog series. He is the second character to consistently appear by Sonic's side in the series as his best friend and sidekick, appearing in nearly every mainline and spin-off since his debut.", "links": {"subreddit": ["sonicthehedgehog", "milesprower"], "discord": ["SRycb9p"]}, "path": {"174-258, T": [[-1121, 370], [-1123, 370], [-1123, 372], [-1121, 373], [-1121, 374], [-1122, 375], [-1121, 376], [-1121, 379], [-1122, 380], [-1121, 381], [-1121, 382], [-1121, 383], [-1114, 383], [-1114, 382], [-1113, 382], [-1113, 381], [-1112, 380], [-1113, 379], [-1113, 376], [-1112, 376], [-1111, 375], [-1111, 372], [-1113, 372], [-1113, 370], [-1115, 370], [-1115, 371], [-1116, 372], [-1117, 373], [-1119, 373], [-1120, 372], [-1121, 371], [-1123, 370], [-1123, 372]]}, "center": {"174-258, T": [-1117, 377]}}, +{"id": 1529, "name": "Knuckles the Echidna", "description": "Knuckles the Echidna is a character from Sega's Sonic the Hedgehog series. He is a red anthropomorphic short-beaked echidna who is Sonic's secondary best friend and former rival. Determined and serious, but sometimes gullible, he fights his enemies using brute strength. He serves as the guardian of the Master Emerald, a huge gemstone that controls the series' integral Chaos Emeralds, and is the last living member of the echidna tribe.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["SRycb9p"]}, "path": {"176-258, T": [[-1130, 382], [-1129, 382], [-1129, 383], [-1124, 383], [-1123, 384], [-1122, 384], [-1122, 385], [-1121, 386], [-1120, 387], [-1120, 389], [-1120, 392], [-1122, 392], [-1122, 393], [-1126, 393], [-1127, 392], [-1131, 392], [-1133, 393], [-1133, 387], [-1132, 385], [-1132, 384], [-1131, 383], [-1131, 382], [-1129, 382], [-1129, 383]]}, "center": {"176-258, T": [-1126, 388]}}, {"id": 1530, "name": "EmotiGuy", "description": "EmotiGuy, also known as Picardia, is a free public model for the 3D modelling and rendering software Daz 3D. His thumbs-up pose has been used several times and recognized internationally, and used in cases like surreal memes and political strawman memes. He is depicted saluting in this spot in r/place 2023.", "links": {"website": ["https://emotiguy.com"], "subreddit": ["emotiguy"], "discord": ["YyMHhTvzMA"]}, "path": {"171-177": [[-1374, 337], [-1374, 381], [-1313, 381], [-1313, 337]]}, "center": {"171-177": [-1343, 359]}}, -{"id": 1531, "name": "Nomai Mask", "description": "This art is a collaboration with Outer Wilds, Tunic, France, and The Great Review, a French gaming youtuber that specializes in analytical storytelling. TGR's community helped to orchestrate this collaboration, particularly with the French community.\n\nThis art depicts a Nomai Mask from the video game Outer Wilds, an action-adventure game in which the player character solves the mysteries of a doomed solar system. This mask is an important gameplay element the player will interact with a multitude of times on their adventure.\n\nThis art also depicts the three crystal keys to the Heir as the eyes of the mask. These keys originate from Tunic, an action-adventure game developed by Isometricorp and published by Finji. The game is set in a ruined fantasy world in which the player controls an anthropomorphic fox to free a fox spirit trapped within a crystal.", "links": {"website": ["https://www.mobiusdigitalgames.com/outer-wilds.html", "https://store.steampowered.com/app/553420/TUNIC/"], "subreddit": ["outerwilds", "TunicGame", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"157-258": [[-499, 824], [-498, 816], [-493, 810], [-487, 807], [-479, 807], [-475, 805], [-474, 819], [-472, 819], [-472, 806], [-470, 805], [-467, 807], [-458, 807], [-447, 817], [-447, 824], [-454, 824], [-454, 819], [-458, 814], [-464, 814], [-466, 817], [-466, 823], [-459, 830], [-459, 832], [-458, 835], [-457, 836], [-453, 837], [-453, 830], [-455, 830], [-455, 826], [-447, 826], [-447, 831], [-447, 837], [-450, 844], [-455, 850], [-467, 861], [-472, 857], [-470, 854], [-468, 854], [-462, 848], [-462, 843], [-465, 840], [-471, 849], [-474, 849], [-478, 842], [-480, 840], [-484, 843], [-484, 848], [-479, 854], [-476, 853], [-473, 856], [-479, 861], [-494, 845], [-497, 841], [-499, 833], [-499, 826], [-491, 826], [-492, 830], [-492, 837], [-490, 838], [-488, 834], [-481, 824], [-479, 816], [-482, 813], [-487, 814], [-492, 817], [-492, 824]]}, "center": {"157-258": [-473, 832]}}, -{"id": 1532, "name": "\"Passe-Partout\" key", "description": "the \"Passe-Partout\" key is the logo of the popular kid show in Québec named \"Passe-Partout\".", "links": {"subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"148-258": [[507, 173], [508, 173], [508, 174], [509, 174], [513, 174], [513, 173], [515, 173], [515, 174], [516, 174], [516, 176], [515, 176], [515, 177], [515, 180], [516, 180], [516, 182], [515, 182], [515, 183], [513, 183], [513, 182], [511, 182], [511, 181], [510, 181], [509, 181], [509, 182], [508, 182], [508, 183], [507, 183], [507, 184], [506, 184], [506, 185], [505, 185], [505, 186], [504, 186], [503, 186], [503, 187], [502, 187], [502, 188], [501, 188], [501, 189], [500, 189], [500, 190], [500, 191], [501, 191], [501, 192], [502, 192], [502, 193], [503, 193], [502, 193], [502, 194], [501, 194], [501, 195], [500, 195], [500, 196], [499, 196], [499, 197], [498, 196], [498, 195], [497, 195], [497, 194], [496, 194], [495, 194], [495, 193], [496, 193], [496, 192], [497, 192], [497, 191], [498, 191], [498, 190], [499, 190], [499, 189], [500, 189], [500, 188], [501, 188], [501, 187], [502, 187], [502, 186], [503, 186], [503, 185], [503, 184], [504, 184], [504, 183], [505, 183], [505, 182], [506, 182], [507, 181], [507, 180], [508, 180], [508, 179], [508, 178], [507, 178], [507, 177], [507, 176], [506, 176], [506, 174]]}, "center": {"148-258": [512, 177]}}, -{"id": 1533, "name": "Flag of Uruguay", "description": "Uruguay is a country in the south part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Flag_of_Uruguay"], "subreddit": ["uruguay"]}, "path": {"155-258": [[288, 966], [288, 987], [300, 987], [300, 1000], [357, 1000], [357, 966]]}, "center": {"155-258": [323, 983]}}, -{"id": 1534, "name": "Shoot down that flag!", "description": "This scene comes from the One Piece manga, where protagonist Luffy tells his sniper Sogeking to shoot down the World Government's flag, declaring war on the world. It is often considered one of the most dramatic and iconic moments in One Piece, and is also frequently used in memes.\n\nInstead of the World Government flag, the last scene in this strip depicts a flag of Reddit with the cry \"API!\" instead of \"!!?\", protesting against Reddit's API pricing changes that killed many third-party Reddit apps.\n\nThis art was a collaboration with France, with the dialogue being translated into French.", "links": {"website": ["https://onepiece.fandom.com/wiki/Episode_278"], "subreddit": ["onepiece", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"152-258": [[-999, 88], [-999, 272], [-999, 273], [-870, 273], [-870, 88]]}, "center": {"152-258": [-934, 181]}}, -{"id": 1535, "name": "Bigoudène", "description": "A Bigoudène, feminine denonym of the inhabitants of the Bigouden district in Brittany. Bigoudens are known for their traditional attire and customs, and most notably for their tall white caps.", "links": {"website": ["https://en.wikipedia.org/wiki/Bigouden"], "subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"161-258": [[-112, 520], [-112, 519], [-111, 518], [-106, 513], [-107, 512], [-107, 510], [-106, 509], [-106, 504], [-104, 504], [-104, 509], [-103, 509], [-101, 507], [-103, 509], [-103, 510], [-101, 510], [-100, 509], [-101, 510], [-103, 510], [-103, 512], [-104, 513], [-99, 518], [-98, 520], [-99, 521], [-102, 520], [-102, 522], [-108, 522], [-108, 521], [-111, 521]]}, "center": {"161-258": [-105, 518]}}, -{"id": 1536, "name": "Hydro-Québec", "description": "Hydro-Québec is a public utility that manages the generation, transmission and distribution of electricity in the Canadian province of Quebec, as well as the export of power to portions of the Northeast United States.\n\nIt was established by the Government of Quebec in 1944 from the expropriation of private firms. This was followed by massive investment in hydro-electric projects like the James Bay Project. Today, with 63 hydroelectric power stations, the combined output capacity is 37,370 megawatts. Extra power is exported from the province and Hydro-Québec supplies 10 per cent of New England's power requirements.\n\nHydro-Québec is a Crown corporation (state-owned enterprise) based in Montreal. In 2018, it paid CAD$2.39 billion in dividends to its sole shareholder, the Government of Québec. Its residential power rates are among the lowest in North America.\n\nMore than 40 percent of Canada's water resources are in Québec and Hydro-Québec is the fourth largest hydropower producer in the world.\n\nThe company logo, a stylized \"Q\" fashioned out of a circle and a lightning bolt, was designed by Montreal-based design agency Gagnon/Valkus in 1960.", "links": {"website": ["https://en.wikipedia.org/wiki/Hydro-Qu%C3%A9bec", "https://www.hydroquebec.com/"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"27-59": [[456, 175], [456, 188], [471, 188], [471, 175]], "60-258": [[456, 158], [457, 158], [457, 157], [458, 157], [458, 156], [459, 156], [459, 155], [460, 155], [460, 154], [461, 154], [461, 153], [462, 153], [462, 152], [465, 152], [465, 151], [476, 151], [476, 152], [479, 152], [479, 153], [480, 153], [480, 154], [481, 154], [481, 155], [482, 155], [482, 156], [483, 156], [483, 158], [484, 158], [484, 159], [485, 159], [485, 161], [486, 161], [486, 171], [485, 171], [485, 173], [484, 173], [484, 175], [483, 175], [483, 176], [483, 177], [484, 177], [484, 178], [485, 178], [485, 179], [486, 179], [486, 180], [487, 180], [487, 181], [488, 181], [489, 181], [489, 174], [489, 175], [490, 175], [490, 176], [491, 176], [491, 177], [492, 177], [492, 178], [493, 178], [493, 179], [494, 179], [494, 180], [495, 180], [495, 181], [496, 181], [496, 182], [497, 182], [497, 183], [498, 183], [498, 184], [499, 184], [499, 185], [499, 186], [500, 186], [499, 186], [499, 187], [499, 186], [498, 186], [498, 185], [497, 185], [497, 184], [496, 184], [496, 183], [495, 183], [495, 182], [494, 182], [494, 181], [493, 181], [493, 180], [492, 180], [491, 180], [491, 181], [491, 183], [491, 185], [491, 189], [491, 188], [490, 188], [490, 187], [489, 187], [489, 186], [488, 186], [488, 185], [487, 185], [487, 184], [486, 184], [486, 183], [485, 183], [485, 182], [484, 182], [484, 181], [482, 181], [482, 180], [482, 179], [480, 179], [480, 180], [479, 180], [479, 181], [477, 181], [477, 182], [465, 182], [465, 181], [463, 181], [463, 180], [461, 180], [461, 179], [460, 179], [460, 178], [459, 178], [459, 177], [458, 177], [458, 176], [458, 175], [457, 175], [457, 173], [458, 173], [458, 172], [459, 172], [459, 171], [460, 171], [460, 169], [461, 169], [461, 167], [462, 167], [462, 163], [462, 162], [461, 162], [461, 161], [460, 161], [460, 160], [459, 160], [459, 159], [458, 159], [458, 158], [457, 158], [456, 158], [457, 158], [457, 157], [458, 157], [458, 156], [459, 156], [459, 155], [460, 155], [460, 154], [461, 154], [461, 153], [462, 153], [462, 152], [463, 152], [464, 152], [465, 152]]}, "center": {"27-59": [464, 182], "60-258": [474, 166]}}, -{"id": 1537, "name": "Crossing Swords! Roger and Whitebeard!", "description": "This art depicts a scene from the anime for One Piece, episode 965 (Crossing Swords! Roger and Whitebeard!). The episode features a battle between two pirate captains, Gol D. Roger and Whitebeard.\n\nThis art was orchestrated by r/onepiece and assisted by several streamers, including Silithur, Cellbit, and Papaplatte. The motion lines from the swords are colored with the transgender flag and rainbow LGBT flag as a collaboration with r/PlacePride and r/transplace.", "links": {"website": ["https://www.youtube.com/watch?v=UOZpCJhxv-w", "https://www.twitch.tv/silithur", "https://www.twitch.tv/cellbit", "https://www.twitch.tv/papaplatte"], "subreddit": ["onepiece", "PlacePride", "transplace"]}, "path": {"171-258": [[-1500, -247], [-1500, -79], [-1201, -78], [-1201, -247], [-1324, -247], [-1324, -258], [-1327, -258], [-1337, -247]]}, "center": {"171-258": [-1320, -163]}}, +{"id": 1531, "name": "Nomai Mask", "description": "This art is a collaboration with Outer Wilds, Tunic, France, and The Great Review, a French gaming youtuber that specializes in analytical storytelling. TGR's community helped to orchestrate this collaboration, particularly with the French community.\n\nThis art depicts a Nomai Mask from the video game Outer Wilds, an action-adventure game in which the player character solves the mysteries of a doomed solar system. This mask is an important gameplay element the player will interact with a multitude of times on their adventure.\n\nThis art also depicts the three crystal keys to the Heir as the eyes of the mask. These keys originate from Tunic, an action-adventure game developed by Isometricorp and published by Finji. The game is set in a ruined fantasy world in which the player controls an anthropomorphic fox to free a fox spirit trapped within a crystal.", "links": {"website": ["https://www.mobiusdigitalgames.com/outer-wilds.html", "https://store.steampowered.com/app/553420/TUNIC/"], "subreddit": ["outerwilds", "TunicGame", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"157-258, T": [[-499, 824], [-498, 816], [-493, 810], [-487, 807], [-479, 807], [-475, 805], [-474, 819], [-472, 819], [-472, 806], [-470, 805], [-467, 807], [-458, 807], [-447, 817], [-447, 824], [-454, 824], [-454, 819], [-458, 814], [-464, 814], [-466, 817], [-466, 823], [-459, 830], [-459, 832], [-458, 835], [-457, 836], [-453, 837], [-453, 830], [-455, 830], [-455, 826], [-447, 826], [-447, 831], [-447, 837], [-450, 844], [-455, 850], [-467, 861], [-472, 857], [-470, 854], [-468, 854], [-462, 848], [-462, 843], [-465, 840], [-471, 849], [-474, 849], [-478, 842], [-480, 840], [-484, 843], [-484, 848], [-479, 854], [-476, 853], [-473, 856], [-479, 861], [-494, 845], [-497, 841], [-499, 833], [-499, 826], [-491, 826], [-492, 830], [-492, 837], [-490, 838], [-488, 834], [-481, 824], [-479, 816], [-482, 813], [-487, 814], [-492, 817], [-492, 824]]}, "center": {"157-258, T": [-473, 832]}}, +{"id": 1532, "name": "\"Passe-Partout\" key", "description": "the \"Passe-Partout\" key is the logo of the popular kid show in Québec named \"Passe-Partout\".", "links": {"subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"148-258, T": [[507, 173], [508, 173], [508, 174], [509, 174], [513, 174], [513, 173], [515, 173], [515, 174], [516, 174], [516, 176], [515, 176], [515, 177], [515, 180], [516, 180], [516, 182], [515, 182], [515, 183], [513, 183], [513, 182], [511, 182], [511, 181], [510, 181], [509, 181], [509, 182], [508, 182], [508, 183], [507, 183], [507, 184], [506, 184], [506, 185], [505, 185], [505, 186], [504, 186], [503, 186], [503, 187], [502, 187], [502, 188], [501, 188], [501, 189], [500, 189], [500, 190], [500, 191], [501, 191], [501, 192], [502, 192], [502, 193], [503, 193], [502, 193], [502, 194], [501, 194], [501, 195], [500, 195], [500, 196], [499, 196], [499, 197], [498, 196], [498, 195], [497, 195], [497, 194], [496, 194], [495, 194], [495, 193], [496, 193], [496, 192], [497, 192], [497, 191], [498, 191], [498, 190], [499, 190], [499, 189], [500, 189], [500, 188], [501, 188], [501, 187], [502, 187], [502, 186], [503, 186], [503, 185], [503, 184], [504, 184], [504, 183], [505, 183], [505, 182], [506, 182], [507, 181], [507, 180], [508, 180], [508, 179], [508, 178], [507, 178], [507, 177], [507, 176], [506, 176], [506, 174]]}, "center": {"148-258, T": [512, 177]}}, +{"id": 1533, "name": "Flag of Uruguay", "description": "Uruguay is a country in the south part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Flag_of_Uruguay"], "subreddit": ["uruguay"]}, "path": {"155-258, T": [[288, 966], [288, 987], [300, 987], [300, 1000], [357, 1000], [357, 966]]}, "center": {"155-258, T": [323, 983]}}, +{"id": 1534, "name": "Shoot down that flag!", "description": "This scene comes from the One Piece manga, where protagonist Luffy tells his sniper Sogeking to shoot down the World Government's flag, declaring war on the world. It is often considered one of the most dramatic and iconic moments in One Piece, and is also frequently used in memes.\n\nInstead of the World Government flag, the last scene in this strip depicts a flag of Reddit with the cry \"API!\" instead of \"!!?\", protesting against Reddit's API pricing changes that killed many third-party Reddit apps.\n\nThis art was a collaboration with France, with the dialogue being translated into French.", "links": {"website": ["https://onepiece.fandom.com/wiki/Episode_278"], "subreddit": ["onepiece", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"152-258, T": [[-999, 88], [-999, 272], [-999, 273], [-870, 273], [-870, 88]]}, "center": {"152-258, T": [-934, 181]}}, +{"id": 1535, "name": "Bigoudène", "description": "A Bigoudène, feminine denonym of the inhabitants of the Bigouden district in Brittany. Bigoudens are known for their traditional attire and customs, and most notably for their tall white caps.", "links": {"website": ["https://en.wikipedia.org/wiki/Bigouden"], "subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"161-258, T": [[-112, 520], [-112, 519], [-111, 518], [-106, 513], [-107, 512], [-107, 510], [-106, 509], [-106, 504], [-104, 504], [-104, 509], [-103, 509], [-101, 507], [-103, 509], [-103, 510], [-101, 510], [-100, 509], [-101, 510], [-103, 510], [-103, 512], [-104, 513], [-99, 518], [-98, 520], [-99, 521], [-102, 520], [-102, 522], [-108, 522], [-108, 521], [-111, 521]]}, "center": {"161-258, T": [-105, 518]}}, +{"id": 1536, "name": "Hydro-Québec", "description": "Hydro-Québec is a public utility that manages the generation, transmission and distribution of electricity in the Canadian province of Quebec, as well as the export of power to portions of the Northeast United States.\n\nIt was established by the Government of Quebec in 1944 from the expropriation of private firms. This was followed by massive investment in hydro-electric projects like the James Bay Project. Today, with 63 hydroelectric power stations, the combined output capacity is 37,370 megawatts. Extra power is exported from the province and Hydro-Québec supplies 10 per cent of New England's power requirements.\n\nHydro-Québec is a Crown corporation (state-owned enterprise) based in Montreal. In 2018, it paid CAD$2.39 billion in dividends to its sole shareholder, the Government of Québec. Its residential power rates are among the lowest in North America.\n\nMore than 40 percent of Canada's water resources are in Québec and Hydro-Québec is the fourth largest hydropower producer in the world.\n\nThe company logo, a stylized \"Q\" fashioned out of a circle and a lightning bolt, was designed by Montreal-based design agency Gagnon/Valkus in 1960.", "links": {"website": ["https://en.wikipedia.org/wiki/Hydro-Qu%C3%A9bec", "https://www.hydroquebec.com/"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"27-59": [[456, 175], [456, 188], [471, 188], [471, 175]], "60-258, T": [[456, 158], [457, 158], [457, 157], [458, 157], [458, 156], [459, 156], [459, 155], [460, 155], [460, 154], [461, 154], [461, 153], [462, 153], [462, 152], [465, 152], [465, 151], [476, 151], [476, 152], [479, 152], [479, 153], [480, 153], [480, 154], [481, 154], [481, 155], [482, 155], [482, 156], [483, 156], [483, 158], [484, 158], [484, 159], [485, 159], [485, 161], [486, 161], [486, 171], [485, 171], [485, 173], [484, 173], [484, 175], [483, 175], [483, 176], [483, 177], [484, 177], [484, 178], [485, 178], [485, 179], [486, 179], [486, 180], [487, 180], [487, 181], [488, 181], [489, 181], [489, 174], [489, 175], [490, 175], [490, 176], [491, 176], [491, 177], [492, 177], [492, 178], [493, 178], [493, 179], [494, 179], [494, 180], [495, 180], [495, 181], [496, 181], [496, 182], [497, 182], [497, 183], [498, 183], [498, 184], [499, 184], [499, 185], [499, 186], [500, 186], [499, 186], [499, 187], [499, 186], [498, 186], [498, 185], [497, 185], [497, 184], [496, 184], [496, 183], [495, 183], [495, 182], [494, 182], [494, 181], [493, 181], [493, 180], [492, 180], [491, 180], [491, 181], [491, 183], [491, 185], [491, 189], [491, 188], [490, 188], [490, 187], [489, 187], [489, 186], [488, 186], [488, 185], [487, 185], [487, 184], [486, 184], [486, 183], [485, 183], [485, 182], [484, 182], [484, 181], [482, 181], [482, 180], [482, 179], [480, 179], [480, 180], [479, 180], [479, 181], [477, 181], [477, 182], [465, 182], [465, 181], [463, 181], [463, 180], [461, 180], [461, 179], [460, 179], [460, 178], [459, 178], [459, 177], [458, 177], [458, 176], [458, 175], [457, 175], [457, 173], [458, 173], [458, 172], [459, 172], [459, 171], [460, 171], [460, 169], [461, 169], [461, 167], [462, 167], [462, 163], [462, 162], [461, 162], [461, 161], [460, 161], [460, 160], [459, 160], [459, 159], [458, 159], [458, 158], [457, 158], [456, 158], [457, 158], [457, 157], [458, 157], [458, 156], [459, 156], [459, 155], [460, 155], [460, 154], [461, 154], [461, 153], [462, 153], [462, 152], [463, 152], [464, 152], [465, 152]]}, "center": {"27-59": [464, 182], "60-258, T": [474, 166]}}, +{"id": 1537, "name": "Crossing Swords! Roger and Whitebeard!", "description": "This art depicts a scene from the anime for One Piece, episode 965 (Crossing Swords! Roger and Whitebeard!). The episode features a battle between two pirate captains, Gol D. Roger and Whitebeard.\n\nThis art was orchestrated by r/onepiece and assisted by several streamers, including Silithur, Cellbit, and Papaplatte. The motion lines from the swords are colored with the transgender flag and rainbow LGBT flag as a collaboration with r/PlacePride and r/transplace.", "links": {"website": ["https://www.youtube.com/watch?v=UOZpCJhxv-w", "https://www.twitch.tv/silithur", "https://www.twitch.tv/cellbit", "https://www.twitch.tv/papaplatte"], "subreddit": ["onepiece", "PlacePride", "transplace"]}, "path": {"171-258, T": [[-1500, -247], [-1500, -79], [-1201, -78], [-1201, -247], [-1324, -247], [-1324, -258], [-1327, -258], [-1337, -247]]}, "center": {"171-258, T": [-1320, -163]}}, {"id": 1538, "name": "Charizard (Base Set)", "description": "Charizard is a Fire/Flying-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue). It is the final evolution of the Fire-type starter Pokémon, Charmander. This is a card of Charizard from the first set of cards in the Pokémon Trading Card Game, Base Set, and is one of the most iconic cards in Pokémon TCG.\n\nThis art was created by streamer xQc shortly after the fifth canvas expansion. The card remained for several hours, but eventually was vandalized, including changing Charizard's name to \"Glurak\", the card's HP value to 420, and the Fire type to a marijuana leaf. The attack text on the card was changed to read words such as \"cum\", \"porn\", and \"Fuck Spez\". The Charizard depicted on the card ended up crying, surrounded by a handful of small pixel art and Among Us crewmates. After a while, xQc returned to attempt to build a Gigachad face in place of the Charizard, but his attempt failed, and he moved on to attack the Bronies. In the following hours, the card was consumed by dozens of pixel art pieces, leaving the card unrecognizable, aside from the Water-type Pokémon present along the bottom. In the less contested areas, the original pink colour of the main card and yellow border are still visible, serving as the only reminder of the card.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Charizard_(Base_Set_4)", "https://www.twitch.tv/xqc"], "subreddit": ["xqcow"]}, "path": {"179-237": [[-1500, -78], [-1500, 373], [-1175, 373], [-1175, -78], [-1342, -79], [-1356, -79]]}, "center": {"179-237": [-1337, 147]}}, -{"id": 1539, "name": "Echo Unit Head", "description": "A head of the series-11 unit from the game, Echo VR.", "links": {"subreddit": ["EchoArena"], "discord": ["9UqjJJdd"]}, "path": {"178-258": [[-1425, -338], [-1423, -338], [-1423, -340], [-1422, -340], [-1422, -341], [-1421, -341], [-1421, -342], [-1420, -342], [-1420, -343], [-1416, -343], [-1416, -342], [-1415, -342], [-1415, -341], [-1414, -341], [-1414, -340], [-1413, -340], [-1413, -331], [-1414, -331], [-1414, -330], [-1415, -330], [-1415, -329], [-1416, -329], [-1416, -328], [-1420, -328], [-1420, -329], [-1421, -329], [-1421, -330], [-1422, -330], [-1422, -331], [-1423, -331], [-1423, -332], [-1424, -332], [-1424, -335], [-1425, -335]]}, "center": {"178-258": [-1418, -335]}}, -{"id": 1540, "name": "Hayasaka Ai", "description": "Hayasaka Ai, from Kaguya-sama: Love is war", "links": {"website": ["https://kaguyasama-wa-kokurasetai.fandom.com/wiki/Ai_Hayasaka"], "subreddit": ["Hayasaka"]}, "path": {"177-258": [[-683, -256], [-683, -247], [-669, -247], [-670, -260], [-682, -260]]}, "center": {"177-258": [-676, -253]}}, -{"id": 1541, "name": "Makima bean", "description": "A plushie of Makima from the anime Chainsaw Man, bean shaped", "links": {"website": ["https://chainsaw-man.fandom.com/wiki/Makima"], "subreddit": ["ChainsawMan"], "discord": ["NjsuqFsX"]}, "path": {"178-258": [[-626, 363], [-614, 363], [-605, 364], [-608, 381], [-626, 376]]}, "center": {"178-258": [-616, 371]}}, -{"id": 1542, "name": "F Boz!", "description": "A message to Meta CTO, Andrew Bosworth, who decided to shut down Echo VR.", "links": {"subreddit": ["EchoArena"], "discord": ["9UqjJJdd"]}, "path": {"178-258": [[-1411, -339], [-1395, -339], [-1395, -328], [-1411, -328]]}, "center": {"178-258": [-1403, -333]}}, -{"id": 1543, "name": "Ye Album Cover", "description": "The album cover to the 2018 album by the artist Ye (formerly known as Kanye West) titled \"Ye\"", "links": {"subreddit": ["WestSubEver", "Kanye", "GoodAssSub"]}, "path": {"178-258": [[681, 581], [681, 594], [692, 594], [692, 581], [687, 581], [686, 581], [685, 581], [682, 581], [683, 581]]}, "center": {"178-258": [687, 588]}}, -{"id": 1544, "name": "Eazy Single Cover", "description": "The cover art of the single \"Eazy\" by the artists Ye (formerly known as Kanye West) and The Game.", "links": {"subreddit": ["WestSubEver", "Kanye", "GoodAssSub"]}, "path": {"178-258": [[669, 581], [680, 594], [680, 582], [669, 581], [669, 594], [680, 594], [680, 581]]}, "center": {"178-258": [673, 590]}}, -{"id": 1545, "name": "Doctor Simi", "description": "Doctor Simi is the mascot of the Mexican pharmacy chain Farmacias Similares. A recent trend in Mexico involves throwing plush toys of Doctor Simi at celebrities.\n\nThis art was created by Mexican streamer Quackity.", "links": {"website": ["https://en.wikipedia.org/wiki/V%C3%ADctor_Gonz%C3%A1lez_Torres", "https://www.twitch.tv/quackity"]}, "path": {"171-258": [[-1443, 970], [-1362, 970], [-1362, 900], [-1354, 900], [-1344, 890], [-1344, 886], [-1329, 889], [-1325, 892], [-1319, 894], [-1317, 897], [-1312, 898], [-1309, 890], [-1315, 890], [-1345, 875], [-1347, 866], [-1369, 845], [-1363, 833], [-1359, 827], [-1363, 829], [-1363, 822], [-1358, 817], [-1358, 811], [-1366, 803], [-1372, 802], [-1375, 807], [-1380, 802], [-1398, 802], [-1401, 804], [-1404, 802], [-1411, 803], [-1419, 808], [-1422, 822], [-1418, 823], [-1419, 830], [-1422, 830], [-1418, 837], [-1425, 843], [-1434, 835], [-1445, 845], [-1445, 858], [-1448, 868], [-1447, 874], [-1439, 883], [-1446, 904], [-1448, 953], [-1443, 959]]}, "center": {"171-258": [-1404, 920]}}, -{"id": 1546, "name": "Heystan", "description": "HeyStan a Twitch streamer and Youtuber, producing mainly content of Fortnite", "links": {"website": ["https://www.twitch.tv/heystan", "https://www.youtube.com/@HeyStani", "https://twitter.com/HeyStani", "https://www.instagram.com/Hey_Stani/"]}, "path": {"185-258": [[624, 519], [644, 519], [644, 500], [624, 500]]}, "center": {"185-258": [634, 510]}}, -{"id": 1547, "name": "Cristiano Ronaldo", "description": "Cristiano Ronaldo, Portuguese professional footballer who plays as a forward for and captains both Saudi Professional League club Al Nassr and the Portugal national team.\n\nRonaldo has won five Ballon d'Or awards and four European Golden Shoes, the most by a European player. He has won 32 trophies in his career, including seven league titles, five UEFA Champions Leagues, the UEFA European Championship and the UEFA Nations League.", "links": {"website": ["https://en.wikipedia.org/wiki/Cristiano_Ronaldo"]}, "path": {"177-258": [[406, 253], [410, 253], [413, 254], [416, 257], [417, 261], [414, 265], [408, 269], [404, 287], [403, 299], [405, 299], [408, 299], [412, 296], [415, 295], [419, 294], [425, 295], [429, 297], [434, 298], [440, 297], [440, 295], [439, 291], [436, 286], [436, 280], [435, 268], [438, 266], [442, 261], [446, 258], [451, 257], [456, 258], [461, 258], [463, 260], [465, 263], [466, 266], [467, 271], [466, 276], [466, 281], [462, 285], [461, 289], [462, 292], [465, 292], [466, 293], [465, 296], [461, 302], [460, 309], [461, 319], [462, 327], [464, 333], [465, 339], [464, 342], [461, 344], [457, 342], [452, 331], [444, 325], [441, 316], [438, 308], [430, 298], [423, 295], [416, 294], [409, 299], [403, 299], [401, 304], [399, 309], [397, 315], [397, 317], [392, 314], [388, 308], [388, 303], [389, 291], [391, 282], [396, 272], [402, 259]]}, "center": {"177-258": [451, 274]}}, -{"id": 1548, "name": "Spyro", "description": "The spyro dragon accompanied by sparks.", "links": {}, "path": {"187-258": [[-779, 839], [-777, 842], [-753, 842], [-756, 837], [-750, 835], [-744, 835], [-749, 829], [-752, 826], [-749, 821], [-752, 820], [-753, 823], [-756, 820], [-762, 824], [-759, 829], [-762, 830], [-761, 834], [-764, 835], [-767, 828], [-765, 821], [-776, 820], [-775, 824], [-767, 825], [-768, 829], [-777, 834], [-768, 835], [-778, 840], [-746, 841], [-746, 837], [-751, 841], [-777, 842], [-778, 839]]}, "center": {"187-258": [-755, 831]}}, -{"id": 1549, "name": "Jimmy Chortles", "description": "What began as a joke among three friends who accidentally popped a balloon became a much more widespread inside jokes between a history teacher and every one of his classes. The balloon is currently memorialized through a photo frame with its remnants and numerous drawings of the balloon itself in the classroom. Lovingly nicknamed \"Jimmy Chortles\", the balloon represents the deep connection many students had with their beloved history teacher, Mr. V. The students formerly worked with numerous groups to allow the balloon to stay, but ultimately has had to move 5 times. People in r/placeDE noticed the drawing and fiercely fought for it to stay. Here is Jimmy Chortles's final resting place and foothold in internet history.", "links": {"subreddit": ["placeDE"], "discord": ["placede"]}, "path": {"183-246": [[-1293, -958], [-1297, -954], [-1297, -951], [-1293, -947], [-1293, -946], [-1300, -942], [-1299, -941], [-1291, -946], [-1291, -947], [-1287, -951], [-1287, -954], [-1291, -958]], "247-258": [[-1293, -958], [-1297, -954], [-1297, -951], [-1294, -948], [-1294, -945], [-1300, -942], [-1300, -941], [-1287, -947], [-1285, -951], [-1281, -955], [-1281, -958], [-1285, -962], [-1287, -962], [-1291, -958]]}, "center": {"183-246": [-1292, -953], "247-258": [-1290, -952]}}, +{"id": 1539, "name": "Echo Unit Head", "description": "A head of the series-11 unit from the game, Echo VR.", "links": {"subreddit": ["EchoArena"], "discord": ["9UqjJJdd"]}, "path": {"178-258, T": [[-1425, -338], [-1423, -338], [-1423, -340], [-1422, -340], [-1422, -341], [-1421, -341], [-1421, -342], [-1420, -342], [-1420, -343], [-1416, -343], [-1416, -342], [-1415, -342], [-1415, -341], [-1414, -341], [-1414, -340], [-1413, -340], [-1413, -331], [-1414, -331], [-1414, -330], [-1415, -330], [-1415, -329], [-1416, -329], [-1416, -328], [-1420, -328], [-1420, -329], [-1421, -329], [-1421, -330], [-1422, -330], [-1422, -331], [-1423, -331], [-1423, -332], [-1424, -332], [-1424, -335], [-1425, -335]]}, "center": {"178-258, T": [-1418, -335]}}, +{"id": 1540, "name": "Hayasaka Ai", "description": "Hayasaka Ai, from Kaguya-sama: Love is war", "links": {"website": ["https://kaguyasama-wa-kokurasetai.fandom.com/wiki/Ai_Hayasaka"], "subreddit": ["Hayasaka"]}, "path": {"177-258, T": [[-683, -256], [-683, -247], [-669, -247], [-670, -260], [-682, -260]]}, "center": {"177-258, T": [-676, -253]}}, +{"id": 1541, "name": "Makima bean", "description": "A plushie of Makima from the anime Chainsaw Man, bean shaped", "links": {"website": ["https://chainsaw-man.fandom.com/wiki/Makima"], "subreddit": ["ChainsawMan"], "discord": ["NjsuqFsX"]}, "path": {"178-258, T": [[-626, 363], [-614, 363], [-605, 364], [-608, 381], [-626, 376]]}, "center": {"178-258, T": [-616, 371]}}, +{"id": 1542, "name": "F Boz!", "description": "A message to Meta CTO, Andrew Bosworth, who decided to shut down Echo VR.", "links": {"subreddit": ["EchoArena"], "discord": ["9UqjJJdd"]}, "path": {"178-258, T": [[-1411, -339], [-1395, -339], [-1395, -328], [-1411, -328]]}, "center": {"178-258, T": [-1403, -333]}}, +{"id": 1543, "name": "Ye Album Cover", "description": "The album cover to the 2018 album by the artist Ye (formerly known as Kanye West) titled \"Ye\"", "links": {"subreddit": ["WestSubEver", "Kanye", "GoodAssSub"]}, "path": {"178-258, T": [[681, 581], [681, 594], [692, 594], [692, 581], [687, 581], [686, 581], [685, 581], [682, 581], [683, 581]]}, "center": {"178-258, T": [687, 588]}}, +{"id": 1544, "name": "Eazy Single Cover", "description": "The cover art of the single \"Eazy\" by the artists Ye (formerly known as Kanye West) and The Game.", "links": {"subreddit": ["WestSubEver", "Kanye", "GoodAssSub"]}, "path": {"178-258, T": [[669, 581], [680, 594], [680, 582], [669, 581], [669, 594], [680, 594], [680, 581]]}, "center": {"178-258, T": [673, 590]}}, +{"id": 1545, "name": "Doctor Simi", "description": "Doctor Simi is the mascot of the Mexican pharmacy chain Farmacias Similares. A recent trend in Mexico involves throwing plush toys of Doctor Simi at celebrities.\n\nThis art was created by Mexican streamer Quackity.", "links": {"website": ["https://en.wikipedia.org/wiki/V%C3%ADctor_Gonz%C3%A1lez_Torres", "https://www.twitch.tv/quackity"]}, "path": {"171-258, T": [[-1443, 970], [-1362, 970], [-1362, 900], [-1354, 900], [-1344, 890], [-1344, 886], [-1329, 889], [-1325, 892], [-1319, 894], [-1317, 897], [-1312, 898], [-1309, 890], [-1315, 890], [-1345, 875], [-1347, 866], [-1369, 845], [-1363, 833], [-1359, 827], [-1363, 829], [-1363, 822], [-1358, 817], [-1358, 811], [-1366, 803], [-1372, 802], [-1375, 807], [-1380, 802], [-1398, 802], [-1401, 804], [-1404, 802], [-1411, 803], [-1419, 808], [-1422, 822], [-1418, 823], [-1419, 830], [-1422, 830], [-1418, 837], [-1425, 843], [-1434, 835], [-1445, 845], [-1445, 858], [-1448, 868], [-1447, 874], [-1439, 883], [-1446, 904], [-1448, 953], [-1443, 959]]}, "center": {"171-258, T": [-1404, 920]}}, +{"id": 1546, "name": "Heystan", "description": "HeyStan a Twitch streamer and Youtuber, producing mainly content of Fortnite", "links": {"website": ["https://www.twitch.tv/heystan", "https://www.youtube.com/@HeyStani", "https://twitter.com/HeyStani", "https://www.instagram.com/Hey_Stani/"]}, "path": {"185-258, T": [[624, 519], [644, 519], [644, 500], [624, 500]]}, "center": {"185-258, T": [634, 510]}}, +{"id": 1547, "name": "Cristiano Ronaldo", "description": "Cristiano Ronaldo, Portuguese professional footballer who plays as a forward for and captains both Saudi Professional League club Al Nassr and the Portugal national team.\n\nRonaldo has won five Ballon d'Or awards and four European Golden Shoes, the most by a European player. He has won 32 trophies in his career, including seven league titles, five UEFA Champions Leagues, the UEFA European Championship and the UEFA Nations League.", "links": {"website": ["https://en.wikipedia.org/wiki/Cristiano_Ronaldo"]}, "path": {"177-258, T": [[406, 253], [410, 253], [413, 254], [416, 257], [417, 261], [414, 265], [408, 269], [404, 287], [403, 299], [405, 299], [408, 299], [412, 296], [415, 295], [419, 294], [425, 295], [429, 297], [434, 298], [440, 297], [440, 295], [439, 291], [436, 286], [436, 280], [435, 268], [438, 266], [442, 261], [446, 258], [451, 257], [456, 258], [461, 258], [463, 260], [465, 263], [466, 266], [467, 271], [466, 276], [466, 281], [462, 285], [461, 289], [462, 292], [465, 292], [466, 293], [465, 296], [461, 302], [460, 309], [461, 319], [462, 327], [464, 333], [465, 339], [464, 342], [461, 344], [457, 342], [452, 331], [444, 325], [441, 316], [438, 308], [430, 298], [423, 295], [416, 294], [409, 299], [403, 299], [401, 304], [399, 309], [397, 315], [397, 317], [392, 314], [388, 308], [388, 303], [389, 291], [391, 282], [396, 272], [402, 259]]}, "center": {"177-258, T": [451, 274]}}, +{"id": 1548, "name": "Spyro", "description": "The spyro dragon accompanied by sparks.", "links": {}, "path": {"187-258, T": [[-779, 839], [-777, 842], [-753, 842], [-756, 837], [-750, 835], [-744, 835], [-749, 829], [-752, 826], [-749, 821], [-752, 820], [-753, 823], [-756, 820], [-762, 824], [-759, 829], [-762, 830], [-761, 834], [-764, 835], [-767, 828], [-765, 821], [-776, 820], [-775, 824], [-767, 825], [-768, 829], [-777, 834], [-768, 835], [-778, 840], [-746, 841], [-746, 837], [-751, 841], [-777, 842], [-778, 839]]}, "center": {"187-258, T": [-755, 831]}}, +{"id": 1549, "name": "Jimmy Chortles", "description": "What began as a joke among three friends who accidentally popped a balloon became a much more widespread inside jokes between a history teacher and every one of his classes. The balloon is currently memorialized through a photo frame with its remnants and numerous drawings of the balloon itself in the classroom. Lovingly nicknamed \"Jimmy Chortles\", the balloon represents the deep connection many students had with their beloved history teacher, Mr. V. The students formerly worked with numerous groups to allow the balloon to stay, but ultimately has had to move 5 times. People in r/placeDE noticed the drawing and fiercely fought for it to stay. Here is Jimmy Chortles's final resting place and foothold in internet history.", "links": {"subreddit": ["placeDE"], "discord": ["placede"]}, "path": {"183-246": [[-1293, -958], [-1297, -954], [-1297, -951], [-1293, -947], [-1293, -946], [-1300, -942], [-1299, -941], [-1291, -946], [-1291, -947], [-1287, -951], [-1287, -954], [-1291, -958]], "247-258, T": [[-1293, -958], [-1297, -954], [-1297, -951], [-1294, -948], [-1294, -945], [-1300, -942], [-1300, -941], [-1287, -947], [-1285, -951], [-1281, -955], [-1281, -958], [-1285, -962], [-1287, -962], [-1291, -958]]}, "center": {"183-246": [-1292, -953], "247-258, T": [-1290, -952]}}, {"id": 1550, "name": "lturepublic", "description": "Grand Duchy of Lithuania Art by Twitch Streamer lturepublic", "links": {"website": ["https://www.twitch.tv/lturepublic"], "subreddit": ["ltu_republic"], "discord": ["D6X8nGxV"]}, "path": {"189": [[-141, -26], [-79, -26], [-79, 86], [-142, 86]]}, "center": {"189": [-110, 30]}}, -{"id": 1551, "name": "Shan Naro Amongi", "description": "Smol pink Amongi by Streamer Shan_Naro", "links": {"website": ["https://www.twitch.tv/shan_naro"]}, "path": {"183-258": [[293, -335], [294, -332], [296, -332], [297, -334], [297, -335], [296, -336], [294, -336]]}, "center": {"183-258": [295, -334]}}, -{"id": 1552, "name": "Migros Ice Tea Peach and Lemon", "description": "Ice Tea Peach (Left) and Ice Tea Lemon (Right) are the most iconic Beverages in Switzerland. These Two are buyable on Migros.", "links": {"website": ["https://www.migros.ch/en/brand/ice-tea"]}, "path": {"191-258": [[813, -356], [819, -357], [831, -356], [830, -343], [814, -338]]}, "center": {"191-258": [822, -349]}}, -{"id": 1553, "name": "Flag of Liechtenstein", "description": "Liechtenstein is a microstate between Austria and Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Liechtenstein"]}, "path": {"140-258": [[766, -316], [775, -316], [775, -307], [765, -307], [765, -316]]}, "center": {"140-258": [770, -311]}}, -{"id": 1554, "name": "flag of belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors.", "links": {"subreddit": ["Belgium"], "discord": ["Belgium"]}, "path": {"100-106": [[-811, 102], [-811, 122], [-796, 122], [-796, 102]], "107-258": [[-811, 98], [-812, 150], [-796, 150], [-796, 98]]}, "center": {"100-106": [-803, 112], "107-258": [-804, 130]}}, -{"id": 1555, "name": "r/93palm", "description": "r/93palm is a subreddit for the small twitch streamer: 93palm", "links": {"subreddit": ["93palm"], "discord": ["tr682RXW"]}, "path": {"189-258": [[-345, -244], [-348, -246], [-352, -243], [-361, -237], [-366, -219], [-335, -219], [-341, -243]]}, "center": {"189-258": [-350, -231]}}, -{"id": 1556, "name": "Heidi, Girl of the Alps", "description": "Heidi, Girl of the Alps is an anime television series produced by Zuiyo Eizo and is based on the novel Heidi's Years of Wandering and Learning by Johanna Spyri.", "links": {"website": ["https://en.wikipedia.org/wiki/Heidi,_Girl_of_the_Alps"]}, "path": {"190-258": [[-540, 883], [-538, 886], [-539, 887], [-539, 890], [-541, 893], [-539, 894], [-534, 894], [-536, 897], [-540, 897], [-541, 896], [-542, 897], [-541, 904], [-543, 906], [-542, 908], [-543, 909], [-546, 908], [-546, 906], [-555, 906], [-555, 904], [-554, 903], [-554, 901], [-549, 896], [-550, 895], [-553, 895], [-555, 893], [-554, 892], [-549, 892], [-549, 889], [-547, 886]]}, "center": {"190-258": [-547, 901]}}, -{"id": 1557, "name": "Aldi Süd - Hofer", "description": "Joint project between Austria and Germany.\n\nAldi Süd is a German discount supermarket chain. Aldi bought the Austrian supermarket Hofer in 1967, and Hofer is now a subsidiary of Aldi Süd, but still considered very Austrian.", "links": {"website": ["https://en.wikipedia.org/wiki/Aldi", "https://www.hofer.at/", "https://www.aldi-sued.de/"]}, "path": {"135-258": [[-565, -80], [-542, -80], [-543, -33], [-566, -34]]}, "center": {"135-258": [-554, -56]}}, -{"id": 1558, "name": "Wolfgang Amadeus Mozart (Musician)", "description": "Wolfgang Amadeus Mozart (27 January 1756 – 5 December 1791) was a prolific and influential composer of the Classical period. Despite his short life, his rapid pace of composition resulted in more than 800 works of virtually every genre of his time. Many of these compositions are acknowledged as pinnacles of the symphonic, concertante, chamber, operatic, and choral repertoire. Mozart is widely regarded as among the greatest composers in the history of Western music, with his music admired for its \"melodic beauty, its formal elegance and its richness of harmony and texture\". He was born and raised in Salzburg, Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Wolfgang_Amadeus_Mozart"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"189-258": [[-55, -28], [-52, -33], [-58, -36], [-57, -41], [-54, -46], [-51, -49], [-48, -46], [-45, -47], [-43, -49], [-37, -42], [-35, -39], [-34, -35], [-38, -35], [-41, -33], [-37, -28], [-45, -28]]}, "center": {"189-258": [-47, -38]}}, -{"id": 1559, "name": "Makise Kurisu (Christina)", "description": "The heroine from the anime/VN Steins;Gate", "links": {"website": ["https://steins-gate.fandom.com/wiki/Kurisu_Makise"], "subreddit": ["steinsgate"]}, "path": {"104-258": [[-548, 357], [-548, 366], [-539, 366], [-539, 357]]}, "center": {"104-258": [-543, 362]}}, -{"id": 1560, "name": "Almdudler", "description": "Almdudler is a famous herbal lemonade in Austria, but today it is also sold in other countries.", "links": {"website": ["https://almdudler.com/at/", "https://en.wikipedia.org/wiki/Almdudler"]}, "path": {"65-258": [[720, -289], [722, -291], [722, -315], [719, -321], [719, -326], [720, -327], [720, -330], [715, -330], [714, -326], [715, -326], [715, -320], [712, -317], [711, -314], [711, -294], [714, -289], [717, -291], [719, -290]]}, "center": {"65-258": [717, -309]}}, -{"id": 1561, "name": "Howard Lotor", "description": "Howard Lotor is a racoon private\ninvestigator and a main character\nof the \"Backbone\", a post-noir\nnarrative adventure game set in\ndystopian Vancouver inhabited by\nanimals.", "links": {"website": ["https://store.steampowered.com/app/865610/Backbone/", "https://eggnut.net/"], "subreddit": ["backbone_game"], "discord": ["backbone"]}, "path": {"183-258": [[998, 403], [995, 403], [995, 404], [994, 404], [994, 405], [990, 405], [990, 404], [985, 404], [985, 405], [984, 405], [984, 408], [983, 408], [983, 417], [984, 417], [984, 418], [985, 418], [985, 420], [992, 420], [992, 419], [993, 419], [993, 418], [997, 418], [997, 417], [998, 417], [998, 416], [999, 416], [999, 403]]}, "center": {"183-258": [990, 412]}}, +{"id": 1551, "name": "Shan Naro Amongi", "description": "Smol pink Amongi by Streamer Shan_Naro", "links": {"website": ["https://www.twitch.tv/shan_naro"]}, "path": {"183-258, T": [[293, -335], [294, -332], [296, -332], [297, -334], [297, -335], [296, -336], [294, -336]]}, "center": {"183-258, T": [295, -334]}}, +{"id": 1552, "name": "Migros Ice Tea Peach and Lemon", "description": "Ice Tea Peach (Left) and Ice Tea Lemon (Right) are the most iconic Beverages in Switzerland. These Two are buyable on Migros.", "links": {"website": ["https://www.migros.ch/en/brand/ice-tea"]}, "path": {"191-258, T": [[813, -356], [819, -357], [831, -356], [830, -343], [814, -338]]}, "center": {"191-258, T": [822, -349]}}, +{"id": 1553, "name": "Flag of Liechtenstein", "description": "Liechtenstein is a microstate between Austria and Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Liechtenstein"]}, "path": {"140-258, T": [[766, -316], [775, -316], [775, -307], [765, -307], [765, -316]]}, "center": {"140-258, T": [770, -311]}}, +{"id": 1554, "name": "flag of belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors.", "links": {"subreddit": ["Belgium"], "discord": ["Belgium"]}, "path": {"100-106": [[-811, 102], [-811, 122], [-796, 122], [-796, 102]], "107-258, T": [[-811, 98], [-812, 150], [-796, 150], [-796, 98]]}, "center": {"100-106": [-803, 112], "107-258, T": [-804, 130]}}, +{"id": 1555, "name": "r/93palm", "description": "r/93palm is a subreddit for the small twitch streamer: 93palm", "links": {"subreddit": ["93palm"], "discord": ["tr682RXW"]}, "path": {"189-258, T": [[-345, -244], [-348, -246], [-352, -243], [-361, -237], [-366, -219], [-335, -219], [-341, -243]]}, "center": {"189-258, T": [-350, -231]}}, +{"id": 1556, "name": "Heidi, Girl of the Alps", "description": "Heidi, Girl of the Alps is an anime television series produced by Zuiyo Eizo and is based on the novel Heidi's Years of Wandering and Learning by Johanna Spyri.", "links": {"website": ["https://en.wikipedia.org/wiki/Heidi,_Girl_of_the_Alps"]}, "path": {"190-258, T": [[-540, 883], [-538, 886], [-539, 887], [-539, 890], [-541, 893], [-539, 894], [-534, 894], [-536, 897], [-540, 897], [-541, 896], [-542, 897], [-541, 904], [-543, 906], [-542, 908], [-543, 909], [-546, 908], [-546, 906], [-555, 906], [-555, 904], [-554, 903], [-554, 901], [-549, 896], [-550, 895], [-553, 895], [-555, 893], [-554, 892], [-549, 892], [-549, 889], [-547, 886]]}, "center": {"190-258, T": [-547, 901]}}, +{"id": 1557, "name": "Aldi Süd - Hofer", "description": "Joint project between Austria and Germany.\n\nAldi Süd is a German discount supermarket chain. Aldi bought the Austrian supermarket Hofer in 1967, and Hofer is now a subsidiary of Aldi Süd, but still considered very Austrian.", "links": {"website": ["https://en.wikipedia.org/wiki/Aldi", "https://www.hofer.at/", "https://www.aldi-sued.de/"]}, "path": {"135-258, T": [[-565, -80], [-542, -80], [-543, -33], [-566, -34]]}, "center": {"135-258, T": [-554, -56]}}, +{"id": 1558, "name": "Wolfgang Amadeus Mozart (Musician)", "description": "Wolfgang Amadeus Mozart (27 January 1756 – 5 December 1791) was a prolific and influential composer of the Classical period. Despite his short life, his rapid pace of composition resulted in more than 800 works of virtually every genre of his time. Many of these compositions are acknowledged as pinnacles of the symphonic, concertante, chamber, operatic, and choral repertoire. Mozart is widely regarded as among the greatest composers in the history of Western music, with his music admired for its \"melodic beauty, its formal elegance and its richness of harmony and texture\". He was born and raised in Salzburg, Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Wolfgang_Amadeus_Mozart"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"189-258, T": [[-55, -28], [-52, -33], [-58, -36], [-57, -41], [-54, -46], [-51, -49], [-48, -46], [-45, -47], [-43, -49], [-37, -42], [-35, -39], [-34, -35], [-38, -35], [-41, -33], [-37, -28], [-45, -28]]}, "center": {"189-258, T": [-47, -38]}}, +{"id": 1559, "name": "Makise Kurisu (Christina)", "description": "The heroine from the anime/VN Steins;Gate", "links": {"website": ["https://steins-gate.fandom.com/wiki/Kurisu_Makise"], "subreddit": ["steinsgate"]}, "path": {"104-258, T": [[-548, 357], [-548, 366], [-539, 366], [-539, 357]]}, "center": {"104-258, T": [-543, 362]}}, +{"id": 1560, "name": "Almdudler", "description": "Almdudler is a famous herbal lemonade in Austria, but today it is also sold in other countries.", "links": {"website": ["https://almdudler.com/at/", "https://en.wikipedia.org/wiki/Almdudler"]}, "path": {"65-258, T": [[720, -289], [722, -291], [722, -315], [719, -321], [719, -326], [720, -327], [720, -330], [715, -330], [714, -326], [715, -326], [715, -320], [712, -317], [711, -314], [711, -294], [714, -289], [717, -291], [719, -290]]}, "center": {"65-258, T": [717, -309]}}, +{"id": 1561, "name": "Howard Lotor", "description": "Howard Lotor is a racoon private\ninvestigator and a main character\nof the \"Backbone\", a post-noir\nnarrative adventure game set in\ndystopian Vancouver inhabited by\nanimals.", "links": {"website": ["https://store.steampowered.com/app/865610/Backbone/", "https://eggnut.net/"], "subreddit": ["backbone_game"], "discord": ["backbone"]}, "path": {"183-258, T": [[998, 403], [995, 403], [995, 404], [994, 404], [994, 405], [990, 405], [990, 404], [985, 404], [985, 405], [984, 405], [984, 408], [983, 408], [983, 417], [984, 417], [984, 418], [985, 418], [985, 420], [992, 420], [992, 419], [993, 419], [993, 418], [997, 418], [997, 417], [998, 417], [998, 416], [999, 416], [999, 403]]}, "center": {"183-258, T": [990, 412]}}, {"id": 1562, "name": "Karlsruher U-Strab", "description": "The main public transport system within the city of Karlsruhe.", "links": {"website": ["https://www.kvv.de/", "https://de.wikipedia.org/wiki/Verkehrsbetriebe_Karlsruhe"], "subreddit": ["KaIT"]}, "path": {"159-249": [[-585, -368], [-558, -368], [-558, -343], [-585, -343]]}, "center": {"159-249": [-571, -355]}}, -{"id": 1563, "name": "Coat of arms of South Tyrol", "description": "South Tyrol is a province in Italy where a German-speaking former Austrian majority lives. \n\nHaving become Italian after World War I against the will of the local population, South Tyrol is sometimes ironically still considered an Austrian region.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Tyrol"], "subreddit": ["bolzano"]}, "path": {"54-76, 92-159": [[5, -57], [13, -57], [13, -51], [10, -47], [8, -47], [5, -50]], "176-258": [[5, -57], [13, -57], [13, -50], [10, -47], [8, -47], [5, -50]]}, "center": {"54-76, 92-159": [9, -53], "176-258": [9, -53]}}, -{"id": 1564, "name": "GermanLattice", "description": "Collaboration of r/PlaceDE with r/GreenLattice to provide space for smaller communities.", "links": {"subreddit": ["PlaceDE", "GreenLattice"]}, "path": {"177-258": [[472, -912], [306, -912], [306, -997], [306, -1000], [470, -1000]]}, "center": {"177-258": [389, -956]}}, -{"id": 1565, "name": "Alpine Mountains", "description": "A mountain range between the Austrian and Swiss flags, created as a community project together.\n\nAustria and Switzerland are considered to be typical alpine countries, as their main area is covered by the Alps.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Austria"]}, "path": {"107-258": [[764, -288], [765, -295], [781, -314], [784, -314], [785, -310], [795, -322], [812, -306], [816, -312], [836, -289]]}, "center": {"107-258": [796, -302]}}, -{"id": 1566, "name": "Juke's Towers of Hell", "description": "Juke's Towers of Hell (JToH) is a tower based platformer game on Roblox. On the left is Tower of Hecc (ToH) and on the right is Tower of Impossible Expectations (ToIE).", "links": {"website": ["https://www.roblox.com/games/8562822414/Jukes-Towers-of-Hell"], "subreddit": ["JToH", "JToH2", "Jukestowersofhell"]}, "path": {"183-258": [[-478, 170], [-472, 170], [-472, 149], [-478, 149]]}, "center": {"183-258": [-475, 160]}}, -{"id": 1567, "name": "East German Traffic Lights", "description": "The typical traffic light from former GDR picturing a man with a hat.", "links": {"website": ["https://www.ampelmann.de/"]}, "path": {"153-258": [[-453, -986], [-452, -995], [-444, -1000], [-421, -1000], [-414, -996], [-412, -990], [-412, -927], [-415, -920], [-421, -915], [-441, -915], [-449, -918], [-452, -926]]}, "center": {"153-258": [-432, -959]}}, -{"id": 1568, "name": "O Anfitrião", "description": "O Anfitrião (The Host) is a creature from Ordem Paranormal, the Brazilian RPG series by Cellbit. he is related to the element of Energy (the purple one above) and is a wielder of the Relic of Energy, which means he is like a god of that element and can only be defeated by Knowledge, the element that suppress the Energy.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/O_Anfitrião?so=search"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"183-258": [[264, 499], [380, 499], [380, 597], [264, 597], [264, 546], [264, 532]]}, "center": {"183-258": [322, 548]}}, -{"id": 1569, "name": "Naruto by HollaDieWaldfee", "description": "Made by HollaDieWaldfee in her Twitch Stream", "links": {"website": ["https://www.twitch.tv/holladiewaldfee"]}, "path": {"181-258": [[-1290, 789], [-1281, 803], [-1279, 805], [-1275, 804], [-1274, 799], [-1269, 795], [-1266, 788], [-1266, 784], [-1272, 777], [-1278, 775], [-1281, 775], [-1287, 780], [-1290, 787]]}, "center": {"181-258": [-1278, 787]}}, -{"id": 1570, "name": "r/osuplace & r/touhou", "description": "The \"Bad Apple!!\" music video above was animated in collaboration between osu! Logo Builders discord server and Touhou r/place discord server.", "links": {"website": ["https://osu.place"], "subreddit": ["osuplace", "touhou"], "discord": ["osuplace", "apl"]}, "path": {"14-258": [[147, 215], [192, 215], [192, 218], [191, 218], [191, 222], [190, 222], [190, 230], [147, 230]]}, "center": {"14-258": [170, 223]}}, -{"id": 1571, "name": "Donda 2 Burning House", "description": "This imagery surrounds the scrapped album, Donda 2 by artist Ye, formerly Kanye West. The burning house is a symbol of burning the past and confrontation the future as Ye puts it, \"jumping back into the burning house\"", "links": {"subreddit": ["GoodAssSub", "ThroughTheWire"]}, "path": {"185-258": [[677, 572], [677, 575], [681, 575], [681, 580], [687, 580], [687, 575], [692, 575], [692, 567], [688, 567], [688, 563], [684, 563], [684, 559], [673, 559], [673, 571], [677, 571], [677, 575]]}, "center": {"185-258": [683, 569]}}, +{"id": 1563, "name": "Coat of arms of South Tyrol", "description": "South Tyrol is a province in Italy where a German-speaking former Austrian majority lives. \n\nHaving become Italian after World War I against the will of the local population, South Tyrol is sometimes ironically still considered an Austrian region.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Tyrol"], "subreddit": ["bolzano"]}, "path": {"54-76, 92-159": [[5, -57], [13, -57], [13, -51], [10, -47], [8, -47], [5, -50]], "176-258, T": [[5, -57], [13, -57], [13, -50], [10, -47], [8, -47], [5, -50]]}, "center": {"54-76, 92-159": [9, -53], "176-258, T": [9, -53]}}, +{"id": 1564, "name": "GermanLattice", "description": "Collaboration of r/PlaceDE with r/GreenLattice to provide space for smaller communities.", "links": {"subreddit": ["PlaceDE", "GreenLattice"]}, "path": {"177-258, T": [[472, -912], [306, -912], [306, -997], [306, -1000], [470, -1000]]}, "center": {"177-258, T": [389, -956]}}, +{"id": 1565, "name": "Alpine Mountains", "description": "A mountain range between the Austrian and Swiss flags, created as a community project together.\n\nAustria and Switzerland are considered to be typical alpine countries, as their main area is covered by the Alps.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Austria"]}, "path": {"107-258, T": [[764, -288], [765, -295], [781, -314], [784, -314], [785, -310], [795, -322], [812, -306], [816, -312], [836, -289]]}, "center": {"107-258, T": [796, -302]}}, +{"id": 1566, "name": "Juke's Towers of Hell", "description": "Juke's Towers of Hell (JToH) is a tower based platformer game on Roblox. On the left is Tower of Hecc (ToH) and on the right is Tower of Impossible Expectations (ToIE).", "links": {"website": ["https://www.roblox.com/games/8562822414/Jukes-Towers-of-Hell"], "subreddit": ["JToH", "JToH2", "Jukestowersofhell"]}, "path": {"183-258, T": [[-478, 170], [-472, 170], [-472, 149], [-478, 149]]}, "center": {"183-258, T": [-475, 160]}}, +{"id": 1567, "name": "East German Traffic Lights", "description": "The typical traffic light from former GDR picturing a man with a hat.", "links": {"website": ["https://www.ampelmann.de/"]}, "path": {"153-258, T": [[-453, -986], [-452, -995], [-444, -1000], [-421, -1000], [-414, -996], [-412, -990], [-412, -927], [-415, -920], [-421, -915], [-441, -915], [-449, -918], [-452, -926]]}, "center": {"153-258, T": [-432, -959]}}, +{"id": 1568, "name": "O Anfitrião", "description": "O Anfitrião (The Host) is a creature from Ordem Paranormal, the Brazilian RPG series by Cellbit. he is related to the element of Energy (the purple one above) and is a wielder of the Relic of Energy, which means he is like a god of that element and can only be defeated by Knowledge, the element that suppress the Energy.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/O_Anfitrião?so=search"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"183-258, T": [[264, 499], [380, 499], [380, 597], [264, 597], [264, 546], [264, 532]]}, "center": {"183-258, T": [322, 548]}}, +{"id": 1569, "name": "Naruto by HollaDieWaldfee", "description": "Made by HollaDieWaldfee in her Twitch Stream", "links": {"website": ["https://www.twitch.tv/holladiewaldfee"]}, "path": {"181-258, T": [[-1290, 789], [-1281, 803], [-1279, 805], [-1275, 804], [-1274, 799], [-1269, 795], [-1266, 788], [-1266, 784], [-1272, 777], [-1278, 775], [-1281, 775], [-1287, 780], [-1290, 787]]}, "center": {"181-258, T": [-1278, 787]}}, +{"id": 1570, "name": "r/osuplace & r/touhou", "description": "The \"Bad Apple!!\" music video above was animated in collaboration between osu! Logo Builders discord server and Touhou r/place discord server.", "links": {"website": ["https://osu.place"], "subreddit": ["osuplace", "touhou"], "discord": ["osuplace", "apl"]}, "path": {"14-258, T": [[147, 215], [192, 215], [192, 218], [191, 218], [191, 222], [190, 222], [190, 230], [147, 230]]}, "center": {"14-258, T": [170, 223]}}, +{"id": 1571, "name": "Donda 2 Burning House", "description": "This imagery surrounds the scrapped album, Donda 2 by artist Ye, formerly Kanye West. The burning house is a symbol of burning the past and confrontation the future as Ye puts it, \"jumping back into the burning house\"", "links": {"subreddit": ["GoodAssSub", "ThroughTheWire"]}, "path": {"185-258, T": [[677, 572], [677, 575], [681, 575], [681, 580], [687, 580], [687, 575], [692, 575], [692, 567], [688, 567], [688, 563], [684, 563], [684, 559], [673, 559], [673, 571], [677, 571], [677, 575]]}, "center": {"185-258, T": [683, 569]}}, {"id": 1572, "name": "1000 Swiss Franc bill", "description": "The 1000-franc note focuses on Switzerland's communicative flair – expressed by language, the note's key motif.", "links": {"website": ["https://www.snb.ch/en/iabout/cash/series9/design_series9/id/cash_series9_design_1000"]}, "path": {"167": [[-553, 910], [-535, 910], [-535, 955], [-553, 955]]}, "center": {"167": [-544, 933]}}, -{"id": 1573, "name": "Billy Herrington", "description": "William Glen Harold \"Billy\" Herrington, was an American model and pornographic film actor. In the late 2000s, his appearances in various gay pornography movies led him to become a popular Internet meme on video-sharing websites such as Japan's Nico Nico Douga, where he was referred to by the sobriquet \"Aniki\". He passed away in 2018.\n\nThe project was made possible by the people in discord.gg/uganda who are part of the Twitch streamer \"Forsen\" community, and who view Billy with much regard and love.", "links": {"website": ["https://www.imdb.com/name/nm0380685/", "https://knowyourmeme.com/memes/people/billy-herrington-gachimuchi"], "subreddit": ["forsen"], "discord": ["uganda"]}, "path": {"187-258": [[-231, 567], [-230, 567], [-195, 567], [-195, 626], [-231, 626]]}, "center": {"187-258": [-213, 597]}}, -{"id": 1574, "name": "The Binding of Isaac", "description": "\"The Binding of Isaac\" is a dark and challenging rogue-like video game where players control a young boy named Isaac, who must navigate through dangerous dungeons filled with monsters to escape his mother's religious sacrifice. Each playthrough is unique, with random levels, items, and enemies, offering high replayability.", "links": {}, "path": {"189-258": [[502, 88], [541, 89], [540, 32], [501, 32]]}, "center": {"189-258": [521, 61]}}, -{"id": 1575, "name": "Hornet", "description": "Hornet is a character and boss in the indie game Hollow Knight as well as the playable character in her upcoming game Silksong.", "links": {}, "path": {"191-258": [[-251, 288], [-240, 267], [-234, 269], [-238, 289]]}, "center": {"191-258": [-242, 283]}}, +{"id": 1573, "name": "Billy Herrington", "description": "William Glen Harold \"Billy\" Herrington, was an American model and pornographic film actor. In the late 2000s, his appearances in various gay pornography movies led him to become a popular Internet meme on video-sharing websites such as Japan's Nico Nico Douga, where he was referred to by the sobriquet \"Aniki\". He passed away in 2018.\n\nThe project was made possible by the people in discord.gg/uganda who are part of the Twitch streamer \"Forsen\" community, and who view Billy with much regard and love.", "links": {"website": ["https://www.imdb.com/name/nm0380685/", "https://knowyourmeme.com/memes/people/billy-herrington-gachimuchi"], "subreddit": ["forsen"], "discord": ["uganda"]}, "path": {"187-258, T": [[-231, 567], [-230, 567], [-195, 567], [-195, 626], [-231, 626]]}, "center": {"187-258, T": [-213, 597]}}, +{"id": 1574, "name": "The Binding of Isaac", "description": "\"The Binding of Isaac\" is a dark and challenging rogue-like video game where players control a young boy named Isaac, who must navigate through dangerous dungeons filled with monsters to escape his mother's religious sacrifice. Each playthrough is unique, with random levels, items, and enemies, offering high replayability.", "links": {}, "path": {"189-258, T": [[502, 88], [541, 89], [540, 32], [501, 32]]}, "center": {"189-258, T": [521, 61]}}, +{"id": 1575, "name": "Hornet", "description": "Hornet is a character and boss in the indie game Hollow Knight as well as the playable character in her upcoming game Silksong.", "links": {}, "path": {"191-258, T": [[-251, 288], [-240, 267], [-234, 269], [-238, 289]]}, "center": {"191-258, T": [-242, 283]}}, {"id": 1576, "name": "Lionel Messi", "description": "Lionel Andrés Messi, also known as Leo Messi, is an Argentine professional footballer who plays as a forward for and captains both Major League Soccer club Inter Miami and the Argentina national team.\n\nMessi holds the records for most goals in La Liga (474), most hat-tricks in La Liga (36) and the UEFA Champions League (eight), and most assists in La Liga (192) and the Copa América (17). He also has the most international goals by a South American male (103).", "links": {"website": ["https://en.wikipedia.org/wiki/Lionel_Messi"]}, "path": {"177-186": [[631, -677], [674, -709], [682, -709], [685, -714], [684, -733], [676, -735], [673, -767], [681, -785], [699, -794], [718, -795], [726, -785], [729, -771], [731, -754], [732, -738], [729, -725], [726, -722], [726, -711], [764, -690], [767, -688], [767, -685], [768, -683], [770, -680], [772, -679], [770, -677], [632, -676]]}, "center": {"177-186": [702, -756]}}, -{"id": 1577, "name": "Sideways H and Geometry Dash icon", "description": "A sideways H representing the creator of this pixel art u/henryharrz and a cube icon used in the video game Geometry Dash", "links": {"subreddit": ["geometrydash"]}, "path": {"181-258": [[677, -659], [681, -659], [681, -667], [677, -667]]}, "center": {"181-258": [679, -663]}}, -{"id": 1578, "name": "Emilia", "description": "Emilia is a character from \"Re:ZERO –Starting Life in Another World–\"\n\nOriginally created by Tappei Nagatsuki as a Web Novel, Tappei Nagatsuki would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime.\n\nThis Pixel Art of Emilia has been adapted by denise from the first Ending sequence of \"Isekai Quartet\" and finalized by !tsabrody on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the Re_Zero subreddit.", "links": {"subreddit": ["Re_Zero", "Isekai_Coalition"]}, "path": {"177-258": [[467, -983], [467, -963], [474, -955], [486, -956], [485, -982]]}, "center": {"177-258": [476, -970]}}, -{"id": 1579, "name": "Bundeswehr Logo", "description": "The Bundeswehr logo was placed on the southern flag in honor of the German Bundeswehr.", "links": {"website": ["https://www.bundeswehr.de/de/"], "subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"154-258": [[-790, -81], [-805, -81], [-803, -76], [-803, -75], [-807, -75], [-808, -77], [-809, -77], [-809, -62], [-807, -62], [-806, -64], [-803, -64], [-803, -61], [-804, -61], [-805, -58], [-800, -58], [-799, -60], [-798, -58], [-790, -58], [-790, -60], [-792, -60], [-792, -64], [-787, -64], [-787, -63], [-786, -63], [-786, -77], [-787, -77], [-787, -76], [-789, -76], [-789, -75], [-792, -75], [-792, -77], [-792, -78], [-791, -78], [-791, -79], [-791, -80], [-790, -80]]}, "center": {"154-258": [-797, -69]}}, +{"id": 1577, "name": "Sideways H and Geometry Dash icon", "description": "A sideways H representing the creator of this pixel art u/henryharrz and a cube icon used in the video game Geometry Dash", "links": {"subreddit": ["geometrydash"]}, "path": {"181-258, T": [[677, -659], [681, -659], [681, -667], [677, -667]]}, "center": {"181-258, T": [679, -663]}}, +{"id": 1578, "name": "Emilia", "description": "Emilia is a character from \"Re:ZERO –Starting Life in Another World–\"\n\nOriginally created by Tappei Nagatsuki as a Web Novel, Tappei Nagatsuki would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime.\n\nThis Pixel Art of Emilia has been adapted by denise from the first Ending sequence of \"Isekai Quartet\" and finalized by !tsabrody on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the Re_Zero subreddit.", "links": {"subreddit": ["Re_Zero", "Isekai_Coalition"]}, "path": {"177-258, T": [[467, -983], [467, -963], [474, -955], [486, -956], [485, -982]]}, "center": {"177-258, T": [476, -970]}}, +{"id": 1579, "name": "Bundeswehr Logo", "description": "The Bundeswehr logo was placed on the southern flag in honor of the German Bundeswehr.", "links": {"website": ["https://www.bundeswehr.de/de/"], "subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"154-258, T": [[-790, -81], [-805, -81], [-803, -76], [-803, -75], [-807, -75], [-808, -77], [-809, -77], [-809, -62], [-807, -62], [-806, -64], [-803, -64], [-803, -61], [-804, -61], [-805, -58], [-800, -58], [-799, -60], [-798, -58], [-790, -58], [-790, -60], [-792, -60], [-792, -64], [-787, -64], [-787, -63], [-786, -63], [-786, -77], [-787, -77], [-787, -76], [-789, -76], [-789, -75], [-792, -75], [-792, -77], [-792, -78], [-791, -78], [-791, -79], [-791, -80], [-790, -80]]}, "center": {"154-258, T": [-797, -69]}}, {"id": 1580, "name": "11+", "description": "A logo of the Russian web-series \"11+\" by Инжиркин (aka Figman), depicting the logo itself and the character Pizdoproyobina.", "links": {"website": ["https://www.youtube.com/watch?v=WhhAnwSI3fs&list=PLmyPVh6vdkeCGK4Yz8QCSNjtbwln3Bfsn"], "subreddit": ["11plus_ru"], "discord": ["JFkqZcyJb4"]}, "path": {"187-205": [[-1079, -760], [-1059, -760], [-1059, -762], [-1057, -762], [-1057, -772], [-1056, -772], [-1056, -774], [-1057, -774], [-1057, -776], [-1056, -776], [-1056, -777], [-1055, -777], [-1055, -778], [-1054, -778], [-1054, -780], [-1054, -781], [-1055, -781], [-1055, -782], [-1060, -782], [-1060, -783], [-1061, -783], [-1061, -784], [-1064, -784], [-1064, -783], [-1072, -783], [-1072, -782], [-1073, -782], [-1073, -781], [-1074, -781], [-1074, -780], [-1075, -780], [-1075, -779], [-1076, -779], [-1076, -778], [-1077, -778], [-1077, -777], [-1078, -777], [-1078, -773], [-1079, -773], [-1079, -772], [-1080, -772], [-1080, -771], [-1081, -771], [-1081, -770], [-1082, -770], [-1082, -765], [-1079, -765]], "252-258": [[49, -777], [49, -776], [41, -776], [41, -775], [40, -775], [40, -774], [39, -774], [39, -773], [38, -773], [38, -772], [37, -772], [37, -771], [36, -771], [36, -770], [35, -770], [35, -766], [34, -766], [34, -765], [33, -765], [33, -764], [32, -764], [32, -763], [31, -763], [31, -758], [34, -758], [34, -753], [54, -753], [54, -755], [56, -755], [56, -765], [57, -765], [57, -767], [56, -767], [56, -769], [57, -769], [57, -770], [58, -770], [58, -771], [59, -771], [59, -774], [58, -774], [58, -775], [53, -775], [53, -776], [52, -776], [52, -777]]}, "center": {"187-205": [-1068, -771], "252-258": [45, -764]}}, -{"id": 1582, "name": "Nanachi", "description": "Nanachi is a character from the manga Made in Abyss created by Akihito Tsukushi", "links": {"subreddit": ["madeinabyss"]}, "path": {"158-258": [[-219, 547], [-219, 546], [-221, 543], [-221, 537], [-220, 533], [-219, 532], [-219, 530], [-216, 529], [-215, 532], [-210, 532], [-209, 529], [-206, 529], [-206, 533], [-205, 536], [-204, 537], [-204, 544], [-205, 545], [-205, 547]]}, "center": {"158-258": [-212, 539]}}, -{"id": 1583, "name": "Oasis - Logo of 1990s Britpop band", "description": "Oasis were a British rock band originating in the 1990s. Lead by brothers Liam and Noel Gallagher, the band established themselves as one of the most popular, controversial, and legendary bands of their time. They topped the music charts with songs such as Live Forever, Supersonic, Wonderwall, Champagne Supernova, and Don't Look Back in Anger. In 1996 the band played Knebworth park to a total of 250k people, although 2.5 million applied for tickets. Their 1997 song 'All Around the World' is the longest song to ever chart on the UK charts. Their successes continued into the new millennium. The Dig Out Your Soul World Tour began on August 26th, 2008, in promotion of the album. Following an on-stage attack at the Virgin Festival in Toronto, Canada, the tour went from ambitious to arduous. The Gallagher brothers were notoriously at conflict with each other, one of music's most famous feuds. It was during this tour however that their relationship collapsed. The two travelled in separate tour buses and communicated through third parties. Their rift visible to the audiences they played to. August 23rd, 2009, Oasis were scheduled to headline Rock En Seine Festival in Paris. An argument erupts backstage regarding a segment in the band's tour pamphlet. The argument soon turns violent as Liam Gallagher smashes Noel's most valued guitar, a 1960 Gibson 355. Minutes before their scheduled entrance onto the stage, Noel Gallagher left the venue by car, and Oasis were no longer. Noel later issued this statement \"It's with some sadness and great relief to tell you that I quit Oasis tonight. People will write and say what they like, but I simply could not go on working with Liam a day longer.\" During their 18 year run, the band released 7 studio albums, 28 singles. Over a decade after their breakup, the brothers continue their careers successfully as solo artists respectively. Despite near constant rumors, an Oasis reunion is yet to have happened and Liam and Noel have remained off speaking terms. With fans across the world, they are one of England's most successful and beloved musical exports.", "links": {"website": ["https://oasisinet.com"], "subreddit": ["oasis"], "discord": ["wonderwall"]}, "path": {"171-258": [[-1142, -80], [-1142, -67], [-1113, -67], [-1113, -80], [-1142, -80], [-1142, -67], [-1113, -67]]}, "center": {"171-258": [-1118, -75]}}, -{"id": 1584, "name": "Cellbit's C", "description": "C is Cellbit's logo, with a B (the golden thing) in the middle, making reference of Bit, in Cellbit.\nThere are other versions of this C, including a simple one (the Cellbit's profile picture in Twitch) or more complex ones (the Cellbit's sub badges in Twitch).", "links": {"website": ["https://www.twitch.tv/cellbit"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"177-258": [[304, 379], [304, 370], [305, 370], [305, 368], [306, 368], [306, 367], [308, 367], [308, 366], [321, 366], [321, 367], [322, 367], [322, 368], [324, 368], [324, 370], [325, 370], [325, 402], [323, 402], [323, 404], [321, 404], [321, 405], [308, 405], [308, 404], [306, 404], [306, 403], [305, 403], [305, 402], [304, 402]]}, "center": {"177-258": [315, 386]}}, -{"id": 1585, "name": "The 1000-Franc Note", "description": "The 1000-Franc Note that is used in Switzerland and Liechtenstein.", "links": {}, "path": {"191-258": [[-554, 910], [-553, 956], [-536, 955], [-536, 953], [-535, 952], [-535, 911]]}, "center": {"191-258": [-544, 933]}}, -{"id": 1586, "name": "Pöttyös", "description": "Pöttyös Túró Rudi is the name of a curd snack that has been enjoyed by the Hungary since 1968. The bar is composed of a thin chocolate-flavored outer coating and an inner filling of túró (curd). The \"Rudi\" in the product name comes from the Hungarian \"rúd\", which translates to rod or bar (and is also a nickname for the name \"Rudolf\"). Túró Rudi can be found in several different flavours and sizes.", "links": {"website": ["https://en.wikipedia.org/wiki/T%C3%BAr%C3%B3_Rudi"]}, "path": {"189-258": [[-752, -18], [-707, -17], [-707, -7], [-752, -7]]}, "center": {"189-258": [-746, -12]}}, -{"id": 1587, "name": "r/93palm", "description": "a subreddit for the small twitch streamer: 93palm", "links": {"subreddit": ["93palm"], "discord": ["tr682RXW"]}, "path": {"185-258": [[-349, -244], [-361, -244], [-361, -235], [-366, -219], [-335, -220], [-341, -245], [-349, -246]]}, "center": {"185-258": [-350, -231]}}, -{"id": 1588, "name": "RevedTV", "description": "Most followed german female Twitch Streamer.", "links": {"website": ["https://reved.tv", "https://twitch.tv/revedtv"], "subreddit": ["reved"], "discord": ["Reved"]}, "path": {"187-258": [[44, 573], [16, 573], [16, 586], [44, 586]]}, "center": {"187-258": [30, 580]}}, -{"id": 1589, "name": "Boy Kisser", "description": "Built by the r/Furry_irl alliance, this is a rendition of the Boykisser Meme by Mauzymice. The French text translated reads: \"You like r/furry_irl don't you?\"\n\nThe Orange and Purple flower stems from the Pikmin group within the alliance, with the Orange flower resembling the Reddit Snoo.\n\nOne of the more remarkable moments of this artwork was when a streamer attempted to destroy it, resulting in an intense battle over the artwork, but ultimately failing in his attempt.", "links": {"website": ["https://furry-irl.com/"], "subreddit": ["furry_irl"], "discord": ["aVamu4q8MH"]}, "path": {"197-258": [[-1101, 231], [-1101, 228], [-1100, 228], [-1100, 227], [-1099, 227], [-1099, 226], [-1099, 217], [-1100, 217], [-1101, 217], [-1101, 216], [-1104, 216], [-1104, 215], [-1105, 215], [-1105, 214], [-1107, 214], [-1107, 213], [-1113, 213], [-1113, 212], [-1114, 212], [-1114, 210], [-1113, 210], [-1113, 209], [-1112, 209], [-1112, 208], [-1112, 207], [-1113, 207], [-1113, 206], [-1114, 206], [-1114, 205], [-1115, 205], [-1115, 204], [-1116, 204], [-1116, 203], [-1117, 203], [-1117, 202], [-1116, 202], [-1116, 201], [-1114, 201], [-1114, 202], [-1113, 202], [-1112, 202], [-1112, 200], [-1112, 199], [-1113, 199], [-1113, 197], [-1114, 197], [-1114, 195], [-1114, 194], [-1115, 194], [-1115, 184], [-1114, 184], [-1114, 180], [-1113, 180], [-1113, 178], [-1112, 178], [-1112, 177], [-1112, 176], [-1115, 176], [-1115, 170], [-1117, 170], [-1117, 169], [-1143, 169], [-1144, 163], [-1050, 163], [-1050, 167], [-1051, 167], [-1051, 168], [-1052, 168], [-1053, 168], [-1053, 169], [-1061, 169], [-1061, 170], [-1067, 170], [-1067, 175], [-1067, 193], [-1068, 193], [-1068, 196], [-1069, 196], [-1069, 198], [-1070, 199], [-1071, 199], [-1071, 200], [-1071, 201], [-1066, 201], [-1066, 202], [-1067, 202], [-1067, 203], [-1068, 203], [-1068, 204], [-1069, 204], [-1069, 205], [-1070, 205], [-1070, 207], [-1071, 207], [-1071, 209], [-1069, 209], [-1069, 210], [-1068, 210], [-1068, 213], [-1069, 213], [-1069, 214], [-1074, 214], [-1074, 213], [-1076, 213], [-1077, 213], [-1077, 214], [-1079, 214], [-1079, 215], [-1081, 215], [-1081, 220], [-1080, 220], [-1080, 222], [-1081, 222], [-1081, 223], [-1082, 223], [-1082, 226], [-1081, 226], [-1081, 229], [-1081, 231]], "188-196": [[-1127, 169], [-1127, 163], [-1053, 163], [-1053, 169], [-1066, 169], [-1066, 171], [-1067, 172], [-1067, 177], [-1068, 178], [-1068, 183], [-1067, 184], [-1067, 193], [-1068, 193], [-1068, 196], [-1069, 197], [-1069, 199], [-1071, 201], [-1066, 201], [-1066, 202], [-1067, 203], [-1070, 206], [-1070, 207], [-1071, 208], [-1070, 209], [-1068, 211], [-1068, 213], [-1070, 215], [-1071, 214], [-1074, 214], [-1075, 213], [-1076, 213], [-1077, 214], [-1078, 215], [-1081, 215], [-1082, 216], [-1082, 217], [-1081, 218], [-1081, 219], [-1080, 220], [-1080, 223], [-1081, 224], [-1081, 231], [-1101, 231], [-1101, 222], [-1099, 220], [-1099, 219], [-1098, 217], [-1101, 217], [-1102, 216], [-1104, 216], [-1108, 213], [-1115, 213], [-1115, 212], [-1114, 211], [-1114, 210], [-1113, 210], [-1112, 209], [-1112, 208], [-1117, 203], [-1117, 201], [-1112, 201], [-1112, 200], [-1114, 197], [-1114, 194], [-1115, 194], [-1115, 186], [-1114, 185], [-1114, 180], [-1113, 179], [-1113, 177], [-1112, 176], [-1109, 176], [-1109, 169]], "174-187": [[-1134, 175], [-1129, 175], [-1127, 177], [-1126, 177], [-1124, 175], [-1123, 175], [-1121, 177], [-1120, 177], [-1120, 175], [-1114, 175], [-1111, 178], [-1111, 179], [-1110, 180], [-1109, 180], [-1107, 182], [-1106, 182], [-1104, 184], [-1103, 183], [-1103, 181], [-1097, 175], [-1097, 174], [-1096, 173], [-1094, 173], [-1093, 172], [-1092, 171], [-1091, 172], [-1090, 172], [-1090, 170], [-1089, 170], [-1087, 172], [-1087, 192], [-1088, 193], [-1088, 195], [-1089, 196], [-1089, 197], [-1092, 200], [-1087, 200], [-1087, 201], [-1088, 202], [-1090, 204], [-1090, 205], [-1091, 206], [-1091, 207], [-1090, 208], [-1089, 208], [-1087, 210], [-1088, 211], [-1089, 212], [-1091, 212], [-1092, 213], [-1099, 213], [-1100, 214], [-1101, 215], [-1100, 216], [-1100, 222], [-1099, 223], [-1099, 225], [-1098, 226], [-1098, 228], [-1097, 229], [-1097, 230], [-1122, 230], [-1122, 229], [-1121, 228], [-1121, 227], [-1120, 226], [-1120, 222], [-1122, 222], [-1121, 221], [-1122, 220], [-1122, 219], [-1121, 218], [-1120, 218], [-1119, 217], [-1120, 216], [-1121, 215], [-1123, 215], [-1124, 214], [-1126, 214], [-1127, 213], [-1128, 213], [-1129, 212], [-1130, 212], [-1131, 213], [-1133, 213], [-1135, 211], [-1133, 209], [-1134, 208], [-1135, 208], [-1136, 207], [-1135, 206], [-1134, 205], [-1137, 202], [-1137, 201], [-1136, 201], [-1135, 200], [-1134, 200], [-1133, 201], [-1132, 201], [-1132, 199], [-1133, 198], [-1133, 197], [-1134, 196], [-1134, 194], [-1135, 193], [-1135, 176]], "106-107": [[583, -8], [583, -16], [641, -16], [641, -2], [644, -2], [644, 1], [645, 2], [645, 17], [643, 19], [643, 23], [640, 26], [645, 26], [646, 25], [647, 25], [647, 27], [644, 30], [646, 32], [644, 33], [643, 35], [642, 35], [641, 36], [642, 38], [641, 39], [638, 39], [637, 38], [635, 38], [635, 39], [633, 40], [631, 40], [631, 43], [632, 44], [632, 45], [633, 47], [633, 56], [612, 56], [612, 55], [613, 54], [613, 52], [614, 51], [614, 49], [613, 48], [613, 42], [612, 41], [609, 40], [607, 39], [606, 38], [600, 38], [599, 37], [600, 36], [600, 35], [601, 34], [601, 33], [597, 29], [597, 28], [602, 28], [602, 26], [600, 24], [599, 22], [599, 18], [598, 17], [598, 9], [599, 8], [599, 6], [600, 5], [600, 1], [602, 1], [602, -8]], "99-105": [[601, 1], [607, 1], [608, 0], [610, 0], [611, 1], [612, 1], [613, 2], [614, 1], [618, 1], [622, 4], [625, 8], [629, 8], [630, 7], [631, 5], [632, 4], [637, -1], [638, -1], [639, -2], [644, -2], [644, 17], [642, 18], [642, 23], [644, 23], [644, 26], [646, 25], [647, 25], [647, 27], [644, 30], [646, 32], [644, 33], [642, 33], [642, 34], [641, 35], [641, 39], [638, 39], [637, 38], [636, 38], [635, 39], [634, 39], [633, 40], [631, 40], [630, 41], [631, 42], [632, 43], [632, 48], [631, 49], [631, 52], [633, 52], [633, 55], [612, 55], [612, 52], [613, 51], [613, 42], [612, 41], [608, 41], [606, 39], [599, 39], [599, 37], [600, 36], [600, 33], [595, 28], [595, 26], [599, 26], [599, 23], [597, 19], [597, 9], [599, 4]]}, "center": {"197-258": [-1091, 187], "188-196": [-1091, 190], "174-187": [-1112, 200], "106-107": [621, 13], "99-105": [621, 25]}}, -{"id": 1590, "name": "RWTH (Rhine-Westphalia Technical University of Aachen)", "description": "Technical University of Aachen
One of the (currently) 13 Universities of Excellence (Exzellenzuniversitäten) in Germany.

Also Member of the IDEA Leauge, a strategic alliance of five leading universities of technology in Europe, as well as its German counterpart TU9.", "links": {"website": ["https://en.wikipedia.org/wiki/RWTH_Aachen_University", "https://www.rwth-aachen.de/go/id/a/?lidx=1", "https://en.wikipedia.org/wiki/German_Universities_Excellence_Initiative", "https://en.wikipedia.org/wiki/IDEA_League", "https://en.wikipedia.org/wiki/TU9"], "subreddit": ["rwth"]}, "path": {"185-258": [[-286, -76], [-224, -75], [-223, -57], [-286, -57]]}, "center": {"185-258": [-276, -66]}}, -{"id": 1591, "name": "Itemlabel OuiOui", "description": "A CubeOui from OuiOui Series 3. A OuiOui is a young Peepy, they don't know anything but eating peanuts and sleeping. Isn't it cute? Whatever.\n\nThank you r/Colombia for your alliance and friendship <3", "links": {"website": ["https://itemlabel.com/"], "subreddit": ["itemLabel"], "discord": ["itemlabel"]}, "path": {"170-258": [[-679, 322], [-678, 322], [-678, 317], [-678, 316], [-682, 315], [-686, 316], [-686, 322]]}, "center": {"170-258": [-682, 319]}}, -{"id": 1592, "name": "The Milkmaid (Het melkmeisje)", "description": "The Milkmaid, sometimes called The Kitchen Maid, is an oil-on-canvas painting of a \"milkmaid\", in fact, a domestic kitchen maid, by the Dutch artist Johannes Vermeer. It is now in the Rijksmuseum in Amsterdam, the Netherlands, which regards it as \"unquestionably one of the museum's finest attractions\"", "links": {"website": ["https://en.wikipedia.org/wiki/The_Milkmaid_(Vermeer)"], "subreddit": ["placenl"], "discord": ["placenl"]}, "path": {"187-258": [[-872, 641], [-872, 742], [-773, 742], [-773, 641]]}, "center": {"187-258": [-822, 692]}}, +{"id": 1582, "name": "Nanachi", "description": "Nanachi is a character from the manga Made in Abyss created by Akihito Tsukushi", "links": {"subreddit": ["madeinabyss"]}, "path": {"158-258, T": [[-219, 547], [-219, 546], [-221, 543], [-221, 537], [-220, 533], [-219, 532], [-219, 530], [-216, 529], [-215, 532], [-210, 532], [-209, 529], [-206, 529], [-206, 533], [-205, 536], [-204, 537], [-204, 544], [-205, 545], [-205, 547]]}, "center": {"158-258, T": [-212, 539]}}, +{"id": 1583, "name": "Oasis - Logo of 1990s Britpop band", "description": "Oasis were a British rock band originating in the 1990s. Lead by brothers Liam and Noel Gallagher, the band established themselves as one of the most popular, controversial, and legendary bands of their time. They topped the music charts with songs such as Live Forever, Supersonic, Wonderwall, Champagne Supernova, and Don't Look Back in Anger. In 1996 the band played Knebworth park to a total of 250k people, although 2.5 million applied for tickets. Their 1997 song 'All Around the World' is the longest song to ever chart on the UK charts. Their successes continued into the new millennium. The Dig Out Your Soul World Tour began on August 26th, 2008, in promotion of the album. Following an on-stage attack at the Virgin Festival in Toronto, Canada, the tour went from ambitious to arduous. The Gallagher brothers were notoriously at conflict with each other, one of music's most famous feuds. It was during this tour however that their relationship collapsed. The two travelled in separate tour buses and communicated through third parties. Their rift visible to the audiences they played to. August 23rd, 2009, Oasis were scheduled to headline Rock En Seine Festival in Paris. An argument erupts backstage regarding a segment in the band's tour pamphlet. The argument soon turns violent as Liam Gallagher smashes Noel's most valued guitar, a 1960 Gibson 355. Minutes before their scheduled entrance onto the stage, Noel Gallagher left the venue by car, and Oasis were no longer. Noel later issued this statement \"It's with some sadness and great relief to tell you that I quit Oasis tonight. People will write and say what they like, but I simply could not go on working with Liam a day longer.\" During their 18 year run, the band released 7 studio albums, 28 singles. Over a decade after their breakup, the brothers continue their careers successfully as solo artists respectively. Despite near constant rumors, an Oasis reunion is yet to have happened and Liam and Noel have remained off speaking terms. With fans across the world, they are one of England's most successful and beloved musical exports.", "links": {"website": ["https://oasisinet.com"], "subreddit": ["oasis"], "discord": ["wonderwall"]}, "path": {"171-258, T": [[-1142, -80], [-1142, -67], [-1113, -67], [-1113, -80], [-1142, -80], [-1142, -67], [-1113, -67]]}, "center": {"171-258, T": [-1118, -75]}}, +{"id": 1584, "name": "Cellbit's C", "description": "C is Cellbit's logo, with a B (the golden thing) in the middle, making reference of Bit, in Cellbit.\nThere are other versions of this C, including a simple one (the Cellbit's profile picture in Twitch) or more complex ones (the Cellbit's sub badges in Twitch).", "links": {"website": ["https://www.twitch.tv/cellbit"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"177-258, T": [[304, 379], [304, 370], [305, 370], [305, 368], [306, 368], [306, 367], [308, 367], [308, 366], [321, 366], [321, 367], [322, 367], [322, 368], [324, 368], [324, 370], [325, 370], [325, 402], [323, 402], [323, 404], [321, 404], [321, 405], [308, 405], [308, 404], [306, 404], [306, 403], [305, 403], [305, 402], [304, 402]]}, "center": {"177-258, T": [315, 386]}}, +{"id": 1585, "name": "The 1000-Franc Note", "description": "The 1000-Franc Note that is used in Switzerland and Liechtenstein.", "links": {}, "path": {"191-258, T": [[-554, 910], [-553, 956], [-536, 955], [-536, 953], [-535, 952], [-535, 911]]}, "center": {"191-258, T": [-544, 933]}}, +{"id": 1586, "name": "Pöttyös", "description": "Pöttyös Túró Rudi is the name of a curd snack that has been enjoyed by the Hungary since 1968. The bar is composed of a thin chocolate-flavored outer coating and an inner filling of túró (curd). The \"Rudi\" in the product name comes from the Hungarian \"rúd\", which translates to rod or bar (and is also a nickname for the name \"Rudolf\"). Túró Rudi can be found in several different flavours and sizes.", "links": {"website": ["https://en.wikipedia.org/wiki/T%C3%BAr%C3%B3_Rudi"]}, "path": {"189-258, T": [[-752, -18], [-707, -17], [-707, -7], [-752, -7]]}, "center": {"189-258, T": [-746, -12]}}, +{"id": 1587, "name": "r/93palm", "description": "a subreddit for the small twitch streamer: 93palm", "links": {"subreddit": ["93palm"], "discord": ["tr682RXW"]}, "path": {"185-258, T": [[-349, -244], [-361, -244], [-361, -235], [-366, -219], [-335, -220], [-341, -245], [-349, -246]]}, "center": {"185-258, T": [-350, -231]}}, +{"id": 1588, "name": "RevedTV", "description": "Most followed german female Twitch Streamer.", "links": {"website": ["https://reved.tv", "https://twitch.tv/revedtv"], "subreddit": ["reved"], "discord": ["Reved"]}, "path": {"187-258, T": [[44, 573], [16, 573], [16, 586], [44, 586]]}, "center": {"187-258, T": [30, 580]}}, +{"id": 1589, "name": "Boy Kisser", "description": "Built by the r/Furry_irl alliance, this is a rendition of the Boykisser Meme by Mauzymice. The French text translated reads: \"You like r/furry_irl don't you?\"\n\nThe Orange and Purple flower stems from the Pikmin group within the alliance, with the Orange flower resembling the Reddit Snoo.\n\nOne of the more remarkable moments of this artwork was when a streamer attempted to destroy it, resulting in an intense battle over the artwork, but ultimately failing in his attempt.", "links": {"website": ["https://furry-irl.com/"], "subreddit": ["furry_irl"], "discord": ["aVamu4q8MH"]}, "path": {"188-196": [[-1127, 169], [-1127, 163], [-1053, 163], [-1053, 169], [-1066, 169], [-1066, 171], [-1067, 172], [-1067, 177], [-1068, 178], [-1068, 183], [-1067, 184], [-1067, 193], [-1068, 193], [-1068, 196], [-1069, 197], [-1069, 199], [-1071, 201], [-1066, 201], [-1066, 202], [-1067, 203], [-1070, 206], [-1070, 207], [-1071, 208], [-1070, 209], [-1068, 211], [-1068, 213], [-1070, 215], [-1071, 214], [-1074, 214], [-1075, 213], [-1076, 213], [-1077, 214], [-1078, 215], [-1081, 215], [-1082, 216], [-1082, 217], [-1081, 218], [-1081, 219], [-1080, 220], [-1080, 223], [-1081, 224], [-1081, 231], [-1101, 231], [-1101, 222], [-1099, 220], [-1099, 219], [-1098, 217], [-1101, 217], [-1102, 216], [-1104, 216], [-1108, 213], [-1115, 213], [-1115, 212], [-1114, 211], [-1114, 210], [-1113, 210], [-1112, 209], [-1112, 208], [-1117, 203], [-1117, 201], [-1112, 201], [-1112, 200], [-1114, 197], [-1114, 194], [-1115, 194], [-1115, 186], [-1114, 185], [-1114, 180], [-1113, 179], [-1113, 177], [-1112, 176], [-1109, 176], [-1109, 169]], "174-187": [[-1134, 175], [-1129, 175], [-1127, 177], [-1126, 177], [-1124, 175], [-1123, 175], [-1121, 177], [-1120, 177], [-1120, 175], [-1114, 175], [-1111, 178], [-1111, 179], [-1110, 180], [-1109, 180], [-1107, 182], [-1106, 182], [-1104, 184], [-1103, 183], [-1103, 181], [-1097, 175], [-1097, 174], [-1096, 173], [-1094, 173], [-1093, 172], [-1092, 171], [-1091, 172], [-1090, 172], [-1090, 170], [-1089, 170], [-1087, 172], [-1087, 192], [-1088, 193], [-1088, 195], [-1089, 196], [-1089, 197], [-1092, 200], [-1087, 200], [-1087, 201], [-1088, 202], [-1090, 204], [-1090, 205], [-1091, 206], [-1091, 207], [-1090, 208], [-1089, 208], [-1087, 210], [-1088, 211], [-1089, 212], [-1091, 212], [-1092, 213], [-1099, 213], [-1100, 214], [-1101, 215], [-1100, 216], [-1100, 222], [-1099, 223], [-1099, 225], [-1098, 226], [-1098, 228], [-1097, 229], [-1097, 230], [-1122, 230], [-1122, 229], [-1121, 228], [-1121, 227], [-1120, 226], [-1120, 222], [-1122, 222], [-1121, 221], [-1122, 220], [-1122, 219], [-1121, 218], [-1120, 218], [-1119, 217], [-1120, 216], [-1121, 215], [-1123, 215], [-1124, 214], [-1126, 214], [-1127, 213], [-1128, 213], [-1129, 212], [-1130, 212], [-1131, 213], [-1133, 213], [-1135, 211], [-1133, 209], [-1134, 208], [-1135, 208], [-1136, 207], [-1135, 206], [-1134, 205], [-1137, 202], [-1137, 201], [-1136, 201], [-1135, 200], [-1134, 200], [-1133, 201], [-1132, 201], [-1132, 199], [-1133, 198], [-1133, 197], [-1134, 196], [-1134, 194], [-1135, 193], [-1135, 176]], "106-107": [[583, -8], [583, -16], [641, -16], [641, -2], [644, -2], [644, 1], [645, 2], [645, 17], [643, 19], [643, 23], [640, 26], [645, 26], [646, 25], [647, 25], [647, 27], [644, 30], [646, 32], [644, 33], [643, 35], [642, 35], [641, 36], [642, 38], [641, 39], [638, 39], [637, 38], [635, 38], [635, 39], [633, 40], [631, 40], [631, 43], [632, 44], [632, 45], [633, 47], [633, 56], [612, 56], [612, 55], [613, 54], [613, 52], [614, 51], [614, 49], [613, 48], [613, 42], [612, 41], [609, 40], [607, 39], [606, 38], [600, 38], [599, 37], [600, 36], [600, 35], [601, 34], [601, 33], [597, 29], [597, 28], [602, 28], [602, 26], [600, 24], [599, 22], [599, 18], [598, 17], [598, 9], [599, 8], [599, 6], [600, 5], [600, 1], [602, 1], [602, -8]], "99-105": [[601, 1], [607, 1], [608, 0], [610, 0], [611, 1], [612, 1], [613, 2], [614, 1], [618, 1], [622, 4], [625, 8], [629, 8], [630, 7], [631, 5], [632, 4], [637, -1], [638, -1], [639, -2], [644, -2], [644, 17], [642, 18], [642, 23], [644, 23], [644, 26], [646, 25], [647, 25], [647, 27], [644, 30], [646, 32], [644, 33], [642, 33], [642, 34], [641, 35], [641, 39], [638, 39], [637, 38], [636, 38], [635, 39], [634, 39], [633, 40], [631, 40], [630, 41], [631, 42], [632, 43], [632, 48], [631, 49], [631, 52], [633, 52], [633, 55], [612, 55], [612, 52], [613, 51], [613, 42], [612, 41], [608, 41], [606, 39], [599, 39], [599, 37], [600, 36], [600, 33], [595, 28], [595, 26], [599, 26], [599, 23], [597, 19], [597, 9], [599, 4]], "197-258, T": [[-1101, 231], [-1101, 228], [-1100, 228], [-1100, 227], [-1099, 227], [-1099, 226], [-1099, 217], [-1100, 217], [-1101, 217], [-1101, 216], [-1104, 216], [-1104, 215], [-1105, 215], [-1105, 214], [-1107, 214], [-1107, 213], [-1113, 213], [-1113, 212], [-1114, 212], [-1114, 210], [-1113, 210], [-1113, 209], [-1112, 209], [-1112, 208], [-1112, 207], [-1113, 207], [-1113, 206], [-1114, 206], [-1114, 205], [-1115, 205], [-1115, 204], [-1116, 204], [-1116, 203], [-1117, 203], [-1117, 202], [-1116, 202], [-1116, 201], [-1114, 201], [-1114, 202], [-1113, 202], [-1112, 202], [-1112, 200], [-1112, 199], [-1113, 199], [-1113, 197], [-1114, 197], [-1114, 195], [-1114, 194], [-1115, 194], [-1115, 184], [-1114, 184], [-1114, 180], [-1113, 180], [-1113, 178], [-1112, 178], [-1112, 177], [-1112, 176], [-1115, 176], [-1115, 170], [-1117, 170], [-1117, 169], [-1143, 169], [-1144, 163], [-1050, 163], [-1050, 167], [-1051, 167], [-1051, 168], [-1052, 168], [-1053, 168], [-1053, 169], [-1061, 169], [-1061, 170], [-1067, 170], [-1067, 175], [-1067, 193], [-1068, 193], [-1068, 196], [-1069, 196], [-1069, 198], [-1070, 199], [-1071, 199], [-1071, 200], [-1071, 201], [-1066, 201], [-1066, 202], [-1067, 202], [-1067, 203], [-1068, 203], [-1068, 204], [-1069, 204], [-1069, 205], [-1070, 205], [-1070, 207], [-1071, 207], [-1071, 209], [-1069, 209], [-1069, 210], [-1068, 210], [-1068, 213], [-1069, 213], [-1069, 214], [-1074, 214], [-1074, 213], [-1076, 213], [-1077, 213], [-1077, 214], [-1079, 214], [-1079, 215], [-1081, 215], [-1081, 220], [-1080, 220], [-1080, 222], [-1081, 222], [-1081, 223], [-1082, 223], [-1082, 226], [-1081, 226], [-1081, 229], [-1081, 231]]}, "center": {"188-196": [-1091, 190], "174-187": [-1112, 200], "106-107": [621, 13], "99-105": [621, 25], "197-258, T": [-1091, 187]}}, +{"id": 1590, "name": "RWTH (Rhine-Westphalia Technical University of Aachen)", "description": "Technical University of Aachen
One of the (currently) 13 Universities of Excellence (Exzellenzuniversitäten) in Germany.

Also Member of the IDEA Leauge, a strategic alliance of five leading universities of technology in Europe, as well as its German counterpart TU9.", "links": {"website": ["https://en.wikipedia.org/wiki/RWTH_Aachen_University", "https://www.rwth-aachen.de/go/id/a/?lidx=1", "https://en.wikipedia.org/wiki/German_Universities_Excellence_Initiative", "https://en.wikipedia.org/wiki/IDEA_League", "https://en.wikipedia.org/wiki/TU9"], "subreddit": ["rwth"]}, "path": {"185-258, T": [[-286, -76], [-224, -75], [-223, -57], [-286, -57]]}, "center": {"185-258, T": [-276, -66]}}, +{"id": 1591, "name": "Itemlabel OuiOui", "description": "A CubeOui from OuiOui Series 3. A OuiOui is a young Peepy, they don't know anything but eating peanuts and sleeping. Isn't it cute? Whatever.\n\nThank you r/Colombia for your alliance and friendship <3", "links": {"website": ["https://itemlabel.com/"], "subreddit": ["itemLabel"], "discord": ["itemlabel"]}, "path": {"170-258, T": [[-679, 322], [-678, 322], [-678, 317], [-678, 316], [-682, 315], [-686, 316], [-686, 322]]}, "center": {"170-258, T": [-682, 319]}}, +{"id": 1592, "name": "The Milkmaid (Het melkmeisje)", "description": "The Milkmaid, sometimes called The Kitchen Maid, is an oil-on-canvas painting of a \"milkmaid\", in fact, a domestic kitchen maid, by the Dutch artist Johannes Vermeer. It is now in the Rijksmuseum in Amsterdam, the Netherlands, which regards it as \"unquestionably one of the museum's finest attractions\"", "links": {"website": ["https://en.wikipedia.org/wiki/The_Milkmaid_(Vermeer)"], "subreddit": ["placenl"], "discord": ["placenl"]}, "path": {"187-258, T": [[-872, 641], [-872, 742], [-773, 742], [-773, 641]]}, "center": {"187-258, T": [-822, 692]}}, {"id": 1593, "name": "Distressed red ball", "description": "The distressed red ball was a collaborative project between a group of around 15 people, whose objectives were to keep it alive as long as possible. Sadly, only about an hour after its completion, the king from Clash Royale overtook it.", "links": {"discord": ["VVE6vNxyRy"]}, "path": {"171-179": [[-1305, 618], [-1301, 618], [-1301, 617], [-1299, 617], [-1299, 616], [-1298, 616], [-1298, 615], [-1297, 615], [-1297, 613], [-1296, 613], [-1296, 609], [-1297, 609], [-1297, 607], [-1298, 607], [-1298, 606], [-1299, 606], [-1299, 605], [-1301, 605], [-1301, 604], [-1305, 604], [-1305, 605], [-1307, 605], [-1307, 606], [-1308, 606], [-1308, 607], [-1309, 607], [-1309, 609], [-1310, 609], [-1310, 613], [-1309, 613], [-1309, 615], [-1308, 615], [-1308, 616], [-1307, 616], [-1307, 617], [-1304, 617]]}, "center": {"171-179": [-1303, 611]}}, -{"id": 1594, "name": "Eren Yeager", "description": "Eren Yeager from the manga and anime series Attack on Titan (Shingeki No Kyojin)", "links": {"subreddit": ["titanfolk"], "discord": ["UbQex5yj8G"]}, "path": {"177-258": [[-569, -208], [-560, -224], [-535, -215], [-537, -222], [-563, -233], [-563, -237], [-559, -242], [-558, -247], [-563, -249], [-569, -247], [-569, -243], [-569, -238], [-586, -245], [-587, -242], [-574, -234], [-576, -230], [-578, -227], [-579, -220], [-570, -209]]}, "center": {"177-258": [-570, -224]}}, +{"id": 1594, "name": "Eren Yeager", "description": "Eren Yeager from the manga and anime series Attack on Titan (Shingeki No Kyojin)", "links": {"subreddit": ["titanfolk"], "discord": ["UbQex5yj8G"]}, "path": {"177-258, T": [[-569, -208], [-560, -224], [-535, -215], [-537, -222], [-563, -233], [-563, -237], [-559, -242], [-558, -247], [-563, -249], [-569, -247], [-569, -243], [-569, -238], [-586, -245], [-587, -242], [-574, -234], [-576, -230], [-578, -227], [-579, -220], [-570, -209]]}, "center": {"177-258, T": [-570, -224]}}, {"id": 1595, "name": "Egg Fella", "description": "A cool little egg with sunglasses. A mascot of a microwave egg cooker brand advertized on informercials and later popularized by the YouTube channel \"Cold Ones\", who have made and sold merch of the character. Quite the funny lil fella indeed.", "links": {"website": ["https://www.youtube.com/@coldones", "https://shirtz.cool"], "subreddit": ["ColdOnes"], "discord": ["g6aqbQV8"]}, "path": {"187-214": [[-966, 752], [-956, 755], [-951, 762], [-948, 771], [-948, 776], [-944, 770], [-945, 762], [-941, 753], [-940, 752], [-939, 747], [-938, 746], [-937, 747], [-937, 752], [-933, 754], [-933, 763], [-938, 765], [-940, 771], [-942, 777], [-946, 781], [-946, 787], [-946, 792], [-942, 795], [-947, 808], [-946, 814], [-952, 818], [-954, 820], [-959, 818], [-964, 820], [-963, 828], [-968, 834], [-963, 835], [-962, 835], [-962, 838], [-975, 838], [-975, 833], [-969, 828], [-969, 822], [-970, 823], [-972, 827], [-973, 828], [-976, 828], [-977, 827], [-979, 829], [-981, 829], [-983, 821], [-984, 821], [-986, 827], [-987, 833], [-989, 837], [-1002, 839], [-1001, 836], [-999, 832], [-992, 831], [-990, 822], [-998, 820], [-999, 812], [-1005, 810], [-1007, 808], [-1007, 806], [-1004, 805], [-1008, 798], [-1007, 791], [-999, 784], [-994, 783], [-992, 777], [-990, 771], [-984, 763], [-978, 757], [-972, 752]]}, "center": {"187-214": [-971, 795]}}, -{"id": 1596, "name": "Giant Jawblade", "description": "The Giant Jawblade, a bone blade forged from the claws and fangs of Wyverns, represents the community of the game series Monster Hunter on the Hill of Swords.", "links": {"website": ["https://monsterhunterrise.wiki.fextralife.com/Giant+Jawblade"], "subreddit": ["monsterhunter", "monster_hunter_place", "Berserk"], "discord": ["6v27j8n9", "M699v8xSqz"]}, "path": {"164-258": [[578, 917], [578, 930], [575, 935], [575, 943], [576, 944], [576, 952], [575, 953], [575, 958], [580, 958], [589, 954], [586, 952], [586, 945], [585, 944], [585, 941], [586, 940], [586, 938], [588, 936], [588, 933], [585, 933], [583, 930], [583, 917]]}, "center": {"164-258": [580, 937]}}, -{"id": 1597, "name": "Muse", "description": "Area dedicated to the British three piece rock band Muse, showing their logo on the orange colour of the album Origin of Symmetry, along with two tuning forks either side, also from the album.\n\nUnderneath the logo is the message \"For Lina\", dedicating the space to a fan well known to the community who passed away a week prior to r/place 2023 beginning.\n\nSecond location on the canvas after first one was covered over.", "links": {"website": ["https://en.wikipedia.org/wiki/Muse_(band)", "https://en.wikipedia.org/wiki/Origin_of_Symmetry", "https://www.muse.mu/", "https://www.instagram.com/p/CuxhoCjKQET/"], "subreddit": ["muse"], "discord": ["muse"]}, "path": {"155-258": [[643, -520], [680, -520], [680, -501], [643, -501]]}, "center": {"155-258": [662, -510]}}, +{"id": 1596, "name": "Giant Jawblade", "description": "The Giant Jawblade, a bone blade forged from the claws and fangs of Wyverns, represents the community of the game series Monster Hunter on the Hill of Swords.", "links": {"website": ["https://monsterhunterrise.wiki.fextralife.com/Giant+Jawblade"], "subreddit": ["monsterhunter", "monster_hunter_place", "Berserk"], "discord": ["6v27j8n9", "M699v8xSqz"]}, "path": {"164-258, T": [[578, 917], [578, 930], [575, 935], [575, 943], [576, 944], [576, 952], [575, 953], [575, 958], [580, 958], [589, 954], [586, 952], [586, 945], [585, 944], [585, 941], [586, 940], [586, 938], [588, 936], [588, 933], [585, 933], [583, 930], [583, 917]]}, "center": {"164-258, T": [580, 937]}}, +{"id": 1597, "name": "Muse", "description": "Area dedicated to the British three piece rock band Muse, showing their logo on the orange colour of the album Origin of Symmetry, along with two tuning forks either side, also from the album.\n\nUnderneath the logo is the message \"For Lina\", dedicating the space to a fan well known to the community who passed away a week prior to r/place 2023 beginning.\n\nSecond location on the canvas after first one was covered over.", "links": {"website": ["https://en.wikipedia.org/wiki/Muse_(band)", "https://en.wikipedia.org/wiki/Origin_of_Symmetry", "https://www.muse.mu/", "https://www.instagram.com/p/CuxhoCjKQET/"], "subreddit": ["muse"], "discord": ["muse"]}, "path": {"155-258, T": [[643, -520], [680, -520], [680, -501], [643, -501]]}, "center": {"155-258, T": [662, -510]}}, {"id": 1598, "name": "Watch The Throne Album Cover", "description": "The cover art of the 2011 album by artists Ye (formerly known as Kanye West) and Jay-Z titled \"Watch The Throne.\"", "links": {}, "path": {"176": [[673, 576], [676, 576], [676, 579], [673, 579]]}, "center": {"176": [675, 578]}}, {"id": 1599, "name": "Bungou stray dogs chibis", "description": "Bungou Stray Dogs is a Japanese manga series written by Kafka Asagiri. The characters are based on real-life authors from the early 20th century.\n\nAfter being overpixelt several times by the Hive Mind on the Green Lattice, the artworks were built on the flag of the Netherlands and the flag of Germany (Mittelflagge) and have been given asylum until the space is needed for other projects.", "links": {"website": ["https://en.wikipedia.org/wiki/Bungo_Stray_Dogs", "https://bungostraydogs.fandom.com/wiki/Bungo_Stray_Dogs_Wiki"], "subreddit": ["BungouStrayDogs"], "discord": ["8pUvuspX"]}, "path": {"176": [[-155, -501], [-132, -501], [-131, -552], [-78, -550], [-79, -590], [-112, -591], [-118, -596], [-130, -584], [-131, -566], [-147, -565], [-147, -558], [-148, -535], [-148, -533]]}, "center": {"176": [-99, -570]}}, -{"id": 1600, "name": "UniKey", "description": "UniKey is the most popular third-party software and input method editor for encoding Vietnamese.", "links": {"website": ["https://en.wikipedia.org/wiki/UniKey_(software)", "http://www.unikey.org/"], "subreddit": ["placevietnam"], "discord": ["placevietnam"]}, "path": {"188-258": [[-530, 973], [-506, 973], [-506, 996], [-529, 996]]}, "center": {"188-258": [-518, 985]}}, +{"id": 1600, "name": "UniKey", "description": "UniKey is the most popular third-party software and input method editor for encoding Vietnamese.", "links": {"website": ["https://en.wikipedia.org/wiki/UniKey_(software)", "http://www.unikey.org/"], "subreddit": ["placevietnam"], "discord": ["placevietnam"]}, "path": {"188-258, T": [[-530, 973], [-506, 973], [-506, 996], [-529, 996]]}, "center": {"188-258, T": [-518, 985]}}, {"id": 1601, "name": "Nah Nah Nah (Remix) Single Cover", "description": "The cover art to the remix of the single \"Nah Nah Nah\" by the artist Ye (formerly known as Kanye West).", "links": {"subreddit": ["WestSubEver", "Kanye", "GoodAssSub"]}, "path": {"176": [[674, 549], [682, 549], [682, 557], [674, 557]]}, "center": {"176": [678, 553]}}, {"id": 1602, "name": "Jolly Roger of the Riptide Pirates", "description": "The symbol used to represent The Riptide Pirates from the Just Roll With It Podcast.", "links": {"subreddit": ["jrwishow"]}, "path": {"173-244": [[533, 364], [541, 375], [555, 375], [562, 364], [547, 359]]}, "center": {"173-244": [547, 367]}}, {"id": 1603, "name": "Migros ice tea peach", "description": "Swiss popular brevage. The lemon version is better than the peach", "links": {"website": ["https://www.migros.ch/fr/product/120255000000"]}, "path": {"163": [[814, -356], [818, -356], [818, -357], [819, -357], [819, -356], [821, -356], [821, -345], [814, -345]]}, "center": {"163": [818, -351]}}, -{"id": 1604, "name": "Denji", "description": "Denji is the protagonist of the manga Chainsaw Man. This art depicts Denji's chainsaw head when he transforms into Chainsaw Man.", "links": {"website": ["https://chainsaw-man.fandom.com/wiki/Denji"], "subreddit": ["ChainsawMan", "Berserk"], "discord": ["NjsuqFsX", "M699v8xSqz"]}, "path": {"165-258": [[590, 930], [588, 932], [588, 940], [589, 941], [589, 951], [593, 951], [593, 939], [594, 938], [594, 930]]}, "center": {"165-258": [591, 933]}}, -{"id": 1605, "name": "Holy Dirt", "description": "A friend group Minecraft Server that got on the canvas!", "links": {}, "path": {"183-258": [[-153, 747], [-153, 758], [-149, 761], [-144, 762], [-139, 762], [-132, 759], [-132, 747]]}, "center": {"183-258": [-142, 755]}}, -{"id": 1606, "name": "Love Live France! and Love Live! Francophone", "description": "Love Live! (ラブライブ!) is a Japanese multimedia franchise about high school girls who form idol groups to promote their schools. The franchise not only focuses on the characters but also on their voice actresses who take part in live streams and live concerts. The project began in 2010 and, as of 2023, has a main cast of about 50 school idols featured in 9 full-length anime seasons, two movies, several manga and light novels, and a discography of more than 500 original songs!\nThis drawing was made by the French-speaking Love Live! community, hence the \"FR\".", "links": {"website": ["https://twitter.com/LoveLive_FR", "https://love-live-en-francais.blogspot.com/"], "discord": ["LoveLiveFrance", "Q76jxRcfAJ"]}, "path": {"204-258": [[-660, -249], [-619, -249], [-619, -241], [-622, -241], [-622, -236], [-650, -236], [-650, -231], [-656, -231], [-656, -234], [-657, -234], [-657, -239], [-658, -239], [-658, -242], [-659, -242], [-659, -244], [-660, -244]]}, "center": {"204-258": [-640, -243]}}, -{"id": 1607, "name": "7TV", "description": "7TV is a browser addon which provides 3rd party emotes for twitch. Around the logo are 3 pepe emotes which are very popular on 7TV.", "links": {"website": ["https://7tv.app/"], "subreddit": ["7TV"], "discord": ["a29V5SUE"]}, "path": {"187-258": [[202, -97], [268, -97], [268, -86], [277, -86], [277, -76], [202, -76]]}, "center": {"187-258": [240, -86]}}, -{"id": 1608, "name": "Matterhorn", "description": "The Matterhorn is a mountain of the Alps, straddling the main watershed and border between Switzerland and Italy. It is a large, near-symmetric pyramidal peak in the extended Monte Rosa area of the Pennine Alps, whose summit is 4,478 metres high, making it one of the highest summits in the Alps and Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Matterhorn"]}, "path": {"191-258": [[-545, 210], [-541, 211], [-516, 248], [-573, 248]]}, "center": {"191-258": [-544, 233]}}, -{"id": 1609, "name": "Floch Forster", "description": "Floch Forster from the manga and anime series Attack on Titan (Shingeki No Kyojin), shaded gold due to the original color palette limitations of r/place.", "links": {"subreddit": ["titanfolk"], "discord": ["UbQex5yj8G"]}, "path": {"183-258": [[168, -9], [168, 35], [195, 35], [195, -9]]}, "center": {"183-258": [182, 13]}}, -{"id": 1610, "name": "Apollo", "description": "Apollo was a third-party client for iOS, iPadOS, and macOS created by former Apple intern Christian Selig. It was launched in 2017 after two years of development and was shut down on June 30, 2023 due to Reddit's sudden increase on API pricing. The app was added to the Windows Vista taskbar in support of the June 30th API protests.", "links": {"website": ["http://apolloapp.io/"], "subreddit": ["ApolloApp"]}, "path": {"187-258": [[-1366, 978], [-1365, 978], [-1365, 977], [-1352, 977], [-1352, 978], [-1351, 978], [-1351, 991], [-1352, 991], [-1352, 992], [-1365, 992], [-1365, 991], [-1366, 991]]}, "center": {"187-258": [-1358, 985]}}, -{"id": 1611, "name": "Ado Logo", "description": "Ado is a Japanese singer/Utaite In 2020, at the age of 17, she made her debut with the digital single titled \"Usseewa\", which peaked at number 1 on Billboard Japan Hot 100, Oricon Digital Singles Chart, and the Oricon Streaming Chart.", "links": {"subreddit": ["ADO"]}, "path": {"185-258": [[-368, 827], [-300, 828], [-300, 855], [-368, 855], [-368, 831]]}, "center": {"185-258": [-340, 841]}}, -{"id": 1612, "name": "Rivella (Drink)", "description": "Rivella is the most popular Swiss soft drink and has simply belonged to Switzerland since 1952. With its unique taste, Rivella stands for refreshing moments and the unmistakable lifestyle of active Switzerland.", "links": {"website": ["https://rivella.ch/de/", "https://en.wikipedia.org/wiki/Rivella"]}, "path": {"191-258": [[-555, 857], [-553, 858], [-557, 866], [-557, 863], [-557, 887], [-550, 887], [-551, 864], [-554, 858]]}, "center": {"191-258": [-554, 878]}}, -{"id": 1613, "name": "Albert Heijn logo", "description": "Albert Heijn is the largest super market chain in The Netherlands with a market share of 34.8%. Albert Heijn was founded in 1887.", "links": {"website": ["https://en.wikipedia.org/wiki/Albert_Heijn"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"147-258": [[-479, -492], [-479, -490], [-480, -489], [-480, -487], [-481, -486], [-481, -481], [-469, -478], [-468, -477], [-464, -477], [-464, -478], [-463, -479], [-463, -481], [-462, -482], [-462, -485], [-461, -486], [-461, -488], [-466, -497], [-467, -498], [-470, -498], [-478, -493]]}, "center": {"147-258": [-471, -487]}}, -{"id": 1614, "name": "Canal Panda", "description": "Canal Panda is a Portuguese television channel dedicated exclusively to cartoons for children. It was the first Portuguese and Spanish children's cartoon channel.", "links": {}, "path": {"99-258": [[-835, 150], [-795, 150], [-796, 177], [-833, 177], [-835, 151]]}, "center": {"99-258": [-815, 164]}}, -{"id": 1615, "name": "Chatterino", "description": "A 3rd party desktop application for Twitch chat which provides more options than the regular Twitch chat in the browser.", "links": {"website": ["https://chatterino.com/"], "discord": ["rabs2GZd8b"]}, "path": {"187-258": [[276, -95], [276, -86], [268, -86], [268, -95]]}, "center": {"187-258": [272, -90]}}, +{"id": 1604, "name": "Denji", "description": "Denji is the protagonist of the manga Chainsaw Man. This art depicts Denji's chainsaw head when he transforms into Chainsaw Man.", "links": {"website": ["https://chainsaw-man.fandom.com/wiki/Denji"], "subreddit": ["ChainsawMan", "Berserk"], "discord": ["NjsuqFsX", "M699v8xSqz"]}, "path": {"165-258, T": [[590, 930], [588, 932], [588, 940], [589, 941], [589, 951], [593, 951], [593, 939], [594, 938], [594, 930]]}, "center": {"165-258, T": [591, 933]}}, +{"id": 1605, "name": "Holy Dirt", "description": "A friend group Minecraft Server that got on the canvas!", "links": {}, "path": {"183-258, T": [[-153, 747], [-153, 758], [-149, 761], [-144, 762], [-139, 762], [-132, 759], [-132, 747]]}, "center": {"183-258, T": [-142, 755]}}, +{"id": 1606, "name": "Love Live France! and Love Live! Francophone", "description": "Love Live! (ラブライブ!) is a Japanese multimedia franchise about high school girls who form idol groups to promote their schools. The franchise not only focuses on the characters but also on their voice actresses who take part in live streams and live concerts. The project began in 2010 and, as of 2023, has a main cast of about 50 school idols featured in 9 full-length anime seasons, two movies, several manga and light novels, and a discography of more than 500 original songs!\nThis drawing was made by the French-speaking Love Live! community, hence the \"FR\".", "links": {"website": ["https://twitter.com/LoveLive_FR", "https://love-live-en-francais.blogspot.com/"], "discord": ["LoveLiveFrance", "Q76jxRcfAJ"]}, "path": {"204-258, T": [[-660, -249], [-619, -249], [-619, -241], [-622, -241], [-622, -236], [-650, -236], [-650, -231], [-656, -231], [-656, -234], [-657, -234], [-657, -239], [-658, -239], [-658, -242], [-659, -242], [-659, -244], [-660, -244]]}, "center": {"204-258, T": [-640, -243]}}, +{"id": 1607, "name": "7TV", "description": "7TV is a browser addon which provides 3rd party emotes for twitch. Around the logo are 3 pepe emotes which are very popular on 7TV.", "links": {"website": ["https://7tv.app/"], "subreddit": ["7TV"], "discord": ["a29V5SUE"]}, "path": {"187-258, T": [[202, -97], [268, -97], [268, -86], [277, -86], [277, -76], [202, -76]]}, "center": {"187-258, T": [240, -86]}}, +{"id": 1608, "name": "Matterhorn", "description": "The Matterhorn is a mountain of the Alps, straddling the main watershed and border between Switzerland and Italy. It is a large, near-symmetric pyramidal peak in the extended Monte Rosa area of the Pennine Alps, whose summit is 4,478 metres high, making it one of the highest summits in the Alps and Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Matterhorn"]}, "path": {"191-258, T": [[-545, 210], [-541, 211], [-516, 248], [-573, 248]]}, "center": {"191-258, T": [-544, 233]}}, +{"id": 1609, "name": "Floch Forster", "description": "Floch Forster from the manga and anime series Attack on Titan (Shingeki No Kyojin), shaded gold due to the original color palette limitations of r/place.", "links": {"subreddit": ["titanfolk"], "discord": ["UbQex5yj8G"]}, "path": {"183-258, T": [[168, -9], [168, 35], [195, 35], [195, -9]]}, "center": {"183-258, T": [182, 13]}}, +{"id": 1610, "name": "Apollo", "description": "Apollo was a third-party client for iOS, iPadOS, and macOS created by former Apple intern Christian Selig. It was launched in 2017 after two years of development and was shut down on June 30, 2023 due to Reddit's sudden increase on API pricing. The app was added to the Windows Vista taskbar in support of the June 30th API protests.", "links": {"website": ["http://apolloapp.io/"], "subreddit": ["ApolloApp"]}, "path": {"187-258, T": [[-1366, 978], [-1365, 978], [-1365, 977], [-1352, 977], [-1352, 978], [-1351, 978], [-1351, 991], [-1352, 991], [-1352, 992], [-1365, 992], [-1365, 991], [-1366, 991]]}, "center": {"187-258, T": [-1358, 985]}}, +{"id": 1611, "name": "Ado Logo", "description": "Ado is a Japanese singer/Utaite In 2020, at the age of 17, she made her debut with the digital single titled \"Usseewa\", which peaked at number 1 on Billboard Japan Hot 100, Oricon Digital Singles Chart, and the Oricon Streaming Chart.", "links": {"subreddit": ["ADO"]}, "path": {"185-258, T": [[-368, 827], [-300, 828], [-300, 855], [-368, 855], [-368, 831]]}, "center": {"185-258, T": [-340, 841]}}, +{"id": 1612, "name": "Rivella (Drink)", "description": "Rivella is the most popular Swiss soft drink and has simply belonged to Switzerland since 1952. With its unique taste, Rivella stands for refreshing moments and the unmistakable lifestyle of active Switzerland.", "links": {"website": ["https://rivella.ch/de/", "https://en.wikipedia.org/wiki/Rivella"]}, "path": {"191-258, T": [[-555, 857], [-553, 858], [-557, 866], [-557, 863], [-557, 887], [-550, 887], [-551, 864], [-554, 858]]}, "center": {"191-258, T": [-554, 878]}}, +{"id": 1613, "name": "Albert Heijn logo", "description": "Albert Heijn is the largest super market chain in The Netherlands with a market share of 34.8%. Albert Heijn was founded in 1887.", "links": {"website": ["https://en.wikipedia.org/wiki/Albert_Heijn"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"147-258, T": [[-479, -492], [-479, -490], [-480, -489], [-480, -487], [-481, -486], [-481, -481], [-469, -478], [-468, -477], [-464, -477], [-464, -478], [-463, -479], [-463, -481], [-462, -482], [-462, -485], [-461, -486], [-461, -488], [-466, -497], [-467, -498], [-470, -498], [-478, -493]]}, "center": {"147-258, T": [-471, -487]}}, +{"id": 1614, "name": "Canal Panda", "description": "Canal Panda is a Portuguese television channel dedicated exclusively to cartoons for children. It was the first Portuguese and Spanish children's cartoon channel.", "links": {}, "path": {"99-258, T": [[-835, 150], [-795, 150], [-796, 177], [-833, 177], [-835, 151]]}, "center": {"99-258, T": [-815, 164]}}, +{"id": 1615, "name": "Chatterino", "description": "A 3rd party desktop application for Twitch chat which provides more options than the regular Twitch chat in the browser.", "links": {"website": ["https://chatterino.com/"], "discord": ["rabs2GZd8b"]}, "path": {"187-258, T": [[276, -95], [276, -86], [268, -86], [268, -95]]}, "center": {"187-258, T": [272, -90]}}, {"id": 1616, "name": "Penguin Zone", "description": "Penguin Zone is a Club Penguin Private Server.\n\nA Club Penguin Private Server is a Club Penguin Server hosted by the community due to the unfortunate closing of Club Penguin in March 2017.", "links": {"website": ["https://penguinzone.ca/"], "discord": ["Q6CvqephtT"]}, "path": {"183-208": [[74, -584], [74, -557], [100, -557], [100, -584]]}, "center": {"183-208": [87, -570]}}, -{"id": 1617, "name": "Needy Streamer Overload", "description": "Needy Streamer Overload is a 2022 denpa-themed adventure visual novel created by Japanese developer Xemono and published by WSS Playground for macOS, Microsoft Windows, and Nintendo Switch. The player takes on the role of a manager for a female livestreamer, making decisions for her so that she can achieve her goal of reaching one million followers within a month. The game was initially titled Needy Girl Overdose, but this was changed in November 2021 in preparation for the western release. The game kept its original title in Japan.", "links": {}, "path": {"176-258": [[-1403, -247], [-1352, -247], [-1352, -298], [-1374, -298], [-1374, -287], [-1403, -287]]}, "center": {"176-258": [-1382, -267]}}, -{"id": 1618, "name": "hoppii", "description": "Claimed by hoppii with the friendly help of Sweden. DinkDonk & alooo are most used 7TV Emotes on the twitch.tv/hoppii channel which is a german variety streamer. DankeStaiy", "links": {"website": ["https://www.twitch.tv/hoppii"]}, "path": {"189-258": [[132, -628], [203, -628], [203, -612], [203, -611], [132, -611]]}, "center": {"189-258": [168, -619]}}, -{"id": 1619, "name": "Lake Neusiedl and Lake Balaton", "description": "Lake Neusiedl (Fertő-tó) and Lake Balaton (Plattensee) are the two largest lakes in Austria and Hungary, with Lake Neusiedl (Fertő-tó) being on the border of the two countries.\nThis art was suggested and designed by the austrian r/place community after the hungarians designed and built the Austro-Hungarian coat of arms. Both countries agreed that to this design as the art connects the nations in a truly beautiful and unique way.", "links": {"website": ["https://en.wikipedia.org/wiki/Lake_Balaton", "https://en.wikipedia.org/wiki/Lake_Neusiedl"], "subreddit": ["hungary", "austria"]}, "path": {"147-258": [[-645, -32], [-647, -38], [-640, -54], [-634, -52], [-630, -47], [-621, -52], [-615, -49], [-613, -52], [-575, -53], [-575, -46], [-600, -25], [-600, -17], [-613, -17], [-620, -11], [-631, -11], [-628, -27], [-630, -34], [-638, -29]]}, "center": {"147-258": [-613, -34]}}, -{"id": 1620, "name": "Rick May Memorial", "description": "A memorial to the voice actor for Soldier in Team Fortress 2, who passed in 2020.", "links": {}, "path": {"189-258": [[-1199, -78], [-1199, -81], [-1196, -83], [-1191, -84], [-1190, -81], [-1186, -82], [-1184, -84], [-1178, -84], [-1173, -85], [-1169, -89], [-1160, -89], [-1150, -91], [-1144, -92], [-1143, -73], [-1173, -72], [-1175, -77], [-1178, -79], [-1199, -79]]}, "center": {"189-258": [-1152, -82]}}, +{"id": 1617, "name": "Needy Streamer Overload", "description": "Needy Streamer Overload is a 2022 denpa-themed adventure visual novel created by Japanese developer Xemono and published by WSS Playground for macOS, Microsoft Windows, and Nintendo Switch. The player takes on the role of a manager for a female livestreamer, making decisions for her so that she can achieve her goal of reaching one million followers within a month. The game was initially titled Needy Girl Overdose, but this was changed in November 2021 in preparation for the western release. The game kept its original title in Japan.", "links": {}, "path": {"176-258, T": [[-1403, -247], [-1352, -247], [-1352, -298], [-1374, -298], [-1374, -287], [-1403, -287]]}, "center": {"176-258, T": [-1382, -267]}}, +{"id": 1618, "name": "hoppii", "description": "Claimed by hoppii with the friendly help of Sweden. DinkDonk & alooo are most used 7TV Emotes on the twitch.tv/hoppii channel which is a german variety streamer. DankeStaiy", "links": {"website": ["https://www.twitch.tv/hoppii"]}, "path": {"189-258, T": [[132, -628], [203, -628], [203, -612], [203, -611], [132, -611]]}, "center": {"189-258, T": [168, -619]}}, +{"id": 1619, "name": "Lake Neusiedl and Lake Balaton", "description": "Lake Neusiedl (Fertő-tó) and Lake Balaton (Plattensee) are the two largest lakes in Austria and Hungary, with Lake Neusiedl (Fertő-tó) being on the border of the two countries.\nThis art was suggested and designed by the austrian r/place community after the hungarians designed and built the Austro-Hungarian coat of arms. Both countries agreed that to this design as the art connects the nations in a truly beautiful and unique way.", "links": {"website": ["https://en.wikipedia.org/wiki/Lake_Balaton", "https://en.wikipedia.org/wiki/Lake_Neusiedl"], "subreddit": ["hungary", "austria"]}, "path": {"147-258, T": [[-645, -32], [-647, -38], [-640, -54], [-634, -52], [-630, -47], [-621, -52], [-615, -49], [-613, -52], [-575, -53], [-575, -46], [-600, -25], [-600, -17], [-613, -17], [-620, -11], [-631, -11], [-628, -27], [-630, -34], [-638, -29]]}, "center": {"147-258, T": [-613, -34]}}, +{"id": 1620, "name": "Rick May Memorial", "description": "A memorial to the voice actor for Soldier in Team Fortress 2, who passed in 2020.", "links": {}, "path": {"189-258, T": [[-1199, -78], [-1199, -81], [-1196, -83], [-1191, -84], [-1190, -81], [-1186, -82], [-1184, -84], [-1178, -84], [-1173, -85], [-1169, -89], [-1160, -89], [-1150, -91], [-1144, -92], [-1143, -73], [-1173, -72], [-1175, -77], [-1178, -79], [-1199, -79]]}, "center": {"189-258, T": [-1152, -82]}}, {"id": 1621, "name": "Conterstine", "description": "Logo of Conterstine, a Mexican content creator in youtube and twitch.\n\nEl logo de su canal de Twitch es la imagen de este gato por el cual sus viewers hicieron tendencia el #SoloEstabaPorElGato para que esta imagen no sea cambiada de su foto de perfil por su logo actual.", "links": {"website": ["https://www.youtube.com/@Conterscraft", "https://www.twitch.tv/conterstine"], "subreddit": ["LosPotiers"], "discord": ["9SGagcEAMQ"]}, "path": {"167-242": [[204, -675], [285, -675], [285, -591], [204, -591]]}, "center": {"167-242": [245, -633]}}, {"id": 1622, "name": "Arona (blue archive)", "description": "Arona (アロナ, Arona), stylized as A.R.O.N.A, is a non-playable character in Blue Archive that resides in the mysterious Shittim Chest. She accompanies Sensei throughout their adventure in Kivotos as a guide.\n\nShe is the main mascot of Blue Archive, appearing as the figurehead on its website and social media. In addition to providing information and updates to Sensei, she also runs a series of videos called Arona Channel.", "links": {"website": ["https://bluearchive.fandom.com/wiki/Arona"], "subreddit": ["bluearchive"]}, "path": {"180-242": [[-871, 788], [-842, 788], [-841, 787], [-841, 788], [-840, 788], [-840, 817], [-871, 817], [-839, 818], [-872, 817], [-841, 816], [-871, 818]]}, "center": {"180-242": [-856, 802]}}, -{"id": 1623, "name": "Roger Federer", "description": "Roger Federer is a Swiss former professional tennis player. Federer was ranked world No. 1 in singles by the Association of Tennis Professionals for 310 weeks, including a record 237 consecutive weeks, and finished as the year-end No. 1 five times.", "links": {"website": ["https://en.wikipedia.org/wiki/Roger_Federer"]}, "path": {"191-258": [[-534, 815], [-523, 817], [-508, 833], [-516, 868], [-526, 878], [-535, 878], [-548, 864], [-549, 857], [-551, 854], [-553, 851], [-553, 846], [-551, 842], [-554, 835], [-552, 828], [-543, 820], [-541, 818]]}, "center": {"191-258": [-530, 839]}}, +{"id": 1623, "name": "Roger Federer", "description": "Roger Federer is a Swiss former professional tennis player. Federer was ranked world No. 1 in singles by the Association of Tennis Professionals for 310 weeks, including a record 237 consecutive weeks, and finished as the year-end No. 1 five times.", "links": {"website": ["https://en.wikipedia.org/wiki/Roger_Federer"]}, "path": {"191-258, T": [[-534, 815], [-523, 817], [-508, 833], [-516, 868], [-526, 878], [-535, 878], [-548, 864], [-549, 857], [-551, 854], [-553, 851], [-553, 846], [-551, 842], [-554, 835], [-552, 828], [-543, 820], [-541, 818]]}, "center": {"191-258, T": [-530, 839]}}, {"id": 1624, "name": "My Beautiful Dark Twisted Fantasy Album Cover", "description": "The cover art of the 2010 album by the artist Ye (formerly known as Kanye West) titled \"My Beautiful Dark Twisted Fantasy.\"", "links": {}, "path": {"176": [[669, 576], [672, 576], [672, 579], [669, 579]]}, "center": {"176": [671, 578]}}, -{"id": 1625, "name": "Pizzaface", "description": "Pizzaface is a giant floating cheesy pizza with two red pepperoni eyes, a beige mushroom nose, and a mouth, mustache, and eyebrows made out of green peppers. He can change and move the toppings on his face at will in order to make different facial expressions.\n\nPizzaface first appears in the intro of the game \"Pizza Tower\", in Peppino's pizzeria. Pizzaface starts off with a friendly look (having a tomato for a nose instead of a mushroom), but then he switches to looking like an evil gentleman's face, terrifying Peppino. He then uses a pointer to explain his evil plan to the chef, saying that the laser on top of his Pizza Tower will activate soon and obliterate his pizzeria. Pizzaface then flies back to the Pizza Tower, with Peppino right below him.", "links": {"website": ["https://pizzatower.fandom.com/wiki/Pizzaface"], "subreddit": ["PizzaTower"]}, "path": {"179-258": [[-878, -262], [-878, -255], [-877, -253], [-876, -252], [-875, -251], [-874, -250], [-872, -249], [-869, -248], [-864, -248], [-863, -249], [-861, -250], [-859, -252], [-858, -254], [-857, -257], [-857, -262], [-859, -266], [-862, -268], [-868, -269], [-871, -269], [-874, -267], [-876, -266]]}, "center": {"179-258": [-867, -258]}}, -{"id": 1626, "name": "Aqua", "description": "Aqua is a character from \"KONOSUBA -God's blessing on this wonderful world!\"\n\nOriginally created by Natsume Akatsuki as a Web Novel, Natsume Akatsuki would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime with a third season to be aired soon as this description is being written. This Pixel Art of Aqua has been adapted by !tsabrody from the first Ending sequence of \"Isekai Quartet\" on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the Konosuba subreddit.\n\nFun fact: Despite being a goddess, Aqua is often comically nicknamed \"Useless Goddess\" due to her inability to put her godly powers to use.", "links": {"website": ["https://konosuba.fandom.com/wiki/Aqua"], "subreddit": ["Konosuba"]}, "path": {"177-258": [[450, -1000], [449, -999], [449, -998], [449, -997], [450, -996], [450, -995], [451, -994], [450, -993], [449, -991], [450, -990], [451, -990], [452, -989], [453, -989], [453, -988], [453, -987], [453, -986], [452, -985], [452, -984], [453, -983], [453, -982], [453, -981], [452, -980], [453, -979], [458, -979], [459, -978], [460, -977], [460, -976], [461, -975], [461, -971], [462, -970], [463, -969], [466, -969], [466, -974], [466, -975], [465, -976], [466, -977], [467, -977], [468, -978], [468, -979], [469, -979], [469, -980], [470, -980], [471, -981], [471, -982], [470, -983], [469, -984], [469, -990], [468, -991], [468, -992], [467, -993], [466, -994], [465, -995], [463, -995], [463, -996], [462, -996], [461, -997], [460, -997], [459, -998], [459, -999], [459, -1000]]}, "center": {"177-258": [461, -987]}}, -{"id": 1627, "name": "Camellia", "description": "Camellia (Japanese: かめりあ), real name Masaya Ōya (Japanese: 大箭将也), also known as Cametek, is a Japanese electronic music producer famous for his prolific history of contributing songs to rhythm games, including Sound Voltex, osu!, and Dance Dance Revolution. His songs are known for being very challenging, often with diverse genre switches and complex rhythms.\n\nThis art was built by the r/camellia community and their allies.", "links": {"website": ["https://linktr.ee/cametek", "https://www.youtube.com/channel/UCV4ggxLd_Vz-I-ePGSKfFog", "https://open.spotify.com/artist/4bwIf0yXJf0F9AmOl2J78M"], "subreddit": ["Camellia"], "discord": ["QWvyXJCG"]}, "path": {"177-258": [[-1374, -287], [-1500, -287], [-1500, -327], [-1374, -327]]}, "center": {"177-258": [-1437, -307]}}, -{"id": 1628, "name": "Resistance in Ingress", "description": "The key represents the symbol of the Resistance faction of the game Ingress, an augmented reality/alternate reality computer game. Chilean agents of the Resistance started it and other RES agents of the world have seen their graphics and have taken over the representation", "links": {}, "path": {"177-258": [[-968, -369], [-968, -331], [-946, -331], [-946, -369]]}, "center": {"177-258": [-957, -350]}}, -{"id": 1629, "name": "Bembel", "description": "A traditional earthenware jug used to serve apple wine in the south of the german federal province of Hessen. It is a cultural asset known all throughout Germany.", "links": {"website": ["https://de.wikipedia.org/wiki/Bembel"]}, "path": {"191-258": [[469, -581], [494, -581], [498, -576], [495, -569], [486, -557], [484, -551], [472, -551], [468, -561], [467, -570], [473, -575], [473, -577], [468, -581]]}, "center": {"191-258": [479, -566]}}, -{"id": 1630, "name": "Tux", "description": "Tux is a penguin character and the official brand character of Linux, a family of open-source operating systems. Originally created as an entry to a Linux logo competition, Tux is the most commonly used icon for Linux, although different Linux distributions depict Tux in various styles. The character is used in many other Linux programs and as a general symbol of Linux.", "links": {"website": ["https://en.wikipedia.org/wiki/Tux_(mascot)", "https://www.linuxfoundation.org/", "https://en.wikipedia.org/wiki/Linux"], "subreddit": ["linux"]}, "path": {"119-258": [[133, -365], [136, -365], [138, -363], [139, -357], [143, -350], [144, -345], [144, -341], [140, -338], [139, -338], [136, -341], [133, -340], [130, -338], [127, -338], [124, -342], [124, -344], [125, -345], [125, -349], [130, -356], [130, -363]]}, "center": {"119-258": [134, -348]}}, -{"id": 1631, "name": "German Twitch Streamer Milschbaum Logo", "description": "German Twitch Streamer Milschbaum Logo\n\nMade in Stream by HollaDieWaldFee on Stream.\n\nExpanded by Community Discord with reference to her extensively used rhetorical question \"Gell?\" \n\nThe logo is a tree with some milk cartons hanging from it. The tree is in the universe where you can see stars.", "links": {"website": ["https://www.twitch.tv/holladiewaldfee", "https://www.twitch.tv/milschbaum"], "subreddit": ["Milschbaum"]}, "path": {"188-232": [[-1286, 797], [-1286, 813], [-1264, 813], [-1263, 791], [-1268, 791], [-1274, 799], [-1275, 802], [-1281, 802]], "233-258": [[-1264, 810], [-1293, 810], [-1293, 787], [-1280, 802], [-1276, 802], [-1266, 789], [-1263, 783]]}, "center": {"188-232": [-1271, 806], "233-258": [-1287, 803]}}, -{"id": 1632, "name": "Coat of arms of Bavaria", "description": "Bavaria is a Bundesland in Germany\n\nDue to cultural similarities and the same dialect, Bavarian and Austrian are sometimes considered the same as opposed to Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Bavaria"], "subreddit": ["bavaria"]}, "path": {"57-158": [[13, -56], [21, -56], [21, -50], [18, -47], [16, -47], [13, -50]], "175-258": [[13, -57], [21, -57], [21, -50], [18, -47], [16, -47], [13, -50]]}, "center": {"57-158": [17, -52], "175-258": [17, -53]}}, -{"id": 1633, "name": "🍪 from keksMAU", "description": "MAU is a german Dragon Vtuber and love Cookies /ᐠ. 。.ᐟ\\ ᴹᵃᵘˎˊ˗ 🍪", "links": {"website": ["https://www.twitch.tv/keksmau", "https://twitter.com/keksmau"], "discord": ["WuVRBpM4Ts"]}, "path": {"187-258": [[147, -344], [148, -344], [148, -343], [147, -343]]}, "center": {"187-258": [148, -343]}}, -{"id": 1634, "name": "Oasis", "description": "Oasis were an English rock band formed in Manchester in 1991. \nThey've made a bunch of famous musics, like Wonderwall, Don't Look Back in Anger and D'You Know What I Mean.", "links": {"website": ["https://en.wikipedia.org/wiki/Oasis_(band)"]}, "path": {"185-258": [[-1141, -79], [-1141, -68], [-1114, -68], [-1114, -79]]}, "center": {"185-258": [-1127, -73]}}, -{"id": 1635, "name": "Kazakhstan", "description": "Kazakhstan, a Central Asian country and former Soviet republic, extends from the Caspian Sea in the west to the Altai Mountains at its eastern border with China and Russia.\n- 9th largest country by land area\n- shares the longest continuous international border with Russian Federation\n- Capital - Astana (was renamed 3 times), biggest city - Almaty\n- homeland for Baikonur Cosmodrome (leased to Russia) spaceport where the 1st person in the space - Yuri Gagarin, started his flight\n- currency - Tenge\n- languages: kazakh, russian", "links": {"website": ["https://en.wikipedia.org/wiki/Kazakhstan"], "subreddit": ["kazakhstan"]}, "path": {"162-258": [[-871, 881], [-871, 914], [-840, 914], [-840, 885], [-845, 885], [-847, 883], [-847, 881], [-869, 882]]}, "center": {"162-258": [-855, 898]}}, -{"id": 1636, "name": "Milkakuh", "description": "Milka is a famous chocolate brand in German speaking countries.\n\nAlthough originally Swiss, it is also produced in Austria, Bludenz nowadays.", "links": {"website": ["https://en.wikipedia.org/wiki/Milka"]}, "path": {"49-258": [[-158, -31], [-161, -33], [-163, -34], [-162, -37], [-163, -38], [-162, -40], [-159, -40], [-153, -40], [-153, -38], [-143, -37], [-140, -33], [-141, -32], [-143, -34], [-143, -27], [-147, -26], [-147, -28], [-148, -28], [-149, -26], [-158, -27]]}, "center": {"49-258": [-152, -32]}}, -{"id": 1637, "name": ";:mr==) - the goat hieroglyph", "description": ";:mr==) is a joke between friends. On a discord server someone tried to type the word \"GOAT\" but instead ended up typing ;:mr==) for unknown reasons. So this cypher means \"Greatest Of All Time\" (GOAT).", "links": {}, "path": {"191-258": [[-975, -665], [-950, -665], [-950, -659], [-975, -659]]}, "center": {"191-258": [-962, -662]}}, +{"id": 1625, "name": "Pizzaface", "description": "Pizzaface is a giant floating cheesy pizza with two red pepperoni eyes, a beige mushroom nose, and a mouth, mustache, and eyebrows made out of green peppers. He can change and move the toppings on his face at will in order to make different facial expressions.\n\nPizzaface first appears in the intro of the game \"Pizza Tower\", in Peppino's pizzeria. Pizzaface starts off with a friendly look (having a tomato for a nose instead of a mushroom), but then he switches to looking like an evil gentleman's face, terrifying Peppino. He then uses a pointer to explain his evil plan to the chef, saying that the laser on top of his Pizza Tower will activate soon and obliterate his pizzeria. Pizzaface then flies back to the Pizza Tower, with Peppino right below him.", "links": {"website": ["https://pizzatower.fandom.com/wiki/Pizzaface"], "subreddit": ["PizzaTower"]}, "path": {"179-258, T": [[-878, -262], [-878, -255], [-877, -253], [-876, -252], [-875, -251], [-874, -250], [-872, -249], [-869, -248], [-864, -248], [-863, -249], [-861, -250], [-859, -252], [-858, -254], [-857, -257], [-857, -262], [-859, -266], [-862, -268], [-868, -269], [-871, -269], [-874, -267], [-876, -266]]}, "center": {"179-258, T": [-867, -258]}}, +{"id": 1626, "name": "Aqua", "description": "Aqua is a character from \"KONOSUBA -God's blessing on this wonderful world!\"\n\nOriginally created by Natsume Akatsuki as a Web Novel, Natsume Akatsuki would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime with a third season to be aired soon as this description is being written. This Pixel Art of Aqua has been adapted by !tsabrody from the first Ending sequence of \"Isekai Quartet\" on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the Konosuba subreddit.\n\nFun fact: Despite being a goddess, Aqua is often comically nicknamed \"Useless Goddess\" due to her inability to put her godly powers to use.", "links": {"website": ["https://konosuba.fandom.com/wiki/Aqua"], "subreddit": ["Konosuba"]}, "path": {"177-258, T": [[450, -1000], [449, -999], [449, -998], [449, -997], [450, -996], [450, -995], [451, -994], [450, -993], [449, -991], [450, -990], [451, -990], [452, -989], [453, -989], [453, -988], [453, -987], [453, -986], [452, -985], [452, -984], [453, -983], [453, -982], [453, -981], [452, -980], [453, -979], [458, -979], [459, -978], [460, -977], [460, -976], [461, -975], [461, -971], [462, -970], [463, -969], [466, -969], [466, -974], [466, -975], [465, -976], [466, -977], [467, -977], [468, -978], [468, -979], [469, -979], [469, -980], [470, -980], [471, -981], [471, -982], [470, -983], [469, -984], [469, -990], [468, -991], [468, -992], [467, -993], [466, -994], [465, -995], [463, -995], [463, -996], [462, -996], [461, -997], [460, -997], [459, -998], [459, -999], [459, -1000]]}, "center": {"177-258, T": [461, -987]}}, +{"id": 1627, "name": "Camellia", "description": "Camellia (Japanese: かめりあ), real name Masaya Ōya (Japanese: 大箭将也), also known as Cametek, is a Japanese electronic music producer famous for his prolific history of contributing songs to rhythm games, including Sound Voltex, osu!, and Dance Dance Revolution. His songs are known for being very challenging, often with diverse genre switches and complex rhythms.\n\nThis art was built by the r/camellia community and their allies.", "links": {"website": ["https://linktr.ee/cametek", "https://www.youtube.com/channel/UCV4ggxLd_Vz-I-ePGSKfFog", "https://open.spotify.com/artist/4bwIf0yXJf0F9AmOl2J78M"], "subreddit": ["Camellia"], "discord": ["QWvyXJCG"]}, "path": {"177-258, T": [[-1374, -287], [-1500, -287], [-1500, -327], [-1374, -327]]}, "center": {"177-258, T": [-1437, -307]}}, +{"id": 1628, "name": "Resistance in Ingress", "description": "The key represents the symbol of the Resistance faction of the game Ingress, an augmented reality/alternate reality computer game. Chilean agents of the Resistance started it and other RES agents of the world have seen their graphics and have taken over the representation", "links": {}, "path": {"177-258, T": [[-968, -369], [-968, -331], [-946, -331], [-946, -369]]}, "center": {"177-258, T": [-957, -350]}}, +{"id": 1629, "name": "Bembel", "description": "A traditional earthenware jug used to serve apple wine in the south of the german federal province of Hessen. It is a cultural asset known all throughout Germany.", "links": {"website": ["https://de.wikipedia.org/wiki/Bembel"]}, "path": {"191-258, T": [[469, -581], [494, -581], [498, -576], [495, -569], [486, -557], [484, -551], [472, -551], [468, -561], [467, -570], [473, -575], [473, -577], [468, -581]]}, "center": {"191-258, T": [479, -566]}}, +{"id": 1630, "name": "Tux", "description": "Tux is a penguin character and the official brand character of Linux, a family of open-source operating systems. Originally created as an entry to a Linux logo competition, Tux is the most commonly used icon for Linux, although different Linux distributions depict Tux in various styles. The character is used in many other Linux programs and as a general symbol of Linux.", "links": {"website": ["https://en.wikipedia.org/wiki/Tux_(mascot)", "https://www.linuxfoundation.org/", "https://en.wikipedia.org/wiki/Linux"], "subreddit": ["linux"]}, "path": {"119-258, T": [[133, -365], [136, -365], [138, -363], [139, -357], [143, -350], [144, -345], [144, -341], [140, -338], [139, -338], [136, -341], [133, -340], [130, -338], [127, -338], [124, -342], [124, -344], [125, -345], [125, -349], [130, -356], [130, -363]]}, "center": {"119-258, T": [134, -348]}}, +{"id": 1631, "name": "German Twitch Streamer Milschbaum Logo", "description": "German Twitch Streamer Milschbaum Logo\n\nMade in Stream by HollaDieWaldFee on Stream.\n\nExpanded by Community Discord with reference to her extensively used rhetorical question \"Gell?\" \n\nThe logo is a tree with some milk cartons hanging from it. The tree is in the universe where you can see stars.", "links": {"website": ["https://www.twitch.tv/holladiewaldfee", "https://www.twitch.tv/milschbaum"], "subreddit": ["Milschbaum"]}, "path": {"188-232": [[-1286, 797], [-1286, 813], [-1264, 813], [-1263, 791], [-1268, 791], [-1274, 799], [-1275, 802], [-1281, 802]], "233-258, T": [[-1264, 810], [-1293, 810], [-1293, 787], [-1280, 802], [-1276, 802], [-1266, 789], [-1263, 783]]}, "center": {"188-232": [-1271, 806], "233-258, T": [-1287, 803]}}, +{"id": 1632, "name": "Coat of arms of Bavaria", "description": "Bavaria is a Bundesland in Germany\n\nDue to cultural similarities and the same dialect, Bavarian and Austrian are sometimes considered the same as opposed to Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Bavaria"], "subreddit": ["bavaria"]}, "path": {"57-158": [[13, -56], [21, -56], [21, -50], [18, -47], [16, -47], [13, -50]], "175-258, T": [[13, -57], [21, -57], [21, -50], [18, -47], [16, -47], [13, -50]]}, "center": {"57-158": [17, -52], "175-258, T": [17, -53]}}, +{"id": 1633, "name": "🍪 from keksMAU", "description": "MAU is a german Dragon Vtuber and love Cookies /ᐠ. 。.ᐟ\\ ᴹᵃᵘˎˊ˗ 🍪", "links": {"website": ["https://www.twitch.tv/keksmau", "https://twitter.com/keksmau"], "discord": ["WuVRBpM4Ts"]}, "path": {"187-258, T": [[147, -344], [148, -344], [148, -343], [147, -343]]}, "center": {"187-258, T": [148, -343]}}, +{"id": 1634, "name": "Oasis", "description": "Oasis were an English rock band formed in Manchester in 1991. \nThey've made a bunch of famous musics, like Wonderwall, Don't Look Back in Anger and D'You Know What I Mean.", "links": {"website": ["https://en.wikipedia.org/wiki/Oasis_(band)"]}, "path": {"185-258, T": [[-1141, -79], [-1141, -68], [-1114, -68], [-1114, -79]]}, "center": {"185-258, T": [-1127, -73]}}, +{"id": 1635, "name": "Kazakhstan", "description": "Kazakhstan, a Central Asian country and former Soviet republic, extends from the Caspian Sea in the west to the Altai Mountains at its eastern border with China and Russia.\n- 9th largest country by land area\n- shares the longest continuous international border with Russian Federation\n- Capital - Astana (was renamed 3 times), biggest city - Almaty\n- homeland for Baikonur Cosmodrome (leased to Russia) spaceport where the 1st person in the space - Yuri Gagarin, started his flight\n- currency - Tenge\n- languages: kazakh, russian", "links": {"website": ["https://en.wikipedia.org/wiki/Kazakhstan"], "subreddit": ["kazakhstan"]}, "path": {"162-258, T": [[-871, 881], [-871, 914], [-840, 914], [-840, 885], [-845, 885], [-847, 883], [-847, 881], [-869, 882]]}, "center": {"162-258, T": [-855, 898]}}, +{"id": 1636, "name": "Milkakuh", "description": "Milka is a famous chocolate brand in German speaking countries.\n\nAlthough originally Swiss, it is also produced in Austria, Bludenz nowadays.", "links": {"website": ["https://en.wikipedia.org/wiki/Milka"]}, "path": {"49-258, T": [[-158, -31], [-161, -33], [-163, -34], [-162, -37], [-163, -38], [-162, -40], [-159, -40], [-153, -40], [-153, -38], [-143, -37], [-140, -33], [-141, -32], [-143, -34], [-143, -27], [-147, -26], [-147, -28], [-148, -28], [-149, -26], [-158, -27]]}, "center": {"49-258, T": [-152, -32]}}, +{"id": 1637, "name": ";:mr==) - the goat hieroglyph", "description": ";:mr==) is a joke between friends. On a discord server someone tried to type the word \"GOAT\" but instead ended up typing ;:mr==) for unknown reasons. So this cypher means \"Greatest Of All Time\" (GOAT).", "links": {}, "path": {"191-258, T": [[-975, -665], [-950, -665], [-950, -659], [-975, -659]]}, "center": {"191-258, T": [-962, -662]}}, {"id": 1638, "name": "Helvetia", "description": "Helvetia is an allegorical female figure personifying the Swiss Confederation. The name is also used to designate Switzerland, notably on postage stamps.", "links": {"website": ["https://fr.wikipedia.org/wiki/Helvetia#:~:text=Helvetia%20est%20une%20figure%20all%C3%A9gorique,du%20Palais%20f%C3%A9d%C3%A9ral%20de%20Berne."]}, "path": {"150": [[861, -362], [866, -360], [868, -357], [869, -353], [867, -350], [865, -348], [867, -347], [869, -345], [872, -341], [873, -335], [871, -324], [873, -320], [876, -318], [884, -316], [884, -304], [873, -288], [870, -291], [850, -292], [849, -300], [846, -306], [849, -312], [846, -318], [843, -319], [843, -328], [844, -328], [844, -330], [844, -332], [843, -332], [843, -335], [843, -338], [842, -338], [842, -345], [841, -345], [841, -348], [840, -348], [841, -349], [840, -350], [839, -351], [839, -353], [840, -356], [841, -354], [841, -353], [842, -352], [842, -350], [841, -349], [842, -348], [845, -330], [848, -333], [850, -338], [852, -341], [855, -344], [859, -347], [860, -347]]}, "center": {"150": [865, -307]}}, -{"id": 1639, "name": "Hoalid Regragui", "description": "Moroccan professional football manager and former player who played as a right-back. He is the head coach of the Morocco national team.", "links": {}, "path": {"183-258": [[777, 779], [780, 776], [781, 773], [780, 770], [779, 763], [776, 763], [774, 760], [772, 755], [770, 748], [775, 745], [774, 735], [778, 727], [784, 721], [787, 719], [806, 719], [809, 722], [814, 728], [816, 732], [817, 733], [819, 760], [822, 760], [825, 755], [828, 752], [828, 741], [830, 739], [830, 735], [831, 733], [832, 728], [835, 724], [838, 721], [860, 721], [861, 723], [867, 727], [868, 729], [868, 737], [869, 747], [869, 755], [868, 756], [868, 763], [866, 765], [859, 768], [837, 770], [831, 767], [823, 762], [819, 762], [817, 764], [815, 765], [815, 777], [817, 779]]}, "center": {"183-258": [796, 750]}}, -{"id": 1640, "name": "Superfighters Deluxe", "description": "Superfighters Deluxe is a chaotic 2D brawler-shooter-platformer game in which various gameplay systems interlock to create absurd action movie chaos. It contains several game modes that can be played in singleplayer, online, or local multiplayer.", "links": {"website": ["https://mythologicinteractive.com/SuperfightersDeluxe"], "subreddit": ["superfightersdeluxe"]}, "path": {"204-237": [[-1330, -948], [-1330, -943], [-1334, -943], [-1334, -939], [-1332, -939], [-1332, -934], [-1331, -934], [-1331, -929], [-1311, -929], [-1311, -930], [-1299, -930], [-1299, -933], [-1298, -934], [-1298, -937], [-1297, -938], [-1297, -940], [-1299, -942], [-1300, -942], [-1300, -944], [-1302, -946], [-1302, -953], [-1301, -954], [-1301, -956], [-1303, -958], [-1307, -958], [-1312, -953], [-1312, -950], [-1317, -950], [-1319, -952], [-1320, -952], [-1320, -954], [-1322, -954], [-1322, -951], [-1323, -950], [-1327, -950], [-1327, -948]], "175-203": [[-1310, -951], [-1310, -946], [-1313, -946], [-1315, -944], [-1315, -941], [-1312, -938], [-1310, -938], [-1310, -936], [-1313, -932], [-1313, -930], [-1299, -930], [-1299, -933], [-1298, -934], [-1298, -937], [-1297, -937], [-1297, -940], [-1299, -942], [-1300, -942], [-1300, -944], [-1302, -946], [-1302, -951]], "238-258": [[-1346, -942], [-1348, -940], [-1348, -929], [-1347, -929], [-1347, -919], [-1345, -917], [-1335, -917], [-1335, -916], [-1332, -913], [-1329, -913], [-1325, -917], [-1325, -920], [-1328, -923], [-1310, -923], [-1310, -924], [-1298, -924], [-1297, -923], [-1292, -923], [-1290, -926], [-1290, -933], [-1289, -933], [-1286, -936], [-1286, -940], [-1288, -942], [-1291, -942], [-1292, -943], [-1293, -943], [-1295, -941], [-1298, -941], [-1300, -942], [-1300, -944], [-1302, -946], [-1302, -952], [-1301, -952], [-1298, -955], [-1298, -956], [-1297, -957], [-1299, -959], [-1301, -959], [-1304, -961], [-1308, -961], [-1308, -959], [-1310, -959], [-1310, -956], [-1314, -956], [-1316, -954], [-1322, -954], [-1322, -951], [-1323, -950], [-1327, -950], [-1327, -948], [-1330, -948], [-1330, -943], [-1334, -943], [-1334, -942]]}, "center": {"204-237": [-1319, -940], "175-203": [-1304, -937], "238-258": [-1314, -938]}}, +{"id": 1639, "name": "Hoalid Regragui", "description": "Moroccan professional football manager and former player who played as a right-back. He is the head coach of the Morocco national team.", "links": {}, "path": {"183-258, T": [[777, 779], [780, 776], [781, 773], [780, 770], [779, 763], [776, 763], [774, 760], [772, 755], [770, 748], [775, 745], [774, 735], [778, 727], [784, 721], [787, 719], [806, 719], [809, 722], [814, 728], [816, 732], [817, 733], [819, 760], [822, 760], [825, 755], [828, 752], [828, 741], [830, 739], [830, 735], [831, 733], [832, 728], [835, 724], [838, 721], [860, 721], [861, 723], [867, 727], [868, 729], [868, 737], [869, 747], [869, 755], [868, 756], [868, 763], [866, 765], [859, 768], [837, 770], [831, 767], [823, 762], [819, 762], [817, 764], [815, 765], [815, 777], [817, 779]]}, "center": {"183-258, T": [796, 750]}}, +{"id": 1640, "name": "Superfighters Deluxe", "description": "Superfighters Deluxe is a chaotic 2D brawler-shooter-platformer game in which various gameplay systems interlock to create absurd action movie chaos. It contains several game modes that can be played in singleplayer, online, or local multiplayer.", "links": {"website": ["https://mythologicinteractive.com/SuperfightersDeluxe"], "subreddit": ["superfightersdeluxe"]}, "path": {"204-237": [[-1330, -948], [-1330, -943], [-1334, -943], [-1334, -939], [-1332, -939], [-1332, -934], [-1331, -934], [-1331, -929], [-1311, -929], [-1311, -930], [-1299, -930], [-1299, -933], [-1298, -934], [-1298, -937], [-1297, -938], [-1297, -940], [-1299, -942], [-1300, -942], [-1300, -944], [-1302, -946], [-1302, -953], [-1301, -954], [-1301, -956], [-1303, -958], [-1307, -958], [-1312, -953], [-1312, -950], [-1317, -950], [-1319, -952], [-1320, -952], [-1320, -954], [-1322, -954], [-1322, -951], [-1323, -950], [-1327, -950], [-1327, -948]], "175-203": [[-1310, -951], [-1310, -946], [-1313, -946], [-1315, -944], [-1315, -941], [-1312, -938], [-1310, -938], [-1310, -936], [-1313, -932], [-1313, -930], [-1299, -930], [-1299, -933], [-1298, -934], [-1298, -937], [-1297, -937], [-1297, -940], [-1299, -942], [-1300, -942], [-1300, -944], [-1302, -946], [-1302, -951]], "238-258, T": [[-1346, -942], [-1348, -940], [-1348, -929], [-1347, -929], [-1347, -919], [-1345, -917], [-1335, -917], [-1335, -916], [-1332, -913], [-1329, -913], [-1325, -917], [-1325, -920], [-1328, -923], [-1310, -923], [-1310, -924], [-1298, -924], [-1297, -923], [-1292, -923], [-1290, -926], [-1290, -933], [-1289, -933], [-1286, -936], [-1286, -940], [-1288, -942], [-1291, -942], [-1292, -943], [-1293, -943], [-1295, -941], [-1298, -941], [-1300, -942], [-1300, -944], [-1302, -946], [-1302, -952], [-1301, -952], [-1298, -955], [-1298, -956], [-1297, -957], [-1299, -959], [-1301, -959], [-1304, -961], [-1308, -961], [-1308, -959], [-1310, -959], [-1310, -956], [-1314, -956], [-1316, -954], [-1322, -954], [-1322, -951], [-1323, -950], [-1327, -950], [-1327, -948], [-1330, -948], [-1330, -943], [-1334, -943], [-1334, -942]]}, "center": {"204-237": [-1319, -940], "175-203": [-1304, -937], "238-258, T": [-1314, -938]}}, {"id": 1641, "name": "Book Of Embers", "description": "Book of Embers (or BoE for short) is a discord server focused on roleplaying as nations and empires. it consists of around 30 members. The BoE sign was created by u/NeroPossiblyBi.", "links": {"subreddit": ["bookofembers"], "discord": ["wC5USxzxyj"]}, "path": {"182-189": [[-1272, -332], [-1272, -326], [-1260, -326], [-1261, -332], [-1263, -332], [-1264, -330], [-1268, -330]]}, "center": {"182-189": [-1270, -328]}}, {"id": 1642, "name": "Logo of Schneile", "description": "Schneile is a German speaking streamer", "links": {}, "path": {"66-217": [[739, -362], [741, -360], [746, -362], [746, -365], [740, -367], [735, -366], [732, -365], [732, -362], [736, -360]]}, "center": {"66-217": [741, -364]}}, -{"id": 1643, "name": "The Legend of Zelda", "description": "Art from the Legend of Zelda video game franchise by Nintendo. \nIt features the Triforce of Hyrule and Lorule atop the Master Sword. Below are depictions of Link (Left) and Zelda (Right) from the most recent entry as of 2023, Tears of the Kingdom. On the further right is half of Majora's Mask and a Korok.", "links": {}, "path": {"155-156": [[-835, 527], [-841, 527], [-841, 519], [-861, 499], [-857, 495], [-857, 491], [-851, 485], [-850, 481], [-854, 477], [-854, 473], [-850, 469], [-850, 465], [-839, 455], [-839, 453], [-837, 453], [-837, 454], [-826, 465], [-826, 469], [-825, 470], [-822, 473], [-822, 477], [-826, 481], [-826, 483], [-823, 487], [-823, 507], [-835, 518]], "124-154": [[-860, 499], [-857, 496], [-857, 495], [-856, 494], [-856, 490], [-850, 483], [-850, 481], [-854, 477], [-854, 473], [-850, 469], [-850, 465], [-838, 453], [-826, 465], [-826, 469], [-822, 473], [-822, 477], [-826, 481], [-826, 483], [-823, 487], [-823, 499]], "114-123": [[-855, 499], [-840, 484], [-840, 475], [-843, 478], [-844, 477], [-844, 474], [-842, 471], [-840, 471], [-840, 465], [-838, 463], [-836, 465], [-836, 471], [-833, 472], [-833, 473], [-832, 474], [-832, 477], [-833, 478], [-836, 475], [-836, 484], [-823, 497], [-823, 499]], "157-258": [[-862, 503], [-862, 532], [-856, 532], [-856, 542], [-830, 542], [-830, 537], [-805, 537], [-805, 515], [-814, 515], [-814, 499], [-820, 499], [-820, 498], [-821, 497], [-821, 496], [-822, 495], [-822, 494], [-834, 482], [-834, 480], [-835, 479], [-835, 478], [-834, 477], [-834, 473], [-832, 471], [-831, 472], [-831, 474], [-830, 475], [-829, 475], [-828, 476], [-826, 476], [-826, 474], [-827, 473], [-827, 472], [-829, 470], [-828, 469], [-828, 468], [-829, 468], [-830, 469], [-835, 469], [-835, 466], [-836, 466], [-836, 457], [-835, 457], [-835, 455], [-838, 452], [-841, 455], [-841, 457], [-840, 457], [-840, 466], [-841, 466], [-841, 469], [-846, 469], [-847, 468], [-848, 468], [-848, 469], [-847, 470], [-849, 472], [-849, 473], [-850, 474], [-850, 475], [-849, 476], [-848, 476], [-847, 475], [-846, 475], [-845, 474], [-845, 472], [-844, 471], [-843, 472], [-842, 472], [-842, 477], [-841, 478], [-841, 479], [-842, 480], [-842, 482], [-859, 499], [-856, 502], [-856, 503]]}, "center": {"155-156": [-839, 497], "124-154": [-838, 475], "114-123": [-838, 492], "157-258": [-837, 515]}}, +{"id": 1643, "name": "The Legend of Zelda", "description": "Art from the Legend of Zelda video game franchise by Nintendo. \nIt features the Triforce of Hyrule and Lorule atop the Master Sword. Below are depictions of Link (Left) and Zelda (Right) from the most recent entry as of 2023, Tears of the Kingdom. On the further right is half of Majora's Mask and a Korok.", "links": {}, "path": {"155-156": [[-835, 527], [-841, 527], [-841, 519], [-861, 499], [-857, 495], [-857, 491], [-851, 485], [-850, 481], [-854, 477], [-854, 473], [-850, 469], [-850, 465], [-839, 455], [-839, 453], [-837, 453], [-837, 454], [-826, 465], [-826, 469], [-825, 470], [-822, 473], [-822, 477], [-826, 481], [-826, 483], [-823, 487], [-823, 507], [-835, 518]], "124-154": [[-860, 499], [-857, 496], [-857, 495], [-856, 494], [-856, 490], [-850, 483], [-850, 481], [-854, 477], [-854, 473], [-850, 469], [-850, 465], [-838, 453], [-826, 465], [-826, 469], [-822, 473], [-822, 477], [-826, 481], [-826, 483], [-823, 487], [-823, 499]], "114-123": [[-855, 499], [-840, 484], [-840, 475], [-843, 478], [-844, 477], [-844, 474], [-842, 471], [-840, 471], [-840, 465], [-838, 463], [-836, 465], [-836, 471], [-833, 472], [-833, 473], [-832, 474], [-832, 477], [-833, 478], [-836, 475], [-836, 484], [-823, 497], [-823, 499]], "157-258, T": [[-862, 503], [-862, 532], [-856, 532], [-856, 542], [-830, 542], [-830, 537], [-805, 537], [-805, 515], [-814, 515], [-814, 499], [-820, 499], [-820, 498], [-821, 497], [-821, 496], [-822, 495], [-822, 494], [-834, 482], [-834, 480], [-835, 479], [-835, 478], [-834, 477], [-834, 473], [-832, 471], [-831, 472], [-831, 474], [-830, 475], [-829, 475], [-828, 476], [-826, 476], [-826, 474], [-827, 473], [-827, 472], [-829, 470], [-828, 469], [-828, 468], [-829, 468], [-830, 469], [-835, 469], [-835, 466], [-836, 466], [-836, 457], [-835, 457], [-835, 455], [-838, 452], [-841, 455], [-841, 457], [-840, 457], [-840, 466], [-841, 466], [-841, 469], [-846, 469], [-847, 468], [-848, 468], [-848, 469], [-847, 470], [-849, 472], [-849, 473], [-850, 474], [-850, 475], [-849, 476], [-848, 476], [-847, 475], [-846, 475], [-845, 474], [-845, 472], [-844, 471], [-843, 472], [-842, 472], [-842, 477], [-841, 478], [-841, 479], [-842, 480], [-842, 482], [-859, 499], [-856, 502], [-856, 503]]}, "center": {"155-156": [-839, 497], "124-154": [-838, 475], "114-123": [-838, 492], "157-258, T": [-837, 515]}}, {"id": 1644, "name": "Queen Elizabeth II's head", "description": "A memorial shadow commemorating the former Queen of the United Kingdom", "links": {"website": ["https://en.wikipedia.org/wiki/Elizabeth_II"], "subreddit": ["ukplace"], "discord": ["ukplace"]}, "path": {"93-139": [[-273, -260], [-275, -263], [-273, -266], [-276, -259], [-277, -266], [-284, -270], [-275, -275], [-277, -277], [-279, -279], [-280, -278], [-266, -284], [-262, -294], [-265, -299], [-266, -304], [-268, -308], [-269, -312], [-272, -315], [-276, -319], [-277, -321], [-279, -322], [-283, -320], [-285, -318], [-286, -316], [-291, -315], [-293, -313], [-295, -309], [-297, -307], [-300, -305], [-297, -299], [-295, -297], [-295, -295], [-296, -293], [-296, -289], [-295, -286], [-294, -284], [-290, -284], [-287, -283], [-288, -281], [-288, -278], [-284, -278], [-281, -278], [-279, -278], [-277, -276], [-277, -274], [-278, -272], [-274, -273], [-275, -276], [-274, -279], [-277, -278], [-276, -277], [-275, -272], [-273, -268], [-274, -265], [-273, -269]], "152-168": [[-273, -260], [-277, -260], [-276, -263], [-280, -268], [-283, -269], [-278, -271], [-277, -273], [-278, -275], [-279, -278], [-288, -278], [-288, -283], [-294, -284], [-296, -287], [-296, -293], [-294, -297], [-300, -303], [-289, -317], [-277, -322], [-269, -314], [-267, -307], [-265, -304], [-265, -299], [-263, -296], [-261, -294], [-263, -293], [-263, -290], [-264, -287], [-265, -284], [-267, -283], [-268, -282], [-272, -283], [-273, -281], [-275, -278], [-275, -275], [-274, -270], [-273, -266], [-275, -263]]}, "center": {"93-139": [-280, -298], "152-168": [-280, -299]}}, -{"id": 1645, "name": "gekte", "description": "german leftleaning subreddit, font in colours of the trans flag", "links": {"subreddit": ["gekte"]}, "path": {"187-258": [[-1500, -389], [-1500, -381], [-1459, -381], [-1459, -389]]}, "center": {"187-258": [-1479, -385]}}, -{"id": 1646, "name": "Perxitaa , Momonkunn , VioletaG and Missefe", "description": "Perxitaa, Momonkunn VioletaG and Missefe are a group of streamers on twitch, they all do GTA Roleplay live as well as do variety, Perxitaa Momonkunn and Missefe are remembered for roleplaying on the Infamous server with the following characters: Horacio Perez Viktor Volkov and Alanna Monnier While VioletaG makes beautiful live streams of the best variety of content", "links": {"website": ["https://www.twitch.tv/perxitaa", "https://www.twitch.tv/momonkunn", "https://www.twitch.tv/violetag", "https://www.twitch.tv/missefe"], "subreddit": ["volkacio"], "discord": ["vSSfSWHf", "JsHMzFsv", "754420308735164546"]}, "path": {"185-258": [[-1038, -6], [-1038, 13], [-991, 13], [-991, 4], [-999, 4], [-1000, -6]]}, "center": {"185-258": [-1014, 4]}}, +{"id": 1645, "name": "gekte", "description": "german leftleaning subreddit, font in colours of the trans flag", "links": {"subreddit": ["gekte"]}, "path": {"187-258, T": [[-1500, -389], [-1500, -381], [-1459, -381], [-1459, -389]]}, "center": {"187-258, T": [-1479, -385]}}, +{"id": 1646, "name": "Perxitaa , Momonkunn , VioletaG and Missefe", "description": "Perxitaa, Momonkunn VioletaG and Missefe are a group of streamers on twitch, they all do GTA Roleplay live as well as do variety, Perxitaa Momonkunn and Missefe are remembered for roleplaying on the Infamous server with the following characters: Horacio Perez Viktor Volkov and Alanna Monnier While VioletaG makes beautiful live streams of the best variety of content", "links": {"website": ["https://www.twitch.tv/perxitaa", "https://www.twitch.tv/momonkunn", "https://www.twitch.tv/violetag", "https://www.twitch.tv/missefe"], "subreddit": ["volkacio"], "discord": ["vSSfSWHf", "JsHMzFsv", "754420308735164546"]}, "path": {"185-258, T": [[-1038, -6], [-1038, 13], [-991, 13], [-991, 4], [-999, 4], [-1000, -6]]}, "center": {"185-258, T": [-1014, 4]}}, {"id": 1647, "name": "Made in Abyss", "description": "Made in Abyss is a manga created by Akihito Tsukushi where the story is about a giant pit in the middle of a island with tales and mysteries", "links": {"subreddit": ["madeinabyss"]}, "path": {"160-175": [[-221, 523], [-204, 523], [-204, 547], [-221, 547]]}, "center": {"160-175": [-212, 535]}}, -{"id": 1648, "name": "JoJo's Bizarre Adventure Logo & Symbols", "description": "This artwork made by a handful of JoJo's fans whom were not representing an official subreddit after it was announced that said subreddits would not be taking place in the event. \n\nCreated with the aide of multiple different communities (notably Berserk, TF2, Femboys, Yakuza, One Piece, Jerma985, and Naruto) it depicts the logo of Hirohito Araki's manga: JoJo's Bizarre Adventure.\n\nBelow it are symbols from each of the 9 parts of the manga. From right to left (Parts 1-9): The Stone Mask, The Red Stone of Aja, The logo of Araki's manga studio Lucky Land/symbol on Jotaro's hat, The Stand Arrow (or Josuke's Peace Sign depending on who you ask), Giorno's Ladybug Brooch, Jolyne's Butterfly Tattoo, One of Gyro's Steel Balls, Josuke's Anchor Pin, and Jodio's jacket's heart design.", "links": {}, "path": {"181-205": [[-1200, -78], [-1200, -117], [-1142, -117], [-1142, -93], [-1152, -91], [-1153, -90], [-1156, -90], [-1157, -89], [-1160, -89], [-1161, -88], [-1166, -88], [-1167, -87], [-1169, -87], [-1171, -85], [-1172, -85], [-1174, -83], [-1179, -78]], "206-258": [[-1201, -73], [-1177, -73], [-1174, -76], [-1174, -80], [-1173, -81], [-1173, -84], [-1172, -85], [-1171, -85], [-1169, -87], [-1167, -87], [-1166, -88], [-1162, -88], [-1161, -89], [-1157, -89], [-1156, -90], [-1153, -90], [-1152, -91], [-1151, -91], [-1150, -90], [-1149, -91], [-1148, -91], [-1147, -90], [-1146, -91], [-1145, -91], [-1144, -90], [-1142, -90], [-1142, -80], [-1114, -80], [-1113, -79], [-1073, -79], [-1072, -80], [-1043, -80], [-1043, -94], [-1054, -94], [-1054, -101], [-1053, -101], [-1053, -117], [-1087, -117], [-1088, -118], [-1096, -118], [-1097, -119], [-1105, -119], [-1106, -118], [-1122, -118], [-1124, -120], [-1128, -120], [-1130, -118], [-1201, -118]]}, "center": {"181-205": [-1182, -100], "206-258": [-1101, -99]}}, -{"id": 1649, "name": "Thailand Flag", "description": "The second Thai flag. Thailand, officially known as the Kingdom of Thailand, is a country located in Southeast Asia. Built with the collaboration of r/realmadrid and r/touhou.", "links": {"website": ["https://en.wikipedia.org/wiki/Thailand", "https://en.wikipedia.org/wiki/Flag_of_Thailand"], "subreddit": ["thailand", "thaithai"], "discord": ["Dy5ukXsXCA"]}, "path": {"191-258": [[-543, 42], [-501, 42], [-501, 67], [-543, 67]]}, "center": {"191-258": [-522, 55]}}, +{"id": 1648, "name": "JoJo's Bizarre Adventure Logo & Symbols", "description": "This artwork made by a handful of JoJo's fans whom were not representing an official subreddit after it was announced that said subreddits would not be taking place in the event. \n\nCreated with the aide of multiple different communities (notably Berserk, TF2, Femboys, Yakuza, One Piece, Jerma985, and Naruto) it depicts the logo of Hirohito Araki's manga: JoJo's Bizarre Adventure.\n\nBelow it are symbols from each of the 9 parts of the manga. From right to left (Parts 1-9): The Stone Mask, The Red Stone of Aja, The logo of Araki's manga studio Lucky Land/symbol on Jotaro's hat, The Stand Arrow (or Josuke's Peace Sign depending on who you ask), Giorno's Ladybug Brooch, Jolyne's Butterfly Tattoo, One of Gyro's Steel Balls, Josuke's Anchor Pin, and Jodio's jacket's heart design.", "links": {}, "path": {"181-205": [[-1200, -78], [-1200, -117], [-1142, -117], [-1142, -93], [-1152, -91], [-1153, -90], [-1156, -90], [-1157, -89], [-1160, -89], [-1161, -88], [-1166, -88], [-1167, -87], [-1169, -87], [-1171, -85], [-1172, -85], [-1174, -83], [-1179, -78]], "206-258, T": [[-1201, -73], [-1177, -73], [-1174, -76], [-1174, -80], [-1173, -81], [-1173, -84], [-1172, -85], [-1171, -85], [-1169, -87], [-1167, -87], [-1166, -88], [-1162, -88], [-1161, -89], [-1157, -89], [-1156, -90], [-1153, -90], [-1152, -91], [-1151, -91], [-1150, -90], [-1149, -91], [-1148, -91], [-1147, -90], [-1146, -91], [-1145, -91], [-1144, -90], [-1142, -90], [-1142, -80], [-1114, -80], [-1113, -79], [-1073, -79], [-1072, -80], [-1043, -80], [-1043, -94], [-1054, -94], [-1054, -101], [-1053, -101], [-1053, -117], [-1087, -117], [-1088, -118], [-1096, -118], [-1097, -119], [-1105, -119], [-1106, -118], [-1122, -118], [-1124, -120], [-1128, -120], [-1130, -118], [-1201, -118]]}, "center": {"181-205": [-1182, -100], "206-258, T": [-1101, -99]}}, +{"id": 1649, "name": "Thailand Flag", "description": "The second Thai flag. Thailand, officially known as the Kingdom of Thailand, is a country located in Southeast Asia. Built with the collaboration of r/realmadrid and r/touhou.", "links": {"website": ["https://en.wikipedia.org/wiki/Thailand", "https://en.wikipedia.org/wiki/Flag_of_Thailand"], "subreddit": ["thailand", "thaithai"], "discord": ["Dy5ukXsXCA"]}, "path": {"191-258, T": [[-543, 42], [-501, 42], [-501, 67], [-543, 67]]}, "center": {"191-258, T": [-522, 55]}}, {"id": 1650, "name": "ToastieLabs", "description": "A small, independent game development studio. Proud of their flagship game, Coloring Pixels", "links": {"website": ["https://www.toastielabs.co.uk"], "subreddit": ["ToastieLabs"], "discord": ["wwXVWvA"]}, "path": {"6-23": [[94, 127], [91, 134], [90, 128], [88, 124], [88, 138], [125, 138], [125, 123], [87, 123], [87, 138]]}, "center": {"6-23": [106, 131]}}, {"id": 1651, "name": "Migros ice tea lemon", "description": "Swiss popular brevage. The best iced tea in the world", "links": {"website": ["https://www.migros.ch/fr/product/120250600000"]}, "path": {"163": [[823, -356], [827, -356], [827, -357], [828, -357], [828, -356], [830, -356], [830, -342], [823, -342]]}, "center": {"163": [827, -349]}}, -{"id": 1652, "name": "Shinomiya Kaguya", "description": "The heroine from Kaguya-sama: Love is war", "links": {"website": ["https://kaguyasama-wa-kokurasetai.fandom.com/wiki/Kaguya_Shinomiya"], "subreddit": ["Kaguya_sama"]}, "path": {"177-258": [[-361, -776], [-341, -776], [-343, -760], [-360, -761]]}, "center": {"177-258": [-351, -768]}}, -{"id": 1653, "name": "Luxemburg, the small Country, with a big impact", "description": "On the right, you can see \"De Roude Léiw\" (The red lion), which is the emblem or mascot of Luxembourg.\n\nOn the left, you can see the \"Gëlle Fra\" (golden Woman) which is the Monument of Remembrance for the war. It is dedicated to the thousands of Luxembourgers who volunteered for service in the armed forces of the Allied Powers during both World Wars and the Korean War.\n\nIn the middle is the country outline of Luxembourg with our 3 colors, red, white and a light blue.", "links": {}, "path": {"191-258": [[665, -634], [653, -635], [641, -611], [680, -611], [680, -640], [640, -640], [641, -611]]}, "center": {"191-258": [669, -622]}}, -{"id": 1654, "name": "Donda 2 Promotional Image", "description": "An image used to promote the live listening party of the album \"Donda 2\" by the artist Ye (formerly known as Kanye West).", "links": {}, "path": {"177-258": [[672, 558], [693, 558], [693, 580], [693, 581], [676, 581], [676, 575], [672, 575]]}, "center": {"177-258": [683, 568]}}, -{"id": 1655, "name": "Hinagarasu", "description": "Hinagarasu is a chibi crow version of Shōyō Hinata, the main protagonist of Haruichi Furudate's manga series \"Haikyuu!!\". His nickname in the Haikyuu on r/place community is \"Hinabirb\"", "links": {"subreddit": ["haikyuu"], "discord": ["abrx9t3Np"]}, "path": {"113-258": [[-295, 89], [-290, 88], [-285, 88], [-280, 94], [-282, 104], [-287, 106], [-291, 104], [-296, 101], [-299, 94], [-298, 91]]}, "center": {"113-258": [-289, 96]}}, +{"id": 1652, "name": "Shinomiya Kaguya", "description": "The heroine from Kaguya-sama: Love is war", "links": {"website": ["https://kaguyasama-wa-kokurasetai.fandom.com/wiki/Kaguya_Shinomiya"], "subreddit": ["Kaguya_sama"]}, "path": {"177-258, T": [[-361, -776], [-341, -776], [-343, -760], [-360, -761]]}, "center": {"177-258, T": [-351, -768]}}, +{"id": 1653, "name": "Luxemburg, the small Country, with a big impact", "description": "On the right, you can see \"De Roude Léiw\" (The red lion), which is the emblem or mascot of Luxembourg.\n\nOn the left, you can see the \"Gëlle Fra\" (golden Woman) which is the Monument of Remembrance for the war. It is dedicated to the thousands of Luxembourgers who volunteered for service in the armed forces of the Allied Powers during both World Wars and the Korean War.\n\nIn the middle is the country outline of Luxembourg with our 3 colors, red, white and a light blue.", "links": {}, "path": {"191-258, T": [[665, -634], [653, -635], [641, -611], [680, -611], [680, -640], [640, -640], [641, -611]]}, "center": {"191-258, T": [669, -622]}}, +{"id": 1654, "name": "Donda 2 Promotional Image", "description": "An image used to promote the live listening party of the album \"Donda 2\" by the artist Ye (formerly known as Kanye West).", "links": {}, "path": {"177-258, T": [[672, 558], [693, 558], [693, 580], [693, 581], [676, 581], [676, 575], [672, 575]]}, "center": {"177-258, T": [683, 568]}}, +{"id": 1655, "name": "Hinagarasu", "description": "Hinagarasu is a chibi crow version of Shōyō Hinata, the main protagonist of Haruichi Furudate's manga series \"Haikyuu!!\". His nickname in the Haikyuu on r/place community is \"Hinabirb\"", "links": {"subreddit": ["haikyuu"], "discord": ["abrx9t3Np"]}, "path": {"113-258, T": [[-295, 89], [-290, 88], [-285, 88], [-280, 94], [-282, 104], [-287, 106], [-291, 104], [-296, 101], [-299, 94], [-298, 91]]}, "center": {"113-258, T": [-289, 96]}}, {"id": 1656, "name": "Yeezus Album Cover", "description": "The cover art to the 2013 album \"Yeezus\" by the artist Ye (formerly known as Kanye West).", "links": {"subreddit": ["WestSubEver", "Kanye", "GoodAssSub"]}, "path": {"176": [[684, 549], [692, 549], [692, 557], [684, 557]]}, "center": {"176": [688, 553]}}, {"id": 1657, "name": "Titlebar Buttons", "description": "The buttons of Minimize, Restore and Close, resembling the Windows 9X style.", "links": {}, "path": {"132-208": [[956, -997], [997, -997], [997, -985], [956, -985]]}, "center": {"132-208": [977, -991]}}, -{"id": 1658, "name": "Mount Everest", "description": "is Earth's highest mountain above sea level, located in the Mahalangur Himal sub-range of the Himalayas. The China–Nepal border runs across its summit point. Its elevation (snow height) of 8,848.86 m (29,031 ft 8+1⁄2 in) was most recently established in 2020 by the Chinese and Nepali authorities.", "links": {"website": ["https://en.wikipedia.org/wiki/Mount_Everest", "https://en.wikipedia.org/wiki/Himalayas"], "subreddit": ["Everest"]}, "path": {"185-258": [[817, 143], [823, 135], [829, 141], [829, 142], [835, 136], [838, 136], [841, 140], [842, 140], [842, 148], [841, 148], [841, 150], [840, 150], [840, 152], [839, 152], [839, 164], [837, 164], [837, 163]]}, "center": {"185-258": [833, 148]}}, -{"id": 1659, "name": "The Endless Column", "description": "created by Constantin Brâncuşi, The Endless Column is 29.35 m tall and is made of cast iron coated in brass. It is a monument in memory of Romanian soldiers who have fallen during World War I.", "links": {"subreddit": ["okprietenretardat"]}, "path": {"162-258": [[-349, 70], [-353, 75], [-352, 138], [-346, 142], [-345, 139], [-345, 73], [-349, 69]]}, "center": {"162-258": [-349, 81]}}, -{"id": 1660, "name": "ADO", "description": "Ado is a famous singer in the j pop genre", "links": {"website": ["https://www.youtube.com/@Ado1024"], "subreddit": ["ADO"], "discord": ["ado1024"]}, "path": {"185-258": [[-370, 828], [-299, 828], [-299, 856], [-369, 854]]}, "center": {"185-258": [-317, 842]}}, -{"id": 1661, "name": "HandOfBlood", "description": "Hand of Blood is a German web video producer, live streamer, esports moderator and entrepreneur. He mainly publishes Let's Play videos on his YouTube channel HandOfBlood and is one of the best-known German representatives of this genre.\nThis artwork was made from the german r/placeDE community.", "links": {"website": ["https://www.youtube.com/channel/UC9YTp5M6yYgSd6t0SeL2GQw"]}, "path": {"189-258": [[-503, -998], [-507, -996], [-511, -992], [-512, -987], [-519, -977], [-521, -968], [-520, -963], [-518, -960], [-514, -954], [-508, -949], [-501, -946], [-495, -946], [-488, -950], [-479, -958], [-476, -968], [-478, -978], [-482, -984], [-488, -988], [-494, -992], [-496, -992], [-500, -992], [-499, -995], [-500, -997]]}, "center": {"189-258": [-498, -970]}}, -{"id": 1662, "name": "Yohane", "description": "Yohane (ヨハネ) is the lead character of Genjitsu no Yohane: Sunshine in the Mirror, a spin-off fantasy series focusing on Aqours, a group from the Love Live! franchise. The anime premiered in the summer of 2023 and was ongoing when r/place 2023 took place.", "links": {"website": ["https://love-live.fandom.com/wiki/Yohane_the_Parhelion", "https://myanimelist.net/anime/52214/Genjitsu_no_Yohane__Sunshine_in_the_Mirror"]}, "path": {"189-258": [[-630, -236], [-624, -236], [-624, -240], [-628, -240], [-628, -242], [-630, -242], [-630, -241], [-631, -241], [-631, -239], [-629, -239], [-630, -239]]}, "center": {"189-258": [-627, -238]}}, -{"id": 1663, "name": "Pas mal non ? C'est Français.", "description": "\"Pas mal non ? C'est Français.\" (Not bad, eh? It's French) is a French meme from the parodic movie \"La Classe américaine\"", "links": {}, "path": {"187-258": [[-498, 630], [-462, 630], [-462, 649], [-463, 649], [-463, 651], [-464, 652], [-464, 653], [-465, 654], [-465, 663], [-464, 665], [-463, 666], [-462, 667], [-461, 668], [-461, 669], [-460, 670], [-460, 672], [-461, 673], [-462, 674], [-462, 677], [-461, 678], [-460, 680], [-461, 681], [-461, 682], [-460, 682], [-459, 682], [-459, 683], [-460, 684], [-460, 686], [-459, 687], [-459, 689], [-460, 690], [-460, 692], [-460, 694], [-461, 695], [-462, 696], [-467, 696], [-467, 692], [-467, 691], [-500, 691], [-500, 668], [-499, 667], [-498, 666], [-497, 665], [-496, 664], [-494, 662], [-493, 661], [-492, 660], [-488, 660], [-488, 659], [-484, 659], [-484, 658], [-481, 658], [-481, 657], [-480, 657], [-480, 656], [-479, 655], [-479, 649], [-498, 649]]}, "center": {"187-258": [-479, 675]}}, -{"id": 1664, "name": "µ's", "description": "µ's (pronounced \"muse\") is an all-female 9-member group formed in 2010 as the first group of the Love Live! franchise. They've been much less active since 2016, at which point they had a discography of more than 110 original songs.", "links": {"website": ["https://love-live.fandom.com/wiki/Muse"]}, "path": {"191-258": [[-653, -242], [-641, -242], [-641, -236], [-653, -236]]}, "center": {"191-258": [-647, -239]}}, -{"id": 1665, "name": "Al Boraq", "description": "Al Boraq is a high-speed train operated by the Moroccan National Railways (ONCF). It is the fastest train in Morocco, with a top speed of 300 kilometers per hour (186 miles per hour). The train connects the cities of Casablanca and Tangier, with a travel time of just 2 hours and 10 minutes.", "links": {"website": ["https://www.oncf.ma/en/Al-boraq"]}, "path": {"151-194": [[424, 105], [432, 105], [437, 99], [435, 99], [433, 100], [433, 99], [434, 98], [434, 97], [442, 97], [444, 99], [442, 99], [440, 99], [442, 104], [462, 104], [466, 98], [463, 99], [462, 100], [461, 99], [462, 97], [471, 97], [473, 100], [470, 98], [468, 98], [471, 104], [492, 104], [497, 99], [495, 99], [494, 100], [493, 99], [494, 97], [502, 97], [504, 99], [503, 100], [502, 99], [500, 99], [502, 104], [512, 104], [512, 105], [514, 105], [515, 106], [522, 114], [530, 122], [402, 123]], "195-258": [[424, 105], [432, 105], [437, 99], [435, 99], [433, 100], [433, 99], [434, 98], [434, 97], [442, 97], [444, 99], [442, 99], [440, 99], [442, 104], [462, 104], [466, 98], [463, 99], [462, 100], [461, 99], [462, 97], [471, 97], [473, 100], [470, 98], [468, 98], [471, 104], [492, 104], [497, 99], [495, 99], [494, 100], [493, 99], [494, 97], [502, 97], [504, 99], [503, 100], [502, 99], [500, 99], [502, 104], [512, 104], [512, 105], [514, 105], [515, 106], [522, 99], [519, 98], [530, 97], [530, 100], [526, 99], [529, 104], [549, 104], [552, 100], [550, 97], [560, 97], [561, 99], [558, 100], [560, 104], [568, 104], [572, 106], [586, 120], [586, 124], [404, 123], [415, 112]]}, "center": {"151-194": [438, 113], "195-258": [554, 113]}}, -{"id": 1666, "name": "Wolfgang Amadeus Mozart", "description": "One of the most famous classical composer, which was born is Salzburg, Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Wolfgang_Amadeus_Mozart"]}, "path": {"189-258": [[-37, -27], [-41, -33], [-39, -33], [-34, -34], [-34, -38], [-42, -49], [-46, -47], [-49, -47], [-51, -49], [-58, -40], [-56, -37], [-58, -36], [-55, -33], [-54, -33], [-56, -27]]}, "center": {"189-258": [-47, -38]}}, +{"id": 1658, "name": "Mount Everest", "description": "is Earth's highest mountain above sea level, located in the Mahalangur Himal sub-range of the Himalayas. The China–Nepal border runs across its summit point. Its elevation (snow height) of 8,848.86 m (29,031 ft 8+1⁄2 in) was most recently established in 2020 by the Chinese and Nepali authorities.", "links": {"website": ["https://en.wikipedia.org/wiki/Mount_Everest", "https://en.wikipedia.org/wiki/Himalayas"], "subreddit": ["Everest"]}, "path": {"185-258, T": [[817, 143], [823, 135], [829, 141], [829, 142], [835, 136], [838, 136], [841, 140], [842, 140], [842, 148], [841, 148], [841, 150], [840, 150], [840, 152], [839, 152], [839, 164], [837, 164], [837, 163]]}, "center": {"185-258, T": [833, 148]}}, +{"id": 1659, "name": "The Endless Column", "description": "created by Constantin Brâncuşi, The Endless Column is 29.35 m tall and is made of cast iron coated in brass. It is a monument in memory of Romanian soldiers who have fallen during World War I.", "links": {"subreddit": ["okprietenretardat"]}, "path": {"162-258, T": [[-349, 70], [-353, 75], [-352, 138], [-346, 142], [-345, 139], [-345, 73], [-349, 69]]}, "center": {"162-258, T": [-349, 81]}}, +{"id": 1660, "name": "ADO", "description": "Ado is a famous singer in the j pop genre", "links": {"website": ["https://www.youtube.com/@Ado1024"], "subreddit": ["ADO"], "discord": ["ado1024"]}, "path": {"185-258, T": [[-370, 828], [-299, 828], [-299, 856], [-369, 854]]}, "center": {"185-258, T": [-317, 842]}}, +{"id": 1661, "name": "HandOfBlood", "description": "Hand of Blood is a German web video producer, live streamer, esports moderator and entrepreneur. He mainly publishes Let's Play videos on his YouTube channel HandOfBlood and is one of the best-known German representatives of this genre.\nThis artwork was made from the german r/placeDE community.", "links": {"website": ["https://www.youtube.com/channel/UC9YTp5M6yYgSd6t0SeL2GQw"]}, "path": {"189-258, T": [[-503, -998], [-507, -996], [-511, -992], [-512, -987], [-519, -977], [-521, -968], [-520, -963], [-518, -960], [-514, -954], [-508, -949], [-501, -946], [-495, -946], [-488, -950], [-479, -958], [-476, -968], [-478, -978], [-482, -984], [-488, -988], [-494, -992], [-496, -992], [-500, -992], [-499, -995], [-500, -997]]}, "center": {"189-258, T": [-498, -970]}}, +{"id": 1662, "name": "Yohane", "description": "Yohane (ヨハネ) is the lead character of Genjitsu no Yohane: Sunshine in the Mirror, a spin-off fantasy series focusing on Aqours, a group from the Love Live! franchise. The anime premiered in the summer of 2023 and was ongoing when r/place 2023 took place.", "links": {"website": ["https://love-live.fandom.com/wiki/Yohane_the_Parhelion", "https://myanimelist.net/anime/52214/Genjitsu_no_Yohane__Sunshine_in_the_Mirror"]}, "path": {"189-258, T": [[-630, -236], [-624, -236], [-624, -240], [-628, -240], [-628, -242], [-630, -242], [-630, -241], [-631, -241], [-631, -239], [-629, -239], [-630, -239]]}, "center": {"189-258, T": [-627, -238]}}, +{"id": 1663, "name": "Pas mal non ? C'est Français.", "description": "\"Pas mal non ? C'est Français.\" (Not bad, eh? It's French) is a French meme from the parodic movie \"La Classe américaine\"", "links": {}, "path": {"187-258, T": [[-498, 630], [-462, 630], [-462, 649], [-463, 649], [-463, 651], [-464, 652], [-464, 653], [-465, 654], [-465, 663], [-464, 665], [-463, 666], [-462, 667], [-461, 668], [-461, 669], [-460, 670], [-460, 672], [-461, 673], [-462, 674], [-462, 677], [-461, 678], [-460, 680], [-461, 681], [-461, 682], [-460, 682], [-459, 682], [-459, 683], [-460, 684], [-460, 686], [-459, 687], [-459, 689], [-460, 690], [-460, 692], [-460, 694], [-461, 695], [-462, 696], [-467, 696], [-467, 692], [-467, 691], [-500, 691], [-500, 668], [-499, 667], [-498, 666], [-497, 665], [-496, 664], [-494, 662], [-493, 661], [-492, 660], [-488, 660], [-488, 659], [-484, 659], [-484, 658], [-481, 658], [-481, 657], [-480, 657], [-480, 656], [-479, 655], [-479, 649], [-498, 649]]}, "center": {"187-258, T": [-479, 675]}}, +{"id": 1664, "name": "µ's", "description": "µ's (pronounced \"muse\") is an all-female 9-member group formed in 2010 as the first group of the Love Live! franchise. They've been much less active since 2016, at which point they had a discography of more than 110 original songs.", "links": {"website": ["https://love-live.fandom.com/wiki/Muse"]}, "path": {"191-258, T": [[-653, -242], [-641, -242], [-641, -236], [-653, -236]]}, "center": {"191-258, T": [-647, -239]}}, +{"id": 1665, "name": "Al Boraq", "description": "Al Boraq is a high-speed train operated by the Moroccan National Railways (ONCF). It is the fastest train in Morocco, with a top speed of 300 kilometers per hour (186 miles per hour). The train connects the cities of Casablanca and Tangier, with a travel time of just 2 hours and 10 minutes.", "links": {"website": ["https://www.oncf.ma/en/Al-boraq"]}, "path": {"151-194": [[424, 105], [432, 105], [437, 99], [435, 99], [433, 100], [433, 99], [434, 98], [434, 97], [442, 97], [444, 99], [442, 99], [440, 99], [442, 104], [462, 104], [466, 98], [463, 99], [462, 100], [461, 99], [462, 97], [471, 97], [473, 100], [470, 98], [468, 98], [471, 104], [492, 104], [497, 99], [495, 99], [494, 100], [493, 99], [494, 97], [502, 97], [504, 99], [503, 100], [502, 99], [500, 99], [502, 104], [512, 104], [512, 105], [514, 105], [515, 106], [522, 114], [530, 122], [402, 123]], "195-258, T": [[424, 105], [432, 105], [437, 99], [435, 99], [433, 100], [433, 99], [434, 98], [434, 97], [442, 97], [444, 99], [442, 99], [440, 99], [442, 104], [462, 104], [466, 98], [463, 99], [462, 100], [461, 99], [462, 97], [471, 97], [473, 100], [470, 98], [468, 98], [471, 104], [492, 104], [497, 99], [495, 99], [494, 100], [493, 99], [494, 97], [502, 97], [504, 99], [503, 100], [502, 99], [500, 99], [502, 104], [512, 104], [512, 105], [514, 105], [515, 106], [522, 99], [519, 98], [530, 97], [530, 100], [526, 99], [529, 104], [549, 104], [552, 100], [550, 97], [560, 97], [561, 99], [558, 100], [560, 104], [568, 104], [572, 106], [586, 120], [586, 124], [404, 123], [415, 112]]}, "center": {"151-194": [438, 113], "195-258, T": [554, 113]}}, +{"id": 1666, "name": "Wolfgang Amadeus Mozart", "description": "One of the most famous classical composer, which was born is Salzburg, Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Wolfgang_Amadeus_Mozart"]}, "path": {"189-258, T": [[-37, -27], [-41, -33], [-39, -33], [-34, -34], [-34, -38], [-42, -49], [-46, -47], [-49, -47], [-51, -49], [-58, -40], [-56, -37], [-58, -36], [-55, -33], [-54, -33], [-56, -27]]}, "center": {"189-258, T": [-47, -38]}}, {"id": 1667, "name": "Spider-Man (Pavitr Prabhakar)", "description": "Spider-Man (Pavitr Prabhakar) is a superhero appearing in American comic books published by Marvel Comics since 2004. He is an alternate version of Spider-Man who lives in Mumbai/Mumbattan, India.", "links": {"website": ["https://en.wikipedia.org/wiki/Spider-Man_(Pavitr_Prabhakar)"], "subreddit": ["Spiderman", "india"]}, "path": {"176": [[460, -284], [459, -279], [454, -271], [459, -264], [452, -256], [457, -251], [464, -250], [471, -254], [472, -256], [468, -264], [467, -267], [472, -273], [468, -279], [467, -284], [463, -284], [459, -284]]}, "center": {"176": [463, -258]}}, -{"id": 1668, "name": "bill wurtz umbrella", "description": "an attempt by r/furry_irl to build the umbrella logo popular musician bill wurtz however it was never fully completed", "links": {}, "path": {"177-258": [[-1174, 253], [-1174, 260], [-1162, 260], [-1162, 249], [-1174, 249], [-1174, 251]]}, "center": {"177-258": [-1168, 255]}}, -{"id": 1669, "name": "Car Seat Headrest", "description": "Car Seat Headrest is an American indie rock band created by front-man, Will Toledo. \n\nOn top are two humanoid dogs from the album artwork of the 2011 album \"Twin Fantasy\" surrounding an intersex-inclusive pride flag.\n\nBelow them is the \"Space Cadet\" from the artwork of the 2014 EP \"How to Leave Town\"", "links": {"website": ["https://en.wikipedia.org/wiki/Car_Seat_Headrest"], "subreddit": ["CSHFans"]}, "path": {"175-258": [[-999, 365], [-972, 365], [-972, 359], [-966, 348], [-966, 339], [-966, 337], [-965, 336], [-965, 332], [-966, 332], [-966, 328], [-965, 321], [-966, 320], [-966, 319], [-967, 318], [-967, 316], [-968, 315], [-968, 314], [-969, 313], [-970, 312], [-971, 312], [-970, 313], [-970, 315], [-969, 316], [-969, 320], [-970, 321], [-973, 321], [-974, 320], [-974, 318], [-975, 317], [-975, 315], [-976, 314], [-977, 313], [-977, 315], [-978, 316], [-979, 315], [-979, 314], [-981, 312], [-981, 309], [-980, 308], [-980, 306], [-979, 305], [-978, 304], [-978, 303], [-977, 302], [-977, 301], [-976, 301], [-977, 301], [-977, 302], [-979, 302], [-982, 305], [-982, 306], [-983, 307], [-984, 308], [-987, 305], [-987, 303], [-986, 302], [-986, 301], [-985, 300], [-985, 299], [-984, 298], [-984, 297], [-983, 296], [-985, 296], [-986, 297], [-986, 298], [-988, 300], [-988, 301], [-989, 302], [-989, 303], [-992, 306], [-992, 307], [-993, 308], [-993, 313], [-994, 314], [-996, 314], [-997, 315], [-997, 316], [-998, 317], [-998, 320], [-999, 321]]}, "center": {"175-258": [-982, 343]}}, -{"id": 1670, "name": "German Twitch Stream: xPandorya", "description": "The rune is the symbol of the german streamer xPandorya.\nPan is known for her horror game streams and VODs, but also for her role in the GTA RP. Furthermore, she is considered the \"horror queen\" in the german-speaking world.", "links": {"website": ["https://www.twitch.tv/xPandorya"]}, "path": {"189-258": [[228, -294], [233, -298], [240, -289], [237, -285], [233, -289]]}, "center": {"189-258": [233, -293]}}, -{"id": 1671, "name": "Hoppii", "description": "Hoppii is a german twitch streamer", "links": {"website": ["https://www.twitch.tv/hoppii"], "subreddit": ["hoppii"], "discord": ["cxxh8yPR4M"]}, "path": {"185-258": [[132, -628], [132, -611], [202, -612], [203, -612], [203, -628], [169, -628]]}, "center": {"185-258": [149, -620]}}, -{"id": 1672, "name": "Rivella Red bottle", "description": "Rivelle is a popular Swiss milk-based drink.", "links": {"website": ["https://rivella.ch/fr/"]}, "path": {"185-258": [[-555, 858], [-553, 858], [-553, 860], [-551, 864], [-551, 887], [-557, 887], [-557, 865], [-555, 860]]}, "center": {"185-258": [-554, 873]}}, -{"id": 1673, "name": "Music and Beer", "description": "Austria is famous for its classical music and local breweries.", "links": {}, "path": {"63-258": [[-68, -45], [-70, -56], [-118, -56], [-117, -47]]}, "center": {"63-258": [-85, -51]}}, +{"id": 1668, "name": "bill wurtz umbrella", "description": "an attempt by r/furry_irl to build the umbrella logo popular musician bill wurtz however it was never fully completed", "links": {}, "path": {"177-258, T": [[-1174, 253], [-1174, 260], [-1162, 260], [-1162, 249], [-1174, 249], [-1174, 251]]}, "center": {"177-258, T": [-1168, 255]}}, +{"id": 1669, "name": "Car Seat Headrest", "description": "Car Seat Headrest is an American indie rock band created by front-man, Will Toledo. \n\nOn top are two humanoid dogs from the album artwork of the 2011 album \"Twin Fantasy\" surrounding an intersex-inclusive pride flag.\n\nBelow them is the \"Space Cadet\" from the artwork of the 2014 EP \"How to Leave Town\"", "links": {"website": ["https://en.wikipedia.org/wiki/Car_Seat_Headrest"], "subreddit": ["CSHFans"]}, "path": {"175-258, T": [[-999, 365], [-972, 365], [-972, 359], [-966, 348], [-966, 339], [-966, 337], [-965, 336], [-965, 332], [-966, 332], [-966, 328], [-965, 321], [-966, 320], [-966, 319], [-967, 318], [-967, 316], [-968, 315], [-968, 314], [-969, 313], [-970, 312], [-971, 312], [-970, 313], [-970, 315], [-969, 316], [-969, 320], [-970, 321], [-973, 321], [-974, 320], [-974, 318], [-975, 317], [-975, 315], [-976, 314], [-977, 313], [-977, 315], [-978, 316], [-979, 315], [-979, 314], [-981, 312], [-981, 309], [-980, 308], [-980, 306], [-979, 305], [-978, 304], [-978, 303], [-977, 302], [-977, 301], [-976, 301], [-977, 301], [-977, 302], [-979, 302], [-982, 305], [-982, 306], [-983, 307], [-984, 308], [-987, 305], [-987, 303], [-986, 302], [-986, 301], [-985, 300], [-985, 299], [-984, 298], [-984, 297], [-983, 296], [-985, 296], [-986, 297], [-986, 298], [-988, 300], [-988, 301], [-989, 302], [-989, 303], [-992, 306], [-992, 307], [-993, 308], [-993, 313], [-994, 314], [-996, 314], [-997, 315], [-997, 316], [-998, 317], [-998, 320], [-999, 321]]}, "center": {"175-258, T": [-982, 343]}}, +{"id": 1670, "name": "German Twitch Stream: xPandorya", "description": "The rune is the symbol of the german streamer xPandorya.\nPan is known for her horror game streams and VODs, but also for her role in the GTA RP. Furthermore, she is considered the \"horror queen\" in the german-speaking world.", "links": {"website": ["https://www.twitch.tv/xPandorya"]}, "path": {"189-258, T": [[228, -294], [233, -298], [240, -289], [237, -285], [233, -289]]}, "center": {"189-258, T": [233, -293]}}, +{"id": 1671, "name": "Hoppii", "description": "Hoppii is a german twitch streamer", "links": {"website": ["https://www.twitch.tv/hoppii"], "subreddit": ["hoppii"], "discord": ["cxxh8yPR4M"]}, "path": {"185-258, T": [[132, -628], [132, -611], [202, -612], [203, -612], [203, -628], [169, -628]]}, "center": {"185-258, T": [149, -620]}}, +{"id": 1672, "name": "Rivella Red bottle", "description": "Rivelle is a popular Swiss milk-based drink.", "links": {"website": ["https://rivella.ch/fr/"]}, "path": {"185-258, T": [[-555, 858], [-553, 858], [-553, 860], [-551, 864], [-551, 887], [-557, 887], [-557, 865], [-555, 860]]}, "center": {"185-258, T": [-554, 873]}}, +{"id": 1673, "name": "Music and Beer", "description": "Austria is famous for its classical music and local breweries.", "links": {}, "path": {"63-258, T": [[-68, -45], [-70, -56], [-118, -56], [-117, -47]]}, "center": {"63-258, T": [-85, -51]}}, {"id": 1674, "name": "Roger Federer", "description": "Roger Federer is a Swiss former professional tennis player. Federer was ranked world No. 1 in singles by the Association of Tennis Professionals (ATP) for 310 weeks, including a record 237 consecutive weeks, and finished as the year-end No. 1 five times.", "links": {}, "path": {"167": [[-554, 832], [-548, 824], [-537, 817], [-527, 816], [-517, 821], [-511, 830], [-507, 834], [-509, 837], [-510, 842], [-509, 845], [-509, 853], [-512, 858], [-515, 860], [-515, 867], [-527, 877], [-536, 878], [-547, 866], [-554, 852], [-552, 842]]}, "center": {"167": [-531, 846]}}, -{"id": 1675, "name": "V43 / Szili", "description": "The MÁV Class V43 is a Hungarian electric locomotive with a box-like appearance. It was meant to replace the MÁV Class V40 and MÁV Class V60, as well as the widespread Class 424 steam locomotives. A total of 379 locomotives were built between 1963 and 1982.", "links": {"website": ["https://en.wikipedia.org/wiki/M%C3%81V_Class_V43"]}, "path": {"189-258": [[-764, -21], [-764, -7], [-752, -7], [-753, -7], [-753, -9], [-752, -9], [-753, -9], [-753, -11], [-752, -11], [-753, -11], [-753, -12], [-753, -13], [-752, -13], [-753, -13], [-753, -15], [-752, -15], [-753, -15], [-753, -17], [-752, -17], [-752, -18], [-749, -18], [-749, -19], [-748, -19], [-748, -20], [-743, -20], [-743, -21], [-741, -21]]}, "center": {"189-258": [-759, -15]}}, +{"id": 1675, "name": "V43 / Szili", "description": "The MÁV Class V43 is a Hungarian electric locomotive with a box-like appearance. It was meant to replace the MÁV Class V40 and MÁV Class V60, as well as the widespread Class 424 steam locomotives. A total of 379 locomotives were built between 1963 and 1982.", "links": {"website": ["https://en.wikipedia.org/wiki/M%C3%81V_Class_V43"]}, "path": {"189-258, T": [[-764, -21], [-764, -7], [-752, -7], [-753, -7], [-753, -9], [-752, -9], [-753, -9], [-753, -11], [-752, -11], [-753, -11], [-753, -12], [-753, -13], [-752, -13], [-753, -13], [-753, -15], [-752, -15], [-753, -15], [-753, -17], [-752, -17], [-752, -18], [-749, -18], [-749, -19], [-748, -19], [-748, -20], [-743, -20], [-743, -21], [-741, -21]]}, "center": {"189-258, T": [-759, -15]}}, {"id": 1676, "name": "The Void (Core #5)", "description": "A void maintained and created by the swarm and randoms", "links": {"subreddit": ["theswarm"]}, "path": {"180-200": [[-318, 831], [-366, 830], [-286, 830], [-216, 830], [-158, 830], [-136, 851], [-141, 880], [-140, 898], [-137, 910], [-151, 928], [-149, 960], [-165, 961], [-165, 968], [-226, 970], [-249, 948], [-253, 954], [-259, 950], [-280, 969], [-342, 969], [-333, 940], [-327, 927], [-341, 904]]}, "center": {"180-200": [-209, 896]}}, -{"id": 1678, "name": "floch by r/titanfolk", "description": "floch is a character from the manga and anime \"attack on titan\"", "links": {"subreddit": ["titanfolk"]}, "path": {"189-258": [[167, -10], [196, -10], [196, 36], [167, 36]]}, "center": {"189-258": [182, 13]}}, -{"id": 1679, "name": "The Flag of Puerto Rico", "description": "Puerto Rico is an insular country in the Caribbean Sea. It is known as \"La Isla del Encanto\", or \"Island of Enchantment\"", "links": {"website": ["https://en.wikipedia.org/wiki/Puerto_Rico"], "subreddit": ["PuertoRico"], "discord": ["EZ4C9FR3"]}, "path": {"189-258": [[115, -26], [196, -26], [196, -10], [115, -10]]}, "center": {"189-258": [156, -18]}}, -{"id": 1680, "name": "Holy Dirt", "description": "A friend group Minecraft Server has made it on the canvas!", "links": {}, "path": {"187-258": [[-154, 747], [-132, 747], [-132, 760], [-138, 762], [-152, 762]]}, "center": {"187-258": [-143, 755]}}, +{"id": 1678, "name": "floch by r/titanfolk", "description": "floch is a character from the manga and anime \"attack on titan\"", "links": {"subreddit": ["titanfolk"]}, "path": {"189-258, T": [[167, -10], [196, -10], [196, 36], [167, 36]]}, "center": {"189-258, T": [182, 13]}}, +{"id": 1679, "name": "The Flag of Puerto Rico", "description": "Puerto Rico is an insular country in the Caribbean Sea. It is known as \"La Isla del Encanto\", or \"Island of Enchantment\"", "links": {"website": ["https://en.wikipedia.org/wiki/Puerto_Rico"], "subreddit": ["PuertoRico"], "discord": ["EZ4C9FR3"]}, "path": {"189-258, T": [[115, -26], [196, -26], [196, -10], [115, -10]]}, "center": {"189-258, T": [156, -18]}}, +{"id": 1680, "name": "Holy Dirt", "description": "A friend group Minecraft Server has made it on the canvas!", "links": {}, "path": {"187-258, T": [[-154, 747], [-132, 747], [-132, 760], [-138, 762], [-152, 762]]}, "center": {"187-258, T": [-143, 755]}}, {"id": 1681, "name": "Bondrewd", "description": "Bondrewd is a character from the manga Made in Abyss created by Akihito Tsukushi", "links": {}, "path": {"91-130": [[-215, 464], [-211, 464], [-209, 466], [-209, 468], [-211, 472], [-215, 472], [-217, 468], [-217, 466]]}, "center": {"91-130": [-213, 468]}}, {"id": 1682, "name": "Odo", "description": "Odo (踊) is a digital single by the Japanese singer Ado, released on April 27, 2021. The song was written by DECO*27 and produced by Giga and TeddyLoid. It is a fast-paced electro-pop track with lyrics about dancing and expressing oneself. The song's music video, which features Ado's signature distorted face and dynamic choreography, has gained over 170 million views on YouTube as of July 2023.", "links": {"website": ["https://www.youtube.com/watch?v=YnSW8ian29w"], "subreddit": ["ADO"], "discord": ["ado1024"]}, "path": {"251-258": [[-372, 829], [-373, 855], [-316, 856], [-316, 826], [-372, 826]]}, "center": {"251-258": [-344, 841]}}, -{"id": 1683, "name": "Flag of Nepal", "description": "Nepal is a landlocked country in South Asia. It is mainly situated in the Himalayas, but also includes parts of the Indo-Gangetic Plain. It borders the Tibet Autonomous Region of China to the north, and India in the south, east, and west, while it is narrowly separated from Bangladesh by the Siliguri Corridor, and from Bhutan by the Indian state of Sikkim.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Nepal", "https://en.wikipedia.org/wiki/Nepal"], "subreddit": ["Nepal"], "discord": ["tDm28xJ2DN"]}, "path": {"185-258": [[812, 136], [838, 163], [839, 164], [826, 164], [839, 178], [814, 178], [814, 194], [811, 194], [811, 137]]}, "center": {"185-258": [820, 157]}}, -{"id": 1684, "name": "RWTH Aachen University", "description": "Another German university that considers itself to be excellent.", "links": {"subreddit": ["rwth"]}, "path": {"170-258": [[-286, -77], [-223, -77], [-223, -57], [-286, -57]]}, "center": {"170-258": [-254, -67]}}, -{"id": 1685, "name": "Wingman", "description": "Valorant's \"Wingman\" is a cute little creature that is released by Gekko's ability. Gekko is an Agent in VALORANT and the sixth Initiator to be released. FIRE to send Wingman forward seeking enemies. Wingman unleashes a Concussive blast toward the first enemy he sees. ALT FIRE when targeting a Spike site or planted Spike to have Wingman defuse or plant the Spike. To plant, Gekko must have the Spike in his inventory. The english VALORANT streamer \"tarik\" created this art.", "links": {"website": ["https://valorant.fandom.com/wiki/Wingman", "https://valorant.fandom.com/wiki/Gekko", "https://www.twitch.tv/tarik"], "subreddit": ["tarik"]}, "path": {"168-258": [[701, -567], [687, -561], [685, -533], [691, -527], [714, -527], [718, -534], [716, -561]]}, "center": {"168-258": [702, -546]}}, -{"id": 1686, "name": "Murder Drones", "description": "Murder Drones is an internet webseries uploaded onto YouTube made by Glitch, following the story of Uzi (The purple-haired drone) as she befriends N (The one wearing a black pilot hat) and uncover the dark yet humourous lore of Copper-19, the planet the robots are on. To the left is J, and beside N is V.", "links": {"website": ["https://www.glitchprod.com/murder-drones"], "subreddit": ["MurderDrones"], "discord": ["murderdrones"]}, "path": {"183-258": [[-872, 915], [-787, 916], [-787, 943], [-872, 942], [-872, 928]]}, "center": {"183-258": [-829, 929]}}, -{"id": 1687, "name": "Murder Drones", "description": "Murder Drones is an internet web series uploaded onto YouTube made by Glitch Productions, following the story of Uzi as she befriends N and uncovers the dark yet humorous lore of Copper-9, the setting of the show. The piece is a headshot of both N and Uzi, N being the left half (with white hair) and Uzi being the right half (with purple hair).", "links": {"website": ["https://www.glitchprod.com/murder-drones"], "subreddit": ["MurderDrones"], "discord": ["g9T4JbyDar"]}, "path": {"185-258": [[-621, 137], [-602, 137], [-602, 156], [-621, 156]]}, "center": {"185-258": [-611, 147]}}, +{"id": 1683, "name": "Flag of Nepal", "description": "Nepal is a landlocked country in South Asia. It is mainly situated in the Himalayas, but also includes parts of the Indo-Gangetic Plain. It borders the Tibet Autonomous Region of China to the north, and India in the south, east, and west, while it is narrowly separated from Bangladesh by the Siliguri Corridor, and from Bhutan by the Indian state of Sikkim.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Nepal", "https://en.wikipedia.org/wiki/Nepal"], "subreddit": ["Nepal"], "discord": ["tDm28xJ2DN"]}, "path": {"185-258, T": [[812, 136], [838, 163], [839, 164], [826, 164], [839, 178], [814, 178], [814, 194], [811, 194], [811, 137]]}, "center": {"185-258, T": [820, 157]}}, +{"id": 1684, "name": "RWTH Aachen University", "description": "Another German university that considers itself to be excellent.", "links": {"subreddit": ["rwth"]}, "path": {"170-258, T": [[-286, -77], [-223, -77], [-223, -57], [-286, -57]]}, "center": {"170-258, T": [-254, -67]}}, +{"id": 1685, "name": "Wingman", "description": "Valorant's \"Wingman\" is a cute little creature that is released by Gekko's ability. Gekko is an Agent in VALORANT and the sixth Initiator to be released. FIRE to send Wingman forward seeking enemies. Wingman unleashes a Concussive blast toward the first enemy he sees. ALT FIRE when targeting a Spike site or planted Spike to have Wingman defuse or plant the Spike. To plant, Gekko must have the Spike in his inventory. The english VALORANT streamer \"tarik\" created this art.", "links": {"website": ["https://valorant.fandom.com/wiki/Wingman", "https://valorant.fandom.com/wiki/Gekko", "https://www.twitch.tv/tarik"], "subreddit": ["tarik"]}, "path": {"168-258, T": [[701, -567], [687, -561], [685, -533], [691, -527], [714, -527], [718, -534], [716, -561]]}, "center": {"168-258, T": [702, -546]}}, +{"id": 1686, "name": "Murder Drones", "description": "Murder Drones is an internet webseries uploaded onto YouTube made by Glitch, following the story of Uzi (The purple-haired drone) as she befriends N (The one wearing a black pilot hat) and uncover the dark yet humourous lore of Copper-19, the planet the robots are on. To the left is J, and beside N is V.", "links": {"website": ["https://www.glitchprod.com/murder-drones"], "subreddit": ["MurderDrones"], "discord": ["murderdrones"]}, "path": {"183-258, T": [[-872, 915], [-787, 916], [-787, 943], [-872, 942], [-872, 928]]}, "center": {"183-258, T": [-829, 929]}}, +{"id": 1687, "name": "Murder Drones", "description": "Murder Drones is an internet web series uploaded onto YouTube made by Glitch Productions, following the story of Uzi as she befriends N and uncovers the dark yet humorous lore of Copper-9, the setting of the show. The piece is a headshot of both N and Uzi, N being the left half (with white hair) and Uzi being the right half (with purple hair).", "links": {"website": ["https://www.glitchprod.com/murder-drones"], "subreddit": ["MurderDrones"], "discord": ["g9T4JbyDar"]}, "path": {"185-258, T": [[-621, 137], [-602, 137], [-602, 156], [-621, 156]]}, "center": {"185-258, T": [-611, 147]}}, {"id": 1688, "name": "CellA", "description": "CellA is a Cellbit's emote in Twitch. It was made because Cellbit thought r/place was ending and he wanted to show gratitude to the community.", "links": {"website": ["https://www.twitch.tv/cellbit"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"170-189": [[741, 403], [763, 403], [763, 405], [793, 405], [793, 360], [792, 360], [792, 356], [783, 347], [760, 347], [756, 348], [750, 355], [747, 362], [747, 374], [745, 374], [743, 376], [741, 379]]}, "center": {"170-189": [770, 380]}}, -{"id": 1689, "name": "Jibanyan", "description": "Jibanyan is a cat-like Yo-kai who is the mascot of the Yo-kai Watch franchise.", "links": {"website": ["https://yokaiwatch.fandom.com/wiki/Jibanyan"], "subreddit": ["yokaiwatch"]}, "path": {"177-258": [[85, 248], [85, 241], [139, 241], [139, 248], [110, 249], [87, 248]]}, "center": {"177-258": [112, 245]}}, -{"id": 1690, "name": "Quackity", "description": "Quackity is a Mexican Youtuber, who makes content in English and Spanish. He's a variety streamer and the creator of the first multilingual Minecraft server (Qsmp)\nThis art work was made by his community and showcases symbols that are associated with him, such as: the planet duck logo (his merch logo), a pyramid, a casino chip and so on.", "links": {"website": ["https://youtube.fandom.com/wiki/Quackity", "https://m.youtube.com/channel/UC_8NknAFiyhOUaZqHR3lq3Q", "https://m.youtube.com/channel/UCe1qnldaAomlf2uK4HwYHFQ", "https://m.twitch.tv/quackity", "https://m.twitch.tv/quackitytoo"], "subreddit": ["quackity", "qsmp"]}, "path": {"130-258": [[500, 464], [500, 498], [579, 499], [579, 465], [501, 465], [500, 465], [579, 465], [579, 499], [500, 499]]}, "center": {"130-258": [535, 499]}}, +{"id": 1689, "name": "Jibanyan", "description": "Jibanyan is a cat-like Yo-kai who is the mascot of the Yo-kai Watch franchise.", "links": {"website": ["https://yokaiwatch.fandom.com/wiki/Jibanyan"], "subreddit": ["yokaiwatch"]}, "path": {"177-258, T": [[85, 248], [85, 241], [139, 241], [139, 248], [110, 249], [87, 248]]}, "center": {"177-258, T": [112, 245]}}, +{"id": 1690, "name": "Quackity", "description": "Quackity is a Mexican Youtuber, who makes content in English and Spanish. He's a variety streamer and the creator of the first multilingual Minecraft server (Qsmp)\nThis art work was made by his community and showcases symbols that are associated with him, such as: the planet duck logo (his merch logo), a pyramid, a casino chip and so on.", "links": {"website": ["https://youtube.fandom.com/wiki/Quackity", "https://m.youtube.com/channel/UC_8NknAFiyhOUaZqHR3lq3Q", "https://m.youtube.com/channel/UCe1qnldaAomlf2uK4HwYHFQ", "https://m.twitch.tv/quackity", "https://m.twitch.tv/quackitytoo"], "subreddit": ["quackity", "qsmp"]}, "path": {"130-258, T": [[500, 464], [500, 498], [579, 499], [579, 465], [501, 465], [500, 465], [579, 465], [579, 499], [500, 499]]}, "center": {"130-258, T": [535, 499]}}, {"id": 1691, "name": "La Manada Horny", "description": "A furry group in VRChat.", "links": {"subreddit": ["LaManadaHorny"], "discord": ["lmh"]}, "path": {"166-185": [[-685, -448], [-679, -449], [-677, -444], [-730, -443], [-730, -451], [-675, -451], [-675, -443], [-675, -442], [-730, -442], [-730, -447]]}, "center": {"166-185": [-727, -449]}}, -{"id": 1692, "name": "Frakk, The famous dog", "description": "\"Frakk\" is a character from the cartoon \"Frakk, a macskák réme\". The plot was written by the famous hungarian fabulist: Bálint Ágnes. The broadcasting of the show was started in 1972 and it lasted until 1988. It has been rebroadcasted many times since and it became a part of many hungarian's childhood. \n\nThe show pictures an old couple and their spoiled pets. There is Frakk, the dog and the two cats: \"Lukrécia and Szerénke\".\n\nFrakk often punishes the two cats when they misbehave. But he also shows care towards them when they get into trouble.\n\nSzerénke is a lazy and gluttonous cat. She is also devious and always try to annoy Frakk. \n\nLukrécia is Szerénke's companion and she is also lazy and gluttonous. But in opposition to Szerénke she is more timid and a bit dumber.\n\nKároly Bácsi is the husband of Irma Néni, who is really fond of Frakk's presence, because he doesn't really like the cats being around in the house. He is mad that his wife coddles the two cats, but he kind of does the same with Frakk.\n\nIrma Néni is the wife of Károly Bácsi. Who really loves the two cats, but she also don't really seem to have problems with Frakk being there. She is a typical housewife, she does most of the housework in the household. She is also really talented at playing the piano and often entertains her husband and the pets in the house.", "links": {}, "path": {"194-258": [[-748, -16], [-742, -16], [-742, -18], [-739, -18], [-739, -17], [-738, -17], [-738, -16], [-736, -16], [-736, -15], [-727, -15], [-727, -16], [-725, -16], [-725, -17], [-721, -17], [-721, -16], [-715, -16], [-715, -18], [-716, -18], [-716, -19], [-719, -19], [-719, -21], [-720, -21], [-720, -23], [-721, -23], [-721, -25], [-723, -25], [-723, -26], [-722, -27], [-722, -31], [-723, -31], [-723, -33], [-724, -33], [-724, -34], [-727, -34], [-727, -35], [-730, -35], [-730, -34], [-732, -34], [-732, -35], [-736, -35], [-736, -34], [-737, -34], [-737, -33], [-739, -33], [-739, -32], [-740, -32], [-740, -31], [-741, -31], [-741, -26], [-740, -26], [-740, -20], [-742, -20], [-742, -19], [-747, -19], [-747, -18], [-748, -18]]}, "center": {"194-258": [-731, -24]}}, -{"id": 1694, "name": "Northwest Territories Territorial Flag", "description": "The Northwest Territories is the most populated of the three territories in Canada. It entered the Canadian Confederation in 1870 and since then has been divided four times to create provinces and territories or enlarge existing ones. The blue of the flag represents the Northwest Territories' waters whereas the white represents snow and ice. In the center is the shield from the coat of arms of the Northwest Territories.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"185-258": [[91, 185], [91, 187], [95, 187], [95, 185]]}, "center": {"185-258": [93, 186]}}, -{"id": 1695, "name": "Commemoration of the terrorist attacks 2011", "description": "The 2011 Norway attacks, referred to in Norway as 22 July (Norwegian: 22. juli)[13] or as 22/7,[14] were two domestic terrorist attacks by far right terrorist Anders Behring Breivik against the government, the civilian population, and a Workers' Youth League (AUF) summer camp, in which a total 77 people were killed. The rose is the symbol of the Labour party which the terrorist explicitedly targeted.", "links": {"website": ["https://en.wikipedia.org/wiki/2011_Norway_attacks"]}, "path": {"193-258": [[-49, -313], [-48, -314], [-48, -316], [-42, -316], [-39, -319], [-39, -323], [-43, -323], [-44, -322], [-45, -322], [-45, -325], [-38, -331], [-39, -332], [-41, -332], [-43, -330], [-43, -334], [-41, -334], [-39, -336], [-39, -341], [-38, -341], [-38, -342], [-40, -344], [-41, -344], [-42, -343], [-43, -344], [-45, -344], [-46, -343], [-47, -342], [-49, -342], [-49, -337], [-46, -334], [-44, -334], [-44, -327], [-45, -328], [-48, -332], [-49, -332], [-53, -338], [-74, -338], [-75, -337], [-75, -334], [-53, -334], [-50, -331], [-50, -327], [-48, -324], [-46, -322], [-45, -320], [-47, -320], [-47, -317], [-48, -316]]}, "center": {"193-258": [-44, -339]}}, -{"id": 1696, "name": "Pas mal, non ? C'est français.", "description": "A french meme, coming from a parody movie called \"La classe américaine\" from Michel Hazanavicius - which is a movie that takes lots of shots from documentaries and american movies and give them a whole different, comic, meaning.\n\nIn the parody movie, there's an interview of Orson Welles (depicted here), speaking in front of the castle of Vaux-le-Vicomte. He then claims it's his house and tells the audience \"Pas mal, non ? C'est français.\" (\"Not bad, huh? It's french.\")", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"163-258": [[-500, 693], [-468, 693], [-462, 695], [-459, 689], [-460, 683], [-460, 678], [-461, 671], [-466, 662], [-466, 659], [-466, 653], [-464, 650], [-462, 649], [-462, 630], [-498, 630], [-498, 648], [-477, 649], [-479, 657], [-492, 660], [-501, 675], [-501, 693]]}, "center": {"163-258": [-479, 675]}}, -{"id": 1697, "name": "Brushbug (Witch Hat Atelier)", "description": "This pixelart represents one of the magical creatures from the manga series Witch Hat Atelier.\n\nWitch Hat Atelier (とんがり帽子のアトリエ) is an ongoing manga written and illustrated by Kamome Shirahama.\n\nThe series follows a girl named Coco, who dreams of being a witch, but in her world only those born with magical abilities are able to become witches. However, after meeting a witch named Qifrey, it seems like there may be hope for Coco after all.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Witch_Hat_Atelier_Wiki"], "subreddit": ["WitchHatAtelier"], "discord": ["xpQSRKjH"]}, "path": {"191-258": [[601, 885], [617, 885], [617, 901], [601, 901]]}, "center": {"191-258": [609, 893]}}, -{"id": 1698, "name": "Playboi Carti and Lil Uzi Vert kissing", "description": "Fanart of the \"16*29\" duo making out. \n\nWhen Uzi saw this post on r/playboicarti, he commented \"Ok deleting Reddit for now\".", "links": {"website": ["https://en.wikipedia.org/wiki/Playboi_Carti", "https://ibb.co/QX9wvpt", "https://www.reddit.com/r/playboicarti/comments/mc5fm0/1629_official_album_cover_leak/"], "subreddit": ["playboicarti", "liluzivert"], "discord": ["playboicarti"]}, "path": {"155-258": [[-543, -191], [-543, -204], [-568, -204], [-567, -212], [-531, -211], [-531, -204], [-502, -204], [-502, -191], [-543, -191], [-556, -191], [-556, -203], [-543, -203]]}, "center": {"155-258": [-536, -199]}}, -{"id": 1699, "name": "crystallized", "description": "The album artwork for Camellia's 6th release, \"crystallized\"", "links": {"website": ["https://cametek.bandcamp.com/album/crystallized", "https://open.spotify.com/album/4BZrEsdUTYu8EJc7Yrgq0n", "https://cametek.jp/crystallized/"]}, "path": {"176-258": [[-1382, -326], [-1385, -326], [-1375, -326], [-1375, -287], [-1411, -288], [-1413, -290], [-1407, -292], [-1407, -294], [-1409, -297], [-1404, -297], [-1414, -311], [-1403, -306], [-1405, -317], [-1399, -312], [-1399, -320], [-1393, -313], [-1390, -317], [-1390, -319], [-1390, -320], [-1387, -319], [-1387, -324], [-1386, -324]]}, "center": {"176-258": [-1388, -301]}}, -{"id": 1700, "name": "Ganz CSMG", "description": "The Ganz CSMG is a series of tramcars which was manufactured by Hungarian companies Ganz-MÁVAG Mozdony-, Vagon- és Gépgyár (\"Ganz-MÁVAG Locomotive, Carriage and Machine Factory\") and Ganz Villamossági Gyár (\"Ganz Electric Factory\"). The cars were manufactured in Budapest between 1964 and 1978, and in overall 152 regular units and two prototypes were made.", "links": {}, "path": {"195-258": [[-859, -8], [-849, -8], [-849, -7], [-848, -7], [-848, -8], [-844, -8], [-844, -7], [-843, -7], [-843, -8], [-826, -8], [-826, -7], [-825, -7], [-825, -8], [-821, -8], [-821, -7], [-820, -7], [-820, -8], [-806, -8], [-806, -7], [-805, -7], [-805, -8], [-801, -8], [-801, -7], [-800, -7], [-800, -8], [-783, -8], [-783, -7], [-782, -7], [-782, -8], [-778, -8], [-778, -7], [-777, -7], [-777, -8], [-767, -8], [-767, -9], [-765, -9], [-765, -10], [-764, -10], [-766, -10], [-766, -13], [-767, -13], [-767, -16], [-768, -16], [-768, -18], [-769, -18], [-769, -19], [-791, -19], [-791, -20], [-790, -21], [-789, -21], [-789, -22], [-788, -22], [-789, -22], [-789, -23], [-790, -23], [-790, -24], [-791, -24], [-791, -25], [-793, -25], [-793, -28], [-794, -28], [-794, -25], [-796, -25], [-796, -24], [-797, -24], [-797, -23], [-798, -23], [-798, -22], [-799, -22], [-799, -21], [-797, -21], [-796, -20], [-796, -19], [-802, -19], [-802, -18], [-805, -18], [-805, -20], [-818, -20], [-818, -19], [-821, -19], [-821, -18], [-824, -18], [-824, -19], [-842, -19], [-842, -20], [-841, -21], [-840, -21], [-840, -22], [-839, -22], [-840, -22], [-840, -24], [-842, -24], [-842, -25], [-844, -25], [-844, -26], [-845, -26], [-845, -25], [-847, -25], [-847, -24], [-848, -24], [-848, -23], [-849, -23], [-849, -21], [-848, -21], [-847, -20], [-847, -19], [-857, -19], [-857, -18], [-858, -18], [-858, -16], [-859, -16], [-859, -13], [-860, -13], [-860, -11], [-861, -11], [-861, -10], [-860, -10], [-860, -9], [-859, -9]]}, "center": {"195-258": [-813, -14]}}, +{"id": 1692, "name": "Frakk, The famous dog", "description": "\"Frakk\" is a character from the cartoon \"Frakk, a macskák réme\". The plot was written by the famous hungarian fabulist: Bálint Ágnes. The broadcasting of the show was started in 1972 and it lasted until 1988. It has been rebroadcasted many times since and it became a part of many hungarian's childhood. \n\nThe show pictures an old couple and their spoiled pets. There is Frakk, the dog and the two cats: \"Lukrécia and Szerénke\".\n\nFrakk often punishes the two cats when they misbehave. But he also shows care towards them when they get into trouble.\n\nSzerénke is a lazy and gluttonous cat. She is also devious and always try to annoy Frakk. \n\nLukrécia is Szerénke's companion and she is also lazy and gluttonous. But in opposition to Szerénke she is more timid and a bit dumber.\n\nKároly Bácsi is the husband of Irma Néni, who is really fond of Frakk's presence, because he doesn't really like the cats being around in the house. He is mad that his wife coddles the two cats, but he kind of does the same with Frakk.\n\nIrma Néni is the wife of Károly Bácsi. Who really loves the two cats, but she also don't really seem to have problems with Frakk being there. She is a typical housewife, she does most of the housework in the household. She is also really talented at playing the piano and often entertains her husband and the pets in the house.", "links": {}, "path": {"194-258, T": [[-748, -16], [-742, -16], [-742, -18], [-739, -18], [-739, -17], [-738, -17], [-738, -16], [-736, -16], [-736, -15], [-727, -15], [-727, -16], [-725, -16], [-725, -17], [-721, -17], [-721, -16], [-715, -16], [-715, -18], [-716, -18], [-716, -19], [-719, -19], [-719, -21], [-720, -21], [-720, -23], [-721, -23], [-721, -25], [-723, -25], [-723, -26], [-722, -27], [-722, -31], [-723, -31], [-723, -33], [-724, -33], [-724, -34], [-727, -34], [-727, -35], [-730, -35], [-730, -34], [-732, -34], [-732, -35], [-736, -35], [-736, -34], [-737, -34], [-737, -33], [-739, -33], [-739, -32], [-740, -32], [-740, -31], [-741, -31], [-741, -26], [-740, -26], [-740, -20], [-742, -20], [-742, -19], [-747, -19], [-747, -18], [-748, -18]]}, "center": {"194-258, T": [-731, -24]}}, +{"id": 1694, "name": "Northwest Territories Territorial Flag", "description": "The Northwest Territories is the most populated of the three territories in Canada. It entered the Canadian Confederation in 1870 and since then has been divided four times to create provinces and territories or enlarge existing ones. The blue of the flag represents the Northwest Territories' waters whereas the white represents snow and ice. In the center is the shield from the coat of arms of the Northwest Territories.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"185-258, T": [[91, 185], [91, 187], [95, 187], [95, 185]]}, "center": {"185-258, T": [93, 186]}}, +{"id": 1695, "name": "Commemoration of the terrorist attacks 2011", "description": "The 2011 Norway attacks, referred to in Norway as 22 July (Norwegian: 22. juli)[13] or as 22/7,[14] were two domestic terrorist attacks by far right terrorist Anders Behring Breivik against the government, the civilian population, and a Workers' Youth League (AUF) summer camp, in which a total 77 people were killed. The rose is the symbol of the Labour party which the terrorist explicitedly targeted.", "links": {"website": ["https://en.wikipedia.org/wiki/2011_Norway_attacks"]}, "path": {"193-258, T": [[-49, -313], [-48, -314], [-48, -316], [-42, -316], [-39, -319], [-39, -323], [-43, -323], [-44, -322], [-45, -322], [-45, -325], [-38, -331], [-39, -332], [-41, -332], [-43, -330], [-43, -334], [-41, -334], [-39, -336], [-39, -341], [-38, -341], [-38, -342], [-40, -344], [-41, -344], [-42, -343], [-43, -344], [-45, -344], [-46, -343], [-47, -342], [-49, -342], [-49, -337], [-46, -334], [-44, -334], [-44, -327], [-45, -328], [-48, -332], [-49, -332], [-53, -338], [-74, -338], [-75, -337], [-75, -334], [-53, -334], [-50, -331], [-50, -327], [-48, -324], [-46, -322], [-45, -320], [-47, -320], [-47, -317], [-48, -316]]}, "center": {"193-258, T": [-44, -339]}}, +{"id": 1696, "name": "Pas mal, non ? C'est français.", "description": "A french meme, coming from a parody movie called \"La classe américaine\" from Michel Hazanavicius - which is a movie that takes lots of shots from documentaries and american movies and give them a whole different, comic, meaning.\n\nIn the parody movie, there's an interview of Orson Welles (depicted here), speaking in front of the castle of Vaux-le-Vicomte. He then claims it's his house and tells the audience \"Pas mal, non ? C'est français.\" (\"Not bad, huh? It's french.\")", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"163-258, T": [[-500, 693], [-468, 693], [-462, 695], [-459, 689], [-460, 683], [-460, 678], [-461, 671], [-466, 662], [-466, 659], [-466, 653], [-464, 650], [-462, 649], [-462, 630], [-498, 630], [-498, 648], [-477, 649], [-479, 657], [-492, 660], [-501, 675], [-501, 693]]}, "center": {"163-258, T": [-479, 675]}}, +{"id": 1697, "name": "Brushbug (Witch Hat Atelier)", "description": "This pixelart represents one of the magical creatures from the manga series Witch Hat Atelier.\n\nWitch Hat Atelier (とんがり帽子のアトリエ) is an ongoing manga written and illustrated by Kamome Shirahama.\n\nThe series follows a girl named Coco, who dreams of being a witch, but in her world only those born with magical abilities are able to become witches. However, after meeting a witch named Qifrey, it seems like there may be hope for Coco after all.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Witch_Hat_Atelier_Wiki"], "subreddit": ["WitchHatAtelier"], "discord": ["xpQSRKjH"]}, "path": {"191-258, T": [[601, 885], [617, 885], [617, 901], [601, 901]]}, "center": {"191-258, T": [609, 893]}}, +{"id": 1698, "name": "Playboi Carti and Lil Uzi Vert kissing", "description": "Fanart of the \"16*29\" duo making out. \n\nWhen Uzi saw this post on r/playboicarti, he commented \"Ok deleting Reddit for now\".", "links": {"website": ["https://en.wikipedia.org/wiki/Playboi_Carti", "https://ibb.co/QX9wvpt", "https://www.reddit.com/r/playboicarti/comments/mc5fm0/1629_official_album_cover_leak/"], "subreddit": ["playboicarti", "liluzivert"], "discord": ["playboicarti"]}, "path": {"155-258, T": [[-543, -191], [-543, -204], [-568, -204], [-567, -212], [-531, -211], [-531, -204], [-502, -204], [-502, -191], [-543, -191], [-556, -191], [-556, -203], [-543, -203]]}, "center": {"155-258, T": [-536, -199]}}, +{"id": 1699, "name": "crystallized", "description": "The album artwork for Camellia's 6th release, \"crystallized\"", "links": {"website": ["https://cametek.bandcamp.com/album/crystallized", "https://open.spotify.com/album/4BZrEsdUTYu8EJc7Yrgq0n", "https://cametek.jp/crystallized/"]}, "path": {"176-258, T": [[-1382, -326], [-1385, -326], [-1375, -326], [-1375, -287], [-1411, -288], [-1413, -290], [-1407, -292], [-1407, -294], [-1409, -297], [-1404, -297], [-1414, -311], [-1403, -306], [-1405, -317], [-1399, -312], [-1399, -320], [-1393, -313], [-1390, -317], [-1390, -319], [-1390, -320], [-1387, -319], [-1387, -324], [-1386, -324]]}, "center": {"176-258, T": [-1388, -301]}}, +{"id": 1700, "name": "Ganz CSMG", "description": "The Ganz CSMG is a series of tramcars which was manufactured by Hungarian companies Ganz-MÁVAG Mozdony-, Vagon- és Gépgyár (\"Ganz-MÁVAG Locomotive, Carriage and Machine Factory\") and Ganz Villamossági Gyár (\"Ganz Electric Factory\"). The cars were manufactured in Budapest between 1964 and 1978, and in overall 152 regular units and two prototypes were made.", "links": {}, "path": {"195-258, T": [[-859, -8], [-849, -8], [-849, -7], [-848, -7], [-848, -8], [-844, -8], [-844, -7], [-843, -7], [-843, -8], [-826, -8], [-826, -7], [-825, -7], [-825, -8], [-821, -8], [-821, -7], [-820, -7], [-820, -8], [-806, -8], [-806, -7], [-805, -7], [-805, -8], [-801, -8], [-801, -7], [-800, -7], [-800, -8], [-783, -8], [-783, -7], [-782, -7], [-782, -8], [-778, -8], [-778, -7], [-777, -7], [-777, -8], [-767, -8], [-767, -9], [-765, -9], [-765, -10], [-764, -10], [-766, -10], [-766, -13], [-767, -13], [-767, -16], [-768, -16], [-768, -18], [-769, -18], [-769, -19], [-791, -19], [-791, -20], [-790, -21], [-789, -21], [-789, -22], [-788, -22], [-789, -22], [-789, -23], [-790, -23], [-790, -24], [-791, -24], [-791, -25], [-793, -25], [-793, -28], [-794, -28], [-794, -25], [-796, -25], [-796, -24], [-797, -24], [-797, -23], [-798, -23], [-798, -22], [-799, -22], [-799, -21], [-797, -21], [-796, -20], [-796, -19], [-802, -19], [-802, -18], [-805, -18], [-805, -20], [-818, -20], [-818, -19], [-821, -19], [-821, -18], [-824, -18], [-824, -19], [-842, -19], [-842, -20], [-841, -21], [-840, -21], [-840, -22], [-839, -22], [-840, -22], [-840, -24], [-842, -24], [-842, -25], [-844, -25], [-844, -26], [-845, -26], [-845, -25], [-847, -25], [-847, -24], [-848, -24], [-848, -23], [-849, -23], [-849, -21], [-848, -21], [-847, -20], [-847, -19], [-857, -19], [-857, -18], [-858, -18], [-858, -16], [-859, -16], [-859, -13], [-860, -13], [-860, -11], [-861, -11], [-861, -10], [-860, -10], [-860, -9], [-859, -9]]}, "center": {"195-258, T": [-813, -14]}}, {"id": 1701, "name": "MrWissen2go Geschichte", "description": "MrWissen2go Geschichte is a german you tube that informs about history of any kind. in germany many students owe him better history grades.", "links": {"website": ["https://youtube.com/@MrWissen2goGeschichte"]}, "path": {"189-190": [[-667, -1000], [-640, -1000], [-640, -972], [-667, -972]]}, "center": {"189-190": [-653, -986]}}, -{"id": 1702, "name": "Golden Frying Pan", "description": "The Golden Frying Pan is an incredibly rare and expensive item in the video game Team Fortress 2. It has a very small chance to drop as a reward for completing the PvE campaign Mann vs. Machine. Despite its rarity, it is a reskin of the stock melee weapon of the class it is equipped on. When dropped, it is automatically in Strange quality with a Professional Killstreak Kit, which tracks the amount of kills committed in a single life.", "links": {"website": ["https://wiki.teamfortress.com/wiki/Golden_Frying_Pan"], "subreddit": ["tf2", "Berserk"], "discord": ["tf2", "M699v8xSqz"]}, "path": {"170-258": [[572, 952], [570, 954], [570, 956], [569, 956], [567, 959], [567, 962], [565, 962], [565, 964], [573, 964], [574, 963], [578, 963], [578, 961], [576, 961], [576, 959], [574, 956], [574, 954]]}, "center": {"170-258": [572, 960]}}, -{"id": 1703, "name": "Titanfall 2", "description": "Titanfall 2 is a first-person movement shooter developed by Respawn Entertainment and published by EA. The number constantly changing is a joke about the fans going insane after waiting for so long for a third enrty in the series.", "links": {"subreddit": ["titanfall"]}, "path": {"194-258": [[-938, -273], [-938, -265], [-892, -265], [-892, -273]]}, "center": {"194-258": [-915, -269]}}, -{"id": 1704, "name": "V43 / Szili", "description": "The MÁV Class V43 is a Hungarian electric locomotive with a box-like appearance. It was meant to replace the MÁV Class V40 and MÁV Class V60, as well as the widespread Class 424 steam locomotives. A total of 379 locomotives were built between 1963 and 1982.", "links": {"website": ["https://en.wikipedia.org/wiki/M%C3%81V_Class_V43"]}, "path": {"148-258": [[-764, -7], [-753, -7], [-753, -19], [-743, -19], [-743, -26], [-764, -26]]}, "center": {"148-258": [-758, -16]}}, -{"id": 1705, "name": "Kuikui Cochon", "description": "Kuikui Cochon (Kuikui Pig in English) is the most famous card from the Franco-Andorran video game Funky Cards Arena.\n\nKuikui cochon itself is based on an old rantsona from the french youtuber Dekeskui", "links": {"website": ["https://barbecue-city.fandom.com/fr/wiki/Kuikui_Cochon"], "subreddit": ["funkycardsarena"], "discord": ["ZmWQrcaedn"]}, "path": {"193-258": [[362, -993], [362, -989], [363, -989], [363, -982], [362, -982], [362, -978], [372, -978], [372, -987], [371, -987], [371, -988], [370, -988], [370, -989], [369, -989], [369, -990], [368, -990], [368, -995], [364, -995], [363, -994]]}, "center": {"193-258": [367, -983]}}, +{"id": 1702, "name": "Golden Frying Pan", "description": "The Golden Frying Pan is an incredibly rare and expensive item in the video game Team Fortress 2. It has a very small chance to drop as a reward for completing the PvE campaign Mann vs. Machine. Despite its rarity, it is a reskin of the stock melee weapon of the class it is equipped on. When dropped, it is automatically in Strange quality with a Professional Killstreak Kit, which tracks the amount of kills committed in a single life.", "links": {"website": ["https://wiki.teamfortress.com/wiki/Golden_Frying_Pan"], "subreddit": ["tf2", "Berserk"], "discord": ["tf2", "M699v8xSqz"]}, "path": {"170-258, T": [[572, 952], [570, 954], [570, 956], [569, 956], [567, 959], [567, 962], [565, 962], [565, 964], [573, 964], [574, 963], [578, 963], [578, 961], [576, 961], [576, 959], [574, 956], [574, 954]]}, "center": {"170-258, T": [572, 960]}}, +{"id": 1703, "name": "Titanfall 2", "description": "Titanfall 2 is a first-person movement shooter developed by Respawn Entertainment and published by EA. The number constantly changing is a joke about the fans going insane after waiting for so long for a third enrty in the series.", "links": {"subreddit": ["titanfall"]}, "path": {"194-258, T": [[-938, -273], [-938, -265], [-892, -265], [-892, -273]]}, "center": {"194-258, T": [-915, -269]}}, +{"id": 1704, "name": "V43 / Szili", "description": "The MÁV Class V43 is a Hungarian electric locomotive with a box-like appearance. It was meant to replace the MÁV Class V40 and MÁV Class V60, as well as the widespread Class 424 steam locomotives. A total of 379 locomotives were built between 1963 and 1982.", "links": {"website": ["https://en.wikipedia.org/wiki/M%C3%81V_Class_V43"]}, "path": {"148-258, T": [[-764, -7], [-753, -7], [-753, -19], [-743, -19], [-743, -26], [-764, -26]]}, "center": {"148-258, T": [-758, -16]}}, +{"id": 1705, "name": "Kuikui Cochon", "description": "Kuikui Cochon (Kuikui Pig in English) is the most famous card from the Franco-Andorran video game Funky Cards Arena.\n\nKuikui cochon itself is based on an old rantsona from the french youtuber Dekeskui", "links": {"website": ["https://barbecue-city.fandom.com/fr/wiki/Kuikui_Cochon"], "subreddit": ["funkycardsarena"], "discord": ["ZmWQrcaedn"]}, "path": {"193-258, T": [[362, -993], [362, -989], [363, -989], [363, -982], [362, -982], [362, -978], [372, -978], [372, -987], [371, -987], [371, -988], [370, -988], [370, -989], [369, -989], [369, -990], [368, -990], [368, -995], [364, -995], [363, -994]]}, "center": {"193-258, T": [367, -983]}}, {"id": 1706, "name": "Kurzgesagt", "description": "Kurzgesagt (/ˌkʊərtsɡəˈzɑːkt/; German for \"In a nutshell\", \"Long story short\" or \"in short\", with \"in a few words\" also being a possible but less common translation in English) is a German-made animation and design studio founded by Philipp Dettmer. The studio's YouTube channel focuses on minimalistic animated educational content,[4] using a flat and 3D design style. It discusses scientific, technological, political, philosophical, and psychological subjects.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Kurzgesagt"], "subreddit": ["Kurzgesagt_Place", "kurzgesagt"]}, "path": {"192": [[-632, -567], [-622, -567], [-620, -568], [-619, -569], [-619, -571], [-618, -570], [-617, -569], [-615, -568], [-613, -567], [-609, -567], [-606, -567], [-603, -569], [-600, -570], [-599, -572], [-599, -575], [-597, -575], [-596, -577], [-596, -580], [-596, -582], [-596, -585], [-597, -587], [-598, -589], [-598, -591], [-600, -593], [-602, -594], [-605, -595], [-608, -596], [-612, -597], [-616, -596], [-617, -596], [-617, -598], [-618, -598], [-619, -599], [-620, -600], [-622, -600], [-625, -600], [-627, -598], [-627, -597], [-628, -595], [-628, -591], [-628, -588], [-628, -587], [-629, -587], [-630, -587], [-631, -588], [-633, -588], [-634, -589], [-635, -589], [-638, -589], [-639, -588], [-639, -583], [-638, -582], [-638, -579], [-637, -578], [-636, -576], [-634, -575], [-633, -573], [-632, -573], [-633, -572], [-631, -567]]}, "center": {"192": [-611, -582]}}, -{"id": 1707, "name": "A Kockásfülű nyúl", "description": "The rabbit with checkered ears is the main character of a 1977 hungarian cartoon of the same name. He can use his signature checkered ears to fly like a helicopter.\nThe Kockásfülű nyúl was the first art built by the hungarians, notoriously without using any proper overlay, that is the reason for its simplistic design.", "links": {"subreddit": ["hungary"]}, "path": {"49-258": [[-361, -31], [-361, -28], [-357, -17], [-351, -17], [-347, -29], [-347, -31]]}, "center": {"49-258": [-354, -25]}}, -{"id": 1708, "name": "lánchíd", "description": "The Széchenyi Chain Bridge is a famous bridge in Budapest, Hungary, spanning the River Danube and connecting Buda and Pest. Designed by William Tierney Clark and built by Adam Clark, it was the first permanent bridge across the Danube in Hungary, opening in 1849.", "links": {}, "path": {"151-258": [[-1002, -7], [-1001, -7], [-1001, -8], [-999, -8], [-982, -8], [-982, -7], [-934, -7], [-934, -16], [-937, -13], [-940, -13], [-943, -13], [-943, -14], [-945, -14], [-945, -15], [-947, -15], [-947, -16], [-948, -16], [-948, -17], [-949, -17], [-949, -18], [-950, -18], [-950, -19], [-951, -19], [-951, -20], [-952, -20], [-952, -21], [-953, -21], [-953, -23], [-952, -23], [-952, -24], [-953, -24], [-953, -25], [-955, -25], [-955, -24], [-956, -24], [-956, -23], [-955, -23], [-955, -21], [-956, -21], [-956, -19], [-957, -19], [-957, -17], [-958, -17], [-958, -15], [-960, -15], [-960, -14], [-963, -14], [-963, -13], [-971, -13], [-971, -14], [-974, -14], [-974, -15], [-976, -15], [-976, -17], [-977, -17], [-977, -19], [-978, -19], [-978, -21], [-979, -21], [-979, -23], [-978, -23], [-978, -24], [-979, -24], [-979, -25], [-981, -25], [-981, -24], [-982, -24], [-982, -23], [-981, -23], [-981, -21], [-982, -21], [-982, -20], [-983, -20], [-987, -15], [-989, -15], [-989, -14], [-991, -14], [-991, -13], [-995, -13], [-995, -12], [-1002, -12]]}, "center": {"151-258": [-953, -13]}}, -{"id": 1709, "name": "Fofa,The copper Knight", "description": "Fofa is a meme character of the Youtuber, Streamer and Musician Farfadox,Made his first appearance in a minecraft Server named\"Piolacraft 2\",A streamers Minecraft serie,Specifically in the End,Her nickname(The copper Knight)It refers To farfadox Nickname(The netherite Knight)Making fofa look like a cheaper version of him,The pixel art Was created by r/farfania", "links": {"website": ["https://pbs.twimg.com/media/FvUjvLzWIAEs1NJ.jpg", "https://pbs.twimg.com/media/FvUcNXuXwAEvn7O.png"], "subreddit": ["farfania"], "discord": ["pYNuvja"]}, "path": {"171-258": [[-1025, -281], [-1091, -281], [-1090, -215], [-1025, -215]]}, "center": {"171-258": [-1058, -248]}}, -{"id": 1710, "name": "F-16", "description": "The F-16 Fighting Falcon, better known as the Viper, is a multirole fighter jet developed by General Dynamics. In 2023, several NATO countries announced their plans to provide the Ukrainian Air Force with F-16s amid the ongoing war with Russia. The artwork depicts an F-16 painted in a livery of the Royal Netherlands Air Force.", "links": {}, "path": {"96-258": [[-30, -162], [-27, -163], [-22, -163], [-20, -162], [-20, -166], [-17, -165], [-13, -160], [-6, -160], [-6, -164], [-5, -168], [-4, -169], [-6, -172], [8, -172], [8, -170], [0, -169], [8, -161], [8, -160], [10, -160], [14, -161], [19, -162], [21, -161], [27, -160], [31, -159], [34, -157], [28, -156], [19, -155], [15, -154], [14, -153], [13, -152], [-9, -152], [-10, -152], [-10, -153], [-13, -153], [-15, -152], [-16, -151], [-17, -150], [-18, -149], [-19, -147], [-19, -154], [-23, -154], [-23, -158], [-24, -159], [-25, -160], [-26, -161]]}, "center": {"96-258": [1, -159]}}, +{"id": 1707, "name": "A Kockásfülű nyúl", "description": "The rabbit with checkered ears is the main character of a 1977 hungarian cartoon of the same name. He can use his signature checkered ears to fly like a helicopter.\nThe Kockásfülű nyúl was the first art built by the hungarians, notoriously without using any proper overlay, that is the reason for its simplistic design.", "links": {"subreddit": ["hungary"]}, "path": {"49-258, T": [[-361, -31], [-361, -28], [-357, -17], [-351, -17], [-347, -29], [-347, -31]]}, "center": {"49-258, T": [-354, -25]}}, +{"id": 1708, "name": "lánchíd", "description": "The Széchenyi Chain Bridge is a famous bridge in Budapest, Hungary, spanning the River Danube and connecting Buda and Pest. Designed by William Tierney Clark and built by Adam Clark, it was the first permanent bridge across the Danube in Hungary, opening in 1849.", "links": {}, "path": {"151-258, T": [[-1002, -7], [-1001, -7], [-1001, -8], [-999, -8], [-982, -8], [-982, -7], [-934, -7], [-934, -16], [-937, -13], [-940, -13], [-943, -13], [-943, -14], [-945, -14], [-945, -15], [-947, -15], [-947, -16], [-948, -16], [-948, -17], [-949, -17], [-949, -18], [-950, -18], [-950, -19], [-951, -19], [-951, -20], [-952, -20], [-952, -21], [-953, -21], [-953, -23], [-952, -23], [-952, -24], [-953, -24], [-953, -25], [-955, -25], [-955, -24], [-956, -24], [-956, -23], [-955, -23], [-955, -21], [-956, -21], [-956, -19], [-957, -19], [-957, -17], [-958, -17], [-958, -15], [-960, -15], [-960, -14], [-963, -14], [-963, -13], [-971, -13], [-971, -14], [-974, -14], [-974, -15], [-976, -15], [-976, -17], [-977, -17], [-977, -19], [-978, -19], [-978, -21], [-979, -21], [-979, -23], [-978, -23], [-978, -24], [-979, -24], [-979, -25], [-981, -25], [-981, -24], [-982, -24], [-982, -23], [-981, -23], [-981, -21], [-982, -21], [-982, -20], [-983, -20], [-987, -15], [-989, -15], [-989, -14], [-991, -14], [-991, -13], [-995, -13], [-995, -12], [-1002, -12]]}, "center": {"151-258, T": [-953, -13]}}, +{"id": 1709, "name": "Fofa,The copper Knight", "description": "Fofa is a meme character of the Youtuber, Streamer and Musician Farfadox,Made his first appearance in a minecraft Server named\"Piolacraft 2\",A streamers Minecraft serie,Specifically in the End,Her nickname(The copper Knight)It refers To farfadox Nickname(The netherite Knight)Making fofa look like a cheaper version of him,The pixel art Was created by r/farfania", "links": {"website": ["https://pbs.twimg.com/media/FvUjvLzWIAEs1NJ.jpg", "https://pbs.twimg.com/media/FvUcNXuXwAEvn7O.png"], "subreddit": ["farfania"], "discord": ["pYNuvja"]}, "path": {"171-258, T": [[-1025, -281], [-1091, -281], [-1090, -215], [-1025, -215]]}, "center": {"171-258, T": [-1058, -248]}}, +{"id": 1710, "name": "F-16", "description": "The F-16 Fighting Falcon, better known as the Viper, is a multirole fighter jet developed by General Dynamics. In 2023, several NATO countries announced their plans to provide the Ukrainian Air Force with F-16s amid the ongoing war with Russia. The artwork depicts an F-16 painted in a livery of the Royal Netherlands Air Force.", "links": {}, "path": {"96-258, T": [[-30, -162], [-27, -163], [-22, -163], [-20, -162], [-20, -166], [-17, -165], [-13, -160], [-6, -160], [-6, -164], [-5, -168], [-4, -169], [-6, -172], [8, -172], [8, -170], [0, -169], [8, -161], [8, -160], [10, -160], [14, -161], [19, -162], [21, -161], [27, -160], [31, -159], [34, -157], [28, -156], [19, -155], [15, -154], [14, -153], [13, -152], [-9, -152], [-10, -152], [-10, -153], [-13, -153], [-15, -152], [-16, -151], [-17, -150], [-18, -149], [-19, -147], [-19, -154], [-23, -154], [-23, -158], [-24, -159], [-25, -160], [-26, -161]]}, "center": {"96-258, T": [1, -159]}}, {"id": 1711, "name": "German Twitch Streamer Hallo_Alexa_", "description": "Made by German Twitch Streamer Hallo Alexa and her Community", "links": {"website": ["https://www.twitch.tv/hallo_alexa_"], "discord": ["fCUT5bF"]}, "path": {"195-198": [[-1293, 842], [-1293, 883], [-1274, 883], [-1267, 842]], "191-193": [[-1293, 883], [-1293, 854], [-1269, 854], [-1270, 860], [-1272, 872], [-1273, 873], [-1275, 883]], "189-190": [[-1293, 883], [-1293, 871], [-1289, 871], [-1288, 869], [-1288, 863], [-1289, 863], [-1289, 855], [-1278, 855], [-1278, 859], [-1275, 858], [-1272, 860], [-1274, 862], [-1274, 863], [-1273, 864], [-1273, 866], [-1276, 870], [-1276, 871], [-1274, 871], [-1274, 878], [-1275, 883]], "187-188": [[-1288, 870], [-1288, 863], [-1289, 863], [-1289, 855], [-1278, 855], [-1278, 859], [-1276, 859], [-1275, 858], [-1274, 858], [-1272, 860], [-1274, 861], [-1274, 863], [-1273, 864], [-1273, 866], [-1276, 870], [-1278, 868], [-1279, 868], [-1279, 870]]}, "center": {"195-198": [-1281, 854], "191-193": [-1282, 865], "189-190": [-1283, 875], "187-188": [-1282, 863]}}, {"id": 1712, "name": "Lost Kittn", "description": "", "links": {"website": ["https://www.twitch.tv/lostkittn"]}, "path": {"194-201": [[-139, 590], [-112, 590], [-112, 622], [-112, 628], [-139, 628]]}, "center": {"194-201": [-125, 609]}}, -{"id": 1713, "name": "Kana & Akane", "description": "Kana & Akane from Oshi No Ko. A mashup of the two characters together in one frame.\nMade mainly by discord.gg/oshinoko, as the subreddit r/oshinoko didn't do much.", "links": {"website": ["https://oshinoko.fandom.com/wiki/Kana_Arima", "https://oshinoko.fandom.com/wiki/Akane_Kurokawa"], "subreddit": ["OshiNoKo"], "discord": ["oshinoko"]}, "path": {"194-258": [[-1289, -698], [-1289, -628], [-1226, -629], [-1226, -699]]}, "center": {"194-258": [-1257, -663]}}, -{"id": 1714, "name": "Medic", "description": "The aggressively German Medic from the 2007 FPS, Team Fortress 2. Built during a Germany-TF2 cooperation.", "links": {"subreddit": ["placede", "tf2"]}, "path": {"195-258": [[-930, -953], [-930, -937], [-929, -936], [-929, -933], [-930, -933], [-931, -934], [-932, -933], [-932, -932], [-934, -932], [-934, -935], [-935, -936], [-937, -934], [-937, -933], [-938, -932], [-958, -932], [-958, -933], [-959, -934], [-959, -939], [-960, -940], [-963, -937], [-967, -937], [-969, -939], [-969, -946], [-970, -947], [-970, -949], [-969, -950], [-969, -951], [-968, -952], [-968, -954], [-967, -955], [-967, -963], [-968, -964], [-968, -966], [-969, -967], [-969, -972], [-968, -972], [-967, -973], [-965, -973], [-965, -970], [-962, -970], [-961, -971], [-960, -970], [-960, -969], [-961, -968], [-961, -967], [-959, -967], [-958, -966], [-959, -965], [-960, -965], [-961, -964], [-961, -953], [-957, -949], [-956, -950], [-954, -950], [-953, -951], [-952, -951], [-951, -952], [-951, -956], [-952, -957], [-952, -960], [-951, -961], [-951, -964], [-950, -965], [-949, -965], [-948, -966], [-944, -966], [-943, -965], [-943, -964], [-942, -963], [-942, -960], [-941, -959], [-941, -957], [-942, -956], [-942, -955], [-943, -954], [-943, -951], [-942, -950], [-941, -951], [-941, -953], [-939, -953], [-939, -950], [-938, -949], [-937, -950], [-937, -953]]}, "center": {"195-258": [-948, -942]}}, +{"id": 1713, "name": "Kana & Akane", "description": "Kana & Akane from Oshi No Ko. A mashup of the two characters together in one frame.\nMade mainly by discord.gg/oshinoko, as the subreddit r/oshinoko didn't do much.", "links": {"website": ["https://oshinoko.fandom.com/wiki/Kana_Arima", "https://oshinoko.fandom.com/wiki/Akane_Kurokawa"], "subreddit": ["OshiNoKo"], "discord": ["oshinoko"]}, "path": {"194-258, T": [[-1289, -698], [-1289, -628], [-1226, -629], [-1226, -699]]}, "center": {"194-258, T": [-1257, -663]}}, +{"id": 1714, "name": "Medic", "description": "The aggressively German Medic from the 2007 FPS, Team Fortress 2. Built during a Germany-TF2 cooperation.", "links": {"subreddit": ["placede", "tf2"]}, "path": {"195-258, T": [[-930, -953], [-930, -937], [-929, -936], [-929, -933], [-930, -933], [-931, -934], [-932, -933], [-932, -932], [-934, -932], [-934, -935], [-935, -936], [-937, -934], [-937, -933], [-938, -932], [-958, -932], [-958, -933], [-959, -934], [-959, -939], [-960, -940], [-963, -937], [-967, -937], [-969, -939], [-969, -946], [-970, -947], [-970, -949], [-969, -950], [-969, -951], [-968, -952], [-968, -954], [-967, -955], [-967, -963], [-968, -964], [-968, -966], [-969, -967], [-969, -972], [-968, -972], [-967, -973], [-965, -973], [-965, -970], [-962, -970], [-961, -971], [-960, -970], [-960, -969], [-961, -968], [-961, -967], [-959, -967], [-958, -966], [-959, -965], [-960, -965], [-961, -964], [-961, -953], [-957, -949], [-956, -950], [-954, -950], [-953, -951], [-952, -951], [-951, -952], [-951, -956], [-952, -957], [-952, -960], [-951, -961], [-951, -964], [-950, -965], [-949, -965], [-948, -966], [-944, -966], [-943, -965], [-943, -964], [-942, -963], [-942, -960], [-941, -959], [-941, -957], [-942, -956], [-942, -955], [-943, -954], [-943, -951], [-942, -950], [-941, -951], [-941, -953], [-939, -953], [-939, -950], [-938, -949], [-937, -950], [-937, -953]]}, "center": {"195-258, T": [-948, -942]}}, {"id": 1715, "name": "WBF", "description": "WBF is a small friend group who idolizes a bald person whose name is Wally Bayola (a famous Filipino entertainer). The rat (Tatiana) and the cat (Chooey) on the left are just two of the many cute fur babies in the WBF family.", "links": {}, "path": {"194-198": [[-1355, -669], [-1328, -669], [-1328, -663], [-1354, -663]]}, "center": {"194-198": [-1341, -666]}}, -{"id": 1716, "name": "FishHub [GER]", "description": "The FishHub community is a small community of Germans that have united with the 'Abteilung Südflagge' our fish represents a small group of friends which are all located in Hamburg, a well-known portcity!", "links": {"subreddit": ["Fishhub69"], "discord": ["RaPPMQbznV"]}, "path": {"194-258": [[-762, -69], [-762, -62], [-744, -62], [-744, -72], [-762, -72]]}, "center": {"194-258": [-753, -67]}}, +{"id": 1716, "name": "FishHub [GER]", "description": "The FishHub community is a small community of Germans that have united with the 'Abteilung Südflagge' our fish represents a small group of friends which are all located in Hamburg, a well-known portcity!", "links": {"subreddit": ["Fishhub69"], "discord": ["RaPPMQbznV"]}, "path": {"194-258, T": [[-762, -69], [-762, -62], [-744, -62], [-744, -72], [-762, -72]]}, "center": {"194-258, T": [-753, -67]}}, {"id": 1717, "name": "MrWissen2go Geschichte", "description": "MrWissen2go Geschichte is a german you tube that informs about history of any kind. in germany many students owe him better history grades.", "links": {"website": ["https://youtube.com/@MrWissen2goGeschichte"]}, "path": {"189-190": [[-667, -1000], [-640, -1000], [-640, -972], [-667, -972]]}, "center": {"189-190": [-653, -986]}}, -{"id": 1718, "name": "Dog with Peru t-shirt", "description": "Dog with Peru t-shirt, made by the community of a Peruvian streamer named Capitan Gato. On behalf of soccer lovers in Peru.", "links": {"website": ["https://www.youtube.com/@CapitanGato", "https://www.twitch.tv/capitangatoo"], "subreddit": ["capitangatoo"]}, "path": {"193-258": [[-1500, -754], [-1500, -755], [-1500, -662], [-1498, -662], [-1498, -683], [-1433, -683], [-1433, -660], [-1425, -660], [-1425, -688], [-1428, -688], [-1428, -689], [-1429, -689], [-1429, -690], [-1430, -690], [-1430, -694], [-1429, -694], [-1429, -695], [-1428, -695], [-1428, -754], [-1428, -755]]}, "center": {"193-258": [-1464, -719]}}, -{"id": 1719, "name": "Pöttyös", "description": "Pöttyös Túró Rudi is the name of a curd snack that has been enjoyed by hungarians since 1968. The bar is composed of a thin chocolate-flavored outer coating and an inner filling of túró (curd). The \"Rudi\" in the product name comes from the Hungarian \"rúd\", which translates to rod or bar (and is also a nickname for the name \"Rudolf\"). Túró Rudi can be found in several different flavours and sizes.", "links": {"website": ["https://en.wikipedia.org/wiki/T%C3%BAr%C3%B3_Rudi"]}, "path": {"94-258": [[-752, -7], [-707, -7], [-707, -17], [-752, -17]]}, "center": {"94-258": [-729, -12]}}, -{"id": 1720, "name": "\"Oshi no Ko\"", "description": "A manga written by Aka Akasaka and drawn by Mengo Yokoyari. In April 2023, the manga got adapted as an anime by Studio Doga Kobo. The artwork shows Akane Kurokawa and Kana Arima.", "links": {"subreddit": ["OshiNoKo"], "discord": ["2kBHE3ur5q"]}, "path": {"194-258": [[-1226, -630], [-1226, -698], [-1288, -698], [-1288, -630]]}, "center": {"194-258": [-1257, -664]}}, -{"id": 1722, "name": "Coat of Arms of Bavaria", "description": "The Coat of Arms of Bavaria next to the 9 Austrian States and South Tyrol. As a Symbol for Friendship between Austria and Bavaria (and some people wanting to unite the two)", "links": {"subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"56-258": [[13, -57], [13, -50], [16, -47], [18, -47], [21, -50], [21, -57]]}, "center": {"56-258": [17, -53]}}, +{"id": 1718, "name": "Dog with Peru t-shirt", "description": "Dog with Peru t-shirt, made by the community of a Peruvian streamer named Capitan Gato. On behalf of soccer lovers in Peru.", "links": {"website": ["https://www.youtube.com/@CapitanGato", "https://www.twitch.tv/capitangatoo"], "subreddit": ["capitangatoo"]}, "path": {"193-258, T": [[-1500, -754], [-1500, -755], [-1500, -662], [-1498, -662], [-1498, -683], [-1433, -683], [-1433, -660], [-1425, -660], [-1425, -688], [-1428, -688], [-1428, -689], [-1429, -689], [-1429, -690], [-1430, -690], [-1430, -694], [-1429, -694], [-1429, -695], [-1428, -695], [-1428, -754], [-1428, -755]]}, "center": {"193-258, T": [-1464, -719]}}, +{"id": 1719, "name": "Pöttyös", "description": "Pöttyös Túró Rudi is the name of a curd snack that has been enjoyed by hungarians since 1968. The bar is composed of a thin chocolate-flavored outer coating and an inner filling of túró (curd). The \"Rudi\" in the product name comes from the Hungarian \"rúd\", which translates to rod or bar (and is also a nickname for the name \"Rudolf\"). Túró Rudi can be found in several different flavours and sizes.", "links": {"website": ["https://en.wikipedia.org/wiki/T%C3%BAr%C3%B3_Rudi"]}, "path": {"94-258, T": [[-752, -7], [-707, -7], [-707, -17], [-752, -17]]}, "center": {"94-258, T": [-729, -12]}}, +{"id": 1720, "name": "\"Oshi no Ko\"", "description": "A manga written by Aka Akasaka and drawn by Mengo Yokoyari. In April 2023, the manga got adapted as an anime by Studio Doga Kobo. The artwork shows Akane Kurokawa and Kana Arima.", "links": {"subreddit": ["OshiNoKo"], "discord": ["2kBHE3ur5q"]}, "path": {"194-258, T": [[-1226, -630], [-1226, -698], [-1288, -698], [-1288, -630]]}, "center": {"194-258, T": [-1257, -664]}}, +{"id": 1722, "name": "Coat of Arms of Bavaria", "description": "The Coat of Arms of Bavaria next to the 9 Austrian States and South Tyrol. As a Symbol for Friendship between Austria and Bavaria (and some people wanting to unite the two)", "links": {"subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"56-258, T": [[13, -57], [13, -50], [16, -47], [18, -47], [21, -50], [21, -57]]}, "center": {"56-258, T": [17, -53]}}, {"id": 1723, "name": "Coat of Arms of South Tyrol", "description": "The Coat of Arms of South Tyrol next to the Austrian States to symbolise Austrian revanchism for the state", "links": {"subreddit": ["placeAustria"], "discord": ["f5ky84vGku"]}, "path": {"81-193": [[5, -56], [5, -50], [8, -47], [10, -47], [13, -50], [13, -57], [5, -57]]}, "center": {"81-193": [9, -53]}}, {"id": 1724, "name": "German Lattice", "description": "A Cooperation between Green Lattice and r/placeDE. Because the nothern flag was created by a miscommunication it was decided that the space will be offered to other communites under the protection of Germany. To completly make clear that Germany does not just want to have more empty space a cooperation with Green Lattice was formed and accepted per vote on the r/placeDE discord. After the German Lattice (a lattice in the colors of the german flag) was created it was handed over to Green Lattice to manage it.", "links": {"subreddit": ["placeDE", "GreenLattice"]}, "path": {"147-193": [[303, -1000], [303, -946], [299, -942], [305, -942], [306, -920], [394, -920], [473, -923], [470, -1001], [304, -1000]]}, "center": {"147-193": [387, -960]}}, -{"id": 1725, "name": "Balearic Islands", "description": "The Balearic Islands are an archipelago off the coast of Spain, and one of Spain's autonomous communities.\n\nThese islands, especially the largest island of Mallorca, were dominated by a German flag for the majority of their time on the canvas. Calling Mallorca the 17th federal state of Germany is a meme because German tourists visit the Spanish island for the so called \"Ballermann\" season to party and drink exponential amounts of alcohol. The actual flag of the Balearic Islands was drawn above the islands near the end of r/place when Spain fragmented into its individual autonomous communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Balearic_Islands", "https://en.wikipedia.org/wiki/Flag_of_the_Balearic_Islands"]}, "path": {"159-246": [[-298, 807], [-298, 815], [-291, 815], [-291, 811], [-287, 809], [-287, 804], [-291, 804], [-293, 806], [-293, 807]], "247-258": [[-297, 807], [-297, 812], [-295, 814], [-291, 814], [-291, 810], [-288, 810], [-287, 808], [-287, 807], [-287, 806], [-284, 806], [-284, 798], [-297, 798]]}, "center": {"159-246": [-294, 811], "247-258": [-292, 803]}}, -{"id": 1726, "name": "Shipka Monument", "description": "The Liberty Memorial on Shipka Peak is the symbol of modern Bulgaria and the liberation of Bulgaria.", "links": {"website": ["https://en.wikipedia.org/wiki/Shipka_Monument"], "subreddit": ["bulgaria"]}, "path": {"195-258": [[-524, 41], [-524, 39], [-525, 38], [-525, 36], [-526, 35], [-527, 34], [-527, 22], [-528, 21], [-528, 17], [-527, 16], [-527, 15], [-528, 14], [-530, 14], [-531, 15], [-531, 16], [-532, 16], [-532, 15], [-533, 14], [-535, 14], [-536, 15], [-536, 16], [-537, 16], [-537, 15], [-538, 14], [-540, 14], [-541, 15], [-541, 16], [-540, 17], [-540, 21], [-541, 22], [-541, 34], [-542, 35], [-543, 36], [-543, 38], [-544, 39], [-544, 41]]}, "center": {"195-258": [-534, 29]}}, -{"id": 1727, "name": "Farfania Flag", "description": "This flag represent a fictional country created by the Youtuber, Streamer and Musician Farfadox.\nThis country was founded in 12 of August of 2019\nThe colours of the flag represent:\nRed: \"Inherited by the blood of the strongest warriors in Minecraft\"\nWhite: \"Represents the pride of the nation, bright as the light\"\nBlack: \"Why does it match the other colors\"\nShield: \"It's cubic so it doesn't look like the Egyptian flag\"", "links": {"website": ["https://micronaciones.fandom.com/es/wiki/Farfania"], "subreddit": ["farfania"]}, "path": {"177-258": [[-1194, -281], [-1091, -281], [-1091, -214], [-1194, -214]]}, "center": {"177-258": [-1142, -247]}}, -{"id": 1728, "name": "Austria ❤️ Hungary", "description": "This is a peace sign to show great friendship between Austria and Hungary, built by both the Austrians and Hungarians.\n\nThis sign used to be a heart between Poland and Hungary, but the Polish side was repeatedly converted to Austria, and the Hungarians and Poles were busy building and couldn't defend it. Later, after the Hungarians finished building the Hungarian Parliament, they built another grief-proof Poland ❤️ Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Austria"], "subreddit": ["hungary", "placeAustria", "Austria"], "discord": ["pixelhu", "f5ky84vGku"]}, "path": {"148-149, 153-258": [[-775, -35], [-777, -33], [-777, -27], [-765, -27], [-764, -26], [-763, -27], [-750, -27], [-748, -29], [-748, -35], [-760, -35], [-761, -36], [-767, -36], [-768, -35]]}, "center": {"148-149, 153-258": [-764, -31]}}, -{"id": 1729, "name": "Zuzana Čaputová", "description": "The (very beautiful) president of Slovakia, made by r/Slovakia", "links": {"subreddit": ["Slovakia"], "discord": ["slovakia"]}, "path": {"161-258": [[-189, 577], [-188, 583], [-183, 588], [-176, 589], [-173, 592], [-160, 592], [-147, 589], [-146, 582], [-150, 575], [-152, 558], [-161, 548], [-174, 549], [-181, 555], [-186, 566]]}, "center": {"161-258": [-169, 573]}}, -{"id": 1730, "name": "Portrait of Atatürk", "description": "A black and white portrait of the founder of the Republic of Turkey. Turkish field marshal, revolutionary statesman, author, and the founding father of the Republic of Turkey, serving as its first president from 1923 until his death in 1938. He undertook sweeping progressive reforms, which modernized Turkey into a secular, industrializing nation Ideologically a secularist and nationalist, his policies and socio-political theories became known as Kemalism. Due to his military and political accomplishments, Atatürk is regarded as one of the most important political leaders of the 20th century.", "links": {"website": ["https://en.wikipedia.org/wiki/Mustafa_Kemal_Atatürk"], "subreddit": ["Turkey", "placeturkey"]}, "path": {"156-258": [[-570, 501], [-501, 501], [-501, 585], [-570, 585], [-564, 585], [-563, 502], [-532, 502]]}, "center": {"156-258": [-532, 535]}}, -{"id": 1731, "name": "The Rubik's cube", "description": "A hungarian world-breaking invention", "links": {}, "path": {"195-258": [[-1109, -7], [-1108, -7], [-1108, -8], [-1105, -8], [-1105, -9], [-1103, -9], [-1103, -10], [-1101, -10], [-1101, -11], [-1099, -11], [-1099, -12], [-1097, -12], [-1097, -27], [-1098, -27], [-1099, -27], [-1099, -28], [-1100, -28], [-1101, -28], [-1101, -29], [-1102, -29], [-1103, -29], [-1103, -30], [-1104, -30], [-1105, -30], [-1105, -31], [-1106, -31], [-1107, -31], [-1107, -32], [-1108, -32], [-1109, -32], [-1109, -33], [-1110, -33], [-1110, -32], [-1111, -32], [-1112, -32], [-1112, -31], [-1113, -31], [-1114, -31], [-1114, -30], [-1115, -30], [-1116, -30], [-1116, -29], [-1117, -29], [-1118, -29], [-1118, -28], [-1119, -28], [-1120, -28], [-1120, -27], [-1121, -27], [-1122, -27], [-1122, -26], [-1123, -26], [-1123, -12], [-1121, -12], [-1120, -12], [-1121, -11], [-1120, -11], [-1119, -11], [-1119, -10], [-1118, -10], [-1117, -10], [-1116, -10], [-1116, -9], [-1115, -9], [-1114, -9], [-1114, -8], [-1113, -8], [-1112, -8], [-1112, -7], [-1110, -7]]}, "center": {"195-258": [-1109, -19]}}, -{"id": 1732, "name": "Escape From Tarkov \"Killa's Helmet\" and CHK-logo", "description": "Escape From Tarkov is a realistic extraction MMORPG shooter created by BattleState Games based in Russia. The helmet depicted is of a boss within the game named \"Killa\"\n\nThe CHK stands for cheeki_scav a german EFT-Streamer who built the Helmet, in cooperation with the Moondye7 Community", "links": {"website": ["https://www.escapefromtarkov.com", "https://www.twitch.tv/cheeki_scav", "https://twitter.com/cheeki_scav/status/1683173469259722753?s=20", "https://www.twitch.tv/moondye7"], "subreddit": ["EscapefromTarkov"], "discord": ["escapefromtarkovofficial", "cheeki"]}, "path": {"40-258": [[385, -368], [397, -368], [397, -352], [385, -352], [385, -367]]}, "center": {"40-258": [391, -360]}}, -{"id": 1733, "name": "Akkor a kurva anyádat, Spez!", "description": "An insult to Reddit CEO u/spez, using the infamous Hungarian insult \"Akkor a kurva anyádat\" wich translates to \"Then your fucking mother, Spez\", more commonly used in English as \"fuck you\".", "links": {"subreddit": ["hungary"]}, "path": {"195-258": [[-1095, -6], [-1008, -6], [-1008, -25], [-1095, -25]]}, "center": {"195-258": [-1051, -15]}}, -{"id": 1734, "name": "Slovak-Slovenian envelope", "description": "An envelope to commemorate the fact that every month the embassies of the 2 countries exchange mail sent to the wrong country. Made by r/Slovakia and r/Slovenia", "links": {"subreddit": ["Slovakia", "Slovenia"]}, "path": {"195-258": [[393, -102], [392, -103], [392, -109], [405, -109], [405, -102]]}, "center": {"195-258": [399, -105]}}, +{"id": 1725, "name": "Balearic Islands", "description": "The Balearic Islands are an archipelago off the coast of Spain, and one of Spain's autonomous communities.\n\nThese islands, especially the largest island of Mallorca, were dominated by a German flag for the majority of their time on the canvas. Calling Mallorca the 17th federal state of Germany is a meme because German tourists visit the Spanish island for the so called \"Ballermann\" season to party and drink exponential amounts of alcohol. The actual flag of the Balearic Islands was drawn above the islands near the end of r/place when Spain fragmented into its individual autonomous communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Balearic_Islands", "https://en.wikipedia.org/wiki/Flag_of_the_Balearic_Islands"]}, "path": {"159-246": [[-298, 807], [-298, 815], [-291, 815], [-291, 811], [-287, 809], [-287, 804], [-291, 804], [-293, 806], [-293, 807]], "247-258, T": [[-297, 807], [-297, 812], [-295, 814], [-291, 814], [-291, 810], [-288, 810], [-287, 808], [-287, 807], [-287, 806], [-284, 806], [-284, 798], [-297, 798]]}, "center": {"159-246": [-294, 811], "247-258, T": [-292, 803]}}, +{"id": 1726, "name": "Shipka Monument", "description": "The Liberty Memorial on Shipka Peak is the symbol of modern Bulgaria and the liberation of Bulgaria.", "links": {"website": ["https://en.wikipedia.org/wiki/Shipka_Monument"], "subreddit": ["bulgaria"]}, "path": {"195-258, T": [[-524, 41], [-524, 39], [-525, 38], [-525, 36], [-526, 35], [-527, 34], [-527, 22], [-528, 21], [-528, 17], [-527, 16], [-527, 15], [-528, 14], [-530, 14], [-531, 15], [-531, 16], [-532, 16], [-532, 15], [-533, 14], [-535, 14], [-536, 15], [-536, 16], [-537, 16], [-537, 15], [-538, 14], [-540, 14], [-541, 15], [-541, 16], [-540, 17], [-540, 21], [-541, 22], [-541, 34], [-542, 35], [-543, 36], [-543, 38], [-544, 39], [-544, 41]]}, "center": {"195-258, T": [-534, 29]}}, +{"id": 1727, "name": "Farfania Flag", "description": "This flag represent a fictional country created by the Youtuber, Streamer and Musician Farfadox.\nThis country was founded in 12 of August of 2019\nThe colours of the flag represent:\nRed: \"Inherited by the blood of the strongest warriors in Minecraft\"\nWhite: \"Represents the pride of the nation, bright as the light\"\nBlack: \"Why does it match the other colors\"\nShield: \"It's cubic so it doesn't look like the Egyptian flag\"", "links": {"website": ["https://micronaciones.fandom.com/es/wiki/Farfania"], "subreddit": ["farfania"]}, "path": {"177-258, T": [[-1194, -281], [-1091, -281], [-1091, -214], [-1194, -214]]}, "center": {"177-258, T": [-1142, -247]}}, +{"id": 1728, "name": "Austria ❤️ Hungary", "description": "This is a peace sign to show great friendship between Austria and Hungary, built by both the Austrians and Hungarians.\n\nThis sign used to be a heart between Poland and Hungary, but the Polish side was repeatedly converted to Austria, and the Hungarians and Poles were busy building and couldn't defend it. Later, after the Hungarians finished building the Hungarian Parliament, they built another grief-proof Poland ❤️ Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Austria"], "subreddit": ["hungary", "placeAustria", "Austria"], "discord": ["pixelhu", "f5ky84vGku"]}, "path": {"148-149, 153-258, T": [[-775, -35], [-777, -33], [-777, -27], [-765, -27], [-764, -26], [-763, -27], [-750, -27], [-748, -29], [-748, -35], [-760, -35], [-761, -36], [-767, -36], [-768, -35]]}, "center": {"148-149, 153-258, T": [-764, -31]}}, +{"id": 1729, "name": "Zuzana Čaputová", "description": "The (very beautiful) president of Slovakia, made by r/Slovakia", "links": {"subreddit": ["Slovakia"], "discord": ["slovakia"]}, "path": {"161-258, T": [[-189, 577], [-188, 583], [-183, 588], [-176, 589], [-173, 592], [-160, 592], [-147, 589], [-146, 582], [-150, 575], [-152, 558], [-161, 548], [-174, 549], [-181, 555], [-186, 566]]}, "center": {"161-258, T": [-169, 573]}}, +{"id": 1730, "name": "Portrait of Atatürk", "description": "A black and white portrait of the founder of the Republic of Turkey. Turkish field marshal, revolutionary statesman, author, and the founding father of the Republic of Turkey, serving as its first president from 1923 until his death in 1938. He undertook sweeping progressive reforms, which modernized Turkey into a secular, industrializing nation Ideologically a secularist and nationalist, his policies and socio-political theories became known as Kemalism. Due to his military and political accomplishments, Atatürk is regarded as one of the most important political leaders of the 20th century.", "links": {"website": ["https://en.wikipedia.org/wiki/Mustafa_Kemal_Atatürk"], "subreddit": ["Turkey", "placeturkey"]}, "path": {"156-258, T": [[-570, 501], [-501, 501], [-501, 585], [-570, 585], [-564, 585], [-563, 502], [-532, 502]]}, "center": {"156-258, T": [-532, 535]}}, +{"id": 1731, "name": "The Rubik's cube", "description": "A hungarian world-breaking invention", "links": {}, "path": {"195-258, T": [[-1109, -7], [-1108, -7], [-1108, -8], [-1105, -8], [-1105, -9], [-1103, -9], [-1103, -10], [-1101, -10], [-1101, -11], [-1099, -11], [-1099, -12], [-1097, -12], [-1097, -27], [-1098, -27], [-1099, -27], [-1099, -28], [-1100, -28], [-1101, -28], [-1101, -29], [-1102, -29], [-1103, -29], [-1103, -30], [-1104, -30], [-1105, -30], [-1105, -31], [-1106, -31], [-1107, -31], [-1107, -32], [-1108, -32], [-1109, -32], [-1109, -33], [-1110, -33], [-1110, -32], [-1111, -32], [-1112, -32], [-1112, -31], [-1113, -31], [-1114, -31], [-1114, -30], [-1115, -30], [-1116, -30], [-1116, -29], [-1117, -29], [-1118, -29], [-1118, -28], [-1119, -28], [-1120, -28], [-1120, -27], [-1121, -27], [-1122, -27], [-1122, -26], [-1123, -26], [-1123, -12], [-1121, -12], [-1120, -12], [-1121, -11], [-1120, -11], [-1119, -11], [-1119, -10], [-1118, -10], [-1117, -10], [-1116, -10], [-1116, -9], [-1115, -9], [-1114, -9], [-1114, -8], [-1113, -8], [-1112, -8], [-1112, -7], [-1110, -7]]}, "center": {"195-258, T": [-1109, -19]}}, +{"id": 1732, "name": "Escape From Tarkov \"Killa's Helmet\" and CHK-logo", "description": "Escape From Tarkov is a realistic extraction MMORPG shooter created by BattleState Games based in Russia. The helmet depicted is of a boss within the game named \"Killa\"\n\nThe CHK stands for cheeki_scav a german EFT-Streamer who built the Helmet, in cooperation with the Moondye7 Community", "links": {"website": ["https://www.escapefromtarkov.com", "https://www.twitch.tv/cheeki_scav", "https://twitter.com/cheeki_scav/status/1683173469259722753?s=20", "https://www.twitch.tv/moondye7"], "subreddit": ["EscapefromTarkov"], "discord": ["escapefromtarkovofficial", "cheeki"]}, "path": {"40-258, T": [[385, -368], [397, -368], [397, -352], [385, -352], [385, -367]]}, "center": {"40-258, T": [391, -360]}}, +{"id": 1733, "name": "Akkor a kurva anyádat, Spez!", "description": "An insult to Reddit CEO u/spez, using the infamous Hungarian insult \"Akkor a kurva anyádat\" wich translates to \"Then your fucking mother, Spez\", more commonly used in English as \"fuck you\".", "links": {"subreddit": ["hungary"]}, "path": {"195-258, T": [[-1095, -6], [-1008, -6], [-1008, -25], [-1095, -25]]}, "center": {"195-258, T": [-1051, -15]}}, +{"id": 1734, "name": "Slovak-Slovenian envelope", "description": "An envelope to commemorate the fact that every month the embassies of the 2 countries exchange mail sent to the wrong country. Made by r/Slovakia and r/Slovenia", "links": {"subreddit": ["Slovakia", "Slovenia"]}, "path": {"195-258, T": [[393, -102], [392, -103], [392, -109], [405, -109], [405, -102]]}, "center": {"195-258, T": [399, -105]}}, {"id": 1735, "name": "Distortion Detective", "description": "Distortion Detective is a webnovel that was published and released by Project Moon, it's set during the events of Library of Ruina and the art on Place features the pipe that is smoked from the main character, Doctor Moses", "links": {"website": ["https://projectmoon.postype.com/series/491543"], "subreddit": ["Project_Moon"]}, "path": {"173-199": [[-174, 907], [-174, 937], [-154, 937], [-154, 907]]}, "center": {"173-199": [-164, 922]}}, -{"id": 1736, "name": "Lion", "description": "One of the national symbols of Bulgaria, part of the coat of arms of Bulgaria.", "links": {"website": ["https://en.wikipedia.org/wiki/National_symbols_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"195-258": [[-513, -5], [-514, -5], [-515, -4], [-516, -3], [-517, -2], [-516, -1], [-517, 0], [-518, 1], [-519, 2], [-520, 3], [-521, 4], [-522, 5], [-523, 6], [-524, 7], [-524, 8], [-525, 9], [-525, 10], [-526, 11], [-526, 14], [-525, 15], [-525, 16], [-526, 17], [-526, 18], [-527, 19], [-527, 22], [-526, 23], [-525, 24], [-524, 28], [-524, 29], [-523, 30], [-523, 31], [-522, 32], [-521, 33], [-520, 34], [-519, 35], [-518, 36], [-517, 36], [-517, 37], [-516, 38], [-515, 39], [-514, 40], [-513, 39], [-512, 40], [-511, 41], [-510, 41], [-509, 41], [-508, 41], [-507, 41], [-507, 40], [-506, 40], [-505, 41], [-504, 41], [-503, 41], [-502, 41], [-502, -5]]}, "center": {"195-258": [-514, 20]}}, -{"id": 1737, "name": "Poland ❤️ Hungary", "description": "This is a symbol of Poland and Hungary being great friends. It was built by the Hungarians to show peace.\n\nThis sign used to be located on the left side of the flag of Hungary, where \"Austria ❤️ Hungary\" is now. The original sign was repeatedly changed from Poland to Austria, and the Hungarians and Poles were busy building and couldn't defend it. Later, after the Hungarians finished building the Hungarian Parliament, they built another grief-proof Poland ❤️ Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Poland"], "subreddit": ["hungary", "poland", "Polska"], "discord": ["pixelhu"]}, "path": {"143-147, 150-152": [[-777, -35], [-777, -27], [-765, -27], [-764, -26], [-763, -27], [-750, -27], [-748, -29], [-748, -35], [-761, -35], [-762, -36], [-766, -36], [-767, -35]], "161-258": [[-359, -17], [-359, -7], [-327, -7], [-325, -9], [-325, -17], [-339, -17], [-340, -18], [-348, -18], [-349, -17]]}, "center": {"143-147, 150-152": [-764, -31], "161-258": [-342, -12]}}, -{"id": 1738, "name": "Placid Plastic Duck Simulator Propeller Duck", "description": "A propeller duck from the indie game Placid Plastic Duck Simulator, made by turbolento games", "links": {"website": ["https://twitter.com/PPDuckSimulator"], "subreddit": ["placidplasticducks"], "discord": ["placid-plastic-duck-simulator-991288138649583636"]}, "path": {"195-258": [[-1090, -911], [-1071, -911], [-1071, -930], [-1090, -930], [-1090, -929], [-1090, -930]]}, "center": {"195-258": [-1080, -920]}}, -{"id": 1739, "name": "Onimai Logo", "description": "A logo of Onii-chan wa Oshimai! manga and anime series.", "links": {"website": ["https://onimai.jp"], "subreddit": ["OniichanOshimai"]}, "path": {"192": [[-1452, -725], [-1452, -719], [-1451, -718], [-1451, -717], [-1450, -716], [-1450, -714], [-1451, -713], [-1453, -714], [-1453, -711], [-1450, -711], [-1450, -713], [-1449, -714], [-1448, -714], [-1446, -712], [-1445, -712], [-1444, -711], [-1438, -711], [-1437, -712], [-1436, -712], [-1434, -714], [-1433, -714], [-1433, -715], [-1431, -717], [-1431, -718], [-1430, -719], [-1430, -725], [-1431, -726], [-1431, -727], [-1432, -728], [-1433, -728], [-1433, -731], [-1432, -732], [-1431, -731], [-1431, -733], [-1433, -733], [-1432, -732], [-1434, -731], [-1439, -733], [-1444, -733], [-1451, -726]], "215-258": [[137, -664], [137, -656], [138, -656], [139, -652], [136, -653], [137, -651], [136, -648], [138, -649], [139, -649], [141, -648], [141, -649], [140, -651], [142, -651], [145, -648], [153, -648], [155, -650], [158, -652], [160, -656], [161, -656], [161, -664], [160, -664], [160, -666], [159, -666], [159, -668], [160, -669], [160, -672], [157, -672], [155, -670], [153, -671], [153, -672], [145, -672], [145, -671], [143, -670], [140, -669], [140, -666]]}, "center": {"192": [-1441, -722], "215-258": [149, -660]}}, -{"id": 1740, "name": "Bulgarian alphabet", "description": "The first three letters of the Bulgarian alphabet: AБВ.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgarian_alphabet"], "subreddit": ["bulgaria"]}, "path": {"195-258": [[-343, 26], [-339, 13], [-310, 14], [-310, 26]]}, "center": {"195-258": [-326, 20]}}, -{"id": 1741, "name": "Hungarian Parliament Building", "description": "The Hungarian Parliament Building (Hungarian: Országház, \"House of the Country\" or \"House of the Nation\"), also known as the Parliament of Budapest, is the seat of the National Assembly of Hungary.\n\nCompleted in 1902, it is the largest building in Hungary and a popular tourist destination in the Hungarian capital of Budapest. It was designed by Hungarian architect Imre Steindl in neo-Gothic style.\n\nThe Hungarian r/place community recieved this design from their French ambassador as a gift. After the annexation of part of the French flag by an aggressive faction of the Hungarian community, the community decided to show their respect to the French by building the ambassador's design. With this move, the Hungarian community \nmanaged to placate both the aggressors and the French.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungarian_Parliament_Building"], "subreddit": ["hungary", "budapest"], "discord": ["pixelhu"]}, "path": {"157-258": [[-934, -6], [-862, -6], [-862, -22], [-863, -23], [-863, -25], [-865, -27], [-866, -26], [-867, -26], [-867, -29], [-868, -30], [-872, -30], [-873, -31], [-873, -32], [-875, -34], [-877, -32], [-877, -31], [-878, -30], [-878, -29], [-878, -30], [-879, -31], [-879, -32], [-881, -34], [-883, -32], [-883, -31], [-884, -31], [-884, -33], [-885, -34], [-885, -35], [-886, -36], [-886, -39], [-887, -40], [-888, -39], [-888, -36], [-889, -35], [-889, -34], [-890, -33], [-890, -31], [-891, -32], [-891, -33], [-892, -34], [-892, -36], [-894, -38], [-895, -38], [-897, -40], [-898, -40], [-894, -40], [-893, -41], [-893, -43], [-894, -44], [-898, -44], [-899, -43], [-899, -40], [-900, -40], [-902, -38], [-903, -38], [-904, -37], [-904, -36], [-905, -35], [-905, -34], [-906, -33], [-906, -32], [-907, -31], [-907, -33], [-908, -34], [-908, -35], [-909, -36], [-909, -39], [-910, -40], [-911, -39], [-911, -36], [-912, -35], [-912, -34], [-913, -33], [-913, -31], [-914, -31], [-914, -32], [-916, -34], [-918, -32], [-918, -31], [-919, -30], [-920, -31], [-920, -32], [-922, -34], [-924, -32], [-925, -30], [-929, -30], [-930, -29], [-930, -27], [-932, -27], [-933, -26], [-934, -25]]}, "center": {"157-258": [-899, -20]}}, -{"id": 1742, "name": "Punz", "description": "Art from the Community of the Twitch Streamer Punz. The 143 stands for I love you. The Coin is a part of his Minecraft Skin. It's not a Bitcoin. :)", "links": {"website": ["https://twitch.tv/punz"], "subreddit": ["punzo"]}, "path": {"195-258": [[84, 196], [147, 195], [147, 241], [84, 241], [84, 197]]}, "center": {"195-258": [116, 218]}}, -{"id": 1743, "name": "Architecture of the Bulgarian Revival", "description": "The architecture of the Bulgarian Revival is a period when the Bulgarian architecture developed between 1770 and 1900.", "links": {"website": ["https://en.wikipedia.org/wiki/Architecture_of_the_Bulgarian_Revival"], "subreddit": ["bulgaria"]}, "path": {"195-258": [[-341, 26], [-297, 26], [-297, 41], [-341, 41]]}, "center": {"195-258": [-319, 34]}}, -{"id": 1744, "name": "MarceloBR Pixelart", "description": "Pixelart of MarceloBR, part of the Pasta Alliance.", "links": {"website": ["https://twitter.com/marcelo_shiny"], "subreddit": ["marcelobr"], "discord": ["teucPfEefD"]}, "path": {"195-258": [[568, 530], [580, 530], [580, 544], [576, 548], [563, 548], [563, 532], [568, 533], [567, 531], [565, 532], [563, 532], [562, 532], [562, 539], [562, 542], [562, 545], [562, 548], [562, 532]]}, "center": {"195-258": [572, 540]}}, -{"id": 1745, "name": "Kikuri Hiroi", "description": "She is one of the characters of Bocchi the Rock!, a manga and anime series by Aki Hamaji. She also has her own spinoff manga titled Kikuri Hiroi's Deep Drunk Diary by Kumicho.\n\nIn the series she is the vocalist of the popular indie band SICK HACK, but her alcoholic behavior always put her life in a mess.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"195-258": [[572, 871], [570, 889], [575, 901], [600, 901], [600, 885], [600, 871], [585, 871], [578, 871], [574, 871], [572, 869]]}, "center": {"195-258": [585, 886]}}, -{"id": 1746, "name": "Goralský klobúk", "description": "Traditional Slovak hat in folklore. Made by r/Slovakia", "links": {"subreddit": ["Slovakia"], "discord": ["slovakia"]}, "path": {"195-258": [[343, -107], [348, -107], [363, -115], [360, -116], [357, -118], [349, -118], [344, -111]]}, "center": {"195-258": [351, -114]}}, -{"id": 1747, "name": "Horalky", "description": "Horalky is a Slovak wafer biscuit with peanut filling and cocoa coating made by Sedita. Made by r/Slovakia with help from r/Czech", "links": {"subreddit": ["Slovakia", "Czech"], "discord": ["slovakia"]}, "path": {"194-258": [[-659, -147], [-660, -151], [-634, -150], [-635, -80], [-660, -80]]}, "center": {"194-258": [-647, -115]}}, -{"id": 1748, "name": "Blue Corner Memorial", "description": "After QSMP invaded the first Blue Corner, the Blue Corner was forced to negotiate with the community and was limited to a small 12x12 square. After the canvas expanded, QSMP decided to keep the old Blue Corner alive as a symbol of the alliance between the two factions.", "links": {"subreddit": ["qsmp", "thebluecorner"]}, "path": {"1-258": [[488, 499], [487, 489], [499, 489], [500, 500]]}, "center": {"1-258": [494, 494]}}, -{"id": 1749, "name": "Quackity paga el servidor", "description": "Por favor,\nquiero salvar un huevo...\n¡Y NO PUEDO!\nporque estas...\nocupado sin pagar el servidor.\n\n —MissaSinfonia 500 A.C.\n\nNote: It started as a phrase said by the streamer Vegetta every time the QSMP server crashed (as a joke), but ended up becoming popular in the community thanks to the dance done by Missa.", "links": {"website": ["https://clips.twitch.tv/StormyTiredPanHassaanChop-jZjEDirMdzCainlh?tt_content=url&tt_medium=clips_api"]}, "path": {"171-258": [[-1460, 751], [-1355, 752], [-1355, 770], [-1336, 770], [-1335, 791], [-1490, 791], [-1490, 773], [-1466, 773], [-1466, 751]]}, "center": {"171-258": [-1411, 771]}}, -{"id": 1750, "name": "Gellért Hill", "description": "Gellért Hill 235 m (771 ft) high hill overlooking the Danube in Budapest, Hungary. It is located in the 1st and the 11th districts. The hill was named after Saint Gerard who was thrown to death from the hill. The famous Hotel Gellért and the Gellért Baths can be found in Gellért Square at the foot of the hill, next to Liberty Bridge.", "links": {}, "path": {"195-258": [[-1003, -12], [-1003, -13], [-996, -13], [-996, -14], [-993, -14], [-993, -15], [-994, -15], [-994, -16], [-995, -16], [-995, -20], [-994, -20], [-994, -21], [-989, -21], [-989, -20], [-988, -20], [-988, -16], [-989, -16], [-988, -16], [-988, -17], [-987, -17], [-987, -18], [-986, -18], [-986, -19], [-985, -19], [-985, -20], [-984, -20], [-985, -20], [-985, -21], [-986, -21], [-986, -22], [-987, -22], [-987, -23], [-988, -23], [-988, -26], [-989, -26], [-989, -32], [-988, -32], [-988, -33], [-987, -34], [-986, -34], [-986, -35], [-987, -34], [-989, -34], [-990, -34], [-990, -35], [-991, -35], [-991, -34], [-992, -34], [-992, -32], [-992, -33], [-990, -33], [-990, -30], [-991, -30], [-991, -29], [-994, -29], [-994, -30], [-995, -30], [-995, -31], [-997, -31], [-997, -32], [-1000, -32], [-1000, -33], [-1004, -33], [-1004, -32], [-1006, -32], [-1006, -30], [-1007, -30], [-1007, -27], [-1008, -27], [-1008, -26], [-1010, -26], [-1010, -23], [-1009, -23], [-1009, -21], [-1010, -21], [-1010, -20], [-1009, -20], [-1009, -18], [-1010, -18], [-1009, -18], [-1009, -17], [-1008, -17], [-1007, -17], [-1005, -15], [-1003, -15]]}, "center": {"195-258": [-1000, -24]}}, -{"id": 1751, "name": "Rosa Damascena – The Bulgarian Rose", "description": "Rosa × damascena, more commonly known as the Damask rose, or sometimes as the Bulgarian rose, Turkish rose, Taif rose, Arab rose, Ispahan rose and Castile rose, is a rose hybrid, derived from Rosa gallica and Rosa moschata.", "links": {"website": ["https://en.wikipedia.org/wiki/Rosa_%C3%97_damascena"], "subreddit": ["bulgaria"]}, "path": {"195-258": [[-286, 8], [-289, 8], [-290, 9], [-291, 10], [-292, 11], [-292, 12], [-293, 13], [-294, 14], [-294, 16], [-295, 17], [-295, 18], [-294, 19], [-293, 20], [-292, 21], [-291, 22], [-290, 23], [-289, 24], [-290, 25], [-290, 26], [-291, 27], [-290, 28], [-289, 28], [-288, 28], [-288, 29], [-288, 30], [-287, 31], [-287, 32], [-287, 35], [-288, 34], [-289, 33], [-289, 32], [-288, 31], [-289, 30], [-290, 29], [-291, 29], [-292, 30], [-293, 31], [-294, 32], [-295, 33], [-295, 35], [-294, 36], [-293, 37], [-292, 38], [-291, 38], [-290, 38], [-289, 38], [-288, 37], [-287, 37], [-288, 39], [-288, 40], [-287, 41], [-283, 41], [-283, 39], [-281, 39], [-280, 39], [-279, 38], [-278, 34], [-279, 33], [-280, 34], [-281, 35], [-282, 36], [-283, 37], [-283, 33], [-282, 32], [-281, 31], [-280, 32], [-279, 33], [-276, 33], [-275, 32], [-274, 31], [-274, 30], [-273, 29], [-273, 28], [-274, 27], [-275, 27], [-276, 26], [-277, 25], [-279, 25], [-280, 26], [-281, 27], [-282, 28], [-283, 29], [-283, 30], [-284, 29], [-284, 28], [-284, 27], [-283, 26], [-283, 25], [-282, 26], [-281, 25], [-280, 24], [-279, 24], [-278, 23], [-277, 22], [-276, 21], [-275, 20], [-275, 16], [-276, 15], [-276, 12], [-277, 11], [-278, 10], [-279, 9], [-280, 8], [-283, 8], [-288, 8]]}, "center": {"195-258": [-284, 17]}}, -{"id": 1752, "name": "Kurzgesagt", "description": "The logo of the German educational YouTube channel \"Kurzgesagt - In a Nutshell\"", "links": {"website": ["https://www.youtube.com/@kurzgesagt"], "subreddit": ["kurzgesagt"], "discord": ["kurzgesagt"]}, "path": {"187-258": [[-623, -600], [-621, -600], [-617, -597], [-616, -595], [-607, -595], [-605, -595], [-603, -593], [-602, -593], [-599, -590], [-598, -590], [-598, -589], [-597, -588], [-597, -586], [-596, -585], [-596, -579], [-597, -578], [-597, -576], [-598, -575], [-598, -574], [-602, -570], [-603, -570], [-604, -569], [-606, -569], [-607, -568], [-610, -568], [-610, -564], [-585, -564], [-585, -558], [-645, -558], [-645, -564], [-611, -564], [-611, -568], [-613, -568], [-614, -569], [-616, -569], [-617, -570], [-618, -570], [-619, -569], [-620, -568], [-621, -567], [-632, -567], [-633, -568], [-634, -569], [-634, -571], [-633, -572], [-632, -573], [-633, -573], [-637, -577], [-637, -578], [-638, -579], [-638, -582], [-639, -583], [-639, -588], [-638, -589], [-634, -589], [-633, -588], [-634, -589], [-633, -588], [-631, -588], [-630, -587], [-628, -587], [-628, -596], [-627, -597], [-625, -599], [-624, -599]]}, "center": {"187-258": [-611, -582]}}, -{"id": 1753, "name": "Съединението прави силата", "description": "The national motto of Bulgaria in the Bulgarian language. Translates to \"Unity makes strength\" in English.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"195-258": [[-350, -4], [-350, 1], [-346, 3], [-344, 8], [-313, 8], [-275, 8], [-275, -5], [-350, -5]]}, "center": {"195-258": [-312, 2]}}, -{"id": 1754, "name": "Chonny Jash Fan Server", "description": "The unofficial fan server of the musician known online as Chonny Jash, most well known for his covers of Tally Hall songs and their side projects, although he does originals and other assorted covers as well.", "links": {"subreddit": ["chonnyjash"], "discord": ["cjfs"]}, "path": {"53-65": [[85, 39], [114, 39], [114, 66], [85, 66], [85, 54], [81, 54], [81, 52], [82, 51], [81, 50], [81, 48], [84, 48], [85, 48]], "67-78": [[85, 39], [114, 39], [114, 66], [85, 66], [85, 54], [81, 54], [81, 52], [82, 51], [81, 50], [81, 48], [84, 48], [85, 48], [84, 39], [93, 39], [93, 34], [97, 34], [97, 39]], "79-119": [[85, 39], [114, 39], [114, 66], [85, 66], [85, 54], [81, 54], [81, 52], [82, 51], [81, 50], [81, 48], [84, 48], [85, 48], [84, 39], [84, 33], [97, 33], [97, 39]], "121-258": [[84, 33], [84, 65], [114, 65], [114, 38], [116, 38], [116, 33]]}, "center": {"53-65": [99, 52], "67-78": [100, 52], "79-119": [100, 52], "121-258": [99, 49]}}, -{"id": 1755, "name": "Hősök tere", "description": "The Hősök tere (Square of Heroes/Heroes Square) is one of the most iconic places in Budapest. It depicts the most notable people from hungarian history, with Archangel Gabriel being in the middle of the square offering the Holy crown of St. Stephen to the country (according to the legend, he appeared in the dream of the pope who wanted give the crown to the newly formed Kingdom of Bulgaria ordering him to instead give it to the Hungarian envoy).\nLater, the statues were griefed to Among Us characters, but the Hungarian community very much liked the gag, and as the square wasnt griefed any further, they didn't repair it. Afterwards, they jokingly named it \"Susok Tere\"(Square of Suses).", "links": {"website": ["https://en.wikipedia.org/wiki/Heroes%27_Square_(Budapest)"], "subreddit": ["hungary", "budapest"]}, "path": {"99-258": [[-505, -7], [-505, -26], [-531, -26], [-531, -36], [-542, -36], [-542, -27], [-567, -27], [-566, -7]]}, "center": {"99-258": [-537, -18]}}, -{"id": 1756, "name": "Raincleaver", "description": "Raincleaver, also known as simply Qifrey's sword, is a sword appearing in the manga series Witch Hat Atelier and is used by the main character's teacher, Qifrey.\n\nWitch Hat Atelier (とんがり帽子のアトリエ) is an ongoing manga written and illustrated by Kamome Shirahama. The series follows a girl named Coco, who dreams of being a witch, but in her world only those born with magical abilities are able to become witches. However, after meeting a witch named Qifrey, it seems like there may be hope for Coco after all.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Raincleaver"], "subreddit": ["WitchHatAtelier", "Berserk"], "discord": ["xpQSRKjH", "M699v8xSqz"]}, "path": {"165-258": [[515, 925], [515, 933], [513, 933], [510, 936], [511, 937], [511, 939], [513, 939], [513, 951], [518, 951], [520, 949], [520, 940], [522, 938], [522, 937], [524, 935], [524, 934], [519, 934], [518, 933], [518, 925]]}, "center": {"165-258": [517, 937]}}, -{"id": 1757, "name": "Kofola", "description": "Best selling cola drink in Czechia and Slovakia, draft in a glass Made by r/Slovakia and r/Czech", "links": {"subreddit": ["Slovakia", "Czech"]}, "path": {"195-258": [[378, -90], [378, -76], [390, -76], [390, -78], [395, -82], [395, -88], [392, -90], [389, -90], [387, -93], [382, -92]]}, "center": {"195-258": [385, -84]}}, -{"id": 1758, "name": "Move Forward Party Flag", "description": "The Move Forward Party (MFP or พรรคก้าวไกล) is a social democratic and progressive political party in Thailand. The flag was made in protest of recent events in Thai politics. Near the end of the event, The flag, as well as the Thai flag were destroyed by the massive botted Kirby and left unrepaired/unfinished", "links": {"website": ["https://www.moveforwardparty.org/"], "subreddit": ["thaithai"]}, "path": {"191-258": [[84, 65], [84, 82], [51, 82], [51, 65]]}, "center": {"191-258": [68, 74]}}, +{"id": 1736, "name": "Lion", "description": "One of the national symbols of Bulgaria, part of the coat of arms of Bulgaria.", "links": {"website": ["https://en.wikipedia.org/wiki/National_symbols_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"195-258, T": [[-513, -5], [-514, -5], [-515, -4], [-516, -3], [-517, -2], [-516, -1], [-517, 0], [-518, 1], [-519, 2], [-520, 3], [-521, 4], [-522, 5], [-523, 6], [-524, 7], [-524, 8], [-525, 9], [-525, 10], [-526, 11], [-526, 14], [-525, 15], [-525, 16], [-526, 17], [-526, 18], [-527, 19], [-527, 22], [-526, 23], [-525, 24], [-524, 28], [-524, 29], [-523, 30], [-523, 31], [-522, 32], [-521, 33], [-520, 34], [-519, 35], [-518, 36], [-517, 36], [-517, 37], [-516, 38], [-515, 39], [-514, 40], [-513, 39], [-512, 40], [-511, 41], [-510, 41], [-509, 41], [-508, 41], [-507, 41], [-507, 40], [-506, 40], [-505, 41], [-504, 41], [-503, 41], [-502, 41], [-502, -5]]}, "center": {"195-258, T": [-514, 20]}}, +{"id": 1737, "name": "Poland ❤️ Hungary", "description": "This is a symbol of Poland and Hungary being great friends. It was built by the Hungarians to show peace.\n\nThis sign used to be located on the left side of the flag of Hungary, where \"Austria ❤️ Hungary\" is now. The original sign was repeatedly changed from Poland to Austria, and the Hungarians and Poles were busy building and couldn't defend it. Later, after the Hungarians finished building the Hungarian Parliament, they built another grief-proof Poland ❤️ Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Poland"], "subreddit": ["hungary", "poland", "Polska"], "discord": ["pixelhu"]}, "path": {"143-147, 150-152": [[-777, -35], [-777, -27], [-765, -27], [-764, -26], [-763, -27], [-750, -27], [-748, -29], [-748, -35], [-761, -35], [-762, -36], [-766, -36], [-767, -35]], "161-258, T": [[-359, -17], [-359, -7], [-327, -7], [-325, -9], [-325, -17], [-339, -17], [-340, -18], [-348, -18], [-349, -17]]}, "center": {"143-147, 150-152": [-764, -31], "161-258, T": [-342, -12]}}, +{"id": 1738, "name": "Placid Plastic Duck Simulator Propeller Duck", "description": "A propeller duck from the indie game Placid Plastic Duck Simulator, made by turbolento games", "links": {"website": ["https://twitter.com/PPDuckSimulator"], "subreddit": ["placidplasticducks"], "discord": ["placid-plastic-duck-simulator-991288138649583636"]}, "path": {"195-258, T": [[-1090, -911], [-1071, -911], [-1071, -930], [-1090, -930], [-1090, -929], [-1090, -930]]}, "center": {"195-258, T": [-1080, -920]}}, +{"id": 1739, "name": "Onimai Logo", "description": "A logo of Onii-chan wa Oshimai! manga and anime series.", "links": {"website": ["https://onimai.jp"], "subreddit": ["OniichanOshimai"]}, "path": {"192": [[-1452, -725], [-1452, -719], [-1451, -718], [-1451, -717], [-1450, -716], [-1450, -714], [-1451, -713], [-1453, -714], [-1453, -711], [-1450, -711], [-1450, -713], [-1449, -714], [-1448, -714], [-1446, -712], [-1445, -712], [-1444, -711], [-1438, -711], [-1437, -712], [-1436, -712], [-1434, -714], [-1433, -714], [-1433, -715], [-1431, -717], [-1431, -718], [-1430, -719], [-1430, -725], [-1431, -726], [-1431, -727], [-1432, -728], [-1433, -728], [-1433, -731], [-1432, -732], [-1431, -731], [-1431, -733], [-1433, -733], [-1432, -732], [-1434, -731], [-1439, -733], [-1444, -733], [-1451, -726]], "215-258, T": [[137, -664], [137, -656], [138, -656], [139, -652], [136, -653], [137, -651], [136, -648], [138, -649], [139, -649], [141, -648], [141, -649], [140, -651], [142, -651], [145, -648], [153, -648], [155, -650], [158, -652], [160, -656], [161, -656], [161, -664], [160, -664], [160, -666], [159, -666], [159, -668], [160, -669], [160, -672], [157, -672], [155, -670], [153, -671], [153, -672], [145, -672], [145, -671], [143, -670], [140, -669], [140, -666]]}, "center": {"192": [-1441, -722], "215-258, T": [149, -660]}}, +{"id": 1740, "name": "Bulgarian alphabet", "description": "The first three letters of the Bulgarian alphabet: AБВ.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgarian_alphabet"], "subreddit": ["bulgaria"]}, "path": {"195-258, T": [[-343, 26], [-339, 13], [-310, 14], [-310, 26]]}, "center": {"195-258, T": [-326, 20]}}, +{"id": 1741, "name": "Hungarian Parliament Building", "description": "The Hungarian Parliament Building (Hungarian: Országház, \"House of the Country\" or \"House of the Nation\"), also known as the Parliament of Budapest, is the seat of the National Assembly of Hungary.\n\nCompleted in 1902, it is the largest building in Hungary and a popular tourist destination in the Hungarian capital of Budapest. It was designed by Hungarian architect Imre Steindl in neo-Gothic style.\n\nThe Hungarian r/place community recieved this design from their French ambassador as a gift. After the annexation of part of the French flag by an aggressive faction of the Hungarian community, the community decided to show their respect to the French by building the ambassador's design. With this move, the Hungarian community \nmanaged to placate both the aggressors and the French.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungarian_Parliament_Building"], "subreddit": ["hungary", "budapest"], "discord": ["pixelhu"]}, "path": {"157-258, T": [[-934, -6], [-862, -6], [-862, -22], [-863, -23], [-863, -25], [-865, -27], [-866, -26], [-867, -26], [-867, -29], [-868, -30], [-872, -30], [-873, -31], [-873, -32], [-875, -34], [-877, -32], [-877, -31], [-878, -30], [-878, -29], [-878, -30], [-879, -31], [-879, -32], [-881, -34], [-883, -32], [-883, -31], [-884, -31], [-884, -33], [-885, -34], [-885, -35], [-886, -36], [-886, -39], [-887, -40], [-888, -39], [-888, -36], [-889, -35], [-889, -34], [-890, -33], [-890, -31], [-891, -32], [-891, -33], [-892, -34], [-892, -36], [-894, -38], [-895, -38], [-897, -40], [-898, -40], [-894, -40], [-893, -41], [-893, -43], [-894, -44], [-898, -44], [-899, -43], [-899, -40], [-900, -40], [-902, -38], [-903, -38], [-904, -37], [-904, -36], [-905, -35], [-905, -34], [-906, -33], [-906, -32], [-907, -31], [-907, -33], [-908, -34], [-908, -35], [-909, -36], [-909, -39], [-910, -40], [-911, -39], [-911, -36], [-912, -35], [-912, -34], [-913, -33], [-913, -31], [-914, -31], [-914, -32], [-916, -34], [-918, -32], [-918, -31], [-919, -30], [-920, -31], [-920, -32], [-922, -34], [-924, -32], [-925, -30], [-929, -30], [-930, -29], [-930, -27], [-932, -27], [-933, -26], [-934, -25]]}, "center": {"157-258, T": [-899, -20]}}, +{"id": 1742, "name": "Punz", "description": "Art from the Community of the Twitch Streamer Punz. The 143 stands for I love you. The Coin is a part of his Minecraft Skin. It's not a Bitcoin. :)", "links": {"website": ["https://twitch.tv/punz"], "subreddit": ["punzo"]}, "path": {"195-258, T": [[84, 196], [147, 195], [147, 241], [84, 241], [84, 197]]}, "center": {"195-258, T": [116, 218]}}, +{"id": 1743, "name": "Architecture of the Bulgarian Revival", "description": "The architecture of the Bulgarian Revival is a period when the Bulgarian architecture developed between 1770 and 1900.", "links": {"website": ["https://en.wikipedia.org/wiki/Architecture_of_the_Bulgarian_Revival"], "subreddit": ["bulgaria"]}, "path": {"195-258, T": [[-341, 26], [-297, 26], [-297, 41], [-341, 41]]}, "center": {"195-258, T": [-319, 34]}}, +{"id": 1744, "name": "MarceloBR Pixelart", "description": "Pixelart of MarceloBR, part of the Pasta Alliance.", "links": {"website": ["https://twitter.com/marcelo_shiny"], "subreddit": ["marcelobr"], "discord": ["teucPfEefD"]}, "path": {"195-258, T": [[568, 530], [580, 530], [580, 544], [576, 548], [563, 548], [563, 532], [568, 533], [567, 531], [565, 532], [563, 532], [562, 532], [562, 539], [562, 542], [562, 545], [562, 548], [562, 532]]}, "center": {"195-258, T": [572, 540]}}, +{"id": 1745, "name": "Kikuri Hiroi", "description": "She is one of the characters of Bocchi the Rock!, a manga and anime series by Aki Hamaji. She also has her own spinoff manga titled Kikuri Hiroi's Deep Drunk Diary by Kumicho.\n\nIn the series she is the vocalist of the popular indie band SICK HACK, but her alcoholic behavior always put her life in a mess.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"195-258, T": [[572, 871], [570, 889], [575, 901], [600, 901], [600, 885], [600, 871], [585, 871], [578, 871], [574, 871], [572, 869]]}, "center": {"195-258, T": [585, 886]}}, +{"id": 1746, "name": "Goralský klobúk", "description": "Traditional Slovak hat in folklore. Made by r/Slovakia", "links": {"subreddit": ["Slovakia"], "discord": ["slovakia"]}, "path": {"195-258, T": [[343, -107], [348, -107], [363, -115], [360, -116], [357, -118], [349, -118], [344, -111]]}, "center": {"195-258, T": [351, -114]}}, +{"id": 1747, "name": "Horalky", "description": "Horalky is a Slovak wafer biscuit with peanut filling and cocoa coating made by Sedita. Made by r/Slovakia with help from r/Czech", "links": {"subreddit": ["Slovakia", "Czech"], "discord": ["slovakia"]}, "path": {"194-258, T": [[-659, -147], [-660, -151], [-634, -150], [-635, -80], [-660, -80]]}, "center": {"194-258, T": [-647, -115]}}, +{"id": 1748, "name": "Blue Corner Memorial", "description": "After QSMP invaded the first Blue Corner, the Blue Corner was forced to negotiate with the community and was limited to a small 12x12 square. After the canvas expanded, QSMP decided to keep the old Blue Corner alive as a symbol of the alliance between the two factions.", "links": {"subreddit": ["qsmp", "thebluecorner"]}, "path": {"1-258, T": [[488, 499], [487, 489], [499, 489], [500, 500]]}, "center": {"1-258, T": [494, 494]}}, +{"id": 1749, "name": "Quackity paga el servidor", "description": "Por favor,\nquiero salvar un huevo...\n¡Y NO PUEDO!\nporque estas...\nocupado sin pagar el servidor.\n\n —MissaSinfonia 500 A.C.\n\nNote: It started as a phrase said by the streamer Vegetta every time the QSMP server crashed (as a joke), but ended up becoming popular in the community thanks to the dance done by Missa.", "links": {"website": ["https://clips.twitch.tv/StormyTiredPanHassaanChop-jZjEDirMdzCainlh?tt_content=url&tt_medium=clips_api"]}, "path": {"171-258, T": [[-1460, 751], [-1355, 752], [-1355, 770], [-1336, 770], [-1335, 791], [-1490, 791], [-1490, 773], [-1466, 773], [-1466, 751]]}, "center": {"171-258, T": [-1411, 771]}}, +{"id": 1750, "name": "Gellért Hill", "description": "Gellért Hill 235 m (771 ft) high hill overlooking the Danube in Budapest, Hungary. It is located in the 1st and the 11th districts. The hill was named after Saint Gerard who was thrown to death from the hill. The famous Hotel Gellért and the Gellért Baths can be found in Gellért Square at the foot of the hill, next to Liberty Bridge.", "links": {}, "path": {"195-258, T": [[-1003, -12], [-1003, -13], [-996, -13], [-996, -14], [-993, -14], [-993, -15], [-994, -15], [-994, -16], [-995, -16], [-995, -20], [-994, -20], [-994, -21], [-989, -21], [-989, -20], [-988, -20], [-988, -16], [-989, -16], [-988, -16], [-988, -17], [-987, -17], [-987, -18], [-986, -18], [-986, -19], [-985, -19], [-985, -20], [-984, -20], [-985, -20], [-985, -21], [-986, -21], [-986, -22], [-987, -22], [-987, -23], [-988, -23], [-988, -26], [-989, -26], [-989, -32], [-988, -32], [-988, -33], [-987, -34], [-986, -34], [-986, -35], [-987, -34], [-989, -34], [-990, -34], [-990, -35], [-991, -35], [-991, -34], [-992, -34], [-992, -32], [-992, -33], [-990, -33], [-990, -30], [-991, -30], [-991, -29], [-994, -29], [-994, -30], [-995, -30], [-995, -31], [-997, -31], [-997, -32], [-1000, -32], [-1000, -33], [-1004, -33], [-1004, -32], [-1006, -32], [-1006, -30], [-1007, -30], [-1007, -27], [-1008, -27], [-1008, -26], [-1010, -26], [-1010, -23], [-1009, -23], [-1009, -21], [-1010, -21], [-1010, -20], [-1009, -20], [-1009, -18], [-1010, -18], [-1009, -18], [-1009, -17], [-1008, -17], [-1007, -17], [-1005, -15], [-1003, -15]]}, "center": {"195-258, T": [-1000, -24]}}, +{"id": 1751, "name": "Rosa Damascena – The Bulgarian Rose", "description": "Rosa × damascena, more commonly known as the Damask rose, or sometimes as the Bulgarian rose, Turkish rose, Taif rose, Arab rose, Ispahan rose and Castile rose, is a rose hybrid, derived from Rosa gallica and Rosa moschata.", "links": {"website": ["https://en.wikipedia.org/wiki/Rosa_%C3%97_damascena"], "subreddit": ["bulgaria"]}, "path": {"195-258, T": [[-286, 8], [-289, 8], [-290, 9], [-291, 10], [-292, 11], [-292, 12], [-293, 13], [-294, 14], [-294, 16], [-295, 17], [-295, 18], [-294, 19], [-293, 20], [-292, 21], [-291, 22], [-290, 23], [-289, 24], [-290, 25], [-290, 26], [-291, 27], [-290, 28], [-289, 28], [-288, 28], [-288, 29], [-288, 30], [-287, 31], [-287, 32], [-287, 35], [-288, 34], [-289, 33], [-289, 32], [-288, 31], [-289, 30], [-290, 29], [-291, 29], [-292, 30], [-293, 31], [-294, 32], [-295, 33], [-295, 35], [-294, 36], [-293, 37], [-292, 38], [-291, 38], [-290, 38], [-289, 38], [-288, 37], [-287, 37], [-288, 39], [-288, 40], [-287, 41], [-283, 41], [-283, 39], [-281, 39], [-280, 39], [-279, 38], [-278, 34], [-279, 33], [-280, 34], [-281, 35], [-282, 36], [-283, 37], [-283, 33], [-282, 32], [-281, 31], [-280, 32], [-279, 33], [-276, 33], [-275, 32], [-274, 31], [-274, 30], [-273, 29], [-273, 28], [-274, 27], [-275, 27], [-276, 26], [-277, 25], [-279, 25], [-280, 26], [-281, 27], [-282, 28], [-283, 29], [-283, 30], [-284, 29], [-284, 28], [-284, 27], [-283, 26], [-283, 25], [-282, 26], [-281, 25], [-280, 24], [-279, 24], [-278, 23], [-277, 22], [-276, 21], [-275, 20], [-275, 16], [-276, 15], [-276, 12], [-277, 11], [-278, 10], [-279, 9], [-280, 8], [-283, 8], [-288, 8]]}, "center": {"195-258, T": [-284, 17]}}, +{"id": 1752, "name": "Kurzgesagt", "description": "The logo of the German educational YouTube channel \"Kurzgesagt - In a Nutshell\"", "links": {"website": ["https://www.youtube.com/@kurzgesagt"], "subreddit": ["kurzgesagt"], "discord": ["kurzgesagt"]}, "path": {"187-258, T": [[-623, -600], [-621, -600], [-617, -597], [-616, -595], [-607, -595], [-605, -595], [-603, -593], [-602, -593], [-599, -590], [-598, -590], [-598, -589], [-597, -588], [-597, -586], [-596, -585], [-596, -579], [-597, -578], [-597, -576], [-598, -575], [-598, -574], [-602, -570], [-603, -570], [-604, -569], [-606, -569], [-607, -568], [-610, -568], [-610, -564], [-585, -564], [-585, -558], [-645, -558], [-645, -564], [-611, -564], [-611, -568], [-613, -568], [-614, -569], [-616, -569], [-617, -570], [-618, -570], [-619, -569], [-620, -568], [-621, -567], [-632, -567], [-633, -568], [-634, -569], [-634, -571], [-633, -572], [-632, -573], [-633, -573], [-637, -577], [-637, -578], [-638, -579], [-638, -582], [-639, -583], [-639, -588], [-638, -589], [-634, -589], [-633, -588], [-634, -589], [-633, -588], [-631, -588], [-630, -587], [-628, -587], [-628, -596], [-627, -597], [-625, -599], [-624, -599]]}, "center": {"187-258, T": [-611, -582]}}, +{"id": 1753, "name": "Съединението прави силата", "description": "The national motto of Bulgaria in the Bulgarian language. Translates to \"Unity makes strength\" in English.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"195-258, T": [[-350, -4], [-350, 1], [-346, 3], [-344, 8], [-313, 8], [-275, 8], [-275, -5], [-350, -5]]}, "center": {"195-258, T": [-312, 2]}}, +{"id": 1754, "name": "Chonny Jash Fan Server", "description": "The unofficial fan server of the musician known online as Chonny Jash, most well known for his covers of Tally Hall songs and their side projects, although he does originals and other assorted covers as well.", "links": {"subreddit": ["chonnyjash"], "discord": ["cjfs"]}, "path": {"53-65": [[85, 39], [114, 39], [114, 66], [85, 66], [85, 54], [81, 54], [81, 52], [82, 51], [81, 50], [81, 48], [84, 48], [85, 48]], "67-78": [[85, 39], [114, 39], [114, 66], [85, 66], [85, 54], [81, 54], [81, 52], [82, 51], [81, 50], [81, 48], [84, 48], [85, 48], [84, 39], [93, 39], [93, 34], [97, 34], [97, 39]], "79-119": [[85, 39], [114, 39], [114, 66], [85, 66], [85, 54], [81, 54], [81, 52], [82, 51], [81, 50], [81, 48], [84, 48], [85, 48], [84, 39], [84, 33], [97, 33], [97, 39]], "121-258, T": [[84, 33], [84, 65], [114, 65], [114, 38], [116, 38], [116, 33]]}, "center": {"53-65": [99, 52], "67-78": [100, 52], "79-119": [100, 52], "121-258, T": [99, 49]}}, +{"id": 1755, "name": "Hősök tere", "description": "The Hősök tere (Square of Heroes/Heroes Square) is one of the most iconic places in Budapest. It depicts the most notable people from hungarian history, with Archangel Gabriel being in the middle of the square offering the Holy crown of St. Stephen to the country (according to the legend, he appeared in the dream of the pope who wanted give the crown to the newly formed Kingdom of Bulgaria ordering him to instead give it to the Hungarian envoy).\nLater, the statues were griefed to Among Us characters, but the Hungarian community very much liked the gag, and as the square wasnt griefed any further, they didn't repair it. Afterwards, they jokingly named it \"Susok Tere\"(Square of Suses).", "links": {"website": ["https://en.wikipedia.org/wiki/Heroes%27_Square_(Budapest)"], "subreddit": ["hungary", "budapest"]}, "path": {"99-258, T": [[-505, -7], [-505, -26], [-531, -26], [-531, -36], [-542, -36], [-542, -27], [-567, -27], [-566, -7]]}, "center": {"99-258, T": [-537, -18]}}, +{"id": 1756, "name": "Raincleaver", "description": "Raincleaver, also known as simply Qifrey's sword, is a sword appearing in the manga series Witch Hat Atelier and is used by the main character's teacher, Qifrey.\n\nWitch Hat Atelier (とんがり帽子のアトリエ) is an ongoing manga written and illustrated by Kamome Shirahama. The series follows a girl named Coco, who dreams of being a witch, but in her world only those born with magical abilities are able to become witches. However, after meeting a witch named Qifrey, it seems like there may be hope for Coco after all.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Raincleaver"], "subreddit": ["WitchHatAtelier", "Berserk"], "discord": ["xpQSRKjH", "M699v8xSqz"]}, "path": {"165-258, T": [[515, 925], [515, 933], [513, 933], [510, 936], [511, 937], [511, 939], [513, 939], [513, 951], [518, 951], [520, 949], [520, 940], [522, 938], [522, 937], [524, 935], [524, 934], [519, 934], [518, 933], [518, 925]]}, "center": {"165-258, T": [517, 937]}}, +{"id": 1757, "name": "Kofola", "description": "Best selling cola drink in Czechia and Slovakia, draft in a glass Made by r/Slovakia and r/Czech", "links": {"subreddit": ["Slovakia", "Czech"]}, "path": {"195-258, T": [[378, -90], [378, -76], [390, -76], [390, -78], [395, -82], [395, -88], [392, -90], [389, -90], [387, -93], [382, -92]]}, "center": {"195-258, T": [385, -84]}}, +{"id": 1758, "name": "Move Forward Party Flag", "description": "The Move Forward Party (MFP or พรรคก้าวไกล) is a social democratic and progressive political party in Thailand. The flag was made in protest of recent events in Thai politics. Near the end of the event, The flag, as well as the Thai flag were destroyed by the massive botted Kirby and left unrepaired/unfinished", "links": {"website": ["https://www.moveforwardparty.org/"], "subreddit": ["thaithai"]}, "path": {"191-258, T": [[84, 65], [84, 82], [51, 82], [51, 65]]}, "center": {"191-258, T": [68, 74]}}, {"id": 1759, "name": "Guts's dragon slayer", "description": "a sword used by Guts, main character from the manga Beserk by Kentaro Miura", "links": {"website": ["https://berserk.fandom.com/wiki/Dragon_Slayer"]}, "path": {"193": [[563, 906], [573, 906], [575, 947], [563, 948]]}, "center": {"193": [569, 937]}}, -{"id": 1760, "name": "Valorant Champions Tour", "description": "The Valorant Champions Tour (VCT) is a global competitive esports tournament series for the video game Valorant organised by Riot Games, the game's developers. The series runs multiple events throughout each season, culminating in Valorant Champions, the top-level event of the tour", "links": {"website": ["https://valorantesports.com/"], "subreddit": ["ValorantCompetitive"]}, "path": {"194-258": [[701, -611], [708, -613], [708, -616], [710, -617], [711, -616], [717, -610], [718, -610], [718, -613], [719, -613], [724, -618], [725, -613], [727, -611], [731, -611], [731, -609], [725, -603], [725, -602], [732, -595], [732, -594], [728, -594], [725, -588], [723, -588], [717, -594], [716, -594], [710, -588], [709, -588], [708, -592], [706, -594], [701, -594], [702, -596], [709, -602]]}, "center": {"194-258": [717, -602]}}, -{"id": 1761, "name": "Bay Ganyo", "description": "A fictional character created by the Bulgarian author Aleko Konstantinov. He is a typical anti-hero, a stereotype of the uneducated, profit-driven Bulgarian and the average Balkan person in general at the time.", "links": {"website": ["https://en.wikipedia.org/wiki/Bay_Ganyo"], "subreddit": ["bulgaria"]}, "path": {"195-258": [[-303, 12], [-305, 13], [-306, 14], [-307, 16], [-308, 18], [-309, 19], [-309, 21], [-308, 22], [-307, 23], [-306, 24], [-305, 25], [-304, 26], [-300, 26], [-299, 25], [-298, 24], [-297, 23], [-296, 22], [-295, 21], [-295, 19], [-296, 18], [-296, 17], [-297, 16], [-297, 15], [-298, 14], [-299, 13], [-300, 12], [-304, 12]]}, "center": {"195-258": [-302, 19]}}, -{"id": 1762, "name": "Korbáč", "description": "A traditional easter whip, which men in Slovakia use to whip (not to hurt, no good word in english) women to make them healthy and get chocolate and money in return. Its a strange tradition. Made by r/Slovakia", "links": {"subreddit": ["Slovakia"], "discord": ["slovakia"]}, "path": {"195-258": [[365, -102], [371, -113], [374, -112], [382, -104], [382, -102], [380, -104], [372, -110], [366, -97]]}, "center": {"195-258": [367, -103]}}, -{"id": 1763, "name": "ReiMari Artwork", "description": "ReiMari is a ship between Reimu and Marisa in the Touhou. The art depicts Reimu Hakurei and Marisa Kirisame kissing each other. Due to a landslide of votes, the Touhou Discord server put together this artwork in the Bad Apple style to show this.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"191-258": [[-1417, -671], [-1417, -640], [-1374, -640], [-1374, -671]]}, "center": {"191-258": [-1395, -655]}}, -{"id": 1765, "name": "Bryndzové Halušky", "description": "Potato dumplings with bryndza (traditional goat cheese) with bacon and chive, served in a wooden bowl. The national dish of Slovakia. Made by r/Slovakia", "links": {"subreddit": ["Slovakia"], "discord": ["slovakia"]}, "path": {"195-258": [[358, -82], [358, -79], [361, -76], [373, -76], [376, -79], [376, -82], [373, -84], [377, -89], [376, -89], [371, -85], [364, -86], [362, -84]]}, "center": {"195-258": [366, -81]}}, -{"id": 1766, "name": "Piano Woman", "description": "Piano Woman is a drink from the indie game VA-11 HALL-A, partially named after the song Piano Man by Billy Joel. \"It was originally called Pretty Woman, but too many people complained there should be a Piano Woman if there was a Piano Man.\"", "links": {"website": ["https://waifubartending.com/"], "subreddit": ["waifubartending"]}, "path": {"195-258": [[-594, 159], [-595, 162], [-595, 164], [-593, 166], [-592, 168], [-594, 169], [-590, 169], [-590, 165], [-589, 162], [-590, 159], [-589, 156], [-591, 155]]}, "center": {"195-258": [-592, 162]}}, -{"id": 1767, "name": "Akkor a kurva anyád, Spez!", "description": "The \"Akkor a kurva anyád,spez!\" sign is an insult to the reddit CEO u/spez. It roughtly translates to \"Then your fucking mother,spez!\" being a common insult in hungary. It also shows signs of giving up on an arguement (but feeling more like you won it) and instead leaving them insulted.", "links": {}, "path": {"193-258": [[-1095, -25], [-1095, -8], [-1009, -8], [-1009, -15], [-1012, -15], [-1012, -25]]}, "center": {"193-258": [-1052, -16]}}, -{"id": 1768, "name": "Stop sign", "description": "This stop sign was originally bigger, and was built by the Austrian and Hungarian communities to stop the French from retaking a portion of their former territories. Later, as the Hungarians built the Gellért Hill, the original stop sign was shrunk down to its final size on the Lánchíd.", "links": {"website": ["https://en.wikipedia.org/wiki/Stop_sign"], "subreddit": ["hungary", "placeAustria", "Austria"], "discord": ["pixelhu", "f5ky84vGku"]}, "path": {"142-150": [[-997, -32], [-1001, -28], [-1001, -20], [-997, -16], [-995, -16], [-995, -6], [-991, -6], [-991, -16], [-989, -16], [-985, -20], [-985, -28], [-989, -32]], "151-258": [[-993, -21], [-995, -19], [-995, -17], [-993, -15], [-993, -11], [-990, -11], [-990, -15], [-988, -17], [-988, -19], [-990, -21]]}, "center": {"142-150": [-993, -24], "151-258": [-991, -18]}}, -{"id": 1769, "name": "Spyro", "description": "The second resting place of the Spyro mascot along with Sparks and a red gem.\n\nThis was moved here as it used to be located in a place where some german art was meant to be", "links": {"subreddit": ["spyro"]}, "path": {"195-258": [[78, -554], [84, -551], [88, -551], [89, -553], [90, -551], [93, -551], [93, -553], [95, -552], [98, -552], [101, -553], [102, -551], [108, -551], [102, -554], [107, -553], [110, -553], [111, -556], [109, -557], [107, -554], [102, -554], [102, -556], [107, -559], [113, -558], [114, -560], [107, -566], [105, -568], [108, -573], [106, -574], [104, -571], [101, -574], [95, -571], [98, -564], [95, -563], [97, -560], [93, -560], [90, -566], [92, -573], [81, -574], [82, -569], [90, -570], [90, -565], [85, -565], [80, -559], [89, -559], [89, -557], [81, -554], [78, -555]]}, "center": {"195-258": [103, -563]}}, +{"id": 1760, "name": "Valorant Champions Tour", "description": "The Valorant Champions Tour (VCT) is a global competitive esports tournament series for the video game Valorant organised by Riot Games, the game's developers. The series runs multiple events throughout each season, culminating in Valorant Champions, the top-level event of the tour", "links": {"website": ["https://valorantesports.com/"], "subreddit": ["ValorantCompetitive"]}, "path": {"194-258, T": [[701, -611], [708, -613], [708, -616], [710, -617], [711, -616], [717, -610], [718, -610], [718, -613], [719, -613], [724, -618], [725, -613], [727, -611], [731, -611], [731, -609], [725, -603], [725, -602], [732, -595], [732, -594], [728, -594], [725, -588], [723, -588], [717, -594], [716, -594], [710, -588], [709, -588], [708, -592], [706, -594], [701, -594], [702, -596], [709, -602]]}, "center": {"194-258, T": [717, -602]}}, +{"id": 1761, "name": "Bay Ganyo", "description": "A fictional character created by the Bulgarian author Aleko Konstantinov. He is a typical anti-hero, a stereotype of the uneducated, profit-driven Bulgarian and the average Balkan person in general at the time.", "links": {"website": ["https://en.wikipedia.org/wiki/Bay_Ganyo"], "subreddit": ["bulgaria"]}, "path": {"195-258, T": [[-303, 12], [-305, 13], [-306, 14], [-307, 16], [-308, 18], [-309, 19], [-309, 21], [-308, 22], [-307, 23], [-306, 24], [-305, 25], [-304, 26], [-300, 26], [-299, 25], [-298, 24], [-297, 23], [-296, 22], [-295, 21], [-295, 19], [-296, 18], [-296, 17], [-297, 16], [-297, 15], [-298, 14], [-299, 13], [-300, 12], [-304, 12]]}, "center": {"195-258, T": [-302, 19]}}, +{"id": 1762, "name": "Korbáč", "description": "A traditional easter whip, which men in Slovakia use to whip (not to hurt, no good word in english) women to make them healthy and get chocolate and money in return. Its a strange tradition. Made by r/Slovakia", "links": {"subreddit": ["Slovakia"], "discord": ["slovakia"]}, "path": {"195-258, T": [[365, -102], [371, -113], [374, -112], [382, -104], [382, -102], [380, -104], [372, -110], [366, -97]]}, "center": {"195-258, T": [367, -103]}}, +{"id": 1763, "name": "ReiMari Artwork", "description": "ReiMari is a ship between Reimu and Marisa in the Touhou. The art depicts Reimu Hakurei and Marisa Kirisame kissing each other. Due to a landslide of votes, the Touhou Discord server put together this artwork in the Bad Apple style to show this.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"191-258, T": [[-1417, -671], [-1417, -640], [-1374, -640], [-1374, -671]]}, "center": {"191-258, T": [-1395, -655]}}, +{"id": 1765, "name": "Bryndzové Halušky", "description": "Potato dumplings with bryndza (traditional goat cheese) with bacon and chive, served in a wooden bowl. The national dish of Slovakia. Made by r/Slovakia", "links": {"subreddit": ["Slovakia"], "discord": ["slovakia"]}, "path": {"195-258, T": [[358, -82], [358, -79], [361, -76], [373, -76], [376, -79], [376, -82], [373, -84], [377, -89], [376, -89], [371, -85], [364, -86], [362, -84]]}, "center": {"195-258, T": [366, -81]}}, +{"id": 1766, "name": "Piano Woman", "description": "Piano Woman is a drink from the indie game VA-11 HALL-A, partially named after the song Piano Man by Billy Joel. \"It was originally called Pretty Woman, but too many people complained there should be a Piano Woman if there was a Piano Man.\"", "links": {"website": ["https://waifubartending.com/"], "subreddit": ["waifubartending"]}, "path": {"195-258, T": [[-594, 159], [-595, 162], [-595, 164], [-593, 166], [-592, 168], [-594, 169], [-590, 169], [-590, 165], [-589, 162], [-590, 159], [-589, 156], [-591, 155]]}, "center": {"195-258, T": [-592, 162]}}, +{"id": 1767, "name": "Akkor a kurva anyád, Spez!", "description": "The \"Akkor a kurva anyád,spez!\" sign is an insult to the reddit CEO u/spez. It roughtly translates to \"Then your fucking mother,spez!\" being a common insult in hungary. It also shows signs of giving up on an arguement (but feeling more like you won it) and instead leaving them insulted.", "links": {}, "path": {"193-258, T": [[-1095, -25], [-1095, -8], [-1009, -8], [-1009, -15], [-1012, -15], [-1012, -25]]}, "center": {"193-258, T": [-1052, -16]}}, +{"id": 1768, "name": "Stop sign", "description": "This stop sign was originally bigger, and was built by the Austrian and Hungarian communities to stop the French from retaking a portion of their former territories. Later, as the Hungarians built the Gellért Hill, the original stop sign was shrunk down to its final size on the Lánchíd.", "links": {"website": ["https://en.wikipedia.org/wiki/Stop_sign"], "subreddit": ["hungary", "placeAustria", "Austria"], "discord": ["pixelhu", "f5ky84vGku"]}, "path": {"142-150": [[-997, -32], [-1001, -28], [-1001, -20], [-997, -16], [-995, -16], [-995, -6], [-991, -6], [-991, -16], [-989, -16], [-985, -20], [-985, -28], [-989, -32]], "151-258, T": [[-993, -21], [-995, -19], [-995, -17], [-993, -15], [-993, -11], [-990, -11], [-990, -15], [-988, -17], [-988, -19], [-990, -21]]}, "center": {"142-150": [-993, -24], "151-258, T": [-991, -18]}}, +{"id": 1769, "name": "Spyro", "description": "The second resting place of the Spyro mascot along with Sparks and a red gem.\n\nThis was moved here as it used to be located in a place where some german art was meant to be", "links": {"subreddit": ["spyro"]}, "path": {"195-258, T": [[78, -554], [84, -551], [88, -551], [89, -553], [90, -551], [93, -551], [93, -553], [95, -552], [98, -552], [101, -553], [102, -551], [108, -551], [102, -554], [107, -553], [110, -553], [111, -556], [109, -557], [107, -554], [102, -554], [102, -556], [107, -559], [113, -558], [114, -560], [107, -566], [105, -568], [108, -573], [106, -574], [104, -571], [101, -574], [95, -571], [98, -564], [95, -563], [97, -560], [93, -560], [90, -566], [92, -573], [81, -574], [82, -569], [90, -570], [90, -565], [85, -565], [80, -559], [89, -559], [89, -557], [81, -554], [78, -555]]}, "center": {"195-258, T": [103, -563]}}, {"id": 1770, "name": "Litlle Beaver", "description": "The little beaver is a work of the Wolf Dolphin Bear/Rehpotter Discord Server.", "links": {"subreddit": ["TurtleloveDE"]}, "path": {"194-203": [[-1034, 38], [-1034, 48], [-1017, 48], [-1017, 38]]}, "center": {"194-203": [-1025, 43]}}, -{"id": 1771, "name": "Elster and Ariane (SIGNALIS)", "description": "Chibi heads of Elster and Ariane, the two main characters of SIGNALIS, the 2023 Resident Evil-inspired survival horror game, developed by German studio Rose-Engine.", "links": {"website": ["https://rose-engine.org"], "subreddit": ["signalis"], "discord": ["signalis"]}, "path": {"183-258": [[-52, 961], [-52, 940], [-40, 940], [-40, 961]]}, "center": {"183-258": [-46, 951]}}, -{"id": 1772, "name": "Kapuzenwurm", "description": "The cactus stands for the twitch streamer and YouTuber Kapuzenwurm (Michael Dorrer). He previously worked as a producer for PewDiePie and is now working for the German YouTuber Gronkh (Erik Range).\n\nMichael aka \"Putzi\" is the epitome of strikingly funny creative entertainment on all channels. Regardless of whether he reveals the latest gaming blockbusters, the craziest multiplayer games together with friends or inventive life hacks in self-experiment on his channel: Hooded worm transforms each of his videos and streams into meticulous entertainment in its purest form. When the Austrian all-purpose weapon for attacking boredom isn't tinkering with his latest video, he's chatting live on Twitch with his community about this and that - and frees them a bit from their everyday life with every laugh.\n\nKapuzenwurm is the only German-speaking YouTuber in the world who has a Diamond Play button (see person) from working with PewDiePie, although this requires 10,000,000 subscribers.", "links": {"website": ["https://1up.management/kapuzenwurm/"], "discord": ["tG5duRCk"]}, "path": {"49-258": [[280, -292], [283, -295], [287, -306], [276, -302], [280, -287], [288, -287], [288, -306], [279, -302], [277, -300], [278, -294]]}, "center": {"49-258": [284, -291]}}, -{"id": 1773, "name": "I Am from Austria", "description": "I Am from Austria is a popular local pop song by Rainhard Fendrich and is considered the unofficial national anthem of Austria.\n\nFendrich said he created the song because of homesickness, but the song is not a purely patriotic one, as it also reflects critical about Austria and its history.\n\nThe piano stands for the famous, mainly classical, but also pop music in Austria.", "links": {"website": ["https://de.wikipedia.org/wiki/I_Am_from_Austria_(Lied)", "https://www.youtube.com/watch?v=KMSa_xb2h5U"]}, "path": {"195-258": [[-969, -27], [-972, -43], [-941, -56], [-845, -54], [-846, -47], [-931, -45], [-936, -27]]}, "center": {"195-258": [-946, -40]}}, +{"id": 1771, "name": "Elster and Ariane (SIGNALIS)", "description": "Chibi heads of Elster and Ariane, the two main characters of SIGNALIS, the 2023 Resident Evil-inspired survival horror game, developed by German studio Rose-Engine.", "links": {"website": ["https://rose-engine.org"], "subreddit": ["signalis"], "discord": ["signalis"]}, "path": {"183-258, T": [[-52, 961], [-52, 940], [-40, 940], [-40, 961]]}, "center": {"183-258, T": [-46, 951]}}, +{"id": 1772, "name": "Kapuzenwurm", "description": "The cactus stands for the twitch streamer and YouTuber Kapuzenwurm (Michael Dorrer). He previously worked as a producer for PewDiePie and is now working for the German YouTuber Gronkh (Erik Range).\n\nMichael aka \"Putzi\" is the epitome of strikingly funny creative entertainment on all channels. Regardless of whether he reveals the latest gaming blockbusters, the craziest multiplayer games together with friends or inventive life hacks in self-experiment on his channel: Hooded worm transforms each of his videos and streams into meticulous entertainment in its purest form. When the Austrian all-purpose weapon for attacking boredom isn't tinkering with his latest video, he's chatting live on Twitch with his community about this and that - and frees them a bit from their everyday life with every laugh.\n\nKapuzenwurm is the only German-speaking YouTuber in the world who has a Diamond Play button (see person) from working with PewDiePie, although this requires 10,000,000 subscribers.", "links": {"website": ["https://1up.management/kapuzenwurm/"], "discord": ["tG5duRCk"]}, "path": {"49-258, T": [[280, -292], [283, -295], [287, -306], [276, -302], [280, -287], [288, -287], [288, -306], [279, -302], [277, -300], [278, -294]]}, "center": {"49-258, T": [284, -291]}}, +{"id": 1773, "name": "I Am from Austria", "description": "I Am from Austria is a popular local pop song by Rainhard Fendrich and is considered the unofficial national anthem of Austria.\n\nFendrich said he created the song because of homesickness, but the song is not a purely patriotic one, as it also reflects critical about Austria and its history.\n\nThe piano stands for the famous, mainly classical, but also pop music in Austria.", "links": {"website": ["https://de.wikipedia.org/wiki/I_Am_from_Austria_(Lied)", "https://www.youtube.com/watch?v=KMSa_xb2h5U"]}, "path": {"195-258, T": [[-969, -27], [-972, -43], [-941, -56], [-845, -54], [-846, -47], [-931, -45], [-936, -27]]}, "center": {"195-258, T": [-946, -40]}}, {"id": 1774, "name": "Assassin Brotherhood", "description": "The Logo of The Assassin Brotherhood from Assassin's Creed\n\nNothing is true, \neverything is permitted.\nWe work in the dark, \nto serve the light. \nWe are Assassins", "links": {}, "path": {"177-199": [[-193, 849], [-204, 866], [-193, 878], [-181, 866]]}, "center": {"177-199": [-193, 865]}}, -{"id": 1775, "name": "Jvne AKA \"Sewerslvt\"", "description": "A Controversial Breakcore artist now retired known as Sewerslvt or Jvne (Pronounced Sewer slut and June respectively)", "links": {"subreddit": ["Sewerslvt"]}, "path": {"58-258": [[196, 16], [222, 16], [222, 37], [196, 37]]}, "center": {"58-258": [209, 27]}}, -{"id": 1776, "name": "Khan Krum with the skull of Nikephoros I", "description": "Bulgarian Khan Krum the Fearsome feasts with his nobles as a servant (right) brings the skull of Nikephoros I, fashioned into a drinking cup, full of wine.", "links": {"website": ["https://en.wikipedia.org/wiki/Skull_cup"], "subreddit": ["bulgaria"]}, "path": {"195-258": [[-582, 41], [-582, 40], [-581, 39], [-580, 39], [-579, 38], [-578, 37], [-578, 30], [-577, 29], [-576, 28], [-575, 27], [-574, 26], [-573, 26], [-572, 25], [-571, 24], [-571, 23], [-570, 22], [-569, 21], [-568, 20], [-567, 19], [-566, 18], [-565, 17], [-565, 13], [-564, 12], [-564, 7], [-565, 6], [-565, 2], [-566, 1], [-567, 0], [-568, 0], [-569, -1], [-570, -2], [-581, -2], [-582, -1], [-583, 0], [-584, 1], [-585, 2], [-585, 3], [-585, 4], [-586, 5], [-586, 6], [-587, 7], [-587, 12], [-586, 13], [-586, 14], [-587, 15], [-587, 18], [-586, 19], [-586, 21], [-585, 22], [-584, 22], [-584, 24], [-586, 24], [-587, 25], [-587, 27], [-586, 28], [-587, 28], [-587, 41]]}, "center": {"195-258": [-575, 10]}}, +{"id": 1775, "name": "Jvne AKA \"Sewerslvt\"", "description": "A Controversial Breakcore artist now retired known as Sewerslvt or Jvne (Pronounced Sewer slut and June respectively)", "links": {"subreddit": ["Sewerslvt"]}, "path": {"58-258, T": [[196, 16], [222, 16], [222, 37], [196, 37]]}, "center": {"58-258, T": [209, 27]}}, +{"id": 1776, "name": "Khan Krum with the skull of Nikephoros I", "description": "Bulgarian Khan Krum the Fearsome feasts with his nobles as a servant (right) brings the skull of Nikephoros I, fashioned into a drinking cup, full of wine.", "links": {"website": ["https://en.wikipedia.org/wiki/Skull_cup"], "subreddit": ["bulgaria"]}, "path": {"195-258, T": [[-582, 41], [-582, 40], [-581, 39], [-580, 39], [-579, 38], [-578, 37], [-578, 30], [-577, 29], [-576, 28], [-575, 27], [-574, 26], [-573, 26], [-572, 25], [-571, 24], [-571, 23], [-570, 22], [-569, 21], [-568, 20], [-567, 19], [-566, 18], [-565, 17], [-565, 13], [-564, 12], [-564, 7], [-565, 6], [-565, 2], [-566, 1], [-567, 0], [-568, 0], [-569, -1], [-570, -2], [-581, -2], [-582, -1], [-583, 0], [-584, 1], [-585, 2], [-585, 3], [-585, 4], [-586, 5], [-586, 6], [-587, 7], [-587, 12], [-586, 13], [-586, 14], [-587, 15], [-587, 18], [-586, 19], [-586, 21], [-585, 22], [-584, 22], [-584, 24], [-586, 24], [-587, 25], [-587, 27], [-586, 28], [-587, 28], [-587, 41]]}, "center": {"195-258, T": [-575, 10]}}, {"id": 1777, "name": "Danas Schalke Turtle", "description": "Danas is a big fan of the soccer club Schalke, so her turtle got a Schalke flag with the help of her friends. \nDana is member of the Wolf Dolphin Bear/Rehpotter Discord server\nwho also created more pictures in r/place.", "links": {"subreddit": ["TurtleloveDE"]}, "path": {"145-177": [[557, -913], [557, -919], [565, -922], [568, -922], [568, -913]]}, "center": {"145-177": [564, -917]}}, -{"id": 1778, "name": "Bocchi (blob/mendako form)", "description": "Bocchi, (real name Hitori Gotoh) is the main character of Bocchi the Rock, a manga and anime series by Aki Hamaji.\n\nA guitar player that suffers from social anxiety, she struggles to perform as the guitarist of Kessoku Band, the main band in the series.\n\nThe form used is a form representing her internal mind when she encounters a dilemma/conflict that requires her to socialize.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"197-258": [[-151, 384], [-137, 384], [-135, 395], [-149, 394], [-149, 392], [-149, 388]]}, "center": {"197-258": [-143, 389]}}, -{"id": 1779, "name": "Annoying Dog", "description": "The Annoying Dog is a small, white, smiling dog representing the creator of Undertale, Toby Fox.", "links": {"website": ["https://undertale.fandom.com/wiki/Annoying_Dog"], "subreddit": ["Undertale", "goodboye"]}, "path": {"197-258": [[618, 886], [618, 888], [617, 888], [617, 898], [618, 898], [618, 901], [619, 901], [620, 900], [621, 899], [622, 899], [622, 901], [624, 901], [625, 900], [625, 899], [628, 899], [628, 901], [630, 901], [631, 900], [631, 899], [632, 899], [632, 901], [633, 901], [634, 900], [635, 900], [635, 899], [635, 898], [635, 897], [636, 897], [636, 889], [636, 888], [635, 888], [634, 888], [634, 889], [634, 890], [634, 891], [633, 891], [633, 890], [631, 890], [631, 889], [628, 889], [628, 888], [627, 887], [627, 886], [627, 885], [626, 885], [625, 885], [625, 886], [625, 885], [624, 885], [623, 885], [622, 885], [621, 885], [620, 885], [620, 886], [620, 885], [618, 885]]}, "center": {"197-258": [623, 893]}}, -{"id": 1780, "name": "Beer", "description": "A small beer with an AMOGUS, to honor the German \"Reinheitsgebot\" and the love of beer. Created by the Suedflagge", "links": {"website": ["https://en.wikipedia.org/wiki/Reinheitsgebot"]}, "path": {"197-258": [[-778, -74], [-780, -70], [-776, -63], [-763, -62], [-763, -70], [-771, -76], [-775, -75], [-777, -75], [-779, -72], [-778, -72]]}, "center": {"197-258": [-772, -69]}}, +{"id": 1778, "name": "Bocchi (blob/mendako form)", "description": "Bocchi, (real name Hitori Gotoh) is the main character of Bocchi the Rock, a manga and anime series by Aki Hamaji.\n\nA guitar player that suffers from social anxiety, she struggles to perform as the guitarist of Kessoku Band, the main band in the series.\n\nThe form used is a form representing her internal mind when she encounters a dilemma/conflict that requires her to socialize.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"197-258, T": [[-151, 384], [-137, 384], [-135, 395], [-149, 394], [-149, 392], [-149, 388]]}, "center": {"197-258, T": [-143, 389]}}, +{"id": 1779, "name": "Annoying Dog", "description": "The Annoying Dog is a small, white, smiling dog representing the creator of Undertale, Toby Fox.", "links": {"website": ["https://undertale.fandom.com/wiki/Annoying_Dog"], "subreddit": ["Undertale", "goodboye"]}, "path": {"197-258, T": [[618, 886], [618, 888], [617, 888], [617, 898], [618, 898], [618, 901], [619, 901], [620, 900], [621, 899], [622, 899], [622, 901], [624, 901], [625, 900], [625, 899], [628, 899], [628, 901], [630, 901], [631, 900], [631, 899], [632, 899], [632, 901], [633, 901], [634, 900], [635, 900], [635, 899], [635, 898], [635, 897], [636, 897], [636, 889], [636, 888], [635, 888], [634, 888], [634, 889], [634, 890], [634, 891], [633, 891], [633, 890], [631, 890], [631, 889], [628, 889], [628, 888], [627, 887], [627, 886], [627, 885], [626, 885], [625, 885], [625, 886], [625, 885], [624, 885], [623, 885], [622, 885], [621, 885], [620, 885], [620, 886], [620, 885], [618, 885]]}, "center": {"197-258, T": [623, 893]}}, +{"id": 1780, "name": "Beer", "description": "A small beer with an AMOGUS, to honor the German \"Reinheitsgebot\" and the love of beer. Created by the Suedflagge", "links": {"website": ["https://en.wikipedia.org/wiki/Reinheitsgebot"]}, "path": {"197-258, T": [[-778, -74], [-780, -70], [-776, -63], [-763, -62], [-763, -70], [-771, -76], [-775, -75], [-777, -75], [-779, -72], [-778, -72]]}, "center": {"197-258, T": [-772, -69]}}, {"id": 1781, "name": "Ingress", "description": "Ingress is an augmented reality/alternate reality computer game developed by Niantic Labs, now Niantic, Inc. for mobile devices running Android and iOS operating systems. and over 60 fellow players from around the world created and built the game logo.", "links": {"website": ["https://www.ingress.com/"]}, "path": {"195": [[-999, -368], [-969, -368], [-969, -332], [-999, -332]]}, "center": {"195": [-984, -350]}}, -{"id": 1782, "name": "FNATIC", "description": "FNATIC is an esports organisation based in London. The artwork has a special design to celebrate FNATIC's 19th birthday on 23 July.", "links": {"website": ["https://fnatic.com/"], "subreddit": ["fnatic"], "discord": ["fnatic"]}, "path": {"197-258": [[304, -999], [304, -968], [312, -968], [313, -980], [326, -980], [327, -999]], "66-123": [[434, 11], [435, 10], [435, 9], [434, 8], [434, 7], [433, 6], [432, 5], [425, 5], [374, 31], [434, 30], [434, 20]]}, "center": {"197-258": [314, -989], "66-123": [422, 19]}}, -{"id": 1783, "name": "Polish–Lithuanian Commonwealth", "description": "The Polish–Lithuanian Commonwealth, formally known as the Kingdom of Poland and the Grand Duchy of Lithuania, or simply Poland–Lithuania, was a bi-confederal state, sometimes called a federation, of Poland and Lithuania ruled by a common monarch in real union, who was both King of Poland and Grand Duke of Lithuania. It was one of the largest and most populous countries of 16th- to 17th-century Europe. At its largest territorial extent, in the early 17th century, the Commonwealth covered almost 1,000,000 km2 (400,000 sq mi) and as of 1618 sustained a multi-ethnic population of almost 12 million. Polish and Latin were the two co-official languages.", "links": {"website": ["https://en.wikipedia.org/wiki/Polish–Lithuanian_Commonwealth"]}, "path": {"197-258": [[50, -43], [52, -35], [59, -28], [86, -28], [90, -31], [90, -52], [77, -57], [61, -57], [50, -51]]}, "center": {"197-258": [70, -42]}}, -{"id": 1784, "name": "Fucking (village)", "description": "Fugging, spelt Fucking until 2021, is an Austrian village in the municipality of Tarsdorf, located in the Innviertel region of western Upper Austria. The town has been known as Fucking for around 1,000 years. Its road signs were a popular visitor attraction and were often stolen by souvenir-hunting vandals.\nA video by a Danish YouTuber, Albert Dyrlund, was reportedly stated as being the reason for the name change.", "links": {"website": ["https://en.wikipedia.org/wiki/Fugging,_Upper_Austria"]}, "path": {"197-258": [[-1173, -56], [-1124, -56], [-1124, -27], [-1173, -27]]}, "center": {"197-258": [-1148, -41]}}, -{"id": 1785, "name": "Hytale", "description": "Hytale is an announced Minecraft-inspired online action-adventure game with sandbox and role-playing elements, which is scheduled for release for Microsoft Windows and macOS in 2024 at the earliest. The game was first unveiled on 9 December 2018 and is already being traded as a potential \"Minecraft 2.0\" due to the notoriety of the developers, who are also operators of the world's largest Minecraft server Hypixel, as well as regular insights into the development process in the gaming community, as well as receiving multiple awards as a much-anticipated game.", "links": {"website": ["https://hytale.com/", "https://hypixelstudios.com/"], "subreddit": ["HytaleInfo"]}, "path": {"197-258": [[318, -970], [318, -964], [320, -962], [321, -947], [326, -942], [328, -942], [328, -939], [332, -939], [332, -940], [336, -943], [336, -948], [340, -951], [378, -952], [378, -962], [340, -962], [340, -970]]}, "center": {"197-258": [331, -957]}}, -{"id": 1786, "name": "Lebkuchen", "description": "Lebkuchen, Honigkuchen or Pfefferkuchen, are honey-sweetened German cakes molded cookie or bar cookie that have become part of Germany's Christmas traditions. They are similar to gingerbread.\nIf you buy them in german supermarkets they will usually be in the shapes of hearts, bretzels and stars.", "links": {"website": ["https://en.wikipedia.org/wiki/Lebkuchen"], "subreddit": ["placeDE"]}, "path": {"197-258": [[-537, -940], [-536, -914], [-455, -916], [-455, -939]]}, "center": {"197-258": [-523, -927]}}, -{"id": 1787, "name": "Pálinka", "description": "Pálinka is a traditional fruit spirit (or fruit brandy) with origins in the Carpathian Mountains, more exactly known under several names, and invented in the Middle Ages. Protected as a geographical indication of the European Union, only fruit spirits mashed, distilled, matured and bottled in Hungary and similar apricot spirits from four provinces of Austria can be called \"pálinka\", while \"Tótpálinka\" refers to wheat-derived beverages. Törkölypálinka, a different product in the legal sense, is a similarly protected pomace spirit that is commonly included with pálinka. While pálinka may be made of any locally grown fruit, the most common ones are plums, apricots, apples, pears, and cherries.", "links": {}, "path": {"197-258": [[-577, -28], [-579, -28], [-580, -26], [-580, -22], [-582, -22], [-582, -11], [-575, -11], [-575, -17], [-573, -17], [-572, -11], [-570, -11], [-568, -16], [-570, -22], [-572, -22], [-573, -21], [-575, -23]]}, "center": {"197-258": [-577, -20]}}, -{"id": 1788, "name": "Les Mystérieuses Cités d'or", "description": "The Mysterious Cities of Gold, originally released in Japan as Esteban, Child of the Sun (Japanese: 太陽の子エステバン) and released in France as Les Mystérieuses Cités d'Or, is an animated series which was co-produced by DiC Audiovisuel and Studio Pierrot.\n\nSet in 1532, the series follows the adventures of a young Spanish boy named Esteban who joins a voyage to the New World in search of the lost Seven Cities of Gold and his father.\n\nThe series was originally broadcast in Japan and the French version, edited with different characterization and music, was subsequently redubbed and distributed in many countries. It is currently licensed for English-language home video release in the United Kingdom, Australia, and North America by Fabulous Films.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Mysterious_Cities_of_Gold"]}, "path": {"188-258": [[959, -702], [960, -701], [961, -702], [966, -702], [967, -703], [968, -703], [969, -704], [972, -704], [973, -703], [974, -702], [975, -702], [976, -703], [976, -702], [977, -701], [978, -701], [979, -700], [982, -700], [983, -699], [986, -699], [987, -698], [988, -699], [987, -700], [988, -700], [989, -701], [988, -702], [987, -703], [988, -704], [987, -705], [985, -705], [984, -706], [980, -706], [977, -709], [977, -711], [979, -711], [980, -712], [980, -715], [981, -716], [979, -718], [978, -718], [977, -717], [977, -716], [976, -717], [975, -717], [972, -714], [969, -714], [968, -715], [965, -715], [963, -717], [961, -717], [960, -716], [957, -719], [955, -719], [954, -720], [953, -720], [951, -718], [952, -717], [951, -717], [950, -716], [952, -714], [953, -714], [954, -713], [955, -713], [956, -712], [957, -712], [959, -710], [960, -710], [961, -709], [962, -709], [963, -708], [958, -703]]}, "center": {"188-258": [970, -709]}}, -{"id": 1789, "name": "TJA", "description": "\"tja\" - a German reaction to the apocalypse, Dawn of the Gods, nuclear war, an alien attack or no bread in the house.\n\nAccording to oxford dictionary 'tja'\nexpresses thoughtfulness, misgivings, a hesitant attitude, also embarrassment or resignation.\n\"Well, now it's too late\".", "links": {"subreddit": ["tja", "placede"]}, "path": {"197-258": [[-1500, -610], [-1475, -610], [-1474, -599], [-1442, -599], [-1443, -591], [-1343, -590], [-1343, -580], [-1325, -580], [-1324, -560], [-1353, -560], [-1353, -550], [-1500, -550]]}, "center": {"197-258": [-1461, -575]}}, +{"id": 1782, "name": "FNATIC", "description": "FNATIC is an esports organisation based in London. The artwork has a special design to celebrate FNATIC's 19th birthday on 23 July.", "links": {"website": ["https://fnatic.com/"], "subreddit": ["fnatic"], "discord": ["fnatic"]}, "path": {"66-123": [[434, 11], [435, 10], [435, 9], [434, 8], [434, 7], [433, 6], [432, 5], [425, 5], [374, 31], [434, 30], [434, 20]], "197-258, T": [[304, -999], [304, -968], [312, -968], [313, -980], [326, -980], [327, -999]]}, "center": {"66-123": [422, 19], "197-258, T": [314, -989]}}, +{"id": 1783, "name": "Polish–Lithuanian Commonwealth", "description": "The Polish–Lithuanian Commonwealth, formally known as the Kingdom of Poland and the Grand Duchy of Lithuania, or simply Poland–Lithuania, was a bi-confederal state, sometimes called a federation, of Poland and Lithuania ruled by a common monarch in real union, who was both King of Poland and Grand Duke of Lithuania. It was one of the largest and most populous countries of 16th- to 17th-century Europe. At its largest territorial extent, in the early 17th century, the Commonwealth covered almost 1,000,000 km2 (400,000 sq mi) and as of 1618 sustained a multi-ethnic population of almost 12 million. Polish and Latin were the two co-official languages.", "links": {"website": ["https://en.wikipedia.org/wiki/Polish–Lithuanian_Commonwealth"]}, "path": {"197-258, T": [[50, -43], [52, -35], [59, -28], [86, -28], [90, -31], [90, -52], [77, -57], [61, -57], [50, -51]]}, "center": {"197-258, T": [70, -42]}}, +{"id": 1784, "name": "Fucking (village)", "description": "Fugging, spelt Fucking until 2021, is an Austrian village in the municipality of Tarsdorf, located in the Innviertel region of western Upper Austria. The town has been known as Fucking for around 1,000 years. Its road signs were a popular visitor attraction and were often stolen by souvenir-hunting vandals.\nA video by a Danish YouTuber, Albert Dyrlund, was reportedly stated as being the reason for the name change.", "links": {"website": ["https://en.wikipedia.org/wiki/Fugging,_Upper_Austria"]}, "path": {"197-258, T": [[-1173, -56], [-1124, -56], [-1124, -27], [-1173, -27]]}, "center": {"197-258, T": [-1148, -41]}}, +{"id": 1785, "name": "Hytale", "description": "Hytale is an announced Minecraft-inspired online action-adventure game with sandbox and role-playing elements, which is scheduled for release for Microsoft Windows and macOS in 2024 at the earliest. The game was first unveiled on 9 December 2018 and is already being traded as a potential \"Minecraft 2.0\" due to the notoriety of the developers, who are also operators of the world's largest Minecraft server Hypixel, as well as regular insights into the development process in the gaming community, as well as receiving multiple awards as a much-anticipated game.", "links": {"website": ["https://hytale.com/", "https://hypixelstudios.com/"], "subreddit": ["HytaleInfo"]}, "path": {"197-258, T": [[318, -970], [318, -964], [320, -962], [321, -947], [326, -942], [328, -942], [328, -939], [332, -939], [332, -940], [336, -943], [336, -948], [340, -951], [378, -952], [378, -962], [340, -962], [340, -970]]}, "center": {"197-258, T": [331, -957]}}, +{"id": 1786, "name": "Lebkuchen", "description": "Lebkuchen, Honigkuchen or Pfefferkuchen, are honey-sweetened German cakes molded cookie or bar cookie that have become part of Germany's Christmas traditions. They are similar to gingerbread.\nIf you buy them in german supermarkets they will usually be in the shapes of hearts, bretzels and stars.", "links": {"website": ["https://en.wikipedia.org/wiki/Lebkuchen"], "subreddit": ["placeDE"]}, "path": {"197-258, T": [[-537, -940], [-536, -914], [-455, -916], [-455, -939]]}, "center": {"197-258, T": [-523, -927]}}, +{"id": 1787, "name": "Pálinka", "description": "Pálinka is a traditional fruit spirit (or fruit brandy) with origins in the Carpathian Mountains, more exactly known under several names, and invented in the Middle Ages. Protected as a geographical indication of the European Union, only fruit spirits mashed, distilled, matured and bottled in Hungary and similar apricot spirits from four provinces of Austria can be called \"pálinka\", while \"Tótpálinka\" refers to wheat-derived beverages. Törkölypálinka, a different product in the legal sense, is a similarly protected pomace spirit that is commonly included with pálinka. While pálinka may be made of any locally grown fruit, the most common ones are plums, apricots, apples, pears, and cherries.", "links": {}, "path": {"197-258, T": [[-577, -28], [-579, -28], [-580, -26], [-580, -22], [-582, -22], [-582, -11], [-575, -11], [-575, -17], [-573, -17], [-572, -11], [-570, -11], [-568, -16], [-570, -22], [-572, -22], [-573, -21], [-575, -23]]}, "center": {"197-258, T": [-577, -20]}}, +{"id": 1788, "name": "Les Mystérieuses Cités d'or", "description": "The Mysterious Cities of Gold, originally released in Japan as Esteban, Child of the Sun (Japanese: 太陽の子エステバン) and released in France as Les Mystérieuses Cités d'Or, is an animated series which was co-produced by DiC Audiovisuel and Studio Pierrot.\n\nSet in 1532, the series follows the adventures of a young Spanish boy named Esteban who joins a voyage to the New World in search of the lost Seven Cities of Gold and his father.\n\nThe series was originally broadcast in Japan and the French version, edited with different characterization and music, was subsequently redubbed and distributed in many countries. It is currently licensed for English-language home video release in the United Kingdom, Australia, and North America by Fabulous Films.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Mysterious_Cities_of_Gold"]}, "path": {"188-258, T": [[959, -702], [960, -701], [961, -702], [966, -702], [967, -703], [968, -703], [969, -704], [972, -704], [973, -703], [974, -702], [975, -702], [976, -703], [976, -702], [977, -701], [978, -701], [979, -700], [982, -700], [983, -699], [986, -699], [987, -698], [988, -699], [987, -700], [988, -700], [989, -701], [988, -702], [987, -703], [988, -704], [987, -705], [985, -705], [984, -706], [980, -706], [977, -709], [977, -711], [979, -711], [980, -712], [980, -715], [981, -716], [979, -718], [978, -718], [977, -717], [977, -716], [976, -717], [975, -717], [972, -714], [969, -714], [968, -715], [965, -715], [963, -717], [961, -717], [960, -716], [957, -719], [955, -719], [954, -720], [953, -720], [951, -718], [952, -717], [951, -717], [950, -716], [952, -714], [953, -714], [954, -713], [955, -713], [956, -712], [957, -712], [959, -710], [960, -710], [961, -709], [962, -709], [963, -708], [958, -703]]}, "center": {"188-258, T": [970, -709]}}, +{"id": 1789, "name": "TJA", "description": "\"tja\" - a German reaction to the apocalypse, Dawn of the Gods, nuclear war, an alien attack or no bread in the house.\n\nAccording to oxford dictionary 'tja'\nexpresses thoughtfulness, misgivings, a hesitant attitude, also embarrassment or resignation.\n\"Well, now it's too late\".", "links": {"subreddit": ["tja", "placede"]}, "path": {"197-258, T": [[-1500, -610], [-1475, -610], [-1474, -599], [-1442, -599], [-1443, -591], [-1343, -590], [-1343, -580], [-1325, -580], [-1324, -560], [-1353, -560], [-1353, -550], [-1500, -550]]}, "center": {"197-258, T": [-1461, -575]}}, {"id": 1790, "name": "World Cube Association Logo", "description": "Logo of the organizers of all Rubik's Cube competitions", "links": {"website": ["https://www.worldcubeassociation.org/"], "subreddit": ["cubers"], "discord": ["cubers"]}, "path": {"190-215": [[-1000, 743], [-1034, 743], [-1035, 712], [-1000, 712]]}, "center": {"190-215": [-1017, 728]}}, -{"id": 1791, "name": "Chico Bento", "description": "Chico Bento (Chuck Billy in the English version) is the main character of Turma do Chico Bento, created by Brazilian cartoonist Maurício de Sousa. Chico is a portrait of a Brazilian hillbilly. He walks barefoot, wears a straw hat and loves to fish. He lives on a farm in the interior of São Paulo. Chico Bento is portrayed as hardworking, adventurous, charismatic, and fun. He sleeps a lot, goes fishing with his friends, steals guavas from Nhô Lau,dates Rosinha and does all the activities at Sitio, such as milking the cows, weeding the land and taking care of the cattle.", "links": {"website": ["https://en.wikipedia.org/wiki/Chuck_Billy_(Chuck_Billy_%27n%27_Folks)"], "subreddit": ["Brasil"]}, "path": {"197-258": [[183, 548], [183, 551], [185, 560], [194, 559], [194, 548], [187, 546]]}, "center": {"197-258": [189, 553]}}, +{"id": 1791, "name": "Chico Bento", "description": "Chico Bento (Chuck Billy in the English version) is the main character of Turma do Chico Bento, created by Brazilian cartoonist Maurício de Sousa. Chico is a portrait of a Brazilian hillbilly. He walks barefoot, wears a straw hat and loves to fish. He lives on a farm in the interior of São Paulo. Chico Bento is portrayed as hardworking, adventurous, charismatic, and fun. He sleeps a lot, goes fishing with his friends, steals guavas from Nhô Lau,dates Rosinha and does all the activities at Sitio, such as milking the cows, weeding the land and taking care of the cattle.", "links": {"website": ["https://en.wikipedia.org/wiki/Chuck_Billy_(Chuck_Billy_%27n%27_Folks)"], "subreddit": ["Brasil"]}, "path": {"197-258, T": [[183, 548], [183, 551], [185, 560], [194, 559], [194, 548], [187, 546]]}, "center": {"197-258, T": [189, 553]}}, {"id": 1792, "name": "Steven Universe", "description": "Steven Universe is the titular character of the animated TV series Steven Universe.", "links": {"subreddit": ["stevenuniverse"]}, "path": {"202-234": [[626, 987], [627, 987], [627, 986], [629, 986], [629, 985], [633, 985], [633, 987], [637, 987], [636, 986], [636, 985], [635, 983], [634, 983], [634, 975], [633, 974], [632, 973], [631, 972], [629, 972], [628, 973], [628, 977], [626, 979]]}, "center": {"202-234": [630, 981]}}, {"id": 1793, "name": "Stephansdom", "description": "St. Stephen's Cathedral is a Gothic cathedral and is considered one of the most famous landmarks of Vienna.\nIt is the highest and largest church in Austria. No other church in the former Austro-Hungarian Empire was allowed to be built higher.", "links": {"website": ["https://en.wikipedia.org/wiki/St._Stephen%27s_Cathedral,_Vienna"]}, "path": {"152-195": [[725, -288], [726, -316], [731, -337], [732, -344], [738, -327], [739, -316], [742, -328], [744, -324], [746, -315], [749, -316], [749, -326], [753, -326], [755, -319], [757, -330], [761, -329], [762, -310], [765, -305], [765, -288]]}, "center": {"152-195": [750, -302]}}, -{"id": 1794, "name": "Spider-Man 2099", "description": "Spider-Man 2099 is a fictional superhero character appearing in American comic books published by Marvel Comics since 1992 and is a futuristic re-imagining of the OG Spider-Man.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Spider-Man_2099"]}, "path": {"107-258": [[435, -283], [436, -283], [433, -281], [436, -285], [433, -278], [435, -276], [434, -272], [437, -268], [439, -266], [438, -263], [436, -261], [437, -256], [439, -254], [446, -254], [447, -257], [448, -259], [447, -263], [447, -265], [445, -266], [445, -268], [448, -269], [451, -272], [450, -274], [449, -276], [452, -276], [452, -278], [451, -279], [449, -281], [447, -284], [446, -285], [437, -285]]}, "center": {"107-258": [442, -278]}}, -{"id": 1795, "name": "Lola Bola", "description": "u/mynameismyka lovely pet", "links": {"subreddit": ["portugalcaralho"]}, "path": {"197-258": [[496, 338], [496, 347], [516, 347], [517, 337]]}, "center": {"197-258": [506, 342]}}, +{"id": 1794, "name": "Spider-Man 2099", "description": "Spider-Man 2099 is a fictional superhero character appearing in American comic books published by Marvel Comics since 1992 and is a futuristic re-imagining of the OG Spider-Man.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Spider-Man_2099"]}, "path": {"107-258, T": [[435, -283], [436, -283], [433, -281], [436, -285], [433, -278], [435, -276], [434, -272], [437, -268], [439, -266], [438, -263], [436, -261], [437, -256], [439, -254], [446, -254], [447, -257], [448, -259], [447, -263], [447, -265], [445, -266], [445, -268], [448, -269], [451, -272], [450, -274], [449, -276], [452, -276], [452, -278], [451, -279], [449, -281], [447, -284], [446, -285], [437, -285]]}, "center": {"107-258, T": [442, -278]}}, +{"id": 1795, "name": "Lola Bola", "description": "u/mynameismyka lovely pet", "links": {"subreddit": ["portugalcaralho"]}, "path": {"197-258, T": [[496, 338], [496, 347], [516, 347], [517, 337]]}, "center": {"197-258, T": [506, 342]}}, {"id": 1796, "name": "Rubik's Cube", "description": "The Rubik's Cube is a 3-D combination puzzle originally invented in 1974 by Hungarian sculptor and professor of architecture Ernő Rubik. It was added to the Hungarian flag because it's a Hungarian invention.", "links": {"website": ["https://en.wikipedia.org/wiki/Rubik%27s_Cube"], "subreddit": ["hungary"]}, "path": {"195": [[-1109, -33], [-1097, -27], [-1097, -12], [-1108, -7], [-1112, -7], [-1123, -12], [-1123, -26], [-1110, -33]]}, "center": {"195": [-1110, -19]}}, {"id": 1797, "name": "PandaAmanda", "description": "Made by german Twitch Streamer PandaAmanda", "links": {"website": ["https://www.twitch.tv/pandaamanda"], "discord": ["dCN2vd6eTA"]}, "path": {"196-202": [[-1292, 823], [-1268, 823], [-1273, 841], [-1292, 841]]}, "center": {"196-202": [-1280, 832]}}, {"id": 1798, "name": "Vira-Lata Caramelo dressed as Cangaceiro", "description": "A \"Vira Lata\" (mongrel) is a dog with no certain breed. The term Vira Lata derives from the fact that many of these animals, if abandoned, are commonly seen wandering the streets hungry, rummaging through waste cans (latas) in search of some kind of food. They are usually caramel colored (caramelo).\n\nCangaço was a phenomenon of Northeast Brazil in the late 19th and early 20th centuries. This region of Brazil is known for its aridness and hard way of life, and in a form of \"social banditry\" against the government, many men and women decided to become nomadic bandits, roaming the hinterlands seeking money, food, and revenge. The members of the cangaço were called \"Cangaçeiros\", and used a characteristic leather hat, to protect themselves from the strong sun of the northeast. The hat has since become a symbol os the region.", "links": {"website": ["https://en.wikipedia.org/wiki/Cangaço"], "subreddit": ["Brasil"]}, "path": {"195": [[-646, -752], [-662, -731], [-662, -720], [-645, -712], [-630, -713], [-624, -732], [-625, -751], [-637, -755], [-648, -750], [-648, -751]]}, "center": {"195": [-642, -730]}}, -{"id": 1799, "name": "Kikuri Hiroi (Drunk in Germany Mode)", "description": "Kikuri Hiroi is one of the characters of Bocchi the Rock!, a manga and anime series by Aki Hamaji. She also has her own spinoff manga titled Kikuri Hiroi's Deep Drunk Diary by Kumicho.\n\nIn the series she is the vocalist of the popular indie band SICK HACK, but her alcoholic behavior always put her life in a mess.\n\nShe probably like German drinking culture as well, hence her being featured as part of PlaceDE drawings. Alcohol is life for her.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"188-258": [[-79, -912], [-23, -912], [-22, -913], [-22, -916], [-21, -917], [-21, -921], [-20, -922], [-20, -925], [-19, -926], [-19, -938], [-17, -940], [-17, -942], [-16, -943], [-16, -945], [-15, -946], [-15, -947], [-14, -948], [-14, -949], [-11, -952], [-11, -954], [-10, -955], [0, -955], [1, -956], [1, -960], [2, -961], [2, -966], [3, -967], [3, -971], [4, -972], [4, -984], [3, -985], [3, -986], [4, -986], [4, -984], [5, -983], [6, -983], [7, -984], [7, -988], [6, -989], [6, -991], [4, -993], [4, -994], [3, -995], [2, -995], [2, -996], [1, -997], [0, -997], [-1, -996], [-2, -998], [-3, -997], [-7, -997], [-8, -998], [-9, -998], [-10, -997], [-11, -998], [-12, -998], [-13, -997], [-14, -997], [-15, -998], [-18, -995], [-18, -994], [-17, -993], [-18, -992], [-18, -991], [-17, -990], [-18, -989], [-18, -974], [-19, -973], [-19, -967], [-20, -966], [-20, -961], [-22, -959], [-22, -958], [-26, -954], [-26, -953], [-27, -952], [-27, -951], [-28, -950], [-29, -951], [-29, -955], [-28, -956], [-28, -958], [-29, -959], [-29, -961], [-31, -963], [-32, -963], [-34, -965], [-35, -965], [-36, -966], [-37, -967], [-39, -967], [-40, -968], [-42, -970], [-43, -970], [-44, -971], [-45, -971], [-48, -974], [-50, -974], [-51, -975], [-60, -975], [-61, -974], [-63, -974], [-66, -971], [-67, -971], [-68, -970], [-69, -970], [-74, -965], [-75, -965], [-80, -960], [-81, -960], [-82, -959], [-83, -959], [-84, -958], [-84, -956], [-85, -955], [-85, -948], [-84, -947], [-84, -943], [-83, -942], [-83, -941], [-80, -938], [-80, -932], [-79, -931], [-80, -930], [-80, -920], [-81, -919], [-81, -918], [-80, -917], [-80, -913]]}, "center": {"188-258": [-53, -939]}}, -{"id": 1801, "name": "Jayuhime", "description": "Guest artwork for \"jayu\" by r/placeDE.\n\nJayu is a german vtuber, artist and rigger.", "links": {"website": ["https://www.twitch.tv/jayuhime"]}, "path": {"197-258": [[-562, -985], [-577, -985], [-577, -972], [-562, -972]]}, "center": {"197-258": [-569, -978]}}, +{"id": 1799, "name": "Kikuri Hiroi (Drunk in Germany Mode)", "description": "Kikuri Hiroi is one of the characters of Bocchi the Rock!, a manga and anime series by Aki Hamaji. She also has her own spinoff manga titled Kikuri Hiroi's Deep Drunk Diary by Kumicho.\n\nIn the series she is the vocalist of the popular indie band SICK HACK, but her alcoholic behavior always put her life in a mess.\n\nShe probably like German drinking culture as well, hence her being featured as part of PlaceDE drawings. Alcohol is life for her.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"188-258, T": [[-79, -912], [-23, -912], [-22, -913], [-22, -916], [-21, -917], [-21, -921], [-20, -922], [-20, -925], [-19, -926], [-19, -938], [-17, -940], [-17, -942], [-16, -943], [-16, -945], [-15, -946], [-15, -947], [-14, -948], [-14, -949], [-11, -952], [-11, -954], [-10, -955], [0, -955], [1, -956], [1, -960], [2, -961], [2, -966], [3, -967], [3, -971], [4, -972], [4, -984], [3, -985], [3, -986], [4, -986], [4, -984], [5, -983], [6, -983], [7, -984], [7, -988], [6, -989], [6, -991], [4, -993], [4, -994], [3, -995], [2, -995], [2, -996], [1, -997], [0, -997], [-1, -996], [-2, -998], [-3, -997], [-7, -997], [-8, -998], [-9, -998], [-10, -997], [-11, -998], [-12, -998], [-13, -997], [-14, -997], [-15, -998], [-18, -995], [-18, -994], [-17, -993], [-18, -992], [-18, -991], [-17, -990], [-18, -989], [-18, -974], [-19, -973], [-19, -967], [-20, -966], [-20, -961], [-22, -959], [-22, -958], [-26, -954], [-26, -953], [-27, -952], [-27, -951], [-28, -950], [-29, -951], [-29, -955], [-28, -956], [-28, -958], [-29, -959], [-29, -961], [-31, -963], [-32, -963], [-34, -965], [-35, -965], [-36, -966], [-37, -967], [-39, -967], [-40, -968], [-42, -970], [-43, -970], [-44, -971], [-45, -971], [-48, -974], [-50, -974], [-51, -975], [-60, -975], [-61, -974], [-63, -974], [-66, -971], [-67, -971], [-68, -970], [-69, -970], [-74, -965], [-75, -965], [-80, -960], [-81, -960], [-82, -959], [-83, -959], [-84, -958], [-84, -956], [-85, -955], [-85, -948], [-84, -947], [-84, -943], [-83, -942], [-83, -941], [-80, -938], [-80, -932], [-79, -931], [-80, -930], [-80, -920], [-81, -919], [-81, -918], [-80, -917], [-80, -913]]}, "center": {"188-258, T": [-53, -939]}}, +{"id": 1801, "name": "Jayuhime", "description": "Guest artwork for \"jayu\" by r/placeDE.\n\nJayu is a german vtuber, artist and rigger.", "links": {"website": ["https://www.twitch.tv/jayuhime"]}, "path": {"197-258, T": [[-562, -985], [-577, -985], [-577, -972], [-562, -972]]}, "center": {"197-258, T": [-569, -978]}}, {"id": 1802, "name": "Ingress", "description": "Ingress is an augmented reality/alternate reality computer game developed by Niantic Labs, now Niantic, Inc. for mobile devices running Android and iOS operating systems. and over 60 fellow players from around the world created and built the game logo.", "links": {"website": ["https://www.ingress.com/"]}, "path": {"194-195": [[-999, -368], [-967, -367], [-967, -332], [-999, -332]]}, "center": {"194-195": [-983, -350]}}, -{"id": 1803, "name": "Troupe Master Grimm", "description": "Troupe Master Grimm is both a quest NPC and boss introduced in the Grimm Troupe DLC in the indie game Hollow Knight. \nGrimm is the master of the Grimm Troupe, a mysterious travelling circus.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Grimm"], "subreddit": ["hkplace"], "discord": ["xHQmkAYN8G"]}, "path": {"197-258": [[-1300, -550], [-1300, -513], [-1262, -513], [-1262, -550]], "117-124": [[-1000, -666], [-962, -666], [-962, -628], [-1000, -628]]}, "center": {"197-258": [-1281, -531], "117-124": [-981, -647]}}, +{"id": 1803, "name": "Troupe Master Grimm", "description": "Troupe Master Grimm is both a quest NPC and boss introduced in the Grimm Troupe DLC in the indie game Hollow Knight. \nGrimm is the master of the Grimm Troupe, a mysterious travelling circus.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Grimm"], "subreddit": ["hkplace"], "discord": ["xHQmkAYN8G"]}, "path": {"117-124": [[-1000, -666], [-962, -666], [-962, -628], [-1000, -628]], "197-258, T": [[-1300, -550], [-1300, -513], [-1262, -513], [-1262, -550]]}, "center": {"117-124": [-981, -647], "197-258, T": [-1281, -531]}}, {"id": 1804, "name": "Jenny Wakeman (MLaaTR 20th Anniversary)", "description": "as for 20th anniversary soon on August 1st, folks over MLaaTR Fanbase once again contributed Jenny Wakeman on r/place. On the final minutes, one of our staff decided to add another character named Vega", "links": {"subreddit": ["MyLifeAsATeenageRobot"], "discord": ["QPkP7qBDgW"]}, "path": {"209-234": [[-642, 830], [-616, 830], [-616, 800], [-639, 800], [-639, 794], [-643, 794], [-644, 794], [-644, 799], [-646, 799], [-646, 800], [-655, 800], [-655, 799], [-657, 799], [-657, 800], [-658, 800], [-658, 806], [-657, 807], [-656, 808], [-655, 809], [-654, 810], [-653, 811], [-644, 811], [-644, 815], [-643, 815]], "165-208": [[-643, 800], [-643, 830], [-616, 830], [-616, 800]]}, "center": {"209-234": [-630, 814], "165-208": [-629, 815]}}, -{"id": 1805, "name": "Sam's Potato", "description": "A tiny potato that represents OhYeahImSam's community is now immortalized in r/place 2023", "links": {"website": ["https://www.twitch.tv/ohyeahimsam", "https://twitter.com/ohyeahimsam"], "discord": ["WShEe4RmF8"]}, "path": {"198-258": [[-862, 188], [-865, 188], [-865, 187], [-866, 187], [-866, 186], [-867, 186], [-867, 183], [-866, 183], [-866, 182], [-865, 182], [-865, 181], [-864, 181], [-864, 180], [-862, 180], [-861, 180], [-861, 179], [-858, 179], [-858, 180], [-857, 180], [-857, 181], [-856, 181], [-856, 184], [-857, 184], [-857, 185], [-858, 185], [-858, 186], [-859, 186], [-860, 186], [-860, 187], [-861, 187], [-862, 187]]}, "center": {"198-258": [-862, 183]}}, -{"id": 1806, "name": "Roier", "description": "Twitch Steamer Roier's penguin", "links": {}, "path": {"198-258": [[145, 285], [142, 338], [91, 336], [95, 285]]}, "center": {"198-258": [118, 311]}}, -{"id": 1807, "name": "Spider-Man India", "description": "Spider-Man (Pavitr Prabhakar) is a superhero from Marvel Comics. He is an alternate version of Spider-Man who lives in Mumbai (in comics) / Mumbattan (in the movie), India. This art resembles \"Spider-Man: Across the Spider-Verse (2023)\" look and was made by India Place and Spider-Man Place.", "links": {"subreddit": ["IndiaPlace"], "discord": ["indiaplace", "HJfjFRuX"]}, "path": {"86-258": [[462, -284], [461, -281], [459, -278], [456, -276], [453, -273], [453, -271], [455, -269], [456, -266], [458, -264], [455, -261], [454, -258], [452, -256], [452, -252], [457, -249], [462, -250], [466, -250], [471, -252], [473, -255], [472, -258], [470, -259], [470, -262], [469, -263], [467, -265], [470, -267], [471, -269], [469, -271], [470, -271], [471, -270], [472, -271], [473, -272], [473, -274], [470, -276], [468, -278], [467, -279], [464, -283], [464, -284]]}, "center": {"86-258": [462, -257]}}, +{"id": 1805, "name": "Sam's Potato", "description": "A tiny potato that represents OhYeahImSam's community is now immortalized in r/place 2023", "links": {"website": ["https://www.twitch.tv/ohyeahimsam", "https://twitter.com/ohyeahimsam"], "discord": ["WShEe4RmF8"]}, "path": {"198-258, T": [[-862, 188], [-865, 188], [-865, 187], [-866, 187], [-866, 186], [-867, 186], [-867, 183], [-866, 183], [-866, 182], [-865, 182], [-865, 181], [-864, 181], [-864, 180], [-862, 180], [-861, 180], [-861, 179], [-858, 179], [-858, 180], [-857, 180], [-857, 181], [-856, 181], [-856, 184], [-857, 184], [-857, 185], [-858, 185], [-858, 186], [-859, 186], [-860, 186], [-860, 187], [-861, 187], [-862, 187]]}, "center": {"198-258, T": [-862, 183]}}, +{"id": 1806, "name": "Roier", "description": "Twitch Steamer Roier's penguin", "links": {}, "path": {"198-258, T": [[145, 285], [142, 338], [91, 336], [95, 285]]}, "center": {"198-258, T": [118, 311]}}, +{"id": 1807, "name": "Spider-Man India", "description": "Spider-Man (Pavitr Prabhakar) is a superhero from Marvel Comics. He is an alternate version of Spider-Man who lives in Mumbai (in comics) / Mumbattan (in the movie), India. This art resembles \"Spider-Man: Across the Spider-Verse (2023)\" look and was made by India Place and Spider-Man Place.", "links": {"subreddit": ["IndiaPlace"], "discord": ["indiaplace", "HJfjFRuX"]}, "path": {"86-258, T": [[462, -284], [461, -281], [459, -278], [456, -276], [453, -273], [453, -271], [455, -269], [456, -266], [458, -264], [455, -261], [454, -258], [452, -256], [452, -252], [457, -249], [462, -250], [466, -250], [471, -252], [473, -255], [472, -258], [470, -259], [470, -262], [469, -263], [467, -265], [470, -267], [471, -269], [469, -271], [470, -271], [471, -270], [472, -271], [473, -272], [473, -274], [470, -276], [468, -278], [467, -279], [464, -283], [464, -284]]}, "center": {"86-258, T": [462, -257]}}, {"id": 1808, "name": "Corinthians crest failed attempt", "description": "Sport Club Corinthians Paulista (Brazilian commonly referred to as Corinthians, is a Brazilian professional sports club based in São Paulo. An isolated group tried to make the team's crest on the Brazilian flag, but without success.", "links": {"website": ["https://en.wikipedia.org/wiki/Sport_Club_Corinthians_Paulista"]}, "path": {"148": [[150, 342], [186, 340], [190, 377], [162, 383], [154, 376], [151, 341]]}, "center": {"148": [170, 360]}}, -{"id": 1809, "name": "QSMP eggs", "description": "Leonarda and Bobby. Eggs for the QSMP. Created by Foolish_Gamers", "links": {}, "path": {"198-258": [[29, 285], [58, 285], [56, 337], [29, 337]]}, "center": {"198-258": [43, 299]}}, -{"id": 1810, "name": "JefferyTheJelly", "description": "JefferyTheJelly is, Twitch steamer, Foolish_Gamers Valorant name. The character shown is 'Omen', Foolish's main.", "links": {}, "path": {"196-258": [[316, 597], [380, 597], [381, 672], [316, 673]]}, "center": {"196-258": [348, 635]}}, -{"id": 1811, "name": "Peter R. de Vries", "description": "Peter Rudolf de Vries (14 November 1956 – 15 July 2021) was a Dutch investigative journalist and crime reporter. On 6 July 2021, he was shot in the head after leaving the television studio of RTL Boulevard in Amsterdam where he had appeared as a guest. He was taken to a hospital in critical condition, where he died nine days later. \"On bended knee is no way to be free\" was Peter's motto, a quote from Eddie Vedder's song 'Guaranteed'.", "links": {}, "path": {"198-258": [[-56, -550], [58, -550], [58, -500], [23, -501], [22, -532], [-55, -531]]}, "center": {"198-258": [40, -522]}}, -{"id": 1812, "name": "Chicken from Super Chicken Jumper", "description": "Super Chicken Jumper is a runner-shooter game created by Brazilian youtuber Gemaplys. In it, the world is in danger. Evil forces from the past have returned to destroy our planet and the only individual the Madam President trusts to save our lives is Chicken. The game is available for PC, Nintendo Switch, PlayStation 5, PlayStation 4, Android, Xbox Series X and Series S and Xbox One.", "links": {"website": ["https://store.steampowered.com/app/584640/SUPER_CHICKEN_JUMPER/"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"108-258": [[166, 377], [171, 377], [172, 378], [173, 378], [173, 380], [174, 381], [175, 382], [176, 382], [176, 384], [175, 384], [174, 385], [174, 387], [173, 388], [173, 390], [172, 391], [171, 392], [170, 393], [169, 394], [167, 394], [167, 396], [168, 396], [168, 398], [161, 398], [161, 395], [160, 395], [160, 394], [159, 394], [159, 393], [158, 393], [158, 392], [157, 392], [154, 389], [154, 384], [155, 383], [160, 383], [160, 382], [162, 382], [163, 381], [163, 380]]}, "center": {"108-258": [166, 387]}}, -{"id": 1813, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe. This flag is used both by the Kingdom of the Netherlands and by its constituent nation, the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"171-258": [[-1500, -511], [-1500, -450], [-1000, -450], [-1000, -511]]}, "center": {"171-258": [-1250, -480]}}, -{"id": 1815, "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica", "ticos"]}, "path": {"171-258": [[-1188, -369], [-1188, -324], [-1001, -324], [-1001, -369]]}, "center": {"171-258": [-1094, -346]}}, -{"id": 1816, "name": "SaveSoil", "description": "Save Soil is a global movement launched by Sadhguru, to address the soil crisis by bringing together people from around the world to stand up for Soil Health and supporting leaders of all nations to institute national policies and actions toward increasing the organic content in cultivable Soil. In order to raise more awareness regarding the urgent need to improve Soil health for our generation and the coming generations, the Indian subreddits have come together to take this forward to the whole world so that people know there is this impending disaster that requires immediate action from people all around the world.", "links": {"website": ["https://consciousplanet.org/"], "subreddit": ["IndiaPlace", "india", "Sadhguru"]}, "path": {"212-258": [[-1137, -165], [-1141, -165], [-1141, -164], [-1144, -164], [-1144, -163], [-1146, -163], [-1146, -162], [-1147, -162], [-1147, -161], [-1148, -161], [-1148, -160], [-1149, -160], [-1149, -159], [-1150, -159], [-1150, -158], [-1151, -158], [-1151, -157], [-1152, -157], [-1152, -156], [-1152, -155], [-1153, -155], [-1153, -154], [-1153, -153], [-1154, -153], [-1154, -144], [-1153, -144], [-1153, -141], [-1152, -140], [-1152, -139], [-1151, -138], [-1150, -138], [-1150, -137], [-1148, -136], [-1147, -135], [-1147, -134], [-1146, -134], [-1145, -133], [-1144, -133], [-1144, -132], [-1141, -132], [-1141, -131], [-1132, -131], [-1132, -132], [-1130, -132], [-1130, -133], [-1129, -133], [-1129, -134], [-1127, -134], [-1127, -135], [-1125, -135], [-1125, -136], [-1123, -139], [-1122, -141], [-1122, -142], [-1121, -142], [-1121, -144], [-1120, -144], [-1120, -152], [-1121, -153], [-1121, -155], [-1122, -155], [-1122, -157], [-1123, -157], [-1123, -158], [-1124, -158], [-1124, -159], [-1125, -159], [-1125, -160], [-1126, -159], [-1127, -161], [-1127, -162], [-1128, -162], [-1128, -163], [-1130, -163], [-1130, -164], [-1132, -164], [-1133, -164], [-1133, -165]]}, "center": {"212-258": [-1137, -148]}}, -{"id": 1817, "name": "Flag of Lebanon", "description": "The Republic of Lebanon (Arabic: لبنان) is a small country (10,452km² in area) located in the Middle East region. Its capital is Beirut. It has a long coastline on the eastern shore of the Mediterranean Sea, sharing a long land border with its much larger neighbour Syria to the north and east, and a much shorter (and conflict-ridden) border with Israel to the south.", "links": {"website": ["https://en.wikipedia.org/wiki/Lebanon", "https://en.wikipedia.org/wiki/Flag_of_Lebanon"], "subreddit": ["lebanon"]}, "path": {"191-203": [[-1200, -214], [-1200, -191], [-1155, -191], [-1155, -214]], "204-219": [[-1200, -214], [-1200, -191], [-1150, -191], [-1150, -215]], "220-229": [[-1200, -214], [-1200, -189], [-1141, -190], [-1141, -214]], "230-258": [[-1200, -214], [-1200, -189], [-1140, -190], [-1140, -214]]}, "center": {"191-203": [-1177, -202], "204-219": [-1175, -203], "220-229": [-1176, -202], "230-258": [-1176, -202]}}, -{"id": 1818, "name": "Flag of Paraguay", "description": "Paraguay is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguay", "https://en.wikipedia.org/wiki/Flag_of_Paraguay"], "subreddit": ["Paraguay"]}, "path": {"171-258": [[-1164, 13], [-1164, 87], [-1034, 87], [-1034, 13]]}, "center": {"171-258": [-1099, 50]}}, -{"id": 1819, "name": "Flag of France", "description": "France is a country in Western Europe. this particular french flag serves as the home of the r/furry_irl alliance as result of a deal between the two communities", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"171-258": [[-1175, 87], [-1175, 273], [-1000, 273], [-1000, 87]]}, "center": {"171-258": [-1087, 180]}}, +{"id": 1809, "name": "QSMP eggs", "description": "Leonarda and Bobby. Eggs for the QSMP. Created by Foolish_Gamers", "links": {}, "path": {"198-258, T": [[29, 285], [58, 285], [56, 337], [29, 337]]}, "center": {"198-258, T": [43, 299]}}, +{"id": 1810, "name": "JefferyTheJelly", "description": "JefferyTheJelly is, Twitch steamer, Foolish_Gamers Valorant name. The character shown is 'Omen', Foolish's main.", "links": {}, "path": {"196-258, T": [[316, 597], [380, 597], [381, 672], [316, 673]]}, "center": {"196-258, T": [348, 635]}}, +{"id": 1811, "name": "Peter R. de Vries", "description": "Peter Rudolf de Vries (14 November 1956 – 15 July 2021) was a Dutch investigative journalist and crime reporter. On 6 July 2021, he was shot in the head after leaving the television studio of RTL Boulevard in Amsterdam where he had appeared as a guest. He was taken to a hospital in critical condition, where he died nine days later. \"On bended knee is no way to be free\" was Peter's motto, a quote from Eddie Vedder's song 'Guaranteed'.", "links": {}, "path": {"198-258, T": [[-56, -550], [58, -550], [58, -500], [23, -501], [22, -532], [-55, -531]]}, "center": {"198-258, T": [40, -522]}}, +{"id": 1812, "name": "Chicken from Super Chicken Jumper", "description": "Super Chicken Jumper is a runner-shooter game created by Brazilian youtuber Gemaplys. In it, the world is in danger. Evil forces from the past have returned to destroy our planet and the only individual the Madam President trusts to save our lives is Chicken. The game is available for PC, Nintendo Switch, PlayStation 5, PlayStation 4, Android, Xbox Series X and Series S and Xbox One.", "links": {"website": ["https://store.steampowered.com/app/584640/SUPER_CHICKEN_JUMPER/"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"108-258, T": [[166, 377], [171, 377], [172, 378], [173, 378], [173, 380], [174, 381], [175, 382], [176, 382], [176, 384], [175, 384], [174, 385], [174, 387], [173, 388], [173, 390], [172, 391], [171, 392], [170, 393], [169, 394], [167, 394], [167, 396], [168, 396], [168, 398], [161, 398], [161, 395], [160, 395], [160, 394], [159, 394], [159, 393], [158, 393], [158, 392], [157, 392], [154, 389], [154, 384], [155, 383], [160, 383], [160, 382], [162, 382], [163, 381], [163, 380]]}, "center": {"108-258, T": [166, 387]}}, +{"id": 1813, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe. This flag is used both by the Kingdom of the Netherlands and by its constituent nation, the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"171-258, T": [[-1500, -511], [-1500, -450], [-1000, -450], [-1000, -511]]}, "center": {"171-258, T": [-1250, -480]}}, +{"id": 1815, "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica", "ticos"]}, "path": {"171-258, T": [[-1188, -369], [-1188, -324], [-1001, -324], [-1001, -369]]}, "center": {"171-258, T": [-1094, -346]}}, +{"id": 1816, "name": "SaveSoil", "description": "Save Soil is a global movement launched by Sadhguru, to address the soil crisis by bringing together people from around the world to stand up for Soil Health and supporting leaders of all nations to institute national policies and actions toward increasing the organic content in cultivable Soil. In order to raise more awareness regarding the urgent need to improve Soil health for our generation and the coming generations, the Indian subreddits have come together to take this forward to the whole world so that people know there is this impending disaster that requires immediate action from people all around the world.", "links": {"website": ["https://consciousplanet.org/"], "subreddit": ["IndiaPlace", "india", "Sadhguru"]}, "path": {"212-258, T": [[-1137, -165], [-1141, -165], [-1141, -164], [-1144, -164], [-1144, -163], [-1146, -163], [-1146, -162], [-1147, -162], [-1147, -161], [-1148, -161], [-1148, -160], [-1149, -160], [-1149, -159], [-1150, -159], [-1150, -158], [-1151, -158], [-1151, -157], [-1152, -157], [-1152, -156], [-1152, -155], [-1153, -155], [-1153, -154], [-1153, -153], [-1154, -153], [-1154, -144], [-1153, -144], [-1153, -141], [-1152, -140], [-1152, -139], [-1151, -138], [-1150, -138], [-1150, -137], [-1148, -136], [-1147, -135], [-1147, -134], [-1146, -134], [-1145, -133], [-1144, -133], [-1144, -132], [-1141, -132], [-1141, -131], [-1132, -131], [-1132, -132], [-1130, -132], [-1130, -133], [-1129, -133], [-1129, -134], [-1127, -134], [-1127, -135], [-1125, -135], [-1125, -136], [-1123, -139], [-1122, -141], [-1122, -142], [-1121, -142], [-1121, -144], [-1120, -144], [-1120, -152], [-1121, -153], [-1121, -155], [-1122, -155], [-1122, -157], [-1123, -157], [-1123, -158], [-1124, -158], [-1124, -159], [-1125, -159], [-1125, -160], [-1126, -159], [-1127, -161], [-1127, -162], [-1128, -162], [-1128, -163], [-1130, -163], [-1130, -164], [-1132, -164], [-1133, -164], [-1133, -165]]}, "center": {"212-258, T": [-1137, -148]}}, +{"id": 1817, "name": "Flag of Lebanon", "description": "The Republic of Lebanon (Arabic: لبنان) is a small country (10,452km² in area) located in the Middle East region. Its capital is Beirut. It has a long coastline on the eastern shore of the Mediterranean Sea, sharing a long land border with its much larger neighbour Syria to the north and east, and a much shorter (and conflict-ridden) border with Israel to the south.", "links": {"website": ["https://en.wikipedia.org/wiki/Lebanon", "https://en.wikipedia.org/wiki/Flag_of_Lebanon"], "subreddit": ["lebanon"]}, "path": {"191-203": [[-1200, -214], [-1200, -191], [-1155, -191], [-1155, -214]], "204-219": [[-1200, -214], [-1200, -191], [-1150, -191], [-1150, -215]], "220-229": [[-1200, -214], [-1200, -189], [-1141, -190], [-1141, -214]], "230-258, T": [[-1200, -214], [-1200, -189], [-1140, -190], [-1140, -214]]}, "center": {"191-203": [-1177, -202], "204-219": [-1175, -203], "220-229": [-1176, -202], "230-258, T": [-1176, -202]}}, +{"id": 1818, "name": "Flag of Paraguay", "description": "Paraguay is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraguay", "https://en.wikipedia.org/wiki/Flag_of_Paraguay"], "subreddit": ["Paraguay"]}, "path": {"171-258, T": [[-1164, 13], [-1164, 87], [-1034, 87], [-1034, 13]]}, "center": {"171-258, T": [-1099, 50]}}, +{"id": 1819, "name": "Flag of France", "description": "France is a country in Western Europe. this particular french flag serves as the home of the r/furry_irl alliance as result of a deal between the two communities", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"171-258, T": [[-1175, 87], [-1175, 273], [-1000, 273], [-1000, 87]]}, "center": {"171-258, T": [-1087, 180]}}, {"id": 1820, "name": "First Salvadorean Flag", "description": "This is the first Salvadorean flag we made small 3 by 7 right under the controller, was a time of organization while we rallied our people and prepared for next canvas expansion in order to take new lands, unfortunately this little flag didn't make it first we got eaten by Guatemala and after a quick repositioning beside MOI chile decided to take a bit too so we move on and made it other place.", "links": {"website": ["https://es.wikipedia.org/wiki/El_Salvador"], "subreddit": ["ElSalvador"], "discord": ["yFRp8Qdtr"]}, "path": {"72-115": [[419, -293], [433, -293], [433, -290], [419, -290]], "117-121": [[446, -307], [452, -307], [452, -304], [446, -304]]}, "center": {"72-115": [426, -291], "117-121": [449, -305]}}, -{"id": 1821, "name": "Hill of Swords", "description": "The Hill of Swords is a location in the manga Berserk that contains a large number of swords stuck into the ground, each sword serving as a grave.\n\nThe Band of the Hawk Berserk community alongside nineteen other communities pulled their resources together to produce a collaborative art piece. It serves as a memorial for Berserk's creator Miura Kentaro and a home for all respective communities who lost their previous art pieces in this year's r/place. During the whiteout, the alliance drew falling snow over the artwork, gradually burying the swords under the snow.\n\nThe weaponry includes: \n\n- Berserk: Dragon Slayer \n- Monster Hunter: Jawblade \n- Terraria: Terra Blade \n- Chainsaw Man: Denji's head \n- Fromsoft: Moonlight Greatsword \n- Vinland Saga: Thorfinn Dagger \n- Zelda: Master Sword \n- Blackpink: Bi-Ping-Bong \n- JoJo's: Luck and Pluck \n- TF2: Golden Frying Pan \n- She-Ra: Sword of Protection \n- Guardian Tales: Champion Sword \n- Hollow Knight: Hornet's Needle\n- Naruto: Kunai\n- Vaush: Stanislav the cat \n- Touhou: Sword of Hisou \n- Nier: Virtuous Treaty \n- Witch Hat Atelier: Raincleaver \n- Attack on Titan: ODM Blade \n- One Piece: Yoru\n- Polite Reaper: Scythe", "links": {"website": ["https://berserk.fandom.com/wiki/Hill_of_Swords"], "subreddit": ["Berserk", "Berserklejerk", "BeulPing", "BlackPink", "bloodborne", "ChainsawMan", "darksouls", "eldenring", "FromSoftware", "GuardianTales", "HKPlace", "JoJosBizarrePlace", "monsterhunter", "monster_hunter_place", "nier", "okbuddyvowsh", "OnePiece", "PlaceNaruto", "PrincessesOfPower", "terraria", "titanfolk", "tf2", "touhou", "VaushV", "WitchHatAtelier", "zelda"], "discord": ["M699v8xSqz", "apl", "oneplace", "rzelda", "terraria", "tf2", "4HEn7YXMSZ", "6v27j8n9", "NjsuqFsX", "Pfcy2mfw", "qmGHwGq", "UrXWzvG", "V7X2DWc2", "VxsXpfYKcc", "WMy7NF37", "xHQmkAYN8G", "xpQSRKjH"]}, "path": {"155-258": [[500, 901], [500, 969], [630, 969], [630, 936], [612, 936], [608, 933], [606, 925], [606, 922], [609, 919], [609, 913], [613, 907], [613, 901]]}, "center": {"155-258": [565, 935]}}, -{"id": 1822, "name": "Malaysia", "description": "Malaysia is a country in Southeast Asia. \nOriginally they where the neighbours of the northern Area of Austria. However Austria wanted to gain more territory, and therefore decided to move the whole country next to Italy.", "links": {"website": ["https://en.wikipedia.org/wiki/Malaysia"], "subreddit": ["placeMY", "malaysia", "malaysians", "Bolehland"], "discord": ["hG9XJpDRPw"]}, "path": {"199-258": [[-759, 23], [-759, -6], [-694, -6], [-694, 23]]}, "center": {"199-258": [-726, 9]}}, -{"id": 1823, "name": "\"O\" from Puyo Puyo Tetris", "description": "O is a character from the games Puyo Puyo Tetris 1&2, a seemingly robotic, floating little creature, who can transmit messages through time and space and is the best friend of the Tetris King, Tee. \nAs \"Puyo Puyo Tetris\" is a crossover between the long-running action puzzle game series Puyo Puyo and the Tetris brand, the Tetris and Puyo Puyo communities on reddit and discord got together to create this artwork in collaboration. The pixelart was crafted by user \"ChippiHeppu\"", "links": {"subreddit": ["puyo24"], "discord": ["c23tGEH9"]}, "path": {"198-258": [[329, 32], [335, 32], [336, 36], [344, 36], [343, 32], [351, 32], [351, 40], [347, 40], [351, 47], [351, 53], [344, 55], [333, 55], [328, 51], [328, 47], [330, 46], [332, 43], [335, 39], [331, 39], [329, 38]]}, "center": {"198-258": [340, 46]}}, -{"id": 1824, "name": "MH17 remembrance ribbon", "description": "A ribbon remembering the MH17 plane which was shot down by Russian-controlled forces on 17 July 2014.", "links": {}, "path": {"198-258": [[854, -501], [886, -501], [885, -451], [854, -451]]}, "center": {"198-258": [870, -476]}}, -{"id": 1825, "name": "Bassie & Adriaan", "description": "Bassie & Adriaan was a television program series focusing on the adventures and lives of a circus duo consisting of clown Bassie and acrobat Adriaan, played by real-life circus duo Bas and Aad van Toor. (1978-1995)", "links": {"website": ["https://www.bassie-adriaan.nl/", "https://en.wikipedia.org/wiki/Bassie_%26_Adriaan"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"193-195": [[-470, -508], [-470, -515], [-473, -517], [-473, -520], [-467, -530], [-470, -530], [-471, -532], [-468, -533], [-463, -535], [-468, -539], [-468, -541], [-464, -545], [-461, -541], [-458, -537], [-456, -537], [-451, -544], [-449, -546], [-445, -541], [-451, -536], [-449, -536], [-444, -538], [-444, -536], [-447, -533], [-441, -522], [-439, -525], [-438, -531], [-436, -536], [-432, -540], [-423, -541], [-419, -539], [-415, -535], [-411, -520], [-414, -512], [-417, -508], [-422, -507], [-424, -504], [-429, -504], [-432, -506], [-437, -509], [-439, -513], [-440, -520], [-442, -518], [-443, -517], [-443, -510], [-444, -509], [-447, -509], [-449, -508], [-453, -504], [-459, -504], [-462, -507], [-465, -507], [-469, -508]], "197-258": [[-494, -540], [-490, -544], [-485, -536], [-482, -536], [-481, -539], [-479, -541], [-475, -545], [-471, -540], [-471, -537], [-469, -536], [-473, -532], [-469, -526], [-467, -521], [-465, -524], [-464, -530], [-463, -534], [-461, -537], [-459, -539], [-456, -540], [-449, -540], [-444, -538], [-440, -533], [-437, -519], [-438, -515], [-441, -509], [-445, -506], [-447, -506], [-450, -503], [-455, -503], [-457, -505], [-459, -505], [-464, -509], [-465, -513], [-467, -518], [-469, -514], [-469, -509], [-470, -508], [-471, -509], [-472, -508], [-474, -507], [-476, -507], [-479, -503], [-485, -503], [-488, -506], [-491, -506], [-492, -507], [-494, -507], [-495, -508], [-495, -514], [-496, -516], [-499, -517], [-497, -523], [-493, -529], [-497, -530], [-497, -532], [-489, -534]]}, "center": {"193-195": [-456, -521], "197-258": [-482, -520]}}, -{"id": 1826, "name": "Cult of the Lamb - Red Crown Eye Flag", "description": "A Cult of the Lamb flag of the Red Crown's eye", "links": {"website": ["https://www.cultofthelamb.com/"], "subreddit": ["CultOfTheLamb"], "discord": ["NHmc6Jpt"]}, "path": {"30-258": [[-334, -178], [-313, -178], [-313, -166], [-334, -166]]}, "center": {"30-258": [-323, -172]}}, -{"id": 1827, "name": "NS Platform sign", "description": "Signage showing information on a train leaving at 18:15, the year the Kingdom of the Netherlands was declared independent. It also shows a delay of 33 minutes, 1815 33=1848, the year the Dutch constitution was signed", "links": {}, "path": {"198-258": [[151, -545], [249, -545], [250, -513], [151, -513]]}, "center": {"198-258": [201, -529]}}, -{"id": 1828, "name": "Královec", "description": "Královec is the Czech name for Kaliningrad, a Russian exclave by the Baltic sea, which was founded by a Bohemian king Přemysl Otakar II. \n\nIn 2022, a mock referendum was held in Czechia to annex Královec as a response to fishy Russian referendums in occupied Ukrainian regions. This became an internet meme about Královec being a Czech territory.", "links": {"website": ["https://knowyourmeme.com/memes/events/mock-czech-annexation-of-kaliningrad-kralovec", "https://en.wikipedia.org/wiki/Kaliningrad"], "subreddit": ["Czech"]}, "path": {"187-258": [[-195, 596], [-139, 596], [-138, 596], [-137, 596], [-137, 631], [-195, 631]]}, "center": {"187-258": [-166, 614]}}, -{"id": 1829, "name": "VC3 - Revolution", "description": "VC3 is a community-driven platform passionately owned and managed by a group of users who hold diverse perspectives on r/placeDE's moderation team. The revolution is considered a ban-worthy topic in r/placede's server due to its controversial nature. Embracing a spirit of independence and a desire for constructive dialogue, this community welcomes users who have experienced difficulties in r/placeDE's discord server or VC3, fostering an inclusive environment for open discussions.\nWe also have an alliance with the German south flag.", "links": {"website": ["https://de.wikipedia.org/wiki/Deutsche_Revolution_1848/1849"], "subreddit": ["sprachkanal3"], "discord": ["RRXccGRncM"]}, "path": {"163-258": [[-888, -71], [-887, -65], [-845, -65], [-845, -71], [-887, -71]]}, "center": {"163-258": [-866, -68]}}, -{"id": 1830, "name": "Anıtkabir", "description": "Anıtkabir is a complex located in the Çankaya district of Ankara, which includes the mausoleum of Mustafa Kemal Atatürk. Designed by Emin Onat and Orhan Arda, the construction of Anıtkabir began in 1944 and was completed in 1953. In addition to the mausoleum building, the complex consists of various structures and monuments, as well as a wooded area known as the Peace Park.", "links": {"website": ["https://en.wikipedia.org/wiki/An%C4%B1tkabir"], "subreddit": ["turkey"], "discord": ["rplacetr"]}, "path": {"199-258": [[-296, 444], [-291, 439], [-290, 427], [-291, 424], [-256, 424], [-256, 426], [-257, 426], [-257, 440], [-256, 440], [-261, 444], [-280, 445]]}, "center": {"199-258": [-274, 434]}}, -{"id": 1831, "name": "NU.nl", "description": "NU.nl is a Dutch online newspaper. The logo was added because they wrote an article about PlaceNL.", "links": {"website": ["https://www.nu.nl/", "https://en.wikipedia.org/wiki/NU.nl"], "subreddit": ["PlaceNL"], "discord": ["PlaceNL"]}, "path": {"185-258": [[-1389, -514], [-1397, -519], [-1399, -526], [-1397, -532], [-1392, -541], [-1381, -544], [-1370, -539], [-1368, -533], [-1362, -531], [-1361, -524], [-1364, -522], [-1367, -522], [-1373, -514], [-1377, -512], [-1382, -511], [-1390, -513], [-1393, -516]]}, "center": {"185-258": [-1382, -528]}}, +{"id": 1821, "name": "Hill of Swords", "description": "The Hill of Swords is a location in the manga Berserk that contains a large number of swords stuck into the ground, each sword serving as a grave.\n\nThe Band of the Hawk Berserk community alongside nineteen other communities pulled their resources together to produce a collaborative art piece. It serves as a memorial for Berserk's creator Miura Kentaro and a home for all respective communities who lost their previous art pieces in this year's r/place. During the whiteout, the alliance drew falling snow over the artwork, gradually burying the swords under the snow.\n\nThe weaponry includes: \n\n- Berserk: Dragon Slayer \n- Monster Hunter: Jawblade \n- Terraria: Terra Blade \n- Chainsaw Man: Denji's head \n- Fromsoft: Moonlight Greatsword \n- Vinland Saga: Thorfinn Dagger \n- Zelda: Master Sword \n- Blackpink: Bi-Ping-Bong \n- JoJo's: Luck and Pluck \n- TF2: Golden Frying Pan \n- She-Ra: Sword of Protection \n- Guardian Tales: Champion Sword \n- Hollow Knight: Hornet's Needle\n- Naruto: Kunai\n- Vaush: Stanislav the cat \n- Touhou: Sword of Hisou \n- Nier: Virtuous Treaty \n- Witch Hat Atelier: Raincleaver \n- Attack on Titan: ODM Blade \n- One Piece: Yoru\n- Polite Reaper: Scythe", "links": {"website": ["https://berserk.fandom.com/wiki/Hill_of_Swords"], "subreddit": ["Berserk", "Berserklejerk", "BeulPing", "BlackPink", "bloodborne", "ChainsawMan", "darksouls", "eldenring", "FromSoftware", "GuardianTales", "HKPlace", "JoJosBizarrePlace", "monsterhunter", "monster_hunter_place", "nier", "okbuddyvowsh", "OnePiece", "PlaceNaruto", "PrincessesOfPower", "terraria", "titanfolk", "tf2", "touhou", "VaushV", "WitchHatAtelier", "zelda"], "discord": ["M699v8xSqz", "apl", "oneplace", "rzelda", "terraria", "tf2", "4HEn7YXMSZ", "6v27j8n9", "NjsuqFsX", "Pfcy2mfw", "qmGHwGq", "UrXWzvG", "V7X2DWc2", "VxsXpfYKcc", "WMy7NF37", "xHQmkAYN8G", "xpQSRKjH"]}, "path": {"155-258, T": [[500, 901], [500, 969], [630, 969], [630, 936], [612, 936], [608, 933], [606, 925], [606, 922], [609, 919], [609, 913], [613, 907], [613, 901]]}, "center": {"155-258, T": [565, 935]}}, +{"id": 1822, "name": "Malaysia", "description": "Malaysia is a country in Southeast Asia. \nOriginally they where the neighbours of the northern Area of Austria. However Austria wanted to gain more territory, and therefore decided to move the whole country next to Italy.", "links": {"website": ["https://en.wikipedia.org/wiki/Malaysia"], "subreddit": ["placeMY", "malaysia", "malaysians", "Bolehland"], "discord": ["hG9XJpDRPw"]}, "path": {"199-258, T": [[-759, 23], [-759, -6], [-694, -6], [-694, 23]]}, "center": {"199-258, T": [-726, 9]}}, +{"id": 1823, "name": "\"O\" from Puyo Puyo Tetris", "description": "O is a character from the games Puyo Puyo Tetris 1&2, a seemingly robotic, floating little creature, who can transmit messages through time and space and is the best friend of the Tetris King, Tee. \nAs \"Puyo Puyo Tetris\" is a crossover between the long-running action puzzle game series Puyo Puyo and the Tetris brand, the Tetris and Puyo Puyo communities on reddit and discord got together to create this artwork in collaboration. The pixelart was crafted by user \"ChippiHeppu\"", "links": {"subreddit": ["puyo24"], "discord": ["c23tGEH9"]}, "path": {"198-258, T": [[329, 32], [335, 32], [336, 36], [344, 36], [343, 32], [351, 32], [351, 40], [347, 40], [351, 47], [351, 53], [344, 55], [333, 55], [328, 51], [328, 47], [330, 46], [332, 43], [335, 39], [331, 39], [329, 38]]}, "center": {"198-258, T": [340, 46]}}, +{"id": 1824, "name": "MH17 remembrance ribbon", "description": "A ribbon remembering the MH17 plane which was shot down by Russian-controlled forces on 17 July 2014.", "links": {}, "path": {"198-258, T": [[854, -501], [886, -501], [885, -451], [854, -451]]}, "center": {"198-258, T": [870, -476]}}, +{"id": 1825, "name": "Bassie & Adriaan", "description": "Bassie & Adriaan was a television program series focusing on the adventures and lives of a circus duo consisting of clown Bassie and acrobat Adriaan, played by real-life circus duo Bas and Aad van Toor. (1978-1995)", "links": {"website": ["https://www.bassie-adriaan.nl/", "https://en.wikipedia.org/wiki/Bassie_%26_Adriaan"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"193-195": [[-470, -508], [-470, -515], [-473, -517], [-473, -520], [-467, -530], [-470, -530], [-471, -532], [-468, -533], [-463, -535], [-468, -539], [-468, -541], [-464, -545], [-461, -541], [-458, -537], [-456, -537], [-451, -544], [-449, -546], [-445, -541], [-451, -536], [-449, -536], [-444, -538], [-444, -536], [-447, -533], [-441, -522], [-439, -525], [-438, -531], [-436, -536], [-432, -540], [-423, -541], [-419, -539], [-415, -535], [-411, -520], [-414, -512], [-417, -508], [-422, -507], [-424, -504], [-429, -504], [-432, -506], [-437, -509], [-439, -513], [-440, -520], [-442, -518], [-443, -517], [-443, -510], [-444, -509], [-447, -509], [-449, -508], [-453, -504], [-459, -504], [-462, -507], [-465, -507], [-469, -508]], "197-258, T": [[-494, -540], [-490, -544], [-485, -536], [-482, -536], [-481, -539], [-479, -541], [-475, -545], [-471, -540], [-471, -537], [-469, -536], [-473, -532], [-469, -526], [-467, -521], [-465, -524], [-464, -530], [-463, -534], [-461, -537], [-459, -539], [-456, -540], [-449, -540], [-444, -538], [-440, -533], [-437, -519], [-438, -515], [-441, -509], [-445, -506], [-447, -506], [-450, -503], [-455, -503], [-457, -505], [-459, -505], [-464, -509], [-465, -513], [-467, -518], [-469, -514], [-469, -509], [-470, -508], [-471, -509], [-472, -508], [-474, -507], [-476, -507], [-479, -503], [-485, -503], [-488, -506], [-491, -506], [-492, -507], [-494, -507], [-495, -508], [-495, -514], [-496, -516], [-499, -517], [-497, -523], [-493, -529], [-497, -530], [-497, -532], [-489, -534]]}, "center": {"193-195": [-456, -521], "197-258, T": [-482, -520]}}, +{"id": 1826, "name": "Cult of the Lamb - Red Crown Eye Flag", "description": "A Cult of the Lamb flag of the Red Crown's eye", "links": {"website": ["https://www.cultofthelamb.com/"], "subreddit": ["CultOfTheLamb"], "discord": ["NHmc6Jpt"]}, "path": {"30-258, T": [[-334, -178], [-313, -178], [-313, -166], [-334, -166]]}, "center": {"30-258, T": [-323, -172]}}, +{"id": 1827, "name": "NS Platform sign", "description": "Signage showing information on a train leaving at 18:15, the year the Kingdom of the Netherlands was declared independent. It also shows a delay of 33 minutes, 1815 33=1848, the year the Dutch constitution was signed", "links": {}, "path": {"198-258, T": [[151, -545], [249, -545], [250, -513], [151, -513]]}, "center": {"198-258, T": [201, -529]}}, +{"id": 1828, "name": "Královec", "description": "Královec is the Czech name for Kaliningrad, a Russian exclave by the Baltic sea, which was founded by a Bohemian king Přemysl Otakar II. \n\nIn 2022, a mock referendum was held in Czechia to annex Královec as a response to fishy Russian referendums in occupied Ukrainian regions. This became an internet meme about Královec being a Czech territory.", "links": {"website": ["https://knowyourmeme.com/memes/events/mock-czech-annexation-of-kaliningrad-kralovec", "https://en.wikipedia.org/wiki/Kaliningrad"], "subreddit": ["Czech"]}, "path": {"187-258, T": [[-195, 596], [-139, 596], [-138, 596], [-137, 596], [-137, 631], [-195, 631]]}, "center": {"187-258, T": [-166, 614]}}, +{"id": 1829, "name": "VC3 - Revolution", "description": "VC3 is a community-driven platform passionately owned and managed by a group of users who hold diverse perspectives on r/placeDE's moderation team. The revolution is considered a ban-worthy topic in r/placede's server due to its controversial nature. Embracing a spirit of independence and a desire for constructive dialogue, this community welcomes users who have experienced difficulties in r/placeDE's discord server or VC3, fostering an inclusive environment for open discussions.\nWe also have an alliance with the German south flag.", "links": {"website": ["https://de.wikipedia.org/wiki/Deutsche_Revolution_1848/1849"], "subreddit": ["sprachkanal3"], "discord": ["RRXccGRncM"]}, "path": {"163-258, T": [[-888, -71], [-887, -65], [-845, -65], [-845, -71], [-887, -71]]}, "center": {"163-258, T": [-866, -68]}}, +{"id": 1830, "name": "Anıtkabir", "description": "Anıtkabir is a complex located in the Çankaya district of Ankara, which includes the mausoleum of Mustafa Kemal Atatürk. Designed by Emin Onat and Orhan Arda, the construction of Anıtkabir began in 1944 and was completed in 1953. In addition to the mausoleum building, the complex consists of various structures and monuments, as well as a wooded area known as the Peace Park.", "links": {"website": ["https://en.wikipedia.org/wiki/An%C4%B1tkabir"], "subreddit": ["turkey"], "discord": ["rplacetr"]}, "path": {"199-258, T": [[-296, 444], [-291, 439], [-290, 427], [-291, 424], [-256, 424], [-256, 426], [-257, 426], [-257, 440], [-256, 440], [-261, 444], [-280, 445]]}, "center": {"199-258, T": [-274, 434]}}, +{"id": 1831, "name": "NU.nl", "description": "NU.nl is a Dutch online newspaper. The logo was added because they wrote an article about PlaceNL.", "links": {"website": ["https://www.nu.nl/", "https://en.wikipedia.org/wiki/NU.nl"], "subreddit": ["PlaceNL"], "discord": ["PlaceNL"]}, "path": {"185-258, T": [[-1389, -514], [-1397, -519], [-1399, -526], [-1397, -532], [-1392, -541], [-1381, -544], [-1370, -539], [-1368, -533], [-1362, -531], [-1361, -524], [-1364, -522], [-1367, -522], [-1373, -514], [-1377, -512], [-1382, -511], [-1390, -513], [-1393, -516]]}, "center": {"185-258, T": [-1382, -528]}}, {"id": 1832, "name": "Azulejos", "description": "A background pattern of portuguese tiles - \"azulejos\" - made by a rebel faction against antidemocratic mods, composed mostly of veterans from previous years. In a collaboration effort with r/hatsune, r/metallica and r/pizzatower.", "links": {"website": ["https://media.istockphoto.com/id/487102579/pt/foto/azulejos.jpg?s=1024x1024&w=is&k=20&c=52rJDw1le8mdGIFhliZWsaJdBotiLkcetfQr4y3W3aQ="], "subreddit": ["TugasPlaceOG"], "discord": ["pevrBv4wjt"]}, "path": {"197": [[-941, -249], [-885, -249], [-885, -227], [-941, -227]]}, "center": {"197": [-913, -238]}}, {"id": 1833, "name": "Pac-Man and the Ghosts", "description": "Drawings of Pac-Man and the Ghosts\n\nThe ghosts Include Blinky Pinky, Sue, and Clyde", "links": {"subreddit": ["pacman"]}, "path": {"195-199": [[159, -770], [174, -770], [173, -756], [137, -756], [137, -739], [120, -739], [120, -756], [102, -756], [102, -771]]}, "center": {"195-199": [129, -761]}}, {"id": 1834, "name": "Habile", "description": "A cat robot, the mascot of the streamer Clembs.", "links": {"website": ["https://clembs.com/"]}, "path": {"7-9": [[-334, 469], [-335, 469], [-335, 475], [-334, 476], [-333, 477], [-328, 477], [-327, 476], [-326, 476], [-326, 471], [-327, 470], [-327, 467], [-328, 467], [-328, 468], [-329, 468], [-330, 469], [-330, 470], [-334, 470]]}, "center": {"7-9": [-331, 473]}}, {"id": 1835, "name": "Oyasumi Punpun", "description": "Silly lil birb from not so silly manga Oyasumi Punpun written by Inio Asano.", "links": {"website": ["https://myanimelist.net/people/2836/Inio_Asano", "https://myanimelist.net/manga/4632/Oyasumi_Punpun"], "subreddit": ["OyasumiPunpun"], "discord": ["evQbFmbRGZ", "reG6DfvUcg"]}, "path": {"196-197": [[-786, 368], [-770, 368], [-770, 403], [-786, 403]]}, "center": {"196-197": [-778, 386]}}, -{"id": 1836, "name": "ANWB Roadside Assistance Van", "description": "The Royal Dutch Touring Club ANWB (Dutch: Koninklijke Nederlandse Toeristenbond ANWB), known simply as ANWB, is a travelers' association in the Netherlands, supporting all modes of travel. It provides test reports, travel services and roadside assistance and is comparable to the German Allgemeiner Deutscher Automobil-Club (ADAC) and the British Automobile Association (AA).\n\nIt's on its way to help the car on the left side of the Dutch flag.", "links": {"website": ["https://www.anwb.nl/", "https://en.wikipedia.org/wiki/Royal_Dutch_Touring_Club"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"147-258": [[998, -497], [976, -497], [965, -488], [965, -481], [999, -481]]}, "center": {"147-258": [982, -489]}}, -{"id": 1837, "name": "Werwölfe von Düsterwald - Community", "description": "The German \"Werwölfe von Düsterwald\" community is a Discord community that loves to play Werewolves of Millers Hollow. In cooperation with r/placeDE they have placed a little wolf to show their love for the game. \n\nThe Werewolves of Millers Hollow is a social deduction card game like Town of Salem, Mafia or Trouble in Terrorist Town. It is well known in German schools and is still often played by adults.\n\nThe community is always open to anyone who loves \"Werwölfe von Düsterwald\" or just wants to play other online or board games.", "links": {"discord": ["u3cgCJ2Tbq"]}, "path": {"198-258": [[381, -569], [381, -570], [382, -571], [383, -572], [384, -572], [385, -571], [386, -572], [387, -572], [388, -571], [389, -570], [390, -569], [391, -570], [392, -571], [393, -570], [394, -569], [395, -569], [396, -569], [397, -569], [398, -569], [399, -570], [400, -571], [401, -570], [402, -569], [402, -568], [402, -567], [402, -566], [401, -565], [402, -564], [402, -563], [402, -562], [402, -561], [401, -560], [402, -559], [403, -558], [403, -557], [403, -556], [403, -554], [403, -553], [402, -552], [403, -551], [403, -550], [402, -550], [401, -550], [400, -550], [399, -551], [398, -552], [397, -551], [397, -550], [396, -550], [395, -550], [394, -550], [393, -551], [392, -551], [391, -551], [390, -551], [389, -551], [388, -552], [388, -553], [387, -554], [387, -555], [387, -556], [387, -557], [386, -558], [386, -559], [385, -559], [385, -560], [384, -561], [384, -562], [385, -563], [385, -565], [384, -566], [383, -567], [382, -568], [381, -569], [381, -570], [382, -571], [383, -572], [384, -572], [385, -571], [382, -571]]}, "center": {"198-258": [393, -561]}}, -{"id": 1838, "name": "Space Taxi", "description": "The Space Taxi originated from the 2004 german comedy film (T)Raumschiff Surprise – Periode 1 by Michael \"Bully\" Herbig. It is a spoof of the 1960s American television series Star Trek and parodies several science fiction films.\nIn the movie the three protagonists have to call a space taxi (The driver is played by Til Schweiger, known in Germany for his constant mumbling) to get to Earth after their ship suffers from technical problems.\n\nA clip showing the taxi and the infamous space taxi song are linked below.", "links": {"website": ["https://en.wikipedia.org/wiki/Traumschiff_Surprise_%E2%80%93_Periode_1", "https://youtu.be/YamqppepDDg?t=42", "https://youtu.be/YamqppepDDg?t=87"], "subreddit": ["placeDE"]}, "path": {"195-258": [[-980, -588], [-980, -594], [-979, -595], [-979, -596], [-977, -598], [-976, -597], [-976, -598], [-974, -600], [-970, -600], [-969, -601], [-966, -601], [-965, -602], [-963, -602], [-962, -603], [-951, -603], [-950, -602], [-948, -602], [-947, -601], [-941, -601], [-940, -602], [-932, -602], [-931, -601], [-925, -601], [-925, -602], [-923, -602], [-922, -603], [-920, -603], [-919, -604], [-917, -604], [-916, -605], [-913, -605], [-912, -606], [-907, -606], [-906, -607], [-890, -607], [-889, -606], [-885, -606], [-884, -605], [-880, -605], [-879, -604], [-877, -604], [-876, -603], [-874, -603], [-873, -602], [-872, -602], [-871, -601], [-869, -601], [-868, -600], [-867, -600], [-866, -599], [-864, -599], [-863, -598], [-862, -598], [-861, -597], [-860, -597], [-859, -596], [-856, -596], [-855, -595], [-853, -595], [-852, -594], [-851, -594], [-850, -593], [-844, -593], [-843, -592], [-841, -592], [-840, -591], [-838, -591], [-837, -590], [-836, -590], [-835, -589], [-835, -588], [-834, -587], [-834, -580], [-838, -576], [-839, -576], [-840, -575], [-848, -575], [-849, -574], [-866, -574], [-867, -575], [-868, -575], [-869, -576], [-870, -576], [-871, -575], [-874, -575], [-875, -574], [-887, -574], [-888, -575], [-890, -573], [-891, -573], [-892, -572], [-893, -572], [-894, -571], [-895, -571], [-896, -570], [-900, -570], [-901, -569], [-904, -569], [-905, -568], [-906, -568], [-907, -567], [-932, -567], [-933, -568], [-939, -568], [-940, -569], [-947, -569], [-948, -570], [-952, -570], [-953, -571], [-956, -571], [-959, -574], [-959, -575], [-960, -576], [-960, -579], [-962, -581], [-964, -581], [-966, -583], [-967, -583], [-968, -584], [-977, -584], [-979, -586], [-979, -587]]}, "center": {"195-258": [-912, -586]}}, -{"id": 1839, "name": "Silent Fitz", "description": "Sylphiette (or Silent Fitz) is a fictional characters and one of the main protagonists of the Light Novel and Anime series Mushoku Tensei: Jobless Reincarnation.\n\nWhite hair explanation S2E0: During the displacement incident, people were teleported randomly across the world, Sylphiette was teleported to the sky, close to Ars, the capital of the Asuran Kingdom, in an attempt to survive, Sylphiette exhausts all of her mana using wind magic, with white hair being one of the main indications of mana exhaustion, although her hair turned white permanently. (S3 Content)", "links": {"subreddit": ["sixfacedworld"], "discord": ["atAmCHvE"]}, "path": {"199-258": [[-652, -220], [-630, -220], [-630, -196], [-652, -196]]}, "center": {"199-258": [-641, -208]}}, -{"id": 1840, "name": "Cristo Redentor", "description": "Christ The Redeemer is an art deco statue of Jesus Christ in Rio de Janeiro, Brazil. The statue has become a cultural icon of both Rio de Janeiro and Brazil and was voted one of the new Seven Wonders of the World.", "links": {"website": ["https://en.wikipedia.org/wiki/Christ_the_Redeemer_(statue)"], "subreddit": ["Brasil"]}, "path": {"198-258": [[205, 312], [210, 312], [212, 314], [212, 316], [213, 317], [213, 327], [215, 329], [217, 329], [218, 330], [220, 330], [221, 331], [230, 331], [231, 332], [236, 332], [237, 333], [247, 333], [248, 332], [249, 332], [250, 331], [262, 331], [263, 332], [263, 335], [261, 337], [255, 337], [252, 340], [251, 340], [245, 346], [244, 346], [243, 347], [239, 347], [238, 348], [237, 348], [236, 347], [235, 348], [234, 348], [233, 347], [232, 348], [231, 348], [230, 347], [229, 347], [227, 349], [225, 349], [223, 351], [223, 413], [224, 414], [224, 429], [223, 428], [222, 428], [221, 427], [220, 427], [219, 426], [218, 426], [217, 425], [216, 425], [215, 424], [214, 424], [213, 423], [212, 423], [211, 422], [210, 422], [208, 420], [207, 420], [206, 421], [205, 421], [204, 422], [203, 422], [202, 423], [201, 423], [200, 424], [199, 424], [198, 425], [197, 425], [196, 426], [195, 426], [194, 427], [193, 427], [192, 428], [191, 427], [191, 426], [190, 425], [190, 421], [191, 420], [191, 415], [192, 414], [192, 405], [193, 404], [193, 383], [192, 382], [192, 369], [191, 368], [191, 366], [190, 365], [190, 355], [189, 354], [189, 350], [188, 349], [187, 349], [186, 348], [184, 348], [183, 347], [181, 347], [180, 346], [177, 346], [176, 345], [174, 345], [173, 344], [171, 344], [166, 339], [162, 339], [161, 338], [158, 338], [157, 337], [155, 337], [154, 336], [152, 336], [151, 335], [150, 335], [150, 334], [149, 333], [149, 331], [160, 331], [161, 332], [162, 331], [163, 331], [165, 333], [179, 333], [180, 332], [183, 332], [184, 331], [192, 331], [193, 330], [199, 330], [201, 328], [201, 327], [202, 326], [202, 317], [203, 316], [203, 314]]}, "center": {"198-258": [206, 346]}}, +{"id": 1836, "name": "ANWB Roadside Assistance Van", "description": "The Royal Dutch Touring Club ANWB (Dutch: Koninklijke Nederlandse Toeristenbond ANWB), known simply as ANWB, is a travelers' association in the Netherlands, supporting all modes of travel. It provides test reports, travel services and roadside assistance and is comparable to the German Allgemeiner Deutscher Automobil-Club (ADAC) and the British Automobile Association (AA).\n\nIt's on its way to help the car on the left side of the Dutch flag.", "links": {"website": ["https://www.anwb.nl/", "https://en.wikipedia.org/wiki/Royal_Dutch_Touring_Club"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"147-258, T": [[998, -497], [976, -497], [965, -488], [965, -481], [999, -481]]}, "center": {"147-258, T": [982, -489]}}, +{"id": 1837, "name": "Werwölfe von Düsterwald - Community", "description": "The German \"Werwölfe von Düsterwald\" community is a Discord community that loves to play Werewolves of Millers Hollow. In cooperation with r/placeDE they have placed a little wolf to show their love for the game. \n\nThe Werewolves of Millers Hollow is a social deduction card game like Town of Salem, Mafia or Trouble in Terrorist Town. It is well known in German schools and is still often played by adults.\n\nThe community is always open to anyone who loves \"Werwölfe von Düsterwald\" or just wants to play other online or board games.", "links": {"discord": ["u3cgCJ2Tbq"]}, "path": {"198-258, T": [[381, -569], [381, -570], [382, -571], [383, -572], [384, -572], [385, -571], [386, -572], [387, -572], [388, -571], [389, -570], [390, -569], [391, -570], [392, -571], [393, -570], [394, -569], [395, -569], [396, -569], [397, -569], [398, -569], [399, -570], [400, -571], [401, -570], [402, -569], [402, -568], [402, -567], [402, -566], [401, -565], [402, -564], [402, -563], [402, -562], [402, -561], [401, -560], [402, -559], [403, -558], [403, -557], [403, -556], [403, -554], [403, -553], [402, -552], [403, -551], [403, -550], [402, -550], [401, -550], [400, -550], [399, -551], [398, -552], [397, -551], [397, -550], [396, -550], [395, -550], [394, -550], [393, -551], [392, -551], [391, -551], [390, -551], [389, -551], [388, -552], [388, -553], [387, -554], [387, -555], [387, -556], [387, -557], [386, -558], [386, -559], [385, -559], [385, -560], [384, -561], [384, -562], [385, -563], [385, -565], [384, -566], [383, -567], [382, -568], [381, -569], [381, -570], [382, -571], [383, -572], [384, -572], [385, -571], [382, -571]]}, "center": {"198-258, T": [393, -561]}}, +{"id": 1838, "name": "Space Taxi", "description": "The Space Taxi originated from the 2004 german comedy film (T)Raumschiff Surprise – Periode 1 by Michael \"Bully\" Herbig. It is a spoof of the 1960s American television series Star Trek and parodies several science fiction films.\nIn the movie the three protagonists have to call a space taxi (The driver is played by Til Schweiger, known in Germany for his constant mumbling) to get to Earth after their ship suffers from technical problems.\n\nA clip showing the taxi and the infamous space taxi song are linked below.", "links": {"website": ["https://en.wikipedia.org/wiki/Traumschiff_Surprise_%E2%80%93_Periode_1", "https://youtu.be/YamqppepDDg?t=42", "https://youtu.be/YamqppepDDg?t=87"], "subreddit": ["placeDE"]}, "path": {"195-258, T": [[-980, -588], [-980, -594], [-979, -595], [-979, -596], [-977, -598], [-976, -597], [-976, -598], [-974, -600], [-970, -600], [-969, -601], [-966, -601], [-965, -602], [-963, -602], [-962, -603], [-951, -603], [-950, -602], [-948, -602], [-947, -601], [-941, -601], [-940, -602], [-932, -602], [-931, -601], [-925, -601], [-925, -602], [-923, -602], [-922, -603], [-920, -603], [-919, -604], [-917, -604], [-916, -605], [-913, -605], [-912, -606], [-907, -606], [-906, -607], [-890, -607], [-889, -606], [-885, -606], [-884, -605], [-880, -605], [-879, -604], [-877, -604], [-876, -603], [-874, -603], [-873, -602], [-872, -602], [-871, -601], [-869, -601], [-868, -600], [-867, -600], [-866, -599], [-864, -599], [-863, -598], [-862, -598], [-861, -597], [-860, -597], [-859, -596], [-856, -596], [-855, -595], [-853, -595], [-852, -594], [-851, -594], [-850, -593], [-844, -593], [-843, -592], [-841, -592], [-840, -591], [-838, -591], [-837, -590], [-836, -590], [-835, -589], [-835, -588], [-834, -587], [-834, -580], [-838, -576], [-839, -576], [-840, -575], [-848, -575], [-849, -574], [-866, -574], [-867, -575], [-868, -575], [-869, -576], [-870, -576], [-871, -575], [-874, -575], [-875, -574], [-887, -574], [-888, -575], [-890, -573], [-891, -573], [-892, -572], [-893, -572], [-894, -571], [-895, -571], [-896, -570], [-900, -570], [-901, -569], [-904, -569], [-905, -568], [-906, -568], [-907, -567], [-932, -567], [-933, -568], [-939, -568], [-940, -569], [-947, -569], [-948, -570], [-952, -570], [-953, -571], [-956, -571], [-959, -574], [-959, -575], [-960, -576], [-960, -579], [-962, -581], [-964, -581], [-966, -583], [-967, -583], [-968, -584], [-977, -584], [-979, -586], [-979, -587]]}, "center": {"195-258, T": [-912, -586]}}, +{"id": 1839, "name": "Silent Fitz", "description": "Sylphiette (or Silent Fitz) is a fictional characters and one of the main protagonists of the Light Novel and Anime series Mushoku Tensei: Jobless Reincarnation.\n\nWhite hair explanation S2E0: During the displacement incident, people were teleported randomly across the world, Sylphiette was teleported to the sky, close to Ars, the capital of the Asuran Kingdom, in an attempt to survive, Sylphiette exhausts all of her mana using wind magic, with white hair being one of the main indications of mana exhaustion, although her hair turned white permanently. (S3 Content)", "links": {"subreddit": ["sixfacedworld"], "discord": ["atAmCHvE"]}, "path": {"199-258, T": [[-652, -220], [-630, -220], [-630, -196], [-652, -196]]}, "center": {"199-258, T": [-641, -208]}}, +{"id": 1840, "name": "Cristo Redentor", "description": "Christ The Redeemer is an art deco statue of Jesus Christ in Rio de Janeiro, Brazil. The statue has become a cultural icon of both Rio de Janeiro and Brazil and was voted one of the new Seven Wonders of the World.", "links": {"website": ["https://en.wikipedia.org/wiki/Christ_the_Redeemer_(statue)"], "subreddit": ["Brasil"]}, "path": {"198-258, T": [[205, 312], [210, 312], [212, 314], [212, 316], [213, 317], [213, 327], [215, 329], [217, 329], [218, 330], [220, 330], [221, 331], [230, 331], [231, 332], [236, 332], [237, 333], [247, 333], [248, 332], [249, 332], [250, 331], [262, 331], [263, 332], [263, 335], [261, 337], [255, 337], [252, 340], [251, 340], [245, 346], [244, 346], [243, 347], [239, 347], [238, 348], [237, 348], [236, 347], [235, 348], [234, 348], [233, 347], [232, 348], [231, 348], [230, 347], [229, 347], [227, 349], [225, 349], [223, 351], [223, 413], [224, 414], [224, 429], [223, 428], [222, 428], [221, 427], [220, 427], [219, 426], [218, 426], [217, 425], [216, 425], [215, 424], [214, 424], [213, 423], [212, 423], [211, 422], [210, 422], [208, 420], [207, 420], [206, 421], [205, 421], [204, 422], [203, 422], [202, 423], [201, 423], [200, 424], [199, 424], [198, 425], [197, 425], [196, 426], [195, 426], [194, 427], [193, 427], [192, 428], [191, 427], [191, 426], [190, 425], [190, 421], [191, 420], [191, 415], [192, 414], [192, 405], [193, 404], [193, 383], [192, 382], [192, 369], [191, 368], [191, 366], [190, 365], [190, 355], [189, 354], [189, 350], [188, 349], [187, 349], [186, 348], [184, 348], [183, 347], [181, 347], [180, 346], [177, 346], [176, 345], [174, 345], [173, 344], [171, 344], [166, 339], [162, 339], [161, 338], [158, 338], [157, 337], [155, 337], [154, 336], [152, 336], [151, 335], [150, 335], [150, 334], [149, 333], [149, 331], [160, 331], [161, 332], [162, 331], [163, 331], [165, 333], [179, 333], [180, 332], [183, 332], [184, 331], [192, 331], [193, 330], [199, 330], [201, 328], [201, 327], [202, 326], [202, 317], [203, 316], [203, 314]]}, "center": {"198-258, T": [206, 346]}}, {"id": 1841, "name": "SimRC", "description": "In 2012, a small group of racing enthusiasts created a website for a virtual Formula 1 league. 11 years later, our community consists of approximately 200 members and provides a platform for games like F1 23, Assetto Corsa, and iRacing. We offer the complete package from arcade to high-end simulation. With over 50,000 clicks per day, our community is one of the most active in Germany, connecting like-minded drivers with a passion for motorsport.", "links": {"website": ["https://simrc.de"], "discord": ["nWxHuXjRqJ"]}, "path": {"161-187": [[411, -955], [411, -947], [433, -947], [433, -955]]}, "center": {"161-187": [422, -951]}}, -{"id": 1842, "name": "Oak Lands", "description": "This is pixel art by the community of Typical Developers. They made a roblox game called Oaklands and wanted to represent it here under the lead of @theflyfella (Discord)", "links": {"website": ["https://typicaldevelopers.com/", "https://www.roblox.com/games/9938675423/Oaklands"], "subreddit": ["oaklands"], "discord": ["Typical"]}, "path": {"199-258": [[-761, 953], [-740, 953], [-732, 967], [-714, 967], [-705, 953], [-679, 954], [-676, 958], [-672, 958], [-669, 954], [-643, 954], [-642, 969], [-762, 969]]}, "center": {"199-258": [-698, 961]}}, +{"id": 1842, "name": "Oak Lands", "description": "This is pixel art by the community of Typical Developers. They made a roblox game called Oaklands and wanted to represent it here under the lead of @theflyfella (Discord)", "links": {"website": ["https://typicaldevelopers.com/", "https://www.roblox.com/games/9938675423/Oaklands"], "subreddit": ["oaklands"], "discord": ["Typical"]}, "path": {"199-258, T": [[-761, 953], [-740, 953], [-732, 967], [-714, 967], [-705, 953], [-679, 954], [-676, 958], [-672, 958], [-669, 954], [-643, 954], [-642, 969], [-762, 969]]}, "center": {"199-258, T": [-698, 961]}}, {"id": 1843, "name": "Touhou 11 Icon", "description": "The icon of Touhou Chireiden ~ Subterranean Animism", "links": {"website": ["https://en.touhouwiki.net/wiki/Subterranean_Animism"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"165-197": [[-49, 972], [-49, 973], [-50, 973], [-50, 996], [-49, 996], [-49, 997], [-26, 997], [-26, 996], [-25, 996], [-25, 973], [-26, 973], [-26, 972]]}, "center": {"165-197": [-37, 985]}}, -{"id": 1845, "name": "Flag of Romania", "description": "Romania is a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania", "https://en.wikipedia.org/wiki/Flag_of_Romania"], "subreddit": ["okprietenretardat", "romania", "ROCasual"]}, "path": {"185-258": [[-1500, 373], [-1500, 470], [-1442, 470], [-1442, 373]]}, "center": {"185-258": [-1471, 422]}}, -{"id": 1846, "name": "Flag of Austria", "description": "Austria is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"106-170": [[-1001, -56], [-1001, -26], [-501, -26], [-501, -56]], "87-105": [[-868, -57], [-868, -26], [-501, -26], [-501, -57]], "171-209": [[-1175, -57], [-1175, -26], [-501, -26], [-501, -56]], "210-258": [[-1501, -57], [-501, -56], [-501, -26], [-1500, -26]]}, "center": {"106-170": [-751, -41], "87-105": [-684, -41], "171-209": [-1159, -41], "210-258": [-1454, -41]}}, -{"id": 1849, "name": "r/place_brff", "description": "r/place_brff is a subreddit for r/place art organized by Russian streamer Bratishkinoff. This art depicts a cat inspecting a fish bowl.", "links": {"subreddit": ["place_brff"]}, "path": {"160-258": [[719, 898], [719, 1000], [899, 1000], [899, 898]]}, "center": {"160-258": [809, 949]}}, -{"id": 1850, "name": "BroChoc", "description": "A community of french streamers", "links": {"website": ["https://boloss.fr"]}, "path": {"167-187": [[-174, 590], [-140, 590], [-140, 598], [-174, 598]], "188-205": [[-174, 590], [-174, 596], [-137, 596], [-137, 589]], "206-258": [[-155, 579], [-155, 596], [-137, 596], [-137, 579]]}, "center": {"167-187": [-157, 594], "188-205": [-142, 593], "206-258": [-146, 588]}}, -{"id": 1851, "name": "Friendly Fire", "description": "Friendly Fire is an annual charity event by streamers and YouTubers, including Gronkh, Team PietSmiet, Pandorya, FisHC0p, Der Heider, PhunkRoyal, MrMoregame, and many other special guests.\n\nThe event started in 2015 and has gained more and more attention over the years, raising over 8 million € in donation money from viewers and sponsors.\nThe latest Friendly Fire (8) took place in December 2022.", "links": {"website": ["https://en.wikipedia.org/wiki/Friendly_Fire_(event)"]}, "path": {"198-258": [[-1202, -943], [-1201, -942], [-1201, -941], [-1200, -940], [-1200, -939], [-1197, -936], [-1196, -935], [-1193, -921], [-1169, -921], [-1159, -929], [-1155, -935], [-1151, -939], [-1150, -940], [-1150, -942], [-1149, -943], [-1149, -949], [-1149, -953], [-1148, -954], [-1147, -955], [-1147, -956], [-1146, -957], [-1146, -963], [-1147, -964], [-1147, -970], [-1148, -970], [-1148, -971], [-1150, -973], [-1149, -975], [-1149, -982], [-1151, -983], [-1152, -981], [-1153, -980], [-1154, -980], [-1158, -984], [-1159, -983], [-1159, -985], [-1158, -986], [-1158, -988], [-1161, -988], [-1163, -990], [-1165, -991], [-1165, -993], [-1166, -993], [-1167, -994], [-1168, -993], [-1171, -996], [-1172, -995], [-1172, -997], [-1173, -997], [-1174, -999], [-1176, -998], [-1177, -997], [-1178, -995], [-1178, -993], [-1179, -992], [-1180, -993], [-1181, -993], [-1182, -991], [-1183, -993], [-1185, -992], [-1185, -988], [-1187, -987], [-1190, -987], [-1191, -988], [-1192, -987], [-1193, -985], [-1192, -983], [-1191, -981], [-1195, -986], [-1197, -985], [-1197, -984], [-1198, -984], [-1200, -982], [-1200, -979], [-1201, -976], [-1202, -974], [-1203, -971], [-1204, -968], [-1205, -962], [-1204, -961], [-1203, -959], [-1202, -957]]}, "center": {"198-258": [-1175, -959]}}, -{"id": 1852, "name": "Surprised Penguin Spray", "description": "The Surprised Penguin Spray was part of the Episode 3 Act 1 premium Valorant Battlepass.", "links": {}, "path": {"199-258": [[686, -640], [727, -640], [727, -642], [728, -642], [727, -642], [727, -643], [727, -644], [728, -644], [729, -645], [729, -648], [730, -649], [730, -650], [729, -651], [728, -652], [727, -652], [726, -653], [718, -653], [718, -655], [719, -655], [719, -657], [720, -658], [720, -660], [719, -661], [718, -663], [717, -665], [716, -666], [715, -667], [714, -668], [713, -669], [712, -669], [711, -670], [704, -670], [703, -669], [702, -669], [701, -668], [700, -668], [699, -667], [698, -666], [697, -665], [696, -664], [695, -663], [694, -661], [693, -659], [693, -657], [694, -656], [692, -653], [692, -648], [691, -646], [690, -645]]}, "center": {"199-258": [706, -652]}}, -{"id": 1853, "name": "BEI STAU: RETTUNGSGASSE", "description": "This sign says \"In case of traffic jam: emergency lane\". (Bei Stau: Rettungsgasse). In Germany, by law, a emergency lane must be formed when there is a traffic jam to allow emergency vehicles to get through.", "links": {"subreddit": ["StVo"]}, "path": {"196-258": [[-1346, -430], [-1292, -430], [-1292, -395], [-1346, -395]]}, "center": {"196-258": [-1319, -412]}}, -{"id": 1854, "name": "Cow Paula", "description": "Paula the cow is a brand of the German company Dr. Oetker. Paula is best known for the promotional videos for Paula Pudding, for which Paula the cow is the mascot.", "links": {"website": ["https://www.oetker.de/produkte/s/gekuehlte-desserts/paula"]}, "path": {"200-258": [[142, -922], [145, -933], [136, -929], [124, -932], [121, -934], [120, -938], [128, -943], [128, -945], [123, -947], [127, -949], [126, -954], [128, -951], [138, -953], [141, -952], [143, -954], [144, -951], [175, -953], [168, -956], [163, -957], [161, -959], [162, -961], [171, -959], [179, -953], [178, -951], [176, -946], [178, -938], [172, -925], [169, -926], [170, -930], [166, -929], [166, -924], [162, -924], [162, -934], [157, -933], [153, -921], [150, -921], [153, -932], [149, -932], [145, -923]]}, "center": {"200-258": [138, -942]}}, -{"id": 1855, "name": "Emotes and Profilepicture of Shlorox and Shlotrash", "description": "Shlorox is a german Twitch-Streamer.\nMainly famous for GTA V RP.\n\nAlmost every emote contains a raccoon as a mascot.", "links": {"website": ["https://www.twitch.tv/shlorox"], "subreddit": ["shlorox"], "discord": ["KqwtyXr"]}, "path": {"227-258": [[174, -703], [180, -709], [182, -709], [182, -717], [188, -722], [192, -722], [197, -717], [197, -709], [197, -707], [201, -707], [204, -706], [203, -628], [173, -629], [172, -677], [173, -702], [181, -708]]}, "center": {"227-258": [188, -675]}}, -{"id": 1856, "name": "The nether portal.", "description": "The nether portal is a refference to the minecraft nether portal. Reasons of it being built are unknown, probably to end off the bridge, being a cool addition.", "links": {"subreddit": ["minecraft"]}, "path": {"200-258": [[-1007, -11], [-1007, -14], [-1004, -14], [-1004, -11]]}, "center": {"200-258": [-1005, -12]}}, -{"id": 1857, "name": "Flag of the Romani", "description": "The flag of the Romani people, colloquially known as the Roma or Gypsies (considered a pejorative) are an Indo-Aryan ethnic group who lived a nomadic lifestyle in Europe. \nGenetic and Linguistic evidence suggests that they originated from modern-day Rajasthan, a state in India and spread out around 1000 CE.\nTheir population numbers from around 2-12 million. During the 2nd World War and the Holocaust, the Nazis committed systematic genocide against the Romani, with victims estimated to be up to 1.5 million\nMade by the Indian place community et al.", "author": "AnElongated_Muskrat", "links": {"website": ["https://en.wikipedia.org/wiki/Romani_people"]}, "path": {"200-258": [[-1194, -189], [-1194, -172], [-1164, -172], [-1164, -189]]}, "center": {"200-258": [-1179, -180]}}, -{"id": 1858, "name": "Stolas head", "description": "Stolas is a Goetic Prince of Hell and a major supporting character in Helluva Boss. He is the father of Octavia who is represented nearby.\n\nStolas is an anthropomorphic owl demon. He is tall and slender, with a white, heart-shaped facial disk and small black beak, resembling that of an owl.\n\nStolas gives the immediate impression of someone regal and ostentatious, as would be expected for a royal of his station. He dresses in clothing befitting his role, and his mansion is decadent, containing many large, elaborately framed portraits of himself and his small family.\n\nUnderneath these dignified trappings, however, Stolas is shown to be a flamboyant, dramatic, eccentric, and often giddy person. Someone who does not take his royal reputation as seriously as the people around him expect him to, and is prone to act quickly on his easily excitable emotions.", "links": {"subreddit": ["HelluvaBoss", "HazbinHotel", "placeStolas"], "discord": ["zbrP6msjT5"]}, "path": {"198-258": [[-1161, 195], [-1161, 192], [-1162, 192], [-1162, 190], [-1163, 190], [-1163, 189], [-1165, 188], [-1167, 188], [-1167, 187], [-1169, 187], [-1169, 186], [-1171, 186], [-1171, 185], [-1172, 185], [-1172, 180], [-1173, 180], [-1173, 178], [-1174, 178], [-1174, 173], [-1175, 173], [-1175, 172], [-1174, 172], [-1174, 171], [-1173, 171], [-1173, 172], [-1172, 172], [-1171, 172], [-1171, 167], [-1171, 166], [-1172, 166], [-1171, 166], [-1171, 165], [-1165, 165], [-1165, 164], [-1159, 164], [-1159, 163], [-1156, 163], [-1156, 164], [-1154, 164], [-1154, 165], [-1153, 165], [-1153, 166], [-1151, 166], [-1151, 165], [-1150, 165], [-1150, 164], [-1149, 164], [-1149, 163], [-1147, 163], [-1147, 170], [-1146, 170], [-1146, 171], [-1145, 171], [-1145, 172], [-1144, 172], [-1144, 174], [-1145, 174], [-1145, 175], [-1146, 175], [-1146, 179], [-1145, 179], [-1145, 181], [-1146, 181], [-1146, 182], [-1147, 182], [-1147, 183], [-1148, 183], [-1148, 184], [-1149, 184], [-1149, 185], [-1150, 185], [-1151, 185], [-1151, 186], [-1152, 186], [-1152, 189], [-1153, 189], [-1153, 190], [-1154, 190], [-1154, 195]]}, "center": {"198-258": [-1160, 177]}}, -{"id": 1859, "name": "Hungary map", "description": "A map of hungary to represent the country, built under the \"Akkor a kurva anyádat, spez!\" sign due to lack of space.", "links": {"subreddit": ["hungary"]}, "path": {"200-258": [[-1064, -7], [-1061, -7], [-1061, -8], [-1059, -8], [-1059, -9], [-1055, -9], [-1055, -10], [-1052, -10], [-1052, -11], [-1048, -11], [-1048, -12], [-1043, -12], [-1043, -13], [-1042, -13], [-1042, -15], [-1041, -15], [-1041, -17], [-1040, -17], [-1040, -21], [-1039, -21], [-1039, -23], [-1038, -23], [-1038, -24], [-1037, -24], [-1037, -25], [-1036, -25], [-1036, -26], [-1035, -26], [-1035, -27], [-1034, -27], [-1034, -28], [-1032, -28], [-1032, -30], [-1033, -30], [-1033, -31], [-1036, -31], [-1036, -32], [-1039, -32], [-1039, -33], [-1040, -33], [-1040, -34], [-1046, -34], [-1046, -32], [-1047, -32], [-1047, -31], [-1048, -31], [-1048, -30], [-1051, -30], [-1051, -31], [-1052, -31], [-1052, -30], [-1053, -30], [-1053, -29], [-1056, -29], [-1056, -27], [-1060, -27], [-1060, -26], [-1064, -26], [-1064, -27], [-1065, -27], [-1065, -28], [-1066, -28], [-1066, -29], [-1067, -29], [-1067, -28], [-1068, -28], [-1068, -26], [-1070, -26], [-1070, -27], [-1071, -27], [-1071, -28], [-1071, -26], [-1070, -26], [-1070, -25], [-1069, -24], [-1071, -22], [-1073, -20], [-1075, -18], [-1070, -13], [-1070, -11], [-1068, -11], [-1068, -10], [-1067, -9], [-1065, -8]]}, "center": {"200-258": [-1049, -21]}}, -{"id": 1860, "name": "Cult of the Lamb - The Lamb", "description": "A tiny pixel-art sprite of the Lamb themself, rested on the allied Austrian flag,", "links": {"website": ["https://www.cultofthelamb.com/"], "subreddit": ["CultOfTheLamb"], "discord": ["NHmc6Jpt"]}, "path": {"149-258": [[753, -351], [759, -351], [759, -352], [760, -352], [760, -353], [761, -353], [761, -356], [762, -356], [762, -357], [763, -357], [763, -359], [762, -359], [762, -360], [761, -360], [761, -362], [760, -362], [760, -364], [758, -364], [758, -366], [754, -366], [754, -364], [752, -364], [752, -362], [751, -362], [751, -360], [750, -360], [750, -359], [749, -359], [749, -357], [750, -357], [750, -356], [751, -356], [751, -353], [752, -353], [752, -352], [753, -352]]}, "center": {"149-258": [756, -358]}}, -{"id": 1861, "name": "Your Turn to Die", "description": "Your Turn to Die (YTTD) is a negotiation/adventure game by Nankidai about a deadly game, where the participants choose who dies.", "links": {"website": ["https://en.wikipedia.org/wiki/Kimi_ga_Shine_-Tas%C5%ABketsu_Death_Game-"], "subreddit": ["YTTD"], "discord": ["yttd"]}, "path": {"165-258": [[758, 859], [758, 839], [772, 839], [772, 859]]}, "center": {"165-258": [765, 849]}}, +{"id": 1845, "name": "Flag of Romania", "description": "Romania is a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania", "https://en.wikipedia.org/wiki/Flag_of_Romania"], "subreddit": ["okprietenretardat", "romania", "ROCasual"]}, "path": {"185-258, T": [[-1500, 373], [-1500, 470], [-1442, 470], [-1442, 373]]}, "center": {"185-258, T": [-1471, 422]}}, +{"id": 1846, "name": "Flag of Austria", "description": "Austria is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["placeAustria", "Austria"], "discord": ["f5ky84vGku"]}, "path": {"106-170": [[-1001, -56], [-1001, -26], [-501, -26], [-501, -56]], "87-105": [[-868, -57], [-868, -26], [-501, -26], [-501, -57]], "171-209": [[-1175, -57], [-1175, -26], [-501, -26], [-501, -56]], "210-258, T": [[-1501, -57], [-501, -56], [-501, -26], [-1500, -26]]}, "center": {"106-170": [-751, -41], "87-105": [-684, -41], "171-209": [-1159, -41], "210-258, T": [-1454, -41]}}, +{"id": 1849, "name": "r/place_brff", "description": "r/place_brff is a subreddit for r/place art organized by Russian streamer Bratishkinoff. This art depicts a cat inspecting a fish bowl.", "links": {"subreddit": ["place_brff"]}, "path": {"160-258, T": [[719, 898], [719, 1000], [899, 1000], [899, 898]]}, "center": {"160-258, T": [809, 949]}}, +{"id": 1850, "name": "BroChoc", "description": "A community of french streamers", "links": {"website": ["https://boloss.fr"]}, "path": {"167-187": [[-174, 590], [-140, 590], [-140, 598], [-174, 598]], "188-205": [[-174, 590], [-174, 596], [-137, 596], [-137, 589]], "206-258, T": [[-155, 579], [-155, 596], [-137, 596], [-137, 579]]}, "center": {"167-187": [-157, 594], "188-205": [-142, 593], "206-258, T": [-146, 588]}}, +{"id": 1851, "name": "Friendly Fire", "description": "Friendly Fire is an annual charity event by streamers and YouTubers, including Gronkh, Team PietSmiet, Pandorya, FisHC0p, Der Heider, PhunkRoyal, MrMoregame, and many other special guests.\n\nThe event started in 2015 and has gained more and more attention over the years, raising over 8 million € in donation money from viewers and sponsors.\nThe latest Friendly Fire (8) took place in December 2022.", "links": {"website": ["https://en.wikipedia.org/wiki/Friendly_Fire_(event)"]}, "path": {"198-258, T": [[-1202, -943], [-1201, -942], [-1201, -941], [-1200, -940], [-1200, -939], [-1197, -936], [-1196, -935], [-1193, -921], [-1169, -921], [-1159, -929], [-1155, -935], [-1151, -939], [-1150, -940], [-1150, -942], [-1149, -943], [-1149, -949], [-1149, -953], [-1148, -954], [-1147, -955], [-1147, -956], [-1146, -957], [-1146, -963], [-1147, -964], [-1147, -970], [-1148, -970], [-1148, -971], [-1150, -973], [-1149, -975], [-1149, -982], [-1151, -983], [-1152, -981], [-1153, -980], [-1154, -980], [-1158, -984], [-1159, -983], [-1159, -985], [-1158, -986], [-1158, -988], [-1161, -988], [-1163, -990], [-1165, -991], [-1165, -993], [-1166, -993], [-1167, -994], [-1168, -993], [-1171, -996], [-1172, -995], [-1172, -997], [-1173, -997], [-1174, -999], [-1176, -998], [-1177, -997], [-1178, -995], [-1178, -993], [-1179, -992], [-1180, -993], [-1181, -993], [-1182, -991], [-1183, -993], [-1185, -992], [-1185, -988], [-1187, -987], [-1190, -987], [-1191, -988], [-1192, -987], [-1193, -985], [-1192, -983], [-1191, -981], [-1195, -986], [-1197, -985], [-1197, -984], [-1198, -984], [-1200, -982], [-1200, -979], [-1201, -976], [-1202, -974], [-1203, -971], [-1204, -968], [-1205, -962], [-1204, -961], [-1203, -959], [-1202, -957]]}, "center": {"198-258, T": [-1175, -959]}}, +{"id": 1852, "name": "Surprised Penguin Spray", "description": "The Surprised Penguin Spray was part of the Episode 3 Act 1 premium Valorant Battlepass.", "links": {}, "path": {"199-258, T": [[686, -640], [727, -640], [727, -642], [728, -642], [727, -642], [727, -643], [727, -644], [728, -644], [729, -645], [729, -648], [730, -649], [730, -650], [729, -651], [728, -652], [727, -652], [726, -653], [718, -653], [718, -655], [719, -655], [719, -657], [720, -658], [720, -660], [719, -661], [718, -663], [717, -665], [716, -666], [715, -667], [714, -668], [713, -669], [712, -669], [711, -670], [704, -670], [703, -669], [702, -669], [701, -668], [700, -668], [699, -667], [698, -666], [697, -665], [696, -664], [695, -663], [694, -661], [693, -659], [693, -657], [694, -656], [692, -653], [692, -648], [691, -646], [690, -645]]}, "center": {"199-258, T": [706, -652]}}, +{"id": 1853, "name": "BEI STAU: RETTUNGSGASSE", "description": "This sign says \"In case of traffic jam: emergency lane\". (Bei Stau: Rettungsgasse). In Germany, by law, a emergency lane must be formed when there is a traffic jam to allow emergency vehicles to get through.", "links": {"subreddit": ["StVo"]}, "path": {"196-258, T": [[-1346, -430], [-1292, -430], [-1292, -395], [-1346, -395]]}, "center": {"196-258, T": [-1319, -412]}}, +{"id": 1854, "name": "Cow Paula", "description": "Paula the cow is a brand of the German company Dr. Oetker. Paula is best known for the promotional videos for Paula Pudding, for which Paula the cow is the mascot.", "links": {"website": ["https://www.oetker.de/produkte/s/gekuehlte-desserts/paula"]}, "path": {"200-258, T": [[142, -922], [145, -933], [136, -929], [124, -932], [121, -934], [120, -938], [128, -943], [128, -945], [123, -947], [127, -949], [126, -954], [128, -951], [138, -953], [141, -952], [143, -954], [144, -951], [175, -953], [168, -956], [163, -957], [161, -959], [162, -961], [171, -959], [179, -953], [178, -951], [176, -946], [178, -938], [172, -925], [169, -926], [170, -930], [166, -929], [166, -924], [162, -924], [162, -934], [157, -933], [153, -921], [150, -921], [153, -932], [149, -932], [145, -923]]}, "center": {"200-258, T": [138, -942]}}, +{"id": 1855, "name": "Emotes and Profilepicture of Shlorox and Shlotrash", "description": "Shlorox is a german Twitch-Streamer.\nMainly famous for GTA V RP.\n\nAlmost every emote contains a raccoon as a mascot.", "links": {"website": ["https://www.twitch.tv/shlorox"], "subreddit": ["shlorox"], "discord": ["KqwtyXr"]}, "path": {"227-258, T": [[174, -703], [180, -709], [182, -709], [182, -717], [188, -722], [192, -722], [197, -717], [197, -709], [197, -707], [201, -707], [204, -706], [203, -628], [173, -629], [172, -677], [173, -702], [181, -708]]}, "center": {"227-258, T": [188, -675]}}, +{"id": 1856, "name": "The nether portal.", "description": "The nether portal is a refference to the minecraft nether portal. Reasons of it being built are unknown, probably to end off the bridge, being a cool addition.", "links": {"subreddit": ["minecraft"]}, "path": {"200-258, T": [[-1007, -11], [-1007, -14], [-1004, -14], [-1004, -11]]}, "center": {"200-258, T": [-1005, -12]}}, +{"id": 1857, "name": "Flag of the Romani", "description": "The flag of the Romani people, colloquially known as the Roma or Gypsies (considered a pejorative) are an Indo-Aryan ethnic group who lived a nomadic lifestyle in Europe. \nGenetic and Linguistic evidence suggests that they originated from modern-day Rajasthan, a state in India and spread out around 1000 CE.\nTheir population numbers from around 2-12 million. During the 2nd World War and the Holocaust, the Nazis committed systematic genocide against the Romani, with victims estimated to be up to 1.5 million\nMade by the Indian place community et al.", "author": "AnElongated_Muskrat", "links": {"website": ["https://en.wikipedia.org/wiki/Romani_people"]}, "path": {"200-258, T": [[-1194, -189], [-1194, -172], [-1164, -172], [-1164, -189]]}, "center": {"200-258, T": [-1179, -180]}}, +{"id": 1858, "name": "Stolas head", "description": "Stolas is a Goetic Prince of Hell and a major supporting character in Helluva Boss. He is the father of Octavia who is represented nearby.\n\nStolas is an anthropomorphic owl demon. He is tall and slender, with a white, heart-shaped facial disk and small black beak, resembling that of an owl.\n\nStolas gives the immediate impression of someone regal and ostentatious, as would be expected for a royal of his station. He dresses in clothing befitting his role, and his mansion is decadent, containing many large, elaborately framed portraits of himself and his small family.\n\nUnderneath these dignified trappings, however, Stolas is shown to be a flamboyant, dramatic, eccentric, and often giddy person. Someone who does not take his royal reputation as seriously as the people around him expect him to, and is prone to act quickly on his easily excitable emotions.", "links": {"subreddit": ["HelluvaBoss", "HazbinHotel", "placeStolas"], "discord": ["zbrP6msjT5"]}, "path": {"198-258, T": [[-1161, 195], [-1161, 192], [-1162, 192], [-1162, 190], [-1163, 190], [-1163, 189], [-1165, 188], [-1167, 188], [-1167, 187], [-1169, 187], [-1169, 186], [-1171, 186], [-1171, 185], [-1172, 185], [-1172, 180], [-1173, 180], [-1173, 178], [-1174, 178], [-1174, 173], [-1175, 173], [-1175, 172], [-1174, 172], [-1174, 171], [-1173, 171], [-1173, 172], [-1172, 172], [-1171, 172], [-1171, 167], [-1171, 166], [-1172, 166], [-1171, 166], [-1171, 165], [-1165, 165], [-1165, 164], [-1159, 164], [-1159, 163], [-1156, 163], [-1156, 164], [-1154, 164], [-1154, 165], [-1153, 165], [-1153, 166], [-1151, 166], [-1151, 165], [-1150, 165], [-1150, 164], [-1149, 164], [-1149, 163], [-1147, 163], [-1147, 170], [-1146, 170], [-1146, 171], [-1145, 171], [-1145, 172], [-1144, 172], [-1144, 174], [-1145, 174], [-1145, 175], [-1146, 175], [-1146, 179], [-1145, 179], [-1145, 181], [-1146, 181], [-1146, 182], [-1147, 182], [-1147, 183], [-1148, 183], [-1148, 184], [-1149, 184], [-1149, 185], [-1150, 185], [-1151, 185], [-1151, 186], [-1152, 186], [-1152, 189], [-1153, 189], [-1153, 190], [-1154, 190], [-1154, 195]]}, "center": {"198-258, T": [-1160, 177]}}, +{"id": 1859, "name": "Hungary map", "description": "A map of hungary to represent the country, built under the \"Akkor a kurva anyádat, spez!\" sign due to lack of space.", "links": {"subreddit": ["hungary"]}, "path": {"200-258, T": [[-1064, -7], [-1061, -7], [-1061, -8], [-1059, -8], [-1059, -9], [-1055, -9], [-1055, -10], [-1052, -10], [-1052, -11], [-1048, -11], [-1048, -12], [-1043, -12], [-1043, -13], [-1042, -13], [-1042, -15], [-1041, -15], [-1041, -17], [-1040, -17], [-1040, -21], [-1039, -21], [-1039, -23], [-1038, -23], [-1038, -24], [-1037, -24], [-1037, -25], [-1036, -25], [-1036, -26], [-1035, -26], [-1035, -27], [-1034, -27], [-1034, -28], [-1032, -28], [-1032, -30], [-1033, -30], [-1033, -31], [-1036, -31], [-1036, -32], [-1039, -32], [-1039, -33], [-1040, -33], [-1040, -34], [-1046, -34], [-1046, -32], [-1047, -32], [-1047, -31], [-1048, -31], [-1048, -30], [-1051, -30], [-1051, -31], [-1052, -31], [-1052, -30], [-1053, -30], [-1053, -29], [-1056, -29], [-1056, -27], [-1060, -27], [-1060, -26], [-1064, -26], [-1064, -27], [-1065, -27], [-1065, -28], [-1066, -28], [-1066, -29], [-1067, -29], [-1067, -28], [-1068, -28], [-1068, -26], [-1070, -26], [-1070, -27], [-1071, -27], [-1071, -28], [-1071, -26], [-1070, -26], [-1070, -25], [-1069, -24], [-1071, -22], [-1073, -20], [-1075, -18], [-1070, -13], [-1070, -11], [-1068, -11], [-1068, -10], [-1067, -9], [-1065, -8]]}, "center": {"200-258, T": [-1049, -21]}}, +{"id": 1860, "name": "Cult of the Lamb - The Lamb", "description": "A tiny pixel-art sprite of the Lamb themself, rested on the allied Austrian flag,", "links": {"website": ["https://www.cultofthelamb.com/"], "subreddit": ["CultOfTheLamb"], "discord": ["NHmc6Jpt"]}, "path": {"149-258, T": [[753, -351], [759, -351], [759, -352], [760, -352], [760, -353], [761, -353], [761, -356], [762, -356], [762, -357], [763, -357], [763, -359], [762, -359], [762, -360], [761, -360], [761, -362], [760, -362], [760, -364], [758, -364], [758, -366], [754, -366], [754, -364], [752, -364], [752, -362], [751, -362], [751, -360], [750, -360], [750, -359], [749, -359], [749, -357], [750, -357], [750, -356], [751, -356], [751, -353], [752, -353], [752, -352], [753, -352]]}, "center": {"149-258, T": [756, -358]}}, +{"id": 1861, "name": "Your Turn to Die", "description": "Your Turn to Die (YTTD) is a negotiation/adventure game by Nankidai about a deadly game, where the participants choose who dies.", "links": {"website": ["https://en.wikipedia.org/wiki/Kimi_ga_Shine_-Tas%C5%ABketsu_Death_Game-"], "subreddit": ["YTTD"], "discord": ["yttd"]}, "path": {"165-258, T": [[758, 859], [758, 839], [772, 839], [772, 859]]}, "center": {"165-258, T": [765, 849]}}, {"id": 1862, "name": "Ingress Resistance Fan Art", "description": "Ingress Resistance players, all over the world, unite to create a pixel art of their favorite game. \nDownload the app on your Appstore and join the Resistance for a funny AR Game", "links": {"website": ["https://www.join.blue"]}, "path": {"198": [[-1000, -368], [-1000, -332], [-947, -332], [-947, -368]]}, "center": {"198": [-973, -350]}}, -{"id": 1863, "name": "VC3 - Revolutionsbeginn", "description": "Embracing a spirit of independence and a desire for constructive dialogue, this community welcomes users who have experienced difficulties in r/placeDE's discord server or VC3, fostering an inclusive environment for open discussions.\n\nOur history:\nWe wanted to perpetuate ourselves as VC3 of r/placeDE and then our VC3 was deleted as suppression. We then decided to join the revolution and then also the German south flag.", "links": {"website": ["https://de.wikipedia.org/wiki/Deutsche_Revolution_1848/1849"], "subreddit": ["sprachkanal3"], "discord": ["RRXccGRncM"]}, "path": {"110-258": [[-280, -450], [-280, -460], [-310, -460], [-310, -450]]}, "center": {"110-258": [-295, -455]}}, -{"id": 1864, "name": "Cult of the Lamb - Text Flag", "description": "Small \"COTL\" (Cult of the Lamb) flag with the Red Crown as the 'O' - and the four corners color-coded to represent the four bishops of the Old Faith.", "links": {"website": ["https://www.cultofthelamb.com/"], "subreddit": ["CultOfTheLamb"], "discord": ["NHmc6Jpt"]}, "path": {"88-258": [[731, 414], [763, 414], [763, 425], [731, 425]]}, "center": {"88-258": [747, 420]}}, -{"id": 1865, "name": "Froggy chair", "description": "A collaboration with r/AnimalCrossing and r/PlaceNL", "links": {"subreddit": ["AnimalCrossing", "PlaceNL"]}, "path": {"200-258": [[-1061, -451], [-1060, -451], [-1060, -452], [-1059, -452], [-1059, -457], [-1057, -457], [-1057, -458], [-1054, -458], [-1054, -455], [-1053, -455], [-1053, -454], [-1052, -454], [-1052, -455], [-1051, -455], [-1051, -461], [-1052, -461], [-1052, -463], [-1053, -463], [-1053, -464], [-1054, -464], [-1054, -465], [-1055, -465], [-1055, -472], [-1056, -472], [-1056, -473], [-1057, -473], [-1057, -474], [-1058, -474], [-1058, -475], [-1058, -476], [-1062, -476], [-1063, -476], [-1063, -477], [-1064, -477], [-1064, -478], [-1065, -478], [-1065, -479], [-1065, -477], [-1066, -478], [-1066, -477], [-1067, -477], [-1068, -477], [-1068, -476], [-1069, -476], [-1069, -475], [-1070, -475], [-1070, -472], [-1069, -472], [-1069, -471], [-1068, -471], [-1068, -467], [-1067, -467], [-1067, -466], [-1066, -466], [-1065, -466], [-1065, -461], [-1066, -461], [-1066, -460], [-1067, -460], [-1067, -456], [-1066, -456], [-1066, -455], [-1065, -455], [-1065, -456], [-1064, -456], [-1064, -459], [-1063, -459], [-1062, -459], [-1062, -455], [-1062, -452], [-1061, -452]]}, "center": {"200-258": [-1062, -470]}}, -{"id": 1866, "name": "Telescope", "description": "The earliest existing record of a telescope was a 1608 patent submitted to the government in the Netherlands by Middelburg spectacle maker Hans Lipperhey for a refracting telescope.", "links": {"subreddit": ["PlaceNL"]}, "path": {"200-258": [[-1032, -458], [-1032, -452], [-1032, -451], [-1033, -451], [-1030, -451], [-1031, -451], [-1031, -458], [-1029, -458], [-1029, -457], [-1028, -457], [-1028, -456], [-1027, -456], [-1027, -454], [-1026, -454], [-1026, -452], [-1025, -452], [-1025, -451], [-1022, -451], [-1022, -452], [-1023, -452], [-1023, -453], [-1024, -453], [-1024, -455], [-1025, -455], [-1025, -457], [-1026, -457], [-1026, -459], [-1027, -459], [-1027, -460], [-1028, -460], [-1028, -461], [-1029, -461], [-1029, -463], [-1030, -463], [-1030, -474], [-1030, -475], [-1029, -475], [-1029, -476], [-1029, -477], [-1028, -477], [-1028, -478], [-1027, -478], [-1026, -478], [-1026, -477], [-1025, -477], [-1024, -477], [-1024, -476], [-1023, -476], [-1023, -477], [-1022, -477], [-1022, -479], [-1020, -479], [-1020, -480], [-1017, -480], [-1017, -481], [-1014, -481], [-1014, -482], [-1011, -482], [-1011, -481], [-1009, -481], [-1009, -482], [-1008, -482], [-1008, -483], [-1007, -483], [-1007, -490], [-1008, -490], [-1008, -491], [-1010, -491], [-1010, -490], [-1011, -490], [-1011, -489], [-1012, -489], [-1012, -488], [-1015, -488], [-1015, -487], [-1017, -487], [-1017, -486], [-1020, -486], [-1020, -485], [-1023, -485], [-1023, -486], [-1025, -486], [-1025, -485], [-1026, -485], [-1026, -483], [-1028, -483], [-1028, -482], [-1031, -482], [-1031, -481], [-1034, -481], [-1034, -480], [-1037, -480], [-1037, -479], [-1040, -479], [-1040, -478], [-1043, -478], [-1043, -477], [-1046, -477], [-1046, -476], [-1047, -476], [-1048, -476], [-1048, -477], [-1048, -475], [-1050, -475], [-1050, -473], [-1048, -474], [-1048, -472], [-1048, -473], [-1047, -473], [-1047, -474], [-1043, -474], [-1043, -475], [-1038, -475], [-1038, -476], [-1033, -476], [-1033, -475], [-1032, -475], [-1032, -464], [-1033, -464], [-1033, -463], [-1034, -463], [-1034, -461], [-1035, -461], [-1035, -460], [-1036, -460], [-1036, -459], [-1037, -459], [-1037, -457], [-1038, -457], [-1038, -455], [-1039, -455], [-1039, -453], [-1040, -453], [-1040, -452], [-1041, -452], [-1041, -451], [-1038, -451], [-1038, -452], [-1037, -452], [-1037, -454], [-1036, -454], [-1036, -455], [-1036, -456], [-1035, -456], [-1035, -457], [-1034, -457], [-1034, -458]]}, "center": {"200-258": [-1010, -485]}}, -{"id": 1868, "name": "WIFI symbol", "description": "One of WIFI's inventor's (Cees Links) was Dutch. Vic Hayes, inventor of the IEEE 802.11-standard is also Dutch", "links": {}, "path": {"147-258": [[490, -517], [503, -519], [513, -516], [507, -506], [516, -501], [510, -492], [500, -489], [488, -495], [488, -502], [498, -506]]}, "center": {"147-258": [503, -499]}}, +{"id": 1863, "name": "VC3 - Revolutionsbeginn", "description": "Embracing a spirit of independence and a desire for constructive dialogue, this community welcomes users who have experienced difficulties in r/placeDE's discord server or VC3, fostering an inclusive environment for open discussions.\n\nOur history:\nWe wanted to perpetuate ourselves as VC3 of r/placeDE and then our VC3 was deleted as suppression. We then decided to join the revolution and then also the German south flag.", "links": {"website": ["https://de.wikipedia.org/wiki/Deutsche_Revolution_1848/1849"], "subreddit": ["sprachkanal3"], "discord": ["RRXccGRncM"]}, "path": {"110-258, T": [[-280, -450], [-280, -460], [-310, -460], [-310, -450]]}, "center": {"110-258, T": [-295, -455]}}, +{"id": 1864, "name": "Cult of the Lamb - Text Flag", "description": "Small \"COTL\" (Cult of the Lamb) flag with the Red Crown as the 'O' - and the four corners color-coded to represent the four bishops of the Old Faith.", "links": {"website": ["https://www.cultofthelamb.com/"], "subreddit": ["CultOfTheLamb"], "discord": ["NHmc6Jpt"]}, "path": {"88-258, T": [[731, 414], [763, 414], [763, 425], [731, 425]]}, "center": {"88-258, T": [747, 420]}}, +{"id": 1865, "name": "Froggy chair", "description": "A collaboration with r/AnimalCrossing and r/PlaceNL", "links": {"subreddit": ["AnimalCrossing", "PlaceNL"]}, "path": {"200-258, T": [[-1061, -451], [-1060, -451], [-1060, -452], [-1059, -452], [-1059, -457], [-1057, -457], [-1057, -458], [-1054, -458], [-1054, -455], [-1053, -455], [-1053, -454], [-1052, -454], [-1052, -455], [-1051, -455], [-1051, -461], [-1052, -461], [-1052, -463], [-1053, -463], [-1053, -464], [-1054, -464], [-1054, -465], [-1055, -465], [-1055, -472], [-1056, -472], [-1056, -473], [-1057, -473], [-1057, -474], [-1058, -474], [-1058, -475], [-1058, -476], [-1062, -476], [-1063, -476], [-1063, -477], [-1064, -477], [-1064, -478], [-1065, -478], [-1065, -479], [-1065, -477], [-1066, -478], [-1066, -477], [-1067, -477], [-1068, -477], [-1068, -476], [-1069, -476], [-1069, -475], [-1070, -475], [-1070, -472], [-1069, -472], [-1069, -471], [-1068, -471], [-1068, -467], [-1067, -467], [-1067, -466], [-1066, -466], [-1065, -466], [-1065, -461], [-1066, -461], [-1066, -460], [-1067, -460], [-1067, -456], [-1066, -456], [-1066, -455], [-1065, -455], [-1065, -456], [-1064, -456], [-1064, -459], [-1063, -459], [-1062, -459], [-1062, -455], [-1062, -452], [-1061, -452]]}, "center": {"200-258, T": [-1062, -470]}}, +{"id": 1866, "name": "Telescope", "description": "The earliest existing record of a telescope was a 1608 patent submitted to the government in the Netherlands by Middelburg spectacle maker Hans Lipperhey for a refracting telescope.", "links": {"subreddit": ["PlaceNL"]}, "path": {"200-258, T": [[-1032, -458], [-1032, -452], [-1032, -451], [-1033, -451], [-1030, -451], [-1031, -451], [-1031, -458], [-1029, -458], [-1029, -457], [-1028, -457], [-1028, -456], [-1027, -456], [-1027, -454], [-1026, -454], [-1026, -452], [-1025, -452], [-1025, -451], [-1022, -451], [-1022, -452], [-1023, -452], [-1023, -453], [-1024, -453], [-1024, -455], [-1025, -455], [-1025, -457], [-1026, -457], [-1026, -459], [-1027, -459], [-1027, -460], [-1028, -460], [-1028, -461], [-1029, -461], [-1029, -463], [-1030, -463], [-1030, -474], [-1030, -475], [-1029, -475], [-1029, -476], [-1029, -477], [-1028, -477], [-1028, -478], [-1027, -478], [-1026, -478], [-1026, -477], [-1025, -477], [-1024, -477], [-1024, -476], [-1023, -476], [-1023, -477], [-1022, -477], [-1022, -479], [-1020, -479], [-1020, -480], [-1017, -480], [-1017, -481], [-1014, -481], [-1014, -482], [-1011, -482], [-1011, -481], [-1009, -481], [-1009, -482], [-1008, -482], [-1008, -483], [-1007, -483], [-1007, -490], [-1008, -490], [-1008, -491], [-1010, -491], [-1010, -490], [-1011, -490], [-1011, -489], [-1012, -489], [-1012, -488], [-1015, -488], [-1015, -487], [-1017, -487], [-1017, -486], [-1020, -486], [-1020, -485], [-1023, -485], [-1023, -486], [-1025, -486], [-1025, -485], [-1026, -485], [-1026, -483], [-1028, -483], [-1028, -482], [-1031, -482], [-1031, -481], [-1034, -481], [-1034, -480], [-1037, -480], [-1037, -479], [-1040, -479], [-1040, -478], [-1043, -478], [-1043, -477], [-1046, -477], [-1046, -476], [-1047, -476], [-1048, -476], [-1048, -477], [-1048, -475], [-1050, -475], [-1050, -473], [-1048, -474], [-1048, -472], [-1048, -473], [-1047, -473], [-1047, -474], [-1043, -474], [-1043, -475], [-1038, -475], [-1038, -476], [-1033, -476], [-1033, -475], [-1032, -475], [-1032, -464], [-1033, -464], [-1033, -463], [-1034, -463], [-1034, -461], [-1035, -461], [-1035, -460], [-1036, -460], [-1036, -459], [-1037, -459], [-1037, -457], [-1038, -457], [-1038, -455], [-1039, -455], [-1039, -453], [-1040, -453], [-1040, -452], [-1041, -452], [-1041, -451], [-1038, -451], [-1038, -452], [-1037, -452], [-1037, -454], [-1036, -454], [-1036, -455], [-1036, -456], [-1035, -456], [-1035, -457], [-1034, -457], [-1034, -458]]}, "center": {"200-258, T": [-1010, -485]}}, +{"id": 1868, "name": "WIFI symbol", "description": "One of WIFI's inventor's (Cees Links) was Dutch. Vic Hayes, inventor of the IEEE 802.11-standard is also Dutch", "links": {}, "path": {"147-258, T": [[490, -517], [503, -519], [513, -516], [507, -506], [516, -501], [510, -492], [500, -489], [488, -495], [488, -502], [498, -506]]}, "center": {"147-258, T": [503, -499]}}, {"id": 1869, "name": "Colorwar Logo", "description": "A minimalistic version of the Colorwar Logo, a Twitch game concept by Threedot, a BroChoc streamer.", "links": {"website": ["https://boloss.fr"]}, "path": {"167-214": [[-184, 590], [-176, 590], [-176, 598], [-184, 598]]}, "center": {"167-214": [-180, 594]}}, -{"id": 1870, "name": "suuN", "description": "suuN is a german Twitch-Streamer playing Guitar, Bass & Drums on Stream. The picture is showing his mascott 'Jake' from Adventure Time with a guitar.", "links": {"website": ["https://twitch.tv/suuN"], "discord": ["suuN"]}, "path": {"137-258": [[-764, -105], [-738, -105], [-738, -79], [-764, -79]]}, "center": {"137-258": [-751, -92]}}, -{"id": 1871, "name": "Dutch beers", "description": "From left to right. Top: Heineken, Klok, Hertog Jan, Bavaria. Bottom: Grolsch, Amstel", "links": {}, "path": {"115-258": [[769, -500], [849, -500], [848, -476], [853, -474], [852, -442], [837, -441], [833, -448], [831, -448], [830, -442], [813, -443], [813, -466], [770, -465]]}, "center": {"115-258": [828, -479]}}, -{"id": 1872, "name": "Monstercat", "description": "The mascot from the canadian music label Monstercat.\nThe tricolored bandana represents the three imprints of the record label: Monstercat Instinct, represented by green; Monstercat Uncaged, represented by purple; and Monstercat Silk, represented by yellow.\n\nThe yellow color of the bandana was originally orange but was changed to yellow because of the French flag's red color being similar to the color orange.\n\nThis pixelart was originally created by Flufmuni from the Monstercat discord server but it was resized and shaded by ItsAceNotHerobrineAS.\n\nAnd this pixelart is part of the Furry_IRL alliance.", "links": {"website": ["https://monstercat.com"], "subreddit": ["monstercat"], "discord": ["monstercat"]}, "path": {"202-258": [[-1047, 167], [-1044, 167], [-1044, 168], [-1042, 168], [-1042, 169], [-1041, 169], [-1040, 169], [-1040, 166], [-1040, 168], [-1039, 168], [-1039, 169], [-1037, 171], [-1037, 172], [-1036, 173], [-1036, 178], [-1037, 179], [-1038, 180], [-1041, 183], [-1044, 187], [-1048, 187], [-1051, 184], [-1051, 183], [-1056, 178], [-1057, 176], [-1057, 174], [-1055, 172], [-1055, 171], [-1054, 171], [-1054, 170], [-1053, 169], [-1052, 168], [-1052, 166], [-1052, 169], [-1051, 169], [-1050, 168], [-1049, 169], [-1048, 168], [-1048, 167]]}, "center": {"202-258": [-1046, 177]}}, -{"id": 1873, "name": "Dogecoin", "description": "Dogecoin is a digital cryptocurrency. Originally created as a parody of Bitcoin and based off the internet meme 'Doge', it soon garnered enough attention to become a legitimate cryptocurrency.", "links": {"website": ["https://dogecoin.com/"], "subreddit": ["dogecoin"]}, "path": {"171-252": [[-1002, -273], [-1002, -249], [-1005, -249], [-1005, -248], [-1007, -248], [-1012, -243], [-1012, -233], [-1008, -233], [-1007, -232], [-1007, -229], [-1009, -227], [-1008, -226], [-1006, -228], [-1004, -228], [-1003, -229], [-1002, -230], [-1000, -230], [-999, -229], [-998, -229], [-998, -226], [-996, -224], [-990, -224], [-989, -223], [-986, -223], [-985, -224], [-980, -224], [-979, -223], [-978, -223], [-977, -222], [-974, -222], [-973, -223], [-973, -225], [-958, -225], [-957, -225], [-957, -230], [-956, -231], [-956, -238], [-964, -230], [-965, -231], [-964, -233], [-964, -234], [-963, -235], [-963, -236], [-962, -237], [-962, -238], [-961, -239], [-961, -240], [-960, -241], [-960, -242], [-959, -243], [-959, -244], [-959, -250], [-958, -250], [-958, -252], [-957, -252], [-957, -253], [-956, -254], [-956, -255], [-955, -256], [-955, -258], [-956, -259], [-956, -261], [-955, -262], [-955, -263], [-953, -265], [-953, -266], [-951, -268], [-951, -269], [-950, -270], [-950, -271], [-949, -272], [-949, -273]]}, "center": {"171-252": [-981, -247]}}, -{"id": 1874, "name": "Bluetooth Symbol", "description": "Bluetooth was developed by the Swedish Ericsson, researched by a group lead by the Dutch Jaap Haartsen", "links": {}, "path": {"147-258": [[518, -513], [520, -517], [523, -518], [534, -518], [537, -517], [539, -513], [539, -498], [529, -494], [522, -494], [518, -497]]}, "center": {"147-258": [529, -506]}}, -{"id": 1875, "name": "Mudkip", "description": "Mudkip is a water type starter pokemon which was introduced in the third generation of pokemon, Ruby, Sapphire and Emerald.", "links": {"subreddit": ["MudkipPlace"]}, "path": {"200-258": [[-1113, -71], [-1113, -65], [-1110, -63], [-1110, -61], [-1108, -59], [-1107, -59], [-1106, -58], [-1105, -57], [-1103, -57], [-1102, -58], [-1097, -58], [-1097, -60], [-1098, -61], [-1098, -62], [-1097, -62], [-1096, -63], [-1095, -63], [-1094, -64], [-1093, -65], [-1093, -67], [-1094, -68], [-1095, -69], [-1096, -69], [-1097, -70], [-1098, -71], [-1098, -74], [-1099, -75], [-1100, -76], [-1102, -76], [-1103, -76], [-1104, -74], [-1105, -73], [-1112, -72]]}, "center": {"200-258": [-1104, -66]}}, -{"id": 1876, "name": "Niki Lauda/Lando Norris", "description": "In earlier stages of the canvas, this was a pixel art representation of Niki Lauda's 1975 championship-winning Ferrari 312T. However, by the end this was replaced by Lando Norris's 2023 McLaren MCL60 in its special edition chrome livery. He finished second at the 2023 Hungarian Grand Prix on the same weekend r/place 2023 took place.", "links": {"subreddit": ["italy", "austria", "hungary", "formula1"]}, "path": {"200-258": [[-622, -6], [-585, -6], [-585, -13], [-582, -16], [-582, -18], [-594, -19], [-598, -19], [-605, -19], [-609, -14], [-617, -13], [-622, -9]]}, "center": {"200-258": [-602, -12]}}, -{"id": 1877, "name": "Moffel en Piertje", "description": "Moffel en Piertje are two characters form the Dutch kids show Koekeloere (1992 - 2015)", "links": {}, "path": {"154-258": [[570, -522], [573, -528], [574, -539], [572, -542], [575, -544], [575, -549], [587, -548], [588, -545], [593, -551], [601, -551], [608, -547], [609, -542], [611, -533], [612, -521]]}, "center": {"154-258": [597, -535]}}, -{"id": 1878, "name": "Unmei Rp BETA", "description": "A french roleplay server that devoted itself to help the french flag", "links": {"website": ["https://sites.google.com/view/loreunmei/unmei?authuser=0"]}, "path": {"201-258": [[860, -519], [860, -502], [875, -502], [875, -506], [876, -506], [876, -513], [879, -513], [879, -519]]}, "center": {"201-258": [868, -510]}}, -{"id": 1879, "name": "Frikandel", "description": "A frikandel is a traditional snack originating from the Netherlands, a sort of minced-meat sausage of which the modern version was developed after World War II. The history of this snack in the Spanish Netherlands goes back to the 17th century.", "links": {}, "path": {"116-258": [[442, -451], [442, -454], [443, -458], [444, -467], [463, -467], [465, -471], [462, -474], [439, -474], [438, -478], [448, -480], [448, -484], [443, -486], [433, -485], [437, -474], [417, -475], [415, -473], [416, -467], [436, -467], [437, -453], [439, -451]]}, "center": {"116-258": [440, -469]}}, -{"id": 1880, "name": "Stroopwafel", "description": "A stroopwafel is a thin, round waffle cookie made from two layers of sweet baked dough held together by caramel filling. \n\nFirst made in the city of Gouda in South Holland, stroopwafels are a well-known Dutch treat popular throughout the Netherlands and abroad.", "links": {}, "path": {"152-258": [[-212, -550], [-199, -550], [-198, -549], [-194, -549], [-193, -548], [-192, -548], [-191, -547], [-189, -547], [-184, -542], [-184, -536], [-189, -531], [-190, -531], [-191, -530], [-193, -530], [-194, -529], [-198, -529], [-199, -528], [-212, -528], [-213, -529], [-217, -529], [-218, -530], [-220, -530], [-221, -531], [-222, -531], [-227, -536], [-227, -542], [-222, -547], [-221, -547], [-220, -548], [-218, -548], [-217, -549], [-213, -549]]}, "center": {"152-258": [-205, -539]}}, -{"id": 1881, "name": "Schoolbag hanging from Dutch flag", "description": "A Dutch tradition when graduating high school is to hang your school bag from a Dutch flag", "links": {}, "path": {"151-258": [[-179, -522], [-214, -528], [-215, -524], [-218, -524], [-220, -521], [-220, -517], [-224, -513], [-223, -508], [-217, -506], [-211, -506], [-193, -502], [-191, -520]]}, "center": {"151-258": [-203, -515]}}, -{"id": 1882, "name": "The Magnus Archives", "description": "The Magnus Archives is a podcast distributed by Rusty Quill, and licensed under a Creative Commons Non-Attribution Sharealike 4.0 International License.", "links": {"subreddit": ["TheMagnusArchives"]}, "path": {"200-258": [[-1159, 277], [-1113, 277], [-1113, 308], [-1159, 308]]}, "center": {"200-258": [-1136, 293]}}, -{"id": 1883, "name": "Sergio Perez with a F1 car", "description": "The RedBull F1 Car, with Sergio Perez as the driver, shows the Friendship between Mexico and Austria (instead of hearts).", "links": {"subreddit": ["placeaustria", "placemexico"]}, "path": {"201-258": [[-898, 609], [-921, 609], [-922, 591], [-901, 591], [-898, 585], [-884, 586], [-880, 594], [-876, 597], [-873, 594], [-878, 589], [-880, 584], [-877, 581], [-863, 581], [-862, 587], [-868, 594], [-865, 597], [-862, 601], [-857, 603], [-855, 608], [-895, 609]]}, "center": {"201-258": [-891, 597]}}, -{"id": 1884, "name": "billiard ball", "description": "Belgium produces around 80% of the worlds billiard balls", "links": {}, "path": {"189-258": [[-348, -292], [-345, -292], [-340, -287], [-340, -284], [-345, -279], [-348, -279], [-353, -284], [-353, -287]]}, "center": {"189-258": [-346, -285]}}, -{"id": 1885, "name": "MrWissen2go", "description": "MrWissen2go is a German YouTube Channel created by Mirko Drotschmann (author, journalist, and moderator). The Channel is known for its well-researched videos about politics, history, science, and many other topics. Popular videos, for example, are the German election videos, where he explains the plans of every party before the federal elections.", "links": {"website": ["https://www.youtube.com/@MrWissen2go"]}, "path": {"201-258": [[-667, -999], [-641, -999], [-640, -973], [-667, -972]]}, "center": {"201-258": [-654, -986]}}, -{"id": 1886, "name": "Pokemon evolution by Lattensepp (Papaplatte)", "description": "A beautiful pixelart created by the streamer Lattensepp (Papaplatte) showing the different Pokemon generations.\n\nIn an effort to get more viewers for his upcoming Pokemon randomizer soullink playthrough with another German Streamer (BastiGHG) he and his community created this artwork.\n\nPokemon games from left to right:\n1. Generation I - Kanto region (Red/Green/Blue/Yellow)\n2. Generation II - Johto region (Gold/Silver/Crystal)\n3. Generation III - Hoenn region (Ruby/Sapphire/Emerald)\n4. Generation III - Kanto region remakes (FireRed/LeafGreen)\n5. Generation IV - Sinnoh region (Diamond/Pearl/Platinum)\n6. Generation IV - Johto region remakes (HeartGold/SoulSilver)\n7. Generation V - Unova region (Black/White/Black 2/White 2)", "links": {"website": ["https://www.twitch.tv/papaplatte", "https://www.twitch.tv/bastighg", "https://www.pokemon.com/de", "https://de.wikipedia.org/wiki/Pok%C3%A9mon"], "subreddit": ["papaplatte"], "discord": ["7eJUtFgD"]}, "path": {"202-258": [[1000, -964], [1179, -964], [1179, -864], [1000, -864], [1000, -917]]}, "center": {"202-258": [1090, -914]}}, -{"id": 1887, "name": "Stephansdom", "description": "The Stephansdom is a huge cathedral and one of the most recognized symbols of Vienna, Austria. It finished construction in 1578 and stands at a height of 136.7 metres.", "links": {"website": ["https://en.wikipedia.org/wiki/St._Stephen%27s_Cathedral,_Vienna"]}, "path": {"202-258": [[725, -288], [726, -288], [766, -288], [764, -305], [762, -308], [761, -318], [760, -328], [757, -327], [757, -313], [754, -314], [752, -316], [751, -321], [749, -315], [746, -313], [745, -318], [743, -326], [741, -318], [741, -308], [739, -308], [739, -315], [738, -322], [737, -328], [736, -331], [735, -333], [734, -337], [733, -344], [730, -331], [728, -322], [727, -316], [725, -306]]}, "center": {"202-258": [752, -301]}}, -{"id": 1888, "name": "93palm froggy pal", "description": "a twitch emote from the streamer; 93palm", "links": {"subreddit": ["93palm"], "discord": ["tr682RXW"]}, "path": {"202-258": [[-347, -316], [-342, -315], [-340, -314], [-339, -306], [-338, -305], [-339, -304], [-339, -295], [-342, -293], [-351, -293], [-354, -295], [-354, -304], [-355, -305], [-354, -306], [-354, -308], [-352, -315]]}, "center": {"202-258": [-346, -304]}}, -{"id": 1889, "name": "A Dutch Flag", "description": "This is just a standard flag of the Netherlands.", "links": {"subreddit": ["Neatherlands"]}, "path": {"202-258": [[628, -550], [628, -521], [680, -521], [680, -550]]}, "center": {"202-258": [654, -535]}}, +{"id": 1870, "name": "suuN", "description": "suuN is a german Twitch-Streamer playing Guitar, Bass & Drums on Stream. The picture is showing his mascott 'Jake' from Adventure Time with a guitar.", "links": {"website": ["https://twitch.tv/suuN"], "discord": ["suuN"]}, "path": {"137-258, T": [[-764, -105], [-738, -105], [-738, -79], [-764, -79]]}, "center": {"137-258, T": [-751, -92]}}, +{"id": 1871, "name": "Dutch beers", "description": "From left to right. Top: Heineken, Klok, Hertog Jan, Bavaria. Bottom: Grolsch, Amstel", "links": {}, "path": {"115-258, T": [[769, -500], [849, -500], [848, -476], [853, -474], [852, -442], [837, -441], [833, -448], [831, -448], [830, -442], [813, -443], [813, -466], [770, -465]]}, "center": {"115-258, T": [828, -479]}}, +{"id": 1872, "name": "Monstercat", "description": "The mascot from the canadian music label Monstercat.\nThe tricolored bandana represents the three imprints of the record label: Monstercat Instinct, represented by green; Monstercat Uncaged, represented by purple; and Monstercat Silk, represented by yellow.\n\nThe yellow color of the bandana was originally orange but was changed to yellow because of the French flag's red color being similar to the color orange.\n\nThis pixelart was originally created by Flufmuni from the Monstercat discord server but it was resized and shaded by ItsAceNotHerobrineAS.\n\nAnd this pixelart is part of the Furry_IRL alliance.", "links": {"website": ["https://monstercat.com"], "subreddit": ["monstercat"], "discord": ["monstercat"]}, "path": {"202-258, T": [[-1047, 167], [-1044, 167], [-1044, 168], [-1042, 168], [-1042, 169], [-1041, 169], [-1040, 169], [-1040, 166], [-1040, 168], [-1039, 168], [-1039, 169], [-1037, 171], [-1037, 172], [-1036, 173], [-1036, 178], [-1037, 179], [-1038, 180], [-1041, 183], [-1044, 187], [-1048, 187], [-1051, 184], [-1051, 183], [-1056, 178], [-1057, 176], [-1057, 174], [-1055, 172], [-1055, 171], [-1054, 171], [-1054, 170], [-1053, 169], [-1052, 168], [-1052, 166], [-1052, 169], [-1051, 169], [-1050, 168], [-1049, 169], [-1048, 168], [-1048, 167]]}, "center": {"202-258, T": [-1046, 177]}}, +{"id": 1873, "name": "Dogecoin", "description": "Dogecoin is a digital cryptocurrency. Originally created as a parody of Bitcoin and based off the internet meme 'Doge', it soon garnered enough attention to become a legitimate cryptocurrency.", "links": {"website": ["https://dogecoin.com/"], "subreddit": ["dogecoin"]}, "path": {"171-252, T": [[-1002, -273], [-1002, -249], [-1005, -249], [-1005, -248], [-1007, -248], [-1012, -243], [-1012, -233], [-1008, -233], [-1007, -232], [-1007, -229], [-1009, -227], [-1008, -226], [-1006, -228], [-1004, -228], [-1003, -229], [-1002, -230], [-1000, -230], [-999, -229], [-998, -229], [-998, -226], [-996, -224], [-990, -224], [-989, -223], [-986, -223], [-985, -224], [-980, -224], [-979, -223], [-978, -223], [-977, -222], [-974, -222], [-973, -223], [-973, -225], [-958, -225], [-957, -225], [-957, -230], [-956, -231], [-956, -238], [-964, -230], [-965, -231], [-964, -233], [-964, -234], [-963, -235], [-963, -236], [-962, -237], [-962, -238], [-961, -239], [-961, -240], [-960, -241], [-960, -242], [-959, -243], [-959, -244], [-959, -250], [-958, -250], [-958, -252], [-957, -252], [-957, -253], [-956, -254], [-956, -255], [-955, -256], [-955, -258], [-956, -259], [-956, -261], [-955, -262], [-955, -263], [-953, -265], [-953, -266], [-951, -268], [-951, -269], [-950, -270], [-950, -271], [-949, -272], [-949, -273]]}, "center": {"171-252, T": [-981, -247]}}, +{"id": 1874, "name": "Bluetooth Symbol", "description": "Bluetooth was developed by the Swedish Ericsson, researched by a group lead by the Dutch Jaap Haartsen", "links": {}, "path": {"147-258, T": [[518, -513], [520, -517], [523, -518], [534, -518], [537, -517], [539, -513], [539, -498], [529, -494], [522, -494], [518, -497]]}, "center": {"147-258, T": [529, -506]}}, +{"id": 1875, "name": "Mudkip", "description": "Mudkip is a water type starter pokemon which was introduced in the third generation of pokemon, Ruby, Sapphire and Emerald.", "links": {"subreddit": ["MudkipPlace"]}, "path": {"200-258, T": [[-1113, -71], [-1113, -65], [-1110, -63], [-1110, -61], [-1108, -59], [-1107, -59], [-1106, -58], [-1105, -57], [-1103, -57], [-1102, -58], [-1097, -58], [-1097, -60], [-1098, -61], [-1098, -62], [-1097, -62], [-1096, -63], [-1095, -63], [-1094, -64], [-1093, -65], [-1093, -67], [-1094, -68], [-1095, -69], [-1096, -69], [-1097, -70], [-1098, -71], [-1098, -74], [-1099, -75], [-1100, -76], [-1102, -76], [-1103, -76], [-1104, -74], [-1105, -73], [-1112, -72]]}, "center": {"200-258, T": [-1104, -66]}}, +{"id": 1876, "name": "Niki Lauda/Lando Norris", "description": "In earlier stages of the canvas, this was a pixel art representation of Niki Lauda's 1975 championship-winning Ferrari 312T. However, by the end this was replaced by Lando Norris's 2023 McLaren MCL60 in its special edition chrome livery. He finished second at the 2023 Hungarian Grand Prix on the same weekend r/place 2023 took place.", "links": {"subreddit": ["italy", "austria", "hungary", "formula1"]}, "path": {"200-258, T": [[-622, -6], [-585, -6], [-585, -13], [-582, -16], [-582, -18], [-594, -19], [-598, -19], [-605, -19], [-609, -14], [-617, -13], [-622, -9]]}, "center": {"200-258, T": [-602, -12]}}, +{"id": 1877, "name": "Moffel en Piertje", "description": "Moffel en Piertje are two characters form the Dutch kids show Koekeloere (1992 - 2015)", "links": {}, "path": {"154-258, T": [[570, -522], [573, -528], [574, -539], [572, -542], [575, -544], [575, -549], [587, -548], [588, -545], [593, -551], [601, -551], [608, -547], [609, -542], [611, -533], [612, -521]]}, "center": {"154-258, T": [597, -535]}}, +{"id": 1878, "name": "Unmei Rp BETA", "description": "A french roleplay server that devoted itself to help the french flag", "links": {"website": ["https://sites.google.com/view/loreunmei/unmei?authuser=0"]}, "path": {"201-258, T": [[860, -519], [860, -502], [875, -502], [875, -506], [876, -506], [876, -513], [879, -513], [879, -519]]}, "center": {"201-258, T": [868, -510]}}, +{"id": 1879, "name": "Frikandel", "description": "A frikandel is a traditional snack originating from the Netherlands, a sort of minced-meat sausage of which the modern version was developed after World War II. The history of this snack in the Spanish Netherlands goes back to the 17th century.", "links": {}, "path": {"116-258, T": [[442, -451], [442, -454], [443, -458], [444, -467], [463, -467], [465, -471], [462, -474], [439, -474], [438, -478], [448, -480], [448, -484], [443, -486], [433, -485], [437, -474], [417, -475], [415, -473], [416, -467], [436, -467], [437, -453], [439, -451]]}, "center": {"116-258, T": [440, -469]}}, +{"id": 1880, "name": "Stroopwafel", "description": "A stroopwafel is a thin, round waffle cookie made from two layers of sweet baked dough held together by caramel filling. \n\nFirst made in the city of Gouda in South Holland, stroopwafels are a well-known Dutch treat popular throughout the Netherlands and abroad.", "links": {}, "path": {"152-258, T": [[-212, -550], [-199, -550], [-198, -549], [-194, -549], [-193, -548], [-192, -548], [-191, -547], [-189, -547], [-184, -542], [-184, -536], [-189, -531], [-190, -531], [-191, -530], [-193, -530], [-194, -529], [-198, -529], [-199, -528], [-212, -528], [-213, -529], [-217, -529], [-218, -530], [-220, -530], [-221, -531], [-222, -531], [-227, -536], [-227, -542], [-222, -547], [-221, -547], [-220, -548], [-218, -548], [-217, -549], [-213, -549]]}, "center": {"152-258, T": [-205, -539]}}, +{"id": 1881, "name": "Schoolbag hanging from Dutch flag", "description": "A Dutch tradition when graduating high school is to hang your school bag from a Dutch flag", "links": {}, "path": {"151-258, T": [[-179, -522], [-214, -528], [-215, -524], [-218, -524], [-220, -521], [-220, -517], [-224, -513], [-223, -508], [-217, -506], [-211, -506], [-193, -502], [-191, -520]]}, "center": {"151-258, T": [-203, -515]}}, +{"id": 1882, "name": "The Magnus Archives", "description": "The Magnus Archives is a podcast distributed by Rusty Quill, and licensed under a Creative Commons Non-Attribution Sharealike 4.0 International License.", "links": {"subreddit": ["TheMagnusArchives"]}, "path": {"200-258, T": [[-1159, 277], [-1113, 277], [-1113, 308], [-1159, 308]]}, "center": {"200-258, T": [-1136, 293]}}, +{"id": 1883, "name": "Sergio Perez with a F1 car", "description": "The RedBull F1 Car, with Sergio Perez as the driver, shows the Friendship between Mexico and Austria (instead of hearts).", "links": {"subreddit": ["placeaustria", "placemexico"]}, "path": {"201-258, T": [[-898, 609], [-921, 609], [-922, 591], [-901, 591], [-898, 585], [-884, 586], [-880, 594], [-876, 597], [-873, 594], [-878, 589], [-880, 584], [-877, 581], [-863, 581], [-862, 587], [-868, 594], [-865, 597], [-862, 601], [-857, 603], [-855, 608], [-895, 609]]}, "center": {"201-258, T": [-891, 597]}}, +{"id": 1884, "name": "billiard ball", "description": "Belgium produces around 80% of the worlds billiard balls", "links": {}, "path": {"189-258, T": [[-348, -292], [-345, -292], [-340, -287], [-340, -284], [-345, -279], [-348, -279], [-353, -284], [-353, -287]]}, "center": {"189-258, T": [-346, -285]}}, +{"id": 1885, "name": "MrWissen2go", "description": "MrWissen2go is a German YouTube Channel created by Mirko Drotschmann (author, journalist, and moderator). The Channel is known for its well-researched videos about politics, history, science, and many other topics. Popular videos, for example, are the German election videos, where he explains the plans of every party before the federal elections.", "links": {"website": ["https://www.youtube.com/@MrWissen2go"]}, "path": {"201-258, T": [[-667, -999], [-641, -999], [-640, -973], [-667, -972]]}, "center": {"201-258, T": [-654, -986]}}, +{"id": 1886, "name": "Pokemon evolution by Lattensepp (Papaplatte)", "description": "A beautiful pixelart created by the streamer Lattensepp (Papaplatte) showing the different Pokemon generations.\n\nIn an effort to get more viewers for his upcoming Pokemon randomizer soullink playthrough with another German Streamer (BastiGHG) he and his community created this artwork.\n\nPokemon games from left to right:\n1. Generation I - Kanto region (Red/Green/Blue/Yellow)\n2. Generation II - Johto region (Gold/Silver/Crystal)\n3. Generation III - Hoenn region (Ruby/Sapphire/Emerald)\n4. Generation III - Kanto region remakes (FireRed/LeafGreen)\n5. Generation IV - Sinnoh region (Diamond/Pearl/Platinum)\n6. Generation IV - Johto region remakes (HeartGold/SoulSilver)\n7. Generation V - Unova region (Black/White/Black 2/White 2)", "links": {"website": ["https://www.twitch.tv/papaplatte", "https://www.twitch.tv/bastighg", "https://www.pokemon.com/de", "https://de.wikipedia.org/wiki/Pok%C3%A9mon"], "subreddit": ["papaplatte"], "discord": ["7eJUtFgD"]}, "path": {"202-258, T": [[1000, -964], [1179, -964], [1179, -864], [1000, -864], [1000, -917]]}, "center": {"202-258, T": [1090, -914]}}, +{"id": 1887, "name": "Stephansdom", "description": "The Stephansdom is a huge cathedral and one of the most recognized symbols of Vienna, Austria. It finished construction in 1578 and stands at a height of 136.7 metres.", "links": {"website": ["https://en.wikipedia.org/wiki/St._Stephen%27s_Cathedral,_Vienna"]}, "path": {"202-258, T": [[725, -288], [726, -288], [766, -288], [764, -305], [762, -308], [761, -318], [760, -328], [757, -327], [757, -313], [754, -314], [752, -316], [751, -321], [749, -315], [746, -313], [745, -318], [743, -326], [741, -318], [741, -308], [739, -308], [739, -315], [738, -322], [737, -328], [736, -331], [735, -333], [734, -337], [733, -344], [730, -331], [728, -322], [727, -316], [725, -306]]}, "center": {"202-258, T": [752, -301]}}, +{"id": 1888, "name": "93palm froggy pal", "description": "a twitch emote from the streamer; 93palm", "links": {"subreddit": ["93palm"], "discord": ["tr682RXW"]}, "path": {"202-258, T": [[-347, -316], [-342, -315], [-340, -314], [-339, -306], [-338, -305], [-339, -304], [-339, -295], [-342, -293], [-351, -293], [-354, -295], [-354, -304], [-355, -305], [-354, -306], [-354, -308], [-352, -315]]}, "center": {"202-258, T": [-346, -304]}}, +{"id": 1889, "name": "A Dutch Flag", "description": "This is just a standard flag of the Netherlands.", "links": {"subreddit": ["Neatherlands"]}, "path": {"202-258, T": [[628, -550], [628, -521], [680, -521], [680, -550]]}, "center": {"202-258, T": [654, -535]}}, {"id": 1890, "name": "Anarchist Flag", "description": "This is the second iteration of the red & black flag of the anarchist faction.\n\nFor the majority of the time the flag existed in this position was dedicated to the CNT-FAI faction of the spanish civil war, opposing the Franco-Regime, but it was attacked multiple times by Right wing (or neo-) Libertarians", "links": {"subreddit": ["anarchy4everyone"]}, "path": {"42-68": [[-224, 463], [-224, 478], [-206, 478], [-206, 463]]}, "center": {"42-68": [-215, 471]}}, -{"id": 1892, "name": "Hypixel \"H\"", "description": "The iconic Hypixel logo placed on r/place next to Technoblade.", "links": {"website": ["https://hypixel.net"], "discord": ["dBGmSTVbB2"]}, "path": {"125-258": [[628, -209], [633, -214], [643, -219], [646, -219], [646, -196], [649, -196], [649, -221], [664, -223], [666, -221], [660, -207], [659, -178], [661, -176], [661, -167], [659, -166], [664, -162], [661, -159], [659, -159], [656, -162], [652, -159], [649, -159], [647, -160], [647, -164], [648, -164], [648, -187], [646, -187], [646, -155], [640, -155], [639, -159], [636, -163], [634, -167], [633, -171], [635, -173], [635, -203], [633, -206], [629, -209], [628, -209], [629, -209], [629, -210], [629, -208], [628, -209], [629, -209]]}, "center": {"125-258": [639, -209]}}, +{"id": 1892, "name": "Hypixel \"H\"", "description": "The iconic Hypixel logo placed on r/place next to Technoblade.", "links": {"website": ["https://hypixel.net"], "discord": ["dBGmSTVbB2"]}, "path": {"125-258, T": [[628, -209], [633, -214], [643, -219], [646, -219], [646, -196], [649, -196], [649, -221], [664, -223], [666, -221], [660, -207], [659, -178], [661, -176], [661, -167], [659, -166], [664, -162], [661, -159], [659, -159], [656, -162], [652, -159], [649, -159], [647, -160], [647, -164], [648, -164], [648, -187], [646, -187], [646, -155], [640, -155], [639, -159], [636, -163], [634, -167], [633, -171], [635, -173], [635, -203], [633, -206], [629, -209], [628, -209], [629, -209], [629, -210], [629, -208], [628, -209], [629, -209]]}, "center": {"125-258, T": [639, -209]}}, {"id": 1893, "name": "Blackpink Heart Logo", "description": "Blackpink is a South Korean girl group formed by YG Entertainment, consisting of members Jisoo, Jennie, Rosé, and Lisa.\n\nThe heart is made up of the letters 'B' and 'P', the initials of \"Black\" and \"Pink\", representing love for and by Blackpink.", "links": {"website": ["https://www.blackpinkmusic.com/", "https://www.blackpinklive.com/"], "subreddit": ["BlackPink", "BeulPing"], "discord": ["qmGHwGq"]}, "path": {"201": [[652, 954], [677, 954], [677, 966], [652, 966]]}, "center": {"201": [665, 960]}}, {"id": 1894, "name": "Slovenian linden leaf", "description": "A linden tree leaf (Slovenian: lipov list) is an important symbol of the Slovenian nation. The linden tree can be commonly found all over Slovenia and is present in many old Slovenian traditions. Its leaf became the national symbol during the national awakening in the 19th century. The leaf can also be found in the former Slovenian tourist campaign called \"Slovenija, moja dežela\" (Slovenia, my country).", "links": {"website": ["https://www.rtvslo.si/news-in-english/slovenia-revealed/how-a-tree-became-a-slovenian-symbol/356123", "https://www.youtube.com/watch?v=mluKmCj_XXw"], "subreddit": ["slovenia"], "discord": ["5ZKFcPhD"]}, "path": {"204-216": [[1454, -805], [1472, -805], [1472, -786], [1455, -786], [1454, -804], [1454, -786], [1454, -797]]}, "center": {"204-216": [1463, -796]}}, -{"id": 1895, "name": "Lunar Melody", "description": "Melody is a trans brony twitch streamer. Her chat originally created her during the second last expansion but was overrun by xQc's Charizard card while she slept. A single dedicated viewer rebuilt her here.", "links": {"website": ["http://www.twitch.tv/lunar_melody_"], "discord": ["ghXDNYhbPw"]}, "path": {"202-258": [[588, 814], [586, 814], [583, 814], [583, 810]]}, "center": {"202-258": [584, 813]}}, -{"id": 1896, "name": "ENS Rennes", "description": "ENS (Ecole Normale Supérieure) of Rennes is a french public school specialising in training their students to become researchers or higher education teachers in many different fields.", "links": {"website": ["https://international.ens-rennes.fr/"]}, "path": {"203-258": [[660, -358], [674, -358], [674, -348], [660, -348]]}, "center": {"203-258": [667, -353]}}, -{"id": 1897, "name": "Galo de Barcelos", "description": "Galo de Barcelos is a Portuguese national symbol. The rooster origins come from the town of Barcelos. The legend says that a dead rooster came back to life, proving the innocence of a man who had been falsely accused and sentenced to death.", "links": {"website": ["https://en.wikipedia.org/wiki/Rooster_of_Barcelos"], "discord": ["TugaPlace"]}, "path": {"203-258": [[295, 268], [299, 266], [307, 266], [314, 271], [314, 273], [313, 273], [313, 285], [311, 285], [309, 286], [308, 287], [308, 290], [309, 291], [309, 294], [311, 293], [312, 307], [311, 307], [311, 315], [310, 316], [311, 318], [312, 320], [315, 321], [316, 306], [318, 302], [344, 320], [344, 324], [342, 327], [338, 323], [338, 322], [332, 322], [331, 322], [329, 325], [328, 324], [323, 324], [323, 326], [322, 326], [322, 329], [322, 330], [324, 330], [323, 331], [323, 336], [320, 336], [320, 338], [316, 338], [316, 342], [314, 342], [314, 344], [313, 344], [313, 343], [313, 342], [313, 341], [313, 340], [313, 339], [312, 339], [311, 339], [311, 338], [311, 337], [310, 337], [310, 336], [309, 336], [308, 336], [308, 335], [301, 335], [297, 332], [296, 330], [297, 326], [302, 318], [303, 317], [303, 312], [300, 312], [296, 308], [296, 304], [299, 302], [292, 302], [292, 300], [298, 295], [299, 294], [296, 290], [293, 287], [290, 286], [288, 280], [290, 276], [292, 272], [296, 268]]}, "center": {"203-258": [301, 278]}}, -{"id": 1898, "name": "DoktorPaule Pixelart", "description": "This is a pixelart of a small German streamer \"DoktorPaule\" who defended the Guatemalan flag.\n\nThe resulting alliance develops into a friendship, in honor of which Paul was placed on the moon with a heart-shaped balloon in the national colors of Germany. \n\nTogether with the jointly written \"Guate\" in the bright colors of diversity, it represents the close bond between the two communities.", "links": {"website": ["https://www.twitch.tv/Doktorpaule"], "subreddit": ["doktorpaule"], "discord": ["cumpmsUa97"]}, "path": {"250-258": [[-1081, 366], [-940, 366], [-940, 395], [-1081, 396]]}, "center": {"250-258": [-1066, 381]}}, -{"id": 1899, "name": "Schleh", "description": "\"Schleh\" is the mascot of a german speaking streamer / youtuber named Ungespielt (Raik). This was pixelated in his honor because he is currently going through a difficult time and has paused his main channel for reasons and currently as a Vtuber on all as Raik in English is on the road.", "links": {"website": ["https://de.wikipedia.org/wiki/Simon_Unge", "https://www.twitch.tv/raik", "https://www.youtube.com/@ungespielt/videos"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"199-258": [[-372, -929], [-372, -931], [-373, -932], [-373, -933], [-373, -934], [-374, -935], [-375, -936], [-377, -936], [-377, -935], [-378, -935], [-378, -934], [-378, -933], [-385, -933], [-386, -932], [-386, -930], [-384, -930], [-383, -929], [-383, -923], [-384, -922], [-385, -922], [-385, -921], [-386, -920], [-387, -919], [-387, -918], [-385, -917], [-384, -917], [-383, -918], [-382, -919], [-380, -919], [-382, -918], [-383, -917], [-383, -916], [-383, -915], [-382, -914], [-380, -914], [-378, -914], [-377, -915], [-376, -916], [-376, -917], [-376, -915], [-374, -916], [-373, -915], [-372, -915], [-370, -915], [-369, -915], [-367, -915], [-367, -916], [-367, -920], [-368, -921], [-368, -922], [-369, -923], [-369, -924], [-370, -923], [-370, -924], [-370, -925], [-371, -925], [-371, -926], [-371, -927], [-371, -928], [-371, -929]]}, "center": {"199-258": [-377, -925]}}, -{"id": 1900, "name": "Wolki (Zeo)", "description": "Wolki is the little mascot of the german Youtuber Zeo who is known for his quality comedy videos and his full length Movies like \"Die Idee vom Glück\". \nZeo is also known for his active Community that he always involves into his content.", "links": {"website": ["https://www.youtube.com/@Zeo"]}, "path": {"202-258": [[-1175, -72], [-1142, -72], [-1142, -58], [-1174, -58], [-1171, -60]]}, "center": {"202-258": [-1158, -65]}}, -{"id": 1902, "name": "Faline San Axolotl", "description": "An Axolotl created by the Community of the Malaysian Youtuber 'Faline San'. An Axolotl was built as Faline often refers to his fans as 'Axolots'. The purple shield surrounding the Axolotl is a tribute to the streamer Rubius, who helped defend the Axolotl. The Mexican flag on top of the Axolotl is a tribute to r/placeMexico, who helped the community to move to the spot where it is now.", "links": {"subreddit": ["FalinePlace"], "discord": ["faline"]}, "path": {"57-65": [[855, 178], [850, 172], [849, 171], [849, 163], [848, 163], [847, 164], [843, 164], [843, 163], [843, 158], [841, 156], [844, 154], [845, 153], [845, 148], [850, 147], [850, 141], [861, 141], [861, 148], [865, 148], [867, 155], [867, 160], [867, 163], [863, 163], [863, 162], [860, 162], [860, 171]], "2-15": [[68, 417], [63, 409], [63, 403], [56, 404], [55, 396], [58, 389], [77, 389], [82, 397], [81, 404], [74, 404], [73, 410]], "66-258": [[842, 140], [842, 148], [841, 148], [841, 150], [840, 150], [840, 152], [839, 153], [839, 163], [840, 164], [840, 166], [842, 168], [842, 169], [845, 172], [845, 173], [847, 175], [847, 177], [848, 178], [848, 179], [850, 179], [850, 183], [851, 184], [851, 185], [853, 185], [853, 186], [856, 186], [856, 185], [859, 182], [863, 182], [863, 174], [864, 174], [864, 173], [867, 170], [868, 169], [868, 167], [869, 167], [869, 165], [870, 165], [870, 163], [871, 163], [871, 152], [870, 152], [870, 150], [869, 150], [869, 149], [868, 148], [867, 148], [867, 140], [861, 140], [861, 132], [849, 132], [849, 140]]}, "center": {"57-65": [854, 155], "2-15": [69, 397], "66-258": [855, 158]}}, -{"id": 1903, "name": "Volleyball", "description": "Ball representing both Volleyball and Beach-Volleyball, two popular sports in Brazil.\nThe men's national volleyball team has three gold medals at the Olympic Games, won three times the World Championship and nine times the World League, the women's national volleyball team is the current record holder of the World Grand Prix champion titles, having won it for the eleventh time in 2016 and are the gold medalists of the 2008 Summer Olympics in Beijing and 2012 Summer Olympics in London. The team also got a gold four times in the Pan American Games, and three other Olympic medals.", "links": {"discord": ["r-br", "cellbit"]}, "path": {"166-258": [[158, 561], [165, 561], [169, 563], [171, 565], [172, 567], [173, 568], [173, 570], [174, 571], [174, 576], [173, 578], [172, 579], [171, 581], [170, 582], [169, 583], [167, 584], [164, 585], [158, 585], [157, 584], [153, 583], [152, 580], [151, 578], [150, 576], [149, 575], [149, 574], [150, 573], [150, 568], [155, 563], [156, 562]]}, "center": {"166-258": [162, 573]}}, +{"id": 1895, "name": "Lunar Melody", "description": "Melody is a trans brony twitch streamer. Her chat originally created her during the second last expansion but was overrun by xQc's Charizard card while she slept. A single dedicated viewer rebuilt her here.", "links": {"website": ["http://www.twitch.tv/lunar_melody_"], "discord": ["ghXDNYhbPw"]}, "path": {"202-258, T": [[588, 814], [586, 814], [583, 814], [583, 810]]}, "center": {"202-258, T": [584, 813]}}, +{"id": 1896, "name": "ENS Rennes", "description": "ENS (Ecole Normale Supérieure) of Rennes is a french public school specialising in training their students to become researchers or higher education teachers in many different fields.", "links": {"website": ["https://international.ens-rennes.fr/"]}, "path": {"203-258, T": [[660, -358], [674, -358], [674, -348], [660, -348]]}, "center": {"203-258, T": [667, -353]}}, +{"id": 1897, "name": "Galo de Barcelos", "description": "Galo de Barcelos is a Portuguese national symbol. The rooster origins come from the town of Barcelos. The legend says that a dead rooster came back to life, proving the innocence of a man who had been falsely accused and sentenced to death.", "links": {"website": ["https://en.wikipedia.org/wiki/Rooster_of_Barcelos"], "discord": ["TugaPlace"]}, "path": {"203-258, T": [[295, 268], [299, 266], [307, 266], [314, 271], [314, 273], [313, 273], [313, 285], [311, 285], [309, 286], [308, 287], [308, 290], [309, 291], [309, 294], [311, 293], [312, 307], [311, 307], [311, 315], [310, 316], [311, 318], [312, 320], [315, 321], [316, 306], [318, 302], [344, 320], [344, 324], [342, 327], [338, 323], [338, 322], [332, 322], [331, 322], [329, 325], [328, 324], [323, 324], [323, 326], [322, 326], [322, 329], [322, 330], [324, 330], [323, 331], [323, 336], [320, 336], [320, 338], [316, 338], [316, 342], [314, 342], [314, 344], [313, 344], [313, 343], [313, 342], [313, 341], [313, 340], [313, 339], [312, 339], [311, 339], [311, 338], [311, 337], [310, 337], [310, 336], [309, 336], [308, 336], [308, 335], [301, 335], [297, 332], [296, 330], [297, 326], [302, 318], [303, 317], [303, 312], [300, 312], [296, 308], [296, 304], [299, 302], [292, 302], [292, 300], [298, 295], [299, 294], [296, 290], [293, 287], [290, 286], [288, 280], [290, 276], [292, 272], [296, 268]]}, "center": {"203-258, T": [301, 278]}}, +{"id": 1898, "name": "DoktorPaule Pixelart", "description": "This is a pixelart of a small German streamer \"DoktorPaule\" who defended the Guatemalan flag.\n\nThe resulting alliance develops into a friendship, in honor of which Paul was placed on the moon with a heart-shaped balloon in the national colors of Germany. \n\nTogether with the jointly written \"Guate\" in the bright colors of diversity, it represents the close bond between the two communities.", "links": {"website": ["https://www.twitch.tv/Doktorpaule"], "subreddit": ["doktorpaule"], "discord": ["cumpmsUa97"]}, "path": {"250-258, T": [[-1081, 366], [-940, 366], [-940, 395], [-1081, 396]]}, "center": {"250-258, T": [-1066, 381]}}, +{"id": 1899, "name": "Schleh", "description": "\"Schleh\" is the mascot of a german speaking streamer / youtuber named Ungespielt (Raik). This was pixelated in his honor because he is currently going through a difficult time and has paused his main channel for reasons and currently as a Vtuber on all as Raik in English is on the road.", "links": {"website": ["https://de.wikipedia.org/wiki/Simon_Unge", "https://www.twitch.tv/raik", "https://www.youtube.com/@ungespielt/videos"], "subreddit": ["placede"], "discord": ["placede"]}, "path": {"199-258, T": [[-372, -929], [-372, -931], [-373, -932], [-373, -933], [-373, -934], [-374, -935], [-375, -936], [-377, -936], [-377, -935], [-378, -935], [-378, -934], [-378, -933], [-385, -933], [-386, -932], [-386, -930], [-384, -930], [-383, -929], [-383, -923], [-384, -922], [-385, -922], [-385, -921], [-386, -920], [-387, -919], [-387, -918], [-385, -917], [-384, -917], [-383, -918], [-382, -919], [-380, -919], [-382, -918], [-383, -917], [-383, -916], [-383, -915], [-382, -914], [-380, -914], [-378, -914], [-377, -915], [-376, -916], [-376, -917], [-376, -915], [-374, -916], [-373, -915], [-372, -915], [-370, -915], [-369, -915], [-367, -915], [-367, -916], [-367, -920], [-368, -921], [-368, -922], [-369, -923], [-369, -924], [-370, -923], [-370, -924], [-370, -925], [-371, -925], [-371, -926], [-371, -927], [-371, -928], [-371, -929]]}, "center": {"199-258, T": [-377, -925]}}, +{"id": 1900, "name": "Wolki (Zeo)", "description": "Wolki is the little mascot of the german Youtuber Zeo who is known for his quality comedy videos and his full length Movies like \"Die Idee vom Glück\". \nZeo is also known for his active Community that he always involves into his content.", "links": {"website": ["https://www.youtube.com/@Zeo"]}, "path": {"202-258, T": [[-1175, -72], [-1142, -72], [-1142, -58], [-1174, -58], [-1171, -60]]}, "center": {"202-258, T": [-1158, -65]}}, +{"id": 1902, "name": "Faline San Axolotl", "description": "An Axolotl created by the Community of the Malaysian Youtuber 'Faline San'. An Axolotl was built as Faline often refers to his fans as 'Axolots'. The purple shield surrounding the Axolotl is a tribute to the streamer Rubius, who helped defend the Axolotl. The Mexican flag on top of the Axolotl is a tribute to r/placeMexico, who helped the community to move to the spot where it is now.", "links": {"subreddit": ["FalinePlace"], "discord": ["faline"]}, "path": {"57-65": [[855, 178], [850, 172], [849, 171], [849, 163], [848, 163], [847, 164], [843, 164], [843, 163], [843, 158], [841, 156], [844, 154], [845, 153], [845, 148], [850, 147], [850, 141], [861, 141], [861, 148], [865, 148], [867, 155], [867, 160], [867, 163], [863, 163], [863, 162], [860, 162], [860, 171]], "2-15": [[68, 417], [63, 409], [63, 403], [56, 404], [55, 396], [58, 389], [77, 389], [82, 397], [81, 404], [74, 404], [73, 410]], "66-258, T": [[842, 140], [842, 148], [841, 148], [841, 150], [840, 150], [840, 152], [839, 153], [839, 163], [840, 164], [840, 166], [842, 168], [842, 169], [845, 172], [845, 173], [847, 175], [847, 177], [848, 178], [848, 179], [850, 179], [850, 183], [851, 184], [851, 185], [853, 185], [853, 186], [856, 186], [856, 185], [859, 182], [863, 182], [863, 174], [864, 174], [864, 173], [867, 170], [868, 169], [868, 167], [869, 167], [869, 165], [870, 165], [870, 163], [871, 163], [871, 152], [870, 152], [870, 150], [869, 150], [869, 149], [868, 148], [867, 148], [867, 140], [861, 140], [861, 132], [849, 132], [849, 140]]}, "center": {"57-65": [854, 155], "2-15": [69, 397], "66-258, T": [855, 158]}}, +{"id": 1903, "name": "Volleyball", "description": "Ball representing both Volleyball and Beach-Volleyball, two popular sports in Brazil.\nThe men's national volleyball team has three gold medals at the Olympic Games, won three times the World Championship and nine times the World League, the women's national volleyball team is the current record holder of the World Grand Prix champion titles, having won it for the eleventh time in 2016 and are the gold medalists of the 2008 Summer Olympics in Beijing and 2012 Summer Olympics in London. The team also got a gold four times in the Pan American Games, and three other Olympic medals.", "links": {"discord": ["r-br", "cellbit"]}, "path": {"166-258, T": [[158, 561], [165, 561], [169, 563], [171, 565], [172, 567], [173, 568], [173, 570], [174, 571], [174, 576], [173, 578], [172, 579], [171, 581], [170, 582], [169, 583], [167, 584], [164, 585], [158, 585], [157, 584], [153, 583], [152, 580], [151, 578], [150, 576], [149, 575], [149, 574], [150, 573], [150, 568], [155, 563], [156, 562]]}, "center": {"166-258, T": [162, 573]}}, {"id": 1905, "name": "Blink BP-Hammer Logo", "description": "BLINK is the official fandom name for BLACKPINK. The word BLINK is a combination of the words \"bl\"ack and \"p\"ink, meaning the fans start with Blackpink and end with Blackpink.\n\nThe Hammer is the shape of the official Blackpink Lightstick.", "links": {"website": ["https://www.blackpinkmusic.com/", "https://www.blackpinklive.com/"], "subreddit": ["BlackPink", "BeulPing"], "discord": ["qmGHwGq"]}, "path": {"201": [[649, 946], [675, 946], [675, 953], [649, 953]]}, "center": {"201": [662, 950]}}, -{"id": 1906, "name": "Anarchist Flag", "description": "The third iteration of the red & black anarchist flag.\n\nAllying with r/yourturntodie and Witch Hat Atielier to the north, the Technoblade-memorial to the south and creating a safe haven for One-One and the Poly Planter, this is the position the flag occupied the longest.\n\nHowever, while the flag was here, the community experienced significant conflict with the Napoleonic-far-right faction as well as continued harassment from right wing libertarians and anticommunists. The Hammer-And-Sickle was especially difficult to maintain and on July 24th, redditors from the Napoleonic faction hacked a moderator's Discord account and proceeded to ban almost all of its members before the hacked account could be removed.\n\nThe community has slowly rebuilt their Discord from the ground up with the help of French socialists.\n\nThe discord link is omitted here for safety reasons.", "links": {"subreddit": ["anarchy4everyone"]}, "path": {"71-87": [[498, -309], [499, -288], [524, -288], [524, -309]], "93-258": [[499, -309], [499, -289], [501, -289], [502, -290], [503, -290], [504, -289], [505, -290], [506, -290], [507, -289], [509, -289], [510, -290], [511, -290], [512, -289], [513, -290], [514, -290], [515, -289], [517, -289], [518, -290], [519, -290], [520, -289], [521, -290], [522, -290], [523, -289], [525, -289], [526, -290], [527, -290], [528, -289], [529, -290], [530, -290], [531, -289], [532, -289], [533, -289], [534, -290], [535, -290], [536, -289], [537, -290], [538, -290], [539, -289], [541, -289], [542, -290], [543, -290], [544, -289], [545, -290], [546, -290], [547, -289], [549, -289], [550, -290], [551, -290], [552, -289], [553, -290], [555, -289], [557, -289], [558, -290], [558, -322], [558, -318], [557, -318], [556, -319], [555, -320], [554, -319], [553, -320], [552, -320], [552, -322], [536, -322], [536, -321], [535, -320], [534, -319], [532, -319], [531, -318], [530, -318], [530, -315], [529, -315], [528, -314], [527, -313], [526, -312], [525, -311], [524, -310], [524, -309]]}, "center": {"71-87": [511, -298], "93-258": [543, -306]}}, -{"id": 1907, "name": "Mr. StuhlTV", "description": "Mr. StuhlTV has been bearing the brunt of streamer Erik \"Gronkh\" Range for many years. He does this very well. If it weren't for this Gronkh, he alone would be the star of the channel.", "links": {"website": ["https://www.twitch.tv/gronkh"]}, "path": {"199-258": [[-1207, -911], [-1208, -914], [-1212, -919], [-1213, -924], [-1214, -927], [-1213, -935], [-1213, -941], [-1212, -941], [-1212, -948], [-1213, -950], [-1226, -959], [-1232, -965], [-1232, -968], [-1227, -969], [-1224, -969], [-1222, -971], [-1218, -971], [-1216, -972], [-1216, -974], [-1220, -975], [-1238, -976], [-1239, -982], [-1244, -984], [-1255, -985], [-1263, -982], [-1268, -979], [-1269, -971], [-1270, -966], [-1270, -960], [-1279, -948], [-1283, -940], [-1282, -938], [-1282, -935], [-1276, -926], [-1274, -925], [-1273, -910], [-1236, -910], [-1207, -910]]}, "center": {"199-258": [-1248, -940]}}, -{"id": 1908, "name": "UABO", "description": "\"UABO\" is a reference to a meme made by the famous portuguese streamer and youtuber wuant.", "links": {"website": ["https://twitch.tv/wuant", "https://twitter.com/wuantt", "https://www.youtube.com/@clipsdowuant", "https://www.youtube.com/@imWUANT", "https://www.youtube.com/@blueyesworld"], "discord": ["blueyes"]}, "path": {"202-258": [[350, 350], [354, 339], [359, 339], [362, 344], [363, 350], [357, 353], [353, 352], [352, 352]]}, "center": {"202-258": [357, 347]}}, -{"id": 1909, "name": "Lost Kittn", "description": "LostKittn, princess of the lost and keeper of the loot! She is a German Twitch streamer known for her cats and singing.", "links": {"website": ["https://www.twitch.tv/lostkittn"]}, "path": {"202-258": [[1104, -965], [1104, -1000], [1127, -1000], [1127, -965]]}, "center": {"202-258": [1116, -982]}}, -{"id": 1910, "name": "Kiel", "description": "Kiel is the capital of the German state of Schleswig-Holstein.", "links": {"website": ["https://de.wikipedia.org/wiki/Kiel"], "subreddit": ["placesuedflagge"], "discord": ["placede"]}, "path": {"122-258": [[-690, -69], [-674, -69], [-674, -65], [-690, -65]]}, "center": {"122-258": [-682, -67]}}, -{"id": 1911, "name": "Ritter Rost", "description": "Ritter Rost is the title of a series of children's books by Jörg Hilbert (text and illustration) and Felix Janosa (music). The volumes each contain the text of the story in prose, the illustrations drawn as comics and the complete notes and texts of all the songs. The narrator Fritz Stavenhagen leads through the plot and introduces the characters in their peculiarities. In addition, there are some animated videos in which well-known songs from the Ritter Rost CDs are drawn, for example: \"Paolo mit dem Pizzablitz\", \"So kocht die Oma von Ritter Rost\" and \"Blechdance\". These animated films are shown irregularly on \"Sendung mit der Maus\". Since 2013 there has also been an animated film with the characters from the series under the title Ritter Rost - Eisenhart und voll verbeult and in 2017 a second part was released with Ritter Rost 2 - Das Schrottkomplott.", "links": {}, "path": {"203-258": [[-1122, -550], [-1122, -558], [-1112, -552], [-1106, -565], [-1106, -583], [-1109, -583], [-1110, -577], [-1114, -576], [-1112, -569], [-1111, -559], [-1117, -562], [-1121, -562], [-1124, -565], [-1138, -564], [-1140, -572], [-1129, -577], [-1131, -593], [-1139, -600], [-1096, -600], [-1094, -610], [-1160, -609], [-1161, -606], [-1155, -600], [-1153, -593], [-1159, -589], [-1167, -590], [-1170, -584], [-1171, -580], [-1167, -576], [-1166, -570], [-1155, -567], [-1144, -568], [-1144, -564], [-1160, -562], [-1160, -558], [-1167, -551]]}, "center": {"203-258": [-1144, -584]}}, +{"id": 1906, "name": "Anarchist Flag", "description": "The third iteration of the red & black anarchist flag.\n\nAllying with r/yourturntodie and Witch Hat Atielier to the north, the Technoblade-memorial to the south and creating a safe haven for One-One and the Poly Planter, this is the position the flag occupied the longest.\n\nHowever, while the flag was here, the community experienced significant conflict with the Napoleonic-far-right faction as well as continued harassment from right wing libertarians and anticommunists. The Hammer-And-Sickle was especially difficult to maintain and on July 24th, redditors from the Napoleonic faction hacked a moderator's Discord account and proceeded to ban almost all of its members before the hacked account could be removed.\n\nThe community has slowly rebuilt their Discord from the ground up with the help of French socialists.\n\nThe discord link is omitted here for safety reasons.", "links": {"subreddit": ["anarchy4everyone"]}, "path": {"71-87": [[498, -309], [499, -288], [524, -288], [524, -309]], "93-258, T": [[499, -309], [499, -289], [501, -289], [502, -290], [503, -290], [504, -289], [505, -290], [506, -290], [507, -289], [509, -289], [510, -290], [511, -290], [512, -289], [513, -290], [514, -290], [515, -289], [517, -289], [518, -290], [519, -290], [520, -289], [521, -290], [522, -290], [523, -289], [525, -289], [526, -290], [527, -290], [528, -289], [529, -290], [530, -290], [531, -289], [532, -289], [533, -289], [534, -290], [535, -290], [536, -289], [537, -290], [538, -290], [539, -289], [541, -289], [542, -290], [543, -290], [544, -289], [545, -290], [546, -290], [547, -289], [549, -289], [550, -290], [551, -290], [552, -289], [553, -290], [555, -289], [557, -289], [558, -290], [558, -322], [558, -318], [557, -318], [556, -319], [555, -320], [554, -319], [553, -320], [552, -320], [552, -322], [536, -322], [536, -321], [535, -320], [534, -319], [532, -319], [531, -318], [530, -318], [530, -315], [529, -315], [528, -314], [527, -313], [526, -312], [525, -311], [524, -310], [524, -309]]}, "center": {"71-87": [511, -298], "93-258, T": [543, -306]}}, +{"id": 1907, "name": "Mr. StuhlTV", "description": "Mr. StuhlTV has been bearing the brunt of streamer Erik \"Gronkh\" Range for many years. He does this very well. If it weren't for this Gronkh, he alone would be the star of the channel.", "links": {"website": ["https://www.twitch.tv/gronkh"]}, "path": {"199-258, T": [[-1207, -911], [-1208, -914], [-1212, -919], [-1213, -924], [-1214, -927], [-1213, -935], [-1213, -941], [-1212, -941], [-1212, -948], [-1213, -950], [-1226, -959], [-1232, -965], [-1232, -968], [-1227, -969], [-1224, -969], [-1222, -971], [-1218, -971], [-1216, -972], [-1216, -974], [-1220, -975], [-1238, -976], [-1239, -982], [-1244, -984], [-1255, -985], [-1263, -982], [-1268, -979], [-1269, -971], [-1270, -966], [-1270, -960], [-1279, -948], [-1283, -940], [-1282, -938], [-1282, -935], [-1276, -926], [-1274, -925], [-1273, -910], [-1236, -910], [-1207, -910]]}, "center": {"199-258, T": [-1248, -940]}}, +{"id": 1908, "name": "UABO", "description": "\"UABO\" is a reference to a meme made by the famous portuguese streamer and youtuber wuant.", "links": {"website": ["https://twitch.tv/wuant", "https://twitter.com/wuantt", "https://www.youtube.com/@clipsdowuant", "https://www.youtube.com/@imWUANT", "https://www.youtube.com/@blueyesworld"], "discord": ["blueyes"]}, "path": {"202-258, T": [[350, 350], [354, 339], [359, 339], [362, 344], [363, 350], [357, 353], [353, 352], [352, 352]]}, "center": {"202-258, T": [357, 347]}}, +{"id": 1909, "name": "Lost Kittn", "description": "LostKittn, princess of the lost and keeper of the loot! She is a German Twitch streamer known for her cats and singing.", "links": {"website": ["https://www.twitch.tv/lostkittn"]}, "path": {"202-258, T": [[1104, -965], [1104, -1000], [1127, -1000], [1127, -965]]}, "center": {"202-258, T": [1116, -982]}}, +{"id": 1910, "name": "Kiel", "description": "Kiel is the capital of the German state of Schleswig-Holstein.", "links": {"website": ["https://de.wikipedia.org/wiki/Kiel"], "subreddit": ["placesuedflagge"], "discord": ["placede"]}, "path": {"122-258, T": [[-690, -69], [-674, -69], [-674, -65], [-690, -65]]}, "center": {"122-258, T": [-682, -67]}}, +{"id": 1911, "name": "Ritter Rost", "description": "Ritter Rost is the title of a series of children's books by Jörg Hilbert (text and illustration) and Felix Janosa (music). The volumes each contain the text of the story in prose, the illustrations drawn as comics and the complete notes and texts of all the songs. The narrator Fritz Stavenhagen leads through the plot and introduces the characters in their peculiarities. In addition, there are some animated videos in which well-known songs from the Ritter Rost CDs are drawn, for example: \"Paolo mit dem Pizzablitz\", \"So kocht die Oma von Ritter Rost\" and \"Blechdance\". These animated films are shown irregularly on \"Sendung mit der Maus\". Since 2013 there has also been an animated film with the characters from the series under the title Ritter Rost - Eisenhart und voll verbeult and in 2017 a second part was released with Ritter Rost 2 - Das Schrottkomplott.", "links": {}, "path": {"203-258, T": [[-1122, -550], [-1122, -558], [-1112, -552], [-1106, -565], [-1106, -583], [-1109, -583], [-1110, -577], [-1114, -576], [-1112, -569], [-1111, -559], [-1117, -562], [-1121, -562], [-1124, -565], [-1138, -564], [-1140, -572], [-1129, -577], [-1131, -593], [-1139, -600], [-1096, -600], [-1094, -610], [-1160, -609], [-1161, -606], [-1155, -600], [-1153, -593], [-1159, -589], [-1167, -590], [-1170, -584], [-1171, -580], [-1167, -576], [-1166, -570], [-1155, -567], [-1144, -568], [-1144, -564], [-1160, -562], [-1160, -558], [-1167, -551]]}, "center": {"203-258, T": [-1144, -584]}}, {"id": 1912, "name": "Blackpink Logo", "description": "Blackpink is a South Korean girl group formed by YG Entertainment, consisting of members Jisoo, Jennie, Rosé, and Lisa.", "links": {"website": ["https://www.blackpinkmusic.com/", "https://www.blackpinklive.com/"], "subreddit": ["BlackPink", "BeulPing"], "discord": ["qmGHwGq"]}, "path": {"201": [[659, 936], [703, 936], [703, 944], [659, 944]]}, "center": {"201": [681, 940]}}, -{"id": 1913, "name": "Unmei Rp BETA", "description": "A french community that greatly helped their nation.", "links": {}, "path": {"203-258": [[860, -518], [860, -502], [875, -502], [875, -513], [880, -513], [879, -519], [860, -519]]}, "center": {"203-258": [868, -510]}}, -{"id": 1914, "name": "Tribute to German-Brazilian friendship", "description": "Art created jointly by r/brasil and r/placeDE in order to celebrate the friendship between the two nations.", "links": {"website": ["http://gov.br", "https://www.bundesregierung.de/breg-en"], "subreddit": ["brasil", "placeDE"]}, "path": {"202-258": [[-733, -625], [-754, -610], [-749, -596], [-703, -596], [-696, -611], [-711, -624], [-736, -625]]}, "center": {"202-258": [-725, -610]}}, -{"id": 1915, "name": "MLM Flag", "description": "MLM or \"Man love Man\" flag, is a pride flag representing gay males.", "links": {}, "path": {"202-258": [[-1500, 786], [-1500, 781], [-1490, 781], [-1490, 786]]}, "center": {"202-258": [-1495, 784]}}, -{"id": 1916, "name": "JenNyan´s KEK Community", "description": "JenNyan is a german streamer and the \"Puschel\" represents her Community", "links": {"website": ["https://www.twitch.tv/jennyan"], "discord": ["jennyan"]}, "path": {"203-258": [[1128, -999], [1152, -999], [1153, -965], [1128, -965]]}, "center": {"203-258": [1140, -982]}}, -{"id": 1917, "name": "Delta Cafés", "description": "Delta Cafés is a Portuguese coffee company.", "links": {"website": ["https://deltacafes.com"], "subreddit": ["portugal"], "discord": ["TugaPlace"]}, "path": {"203-258": [[298, 352], [300, 336], [307, 336], [310, 339], [312, 345], [309, 347], [311, 350], [309, 352], [305, 352]]}, "center": {"203-258": [305, 343]}}, -{"id": 1918, "name": "Ayrton Senna's Helmet", "description": "Iconic helmet used by the brazilian F1 racer Ayrton Senna. During his incredible ten-year career, Ayrton Senna achieved 41 wins, 80 podiums, and 65 pole positions. Along with that, he managed to secure three World Drivers' Championships against some very tough rivals such as Alain Prost and Nigel Mansell", "links": {"website": ["https://senna.com/en/a-historia-do-desenho-do-capacete-de-ayrton-senna-o-mais-famoso-do-automobilismo/", "https://en.wikipedia.org/wiki/Ayrton_Senna"], "discord": ["r-br", "cellbit"]}, "path": {"170-258": [[198, 500], [197, 496], [196, 493], [195, 492], [192, 489], [191, 488], [184, 488], [181, 489], [181, 491], [179, 491], [179, 497], [179, 498], [180, 498], [180, 499], [181, 499], [181, 500]]}, "center": {"170-258": [189, 494]}}, -{"id": 1919, "name": "Lesbian Flag", "description": "A pride flag representing lesbians.", "links": {}, "path": {"202-258": [[-1500, 791], [-1500, 787], [-1490, 787], [-1490, 791]]}, "center": {"202-258": [-1495, 789]}}, +{"id": 1913, "name": "Unmei Rp BETA", "description": "A french community that greatly helped their nation.", "links": {}, "path": {"203-258, T": [[860, -518], [860, -502], [875, -502], [875, -513], [880, -513], [879, -519], [860, -519]]}, "center": {"203-258, T": [868, -510]}}, +{"id": 1914, "name": "Tribute to German-Brazilian friendship", "description": "Art created jointly by r/brasil and r/placeDE in order to celebrate the friendship between the two nations.", "links": {"website": ["http://gov.br", "https://www.bundesregierung.de/breg-en"], "subreddit": ["brasil", "placeDE"]}, "path": {"202-258, T": [[-733, -625], [-754, -610], [-749, -596], [-703, -596], [-696, -611], [-711, -624], [-736, -625]]}, "center": {"202-258, T": [-725, -610]}}, +{"id": 1915, "name": "MLM Flag", "description": "MLM or \"Man love Man\" flag, is a pride flag representing gay males.", "links": {}, "path": {"202-258, T": [[-1500, 786], [-1500, 781], [-1490, 781], [-1490, 786]]}, "center": {"202-258, T": [-1495, 784]}}, +{"id": 1916, "name": "JenNyan´s KEK Community", "description": "JenNyan is a german streamer and the \"Puschel\" represents her Community", "links": {"website": ["https://www.twitch.tv/jennyan"], "discord": ["jennyan"]}, "path": {"203-258, T": [[1128, -999], [1152, -999], [1153, -965], [1128, -965]]}, "center": {"203-258, T": [1140, -982]}}, +{"id": 1917, "name": "Delta Cafés", "description": "Delta Cafés is a Portuguese coffee company.", "links": {"website": ["https://deltacafes.com"], "subreddit": ["portugal"], "discord": ["TugaPlace"]}, "path": {"203-258, T": [[298, 352], [300, 336], [307, 336], [310, 339], [312, 345], [309, 347], [311, 350], [309, 352], [305, 352]]}, "center": {"203-258, T": [305, 343]}}, +{"id": 1918, "name": "Ayrton Senna's Helmet", "description": "Iconic helmet used by the brazilian F1 racer Ayrton Senna. During his incredible ten-year career, Ayrton Senna achieved 41 wins, 80 podiums, and 65 pole positions. Along with that, he managed to secure three World Drivers' Championships against some very tough rivals such as Alain Prost and Nigel Mansell", "links": {"website": ["https://senna.com/en/a-historia-do-desenho-do-capacete-de-ayrton-senna-o-mais-famoso-do-automobilismo/", "https://en.wikipedia.org/wiki/Ayrton_Senna"], "discord": ["r-br", "cellbit"]}, "path": {"170-258, T": [[198, 500], [197, 496], [196, 493], [195, 492], [192, 489], [191, 488], [184, 488], [181, 489], [181, 491], [179, 491], [179, 497], [179, 498], [180, 498], [180, 499], [181, 499], [181, 500]]}, "center": {"170-258, T": [189, 494]}}, +{"id": 1919, "name": "Lesbian Flag", "description": "A pride flag representing lesbians.", "links": {}, "path": {"202-258, T": [[-1500, 791], [-1500, 787], [-1490, 787], [-1490, 791]]}, "center": {"202-258, T": [-1495, 789]}}, {"id": 1921, "name": "Rising Phoenix Shego", "description": "After the fall of the first shego due to the French.the community decided to migrate several different places all of em turning into failure demoralized the community began to stagger but right when they were about to give up Major Civ suggested a location and created the design of the current shigo which lit a fire in the hearts of all members to keep going even through the grief they've felt soon it became a message a sign saying screw the mods.never forget the struggle we went through to make this happen", "links": {"website": ["https://en.wikipedia.org/wiki/Shego"], "subreddit": ["Shego"]}, "path": {"203-221": [[-1382, -750], [-1390, -747], [-1393, -743], [-1393, -738], [-1394, -737], [-1394, -732], [-1395, -732], [-1395, -727], [-1399, -723], [-1399, -720], [-1395, -715], [-1395, -714], [-1391, -714], [-1390, -712], [-1396, -706], [-1397, -705], [-1397, -702], [-1398, -698], [-1399, -694], [-1400, -692], [-1401, -691], [-1400, -688], [-1397, -688], [-1396, -690], [-1395, -692], [-1394, -693], [-1393, -694], [-1392, -695], [-1391, -698], [-1390, -699], [-1391, -700], [-1390, -701], [-1389, -702], [-1387, -704], [-1387, -701], [-1387, -699], [-1386, -699], [-1385, -698], [-1387, -697], [-1387, -696], [-1387, -694], [-1386, -694], [-1387, -693], [-1387, -692], [-1387, -691], [-1387, -689], [-1386, -689], [-1386, -687], [-1378, -687], [-1377, -687], [-1377, -690], [-1378, -690], [-1379, -691], [-1381, -692], [-1382, -693], [-1382, -696], [-1381, -697], [-1379, -710], [-1377, -713], [-1378, -715], [-1378, -716], [-1376, -717], [-1375, -717], [-1374, -718], [-1373, -719], [-1372, -720], [-1371, -722], [-1372, -723], [-1372, -724], [-1373, -726], [-1374, -727], [-1375, -728], [-1375, -731], [-1376, -732], [-1376, -734], [-1376, -735], [-1377, -735], [-1377, -738], [-1377, -739], [-1378, -739], [-1378, -743], [-1378, -745]]}, "center": {"203-221": [-1385, -724]}}, -{"id": 1922, "name": "The Heeler House", "description": "The House of the Heeler Family from the Australian children's show \"Bluey.\" It's based on a neighborhood in Queensland, Australia.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Heeler_Family%27s_House"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"204-258": [[-177, 243], [-177, 278], [-167, 278], [-167, 243], [-176, 243]]}, "center": {"204-258": [-172, 261]}}, -{"id": 1923, "name": "H3 Podcast", "description": "The H3 Podcast is a long-form internet comedy/commentary series, hosted by Ethan Klein.", "links": {"website": ["https://en.wikipedia.org/wiki/H3_Podcast", "https://www.youtube.com/user/h3h3Productions"]}, "path": {"146-258": [[176, 257], [201, 257], [201, 281], [176, 282]]}, "center": {"146-258": [188, 269]}}, -{"id": 1924, "name": "WatermelonPandaPantsuCrew", "description": "Sukidingels is a german VTuber streaming on Twitch. Her Mascott is a Panda and she likes Watermelons.", "links": {"website": ["https://www.twitch.tv/sukidingels"]}, "path": {"204-258": [[1153, -999], [1153, -964], [1179, -964], [1179, -999]]}, "center": {"204-258": [1166, -981]}}, -{"id": 1925, "name": "Fuck Spez", "description": "u/spez, real name Steve Huffman, is the CEO of Reddit. This \"Fuck Spez\" message was written in protest of the recent pricing changes to the Reddit API that have killed off many third-party Reddit apps, along with Spez's controversial responses to user outcry.\n\nThis is a collaboration led by the Fuck Spez Coalition with the help and cooperation of many large r/place communities, including Australia, Canada, Costa Rica, France, Germany, India, Italy, Mexico, My Little Pony, Netherlands, New Zealand, r/PlacePride, Technoblade, r/transplace, and Venezuela.", "links": {"website": ["https://en.wikipedia.org/wiki/Steve_Huffman"], "subreddit": ["fuckspezplace", "IndiaPlace", "italy", "mylittlepony", "NewZealand", "placeAUS", "placecanada", "placeDE", "placeFR", "PlaceMexico", "PlaceNL", "PlacePride", "Technoblade", "Ticos", "transplace", "vzla"], "discord": ["fuckspez", "indiaplace", "yvfHmyVUs2", "bronyplace", "nz", "ryCYFN5qz9", "placecanada", "placede", "placeFR", "xRWcUBGuvn", "PlaceNL", "MUMhGkK4un", "TransPlace", "Ticord", "technoblade", "mtFVyFYMbK"]}, "path": {"202-204": [[1036, -210], [1137, -210], [1137, -179], [1242, -179], [1244, -165], [1254, -172], [1273, -180], [1280, -182], [1304, -182], [1332, -168], [1336, -161], [1335, -209], [1407, -210], [1407, -171], [1420, -179], [1461, -179], [1439, -108], [1466, -12], [1336, -12], [1335, -26], [1328, -19], [1321, -15], [1306, -11], [1294, -9], [1280, -9], [1258, -15], [1245, -26], [1245, -12], [1176, -12], [1168, -10], [1154, -10], [1136, -17], [1123, -31], [1119, -51], [1119, -82], [1108, -82], [1108, -5], [1113, -4], [1123, 3], [1129, 8], [1136, 23], [1195, 23], [1199, 22], [1209, 20], [1221, 21], [1225, 22], [1236, 29], [1246, 41], [1257, 30], [1274, 23], [1292, 20], [1310, 21], [1328, 26], [1343, 35], [1343, 23], [1441, 23], [1441, 69], [1418, 128], [1423, 126], [1483, 127], [1483, 190], [1340, 190], [1340, 182], [1338, 182], [1320, 190], [1301, 192], [1283, 191], [1263, 184], [1248, 172], [1227, 190], [1214, 193], [1198, 192], [1198, 209], [1126, 209], [1126, 180], [1101, 191], [1089, 194], [1070, 194], [1054, 190], [1033, 180], [1020, 164], [1015, 141], [1015, 101], [1033, 101], [1019, 81], [1014, 63], [1015, 29], [1021, 14], [1031, 2], [1051, -8], [1064, -10], [1036, -11]], "205-258": [[1466, -12], [1336, -12], [1335, -26], [1328, -19], [1321, -15], [1306, -11], [1294, -9], [1280, -9], [1258, -15], [1245, -26], [1245, -12], [1176, -12], [1168, -10], [1154, -10], [1136, -17], [1123, -31], [1119, -51], [1119, -82], [1108, -82], [1108, -5], [1113, -4], [1123, 3], [1129, 8], [1136, 23], [1195, 23], [1199, 22], [1209, 20], [1221, 21], [1225, 22], [1236, 29], [1246, 41], [1257, 30], [1274, 23], [1292, 20], [1310, 21], [1328, 26], [1343, 35], [1343, 23], [1441, 23], [1441, 69], [1418, 128], [1423, 126], [1483, 127], [1483, 190], [1340, 190], [1340, 182], [1338, 182], [1320, 190], [1301, 192], [1283, 191], [1263, 184], [1248, 172], [1227, 190], [1214, 193], [1198, 192], [1198, 209], [1126, 209], [1126, 180], [1101, 191], [1089, 194], [1070, 194], [1054, 190], [1033, 180], [1020, 164], [1015, 141], [1015, 101], [1033, 101], [1019, 81], [1014, 63], [1015, 29], [1021, 14], [1031, 2], [1051, -8], [1064, -10], [1036, -11], [1036, -210], [1137, -210], [1137, -179], [1208, -180], [1208, -178], [1462, -177], [1462, -173], [1440, -109]]}, "center": {"202-204": [1176, 109], "205-258": [1176, 109]}}, +{"id": 1922, "name": "The Heeler House", "description": "The House of the Heeler Family from the Australian children's show \"Bluey.\" It's based on a neighborhood in Queensland, Australia.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Heeler_Family%27s_House"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"204-258, T": [[-177, 243], [-177, 278], [-167, 278], [-167, 243], [-176, 243]]}, "center": {"204-258, T": [-172, 261]}}, +{"id": 1923, "name": "H3 Podcast", "description": "The H3 Podcast is a long-form internet comedy/commentary series, hosted by Ethan Klein.", "links": {"website": ["https://en.wikipedia.org/wiki/H3_Podcast", "https://www.youtube.com/user/h3h3Productions"]}, "path": {"146-258, T": [[176, 257], [201, 257], [201, 281], [176, 282]]}, "center": {"146-258, T": [188, 269]}}, +{"id": 1924, "name": "WatermelonPandaPantsuCrew", "description": "Sukidingels is a german VTuber streaming on Twitch. Her Mascott is a Panda and she likes Watermelons.", "links": {"website": ["https://www.twitch.tv/sukidingels"]}, "path": {"204-258, T": [[1153, -999], [1153, -964], [1179, -964], [1179, -999]]}, "center": {"204-258, T": [1166, -981]}}, +{"id": 1925, "name": "Fuck Spez", "description": "u/spez, real name Steve Huffman, is the CEO of Reddit. This \"Fuck Spez\" message was written in protest of the recent pricing changes to the Reddit API that have killed off many third-party Reddit apps, along with Spez's controversial responses to user outcry.\n\nThis is a collaboration led by the Fuck Spez Coalition with the help and cooperation of many large r/place communities, including Australia, Canada, Costa Rica, France, Germany, India, Italy, Mexico, My Little Pony, Netherlands, New Zealand, r/PlacePride, Technoblade, r/transplace, and Venezuela.", "links": {"website": ["https://en.wikipedia.org/wiki/Steve_Huffman"], "subreddit": ["fuckspezplace", "IndiaPlace", "italy", "mylittlepony", "NewZealand", "placeAUS", "placecanada", "placeDE", "placeFR", "PlaceMexico", "PlaceNL", "PlacePride", "Technoblade", "Ticos", "transplace", "vzla"], "discord": ["fuckspez", "indiaplace", "yvfHmyVUs2", "bronyplace", "nz", "ryCYFN5qz9", "placecanada", "placede", "placeFR", "xRWcUBGuvn", "PlaceNL", "MUMhGkK4un", "TransPlace", "Ticord", "technoblade", "mtFVyFYMbK"]}, "path": {"202-204": [[1036, -210], [1137, -210], [1137, -179], [1242, -179], [1244, -165], [1254, -172], [1273, -180], [1280, -182], [1304, -182], [1332, -168], [1336, -161], [1335, -209], [1407, -210], [1407, -171], [1420, -179], [1461, -179], [1439, -108], [1466, -12], [1336, -12], [1335, -26], [1328, -19], [1321, -15], [1306, -11], [1294, -9], [1280, -9], [1258, -15], [1245, -26], [1245, -12], [1176, -12], [1168, -10], [1154, -10], [1136, -17], [1123, -31], [1119, -51], [1119, -82], [1108, -82], [1108, -5], [1113, -4], [1123, 3], [1129, 8], [1136, 23], [1195, 23], [1199, 22], [1209, 20], [1221, 21], [1225, 22], [1236, 29], [1246, 41], [1257, 30], [1274, 23], [1292, 20], [1310, 21], [1328, 26], [1343, 35], [1343, 23], [1441, 23], [1441, 69], [1418, 128], [1423, 126], [1483, 127], [1483, 190], [1340, 190], [1340, 182], [1338, 182], [1320, 190], [1301, 192], [1283, 191], [1263, 184], [1248, 172], [1227, 190], [1214, 193], [1198, 192], [1198, 209], [1126, 209], [1126, 180], [1101, 191], [1089, 194], [1070, 194], [1054, 190], [1033, 180], [1020, 164], [1015, 141], [1015, 101], [1033, 101], [1019, 81], [1014, 63], [1015, 29], [1021, 14], [1031, 2], [1051, -8], [1064, -10], [1036, -11]], "205-258, T": [[1466, -12], [1336, -12], [1335, -26], [1328, -19], [1321, -15], [1306, -11], [1294, -9], [1280, -9], [1258, -15], [1245, -26], [1245, -12], [1176, -12], [1168, -10], [1154, -10], [1136, -17], [1123, -31], [1119, -51], [1119, -82], [1108, -82], [1108, -5], [1113, -4], [1123, 3], [1129, 8], [1136, 23], [1195, 23], [1199, 22], [1209, 20], [1221, 21], [1225, 22], [1236, 29], [1246, 41], [1257, 30], [1274, 23], [1292, 20], [1310, 21], [1328, 26], [1343, 35], [1343, 23], [1441, 23], [1441, 69], [1418, 128], [1423, 126], [1483, 127], [1483, 190], [1340, 190], [1340, 182], [1338, 182], [1320, 190], [1301, 192], [1283, 191], [1263, 184], [1248, 172], [1227, 190], [1214, 193], [1198, 192], [1198, 209], [1126, 209], [1126, 180], [1101, 191], [1089, 194], [1070, 194], [1054, 190], [1033, 180], [1020, 164], [1015, 141], [1015, 101], [1033, 101], [1019, 81], [1014, 63], [1015, 29], [1021, 14], [1031, 2], [1051, -8], [1064, -10], [1036, -11], [1036, -210], [1137, -210], [1137, -179], [1208, -180], [1208, -178], [1462, -177], [1462, -173], [1440, -109]]}, "center": {"202-204": [1176, 109], "205-258, T": [1176, 109]}}, {"id": 1926, "name": "Les Cowboys Fringants", "description": "Les Cowboys Fringants are a Quebec folk rock music group formed in 1995 in Repentigny, Quebec. The French word fringant can be translated as \"dashing\", or \"frisky\".\n\nAlso, the (Heart)Karl is written in support of the lead signer, Karl Tremblay, who currently battles against prostate cancer.", "links": {"website": ["https://en.wikipedia.org/wiki/Les_Cowboys_Fringants"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"73-234": [[631, 130], [631, 155], [603, 155], [603, 129], [631, 129]]}, "center": {"73-234": [617, 142]}}, -{"id": 1927, "name": "Critical Strike logo and Controllers Drone", "description": "The logo of the Roblox game Critical Strike, with Controllers drone, a character often seen as a pet.", "links": {"website": ["https://www.roblox.com/games/8246089782/CRITICAL-STRIKE-v5-9-1"], "discord": ["cs6"]}, "path": {"204-258": [[-1226, 601], [-1206, 601], [-1206, 579], [-1226, 579]]}, "center": {"204-258": [-1216, 590]}}, -{"id": 1929, "name": "Shark Tank", "description": "Foolish_Gamers Twitch chats name. Created by Shark Tank", "links": {}, "path": {"204-258": [[-870, 841], [-820, 841], [-820, 866], [-871, 866]]}, "center": {"204-258": [-845, 854]}}, -{"id": 1930, "name": "hoppiiPat", "description": "It's an emote from the streamer hoppii made my NeuroticNati. DankeStaiy", "links": {"website": ["https://www.twitch.tv/hoppii"]}, "path": {"204-258": [[-1086, -754], [-1086, -715], [-1048, -715], [-1048, -754]]}, "center": {"204-258": [-1067, -734]}}, -{"id": 1931, "name": "Flag of the United Kingdom", "description": "The United Kingdom is a country in northwestern Europe. Its flag is known as the Union Jack. This was the only successful major expansion from the original location, and occurred on one of the final canvas expansions. \n\nIt features a number of British symbols, most notably Britannia - the national personification of Britain, holding a trident and resting on a shield bearing another Union Jack.", "links": {"website": ["https://en.wikipedia.org/wiki/United_Kingdom", "https://en.wikipedia.org/wiki/Flag_of_the_United_Kingdom"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"202-225": [[999, 780], [1244, 780], [1244, 898], [999, 898]], "226-258": [[1000, 780], [1244, 780], [1244, 898], [1000, 898]]}, "center": {"202-225": [1122, 839], "226-258": [1122, 839]}}, -{"id": 1932, "name": "Sword of Stanislav", "description": "The Sword of Stanislav originates from the fandom of political streamer Vaush. It is an early tribute to Vaush's newest cute wiggy kitten, Stanislav Rubin, along with his late kitten Daniil Dankovsky. Both were named after characters in the video game Pathologic.\n\nThis art was the product of the Vaush community's long and fruitful alliance with the Berserkers.", "links": {"website": ["https://www.vaush.gg/"], "subreddit": ["VaushV", "okbuddyvowsh", "Berserk"], "discord": ["M699v8xSqz"]}, "path": {"165-258": [[507, 944], [507, 946], [508, 947], [508, 950], [506, 953], [506, 956], [507, 957], [507, 962], [505, 962], [505, 964], [510, 964], [517, 961], [517, 960], [514, 960], [514, 957], [515, 956], [515, 953], [513, 950], [513, 947], [514, 947], [514, 944]]}, "center": {"165-258": [510, 954]}}, -{"id": 1933, "name": "Fear and Hunger Sigils of the gods", "description": "Fear & Hunger is a finnish horror dungeon crawler set in the dark and hopeless dungeons of fear and hunger. Dubbed \"The Cruelest RPG\". \nFrom top to bottom we can see sigils of the gods from the game - Rher, God of Fear and Hunger, Gro-goroth, Vinushka, All-mer, God of Depths, Sulfur and Sylvian.\nNext to the sigils stands The girl, one of the characters you can meet in the dungeons.", "links": {"subreddit": ["FearAndHunger"]}, "path": {"203-258": [[988, 140], [1000, 141], [999, 248], [986, 248], [988, 140], [962, 141], [962, 154], [987, 155], [987, 164], [987, 165], [985, 164], [984, 161], [981, 159], [974, 159], [969, 160], [968, 164], [967, 166], [968, 193], [970, 201], [970, 204], [970, 206], [968, 209], [968, 211], [971, 212], [973, 210], [975, 205], [978, 203], [978, 208], [979, 212], [982, 212], [984, 211], [985, 209], [984, 201], [987, 200], [987, 164]]}, "center": {"203-258": [977, 173]}}, -{"id": 1934, "name": "Tiny TARDIS", "description": "The TARDIS from Doctor Who, but tiny, \n\nThe Tiny TARDIS has been allied with My Little Pony since 2017 on r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/TARDIS"], "subreddit": ["tinytardis", "mylittlepony", "DoctorWhumour", "TARDISplace"], "discord": ["hjD6Gqex", "3P2kPYzkNs"]}, "path": {"165-258": [[500, 895], [508, 895], [508, 893], [507, 893], [507, 887], [508, 887], [508, 884], [507, 884], [507, 883], [505, 883], [505, 881], [503, 881], [503, 883], [501, 883], [501, 884], [500, 884], [500, 887], [501, 887], [501, 893], [500, 893]]}, "center": {"165-258": [504, 889]}}, -{"id": 1935, "name": "Edelweiss", "description": "Leontopodium nivale, commonly called edelweiss is a mountain flower belonging to the daisy or sunflower. It is a national symbol, especially of Romania, Austria, Slovenia, Switzerland, and Italy. According to folk tradition, giving this flower to a loved one is a promise of dedication.", "links": {"website": ["https://en.wikipedia.org/wiki/Leontopodium_nivale"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"189-258": [[-541, 800], [-543, 800], [-547, 804], [-546, 808], [-544, 811], [-543, 815], [-540, 812], [-538, 814], [-531, 814], [-533, 810], [-532, 807], [-534, 806], [-532, 804], [-536, 800], [-539, 799]]}, "center": {"189-258": [-540, 806]}}, -{"id": 1936, "name": "František & Fanynka", "description": "These are muppets from a czech kid's TV show \"Magical kindergaten\" raising many generations of children. In June 2023, one of the most popular actors Michal retired from the show, making many people remember it once again.", "links": {"website": ["https://decko.ceskatelevize.cz/kouzelna-skolka"], "subreddit": ["czech"], "discord": ["Fx2AVgUc"]}, "path": {"205-258": [[439, -161], [447, -155], [479, -156], [485, -165], [488, -165], [487, -171], [484, -175], [481, -174], [477, -176], [473, -176], [470, -174], [468, -174], [466, -176], [451, -176], [446, -178], [442, -178], [439, -175]]}, "center": {"205-258": [453, -166]}}, -{"id": 1937, "name": "Tomáš Lupič Mrdka", "description": "Giant mrdkoid snake in sewers", "links": {"website": ["https://youtu.be/38fCuGDRPao"]}, "path": {"205-258": [[776, 939], [776, 940], [773, 941], [774, 939], [773, 941], [773, 942], [772, 941], [772, 942], [773, 945], [774, 946], [775, 947], [774, 948], [772, 948], [771, 948], [771, 946], [770, 945], [768, 945], [768, 944], [767, 944], [766, 943], [764, 944], [760, 944], [759, 946], [756, 949], [755, 953], [754, 954], [753, 957], [755, 961], [755, 963], [758, 965], [760, 967], [763, 967], [766, 964], [767, 959], [768, 956], [767, 954], [769, 952], [771, 952], [774, 952], [777, 951], [779, 949], [780, 945], [778, 944], [776, 943], [776, 941], [777, 940]]}, "center": {"205-258": [761, 957]}}, -{"id": 1938, "name": "Tunisia", "description": "country in North Africa\nWith Some traditional Tunisian food", "links": {}, "path": {"199-258": [[568, 970], [568, 1000], [623, 999], [623, 978], [583, 977], [582, 971]]}, "center": {"199-258": [579, 988]}}, -{"id": 1939, "name": "Rolex logo", "description": "Rolex is a Swiss watch designer and manufacturer based in Geneva, Switzerland", "links": {"website": ["https://en.wikipedia.org/wiki/Rolex", "https://rolex.com/"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"201-258": [[-558, 814], [-558, 815], [-557, 817], [-556, 819], [-554, 822], [-550, 822], [-546, 814], [-548, 812], [-552, 810]]}, "center": {"201-258": [-552, 816]}}, -{"id": 1940, "name": "Flak", "description": "A silly character made by a multinational friend group, Flak the dark green among us with a green belly button loves everyone equally <3", "links": {"subreddit": ["FLAK_"]}, "path": {"167-258": [[250, -530], [263, -530], [263, -521], [250, -521]]}, "center": {"167-258": [257, -525]}}, -{"id": 1941, "name": "Glyph Magic", "description": "In \"The Owl House\", an American animated Fantasy TV series, there is a system of magic known as \"Glyphs\". Shown here, from top to bottom, are the four main types of glyph magic: Ice, Fire, Light and Plants.", "links": {"website": ["https://theowlhouse.fandom.com/wiki/Glyph_Magic"], "subreddit": ["TheOwlHouse", "place_CentralAlliance"], "discord": ["TheOwlHouse"]}, "path": {"203-258": [[-236, 533], [-222, 533], [-222, 474], [-236, 474]]}, "center": {"203-258": [-229, 504]}}, -{"id": 1942, "name": "Meursault (Limbus Company) (The Stranger)", "description": "The Stranger, is a Novel by Albert Camus. The main character's name is Meursault an indifferent settler in French Algeria, who, weeks after his mother's funeral, kills an unnamed Arab man in Algiers. The version depicted in this artwork depicts the Meursault seen in the mobile game Limbus Company by Project Moon, and was allowed to be placed here by r/furry_irl who is located to the right of this artwork. This artwork was created by members of the Moonframe discord server.", "links": {"subreddit": ["Project_Moon", "limbuscompany", "furry_irl", "france"]}, "path": {"205-258": [[-1151, 226], [-1151, 252], [-1112, 250], [-1118, 226], [-1123, 225], [-1145, 226]]}, "center": {"205-258": [-1133, 238]}}, -{"id": 1943, "name": "Energy element", "description": "Energy is the entity of chaos. Everything that cannot be explained, the intangible, the anarchy. The constant change, the heat and the cold, the light and the dark. Everything involving unpredictability and transformation pleases the Energy entity.\n\nTransforming Energy overcomes the effects of Death.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado#Elemento_de_Energia"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"205-258": [[368, 414], [359, 423], [363, 428], [359, 433], [350, 425], [348, 426], [357, 437], [355, 440], [351, 437], [351, 440], [356, 444], [358, 441], [366, 451], [373, 441], [377, 443], [378, 441], [373, 437], [379, 427], [378, 426], [372, 434], [362, 424], [369, 417], [368, 422], [368, 426], [372, 416], [369, 414]]}, "center": {"205-258": [365, 438]}}, +{"id": 1927, "name": "Critical Strike logo and Controllers Drone", "description": "The logo of the Roblox game Critical Strike, with Controllers drone, a character often seen as a pet.", "links": {"website": ["https://www.roblox.com/games/8246089782/CRITICAL-STRIKE-v5-9-1"], "discord": ["cs6"]}, "path": {"204-258, T": [[-1226, 601], [-1206, 601], [-1206, 579], [-1226, 579]]}, "center": {"204-258, T": [-1216, 590]}}, +{"id": 1929, "name": "Shark Tank", "description": "Foolish_Gamers Twitch chats name. Created by Shark Tank", "links": {}, "path": {"204-258, T": [[-870, 841], [-820, 841], [-820, 866], [-871, 866]]}, "center": {"204-258, T": [-845, 854]}}, +{"id": 1930, "name": "hoppiiPat", "description": "It's an emote from the streamer hoppii made my NeuroticNati. DankeStaiy", "links": {"website": ["https://www.twitch.tv/hoppii"]}, "path": {"204-258, T": [[-1086, -754], [-1086, -715], [-1048, -715], [-1048, -754]]}, "center": {"204-258, T": [-1067, -734]}}, +{"id": 1931, "name": "Flag of the United Kingdom", "description": "The United Kingdom is a country in northwestern Europe. Its flag is known as the Union Jack. This was the only successful major expansion from the original location, and occurred on one of the final canvas expansions. \n\nIt features a number of British symbols, most notably Britannia - the national personification of Britain, holding a trident and resting on a shield bearing another Union Jack.", "links": {"website": ["https://en.wikipedia.org/wiki/United_Kingdom", "https://en.wikipedia.org/wiki/Flag_of_the_United_Kingdom"], "subreddit": ["ukplace", "UKOnPlace", "unitedkingdom"], "discord": ["ukplace", "ukonplace"]}, "path": {"202-225": [[999, 780], [1244, 780], [1244, 898], [999, 898]], "226-258, T": [[1000, 780], [1244, 780], [1244, 898], [1000, 898]]}, "center": {"202-225": [1122, 839], "226-258, T": [1122, 839]}}, +{"id": 1932, "name": "Sword of Stanislav", "description": "The Sword of Stanislav originates from the fandom of political streamer Vaush. It is an early tribute to Vaush's newest cute wiggy kitten, Stanislav Rubin, along with his late kitten Daniil Dankovsky. Both were named after characters in the video game Pathologic.\n\nThis art was the product of the Vaush community's long and fruitful alliance with the Berserkers.", "links": {"website": ["https://www.vaush.gg/"], "subreddit": ["VaushV", "okbuddyvowsh", "Berserk"], "discord": ["M699v8xSqz"]}, "path": {"165-258, T": [[507, 944], [507, 946], [508, 947], [508, 950], [506, 953], [506, 956], [507, 957], [507, 962], [505, 962], [505, 964], [510, 964], [517, 961], [517, 960], [514, 960], [514, 957], [515, 956], [515, 953], [513, 950], [513, 947], [514, 947], [514, 944]]}, "center": {"165-258, T": [510, 954]}}, +{"id": 1933, "name": "Fear and Hunger Sigils of the gods", "description": "Fear & Hunger is a finnish horror dungeon crawler set in the dark and hopeless dungeons of fear and hunger. Dubbed \"The Cruelest RPG\". \nFrom top to bottom we can see sigils of the gods from the game - Rher, God of Fear and Hunger, Gro-goroth, Vinushka, All-mer, God of Depths, Sulfur and Sylvian.\nNext to the sigils stands The girl, one of the characters you can meet in the dungeons.", "links": {"subreddit": ["FearAndHunger"]}, "path": {"203-258, T": [[988, 140], [1000, 141], [999, 248], [986, 248], [988, 140], [962, 141], [962, 154], [987, 155], [987, 164], [987, 165], [985, 164], [984, 161], [981, 159], [974, 159], [969, 160], [968, 164], [967, 166], [968, 193], [970, 201], [970, 204], [970, 206], [968, 209], [968, 211], [971, 212], [973, 210], [975, 205], [978, 203], [978, 208], [979, 212], [982, 212], [984, 211], [985, 209], [984, 201], [987, 200], [987, 164]]}, "center": {"203-258, T": [977, 173]}}, +{"id": 1934, "name": "Tiny TARDIS", "description": "The TARDIS from Doctor Who, but tiny, \n\nThe Tiny TARDIS has been allied with My Little Pony since 2017 on r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/TARDIS"], "subreddit": ["tinytardis", "mylittlepony", "DoctorWhumour", "TARDISplace"], "discord": ["hjD6Gqex", "3P2kPYzkNs"]}, "path": {"165-258, T": [[500, 895], [508, 895], [508, 893], [507, 893], [507, 887], [508, 887], [508, 884], [507, 884], [507, 883], [505, 883], [505, 881], [503, 881], [503, 883], [501, 883], [501, 884], [500, 884], [500, 887], [501, 887], [501, 893], [500, 893]]}, "center": {"165-258, T": [504, 889]}}, +{"id": 1935, "name": "Edelweiss", "description": "Leontopodium nivale, commonly called edelweiss is a mountain flower belonging to the daisy or sunflower. It is a national symbol, especially of Romania, Austria, Slovenia, Switzerland, and Italy. According to folk tradition, giving this flower to a loved one is a promise of dedication.", "links": {"website": ["https://en.wikipedia.org/wiki/Leontopodium_nivale"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"189-258, T": [[-541, 800], [-543, 800], [-547, 804], [-546, 808], [-544, 811], [-543, 815], [-540, 812], [-538, 814], [-531, 814], [-533, 810], [-532, 807], [-534, 806], [-532, 804], [-536, 800], [-539, 799]]}, "center": {"189-258, T": [-540, 806]}}, +{"id": 1936, "name": "František & Fanynka", "description": "These are muppets from a czech kid's TV show \"Magical kindergaten\" raising many generations of children. In June 2023, one of the most popular actors Michal retired from the show, making many people remember it once again.", "links": {"website": ["https://decko.ceskatelevize.cz/kouzelna-skolka"], "subreddit": ["czech"], "discord": ["Fx2AVgUc"]}, "path": {"205-258, T": [[439, -161], [447, -155], [479, -156], [485, -165], [488, -165], [487, -171], [484, -175], [481, -174], [477, -176], [473, -176], [470, -174], [468, -174], [466, -176], [451, -176], [446, -178], [442, -178], [439, -175]]}, "center": {"205-258, T": [453, -166]}}, +{"id": 1937, "name": "Tomáš Lupič Mrdka", "description": "Giant mrdkoid snake in sewers", "links": {"website": ["https://youtu.be/38fCuGDRPao"]}, "path": {"205-258, T": [[776, 939], [776, 940], [773, 941], [774, 939], [773, 941], [773, 942], [772, 941], [772, 942], [773, 945], [774, 946], [775, 947], [774, 948], [772, 948], [771, 948], [771, 946], [770, 945], [768, 945], [768, 944], [767, 944], [766, 943], [764, 944], [760, 944], [759, 946], [756, 949], [755, 953], [754, 954], [753, 957], [755, 961], [755, 963], [758, 965], [760, 967], [763, 967], [766, 964], [767, 959], [768, 956], [767, 954], [769, 952], [771, 952], [774, 952], [777, 951], [779, 949], [780, 945], [778, 944], [776, 943], [776, 941], [777, 940]]}, "center": {"205-258, T": [761, 957]}}, +{"id": 1938, "name": "Tunisia", "description": "country in North Africa\nWith Some traditional Tunisian food", "links": {}, "path": {"199-258, T": [[568, 970], [568, 1000], [623, 999], [623, 978], [583, 977], [582, 971]]}, "center": {"199-258, T": [579, 988]}}, +{"id": 1939, "name": "Rolex logo", "description": "Rolex is a Swiss watch designer and manufacturer based in Geneva, Switzerland", "links": {"website": ["https://en.wikipedia.org/wiki/Rolex", "https://rolex.com/"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"201-258, T": [[-558, 814], [-558, 815], [-557, 817], [-556, 819], [-554, 822], [-550, 822], [-546, 814], [-548, 812], [-552, 810]]}, "center": {"201-258, T": [-552, 816]}}, +{"id": 1940, "name": "Flak", "description": "A silly character made by a multinational friend group, Flak the dark green among us with a green belly button loves everyone equally <3", "links": {"subreddit": ["FLAK_"]}, "path": {"167-258, T": [[250, -530], [263, -530], [263, -521], [250, -521]]}, "center": {"167-258, T": [257, -525]}}, +{"id": 1941, "name": "Glyph Magic", "description": "In \"The Owl House\", an American animated Fantasy TV series, there is a system of magic known as \"Glyphs\". Shown here, from top to bottom, are the four main types of glyph magic: Ice, Fire, Light and Plants.", "links": {"website": ["https://theowlhouse.fandom.com/wiki/Glyph_Magic"], "subreddit": ["TheOwlHouse", "place_CentralAlliance"], "discord": ["TheOwlHouse"]}, "path": {"203-258, T": [[-236, 533], [-222, 533], [-222, 474], [-236, 474]]}, "center": {"203-258, T": [-229, 504]}}, +{"id": 1942, "name": "Meursault (Limbus Company) (The Stranger)", "description": "The Stranger, is a Novel by Albert Camus. The main character's name is Meursault an indifferent settler in French Algeria, who, weeks after his mother's funeral, kills an unnamed Arab man in Algiers. The version depicted in this artwork depicts the Meursault seen in the mobile game Limbus Company by Project Moon, and was allowed to be placed here by r/furry_irl who is located to the right of this artwork. This artwork was created by members of the Moonframe discord server.", "links": {"subreddit": ["Project_Moon", "limbuscompany", "furry_irl", "france"]}, "path": {"205-258, T": [[-1151, 226], [-1151, 252], [-1112, 250], [-1118, 226], [-1123, 225], [-1145, 226]]}, "center": {"205-258, T": [-1133, 238]}}, +{"id": 1943, "name": "Energy element", "description": "Energy is the entity of chaos. Everything that cannot be explained, the intangible, the anarchy. The constant change, the heat and the cold, the light and the dark. Everything involving unpredictability and transformation pleases the Energy entity.\n\nTransforming Energy overcomes the effects of Death.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado#Elemento_de_Energia"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"205-258, T": [[368, 414], [359, 423], [363, 428], [359, 433], [350, 425], [348, 426], [357, 437], [355, 440], [351, 437], [351, 440], [356, 444], [358, 441], [366, 451], [373, 441], [377, 443], [378, 441], [373, 437], [379, 427], [378, 426], [372, 434], [362, 424], [369, 417], [368, 422], [368, 426], [372, 416], [369, 414]]}, "center": {"205-258, T": [365, 438]}}, {"id": 1944, "name": "PokeIsland Palm Tree (5x7)", "description": "Palm tree on a sandy island, symbol of the PokeIsland/Poke's Island YouTube/Discord community.", "links": {"website": ["https://www.youtube.com/@PokeIsland"], "subreddit": ["pokeislandyt"], "discord": ["KVaeKYWY"]}, "path": {"204-216": [[1379, 290], [1385, 290], [1385, 297], [1379, 297]]}, "center": {"204-216": [1382, 294]}}, -{"id": 1945, "name": "Element of death", "description": "Death is the entity of time. It seeks the moments experienced, distorting the egoic perception of each individual's existence to its own liking.\n\nDeath's temporal distortion ruins the carnal perception of Blood.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado#Elemento_de_Morte"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"205-258": [[266, 424], [272, 430], [276, 442], [269, 447], [278, 443], [282, 446], [283, 458], [287, 459], [287, 445], [297, 454], [298, 452], [294, 446], [295, 444], [294, 442], [299, 432], [296, 424], [286, 419], [285, 414], [284, 415], [283, 420], [274, 424], [273, 428], [273, 427], [267, 424]]}, "center": {"205-258": [285, 432]}}, -{"id": 1946, "name": "Pretzel", "description": "Pretzel is Gillion Tidestrider's pet frogtopus from the Just Roll With It Podcast.", "links": {"subreddit": ["jrwishow"]}, "path": {"191-258": [[525, 360], [539, 360], [536, 356], [529, 356]]}, "center": {"191-258": [532, 358]}}, -{"id": 1947, "name": "Sleep Token", "description": "Sleep Token are a British rock band from London, formed in 2016. The group are an anonymous, masked collective led by a frontman using the moniker Vessel. They have been categorized under many different genres, including alternative metal, post-rock/metal, progressive metal and indie rock/pop.", "links": {"website": ["https://www.sleep-token.com/"], "subreddit": ["sleeptoken"], "discord": ["SleepToken"]}, "path": {"204-258": [[-540, 293], [-528, 293], [-528, 288], [-501, 290], [-501, 327], [-553, 326], [-553, 316], [-541, 316], [-541, 292]]}, "center": {"204-258": [-519, 308]}}, -{"id": 1948, "name": "Švejk", "description": "Švejk is a character from a czech comedy \"The Good Soldier Švejk\" written by Jaroslav Hašek.", "links": {"subreddit": ["czech"]}, "path": {"205-258": [[-113, 594], [-112, 622], [-114, 630], [-136, 631], [-138, 623], [-140, 621], [-140, 614], [-144, 614], [-144, 610], [-139, 609], [-139, 607], [-144, 606], [-148, 605], [-138, 599], [-137, 595], [-136, 590], [-125, 590]]}, "center": {"205-258": [-126, 615]}}, +{"id": 1945, "name": "Element of death", "description": "Death is the entity of time. It seeks the moments experienced, distorting the egoic perception of each individual's existence to its own liking.\n\nDeath's temporal distortion ruins the carnal perception of Blood.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado#Elemento_de_Morte"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"205-258, T": [[266, 424], [272, 430], [276, 442], [269, 447], [278, 443], [282, 446], [283, 458], [287, 459], [287, 445], [297, 454], [298, 452], [294, 446], [295, 444], [294, 442], [299, 432], [296, 424], [286, 419], [285, 414], [284, 415], [283, 420], [274, 424], [273, 428], [273, 427], [267, 424]]}, "center": {"205-258, T": [285, 432]}}, +{"id": 1946, "name": "Pretzel", "description": "Pretzel is Gillion Tidestrider's pet frogtopus from the Just Roll With It Podcast.", "links": {"subreddit": ["jrwishow"]}, "path": {"191-258, T": [[525, 360], [539, 360], [536, 356], [529, 356]]}, "center": {"191-258, T": [532, 358]}}, +{"id": 1947, "name": "Sleep Token", "description": "Sleep Token are a British rock band from London, formed in 2016. The group are an anonymous, masked collective led by a frontman using the moniker Vessel. They have been categorized under many different genres, including alternative metal, post-rock/metal, progressive metal and indie rock/pop.", "links": {"website": ["https://www.sleep-token.com/"], "subreddit": ["sleeptoken"], "discord": ["SleepToken"]}, "path": {"204-258, T": [[-540, 293], [-528, 293], [-528, 288], [-501, 290], [-501, 327], [-553, 326], [-553, 316], [-541, 316], [-541, 292]]}, "center": {"204-258, T": [-519, 308]}}, +{"id": 1948, "name": "Švejk", "description": "Švejk is a character from a czech comedy \"The Good Soldier Švejk\" written by Jaroslav Hašek.", "links": {"subreddit": ["czech"]}, "path": {"205-258, T": [[-113, 594], [-112, 622], [-114, 630], [-136, 631], [-138, 623], [-140, 621], [-140, 614], [-144, 614], [-144, 610], [-139, 609], [-139, 607], [-144, 606], [-148, 605], [-138, 599], [-137, 595], [-136, 590], [-125, 590]]}, "center": {"205-258, T": [-126, 615]}}, {"id": 1949, "name": "CS Logo (2nd but unfinished)", "description": "The official logo for Critical Strike, a game on Roblox.com\n\n( We tried to put it on Dragon Ball Z x Critical Strike as a joke )\n\n-Entry by PixelMeteor", "links": {"website": ["https://www.roblox.com/games/8246089782/CRITICAL-STRIKE-v5-9-1"], "discord": ["cs6"]}, "path": {"198": [[-1296, -712], [-1278, -712], [-1278, -701], [-1296, -701]]}, "center": {"198": [-1287, -706]}}, -{"id": 1950, "name": "Distortion Detective", "description": "Distortion Detective is a webnovel that was published and released by Project Moon, it's set during the events of Library of Ruina and the art on Place features the pipe that is smoked from the main character, Doctor Moses. This art was created by members of the Moonframe discord server", "links": {"subreddit": ["Project_Moon", "libraryofruina"]}, "path": {"205-258": [[-1282, 550], [-1283, 579], [-1266, 578], [-1267, 552], [-1267, 550]]}, "center": {"205-258": [-1274, 565]}}, -{"id": 1951, "name": "Lumpy", "description": "Placid Plastic Duck Simulator is an indie simulator where you watch ducks float around in a pool. This entry depicts the Knife Duck, Mallard Duck, and a typical Plastic Duck", "links": {"website": ["https://store.steampowered.com/app/1999360/Placid_Plastic_Duck_Simulator/"], "subreddit": ["Placidplasticducks"], "discord": ["placid-plastic-duck-simulator-991288138649583636"]}, "path": {"211-258": [[566, 969], [546, 969], [546, 999], [566, 999]]}, "center": {"211-258": [556, 984]}}, -{"id": 1952, "name": "Pixel Anime Faction", "description": "Pixel Anime faction (Originally Place Anime Faction during r/Place 2023) is a coalition of several other anime communities that was formed for the 2023 r/Place event. After allying with Oshi No Ko, (see mural above), KyoAni, and Hatsune Miku communities whilst fighting a void, they were able to become victorious. A streamer named \"Bro Choc\" (jokingly named \"Bro Cock in the community) that overtook their place was also wiped out to finish the mural. The faction was able to create this mural in the course of 2 days, and held onto it until the whiteout.\n\nWhat is currently depicted within the final mural is (From left to right), Tomoko Kuroki from Watamote, Ayumu Kasuga (commonly known as Osaka) from Azumanga Daioh, SewerSlvt (also known as Jvne), Philemon from Persona, Stu, Lagann from Gurren Lagann, Lain Iwakura from Serial Experiments Lain, Haruhi Suzumiya from Haruhi Suzumiya, and last but not least, Rei Ayanami from Neon Genesis: Evangelion.", "links": {"subreddit": ["PLANFA", "Watamote", "Osaker", "Sewerslvt", "PERSoNA", "stu_the_critter", "gurrenlagann", "Lain", "Evangelion", "OshiNoKo"], "discord": ["FJQQWrrZ4n"]}, "path": {"204-258": [[-764, -136], [-733, -136], [-734, -140], [-661, -140], [-661, -80], [-683, -80], [-682, -92], [-682, -100], [-687, -104], [-687, -107], [-682, -109], [-683, -113], [-690, -113], [-692, -115], [-692, -118], [-696, -117], [-703, -110], [-703, -103], [-704, -103], [-706, -101], [-708, -99], [-708, -93], [-706, -90], [-710, -84], [-706, -80], [-738, -79], [-738, -105], [-764, -105], [-769, -130], [-763, -197], [-763, -199], [-765, -207], [-673, -204], [-670, -143]]}, "center": {"204-258": [-714, -173]}}, -{"id": 1953, "name": "Swiss Broadcasting Corporation SSR", "description": "The Swiss public broadcasting association, founded in 1931, the holding company of 26 radio and television channels.\n\nSSR to operate are four regional corporations:\n\nGerman Switzerland: Schweizer Radio und Fernsehen (SRF)\nFrench Switzerland: Radio télévision suisse (RTS)\nItalian Switzerland: Radiotelevisione svizzera di lingua italiana (RSI)\nRomansh: Radiotelevisiun Svizra Rumantscha (RTR)", "links": {"website": ["https://en.wikipedia.org/wiki/Swiss_Broadcasting_Corporation"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"163-258": [[802, -367], [802, -361], [858, -361], [859, -362], [864, -362], [869, -360], [879, -360], [879, -367]]}, "center": {"163-258": [876, -363]}}, +{"id": 1950, "name": "Distortion Detective", "description": "Distortion Detective is a webnovel that was published and released by Project Moon, it's set during the events of Library of Ruina and the art on Place features the pipe that is smoked from the main character, Doctor Moses. This art was created by members of the Moonframe discord server", "links": {"subreddit": ["Project_Moon", "libraryofruina"]}, "path": {"205-258, T": [[-1282, 550], [-1283, 579], [-1266, 578], [-1267, 552], [-1267, 550]]}, "center": {"205-258, T": [-1274, 565]}}, +{"id": 1951, "name": "Lumpy", "description": "Placid Plastic Duck Simulator is an indie simulator where you watch ducks float around in a pool. This entry depicts the Knife Duck, Mallard Duck, and a typical Plastic Duck", "links": {"website": ["https://store.steampowered.com/app/1999360/Placid_Plastic_Duck_Simulator/"], "subreddit": ["Placidplasticducks"], "discord": ["placid-plastic-duck-simulator-991288138649583636"]}, "path": {"211-258, T": [[566, 969], [546, 969], [546, 999], [566, 999]]}, "center": {"211-258, T": [556, 984]}}, +{"id": 1952, "name": "Pixel Anime Faction", "description": "Pixel Anime faction (Originally Place Anime Faction during r/Place 2023) is a coalition of several other anime communities that was formed for the 2023 r/Place event. After allying with Oshi No Ko, (see mural above), KyoAni, and Hatsune Miku communities whilst fighting a void, they were able to become victorious. A streamer named \"Bro Choc\" (jokingly named \"Bro Cock in the community) that overtook their place was also wiped out to finish the mural. The faction was able to create this mural in the course of 2 days, and held onto it until the whiteout.\n\nWhat is currently depicted within the final mural is (From left to right), Tomoko Kuroki from Watamote, Ayumu Kasuga (commonly known as Osaka) from Azumanga Daioh, SewerSlvt (also known as Jvne), Philemon from Persona, Stu, Lagann from Gurren Lagann, Lain Iwakura from Serial Experiments Lain, Haruhi Suzumiya from Haruhi Suzumiya, and last but not least, Rei Ayanami from Neon Genesis: Evangelion.", "links": {"subreddit": ["PLANFA", "Watamote", "Osaker", "Sewerslvt", "PERSoNA", "stu_the_critter", "gurrenlagann", "Lain", "Evangelion", "OshiNoKo"], "discord": ["FJQQWrrZ4n"]}, "path": {"204-258, T": [[-764, -136], [-733, -136], [-734, -140], [-661, -140], [-661, -80], [-683, -80], [-682, -92], [-682, -100], [-687, -104], [-687, -107], [-682, -109], [-683, -113], [-690, -113], [-692, -115], [-692, -118], [-696, -117], [-703, -110], [-703, -103], [-704, -103], [-706, -101], [-708, -99], [-708, -93], [-706, -90], [-710, -84], [-706, -80], [-738, -79], [-738, -105], [-764, -105], [-769, -130], [-763, -197], [-763, -199], [-765, -207], [-673, -204], [-670, -143]]}, "center": {"204-258, T": [-714, -173]}}, +{"id": 1953, "name": "Swiss Broadcasting Corporation SSR", "description": "The Swiss public broadcasting association, founded in 1931, the holding company of 26 radio and television channels.\n\nSSR to operate are four regional corporations:\n\nGerman Switzerland: Schweizer Radio und Fernsehen (SRF)\nFrench Switzerland: Radio télévision suisse (RTS)\nItalian Switzerland: Radiotelevisione svizzera di lingua italiana (RSI)\nRomansh: Radiotelevisiun Svizra Rumantscha (RTR)", "links": {"website": ["https://en.wikipedia.org/wiki/Swiss_Broadcasting_Corporation"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"163-258, T": [[802, -367], [802, -361], [858, -361], [859, -362], [864, -362], [869, -360], [879, -360], [879, -367]]}, "center": {"163-258, T": [876, -363]}}, {"id": 1954, "name": "Bzmot", "description": "The Bzmot is an Hungarian Diesel Locomotive.", "links": {"website": ["https://hu.wikipedia.org/wiki/Bzmot"]}, "path": {"48-190": [[-55, -371], [-55, -386], [5, -386], [5, -371]]}, "center": {"48-190": [-25, -378]}}, -{"id": 1955, "name": "Helvetia", "description": "Helvetia is the female national personification of Switzerland, officially Confoederatio Helvetica, the Swiss Confederation.", "links": {"website": ["https://en.wikipedia.org/wiki/Helvetia"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"162-258": [[861, -361], [863, -361], [864, -360], [865, -360], [867, -359], [868, -356], [869, -352], [866, -349], [866, -347], [869, -346], [871, -342], [872, -339], [873, -334], [872, -334], [872, -321], [873, -321], [874, -320], [876, -319], [877, -318], [883, -317], [883, -313], [882, -312], [881, -311], [880, -310], [880, -308], [881, -307], [882, -306], [883, -304], [883, -303], [882, -302], [882, -301], [881, -300], [880, -299], [880, -297], [873, -289], [863, -297], [860, -296], [849, -297], [848, -303], [846, -308], [847, -313], [846, -319], [843, -321], [844, -331], [844, -332], [843, -332], [843, -338], [842, -338], [842, -345], [841, -345], [841, -348], [840, -348], [841, -349], [840, -350], [839, -351], [839, -352], [840, -352], [840, -357], [840, -353], [841, -353], [842, -352], [842, -350], [841, -349], [841, -348], [842, -348], [841, -344], [842, -338], [843, -332], [845, -329], [857, -347], [859, -347], [860, -348], [860, -350], [858, -350], [858, -353], [857, -353], [857, -355], [858, -356], [858, -360]]}, "center": {"162-258": [861, -311]}}, -{"id": 1956, "name": "Larry", "description": "This art was started by Streamer and Youtuber Jo4na and their followers. Larry is a plush duck owned by Jo4na and now is immortalized on r/place 2023.\nLarry is also in r/place 2022", "links": {"website": ["https://www.twitch.tv/jo4na", "https://www.youtube.com/@Jo4na"], "subreddit": ["jo4na"], "discord": ["skHWQTkcAa"]}, "path": {"206-258": [[569, 323], [568, 323], [568, 334], [577, 334], [577, 323], [568, 323]]}, "center": {"206-258": [573, 329]}}, +{"id": 1955, "name": "Helvetia", "description": "Helvetia is the female national personification of Switzerland, officially Confoederatio Helvetica, the Swiss Confederation.", "links": {"website": ["https://en.wikipedia.org/wiki/Helvetia"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"162-258, T": [[861, -361], [863, -361], [864, -360], [865, -360], [867, -359], [868, -356], [869, -352], [866, -349], [866, -347], [869, -346], [871, -342], [872, -339], [873, -334], [872, -334], [872, -321], [873, -321], [874, -320], [876, -319], [877, -318], [883, -317], [883, -313], [882, -312], [881, -311], [880, -310], [880, -308], [881, -307], [882, -306], [883, -304], [883, -303], [882, -302], [882, -301], [881, -300], [880, -299], [880, -297], [873, -289], [863, -297], [860, -296], [849, -297], [848, -303], [846, -308], [847, -313], [846, -319], [843, -321], [844, -331], [844, -332], [843, -332], [843, -338], [842, -338], [842, -345], [841, -345], [841, -348], [840, -348], [841, -349], [840, -350], [839, -351], [839, -352], [840, -352], [840, -357], [840, -353], [841, -353], [842, -352], [842, -350], [841, -349], [841, -348], [842, -348], [841, -344], [842, -338], [843, -332], [845, -329], [857, -347], [859, -347], [860, -348], [860, -350], [858, -350], [858, -353], [857, -353], [857, -355], [858, -356], [858, -360]]}, "center": {"162-258, T": [861, -311]}}, +{"id": 1956, "name": "Larry", "description": "This art was started by Streamer and Youtuber Jo4na and their followers. Larry is a plush duck owned by Jo4na and now is immortalized on r/place 2023.\nLarry is also in r/place 2022", "links": {"website": ["https://www.twitch.tv/jo4na", "https://www.youtube.com/@Jo4na"], "subreddit": ["jo4na"], "discord": ["skHWQTkcAa"]}, "path": {"206-258, T": [[569, 323], [568, 323], [568, 334], [577, 334], [577, 323], [568, 323]]}, "center": {"206-258, T": [573, 329]}}, {"id": 1957, "name": "Jo4na", "description": "Jo4na is a Portuguese Minecraft Streamer and YouTuber. This was made by Jo4na's community and their Minecraft Skin is now immortalized in r/place 2023", "links": {"website": ["https://www.twitch.tv/jo4na", "https://www.youtube.com/@Jo4na"], "subreddit": ["jo4na"], "discord": ["skHWQTkcAa"]}, "path": {"207": [[-842, 179], [-842, 186], [-835, 186], [-835, 179]]}, "center": {"207": [-838, 183]}}, {"id": 1958, "name": "Karlsruhe Institute of Technology (KIT)", "description": "The Karlsruhe Institute of Technology (KIT; German: Karlsruher Institut für Technologie) is a public research university in Karlsruhe, Germany. The institute is a national research center of the Helmholtz Association.", "links": {"website": ["https://www.kit.edu/english/"]}, "path": {"101-247": [[-557, -358], [-557, -348], [-538, -348], [-538, -358]]}, "center": {"101-247": [-547, -353]}}, {"id": 1959, "name": "Geoguessr logo", "description": "GeoGuessr is a browser-based geography game in which players are tasked to guess locations from Google Street View imagery.", "links": {"website": ["https://www.geoguessr.com/fr"], "subreddit": ["geoguessr"]}, "path": {"182-199": [[-41, 930], [-33, 930], [-31, 931], [-28, 929], [-25, 929], [-23, 932], [-22, 936], [-26, 941], [-30, 937], [-35, 938], [-40, 938], [-41, 937]]}, "center": {"182-199": [-27, 934]}}, -{"id": 1960, "name": "Reimu Hakurei", "description": "One of the main playable characters in the Touhou franchise. Was deleted over twenty times by Canadian dissidents and Moroccan bots after the Canada flag was originally expanded by bots from the 1337 coding school.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"8-258": [[150, 202], [159, 201], [159, 160], [139, 162], [141, 189]]}, "center": {"8-258": [150, 182]}}, -{"id": 1961, "name": "Knowledge Element", "description": "Knowledge is the entity of consciousness. Discover, learn, know, decipher. Having one's own perception of the Other Side and its entities pleases the element of Knowledge.\n\nThe reason and logic of Knowledge reintegrate and suppress the chaos of Energy.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado#Elemento_de_Conhecimento"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"205-258": [[368, 465], [359, 468], [355, 473], [356, 477], [362, 482], [357, 486], [355, 487], [354, 489], [354, 492], [359, 495], [368, 495], [371, 491], [371, 488], [367, 482], [375, 473], [375, 470], [372, 466], [370, 465], [369, 465]]}, "center": {"205-258": [364, 474]}}, -{"id": 1962, "name": "Equestria at War", "description": "Chrysalis and Grover II from the Hearts of Iron 4 mod Equestria at War", "links": {"website": ["https://steamcommunity.com/sharedfiles/filedetails/?id=1826643372"], "subreddit": ["equestriaatwar"], "discord": ["kPkNFb5"]}, "path": {"206-258": [[564, 836], [583, 838], [602, 838], [602, 850], [597, 858], [590, 856], [587, 855], [586, 862], [574, 862], [565, 863], [565, 860], [561, 858], [564, 848], [567, 847], [567, 843]]}, "center": {"206-258": [578, 848]}}, -{"id": 1963, "name": "Blood element", "description": "Blood is the entity of feeling. He seeks intensity: pain, obsession, passion, love, hunger, hate - anything that involves feeling extreme emotion pleases the entity of Blood.\n\nThe extreme feelings of Blood overcome reason and the lull of Knowledge.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado#Elemento_de_Sangue"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"206-258": [[282, 468], [283, 478], [275, 478], [274, 480], [273, 480], [273, 482], [283, 482], [283, 487], [275, 487], [273, 489], [273, 491], [298, 491], [297, 489], [295, 487], [288, 487], [288, 482], [298, 482], [298, 480], [296, 478], [288, 478], [288, 468], [283, 468]]}, "center": {"206-258": [285, 480]}}, -{"id": 1965, "name": "Void monster and dog: to be continued", "description": "This art was a collaboration between Spanish streamer Rubius and Russian streamer Bratishkinoff. It is a continuation of Rubius's Void monster and Bratishkinoff's Russian dog meme created at (700, 25) and (-188, -677), and features the two walking off into the sunset, along with the character's from Bratishkinoff's artwork at (-291, 233).", "links": {"website": ["https://www.twitch.tv/rubius", "https://www.twitch.tv/bratishkinoff"], "subreddit": ["ubius", "place_brff"]}, "path": {"202-258": [[1207, -389], [1499, -389], [1499, -176], [1207, -176]]}, "center": {"202-258": [1353, -282]}}, +{"id": 1960, "name": "Reimu Hakurei", "description": "One of the main playable characters in the Touhou franchise. Was deleted over twenty times by Canadian dissidents and Moroccan bots after the Canada flag was originally expanded by bots from the 1337 coding school.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"8-258, T": [[150, 202], [159, 201], [159, 160], [139, 162], [141, 189]]}, "center": {"8-258, T": [150, 182]}}, +{"id": 1961, "name": "Knowledge Element", "description": "Knowledge is the entity of consciousness. Discover, learn, know, decipher. Having one's own perception of the Other Side and its entities pleases the element of Knowledge.\n\nThe reason and logic of Knowledge reintegrate and suppress the chaos of Energy.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado#Elemento_de_Conhecimento"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"205-258, T": [[368, 465], [359, 468], [355, 473], [356, 477], [362, 482], [357, 486], [355, 487], [354, 489], [354, 492], [359, 495], [368, 495], [371, 491], [371, 488], [367, 482], [375, 473], [375, 470], [372, 466], [370, 465], [369, 465]]}, "center": {"205-258, T": [364, 474]}}, +{"id": 1962, "name": "Equestria at War", "description": "Chrysalis and Grover II from the Hearts of Iron 4 mod Equestria at War", "links": {"website": ["https://steamcommunity.com/sharedfiles/filedetails/?id=1826643372"], "subreddit": ["equestriaatwar"], "discord": ["kPkNFb5"]}, "path": {"206-258, T": [[564, 836], [583, 838], [602, 838], [602, 850], [597, 858], [590, 856], [587, 855], [586, 862], [574, 862], [565, 863], [565, 860], [561, 858], [564, 848], [567, 847], [567, 843]]}, "center": {"206-258, T": [578, 848]}}, +{"id": 1963, "name": "Blood element", "description": "Blood is the entity of feeling. He seeks intensity: pain, obsession, passion, love, hunger, hate - anything that involves feeling extreme emotion pleases the entity of Blood.\n\nThe extreme feelings of Blood overcome reason and the lull of Knowledge.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado#Elemento_de_Sangue"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"206-258, T": [[282, 468], [283, 478], [275, 478], [274, 480], [273, 480], [273, 482], [283, 482], [283, 487], [275, 487], [273, 489], [273, 491], [298, 491], [297, 489], [295, 487], [288, 487], [288, 482], [298, 482], [298, 480], [296, 478], [288, 478], [288, 468], [283, 468]]}, "center": {"206-258, T": [285, 480]}}, +{"id": 1965, "name": "Void monster and dog: to be continued", "description": "This art was a collaboration between Spanish streamer Rubius and Russian streamer Bratishkinoff. It is a continuation of Rubius's Void monster and Bratishkinoff's Russian dog meme created at (700, 25) and (-188, -677), and features the two walking off into the sunset, along with the character's from Bratishkinoff's artwork at (-291, 233).", "links": {"website": ["https://www.twitch.tv/rubius", "https://www.twitch.tv/bratishkinoff"], "subreddit": ["ubius", "place_brff"]}, "path": {"202-258, T": [[1207, -389], [1499, -389], [1499, -176], [1207, -176]]}, "center": {"202-258, T": [1353, -282]}}, {"id": 1966, "name": "FIRST Logo", "description": "FIRST is a global community of elementary through high school students dedicated to Robotics and STEM Education through mentor-based programs. Every year, students are given a challenge and must design robots to compete in the challenge given. It is split into 3 age groups, FIRST Robotics Competition, (FRC) FIRST Tech Competition, and FIRST Lego League (FLL)", "links": {"website": ["https://www.firstinspires.org/"], "subreddit": ["frc", "fll", "ftc"], "discord": ["frc"]}, "path": {"173-232": [[-620, 744], [-576, 744], [-576, 781], [-621, 781]]}, "center": {"173-232": [-598, 763]}}, -{"id": 1967, "name": "Holo/Horo (Spice and Wolf)", "description": "Holo is a wolf harvest deity, she\nhas chosen the form of a 15-year\nold girl, though she still retains\nher large white-tipped wolf tail,\nears, and two sharp fangs. Her\ntrue form is that of a very large\nwolf which many people feared.\nShe made a promise with\ninhabitants from a town called\nPasloe that she would ensure the\ntown would have good wheat\nharvests year after year, however,\nas time went on, the\ntownspeople slowly started to\nforsake Holo, regarding her as\nunnecessary. So then, Holo\nescapes from town in Lawrence's\nwagon and started traveling with\nhim to see how much the world\nBOMBERO has changed since she has been\nin Pasloe.\nSpice and Wolf (狼と香辛料,\nOkami to Kōshinryo) is a\nJapanese light novel series that\nreceived an anime adaptation in\n2007 and had two seasons, now\nhas a remake announced for\n2024.", "links": {"website": ["https://spiceandwolf.fandom.com/wiki/Holo"], "subreddit": ["SpiceandWolf"], "discord": ["w2UWdGQK"]}, "path": {"148-258": [[-374, -911], [-373, -910], [-373, -908], [-372, -907], [-372, -906], [-371, -905], [-370, -902], [-370, -897], [-369, -895], [-368, -894], [-368, -890], [-367, -889], [-366, -890], [-366, -892], [-365, -893], [-365, -895], [-366, -895], [-366, -900], [-364, -902], [-365, -903], [-364, -904], [-365, -905], [-364, -904], [-363, -905], [-364, -904], [-363, -903], [-364, -901], [-363, -901], [-362, -900], [-362, -896], [-363, -895], [-363, -893], [-364, -892], [-364, -889], [-365, -887], [-364, -886], [-363, -885], [-362, -884], [-362, -882], [-361, -881], [-361, -880], [-362, -877], [-366, -873], [-371, -870], [-371, -868], [-370, -867], [-370, -865], [-372, -863], [-380, -863], [-379, -866], [-378, -868], [-379, -869], [-385, -872], [-387, -874], [-383, -880], [-382, -881], [-384, -884], [-381, -887], [-381, -888], [-385, -889], [-387, -890], [-386, -893], [-386, -894], [-387, -895], [-387, -897], [-386, -898], [-386, -901], [-385, -900], [-386, -899], [-385, -898], [-384, -897], [-383, -897], [-382, -898], [-382, -899], [-382, -900], [-383, -900], [-383, -903], [-382, -904], [-383, -905], [-384, -905], [-385, -906], [-384, -907], [-383, -908], [-381, -908], [-377, -908]]}, "center": {"148-258": [-372, -881]}}, +{"id": 1967, "name": "Holo/Horo (Spice and Wolf)", "description": "Holo is a wolf harvest deity, she\nhas chosen the form of a 15-year\nold girl, though she still retains\nher large white-tipped wolf tail,\nears, and two sharp fangs. Her\ntrue form is that of a very large\nwolf which many people feared.\nShe made a promise with\ninhabitants from a town called\nPasloe that she would ensure the\ntown would have good wheat\nharvests year after year, however,\nas time went on, the\ntownspeople slowly started to\nforsake Holo, regarding her as\nunnecessary. So then, Holo\nescapes from town in Lawrence's\nwagon and started traveling with\nhim to see how much the world\nBOMBERO has changed since she has been\nin Pasloe.\nSpice and Wolf (狼と香辛料,\nOkami to Kōshinryo) is a\nJapanese light novel series that\nreceived an anime adaptation in\n2007 and had two seasons, now\nhas a remake announced for\n2024.", "links": {"website": ["https://spiceandwolf.fandom.com/wiki/Holo"], "subreddit": ["SpiceandWolf"], "discord": ["w2UWdGQK"]}, "path": {"148-258, T": [[-374, -911], [-373, -910], [-373, -908], [-372, -907], [-372, -906], [-371, -905], [-370, -902], [-370, -897], [-369, -895], [-368, -894], [-368, -890], [-367, -889], [-366, -890], [-366, -892], [-365, -893], [-365, -895], [-366, -895], [-366, -900], [-364, -902], [-365, -903], [-364, -904], [-365, -905], [-364, -904], [-363, -905], [-364, -904], [-363, -903], [-364, -901], [-363, -901], [-362, -900], [-362, -896], [-363, -895], [-363, -893], [-364, -892], [-364, -889], [-365, -887], [-364, -886], [-363, -885], [-362, -884], [-362, -882], [-361, -881], [-361, -880], [-362, -877], [-366, -873], [-371, -870], [-371, -868], [-370, -867], [-370, -865], [-372, -863], [-380, -863], [-379, -866], [-378, -868], [-379, -869], [-385, -872], [-387, -874], [-383, -880], [-382, -881], [-384, -884], [-381, -887], [-381, -888], [-385, -889], [-387, -890], [-386, -893], [-386, -894], [-387, -895], [-387, -897], [-386, -898], [-386, -901], [-385, -900], [-386, -899], [-385, -898], [-384, -897], [-383, -897], [-382, -898], [-382, -899], [-382, -900], [-383, -900], [-383, -903], [-382, -904], [-383, -905], [-384, -905], [-385, -906], [-384, -907], [-383, -908], [-381, -908], [-377, -908]]}, "center": {"148-258, T": [-372, -881]}}, {"id": 1968, "name": "Amy Rose", "description": "Amy Rose is a character from the Sonic the Hedgehog series of video games and related media. Introduced in 1993, Amy was the first female character in the games, and is Sonic's self-proclaimed girlfriend.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["tails"]}, "path": {"178-196": [[113, 950], [109, 955], [110, 959], [113, 962], [117, 962], [122, 962], [122, 950], [116, 952]]}, "center": {"178-196": [116, 957]}}, {"id": 1969, "name": "10D Drawing", "description": "A little drawing by the class 10d of the Musterschule in Frankfurt am Main, Germany. Three students decided to represent the name of their class since it was their last year with their teacher Mr Stroemmer before the class would disband in other seperate groups.", "links": {"website": ["https://infos.musterschule.de/"], "discord": ["7pd4M78VPT"]}, "path": {"192-211": [[-1389, -691], [-1377, -691], [-1377, -684], [-1389, -684]]}, "center": {"192-211": [-1383, -687]}}, -{"id": 1970, "name": "Element of fear", "description": "Fear is the entity of the unknown and the infinite. Present since the dawn of humanity, it modifies the nature of the universe. \nIts differentiated existence is a mystery.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado#Elemento_de_Medo"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"206-258": [[311, 440], [316, 436], [315, 430], [313, 428], [320, 421], [333, 422], [338, 427], [338, 435], [325, 443], [323, 453], [313, 448], [305, 439], [303, 440], [307, 454], [316, 465], [318, 465], [311, 452], [322, 459], [322, 468], [317, 468], [310, 473], [310, 484], [322, 495], [324, 496], [328, 497], [326, 493], [326, 490], [327, 490], [327, 487], [328, 487], [328, 475], [331, 475], [331, 476], [333, 476], [334, 476], [334, 477], [337, 477], [338, 476], [339, 475], [340, 474], [341, 473], [342, 471], [345, 469], [346, 468], [345, 464], [345, 463], [346, 462], [346, 461], [347, 460], [347, 458], [348, 457], [348, 454], [349, 453], [349, 440], [348, 439], [345, 439], [344, 440], [343, 440], [342, 441], [341, 442], [340, 442], [339, 443], [335, 447], [334, 448], [334, 449], [333, 450], [332, 451], [331, 452], [329, 452], [328, 451], [328, 447], [329, 447], [330, 446], [331, 446], [332, 445], [333, 445], [334, 444], [335, 444], [336, 443], [341, 438], [341, 437], [342, 436], [342, 435], [343, 434], [343, 427], [342, 426], [342, 425], [341, 425], [341, 423], [336, 418], [335, 418], [334, 417], [333, 417], [332, 416], [318, 416], [317, 417], [316, 417], [309, 424], [309, 426], [308, 426], [308, 427], [305, 430], [305, 436], [308, 439], [312, 440]]}, "center": {"206-258": [333, 463]}}, -{"id": 1971, "name": "SBB CFF FFS Logo", "description": "Swiss Federal Railways (German: Schweizerische Bundesbahnen, SBB; French: Chemins de fer fédéraux suisses, CFF; Italian: Ferrovie federali svizzere, FFS)[1] is the national railway company of Switzerland. It is usually referred to by the initials of its three official names", "links": {"website": ["https://en.wikipedia.org/wiki/Swiss_Federal_Railways", "https://www.sbb.ch/"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"150-258": [[211, -359], [221, -359], [221, -355], [219, -354], [216, -353], [211, -353]]}, "center": {"150-258": [214, -356]}}, -{"id": 1972, "name": "Czech lion", "description": "Czech lion from popular history kid's show \"Dějiny udatného českého národa\"", "links": {"website": ["https://www.ceskatelevize.cz/porady/10177109865-dejiny-udatneho-ceskeho-naroda/"], "subreddit": ["czech"], "discord": ["Fx2AVgUc"]}, "path": {"205-258": [[-695, -116], [-703, -109], [-703, -104], [-707, -101], [-708, -93], [-707, -90], [-710, -84], [-709, -81], [-706, -80], [-683, -80], [-683, -85], [-684, -88], [-681, -93], [-681, -99], [-688, -107], [-690, -112]]}, "center": {"205-258": [-695, -94]}}, -{"id": 1973, "name": "Lohr a. Main (Germany)", "description": "Lohr am Main is a charming little town in the Main-Spessart administrative district. A varied cultural programme, a fairytale old town centre and a wealth of noteworthy sights attract visitors from far and wide.\n\nThe letters on r/place were placed by a small group of independent users, coordinating themselves over the \"Lohrer\" Discord which itself derived from the Local \"Meme\" page \"Lohr_Memes\"", "links": {"website": ["https://en.wikipedia.org/wiki/Lohr_am_Main", "https://www.mainpost.de/regional/main-spessart/auf-instagram-diese-drei-jungs-sind-das-sprachrohr-der-lohrer-jugend-art-10584174", "https://www.instagram.com/lohr_memes/"], "discord": ["7NuqMxE"]}, "path": {"175-258": [[-108, 928], [-73, 928], [-73, 939], [-92, 939], [-92, 934], [-106, 934], [-106, 928]]}, "center": {"175-258": [-80, 934]}}, -{"id": 1974, "name": "CatDog", "description": "Stars of the Nickelodeon show, CatDog. Named Cat, and Dog respectively. (Guess which is which.) It was a struggle just getting these lovable morons onto the canvas. But thanks to help from allies like The Bronies, Tiny Tardis, Waddle Dee Army, Costa Rica, and even just some close friends, CatDog lives on to see another victory.", "links": {}, "path": {"206-258": [[-1136, -323], [-1132, -321], [-1118, -322], [-1119, -330], [-1115, -333], [-1118, -335], [-1122, -333], [-1126, -341], [-1140, -340], [-1142, -332], [-1137, -328], [-1138, -323]]}, "center": {"206-258": [-1130, -331]}}, +{"id": 1970, "name": "Element of fear", "description": "Fear is the entity of the unknown and the infinite. Present since the dawn of humanity, it modifies the nature of the universe. \nIts differentiated existence is a mystery.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Elementos_do_Outro_Lado#Elemento_de_Medo"], "subreddit": ["OrdemParanormalRPG"], "discord": ["cellbit"]}, "path": {"206-258, T": [[311, 440], [316, 436], [315, 430], [313, 428], [320, 421], [333, 422], [338, 427], [338, 435], [325, 443], [323, 453], [313, 448], [305, 439], [303, 440], [307, 454], [316, 465], [318, 465], [311, 452], [322, 459], [322, 468], [317, 468], [310, 473], [310, 484], [322, 495], [324, 496], [328, 497], [326, 493], [326, 490], [327, 490], [327, 487], [328, 487], [328, 475], [331, 475], [331, 476], [333, 476], [334, 476], [334, 477], [337, 477], [338, 476], [339, 475], [340, 474], [341, 473], [342, 471], [345, 469], [346, 468], [345, 464], [345, 463], [346, 462], [346, 461], [347, 460], [347, 458], [348, 457], [348, 454], [349, 453], [349, 440], [348, 439], [345, 439], [344, 440], [343, 440], [342, 441], [341, 442], [340, 442], [339, 443], [335, 447], [334, 448], [334, 449], [333, 450], [332, 451], [331, 452], [329, 452], [328, 451], [328, 447], [329, 447], [330, 446], [331, 446], [332, 445], [333, 445], [334, 444], [335, 444], [336, 443], [341, 438], [341, 437], [342, 436], [342, 435], [343, 434], [343, 427], [342, 426], [342, 425], [341, 425], [341, 423], [336, 418], [335, 418], [334, 417], [333, 417], [332, 416], [318, 416], [317, 417], [316, 417], [309, 424], [309, 426], [308, 426], [308, 427], [305, 430], [305, 436], [308, 439], [312, 440]]}, "center": {"206-258, T": [333, 463]}}, +{"id": 1971, "name": "SBB CFF FFS Logo", "description": "Swiss Federal Railways (German: Schweizerische Bundesbahnen, SBB; French: Chemins de fer fédéraux suisses, CFF; Italian: Ferrovie federali svizzere, FFS)[1] is the national railway company of Switzerland. It is usually referred to by the initials of its three official names", "links": {"website": ["https://en.wikipedia.org/wiki/Swiss_Federal_Railways", "https://www.sbb.ch/"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"150-258, T": [[211, -359], [221, -359], [221, -355], [219, -354], [216, -353], [211, -353]]}, "center": {"150-258, T": [214, -356]}}, +{"id": 1972, "name": "Czech lion", "description": "Czech lion from popular history kid's show \"Dějiny udatného českého národa\"", "links": {"website": ["https://www.ceskatelevize.cz/porady/10177109865-dejiny-udatneho-ceskeho-naroda/"], "subreddit": ["czech"], "discord": ["Fx2AVgUc"]}, "path": {"205-258, T": [[-695, -116], [-703, -109], [-703, -104], [-707, -101], [-708, -93], [-707, -90], [-710, -84], [-709, -81], [-706, -80], [-683, -80], [-683, -85], [-684, -88], [-681, -93], [-681, -99], [-688, -107], [-690, -112]]}, "center": {"205-258, T": [-695, -94]}}, +{"id": 1973, "name": "Lohr a. Main (Germany)", "description": "Lohr am Main is a charming little town in the Main-Spessart administrative district. A varied cultural programme, a fairytale old town centre and a wealth of noteworthy sights attract visitors from far and wide.\n\nThe letters on r/place were placed by a small group of independent users, coordinating themselves over the \"Lohrer\" Discord which itself derived from the Local \"Meme\" page \"Lohr_Memes\"", "links": {"website": ["https://en.wikipedia.org/wiki/Lohr_am_Main", "https://www.mainpost.de/regional/main-spessart/auf-instagram-diese-drei-jungs-sind-das-sprachrohr-der-lohrer-jugend-art-10584174", "https://www.instagram.com/lohr_memes/"], "discord": ["7NuqMxE"]}, "path": {"175-258, T": [[-108, 928], [-73, 928], [-73, 939], [-92, 939], [-92, 934], [-106, 934], [-106, 928]]}, "center": {"175-258, T": [-80, 934]}}, +{"id": 1974, "name": "CatDog", "description": "Stars of the Nickelodeon show, CatDog. Named Cat, and Dog respectively. (Guess which is which.) It was a struggle just getting these lovable morons onto the canvas. But thanks to help from allies like The Bronies, Tiny Tardis, Waddle Dee Army, Costa Rica, and even just some close friends, CatDog lives on to see another victory.", "links": {}, "path": {"206-258, T": [[-1136, -323], [-1132, -321], [-1118, -322], [-1119, -330], [-1115, -333], [-1118, -335], [-1122, -333], [-1126, -341], [-1140, -340], [-1142, -332], [-1137, -328], [-1138, -323]]}, "center": {"206-258, T": [-1130, -331]}}, {"id": 1975, "name": "Blood on the Clocktower", "description": "Blood on the Clocktower is a social deduction board game designed by Steven Medway and published by the Pandemonium Institute. The art depicts the icon for the \"Imp\", a character from the game.", "links": {"website": ["https://bloodontheclocktower.com/"], "subreddit": ["BloodOnTheClocktower"]}, "path": {"181-205": [[148, -820], [152, -820], [153, -819], [154, -818], [155, -817], [156, -816], [157, -815], [157, -811], [156, -810], [155, -809], [154, -808], [153, -807], [148, -806], [147, -807], [146, -808], [145, -809], [144, -810], [143, -811], [143, -815], [144, -816], [145, -817], [146, -818], [147, -819]]}, "center": {"181-205": [150, -813]}}, -{"id": 1976, "name": "Piros Papirka", "description": "", "links": {"website": ["https://de.wikipedia.org/wiki/Er%C5%91s_Pista"]}, "path": {"184-258": [[-350, -26], [-349, -21], [-348, -18], [-339, -18], [-338, -17], [-293, -17], [-293, -26]]}, "center": {"184-258": [-321, -21]}}, -{"id": 1977, "name": "Avali", "description": "Avali, fluffy outer space birbs. The sprite is a short depiction from the Celeste Avali mod. Made by r/Avali and the Boykisser Alliance", "links": {"website": ["https://avali.fandom.com/wiki/The_Official_Avali_Wiki"], "subreddit": ["Avali"], "discord": ["nw8UPudUwf"]}, "path": {"207-258": [[-1112, 250], [-1123, 250], [-1125, 253], [-1126, 255], [-1125, 257], [-1126, 258], [-1127, 260], [-1126, 262], [-1125, 263], [-1124, 264], [-1114, 264], [-1113, 263], [-1106, 263], [-1105, 262], [-1104, 261], [-1103, 260], [-1102, 259], [-1102, 258], [-1103, 257], [-1107, 257], [-1108, 258], [-1110, 259], [-1111, 259], [-1111, 258], [-1112, 257], [-1111, 256], [-1112, 255], [-1113, 254], [-1112, 253], [-1111, 252], [-1111, 251], [-1123, 250]]}, "center": {"207-258": [-1118, 257]}}, -{"id": 1978, "name": "Wartburg", "description": "The Wartburg is a castle originally built in the Middle Ages. It is situated on a precipice of 410 meters (1,350 ft) to the southwest of and overlooking the town of Eisenach, in the state of Thuringia, Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Wartburg"]}, "path": {"197-258": [[-786, -391], [-785, -411], [-793, -415], [-797, -416], [-798, -435], [-796, -436], [-801, -441], [-805, -441], [-805, -435], [-810, -435], [-810, -416], [-814, -414], [-819, -418], [-827, -418], [-827, -417], [-843, -414], [-846, -410], [-846, -391]]}, "center": {"197-258": [-823, -404]}}, -{"id": 1979, "name": "Vira-lata Caramelo dressed as Cangaçeiro", "description": "A \"Vira Lata\" (mongrel) is a dog with no certain breed. The term Vira Lata derives from the fact that many of these animals, if abandoned, are commonly seen wandering the streets hungry, rummaging through waste cans (latas) in search of some kind of food. They are usually caramel colored (caramelo).\n\nCangaço was a phenomenon of Northeast Brazil in the late 19th and early 20th centuries. This region of Brazil is known for its aridness and hard way of life, and in a form of \"social protest\" against the government, many men and women decided to become nomadic bandits, roaming the hinterlands seeking money, food, and revenge. The members of the cangaço were called \"Cangaçeiros\", and used a characteristic leather hat, to protect themselves from the strong sun of the northeast. The hat has since become a symbol os the region.", "links": {"subreddit": ["brasil"]}, "path": {"206-258": [[-658, -722], [-662, -729], [-657, -727], [-655, -725], [-651, -734], [-647, -737], [-646, -743], [-649, -746], [-643, -751], [-639, -753], [-627, -752], [-624, -735], [-631, -714], [-644, -713], [-652, -715], [-657, -719], [-659, -724]]}, "center": {"206-258": [-640, -726]}}, +{"id": 1976, "name": "Piros Papirka", "description": "", "links": {"website": ["https://de.wikipedia.org/wiki/Er%C5%91s_Pista"]}, "path": {"184-258, T": [[-350, -26], [-349, -21], [-348, -18], [-339, -18], [-338, -17], [-293, -17], [-293, -26]]}, "center": {"184-258, T": [-321, -21]}}, +{"id": 1977, "name": "Avali", "description": "Avali, fluffy outer space birbs. The sprite is a short depiction from the Celeste Avali mod. Made by r/Avali and the Boykisser Alliance", "links": {"website": ["https://avali.fandom.com/wiki/The_Official_Avali_Wiki"], "subreddit": ["Avali"], "discord": ["nw8UPudUwf"]}, "path": {"207-258, T": [[-1112, 250], [-1123, 250], [-1125, 253], [-1126, 255], [-1125, 257], [-1126, 258], [-1127, 260], [-1126, 262], [-1125, 263], [-1124, 264], [-1114, 264], [-1113, 263], [-1106, 263], [-1105, 262], [-1104, 261], [-1103, 260], [-1102, 259], [-1102, 258], [-1103, 257], [-1107, 257], [-1108, 258], [-1110, 259], [-1111, 259], [-1111, 258], [-1112, 257], [-1111, 256], [-1112, 255], [-1113, 254], [-1112, 253], [-1111, 252], [-1111, 251], [-1123, 250]]}, "center": {"207-258, T": [-1118, 257]}}, +{"id": 1978, "name": "Wartburg", "description": "The Wartburg is a castle originally built in the Middle Ages. It is situated on a precipice of 410 meters (1,350 ft) to the southwest of and overlooking the town of Eisenach, in the state of Thuringia, Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Wartburg"]}, "path": {"197-258, T": [[-786, -391], [-785, -411], [-793, -415], [-797, -416], [-798, -435], [-796, -436], [-801, -441], [-805, -441], [-805, -435], [-810, -435], [-810, -416], [-814, -414], [-819, -418], [-827, -418], [-827, -417], [-843, -414], [-846, -410], [-846, -391]]}, "center": {"197-258, T": [-823, -404]}}, +{"id": 1979, "name": "Vira-lata Caramelo dressed as Cangaçeiro", "description": "A \"Vira Lata\" (mongrel) is a dog with no certain breed. The term Vira Lata derives from the fact that many of these animals, if abandoned, are commonly seen wandering the streets hungry, rummaging through waste cans (latas) in search of some kind of food. They are usually caramel colored (caramelo).\n\nCangaço was a phenomenon of Northeast Brazil in the late 19th and early 20th centuries. This region of Brazil is known for its aridness and hard way of life, and in a form of \"social protest\" against the government, many men and women decided to become nomadic bandits, roaming the hinterlands seeking money, food, and revenge. The members of the cangaço were called \"Cangaçeiros\", and used a characteristic leather hat, to protect themselves from the strong sun of the northeast. The hat has since become a symbol os the region.", "links": {"subreddit": ["brasil"]}, "path": {"206-258, T": [[-658, -722], [-662, -729], [-657, -727], [-655, -725], [-651, -734], [-647, -737], [-646, -743], [-649, -746], [-643, -751], [-639, -753], [-627, -752], [-624, -735], [-631, -714], [-644, -713], [-652, -715], [-657, -719], [-659, -724]]}, "center": {"206-258, T": [-640, -726]}}, {"id": 1980, "name": "Flag of Trinidad and Tobago", "description": "Officially known as the Republic of Trinidad and Tobago, it is the southernmost island country in the Caribbean. Consisting of the main islands Trinidad and Tobago and numerous much smaller islands, it is situated off the coast of northeastern Venezuela and south of Grenada.", "links": {"website": ["https://en.wikipedia.org/wiki/Trinidad_and_Tobago"], "subreddit": ["TrinidadandTobago"]}, "path": {"206-211": [[-628, 672], [-628, 677], [-621, 677], [-621, 672]]}, "center": {"206-211": [-624, 675]}}, -{"id": 1981, "name": "Eisernes Kreuz (Bundeswehr emblem)", "description": "This emblem is the symbol of the Bundeswehr, the modern day german armed forces.\n\nThe Bundeswehr emblem is intentionally distinguished from the Balkenkreuz (with straight arms) that was used by the Wehrmacht by reverting back to a stilised Tatzenkreuz (with flared arms), as used by the German empire.\n\nThe medal of the same name is no longer awarded in the Bundeswehr.", "links": {"website": ["https://www.bmvg.de/resource/blob/5225564/c3e447a6d4b0cde152ea85d253a87d0e/download-erklaerstueck-zmsbw-eisernes-kreuz-data.pdf"], "subreddit": ["bundeswehr"]}, "path": {"207-258": [[-809, -81], [-786, -81], [-787, -71], [-786, -58], [-810, -58]]}, "center": {"207-258": [-798, -69]}}, -{"id": 1982, "name": "Arizona", "description": "Arizona is one of the base roster (the poster child for the game, featured in the first chapter of the story mode, and in the taskbar tray icon for the game) playable characters in Them's Fightin' Herds, an indie fighting game developed by Mane6, Inc. and featuring a cast of adorable animals (designed by acclaimed cartoon producer Lauren Faust) sent to be the champion of their respective species, engaging in combat to determine which one of them will be worthy of securing a magical key that will protect their world from predators.\n\nArizona, bestowed the title 'Champ'een of the Prairie', is the youngest daughter of Texas and Minnesota, Head Bull and Cow of her cattlekind clan.\n\nArizona was the only one among cattlekind with courage enough to answer the Council's call in search of Foenum's Champion.\n\nDespite her young age and lack of experience, she is determined, and few are as trustworthy and dependable.\n\nIf you ask her, she'll say \"These are a few of my favorite things, Kickin, Stompin, and Kickin!\n\nThe art (depicting her striking at the leg of the enormous O Carente above her, she was protecting the brony territory no matter where they moved, whether it be against Italy or a giant monster.) was designed back in 2022 by Hazy Skies for Them's Fightin' Herds (More specifically, their Discord Community) to potentially use for a placement in the r/place event of that year, but the community wasn't aware of the event until quite late into it and weren't confident in securing a placement.\n\nNotable members pushing for Arizona on the canvas was Shadowking58 and Hazy Skies, with the help of the bronies.", "links": {"website": ["https://www.mane6.com/characters/arizona/"], "subreddit": ["ThemsFightinHerds"], "discord": ["tfh"]}, "path": {"214-258": [[532, 837], [534, 837], [534, 836], [536, 836], [536, 835], [543, 835], [543, 836], [546, 836], [546, 837], [549, 841], [549, 843], [546, 843], [546, 842], [544, 840], [542, 839], [539, 838], [539, 841], [538, 841], [538, 843], [539, 843], [539, 846], [540, 846], [540, 850], [539, 850], [539, 851], [536, 851], [536, 852], [528, 852], [528, 848], [526, 848], [526, 847], [527, 846], [529, 844], [533, 844], [533, 842], [531, 842], [531, 839], [532, 839]]}, "center": {"214-258": [533, 848]}}, -{"id": 1983, "name": "BroChoc", "description": "A french collective of streamers and artists.", "links": {"website": ["http://boloss.fr"]}, "path": {"207-258": [[-138, 580], [-138, 595], [-154, 595], [-154, 580]]}, "center": {"207-258": [-146, 588]}}, -{"id": 1984, "name": "Star Wars X-wing starfighter", "description": "Star Wars X-Wing Starfighter artwork by German Streamer Staiy in collaboration with r/starwars_place", "links": {"website": ["https://staiy.live"], "subreddit": ["starwars_place"], "discord": ["staiy", "TheGalacticRepublic"]}, "path": {"204-258": [[1074, -675], [1076, -675], [1077, -674], [1079, -674], [1080, -673], [1083, -673], [1083, -672], [1086, -672], [1086, -671], [1088, -671], [1089, -670], [1092, -670], [1093, -671], [1094, -674], [1095, -675], [1098, -675], [1099, -674], [1100, -673], [1099, -672], [1099, -669], [1100, -668], [1101, -669], [1101, -670], [1102, -671], [1111, -671], [1111, -670], [1112, -669], [1113, -670], [1113, -672], [1112, -673], [1112, -674], [1113, -675], [1113, -699], [1116, -699], [1116, -675], [1117, -674], [1117, -673], [1116, -672], [1116, -670], [1117, -669], [1118, -669], [1119, -670], [1122, -670], [1123, -671], [1125, -671], [1126, -672], [1128, -672], [1129, -673], [1131, -673], [1132, -674], [1134, -674], [1135, -675], [1135, -676], [1137, -676], [1137, -654], [1138, -654], [1138, -650], [1137, -649], [1137, -635], [1138, -634], [1138, -630], [1139, -629], [1138, -628], [1137, -627], [1137, -613], [1138, -613], [1145, -620], [1145, -617], [1139, -611], [1133, -611], [1127, -617], [1127, -620], [1135, -613], [1135, -627], [1133, -629], [1134, -630], [1134, -635], [1135, -636], [1135, -646], [1134, -647], [1133, -648], [1131, -648], [1130, -649], [1128, -649], [1127, -650], [1125, -650], [1124, -651], [1122, -651], [1121, -652], [1120, -652], [1115, -649], [1114, -641], [1113, -635], [1112, -628], [1111, -614], [1109, -611], [1107, -610], [1104, -610], [1102, -611], [1101, -616], [1100, -621], [1099, -628], [1099, -634], [1098, -640], [1097, -645], [1093, -651], [1090, -652], [1077, -645], [1077, -629], [1076, -628], [1076, -612], [1077, -612], [1081, -616], [1081, -614], [1077, -611], [1071, -611], [1065, -616], [1065, -620], [1073, -612], [1074, -614], [1074, -628], [1073, -629], [1073, -635], [1074, -636], [1074, -647], [1073, -648], [1073, -654], [1074, -655], [1074, -675], [1073, -676], [1076, -676], [1076, -675], [1077, -674], [1079, -674], [1080, -673], [1083, -672], [1086, -671], [1088, -671], [1089, -670], [1092, -670], [1093, -670], [1094, -674], [1095, -675], [1095, -699], [1098, -699], [1098, -675], [1095, -675], [1094, -674], [1094, -669], [1091, -669]]}, "center": {"204-258": [1105, -656]}}, -{"id": 1985, "name": "Momo the cat, by the Nikki community", "description": "Nikki UP2U is a franchise of dress up games about a girl named Nikki who commits various feats (such as touristing and fighting armed men) by dressing up in a suffocatingly ugly mishmash of items with the best attributes to create outfits that break the laws of physics. \n\nMomo is her talking cat and our overlord. He likes to eat BBQ and judge people.\n\nDiamonds are what you sell your soul and empty your wallet for if you want to complete your favorite hell event suits.\n\nThe heart is to show union and appreciation to our neighbors of the Faline San community, who we have peacefully shared a space with.\n\nThe blue background is filled with tears from getting bad gacha pulls, Momo's mean comments when you fail a stage, and the whole cryfest that is star sea dream.\n\nthe 2 latest games are available in the west right now: Love Nikki- Dress UP Queen and Shining Nikki. Both have quite lively and welcoming communities, so feel free to check them out :)", "links": {"website": ["https://lovenikki.fandom.com/wiki/Love_Nikki-Dress_UP_Queen!_Wiki", "https://shining-nikki.fandom.com/wiki/Shining_Nikki_Wiki", "https://www.youtube.com/channel/UClHpiutob-DW0Hylg6Jk4kw"], "subreddit": ["LoveNikki", "Shining_Nikki"]}, "path": {"79-258": [[883, 161], [872, 161], [872, 152], [868, 148], [868, 140], [864, 140], [864, 138], [865, 138], [865, 136], [865, 135], [865, 132], [883, 132], [883, 160]]}, "center": {"79-258": [876, 145]}}, -{"id": 1986, "name": "/FF (Forfeit)", "description": "A command in Valorant that allows players to give up and end the match early if it seems unwinable.", "links": {"subreddit": ["valorant"]}, "path": {"206-258": [[812, -661], [811, -661], [841, -661], [841, -674], [811, -674], [811, -661]]}, "center": {"206-258": [826, -667]}}, -{"id": 1987, "name": "Evermore", "description": "Evermore is the ninth studio album by American singer-songwriter Taylor Swift. This art was created in collaboration between r/taylorswift and r/swiftierplace", "links": {"website": ["https://en.wikipedia.org/wiki/Evermore_(Taylor_Swift_album)"], "subreddit": ["swiftierplace"], "discord": ["nHJRXk2DcA"]}, "path": {"207-258": [[1301, -635], [1228, -635], [1228, -622], [1301, -622]]}, "center": {"207-258": [1265, -628]}}, -{"id": 1988, "name": "Minetest", "description": "The logo of Minetest. Minetest is a free and open-source voxel game engine and game sharing platform. Minetest was created in 2010 by Perttu \"celeron55\" Ahola and was inspired by games like Minecraft and Infiniminer, at first it was a simple Minecraft-like survival game but as it evolved, it became a multipurpose engine allowing for the creation of original games. The logo was created on the Windows Vista taskbar by the PlaceMinetest group founded by Migdyn in 2022.", "links": {"website": ["https://www.minetest.net", "https://en.wikipedia.org/wiki/Minetest"], "subreddit": ["Minetest"], "discord": ["minetest"]}, "path": {"205-258": [[-533, 998], [-559, 998], [-559, 971], [-533, 971]]}, "center": {"205-258": [-546, 985]}}, +{"id": 1981, "name": "Eisernes Kreuz (Bundeswehr emblem)", "description": "This emblem is the symbol of the Bundeswehr, the modern day german armed forces.\n\nThe Bundeswehr emblem is intentionally distinguished from the Balkenkreuz (with straight arms) that was used by the Wehrmacht by reverting back to a stilised Tatzenkreuz (with flared arms), as used by the German empire.\n\nThe medal of the same name is no longer awarded in the Bundeswehr.", "links": {"website": ["https://www.bmvg.de/resource/blob/5225564/c3e447a6d4b0cde152ea85d253a87d0e/download-erklaerstueck-zmsbw-eisernes-kreuz-data.pdf"], "subreddit": ["bundeswehr"]}, "path": {"207-258, T": [[-809, -81], [-786, -81], [-787, -71], [-786, -58], [-810, -58]]}, "center": {"207-258, T": [-798, -69]}}, +{"id": 1982, "name": "Arizona", "description": "Arizona is one of the base roster (the poster child for the game, featured in the first chapter of the story mode, and in the taskbar tray icon for the game) playable characters in Them's Fightin' Herds, an indie fighting game developed by Mane6, Inc. and featuring a cast of adorable animals (designed by acclaimed cartoon producer Lauren Faust) sent to be the champion of their respective species, engaging in combat to determine which one of them will be worthy of securing a magical key that will protect their world from predators.\n\nArizona, bestowed the title 'Champ'een of the Prairie', is the youngest daughter of Texas and Minnesota, Head Bull and Cow of her cattlekind clan.\n\nArizona was the only one among cattlekind with courage enough to answer the Council's call in search of Foenum's Champion.\n\nDespite her young age and lack of experience, she is determined, and few are as trustworthy and dependable.\n\nIf you ask her, she'll say \"These are a few of my favorite things, Kickin, Stompin, and Kickin!\n\nThe art (depicting her striking at the leg of the enormous O Carente above her, she was protecting the brony territory no matter where they moved, whether it be against Italy or a giant monster.) was designed back in 2022 by Hazy Skies for Them's Fightin' Herds (More specifically, their Discord Community) to potentially use for a placement in the r/place event of that year, but the community wasn't aware of the event until quite late into it and weren't confident in securing a placement.\n\nNotable members pushing for Arizona on the canvas was Shadowking58 and Hazy Skies, with the help of the bronies.", "links": {"website": ["https://www.mane6.com/characters/arizona/"], "subreddit": ["ThemsFightinHerds"], "discord": ["tfh"]}, "path": {"214-258, T": [[532, 837], [534, 837], [534, 836], [536, 836], [536, 835], [543, 835], [543, 836], [546, 836], [546, 837], [549, 841], [549, 843], [546, 843], [546, 842], [544, 840], [542, 839], [539, 838], [539, 841], [538, 841], [538, 843], [539, 843], [539, 846], [540, 846], [540, 850], [539, 850], [539, 851], [536, 851], [536, 852], [528, 852], [528, 848], [526, 848], [526, 847], [527, 846], [529, 844], [533, 844], [533, 842], [531, 842], [531, 839], [532, 839]]}, "center": {"214-258, T": [533, 848]}}, +{"id": 1983, "name": "BroChoc", "description": "A french collective of streamers and artists.", "links": {"website": ["http://boloss.fr"]}, "path": {"207-258, T": [[-138, 580], [-138, 595], [-154, 595], [-154, 580]]}, "center": {"207-258, T": [-146, 588]}}, +{"id": 1984, "name": "Star Wars X-wing starfighter", "description": "Star Wars X-Wing Starfighter artwork by German Streamer Staiy in collaboration with r/starwars_place", "links": {"website": ["https://staiy.live"], "subreddit": ["starwars_place"], "discord": ["staiy", "TheGalacticRepublic"]}, "path": {"204-258, T": [[1074, -675], [1076, -675], [1077, -674], [1079, -674], [1080, -673], [1083, -673], [1083, -672], [1086, -672], [1086, -671], [1088, -671], [1089, -670], [1092, -670], [1093, -671], [1094, -674], [1095, -675], [1098, -675], [1099, -674], [1100, -673], [1099, -672], [1099, -669], [1100, -668], [1101, -669], [1101, -670], [1102, -671], [1111, -671], [1111, -670], [1112, -669], [1113, -670], [1113, -672], [1112, -673], [1112, -674], [1113, -675], [1113, -699], [1116, -699], [1116, -675], [1117, -674], [1117, -673], [1116, -672], [1116, -670], [1117, -669], [1118, -669], [1119, -670], [1122, -670], [1123, -671], [1125, -671], [1126, -672], [1128, -672], [1129, -673], [1131, -673], [1132, -674], [1134, -674], [1135, -675], [1135, -676], [1137, -676], [1137, -654], [1138, -654], [1138, -650], [1137, -649], [1137, -635], [1138, -634], [1138, -630], [1139, -629], [1138, -628], [1137, -627], [1137, -613], [1138, -613], [1145, -620], [1145, -617], [1139, -611], [1133, -611], [1127, -617], [1127, -620], [1135, -613], [1135, -627], [1133, -629], [1134, -630], [1134, -635], [1135, -636], [1135, -646], [1134, -647], [1133, -648], [1131, -648], [1130, -649], [1128, -649], [1127, -650], [1125, -650], [1124, -651], [1122, -651], [1121, -652], [1120, -652], [1115, -649], [1114, -641], [1113, -635], [1112, -628], [1111, -614], [1109, -611], [1107, -610], [1104, -610], [1102, -611], [1101, -616], [1100, -621], [1099, -628], [1099, -634], [1098, -640], [1097, -645], [1093, -651], [1090, -652], [1077, -645], [1077, -629], [1076, -628], [1076, -612], [1077, -612], [1081, -616], [1081, -614], [1077, -611], [1071, -611], [1065, -616], [1065, -620], [1073, -612], [1074, -614], [1074, -628], [1073, -629], [1073, -635], [1074, -636], [1074, -647], [1073, -648], [1073, -654], [1074, -655], [1074, -675], [1073, -676], [1076, -676], [1076, -675], [1077, -674], [1079, -674], [1080, -673], [1083, -672], [1086, -671], [1088, -671], [1089, -670], [1092, -670], [1093, -670], [1094, -674], [1095, -675], [1095, -699], [1098, -699], [1098, -675], [1095, -675], [1094, -674], [1094, -669], [1091, -669]]}, "center": {"204-258, T": [1105, -656]}}, +{"id": 1985, "name": "Momo the cat, by the Nikki community", "description": "Nikki UP2U is a franchise of dress up games about a girl named Nikki who commits various feats (such as touristing and fighting armed men) by dressing up in a suffocatingly ugly mishmash of items with the best attributes to create outfits that break the laws of physics. \n\nMomo is her talking cat and our overlord. He likes to eat BBQ and judge people.\n\nDiamonds are what you sell your soul and empty your wallet for if you want to complete your favorite hell event suits.\n\nThe heart is to show union and appreciation to our neighbors of the Faline San community, who we have peacefully shared a space with.\n\nThe blue background is filled with tears from getting bad gacha pulls, Momo's mean comments when you fail a stage, and the whole cryfest that is star sea dream.\n\nthe 2 latest games are available in the west right now: Love Nikki- Dress UP Queen and Shining Nikki. Both have quite lively and welcoming communities, so feel free to check them out :)", "links": {"website": ["https://lovenikki.fandom.com/wiki/Love_Nikki-Dress_UP_Queen!_Wiki", "https://shining-nikki.fandom.com/wiki/Shining_Nikki_Wiki", "https://www.youtube.com/channel/UClHpiutob-DW0Hylg6Jk4kw"], "subreddit": ["LoveNikki", "Shining_Nikki"]}, "path": {"79-258, T": [[883, 161], [872, 161], [872, 152], [868, 148], [868, 140], [864, 140], [864, 138], [865, 138], [865, 136], [865, 135], [865, 132], [883, 132], [883, 160]]}, "center": {"79-258, T": [876, 145]}}, +{"id": 1986, "name": "/FF (Forfeit)", "description": "A command in Valorant that allows players to give up and end the match early if it seems unwinable.", "links": {"subreddit": ["valorant"]}, "path": {"206-258, T": [[812, -661], [811, -661], [841, -661], [841, -674], [811, -674], [811, -661]]}, "center": {"206-258, T": [826, -667]}}, +{"id": 1987, "name": "Evermore", "description": "Evermore is the ninth studio album by American singer-songwriter Taylor Swift. This art was created in collaboration between r/taylorswift and r/swiftierplace", "links": {"website": ["https://en.wikipedia.org/wiki/Evermore_(Taylor_Swift_album)"], "subreddit": ["swiftierplace"], "discord": ["nHJRXk2DcA"]}, "path": {"207-258, T": [[1301, -635], [1228, -635], [1228, -622], [1301, -622]]}, "center": {"207-258, T": [1265, -628]}}, +{"id": 1988, "name": "Minetest", "description": "The logo of Minetest. Minetest is a free and open-source voxel game engine and game sharing platform. Minetest was created in 2010 by Perttu \"celeron55\" Ahola and was inspired by games like Minecraft and Infiniminer, at first it was a simple Minecraft-like survival game but as it evolved, it became a multipurpose engine allowing for the creation of original games. The logo was created on the Windows Vista taskbar by the PlaceMinetest group founded by Migdyn in 2022.", "links": {"website": ["https://www.minetest.net", "https://en.wikipedia.org/wiki/Minetest"], "subreddit": ["Minetest"], "discord": ["minetest"]}, "path": {"205-258, T": [[-533, 998], [-559, 998], [-559, 971], [-533, 971]]}, "center": {"205-258, T": [-546, 985]}}, {"id": 1989, "name": "milk outside a bag of milk outside a bag of milk", "description": "The unnamed protagonist from the horror visual novel, Milk Outside a Bag of Milk Outside a Bag of Milk.", "links": {"website": ["https://store.steampowered.com/app/1604000/Milk_outside_a_bag_of_milk_outside_a_bag_of_milk/"]}, "path": {"170-236": [[-695, 743], [-695, 740], [-694, 739], [-695, 737], [-695, 734], [-696, 730], [-695, 727], [-692, 725], [-690, 724], [-686, 724], [-682, 729], [-683, 731], [-682, 732], [-684, 737], [-682, 738], [-680, 742], [-680, 743]]}, "center": {"170-236": [-689, 731]}}, -{"id": 1990, "name": "Yet Another French Flag", "description": "ça fait beaucoup la non?", "links": {"website": ["https://en.wikipedia.org/wiki/Restaurants_du_C%C5%93ur", "https://en.wikipedia.org/wiki/November_2015_Paris_attacks"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"189-190": [[604, -797], [604, -676], [849, -676], [849, -797]], "191-258": [[599, -676], [599, -797], [850, -797], [849, -676]]}, "center": {"189-190": [727, -736], "191-258": [725, -736]}}, +{"id": 1990, "name": "Yet Another French Flag", "description": "ça fait beaucoup la non?", "links": {"website": ["https://en.wikipedia.org/wiki/Restaurants_du_C%C5%93ur", "https://en.wikipedia.org/wiki/November_2015_Paris_attacks"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"189-190": [[604, -797], [604, -676], [849, -676], [849, -797]], "191-258, T": [[599, -676], [599, -797], [850, -797], [849, -676]]}, "center": {"189-190": [727, -736], "191-258, T": [725, -736]}}, {"id": 1991, "name": "VC3 logo expansion", "description": "VC3 is a community-driven platform passionately owned and managed by a group of users who hold diverse perspectives on r/placeDE's moderation team. The revolution is considered a ban-worthy topic in r/placede's server due to its controversial nature. Embracing a spirit of independence and a desire for constructive dialogue, this community welcomes users who have experienced difficulties in r/placeDE's discord server or VC3, fostering an inclusive environment for open discussions.\nWe also have an alliance with the German south flag.", "links": {"subreddit": ["sprachkanal3"], "discord": ["RRXccGRncM"]}, "path": {"206": [[1362, 899], [1362, 910], [1391, 910], [1391, 900]]}, "center": {"206": [1368, 905]}}, -{"id": 1992, "name": "Star Wars Art", "description": "Star Wars artwork by German streamer Staiy in collaboration with r/starwars_place", "links": {"website": ["https://staiy.live"], "subreddit": ["starwars_place"], "discord": ["staiy"]}, "path": {"250-258": [[1042, -711], [1169, -711], [1169, -610], [1042, -610], [1031, -610], [1031, -712], [1043, -711], [1179, -711], [1179, -609], [1031, -610], [1031, -716], [1024, -719], [1002, -713], [1002, -760], [1027, -783], [1100, -711]]}, "center": {"250-258": [1029, -745]}}, -{"id": 1994, "name": "Holo (Spice and Wolf", "description": "Holo is a wolf harvest deity, she\nhas chosen the form of a 15-year\nold girl, though she still retains\nher large white-tipped wolf tail,\nears, and two sharp fangs. Her\ntrue form is that of a very large\nwolf which many people feared.\nShe made a promise with\ninhabitants from a town called\nPasloe that she would ensure the\ntown would have good wheat\nharvests year after year, however,\nas time went on, the\ntownspeople slowly started to\nforsake Holo, regarding her as\nunnecessary. So then, Holo\nescapes from town in Lawrence's\nwagon and started traveling with\nhim to see how much the world\nBOMBERO has changed since she has been\nin Pasloe.\nSpice and Wolf (狼と香辛料,\nOkami to Kōshinryo) is a\nJapanese light novel series that\nreceived an anime adaptation in\n2007 and had two seasons, now\nhas a remake announced for\n2024.", "links": {"website": ["https://spiceandwolf.fandom.com/wiki/Holo"], "subreddit": ["SpiceandWolf"], "discord": ["w2UWdGQK"]}, "path": {"148-258": [[-374, -911], [-373, -910], [-373, -908], [-372, -907], [-372, -906], [-371, -905], [-370, -902], [-370, -897], [-369, -895], [-368, -894], [-368, -890], [-367, -889], [-366, -890], [-366, -892], [-365, -893], [-365, -895], [-366, -895], [-366, -900], [-364, -902], [-365, -903], [-364, -904], [-365, -905], [-364, -904], [-363, -905], [-364, -904], [-363, -903], [-364, -901], [-363, -901], [-362, -900], [-362, -896], [-363, -895], [-363, -893], [-364, -892], [-364, -889], [-365, -887], [-364, -886], [-363, -885], [-362, -884], [-362, -882], [-361, -881], [-361, -880], [-362, -877], [-366, -873], [-371, -870], [-371, -868], [-370, -867], [-370, -865], [-372, -863], [-380, -863], [-379, -866], [-378, -868], [-379, -869], [-385, -872], [-387, -874], [-383, -880], [-382, -881], [-384, -884], [-381, -887], [-381, -888], [-385, -889], [-387, -890], [-386, -894], [-383, -893], [-381, -895], [-383, -899], [-384, -903], [-383, -904], [-386, -906], [-383, -909], [-377, -909], [-374, -911], [-373, -908], [-370, -904]]}, "center": {"148-258": [-372, -881]}}, -{"id": 1995, "name": "Mai Sakurajima", "description": "Small Mai Sakurajima Icon Made by r/maiplace led mainly by Eurobat, Maik, and HyTake", "links": {}, "path": {"207-258": [[-1500, 491], [-1480, 491], [-1480, 512], [-1500, 512]]}, "center": {"207-258": [-1490, 502]}}, -{"id": 1996, "name": "Bee, honeycomb and flowers", "description": "Beekeeping is an essential part of Slovenian culture with generations of beekeepers producing high-quality honey, wax, and other products. Slovenia has one of the highest percentages of beekeepers in the world with 5 out of 1000 people being one. Slovenia also has its own unique subspecies of a bee called the Carniolan honey bee, which is now the second most common honeybee in the world. The pioneer of modern beekeeping was a Slovenian, called Anton Janša. He was born on the 20th of May 1734, which is why World Bee Day is celebrated every year on the 20th of May.", "links": {"website": ["https://en.wikipedia.org/wiki/Carniolan_honey_bee", "https://en.wikipedia.org/wiki/Anton_Jan%C5%A1a", "https://www.rtvslo.si/news-in-english/slovenia-in-numbers/slovenia-has-the-most-almost-5-beekeepers-per-1-000-population-in-eu/422827"], "subreddit": ["Slovenia"], "discord": ["N8y3mNez"]}, "path": {"208-258": [[434, -119], [434, -118], [435, -118], [435, -117], [435, -116], [435, -115], [434, -115], [434, -110], [435, -110], [435, -109], [436, -109], [437, -109], [437, -108], [437, -107], [436, -107], [437, -106], [438, -107], [438, -109], [439, -109], [439, -110], [440, -110], [440, -115], [439, -115], [439, -118], [440, -118], [440, -119], [463, -117], [463, -104], [454, -104], [453, -107], [450, -107], [445, -111], [449, -114], [447, -118], [446, -119]]}, "center": {"208-258": [457, -111]}}, -{"id": 1997, "name": "A Boat Trip", "description": "This art represents The Trinity Alliance, which consists of members of the following communities: Neuro-sama, Genshin Impact, Deep Rock Galactic and Sea of Thieves.", "links": {}, "path": {"206-258": [[1236, 272], [1236, 313], [1285, 313], [1285, 272]]}, "center": {"206-258": [1261, 293]}}, -{"id": 1998, "name": "Stampy", "description": "One of two Stampy faces built by r/stampylongnose", "links": {"subreddit": ["stampylongnose"]}, "path": {"207-258": [[610, 843], [619, 843], [619, 834], [610, 834]]}, "center": {"207-258": [615, 839]}}, -{"id": 1999, "name": "Blackjack", "description": "The main character of Fallout Equestria Project Horizons.Pixel art designed by GeoDash897.", "links": {"website": ["https://falloutequestria.fandom.com/wiki/Blackjack_(Project_Horizons)"], "subreddit": ["falloutequestria"]}, "path": {"207-258": [[664, 833], [655, 833], [654, 829], [652, 828], [646, 828], [647, 824], [652, 820], [654, 816], [655, 813], [655, 808], [662, 803], [669, 802], [673, 809], [667, 818], [666, 821], [672, 821], [671, 829], [667, 829], [667, 833]]}, "center": {"207-258": [659, 823]}}, -{"id": 2000, "name": "Abdelhak Nouri", "description": "Abdelhak (Appie) is a Moroccan former professional footballer who played as a midfielder for Ajax' Youth team.\nIn July 2017, at age 20, during a pre-season friendly match, Nouri collapsed and suffered a cardiac arrhythmia attack, which left him with severe and permanent brain damage and unable to continue his career as a footballer.", "links": {"website": ["https://www.nouri-foundation.org/"]}, "path": {"208-258": [[1362, 859], [1350, 859], [1350, 857], [1347, 857], [1347, 854], [1348, 854], [1348, 851], [1349, 851], [1349, 847], [1350, 847], [1350, 845], [1351, 845], [1351, 839], [1352, 839], [1352, 838], [1353, 838], [1353, 837], [1354, 837], [1354, 836], [1356, 836], [1356, 834], [1358, 834], [1358, 833], [1363, 833], [1363, 832], [1364, 832], [1364, 831], [1367, 831], [1367, 830], [1368, 830], [1368, 829], [1372, 829], [1372, 828], [1374, 828], [1374, 827], [1375, 827], [1375, 826], [1376, 826], [1376, 825], [1388, 825], [1388, 826], [1389, 826], [1389, 827], [1390, 827], [1390, 829], [1394, 828], [1394, 829], [1395, 829], [1395, 830], [1396, 830], [1396, 831], [1398, 831], [1398, 832], [1400, 832], [1400, 833], [1403, 833], [1403, 834], [1405, 834], [1405, 835], [1406, 835], [1406, 836], [1408, 836], [1408, 837], [1409, 837], [1409, 838], [1410, 838], [1410, 839], [1411, 839], [1411, 840], [1411, 841], [1412, 841], [1412, 844], [1413, 844], [1413, 848], [1414, 848], [1414, 849], [1415, 849], [1415, 852], [1416, 852], [1416, 857], [1413, 857], [1413, 859], [1401, 859], [1401, 898], [1362, 898], [1362, 876]]}, "center": {"208-258": [1381, 849]}}, -{"id": 2001, "name": "neuroBell", "description": "NeuroBell is an emote from the AI-powered VTuber Neuro-sama who streams on Twitch. It was built in collaboration with the Neuro-sama and VTubers place Discord servers. The emote was/is commonly used in the Neuro-sama discord server when making announcements about r/place or in general. A diplomatic contact from the VTubers Place community liked the emote so much that he got a pixelart version made by one of their artists and got it on the template. It was the first thing the VTubers Place community finished on their fourth location on the final canvas expansion.\n\nThe little green thing on her head is a turtle and represents Neuro-sama's creator Vedal, who uses a tiny turtle as his own VTuber avatar when he streams together with Neuro-sama. It was originally not on the artwork as it does not appear on the original emote. However, it was suggested and designed by people in the Neuro-sama Discord server and added to the template shortly after.", "links": {"website": ["https://www.twitch.tv/vedal987"], "subreddit": ["neuroSama"], "discord": ["neurosama", "vtubersplace"]}, "path": {"203-258": [[1227, -864], [1228, -832], [1259, -832], [1259, -863], [1228, -863]]}, "center": {"203-258": [1243, -848]}}, -{"id": 2002, "name": "I placed my 🥒", "description": "\"I placed my pickle\" is a meme that was created internally by the r/osuplace community during the event. One of the main coordinators, Emanfman, mispronounced \"pixel\" and said \"pickle\" instead, so #verified-chat started to meme it. The image itself is featuring Taiga Aisaka from the 2006 light novel and 2008 anime series Toradora. The meme along with many others was used to give confirmation to the osu! Logo Builders discord stage channel that one has placed their pixel and is now on cooldown.", "links": {"website": ["https://anilist.co/anime/4224/Toradora/"], "subreddit": ["osuplace", "toradora"], "discord": ["osuplace"]}, "path": {"203-258": [[1243, 313], [1285, 313], [1285, 358], [1243, 358]]}, "center": {"203-258": [1264, 336]}}, -{"id": 2003, "name": "Stampy's Cake", "description": "Stampy loves cakes. This is part of the r/stampylongnose art", "links": {"subreddit": ["stampylongnose"]}, "path": {"208-258": [[609, 843], [620, 843], [620, 850], [609, 850]]}, "center": {"208-258": [615, 847]}}, -{"id": 2004, "name": "Monster Hunter", "description": "A pixel art about \"Kirin\", an Elder Dragon of the Monster Hunter Saga, It's first appereance was in Monster Hunter 1 (PS2)", "links": {"subreddit": ["MonsterHunter", "monster_hunter_place"]}, "path": {"208-258": [[-1466, -353], [-1476, -332], [-1483, -337], [-1489, -331], [-1489, -341], [-1494, -345], [-1487, -347], [-1485, -344], [-1482, -347], [-1485, -348], [-1480, -352], [-1473, -354], [-1468, -353]]}, "center": {"208-258": [-1478, -342]}}, -{"id": 2005, "name": "Atom Model", "description": "An atom model made as a tribute to the European Council of Nuclear Research (CERN), which is headquartered in Meyrin, a town near the Swiss-French border.", "links": {"website": ["https://www.home.cern/"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"208-258": [[-517, 874], [-515, 873], [-514, 872], [-512, 872], [-510, 873], [-507, 873], [-506, 872], [-505, 871], [-505, 870], [-504, 869], [-502, 868], [-501, 868], [-500, 868], [-499, 869], [-498, 869], [-498, 870], [-497, 870], [-497, 872], [-496, 873], [-495, 872], [-494, 872], [-493, 872], [-492, 871], [-490, 871], [-489, 872], [-488, 873], [-487, 874], [-486, 875], [-486, 877], [-486, 880], [-487, 881], [-487, 882], [-488, 883], [-488, 884], [-488, 885], [-487, 886], [-487, 888], [-486, 889], [-486, 893], [-487, 894], [-489, 895], [-489, 896], [-494, 896], [-495, 895], [-498, 895], [-499, 894], [-496, 895], [-496, 898], [-497, 899], [-498, 899], [-499, 900], [-504, 900], [-505, 899], [-506, 898], [-507, 896], [-508, 895], [-509, 895], [-510, 896], [-514, 896], [-515, 895], [-516, 895], [-517, 894], [-518, 893], [-518, 889], [-517, 888], [-516, 886], [-515, 885], [-515, 884], [-516, 884], [-516, 883], [-517, 882], [-517, 881], [-518, 880], [-518, 875]]}, "center": {"208-258": [-502, 883]}}, -{"id": 2006, "name": "Baba", "description": "Baba is the player character in the 2019 indie puzzle game Baba Is You, developed by Arvi Teikari. In the game, the rules you have to follow are present as physical objects in the game world. By manipulating the rules, you can change how the game works. Repurpose things you find in the levels and cause surprising interactions!", "links": {"website": ["https://hempuli.com/baba/", "https://en.wikipedia.org/wiki/Baba_Is_You"], "subreddit": ["BabaIsYou"]}, "path": {"208-258": [[-326, 970], [-318, 970], [-318, 965], [-320, 963], [-321, 964], [-322, 964], [-323, 963], [-324, 964], [-325, 964], [-326, 965], [-326, 967], [-325, 968], [-325, 969]]}, "center": {"208-258": [-321, 967]}}, -{"id": 2007, "name": "Ramayana: The Legend of Prince Rama", "description": "It is an anime adaptation film based on Valmiki's Ramayana released in 1993, The film was directed by Koichi Sasaki, Yugo Sako from Japan, and Ram Mohan from India. This Art shows the True love between the main protagonist Bhagwan Ram and his wife Sita Maata.", "links": {"website": ["https://en.wikipedia.org/wiki/Ramayana:_The_Legend_of_Prince_Rama"], "subreddit": ["indiaplace"]}, "path": {"142-258": [[838, -254], [837, -253], [837, -256], [838, -257], [838, -258], [843, -258], [844, -259], [845, -260], [846, -261], [847, -262], [848, -263], [848, -264], [849, -265], [849, -267], [849, -269], [850, -270], [851, -271], [852, -273], [853, -275], [854, -276], [856, -278], [857, -278], [858, -279], [858, -281], [859, -282], [861, -282], [862, -281], [862, -280], [863, -279], [863, -277], [864, -277], [864, -276], [864, -274], [865, -274], [866, -274], [866, -275], [868, -275], [869, -275], [871, -274], [872, -274], [875, -273], [875, -272], [876, -271], [877, -270], [879, -269], [880, -268], [882, -267], [883, -265], [885, -263], [886, -262], [886, -254], [838, -254], [836, -254]]}, "center": {"142-258": [860, -265]}}, -{"id": 2008, "name": "acid_fired", "description": "acid_fired is a german streamer - if he is not capable of destroying his enemies in Escape From Tarkov, he needs to take a tank to show of in World of Tanks.", "links": {"website": ["https://www.twitch.tv/acid_fired"], "discord": ["2cFz2wx3"]}, "path": {"147-258": [[-964, -220], [-962, -220], [-962, -219], [-959, -219], [-959, -218], [-957, -218], [-957, -217], [-955, -217], [-955, -216], [-953, -216], [-953, -210], [-952, -210], [-952, -206], [-953, -206], [-953, -203], [-954, -203], [-954, -201], [-955, -201], [-955, -200], [-956, -200], [-956, -199], [-957, -199], [-957, -198], [-959, -198], [-959, -197], [-962, -197], [-962, -196], [-967, -196], [-967, -197], [-969, -197], [-969, -198], [-971, -198], [-971, -199], [-972, -199], [-972, -200], [-973, -200], [-973, -201], [-974, -201], [-974, -203], [-975, -203], [-975, -206], [-976, -206], [-976, -210], [-975, -210], [-975, -215], [-974, -215], [-974, -216], [-973, -216], [-973, -217], [-971, -217], [-971, -218], [-969, -218], [-969, -219], [-966, -219], [-966, -220]]}, "center": {"147-258": [-964, -208]}}, -{"id": 2009, "name": "Team Snakemouth", "description": "The faces of Leif, Kabbu, and Vi, the three members of Team Snakemouth from the Paper Mario inspired indie game, Bug Fables: The Everlasting Sapling!", "links": {"website": ["https://bugfables.dangenentertainment.com"], "subreddit": ["BugFables"], "discord": ["bsyVDUE"]}, "path": {"208-258": [[22, 885], [55, 885], [55, 893], [22, 893]]}, "center": {"208-258": [39, 889]}}, -{"id": 2010, "name": "Aljaž Tower", "description": "Aljaž Tower (Slovene: Aljažev stolp) or the Triglav Tower (Triglavski stolp) is a triangulation point on the summit of Slovenia's tallest mountain Triglav. Along with Triglav, it is a landmark of Slovenia and a symbol of the Slovenehood.", "links": {"website": ["https://slovenia.si/this-is-slovenia/the-aljaz-tower-metal-with-a-soul/"], "subreddit": ["slovenia"], "discord": ["5ZKFcPhD"]}, "path": {"207-258": [[458, -86], [461, -87], [462, -94], [459, -103], [456, -94], [456, -90], [449, -82], [461, -82], [464, -87], [462, -90]]}, "center": {"207-258": [455, -85]}}, -{"id": 2011, "name": "AdiYogi", "description": "This Art resembles the Hindu God, Lord Shiva who is one of the three most powerful deities. The meaning says that Adi (the one who lived before all) and Yogi (a figure of very high status in Hinduism).", "links": {"website": ["https://isha.sadhguru.org/in/en/center/consecrated-spaces/112-feet-adiyogi"], "subreddit": ["indiaplace"]}, "path": {"151-258": [[710, -275], [718, -275], [719, -274], [721, -278], [724, -279], [723, -272], [723, -269], [727, -268], [731, -269], [732, -267], [729, -265], [726, -265], [726, -256], [728, -253], [730, -246], [730, -242], [732, -237], [735, -233], [741, -228], [744, -223], [742, -221], [730, -221], [686, -222], [686, -224], [691, -229], [694, -234], [690, -242], [693, -246], [695, -253], [697, -254], [697, -258], [699, -262], [701, -266], [702, -269], [704, -272], [711, -275], [712, -275]]}, "center": {"151-258": [711, -242]}}, -{"id": 2012, "name": "Memorial for the Earthquakes in Turkey", "description": "A memorial for the earthquakes (Mw 7.8 and 7.5) occurred in February 6th, 2023 in southeastern Turkey, affecting many provinces and causing an immense amount of damage and thousands of fatalities. (~60.000 deaths, 120.000 injuries and 14 million affected people)", "links": {"website": ["https://en.wikipedia.org/wiki/2023_Turkey%E2%80%93Syria_earthquake"]}, "path": {"94-258": [[-569, 367], [-569, 445], [-502, 445], [-502, 367]]}, "center": {"94-258": [-535, 406]}}, +{"id": 1992, "name": "Star Wars Art", "description": "Star Wars artwork by German streamer Staiy in collaboration with r/starwars_place", "links": {"website": ["https://staiy.live"], "subreddit": ["starwars_place"], "discord": ["staiy"]}, "path": {"250-258, T": [[1042, -711], [1169, -711], [1169, -610], [1042, -610], [1031, -610], [1031, -712], [1043, -711], [1179, -711], [1179, -609], [1031, -610], [1031, -716], [1024, -719], [1002, -713], [1002, -760], [1027, -783], [1100, -711]]}, "center": {"250-258, T": [1029, -745]}}, +{"id": 1994, "name": "Holo (Spice and Wolf", "description": "Holo is a wolf harvest deity, she\nhas chosen the form of a 15-year\nold girl, though she still retains\nher large white-tipped wolf tail,\nears, and two sharp fangs. Her\ntrue form is that of a very large\nwolf which many people feared.\nShe made a promise with\ninhabitants from a town called\nPasloe that she would ensure the\ntown would have good wheat\nharvests year after year, however,\nas time went on, the\ntownspeople slowly started to\nforsake Holo, regarding her as\nunnecessary. So then, Holo\nescapes from town in Lawrence's\nwagon and started traveling with\nhim to see how much the world\nBOMBERO has changed since she has been\nin Pasloe.\nSpice and Wolf (狼と香辛料,\nOkami to Kōshinryo) is a\nJapanese light novel series that\nreceived an anime adaptation in\n2007 and had two seasons, now\nhas a remake announced for\n2024.", "links": {"website": ["https://spiceandwolf.fandom.com/wiki/Holo"], "subreddit": ["SpiceandWolf"], "discord": ["w2UWdGQK"]}, "path": {"148-258, T": [[-374, -911], [-373, -910], [-373, -908], [-372, -907], [-372, -906], [-371, -905], [-370, -902], [-370, -897], [-369, -895], [-368, -894], [-368, -890], [-367, -889], [-366, -890], [-366, -892], [-365, -893], [-365, -895], [-366, -895], [-366, -900], [-364, -902], [-365, -903], [-364, -904], [-365, -905], [-364, -904], [-363, -905], [-364, -904], [-363, -903], [-364, -901], [-363, -901], [-362, -900], [-362, -896], [-363, -895], [-363, -893], [-364, -892], [-364, -889], [-365, -887], [-364, -886], [-363, -885], [-362, -884], [-362, -882], [-361, -881], [-361, -880], [-362, -877], [-366, -873], [-371, -870], [-371, -868], [-370, -867], [-370, -865], [-372, -863], [-380, -863], [-379, -866], [-378, -868], [-379, -869], [-385, -872], [-387, -874], [-383, -880], [-382, -881], [-384, -884], [-381, -887], [-381, -888], [-385, -889], [-387, -890], [-386, -894], [-383, -893], [-381, -895], [-383, -899], [-384, -903], [-383, -904], [-386, -906], [-383, -909], [-377, -909], [-374, -911], [-373, -908], [-370, -904]]}, "center": {"148-258, T": [-372, -881]}}, +{"id": 1995, "name": "Mai Sakurajima", "description": "Small Mai Sakurajima Icon Made by r/maiplace led mainly by Eurobat, Maik, and HyTake", "links": {}, "path": {"207-258, T": [[-1500, 491], [-1480, 491], [-1480, 512], [-1500, 512]]}, "center": {"207-258, T": [-1490, 502]}}, +{"id": 1996, "name": "Bee, honeycomb and flowers", "description": "Beekeeping is an essential part of Slovenian culture with generations of beekeepers producing high-quality honey, wax, and other products. Slovenia has one of the highest percentages of beekeepers in the world with 5 out of 1000 people being one. Slovenia also has its own unique subspecies of a bee called the Carniolan honey bee, which is now the second most common honeybee in the world. The pioneer of modern beekeeping was a Slovenian, called Anton Janša. He was born on the 20th of May 1734, which is why World Bee Day is celebrated every year on the 20th of May.", "links": {"website": ["https://en.wikipedia.org/wiki/Carniolan_honey_bee", "https://en.wikipedia.org/wiki/Anton_Jan%C5%A1a", "https://www.rtvslo.si/news-in-english/slovenia-in-numbers/slovenia-has-the-most-almost-5-beekeepers-per-1-000-population-in-eu/422827"], "subreddit": ["Slovenia"], "discord": ["N8y3mNez"]}, "path": {"208-258, T": [[434, -119], [434, -118], [435, -118], [435, -117], [435, -116], [435, -115], [434, -115], [434, -110], [435, -110], [435, -109], [436, -109], [437, -109], [437, -108], [437, -107], [436, -107], [437, -106], [438, -107], [438, -109], [439, -109], [439, -110], [440, -110], [440, -115], [439, -115], [439, -118], [440, -118], [440, -119], [463, -117], [463, -104], [454, -104], [453, -107], [450, -107], [445, -111], [449, -114], [447, -118], [446, -119]]}, "center": {"208-258, T": [457, -111]}}, +{"id": 1997, "name": "A Boat Trip", "description": "This art represents The Trinity Alliance, which consists of members of the following communities: Neuro-sama, Genshin Impact, Deep Rock Galactic and Sea of Thieves.", "links": {}, "path": {"206-258, T": [[1236, 272], [1236, 313], [1285, 313], [1285, 272]]}, "center": {"206-258, T": [1261, 293]}}, +{"id": 1998, "name": "Stampy", "description": "One of two Stampy faces built by r/stampylongnose", "links": {"subreddit": ["stampylongnose"]}, "path": {"207-258, T": [[610, 843], [619, 843], [619, 834], [610, 834]]}, "center": {"207-258, T": [615, 839]}}, +{"id": 1999, "name": "Blackjack", "description": "The main character of Fallout Equestria Project Horizons.Pixel art designed by GeoDash897.", "links": {"website": ["https://falloutequestria.fandom.com/wiki/Blackjack_(Project_Horizons)"], "subreddit": ["falloutequestria"]}, "path": {"207-258, T": [[664, 833], [655, 833], [654, 829], [652, 828], [646, 828], [647, 824], [652, 820], [654, 816], [655, 813], [655, 808], [662, 803], [669, 802], [673, 809], [667, 818], [666, 821], [672, 821], [671, 829], [667, 829], [667, 833]]}, "center": {"207-258, T": [659, 823]}}, +{"id": 2000, "name": "Abdelhak Nouri", "description": "Abdelhak (Appie) is a Moroccan former professional footballer who played as a midfielder for Ajax' Youth team.\nIn July 2017, at age 20, during a pre-season friendly match, Nouri collapsed and suffered a cardiac arrhythmia attack, which left him with severe and permanent brain damage and unable to continue his career as a footballer.", "links": {"website": ["https://www.nouri-foundation.org/"]}, "path": {"208-258, T": [[1362, 859], [1350, 859], [1350, 857], [1347, 857], [1347, 854], [1348, 854], [1348, 851], [1349, 851], [1349, 847], [1350, 847], [1350, 845], [1351, 845], [1351, 839], [1352, 839], [1352, 838], [1353, 838], [1353, 837], [1354, 837], [1354, 836], [1356, 836], [1356, 834], [1358, 834], [1358, 833], [1363, 833], [1363, 832], [1364, 832], [1364, 831], [1367, 831], [1367, 830], [1368, 830], [1368, 829], [1372, 829], [1372, 828], [1374, 828], [1374, 827], [1375, 827], [1375, 826], [1376, 826], [1376, 825], [1388, 825], [1388, 826], [1389, 826], [1389, 827], [1390, 827], [1390, 829], [1394, 828], [1394, 829], [1395, 829], [1395, 830], [1396, 830], [1396, 831], [1398, 831], [1398, 832], [1400, 832], [1400, 833], [1403, 833], [1403, 834], [1405, 834], [1405, 835], [1406, 835], [1406, 836], [1408, 836], [1408, 837], [1409, 837], [1409, 838], [1410, 838], [1410, 839], [1411, 839], [1411, 840], [1411, 841], [1412, 841], [1412, 844], [1413, 844], [1413, 848], [1414, 848], [1414, 849], [1415, 849], [1415, 852], [1416, 852], [1416, 857], [1413, 857], [1413, 859], [1401, 859], [1401, 898], [1362, 898], [1362, 876]]}, "center": {"208-258, T": [1381, 849]}}, +{"id": 2001, "name": "neuroBell", "description": "NeuroBell is an emote from the AI-powered VTuber Neuro-sama who streams on Twitch. It was built in collaboration with the Neuro-sama and VTubers place Discord servers. The emote was/is commonly used in the Neuro-sama discord server when making announcements about r/place or in general. A diplomatic contact from the VTubers Place community liked the emote so much that he got a pixelart version made by one of their artists and got it on the template. It was the first thing the VTubers Place community finished on their fourth location on the final canvas expansion.\n\nThe little green thing on her head is a turtle and represents Neuro-sama's creator Vedal, who uses a tiny turtle as his own VTuber avatar when he streams together with Neuro-sama. It was originally not on the artwork as it does not appear on the original emote. However, it was suggested and designed by people in the Neuro-sama Discord server and added to the template shortly after.", "links": {"website": ["https://www.twitch.tv/vedal987"], "subreddit": ["neuroSama"], "discord": ["neurosama", "vtubersplace"]}, "path": {"203-258, T": [[1227, -864], [1228, -832], [1259, -832], [1259, -863], [1228, -863]]}, "center": {"203-258, T": [1243, -848]}}, +{"id": 2002, "name": "I placed my 🥒", "description": "\"I placed my pickle\" is a meme that was created internally by the r/osuplace community during the event. One of the main coordinators, Emanfman, mispronounced \"pixel\" and said \"pickle\" instead, so #verified-chat started to meme it. The image itself is featuring Taiga Aisaka from the 2006 light novel and 2008 anime series Toradora. The meme along with many others was used to give confirmation to the osu! Logo Builders discord stage channel that one has placed their pixel and is now on cooldown.", "links": {"website": ["https://anilist.co/anime/4224/Toradora/"], "subreddit": ["osuplace", "toradora"], "discord": ["osuplace"]}, "path": {"203-258, T": [[1243, 313], [1285, 313], [1285, 358], [1243, 358]]}, "center": {"203-258, T": [1264, 336]}}, +{"id": 2003, "name": "Stampy's Cake", "description": "Stampy loves cakes. This is part of the r/stampylongnose art", "links": {"subreddit": ["stampylongnose"]}, "path": {"208-258, T": [[609, 843], [620, 843], [620, 850], [609, 850]]}, "center": {"208-258, T": [615, 847]}}, +{"id": 2004, "name": "Monster Hunter", "description": "A pixel art about \"Kirin\", an Elder Dragon of the Monster Hunter Saga, It's first appereance was in Monster Hunter 1 (PS2)", "links": {"subreddit": ["MonsterHunter", "monster_hunter_place"]}, "path": {"208-258, T": [[-1466, -353], [-1476, -332], [-1483, -337], [-1489, -331], [-1489, -341], [-1494, -345], [-1487, -347], [-1485, -344], [-1482, -347], [-1485, -348], [-1480, -352], [-1473, -354], [-1468, -353]]}, "center": {"208-258, T": [-1478, -342]}}, +{"id": 2005, "name": "Atom Model", "description": "An atom model made as a tribute to the European Council of Nuclear Research (CERN), which is headquartered in Meyrin, a town near the Swiss-French border.", "links": {"website": ["https://www.home.cern/"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"208-258, T": [[-517, 874], [-515, 873], [-514, 872], [-512, 872], [-510, 873], [-507, 873], [-506, 872], [-505, 871], [-505, 870], [-504, 869], [-502, 868], [-501, 868], [-500, 868], [-499, 869], [-498, 869], [-498, 870], [-497, 870], [-497, 872], [-496, 873], [-495, 872], [-494, 872], [-493, 872], [-492, 871], [-490, 871], [-489, 872], [-488, 873], [-487, 874], [-486, 875], [-486, 877], [-486, 880], [-487, 881], [-487, 882], [-488, 883], [-488, 884], [-488, 885], [-487, 886], [-487, 888], [-486, 889], [-486, 893], [-487, 894], [-489, 895], [-489, 896], [-494, 896], [-495, 895], [-498, 895], [-499, 894], [-496, 895], [-496, 898], [-497, 899], [-498, 899], [-499, 900], [-504, 900], [-505, 899], [-506, 898], [-507, 896], [-508, 895], [-509, 895], [-510, 896], [-514, 896], [-515, 895], [-516, 895], [-517, 894], [-518, 893], [-518, 889], [-517, 888], [-516, 886], [-515, 885], [-515, 884], [-516, 884], [-516, 883], [-517, 882], [-517, 881], [-518, 880], [-518, 875]]}, "center": {"208-258, T": [-502, 883]}}, +{"id": 2006, "name": "Baba", "description": "Baba is the player character in the 2019 indie puzzle game Baba Is You, developed by Arvi Teikari. In the game, the rules you have to follow are present as physical objects in the game world. By manipulating the rules, you can change how the game works. Repurpose things you find in the levels and cause surprising interactions!", "links": {"website": ["https://hempuli.com/baba/", "https://en.wikipedia.org/wiki/Baba_Is_You"], "subreddit": ["BabaIsYou"]}, "path": {"208-258, T": [[-326, 970], [-318, 970], [-318, 965], [-320, 963], [-321, 964], [-322, 964], [-323, 963], [-324, 964], [-325, 964], [-326, 965], [-326, 967], [-325, 968], [-325, 969]]}, "center": {"208-258, T": [-321, 967]}}, +{"id": 2007, "name": "Ramayana: The Legend of Prince Rama", "description": "It is an anime adaptation film based on Valmiki's Ramayana released in 1993, The film was directed by Koichi Sasaki, Yugo Sako from Japan, and Ram Mohan from India. This Art shows the True love between the main protagonist Bhagwan Ram and his wife Sita Maata.", "links": {"website": ["https://en.wikipedia.org/wiki/Ramayana:_The_Legend_of_Prince_Rama"], "subreddit": ["indiaplace"]}, "path": {"142-258, T": [[838, -254], [837, -253], [837, -256], [838, -257], [838, -258], [843, -258], [844, -259], [845, -260], [846, -261], [847, -262], [848, -263], [848, -264], [849, -265], [849, -267], [849, -269], [850, -270], [851, -271], [852, -273], [853, -275], [854, -276], [856, -278], [857, -278], [858, -279], [858, -281], [859, -282], [861, -282], [862, -281], [862, -280], [863, -279], [863, -277], [864, -277], [864, -276], [864, -274], [865, -274], [866, -274], [866, -275], [868, -275], [869, -275], [871, -274], [872, -274], [875, -273], [875, -272], [876, -271], [877, -270], [879, -269], [880, -268], [882, -267], [883, -265], [885, -263], [886, -262], [886, -254], [838, -254], [836, -254]]}, "center": {"142-258, T": [860, -265]}}, +{"id": 2008, "name": "acid_fired", "description": "acid_fired is a german streamer - if he is not capable of destroying his enemies in Escape From Tarkov, he needs to take a tank to show of in World of Tanks.", "links": {"website": ["https://www.twitch.tv/acid_fired"], "discord": ["2cFz2wx3"]}, "path": {"147-258, T": [[-964, -220], [-962, -220], [-962, -219], [-959, -219], [-959, -218], [-957, -218], [-957, -217], [-955, -217], [-955, -216], [-953, -216], [-953, -210], [-952, -210], [-952, -206], [-953, -206], [-953, -203], [-954, -203], [-954, -201], [-955, -201], [-955, -200], [-956, -200], [-956, -199], [-957, -199], [-957, -198], [-959, -198], [-959, -197], [-962, -197], [-962, -196], [-967, -196], [-967, -197], [-969, -197], [-969, -198], [-971, -198], [-971, -199], [-972, -199], [-972, -200], [-973, -200], [-973, -201], [-974, -201], [-974, -203], [-975, -203], [-975, -206], [-976, -206], [-976, -210], [-975, -210], [-975, -215], [-974, -215], [-974, -216], [-973, -216], [-973, -217], [-971, -217], [-971, -218], [-969, -218], [-969, -219], [-966, -219], [-966, -220]]}, "center": {"147-258, T": [-964, -208]}}, +{"id": 2009, "name": "Team Snakemouth", "description": "The faces of Leif, Kabbu, and Vi, the three members of Team Snakemouth from the Paper Mario inspired indie game, Bug Fables: The Everlasting Sapling!", "links": {"website": ["https://bugfables.dangenentertainment.com"], "subreddit": ["BugFables"], "discord": ["bsyVDUE"]}, "path": {"208-258, T": [[22, 885], [55, 885], [55, 893], [22, 893]]}, "center": {"208-258, T": [39, 889]}}, +{"id": 2010, "name": "Aljaž Tower", "description": "Aljaž Tower (Slovene: Aljažev stolp) or the Triglav Tower (Triglavski stolp) is a triangulation point on the summit of Slovenia's tallest mountain Triglav. Along with Triglav, it is a landmark of Slovenia and a symbol of the Slovenehood.", "links": {"website": ["https://slovenia.si/this-is-slovenia/the-aljaz-tower-metal-with-a-soul/"], "subreddit": ["slovenia"], "discord": ["5ZKFcPhD"]}, "path": {"207-258, T": [[458, -86], [461, -87], [462, -94], [459, -103], [456, -94], [456, -90], [449, -82], [461, -82], [464, -87], [462, -90]]}, "center": {"207-258, T": [455, -85]}}, +{"id": 2011, "name": "AdiYogi", "description": "This Art resembles the Hindu God, Lord Shiva who is one of the three most powerful deities. The meaning says that Adi (the one who lived before all) and Yogi (a figure of very high status in Hinduism).", "links": {"website": ["https://isha.sadhguru.org/in/en/center/consecrated-spaces/112-feet-adiyogi"], "subreddit": ["indiaplace"]}, "path": {"151-258, T": [[710, -275], [718, -275], [719, -274], [721, -278], [724, -279], [723, -272], [723, -269], [727, -268], [731, -269], [732, -267], [729, -265], [726, -265], [726, -256], [728, -253], [730, -246], [730, -242], [732, -237], [735, -233], [741, -228], [744, -223], [742, -221], [730, -221], [686, -222], [686, -224], [691, -229], [694, -234], [690, -242], [693, -246], [695, -253], [697, -254], [697, -258], [699, -262], [701, -266], [702, -269], [704, -272], [711, -275], [712, -275]]}, "center": {"151-258, T": [711, -242]}}, +{"id": 2012, "name": "Memorial for the Earthquakes in Turkey", "description": "A memorial for the earthquakes (Mw 7.8 and 7.5) occurred in February 6th, 2023 in southeastern Turkey, affecting many provinces and causing an immense amount of damage and thousands of fatalities. (~60.000 deaths, 120.000 injuries and 14 million affected people)", "links": {"website": ["https://en.wikipedia.org/wiki/2023_Turkey%E2%80%93Syria_earthquake"]}, "path": {"94-258, T": [[-569, 367], [-569, 445], [-502, 445], [-502, 367]]}, "center": {"94-258, T": [-535, 406]}}, {"id": 2013, "name": "Fernsüdflaggen (The work of Bernd the Brot)hanos", "description": "Bernd the Brothanos once snapped to destroy the work of the kick streamer who wanted to destroy others and laughed about it. These flags are de facto exclaves of the Südflagge.", "links": {"subreddit": ["placesuedflagge"]}, "path": {"194-212": [[-1000, 648], [-883, 648], [-883, 753], [-1000, 752]]}, "center": {"194-212": [-941, 700]}}, {"id": 2014, "name": "Laney Penn", "description": "A small, short-lived pixel art of the character Laney from Grojband.", "links": {"subreddit": ["Grojband"]}, "path": {"25-31": [[254, -490], [260, -490], [260, -481], [254, -481]]}, "center": {"25-31": [257, -485]}}, -{"id": 2015, "name": "The wine conflict", "description": "Since both countries could not agree whether the wine came from Austria or Bolivia, they agreed to drink it. In the end, it was a wine from the Southern Bolivian region.", "links": {}, "path": {"208-258": [[135, -26], [150, -26], [150, -45], [142, -46], [135, -37]]}, "center": {"208-258": [143, -35]}}, -{"id": 2016, "name": "Titan Submersible", "description": "Titan, a submersible created by OceanGate, was involved in an incident which caused its implosion on 18 June 2023, killing all 5 passengers on board.", "links": {"subreddit": ["PlaceOceanGate"]}, "path": {"243-258": [[-374, -988], [-374, -984], [-373, -983], [-370, -981], [-369, -981], [-369, -979], [-370, -978], [-371, -977], [-371, -976], [-370, -975], [-367, -975], [-338, -976], [-337, -977], [-321, -992], [-321, -993], [-330, -993], [-330, -994], [-331, -995], [-338, -995], [-339, -994], [-340, -993], [-346, -993], [-347, -994], [-366, -994]]}, "center": {"243-258": [-357, -985]}}, -{"id": 2017, "name": "The second Fish tank of r/placefishcult", "description": "A community dedicated to creating tiny fish on r/place", "links": {"subreddit": ["placefishcult"], "discord": ["bS7yDyaET7"]}, "path": {"154-258": [[-221, 501], [-205, 501], [-205, 521], [-221, 521]]}, "center": {"154-258": [-213, 511]}}, +{"id": 2015, "name": "The wine conflict", "description": "Since both countries could not agree whether the wine came from Austria or Bolivia, they agreed to drink it. In the end, it was a wine from the Southern Bolivian region.", "links": {}, "path": {"208-258, T": [[135, -26], [150, -26], [150, -45], [142, -46], [135, -37]]}, "center": {"208-258, T": [143, -35]}}, +{"id": 2016, "name": "Titan Submersible", "description": "Titan, a submersible created by OceanGate, was involved in an incident which caused its implosion on 18 June 2023, killing all 5 passengers on board.", "links": {"subreddit": ["PlaceOceanGate"]}, "path": {"243-258, T": [[-374, -988], [-374, -984], [-373, -983], [-370, -981], [-369, -981], [-369, -979], [-370, -978], [-371, -977], [-371, -976], [-370, -975], [-367, -975], [-338, -976], [-337, -977], [-321, -992], [-321, -993], [-330, -993], [-330, -994], [-331, -995], [-338, -995], [-339, -994], [-340, -993], [-346, -993], [-347, -994], [-366, -994]]}, "center": {"243-258, T": [-357, -985]}}, +{"id": 2017, "name": "The second Fish tank of r/placefishcult", "description": "A community dedicated to creating tiny fish on r/place", "links": {"subreddit": ["placefishcult"], "discord": ["bS7yDyaET7"]}, "path": {"154-258, T": [[-221, 501], [-205, 501], [-205, 521], [-221, 521]]}, "center": {"154-258, T": [-213, 511]}}, {"id": 2018, "name": "Handsome Squidward", "description": "It's a well known face of SpongeBob's Squidward being beautiful. \"The Two Faces of Squidward\" is a SpongeBob SquarePants episode from season 5. In this episode, SpongeBob slams Squidward's face with a door, and Squidward becomes handsome. The german streamer Papaplatte created this art.", "links": {"website": ["https://spongebob.fandom.com/wiki/The_Two_Faces_of_Squidward", "https://www.twitch.tv/papaplatte"], "subreddit": ["papaplatte"]}, "path": {"207-210": [[1334, 899], [1326, 913], [1325, 923], [1327, 925], [1325, 930], [1328, 939], [1333, 941], [1333, 951], [1329, 954], [1329, 957], [1324, 959], [1320, 962], [1318, 967], [1318, 971], [1400, 971], [1397, 956], [1387, 951], [1368, 946], [1366, 945], [1365, 939], [1369, 932], [1375, 924], [1377, 917], [1375, 909], [1370, 903], [1365, 899], [1357, 897], [1346, 897], [1334, 900]]}, "center": {"207-210": [1350, 920]}}, -{"id": 2019, "name": "2 Among Us watching the sun", "description": "Two small, a green and a pink, Among Us are seen watching the sun together while r/Place 2023 is coming to an end. They are safe and sound surrounded by Hololive to the right, LetsHugoTV below and to the left and Divi the fish from above.", "links": {"subreddit": ["AmongUsPlace"]}, "path": {"147-258": [[-680, -322], [-675, -322], [-675, -323], [-670, -323], [-670, -314], [-678, -314], [-678, -315], [-679, -315], [-679, -317], [-680, -317]]}, "center": {"147-258": [-674, -318]}}, +{"id": 2019, "name": "2 Among Us watching the sun", "description": "Two small, a green and a pink, Among Us are seen watching the sun together while r/Place 2023 is coming to an end. They are safe and sound surrounded by Hololive to the right, LetsHugoTV below and to the left and Divi the fish from above.", "links": {"subreddit": ["AmongUsPlace"]}, "path": {"147-258, T": [[-680, -322], [-675, -322], [-675, -323], [-670, -323], [-670, -314], [-678, -314], [-678, -315], [-679, -315], [-679, -317], [-680, -317]]}, "center": {"147-258, T": [-674, -318]}}, {"id": 2020, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"202-211": [[999, -367], [999, 115], [1015, 115], [1015, 101], [1032, 101], [1032, 98], [1025, 91], [1016, 73], [1014, 63], [1014, 36], [1018, 19], [1028, 5], [1038, -2], [1055, -9], [1061, -10], [1093, -10], [1114, -3], [1128, 8], [1138, 23], [1192, 23], [1208, 20], [1208, -12], [1180, -12], [1172, -10], [1155, -10], [1144, -13], [1133, -19], [1124, -31], [1119, -44], [1119, -83], [1108, -83], [1108, -12], [1036, -12], [1036, -210], [1138, -210], [1138, -179], [1185, -179], [1185, -56], [1196, -56], [1196, -179], [1205, -179], [1205, -367]]}, "center": {"202-211": [1094, -288]}}, -{"id": 2021, "name": "Flag of Germany / Extension of the Middle", "description": "Germany is a country in Central Europe.\nThe Flag is a extension of the Middle Flag \"Mittelflagge\"", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"]}, "path": {"202-258": [[1001, -611], [1001, -550], [1500, -550], [1500, -611]]}, "center": {"202-258": [1251, -580]}}, -{"id": 2022, "name": "Jerma985", "description": "Jerma985 is a Twitch streamer and retired longtime YouTuber. Creator of The Rat Movies and Jerma Rumble, he streams games from various eras. However, he's best known during his Twitch era for his unique, semi-scripted creative event streams. Like when Jerma streamed a Carnival. The Dollhouse stream, which was real-life The Sims. And even his most recent super popular Baseball stream of epic proportions (clowns and Wizards fighting each other at the end was hilarious.). \n\nPreviously, The Live-Action Jerma Rumble got released as a YouTube video. Jerma purportedly mentioned a Live-Action Jerma Rumble sequel coming in the future.\n\nDepicted here are characters and inside jokes within The Jerma985 community. Like, a Fireman with a cowboy hat chilling next to a Jerma slug with a Plumbob from The Sims above him. With Chat depicted below the slug, making a -2 Joke. To the right of Twitch chat and the Jerma slug is the Creator/streamer's username Jerma985 represented with a logo.", "links": {"website": ["https://www.twitch.tv/jerma985", "https://www.youtube.com/jerma985", "https://www.youtube.com/2ndJerma", "https://en.wikipedia.org/wiki/Jerma985"], "subreddit": ["Jerma985"]}, "path": {"208-258": [[-719, 835], [-750, 835], [-755, 837], [-758, 842], [-758, 846], [-758, 847], [-758, 856], [-754, 856], [-753, 856], [-753, 860], [-719, 860]]}, "center": {"208-258": [-738, 848]}}, -{"id": 2023, "name": "Napoleon flag", "description": "This French commemorates the French leader Napoleon Bonaparte, an important figure in the history of France. He is one of the founders of the modern French state, with the events of the French Revolution and the French Third Republic. He is a major figure in the establishment of judicial, educational, military, and technological institutions in France. However, he remains a highly controversial figure both in domestic and international affairs, and was forced into exile after a coalition of neighboring empires allied against him and invaded France.\n\nThe \"Napoleon flag\" is a project initiated by history YouTuber Christopher Lannes. The project then continued on the Discord server \"La Grande Armée\". The project was not associated with other French communities because of Napoleon's controversial legacy. Many Redditors attempted to remove the symbols from this flag to leave only a simple French flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_France#The_Tricolore", "https://en.wikipedia.org/wiki/Napoleon", "https://en.wikipedia.org/wiki/First_French_Empire", "https://en.wikipedia.org/wiki/French_Revolutionary_and_Napoleonic_Wars"], "subreddit": ["NapoleonFR"], "discord": ["DExbD66pun"]}, "path": {"172-194": [[-367, 462], [-306, 462], [-306, 587], [-367, 587]], "155-171": [[-367, 462], [-306, 462], [-306, 615], [-367, 615]], "15-154": [[-367, 462], [-306, 462], [-306, 499], [-367, 499]], "195-258": [[-367, 462], [-306, 462], [-306, 555], [-367, 555]]}, "center": {"172-194": [-336, 525], "155-171": [-336, 539], "15-154": [-336, 481], "195-258": [-336, 509]}}, -{"id": 2024, "name": "Jojo's logo and Chibi sanctuary", "description": "A rendition of the JOJO's bizarre adventure logo and icons: (from right to left, parts 1-9) The stone mask, the red stone of aja, Jotaro/Luckyland's pin, a piece sign, Giorno's Brooch, Jolyne's tattoo, Gyro's steel ball, Josuke's anchor, and Jodio's winged heart. This area also includes a mural of chibi characters from jojo and allied groups (Berserk, Yakuza, Femboys, Naruto, and Bocchi the rock), as well as Hirohiko Araki (JOJO mangaka), built without the help of the official Jojo subreddits.", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1201, -117], [-1130, -117], [-1128, -119], [-1124, -119], [-1122, -117], [-1053, -117], [-1053, -94], [-1043, -94], [-1043, -81], [-1031, -81], [-1031, -95], [-1029, -95], [-1027, -93], [-1026, -80], [-1072, -80], [-1083, -90], [-1086, -90], [-1086, -94], [-1088, -95], [-1087, -107], [-1088, -110], [-1090, -111], [-1091, -114], [-1094, -116], [-1108, -116], [-1108, -107], [-1112, -107], [-1113, -106], [-1113, -105], [-1114, -103], [-1111, -101], [-1109, -98], [-1108, -92], [-1112, -85], [-1116, -81], [-1141, -81], [-1141, -91], [-1144, -91], [-1154, -91], [-1157, -90], [-1162, -89], [-1167, -88], [-1170, -87], [-1171, -86], [-1173, -85], [-1174, -81], [-1175, -76], [-1177, -74], [-1200, -74], [-1201, -81], [-1201, -116]]}, "center": {"250-258": [-1182, -100]}}, -{"id": 2025, "name": "Tom and the Slice of Bread with Strawberry Jam and Honey", "description": "Tom and the Slice of Bread with Strawberry Jam and Honey (German title: Tom und das Erdbeermarmeladebrot mit Honig) is a German animated television series for children ages 3–8 years, created by Andreas Hykade. The series also airs in the United States in Spanish on TV network V-me. The first season consisted of 13 episodes. From 2008, three more seasons were created, each with 13 episodes.", "links": {"website": ["https://en.wikipedia.org/wiki/Tom_und_das_Erdbeermarmeladebrot_mit_Honig"]}, "path": {"187-258": [[51, -598], [62, -598], [62, -595], [66, -595], [66, -598], [67, -599], [67, -601], [73, -607], [78, -609], [81, -610], [87, -610], [92, -608], [96, -605], [99, -601], [100, -598], [101, -597], [101, -594], [100, -592], [99, -591], [93, -585], [92, -585], [90, -584], [87, -583], [79, -583], [78, -584], [76, -584], [75, -585], [74, -585], [72, -586], [71, -587], [70, -588], [69, -589], [68, -590], [67, -591], [61, -591], [61, -589], [63, -587], [63, -585], [62, -584], [61, -584], [60, -583], [60, -581], [61, -580], [63, -579], [64, -580], [66, -580], [67, -581], [70, -581], [75, -576], [75, -573], [77, -571], [74, -568], [73, -568], [70, -571], [72, -573], [73, -574], [73, -576], [71, -578], [70, -579], [67, -579], [66, -578], [63, -578], [63, -576], [65, -573], [66, -570], [68, -567], [69, -566], [69, -563], [68, -562], [67, -560], [69, -558], [71, -558], [74, -555], [72, -553], [71, -552], [70, -552], [67, -555], [68, -556], [66, -558], [65, -559], [63, -559], [62, -558], [60, -558], [59, -557], [58, -556], [60, -554], [57, -551], [56, -551], [53, -554], [58, -559], [56, -561], [55, -563], [54, -565], [54, -569], [53, -570], [53, -576], [52, -576], [51, -577], [49, -577], [48, -578], [45, -578], [44, -577], [44, -575], [43, -574], [43, -572], [46, -569], [44, -567], [44, -566], [42, -566], [39, -569], [41, -571], [41, -574], [42, -575], [42, -577], [45, -580], [48, -580], [49, -579], [53, -579], [53, -580], [55, -582], [55, -583], [52, -586], [52, -587], [51, -588], [51, -594], [50, -594], [50, -596], [51, -596]]}, "center": {"187-258": [83, -596]}}, -{"id": 2026, "name": "Camion c'est pas sorcier", "description": "A mythical truck from a television series on France 3 from 1993 to 2013, presented by Jamy Gourmaud and Fred Courant, then joined by Sabine Quindou.\n\nA French science series accessible to all French people.\n\nThis truck was driven by Marcel.", "links": {"website": ["https://en.wikipedia.org/wiki/C%27est_pas_sorcier", "https://en.wikipedia.org/wiki/C%27est_pas_sorcier", "https://www.youtube.com/@Cestpassorcierofficiel"]}, "path": {"208-258": [[1012, -282], [1020, -282], [1021, -283], [1022, -283], [1023, -284], [1023, -287], [1024, -288], [1025, -288], [1026, -289], [1027, -289], [1028, -290], [1029, -290], [1030, -291], [1031, -291], [1032, -292], [1033, -292], [1034, -293], [1035, -293], [1036, -294], [1037, -294], [1038, -295], [1039, -295], [1040, -296], [1041, -296], [1042, -297], [1043, -297], [1043, -298], [1044, -299], [1045, -299], [1047, -301], [1049, -299], [1050, -299], [1051, -298], [1054, -298], [1057, -301], [1057, -302], [1059, -304], [1060, -304], [1061, -303], [1064, -303], [1067, -306], [1067, -307], [1068, -308], [1068, -311], [1067, -312], [1067, -313], [1066, -314], [1068, -316], [1069, -316], [1070, -317], [1071, -317], [1072, -318], [1073, -318], [1074, -319], [1075, -319], [1076, -320], [1078, -320], [1079, -321], [1080, -321], [1081, -320], [1081, -318], [1083, -316], [1084, -316], [1085, -315], [1087, -315], [1088, -316], [1088, -332], [1101, -332], [1107, -335], [1107, -360], [1106, -361], [1104, -361], [1103, -362], [1102, -362], [1101, -363], [1100, -363], [1086, -370], [1085, -369], [1084, -369], [1083, -368], [1082, -368], [1081, -367], [1080, -367], [1078, -366], [1077, -365], [1076, -365], [1075, -364], [1074, -364], [1073, -363], [1072, -363], [1071, -362], [1070, -362], [1069, -361], [1068, -361], [1067, -360], [1066, -360], [1065, -359], [1064, -359], [1063, -358], [1062, -358], [1061, -357], [1060, -357], [1059, -356], [1058, -356], [1057, -355], [1056, -355], [1055, -354], [1054, -354], [1053, -353], [1052, -353], [1051, -352], [1050, -352], [1049, -351], [1048, -351], [1047, -350], [1046, -350], [1045, -349], [1044, -349], [1043, -348], [1042, -348], [1041, -347], [1040, -347], [1039, -346], [1038, -346], [1037, -345], [1036, -345], [1035, -344], [1034, -344], [1033, -343], [1032, -343], [1031, -342], [1029, -342], [1028, -341], [1028, -337], [1027, -336], [1026, -337], [1026, -348], [1026, -336], [1019, -329], [1019, -328], [1018, -327], [1018, -326], [1017, -325], [1016, -325], [1014, -323], [1013, -323], [1012, -322], [1011, -322], [1010, -321], [1009, -321], [1008, -320], [1008, -316], [1007, -315], [1006, -315], [1005, -316], [1005, -317], [1003, -317], [1003, -311], [1004, -310], [1001, -307], [1000, -307], [996, -303], [994, -303], [991, -300], [991, -299], [990, -298], [990, -294], [992, -292], [993, -292], [994, -291], [995, -291], [996, -290], [997, -290], [998, -289], [999, -289], [1000, -288], [1001, -288], [1002, -287], [1003, -287], [1004, -286], [1005, -286], [1006, -285], [1007, -285], [1008, -284], [1009, -284], [1010, -283], [1011, -283]]}, "center": {"208-258": [1047, -325]}}, -{"id": 2027, "name": "Stanley Cup", "description": "The Stanley Cup (French: La Coupe Stanley) is the championship trophy awarded annually to the National Hockey League (NHL) playoff champion.", "links": {"website": ["https://nhl.com", "https://en.wikipedia.org/wiki/Stanley_Cup"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"110-258": [[618, 240], [629, 240], [628, 240], [628, 225], [627, 225], [627, 222], [626, 222], [626, 220], [625, 220], [625, 214], [626, 214], [626, 212], [628, 212], [628, 210], [618, 210], [618, 212], [619, 212], [619, 213], [621, 213], [621, 220], [621, 221], [620, 221], [620, 223], [619, 223], [619, 239], [619, 240]]}, "center": {"110-258": [623, 227]}}, -{"id": 2028, "name": "Ghislaine Dedoldia", "description": "A character from the novel/anime series Mushoku Tensei: Jobless Reincarnation. Makes the Germans scream.", "links": {"subreddit": ["sixfacedworld", "placeDE"], "discord": ["mushokutensei"]}, "path": {"209-258": [[-1210, -551], [-1248, -551], [-1248, -552], [-1247, -553], [-1247, -555], [-1246, -556], [-1246, -557], [-1245, -558], [-1245, -559], [-1244, -559], [-1244, -564], [-1243, -564], [-1243, -567], [-1245, -567], [-1246, -568], [-1245, -569], [-1244, -569], [-1243, -569], [-1243, -570], [-1242, -571], [-1241, -572], [-1241, -573], [-1244, -573], [-1245, -574], [-1244, -575], [-1243, -575], [-1242, -575], [-1242, -576], [-1239, -576], [-1239, -577], [-1238, -578], [-1238, -579], [-1240, -579], [-1241, -580], [-1240, -581], [-1239, -581], [-1238, -582], [-1237, -583], [-1236, -584], [-1235, -585], [-1235, -586], [-1237, -586], [-1236, -587], [-1235, -588], [-1234, -590], [-1234, -591], [-1234, -592], [-1231, -595], [-1230, -596], [-1230, -597], [-1228, -599], [-1227, -599], [-1226, -600], [-1227, -601], [-1228, -602], [-1227, -603], [-1226, -604], [-1226, -605], [-1225, -606], [-1225, -607], [-1224, -608], [-1223, -607], [-1223, -606], [-1223, -605], [-1222, -604], [-1222, -603], [-1222, -602], [-1219, -602], [-1218, -602], [-1218, -605], [-1217, -605], [-1217, -607], [-1216, -609], [-1216, -608], [-1215, -607], [-1215, -606], [-1215, -605], [-1214, -605], [-1214, -603], [-1214, -602], [-1213, -602], [-1213, -601], [-1213, -600], [-1212, -599], [-1211, -598], [-1210, -597], [-1210, -596], [-1209, -595], [-1208, -594], [-1207, -593], [-1206, -592], [-1205, -591], [-1204, -591], [-1204, -590], [-1205, -590], [-1206, -590], [-1206, -589], [-1205, -588], [-1204, -587], [-1203, -586], [-1202, -585], [-1201, -585], [-1202, -584], [-1203, -584], [-1203, -583], [-1202, -582], [-1201, -581], [-1200, -580], [-1203, -576], [-1199, -579], [-1199, -578], [-1198, -578], [-1198, -577], [-1197, -577], [-1196, -578], [-1191, -578], [-1191, -577], [-1189, -577], [-1189, -576], [-1188, -576], [-1187, -576], [-1187, -577], [-1186, -578], [-1186, -581], [-1185, -582], [-1185, -584], [-1185, -585], [-1189, -585], [-1190, -586], [-1191, -587], [-1192, -588], [-1190, -589], [-1190, -590], [-1189, -591], [-1188, -591], [-1187, -592], [-1181, -592], [-1180, -591], [-1179, -590], [-1178, -590], [-1177, -589], [-1177, -585], [-1176, -584], [-1176, -579], [-1175, -578], [-1174, -577], [-1174, -568], [-1175, -567], [-1176, -566], [-1177, -565], [-1178, -565], [-1179, -564], [-1180, -563], [-1181, -563], [-1182, -563], [-1183, -562], [-1184, -562], [-1185, -562], [-1186, -561], [-1187, -561], [-1188, -560], [-1197, -560], [-1198, -561], [-1199, -561], [-1200, -561], [-1201, -562], [-1202, -562], [-1203, -562], [-1204, -562], [-1204, -560], [-1205, -559], [-1206, -558], [-1207, -557], [-1207, -556], [-1208, -555], [-1209, -554], [-1210, -553], [-1211, -552]]}, "center": {"209-258": [-1221, -570]}}, +{"id": 2021, "name": "Flag of Germany / Extension of the Middle", "description": "Germany is a country in Central Europe.\nThe Flag is a extension of the Middle Flag \"Mittelflagge\"", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"]}, "path": {"202-258, T": [[1001, -611], [1001, -550], [1500, -550], [1500, -611]]}, "center": {"202-258, T": [1251, -580]}}, +{"id": 2022, "name": "Jerma985", "description": "Jerma985 is a Twitch streamer and retired longtime YouTuber. Creator of The Rat Movies and Jerma Rumble, he streams games from various eras. However, he's best known during his Twitch era for his unique, semi-scripted creative event streams. Like when Jerma streamed a Carnival. The Dollhouse stream, which was real-life The Sims. And even his most recent super popular Baseball stream of epic proportions (clowns and Wizards fighting each other at the end was hilarious.). \n\nPreviously, The Live-Action Jerma Rumble got released as a YouTube video. Jerma purportedly mentioned a Live-Action Jerma Rumble sequel coming in the future.\n\nDepicted here are characters and inside jokes within The Jerma985 community. Like, a Fireman with a cowboy hat chilling next to a Jerma slug with a Plumbob from The Sims above him. With Chat depicted below the slug, making a -2 Joke. To the right of Twitch chat and the Jerma slug is the Creator/streamer's username Jerma985 represented with a logo.", "links": {"website": ["https://www.twitch.tv/jerma985", "https://www.youtube.com/jerma985", "https://www.youtube.com/2ndJerma", "https://en.wikipedia.org/wiki/Jerma985"], "subreddit": ["Jerma985"]}, "path": {"208-258, T": [[-719, 835], [-750, 835], [-755, 837], [-758, 842], [-758, 846], [-758, 847], [-758, 856], [-754, 856], [-753, 856], [-753, 860], [-719, 860]]}, "center": {"208-258, T": [-738, 848]}}, +{"id": 2023, "name": "Napoleon flag", "description": "This French commemorates the French leader Napoleon Bonaparte, an important figure in the history of France. He is one of the founders of the modern French state, with the events of the French Revolution and the French Third Republic. He is a major figure in the establishment of judicial, educational, military, and technological institutions in France. However, he remains a highly controversial figure both in domestic and international affairs, and was forced into exile after a coalition of neighboring empires allied against him and invaded France.\n\nThe \"Napoleon flag\" is a project initiated by history YouTuber Christopher Lannes. The project then continued on the Discord server \"La Grande Armée\". The project was not associated with other French communities because of Napoleon's controversial legacy. Many Redditors attempted to remove the symbols from this flag to leave only a simple French flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_France#The_Tricolore", "https://en.wikipedia.org/wiki/Napoleon", "https://en.wikipedia.org/wiki/First_French_Empire", "https://en.wikipedia.org/wiki/French_Revolutionary_and_Napoleonic_Wars"], "subreddit": ["NapoleonFR"], "discord": ["DExbD66pun"]}, "path": {"172-194": [[-367, 462], [-306, 462], [-306, 587], [-367, 587]], "155-171": [[-367, 462], [-306, 462], [-306, 615], [-367, 615]], "15-154": [[-367, 462], [-306, 462], [-306, 499], [-367, 499]], "195-258, T": [[-367, 462], [-306, 462], [-306, 555], [-367, 555]]}, "center": {"172-194": [-336, 525], "155-171": [-336, 539], "15-154": [-336, 481], "195-258, T": [-336, 509]}}, +{"id": 2024, "name": "Jojo's logo and Chibi sanctuary", "description": "A rendition of the JOJO's bizarre adventure logo and icons: (from right to left, parts 1-9) The stone mask, the red stone of aja, Jotaro/Luckyland's pin, a piece sign, Giorno's Brooch, Jolyne's tattoo, Gyro's steel ball, Josuke's anchor, and Jodio's winged heart. This area also includes a mural of chibi characters from jojo and allied groups (Berserk, Yakuza, Femboys, Naruto, and Bocchi the rock), as well as Hirohiko Araki (JOJO mangaka), built without the help of the official Jojo subreddits.", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1201, -117], [-1130, -117], [-1128, -119], [-1124, -119], [-1122, -117], [-1053, -117], [-1053, -94], [-1043, -94], [-1043, -81], [-1031, -81], [-1031, -95], [-1029, -95], [-1027, -93], [-1026, -80], [-1072, -80], [-1083, -90], [-1086, -90], [-1086, -94], [-1088, -95], [-1087, -107], [-1088, -110], [-1090, -111], [-1091, -114], [-1094, -116], [-1108, -116], [-1108, -107], [-1112, -107], [-1113, -106], [-1113, -105], [-1114, -103], [-1111, -101], [-1109, -98], [-1108, -92], [-1112, -85], [-1116, -81], [-1141, -81], [-1141, -91], [-1144, -91], [-1154, -91], [-1157, -90], [-1162, -89], [-1167, -88], [-1170, -87], [-1171, -86], [-1173, -85], [-1174, -81], [-1175, -76], [-1177, -74], [-1200, -74], [-1201, -81], [-1201, -116]]}, "center": {"250-258, T": [-1182, -100]}}, +{"id": 2025, "name": "Tom and the Slice of Bread with Strawberry Jam and Honey", "description": "Tom and the Slice of Bread with Strawberry Jam and Honey (German title: Tom und das Erdbeermarmeladebrot mit Honig) is a German animated television series for children ages 3–8 years, created by Andreas Hykade. The series also airs in the United States in Spanish on TV network V-me. The first season consisted of 13 episodes. From 2008, three more seasons were created, each with 13 episodes.", "links": {"website": ["https://en.wikipedia.org/wiki/Tom_und_das_Erdbeermarmeladebrot_mit_Honig"]}, "path": {"187-258, T": [[51, -598], [62, -598], [62, -595], [66, -595], [66, -598], [67, -599], [67, -601], [73, -607], [78, -609], [81, -610], [87, -610], [92, -608], [96, -605], [99, -601], [100, -598], [101, -597], [101, -594], [100, -592], [99, -591], [93, -585], [92, -585], [90, -584], [87, -583], [79, -583], [78, -584], [76, -584], [75, -585], [74, -585], [72, -586], [71, -587], [70, -588], [69, -589], [68, -590], [67, -591], [61, -591], [61, -589], [63, -587], [63, -585], [62, -584], [61, -584], [60, -583], [60, -581], [61, -580], [63, -579], [64, -580], [66, -580], [67, -581], [70, -581], [75, -576], [75, -573], [77, -571], [74, -568], [73, -568], [70, -571], [72, -573], [73, -574], [73, -576], [71, -578], [70, -579], [67, -579], [66, -578], [63, -578], [63, -576], [65, -573], [66, -570], [68, -567], [69, -566], [69, -563], [68, -562], [67, -560], [69, -558], [71, -558], [74, -555], [72, -553], [71, -552], [70, -552], [67, -555], [68, -556], [66, -558], [65, -559], [63, -559], [62, -558], [60, -558], [59, -557], [58, -556], [60, -554], [57, -551], [56, -551], [53, -554], [58, -559], [56, -561], [55, -563], [54, -565], [54, -569], [53, -570], [53, -576], [52, -576], [51, -577], [49, -577], [48, -578], [45, -578], [44, -577], [44, -575], [43, -574], [43, -572], [46, -569], [44, -567], [44, -566], [42, -566], [39, -569], [41, -571], [41, -574], [42, -575], [42, -577], [45, -580], [48, -580], [49, -579], [53, -579], [53, -580], [55, -582], [55, -583], [52, -586], [52, -587], [51, -588], [51, -594], [50, -594], [50, -596], [51, -596]]}, "center": {"187-258, T": [83, -596]}}, +{"id": 2026, "name": "Camion c'est pas sorcier", "description": "A mythical truck from a television series on France 3 from 1993 to 2013, presented by Jamy Gourmaud and Fred Courant, then joined by Sabine Quindou.\n\nA French science series accessible to all French people.\n\nThis truck was driven by Marcel.", "links": {"website": ["https://en.wikipedia.org/wiki/C%27est_pas_sorcier", "https://en.wikipedia.org/wiki/C%27est_pas_sorcier", "https://www.youtube.com/@Cestpassorcierofficiel"]}, "path": {"208-258, T": [[1012, -282], [1020, -282], [1021, -283], [1022, -283], [1023, -284], [1023, -287], [1024, -288], [1025, -288], [1026, -289], [1027, -289], [1028, -290], [1029, -290], [1030, -291], [1031, -291], [1032, -292], [1033, -292], [1034, -293], [1035, -293], [1036, -294], [1037, -294], [1038, -295], [1039, -295], [1040, -296], [1041, -296], [1042, -297], [1043, -297], [1043, -298], [1044, -299], [1045, -299], [1047, -301], [1049, -299], [1050, -299], [1051, -298], [1054, -298], [1057, -301], [1057, -302], [1059, -304], [1060, -304], [1061, -303], [1064, -303], [1067, -306], [1067, -307], [1068, -308], [1068, -311], [1067, -312], [1067, -313], [1066, -314], [1068, -316], [1069, -316], [1070, -317], [1071, -317], [1072, -318], [1073, -318], [1074, -319], [1075, -319], [1076, -320], [1078, -320], [1079, -321], [1080, -321], [1081, -320], [1081, -318], [1083, -316], [1084, -316], [1085, -315], [1087, -315], [1088, -316], [1088, -332], [1101, -332], [1107, -335], [1107, -360], [1106, -361], [1104, -361], [1103, -362], [1102, -362], [1101, -363], [1100, -363], [1086, -370], [1085, -369], [1084, -369], [1083, -368], [1082, -368], [1081, -367], [1080, -367], [1078, -366], [1077, -365], [1076, -365], [1075, -364], [1074, -364], [1073, -363], [1072, -363], [1071, -362], [1070, -362], [1069, -361], [1068, -361], [1067, -360], [1066, -360], [1065, -359], [1064, -359], [1063, -358], [1062, -358], [1061, -357], [1060, -357], [1059, -356], [1058, -356], [1057, -355], [1056, -355], [1055, -354], [1054, -354], [1053, -353], [1052, -353], [1051, -352], [1050, -352], [1049, -351], [1048, -351], [1047, -350], [1046, -350], [1045, -349], [1044, -349], [1043, -348], [1042, -348], [1041, -347], [1040, -347], [1039, -346], [1038, -346], [1037, -345], [1036, -345], [1035, -344], [1034, -344], [1033, -343], [1032, -343], [1031, -342], [1029, -342], [1028, -341], [1028, -337], [1027, -336], [1026, -337], [1026, -348], [1026, -336], [1019, -329], [1019, -328], [1018, -327], [1018, -326], [1017, -325], [1016, -325], [1014, -323], [1013, -323], [1012, -322], [1011, -322], [1010, -321], [1009, -321], [1008, -320], [1008, -316], [1007, -315], [1006, -315], [1005, -316], [1005, -317], [1003, -317], [1003, -311], [1004, -310], [1001, -307], [1000, -307], [996, -303], [994, -303], [991, -300], [991, -299], [990, -298], [990, -294], [992, -292], [993, -292], [994, -291], [995, -291], [996, -290], [997, -290], [998, -289], [999, -289], [1000, -288], [1001, -288], [1002, -287], [1003, -287], [1004, -286], [1005, -286], [1006, -285], [1007, -285], [1008, -284], [1009, -284], [1010, -283], [1011, -283]]}, "center": {"208-258, T": [1047, -325]}}, +{"id": 2027, "name": "Stanley Cup", "description": "The Stanley Cup (French: La Coupe Stanley) is the championship trophy awarded annually to the National Hockey League (NHL) playoff champion.", "links": {"website": ["https://nhl.com", "https://en.wikipedia.org/wiki/Stanley_Cup"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"110-258, T": [[618, 240], [629, 240], [628, 240], [628, 225], [627, 225], [627, 222], [626, 222], [626, 220], [625, 220], [625, 214], [626, 214], [626, 212], [628, 212], [628, 210], [618, 210], [618, 212], [619, 212], [619, 213], [621, 213], [621, 220], [621, 221], [620, 221], [620, 223], [619, 223], [619, 239], [619, 240]]}, "center": {"110-258, T": [623, 227]}}, +{"id": 2028, "name": "Ghislaine Dedoldia", "description": "A character from the novel/anime series Mushoku Tensei: Jobless Reincarnation. Makes the Germans scream.", "links": {"subreddit": ["sixfacedworld", "placeDE"], "discord": ["mushokutensei"]}, "path": {"209-258, T": [[-1210, -551], [-1248, -551], [-1248, -552], [-1247, -553], [-1247, -555], [-1246, -556], [-1246, -557], [-1245, -558], [-1245, -559], [-1244, -559], [-1244, -564], [-1243, -564], [-1243, -567], [-1245, -567], [-1246, -568], [-1245, -569], [-1244, -569], [-1243, -569], [-1243, -570], [-1242, -571], [-1241, -572], [-1241, -573], [-1244, -573], [-1245, -574], [-1244, -575], [-1243, -575], [-1242, -575], [-1242, -576], [-1239, -576], [-1239, -577], [-1238, -578], [-1238, -579], [-1240, -579], [-1241, -580], [-1240, -581], [-1239, -581], [-1238, -582], [-1237, -583], [-1236, -584], [-1235, -585], [-1235, -586], [-1237, -586], [-1236, -587], [-1235, -588], [-1234, -590], [-1234, -591], [-1234, -592], [-1231, -595], [-1230, -596], [-1230, -597], [-1228, -599], [-1227, -599], [-1226, -600], [-1227, -601], [-1228, -602], [-1227, -603], [-1226, -604], [-1226, -605], [-1225, -606], [-1225, -607], [-1224, -608], [-1223, -607], [-1223, -606], [-1223, -605], [-1222, -604], [-1222, -603], [-1222, -602], [-1219, -602], [-1218, -602], [-1218, -605], [-1217, -605], [-1217, -607], [-1216, -609], [-1216, -608], [-1215, -607], [-1215, -606], [-1215, -605], [-1214, -605], [-1214, -603], [-1214, -602], [-1213, -602], [-1213, -601], [-1213, -600], [-1212, -599], [-1211, -598], [-1210, -597], [-1210, -596], [-1209, -595], [-1208, -594], [-1207, -593], [-1206, -592], [-1205, -591], [-1204, -591], [-1204, -590], [-1205, -590], [-1206, -590], [-1206, -589], [-1205, -588], [-1204, -587], [-1203, -586], [-1202, -585], [-1201, -585], [-1202, -584], [-1203, -584], [-1203, -583], [-1202, -582], [-1201, -581], [-1200, -580], [-1203, -576], [-1199, -579], [-1199, -578], [-1198, -578], [-1198, -577], [-1197, -577], [-1196, -578], [-1191, -578], [-1191, -577], [-1189, -577], [-1189, -576], [-1188, -576], [-1187, -576], [-1187, -577], [-1186, -578], [-1186, -581], [-1185, -582], [-1185, -584], [-1185, -585], [-1189, -585], [-1190, -586], [-1191, -587], [-1192, -588], [-1190, -589], [-1190, -590], [-1189, -591], [-1188, -591], [-1187, -592], [-1181, -592], [-1180, -591], [-1179, -590], [-1178, -590], [-1177, -589], [-1177, -585], [-1176, -584], [-1176, -579], [-1175, -578], [-1174, -577], [-1174, -568], [-1175, -567], [-1176, -566], [-1177, -565], [-1178, -565], [-1179, -564], [-1180, -563], [-1181, -563], [-1182, -563], [-1183, -562], [-1184, -562], [-1185, -562], [-1186, -561], [-1187, -561], [-1188, -560], [-1197, -560], [-1198, -561], [-1199, -561], [-1200, -561], [-1201, -562], [-1202, -562], [-1203, -562], [-1204, -562], [-1204, -560], [-1205, -559], [-1206, -558], [-1207, -557], [-1207, -556], [-1208, -555], [-1209, -554], [-1210, -553], [-1211, -552]]}, "center": {"209-258, T": [-1221, -570]}}, {"id": 2029, "name": "Lola Daviet", "description": "Lola Daviet was a 12-year-old French girl who was tortured, raped, and killed by an illegal Algerian migrant. The incident garnered controversy after some politicians used this murder to criticize Emmanuel Macron's policy about migrants under a \"legal obligation to leave French territory\". The family of Lola rejects any use of the tragedy for politics.\n\nThis art was drawn by French activist and streamer KrocBlanc as a tribute to Lola. It was later destroyed by German streamers because of controversy regarding the tribute's inclusion on the canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Killing_of_Lola_Daviet"]}, "path": {"206-244": [[1001, -864], [1000, -711], [1078, -711], [1078, -863], [1001, -863]], "251-258": [[1001, -81], [1001, -35], [1008, -35], [1008, -41], [1010, -45], [1022, -42], [1026, -38], [1026, -33], [1024, -29], [1024, -27], [1036, -27], [1036, -81], [1025, -81], [1025, -85], [1010, -85], [1010, -81]]}, "center": {"206-244": [1039, -787], "251-258": [1019, -61]}}, -{"id": 2030, "name": "Ghibli Characters", "description": "These are 2 characters from the Studio Ghibli : No-Face from \"Spirited Away\" (2001) and Calcifer from \"Howl's Moving Castle\" (2004). It's a tribute to the studio's director, Hayao Miyazaki, whose last film was released a few days before the start of r/place 2023.\nThis art could be completed thanks to the collaboration of the STI2D community above them.", "links": {"subreddit": ["Ghibli"], "discord": ["fFbNHhHT"]}, "path": {"169-258": [[-498, 26], [-500, 28], [-501, 36], [-501, 46], [-497, 47], [-495, 45], [-492, 41], [-493, 38], [-491, 36], [-491, 28], [-494, 26]]}, "center": {"169-258": [-496, 34]}}, -{"id": 2032, "name": "Laško beer", "description": "Laško beer is one of the two most popular beer brands in Slovenia, the other one being Union. The Laško Brewery is located in the town of Laško and is the biggest brewery in Slovenia.", "links": {"website": ["https://en.wikipedia.org/wiki/La%C5%A1ko_Brewery"], "subreddit": ["Slovenia"], "discord": ["N8y3mNez"]}, "path": {"209-258": [[403, -77], [406, -77], [406, -78], [407, -78], [407, -87], [406, -87], [406, -98], [401, -98], [401, -96], [402, -96], [402, -95], [403, -95], [403, -87], [402, -87], [402, -78], [403, -78]]}, "center": {"209-258": [405, -85]}}, -{"id": 2033, "name": "Flag of Quebec", "description": "Quebec is a Canadian province with a heavily French past and many French speakers throughout the province. This has led to multiple proposals for independence from Canada, but two votes on this subject both failed. Most of Quebec's industry and people are the south near the St. Lawrence River, as it is stationed right at the beginning of the strategic river. The capital, Quebec City, and Quebec's largest city, Montreal, are both located there.\n\nThis area contains numerous references to Quebec, including:\n-The Quebec provincial flag (Fleurdelisé)\n-The artwork \"Le Vieu de 37\"\n-\"Je me souviens\", meaning \"I remember\")\n-Poutine (famous dish)\n-Rocher Percé (geological monument)\n-Montreal Canadien hockey team logo\n-Quebec Nordique hockey team logo (defunct)\n-Outline of the province (incorrectly claiming Labrador)\n-Construction cones, referring to widespread road work\n-Chateau Frontenac\n-Numerous flags\n-A maple syrup can design\n-Infoman logo, a local TV show\n-Quebec Bridge\n-Patriot passing the snow blower\n-Hydro-Québec logo\n-\"Passe-Partout\" key\n-Medicine wheel\n-Guy Lafleur hockey jersey\n-Karl of the Cowboys Fringants\n-Romano Fafard\n-Poppy / Coquelicot\n-Snowflakes\n-Samuel de Champlain (tugboat)\n-Gilles Villeneuve\n-Montreal Metro\n-Stanley Cup\n\nThe flag has:\n-Been grief by a drawing of xQc sucking a banana\n-Been destroyed at first by Turkey\n-Been grief by bots drawing a Discord link", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Quebec"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"57-258": [[631, 125], [631, 204], [452, 204], [452, 177], [453, 177], [453, 176], [454, 176], [454, 175], [455, 175], [455, 174], [456, 174], [456, 173], [457, 173], [457, 172], [458, 172], [458, 171], [459, 171], [459, 169], [460, 169], [460, 167], [461, 167], [461, 163], [461, 162], [460, 162], [460, 161], [459, 161], [459, 160], [458, 160], [458, 159], [453, 159], [453, 160], [452, 160], [452, 124]]}, "center": {"57-258": [542, 164]}}, -{"id": 2034, "name": "Gilles Villeneuve", "description": "Joseph Gilles Henri Villeneuve (French pronunciation: ​[ʒil vilnœv]) (January 18, 1950 – May 8, 1982) was a Canadian racing driver who spent six years in Formula One racing for Ferrari, winning six Grands Prix and earning widespread acclaim for his performances.\n\nAn enthusiast of cars and fast driving from an early age, Villeneuve started his professional career in snowmobile racing in his native province of Quebec. He moved into single seaters, winning the US and Canadian Formula Atlantic championships in 1976, before being offered a drive in Formula One with the McLaren team at the 1977 British Grand Prix. He was taken on by reigning world champions Ferrari for the end of the season and drove for the Italian team from 1978 until his death in 1982. Villeneuve won six Grand Prix races in a short career at the highest level, and claimed second, his highest finish, in the 1979 Formula One World Championship; four points behind teammate Jody Scheckter.\n\nVilleneuve died in a 140 mph (230 km/h) crash resulting from a collision with the March car driven by Jochen Mass during qualifying for the 1982 Belgian Grand Prix at Zolder. The accident came less than two weeks after an intense argument with his teammate, Didier Pironi, over Pironi's move to pass Villeneuve at the preceding San Marino Grand Prix. At the time of his death, Villeneuve was extremely popular with fans and has since become an iconic figure in the history of the sport. His son, Jacques Villeneuve, became Formula One World Champion in 1997, to date the only Canadian to win the Formula One World Championship.", "links": {"website": ["https://en.wikipedia.org/wiki/Gilles_Villeneuve"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"203-258": [[673, 572], [673, 548], [627, 548], [627, 549], [627, 550], [626, 550], [626, 551], [625, 551], [625, 552], [624, 552], [624, 572]]}, "center": {"203-258": [649, 560]}}, -{"id": 2035, "name": "Slifer the Sky Dragon / Void Dragon", "description": "This piece of art was created in a short period of time right after the canvas extension. This dragon is a Yu-Gi-Oh! card. The well-known streamer xQc attacked the middle of the canvas and after Papaplatte's defense, xQc sent his viewers to destroy this (Papaplatte's, little credit to Stegi) dragon. The German discord and other streamers helped to defend the dragon. Because of the huge number of people, the dragon's pixels froze for a short time. It was a very epic battle that resulted in a cooperation of xQc and Papaplatte.\n\nOn July 25, around 6:30 GMT, the adjacent Vietnamese flag, which was built by the 'mixi gaming' community, began to grow rapidly and the unofficial expansion of the Vietnamese flag began. When it became clear that the mixis had nothing to do with it and were not planning an invasion, but the attack came from a group of antifan bots trying to start a war between mixi-gaming community and the rest, the Void (also known as the Swarm), the German community under Stegi's and Papaplatte's leadership, and the Vietnamese mixi gaming community joined forces to launch a counter-offensive against the bot supremacy. When this succeeded after some time, the members of the alliance began to restore Slifer the Sky Dragon. \n\nTo honor the joint victory against first the powerful enemy xQc and then against the bot superiority with the help of the Void, Papaplatte and Stegi decided in communication with the Void to rework the dragon according to its history. A member of the Void group (/u/Omni-1001) finally provided the design for this.\nFirst the old dragon should disappear completely in a cloud of smoke so that the void dragon could be born out of the chaos. This was also done with the help of u/octazid who translated the german actions to the void.", "links": {"website": ["https://yugipedia.com/wiki/Slifer_the_Sky_Dragon", "https://www.twitch.com/papaplatte", "https://www.twitch.com/xqc", "https://www.twitch.tv/stegi", "https://www.reddit.com/u/Omni-1001"], "subreddit": ["papaplatte", "xQc", "theblackvoid", "theswarm"], "discord": ["placeDE"]}, "path": {"209-258": [[1118, 616], [1140, 603], [1167, 606], [1176, 625], [1192, 618], [1194, 642], [1158, 622], [1154, 634], [1132, 636], [1117, 659], [1111, 671], [1122, 689], [1120, 699], [1126, 694], [1128, 704], [1134, 700], [1150, 706], [1195, 699], [1204, 692], [1194, 682], [1166, 690], [1143, 684], [1140, 668], [1146, 660], [1155, 657], [1169, 658], [1192, 673], [1194, 681], [1231, 677], [1240, 663], [1265, 648], [1294, 634], [1310, 650], [1321, 671], [1313, 681], [1293, 669], [1271, 683], [1271, 693], [1281, 694], [1288, 688], [1306, 691], [1262, 697], [1230, 677], [1194, 681], [1204, 692], [1205, 699], [1212, 697], [1240, 717], [1301, 721], [1354, 694], [1352, 700], [1364, 706], [1384, 692], [1379, 706], [1387, 707], [1395, 696], [1394, 710], [1414, 690], [1406, 677], [1370, 686], [1369, 659], [1322, 637], [1302, 616], [1310, 613], [1321, 624], [1323, 638], [1369, 659], [1394, 642], [1411, 656], [1428, 638], [1433, 661], [1466, 633], [1490, 654], [1496, 638], [1490, 587], [1462, 544], [1416, 529], [1424, 583], [1406, 614], [1397, 607], [1366, 628], [1355, 601], [1339, 589], [1365, 589], [1384, 569], [1327, 578], [1290, 571], [1286, 550], [1275, 574], [1261, 576], [1247, 544], [1261, 523], [1225, 533], [1165, 563], [1143, 575], [1122, 596]]}, "center": {"209-258": [1236, 613]}}, -{"id": 2036, "name": "STI2D", "description": "STI2D is the name of a french highschool program. This acronym stands for 'sciences and technologies of industry and sustainable development'.\n\nIt represent 5% of french highschool students but has a strong community.\n\nThey're know for doing crazy stuff at school, like chair towers \"defying the laws of gravity\" according to them, and are famous for that in France.", "links": {"subreddit": ["sti2d_"]}, "path": {"109-258": [[-500, 9], [-500, 18], [-499, 18], [-498, 21], [-497, 22], [-497, 25], [-491, 26], [-490, 28], [-479, 27], [-475, 24], [-476, 18], [-477, 17], [-478, 8], [-500, 8]]}, "center": {"109-258": [-487, 18]}}, -{"id": 2037, "name": "Santos-Dumont 14-bis", "description": "The 14-bis also known as Oiseau de proie (\"bird of prey\") was a pioneer era, canard-style biplane designed and built by Brazilian aviation pioneer Alberto Santos-Dumont. In 1906, near Paris, the 14-bis made a manned powered flight that was the first to be publicly witnessed by a crowd.\n\nThe 14-bis was the first heavier-than-air plane to be able to take off by its own means,without the need of external help. Because of this, Dumont is considered by Brazilians as the inventor of the modern airplane.\n\nDumont was born and raised in Brazil, but lived for 22 years in Paris, as his family was of French origin.\n\nSantos-Dumont is a national hero in Brazil. Numerous roads, plazas, schools, monuments, and airports there are dedicated to him, and his name is inscribed on the Tancredo Neves Pantheon of the Fatherland and Freedom.\n\n\"On the way to the Eiffel Tower, not once did I look up at the rooftops of Paris: I was floating over a sea of white and blue, seeing nothing but my goal.\"", "links": {"website": ["https://en.wikipedia.org/wiki/Alberto_Santos-Dumont"], "subreddit": ["brasil", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"209-258": [[1092, -305], [1096, -273], [1102, -268], [1106, -267], [1111, -264], [1124, -264], [1139, -260], [1143, -263], [1142, -270], [1138, -275], [1130, -279], [1126, -282], [1123, -287], [1121, -301], [1127, -302], [1132, -298], [1132, -294], [1134, -291], [1136, -289], [1140, -291], [1141, -295], [1149, -294], [1150, -291], [1152, -289], [1156, -290], [1158, -294], [1158, -298], [1162, -303], [1165, -301], [1169, -301], [1167, -291], [1165, -282], [1159, -278], [1151, -275], [1149, -270], [1148, -266], [1149, -262], [1152, -260], [1156, -263], [1163, -263], [1168, -265], [1174, -264], [1183, -266], [1193, -271], [1195, -280], [1198, -304], [1204, -306], [1204, -333], [1154, -337], [1146, -347], [1143, -346], [1134, -337], [1087, -333], [1087, -304]]}, "center": {"209-258": [1144, -317]}}, -{"id": 2038, "name": "Pont Jacques-Cartier", "description": "The Jacques Cartier Bridge (French: pont Jacques-Cartier) is a steel truss cantilever bridge crossing the Saint Lawrence River from Montreal Island, Montreal, Quebec, to the south shore at Longueuil, Quebec, Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/Jacques_Cartier_Bridge"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"175-258": [[518, 198], [518, 194], [522, 194], [523, 193], [527, 192], [534, 185], [539, 190], [542, 192], [545, 193], [549, 194], [550, 195], [562, 195], [565, 193], [568, 193], [569, 192], [570, 192], [571, 191], [572, 190], [573, 189], [574, 190], [575, 191], [576, 192], [577, 189], [578, 192], [578, 194], [577, 196]]}, "center": {"175-258": [534, 193]}}, -{"id": 2039, "name": "Draining Love Story", "description": "2020 Album cover of the breakcore artist Sewerslvt", "links": {"subreddit": ["sewerslvt"]}, "path": {"202-258": [[-158, -864], [-120, -864], [-120, -825], [-159, -825]]}, "center": {"202-258": [-139, -844]}}, +{"id": 2030, "name": "Ghibli Characters", "description": "These are 2 characters from the Studio Ghibli : No-Face from \"Spirited Away\" (2001) and Calcifer from \"Howl's Moving Castle\" (2004). It's a tribute to the studio's director, Hayao Miyazaki, whose last film was released a few days before the start of r/place 2023.\nThis art could be completed thanks to the collaboration of the STI2D community above them.", "links": {"subreddit": ["Ghibli"], "discord": ["fFbNHhHT"]}, "path": {"169-258, T": [[-498, 26], [-500, 28], [-501, 36], [-501, 46], [-497, 47], [-495, 45], [-492, 41], [-493, 38], [-491, 36], [-491, 28], [-494, 26]]}, "center": {"169-258, T": [-496, 34]}}, +{"id": 2032, "name": "Laško beer", "description": "Laško beer is one of the two most popular beer brands in Slovenia, the other one being Union. The Laško Brewery is located in the town of Laško and is the biggest brewery in Slovenia.", "links": {"website": ["https://en.wikipedia.org/wiki/La%C5%A1ko_Brewery"], "subreddit": ["Slovenia"], "discord": ["N8y3mNez"]}, "path": {"209-258, T": [[403, -77], [406, -77], [406, -78], [407, -78], [407, -87], [406, -87], [406, -98], [401, -98], [401, -96], [402, -96], [402, -95], [403, -95], [403, -87], [402, -87], [402, -78], [403, -78]]}, "center": {"209-258, T": [405, -85]}}, +{"id": 2033, "name": "Flag of Quebec", "description": "Quebec is a Canadian province with a heavily French past and many French speakers throughout the province. This has led to multiple proposals for independence from Canada, but two votes on this subject both failed. Most of Quebec's industry and people are the south near the St. Lawrence River, as it is stationed right at the beginning of the strategic river. The capital, Quebec City, and Quebec's largest city, Montreal, are both located there.\n\nThis area contains numerous references to Quebec, including:\n-The Quebec provincial flag (Fleurdelisé)\n-The artwork \"Le Vieu de 37\"\n-\"Je me souviens\", meaning \"I remember\")\n-Poutine (famous dish)\n-Rocher Percé (geological monument)\n-Montreal Canadien hockey team logo\n-Quebec Nordique hockey team logo (defunct)\n-Outline of the province (incorrectly claiming Labrador)\n-Construction cones, referring to widespread road work\n-Chateau Frontenac\n-Numerous flags\n-A maple syrup can design\n-Infoman logo, a local TV show\n-Quebec Bridge\n-Patriot passing the snow blower\n-Hydro-Québec logo\n-\"Passe-Partout\" key\n-Medicine wheel\n-Guy Lafleur hockey jersey\n-Karl of the Cowboys Fringants\n-Romano Fafard\n-Poppy / Coquelicot\n-Snowflakes\n-Samuel de Champlain (tugboat)\n-Gilles Villeneuve\n-Montreal Metro\n-Stanley Cup\n\nThe flag has:\n-Been grief by a drawing of xQc sucking a banana\n-Been destroyed at first by Turkey\n-Been grief by bots drawing a Discord link", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Quebec"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"57-258, T": [[631, 125], [631, 204], [452, 204], [452, 177], [453, 177], [453, 176], [454, 176], [454, 175], [455, 175], [455, 174], [456, 174], [456, 173], [457, 173], [457, 172], [458, 172], [458, 171], [459, 171], [459, 169], [460, 169], [460, 167], [461, 167], [461, 163], [461, 162], [460, 162], [460, 161], [459, 161], [459, 160], [458, 160], [458, 159], [453, 159], [453, 160], [452, 160], [452, 124]]}, "center": {"57-258, T": [542, 164]}}, +{"id": 2034, "name": "Gilles Villeneuve", "description": "Joseph Gilles Henri Villeneuve (French pronunciation: ​[ʒil vilnœv]) (January 18, 1950 – May 8, 1982) was a Canadian racing driver who spent six years in Formula One racing for Ferrari, winning six Grands Prix and earning widespread acclaim for his performances.\n\nAn enthusiast of cars and fast driving from an early age, Villeneuve started his professional career in snowmobile racing in his native province of Quebec. He moved into single seaters, winning the US and Canadian Formula Atlantic championships in 1976, before being offered a drive in Formula One with the McLaren team at the 1977 British Grand Prix. He was taken on by reigning world champions Ferrari for the end of the season and drove for the Italian team from 1978 until his death in 1982. Villeneuve won six Grand Prix races in a short career at the highest level, and claimed second, his highest finish, in the 1979 Formula One World Championship; four points behind teammate Jody Scheckter.\n\nVilleneuve died in a 140 mph (230 km/h) crash resulting from a collision with the March car driven by Jochen Mass during qualifying for the 1982 Belgian Grand Prix at Zolder. The accident came less than two weeks after an intense argument with his teammate, Didier Pironi, over Pironi's move to pass Villeneuve at the preceding San Marino Grand Prix. At the time of his death, Villeneuve was extremely popular with fans and has since become an iconic figure in the history of the sport. His son, Jacques Villeneuve, became Formula One World Champion in 1997, to date the only Canadian to win the Formula One World Championship.", "links": {"website": ["https://en.wikipedia.org/wiki/Gilles_Villeneuve"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"203-258, T": [[673, 572], [673, 548], [627, 548], [627, 549], [627, 550], [626, 550], [626, 551], [625, 551], [625, 552], [624, 552], [624, 572]]}, "center": {"203-258, T": [649, 560]}}, +{"id": 2035, "name": "Slifer the Sky Dragon / Void Dragon", "description": "This piece of art was created in a short period of time right after the canvas extension. This dragon is a Yu-Gi-Oh! card. The well-known streamer xQc attacked the middle of the canvas and after Papaplatte's defense, xQc sent his viewers to destroy this (Papaplatte's, little credit to Stegi) dragon. The German discord and other streamers helped to defend the dragon. Because of the huge number of people, the dragon's pixels froze for a short time. It was a very epic battle that resulted in a cooperation of xQc and Papaplatte.\n\nOn July 25, around 6:30 GMT, the adjacent Vietnamese flag, which was built by the 'mixi gaming' community, began to grow rapidly and the unofficial expansion of the Vietnamese flag began. When it became clear that the mixis had nothing to do with it and were not planning an invasion, but the attack came from a group of antifan bots trying to start a war between mixi-gaming community and the rest, the Void (also known as the Swarm), the German community under Stegi's and Papaplatte's leadership, and the Vietnamese mixi gaming community joined forces to launch a counter-offensive against the bot supremacy. When this succeeded after some time, the members of the alliance began to restore Slifer the Sky Dragon. \n\nTo honor the joint victory against first the powerful enemy xQc and then against the bot superiority with the help of the Void, Papaplatte and Stegi decided in communication with the Void to rework the dragon according to its history. A member of the Void group (/u/Omni-1001) finally provided the design for this.\nFirst the old dragon should disappear completely in a cloud of smoke so that the void dragon could be born out of the chaos. This was also done with the help of u/octazid who translated the german actions to the void.", "links": {"website": ["https://yugipedia.com/wiki/Slifer_the_Sky_Dragon", "https://www.twitch.com/papaplatte", "https://www.twitch.com/xqc", "https://www.twitch.tv/stegi", "https://www.reddit.com/u/Omni-1001"], "subreddit": ["papaplatte", "xQc", "theblackvoid", "theswarm"], "discord": ["placeDE"]}, "path": {"209-258, T": [[1118, 616], [1140, 603], [1167, 606], [1176, 625], [1192, 618], [1194, 642], [1158, 622], [1154, 634], [1132, 636], [1117, 659], [1111, 671], [1122, 689], [1120, 699], [1126, 694], [1128, 704], [1134, 700], [1150, 706], [1195, 699], [1204, 692], [1194, 682], [1166, 690], [1143, 684], [1140, 668], [1146, 660], [1155, 657], [1169, 658], [1192, 673], [1194, 681], [1231, 677], [1240, 663], [1265, 648], [1294, 634], [1310, 650], [1321, 671], [1313, 681], [1293, 669], [1271, 683], [1271, 693], [1281, 694], [1288, 688], [1306, 691], [1262, 697], [1230, 677], [1194, 681], [1204, 692], [1205, 699], [1212, 697], [1240, 717], [1301, 721], [1354, 694], [1352, 700], [1364, 706], [1384, 692], [1379, 706], [1387, 707], [1395, 696], [1394, 710], [1414, 690], [1406, 677], [1370, 686], [1369, 659], [1322, 637], [1302, 616], [1310, 613], [1321, 624], [1323, 638], [1369, 659], [1394, 642], [1411, 656], [1428, 638], [1433, 661], [1466, 633], [1490, 654], [1496, 638], [1490, 587], [1462, 544], [1416, 529], [1424, 583], [1406, 614], [1397, 607], [1366, 628], [1355, 601], [1339, 589], [1365, 589], [1384, 569], [1327, 578], [1290, 571], [1286, 550], [1275, 574], [1261, 576], [1247, 544], [1261, 523], [1225, 533], [1165, 563], [1143, 575], [1122, 596]]}, "center": {"209-258, T": [1236, 613]}}, +{"id": 2036, "name": "STI2D", "description": "STI2D is the name of a french highschool program. This acronym stands for 'sciences and technologies of industry and sustainable development'.\n\nIt represent 5% of french highschool students but has a strong community.\n\nThey're know for doing crazy stuff at school, like chair towers \"defying the laws of gravity\" according to them, and are famous for that in France.", "links": {"subreddit": ["sti2d_"]}, "path": {"109-258, T": [[-500, 9], [-500, 18], [-499, 18], [-498, 21], [-497, 22], [-497, 25], [-491, 26], [-490, 28], [-479, 27], [-475, 24], [-476, 18], [-477, 17], [-478, 8], [-500, 8]]}, "center": {"109-258, T": [-487, 18]}}, +{"id": 2037, "name": "Santos-Dumont 14-bis", "description": "The 14-bis also known as Oiseau de proie (\"bird of prey\") was a pioneer era, canard-style biplane designed and built by Brazilian aviation pioneer Alberto Santos-Dumont. In 1906, near Paris, the 14-bis made a manned powered flight that was the first to be publicly witnessed by a crowd.\n\nThe 14-bis was the first heavier-than-air plane to be able to take off by its own means,without the need of external help. Because of this, Dumont is considered by Brazilians as the inventor of the modern airplane.\n\nDumont was born and raised in Brazil, but lived for 22 years in Paris, as his family was of French origin.\n\nSantos-Dumont is a national hero in Brazil. Numerous roads, plazas, schools, monuments, and airports there are dedicated to him, and his name is inscribed on the Tancredo Neves Pantheon of the Fatherland and Freedom.\n\n\"On the way to the Eiffel Tower, not once did I look up at the rooftops of Paris: I was floating over a sea of white and blue, seeing nothing but my goal.\"", "links": {"website": ["https://en.wikipedia.org/wiki/Alberto_Santos-Dumont"], "subreddit": ["brasil", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"209-258, T": [[1092, -305], [1096, -273], [1102, -268], [1106, -267], [1111, -264], [1124, -264], [1139, -260], [1143, -263], [1142, -270], [1138, -275], [1130, -279], [1126, -282], [1123, -287], [1121, -301], [1127, -302], [1132, -298], [1132, -294], [1134, -291], [1136, -289], [1140, -291], [1141, -295], [1149, -294], [1150, -291], [1152, -289], [1156, -290], [1158, -294], [1158, -298], [1162, -303], [1165, -301], [1169, -301], [1167, -291], [1165, -282], [1159, -278], [1151, -275], [1149, -270], [1148, -266], [1149, -262], [1152, -260], [1156, -263], [1163, -263], [1168, -265], [1174, -264], [1183, -266], [1193, -271], [1195, -280], [1198, -304], [1204, -306], [1204, -333], [1154, -337], [1146, -347], [1143, -346], [1134, -337], [1087, -333], [1087, -304]]}, "center": {"209-258, T": [1144, -317]}}, +{"id": 2038, "name": "Pont Jacques-Cartier", "description": "The Jacques Cartier Bridge (French: pont Jacques-Cartier) is a steel truss cantilever bridge crossing the Saint Lawrence River from Montreal Island, Montreal, Quebec, to the south shore at Longueuil, Quebec, Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/Jacques_Cartier_Bridge"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"175-258, T": [[518, 198], [518, 194], [522, 194], [523, 193], [527, 192], [534, 185], [539, 190], [542, 192], [545, 193], [549, 194], [550, 195], [562, 195], [565, 193], [568, 193], [569, 192], [570, 192], [571, 191], [572, 190], [573, 189], [574, 190], [575, 191], [576, 192], [577, 189], [578, 192], [578, 194], [577, 196]]}, "center": {"175-258, T": [534, 193]}}, +{"id": 2039, "name": "Draining Love Story", "description": "2020 Album cover of the breakcore artist Sewerslvt", "links": {"subreddit": ["sewerslvt"]}, "path": {"202-258, T": [[-158, -864], [-120, -864], [-120, -825], [-159, -825]]}, "center": {"202-258, T": [-139, -844]}}, {"id": 2040, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"202-218": [[1000, -864], [1000, -711], [1228, -711], [1228, -864]]}, "center": {"202-218": [1114, -787]}}, -{"id": 2041, "name": "Flag of Germany (Extension of the North)", "description": "Germany is a country in Central Europe. The Flag is a extension of the Northern Flag \"Nordflagge\"", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"]}, "path": {"203-258": [[1179, -1000], [1179, -912], [1228, -912], [1228, -933], [1284, -933], [1284, -912], [1500, -912], [1500, -1000]]}, "center": {"203-258": [1340, -956]}}, -{"id": 2042, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe. This flag is used both by the Kingdom of the Netherlands and by its constituent nation, the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"203-258": [[1001, -551], [1001, -520], [1406, -520], [1406, -551]]}, "center": {"203-258": [1204, -535]}}, -{"id": 2043, "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"], "discord": ["placearg"]}, "path": {"202-258": [[1005, 898], [1401, 898], [1401, 999], [1005, 999]]}, "center": {"202-258": [1203, 949]}}, -{"id": 2044, "name": "Mustafa Kemal Atatürk", "description": "Mustafa Kemal Atatürk is the founder and first president of the Republic of Turkey.", "links": {"website": ["https://en.wikipedia.org/wiki/Mustafa_Kemal_Atat%C3%BCrk"], "subreddit": ["Turkey"]}, "path": {"202-258": [[1244, 780], [1244, 898], [1345, 898], [1345, 780]]}, "center": {"202-258": [1295, 839]}}, -{"id": 2045, "name": "Hornet", "description": "Hornet is the main character in the upcoming game Hollow Knight: Silksong. She was also a major character in the original Hollow Knight game.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Hornet"], "subreddit": ["HKPlace", "HollowKnight", "Silksong"], "discord": ["RKWC7ZUVnz"]}, "path": {"203-258": [[1227, -934], [1227, -864], [1278, -864], [1278, -884], [1285, -884], [1285, -934]]}, "center": {"203-258": [1256, -905]}}, -{"id": 2054, "name": "Woman, Life, Freedom", "description": "\"Woman, Life, Freedom\" is a slogan used by protestors against the treatment of women in Iran by the government. These protests have intensified recently in response to the death of Mahsa Amini, who was mortally wounded by the Iranian morality police for not wearing a hijab in public. This art is written in the Iranian language of Persian/Farsi with the colors of Iran's flag.\n\nThis art was organized by Iranian streamer AdMiRaL_TideBringer.", "links": {"website": ["https://en.wikipedia.org/wiki/Mahsa_Amini_protests", "https://en.wikipedia.org/wiki/Woman,_Life,_Freedom"], "subreddit": ["Admiral_TideBringer"]}, "path": {"203-258": [[1228, -786], [1229, -635], [1389, -635], [1389, -786]]}, "center": {"203-258": [1309, -710]}}, -{"id": 2055, "name": "Mini Kirby", "description": "Kirby is the main protagonist of a video game series of the same name developed by HAL Laboratory and its games mostly published by Nintendo. \nThis mini Kirby was made with the help of the Touhou r/place discord server, hence why it is placed directly next to the \"Good Apple?\" pixel art.", "links": {"discord": ["apl"]}, "path": {"250-258": [[-1431, -654], [-1431, -653], [-1418, -653], [-1418, -640], [-1430, -640]]}, "center": {"250-258": [-1424, -647]}}, -{"id": 2056, "name": "Reputation", "description": "Reputation is the sixth studio album by American singer-songwriter Taylor Swift.", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"210-258": [[-1445, 678], [-1445, 703], [-1420, 703], [-1420, 678]]}, "center": {"210-258": [-1432, 691]}}, -{"id": 2057, "name": "Benny the French Pikmin", "description": "Benny the Pikmin is designed by the discord server benny the Pikmin. Benny is French as a thank you to the French community for offering this place on the canvas.", "links": {"subreddit": ["pikmin"]}, "path": {"209-258": [[-1025, 223], [-1015, 223], [-1015, 241], [-1025, 241]]}, "center": {"209-258": [-1020, 232]}}, -{"id": 2058, "name": "Cviček wine", "description": "Cviček is a Slovenian wine produced in the Lower Carniola (Dolenjska) region of Slovenia. It is made from both red and white grape species. The wine has a low alcohol content of 8.5-10% and has a slightly acidic taste. It was once seen as a wine for the poor but is now gaining more and more popularity with both locals and tourists enjoying it.", "links": {"website": ["https://en.wikipedia.org/wiki/Cvi%C4%8Dek"], "subreddit": ["Slovenia"], "discord": ["N8y3mNez"]}, "path": {"209-258": [[413, -77], [414, -77], [414, -78], [415, -78], [415, -82], [414, -82], [414, -83], [413, -83], [413, -87], [418, -87], [418, -83], [417, -83], [417, -82], [416, -82], [416, -78], [417, -78], [417, -77], [418, -77]]}, "center": {"209-258": [415, -85]}}, -{"id": 2059, "name": "Ice Pikmin", "description": "Ice Pikmin, are a new type of Pikmin in Pikmin 4, this type of Pikmin can freeze enemies. When enough ice pikmin make contact with a body of water, it will freeze, allowing the player character to traverse through it with ease.\n\nThis Ice Pikmin was created by the benny the Pikmin discord server.", "links": {"subreddit": ["pikmin"]}, "path": {"209-258": [[-1015, 223], [-1005, 223], [-1005, 241], [-1015, 241]]}, "center": {"209-258": [-1010, 232]}}, -{"id": 2060, "name": "Maple syrup", "description": "Maple syrup, first made by the indigenous peoples of North America, is now an important part of Quebec's culture. Quebec is an iconic producer of maple syrup, responsible for more than 70% of maple syrup exports.", "links": {"website": ["https://en.wikipedia.org/wiki/Maple_syrup"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"123-258": [[762, 207], [762, 218], [764, 218], [764, 219], [767, 219], [767, 218], [774, 218], [774, 217], [775, 217], [775, 216], [780, 216], [780, 215], [783, 215], [784, 215], [784, 217], [784, 218], [783, 218], [783, 222], [784, 222], [784, 223], [785, 223], [786, 223], [786, 224], [789, 224], [789, 225], [793, 225], [793, 226], [800, 226], [800, 225], [802, 225], [802, 220], [803, 220], [803, 215], [804, 215], [804, 210], [805, 210], [805, 205], [807, 205], [807, 215], [808, 215], [808, 221], [807, 221], [807, 222], [806, 222], [807, 222], [807, 228], [808, 225], [808, 222], [808, 198], [807, 198], [807, 197], [806, 197], [806, 196], [804, 196], [804, 195], [801, 195], [801, 194], [798, 194], [797, 194], [797, 193], [790, 193], [790, 194], [789, 194], [789, 195], [789, 196], [788, 196], [788, 197], [788, 198], [787, 198], [786, 198], [786, 199], [785, 199], [785, 200], [785, 201], [784, 200], [784, 201], [784, 202], [783, 202], [783, 203], [782, 203], [782, 204], [781, 204], [781, 205], [780, 205], [780, 206], [779, 206], [778, 206], [778, 207], [776, 207], [776, 208], [771, 208], [771, 207]]}, "center": {"123-258": [793, 209]}}, -{"id": 2061, "name": "Infoman", "description": "Infoman is a half-hour-long televised series satirizing the current events of Quebec, Canada, and the world hosted by Jean-René Dufort on Ici Radio-Canada Télé. While the logo is not accurate and not a part of the r/Quebec canva, it was made by FedQc (a streamer from Gaspésie Quebec) during the night shift of r/Quebec and remained until the end.", "links": {"website": ["https://en.wikipedia.org/wiki/Infoman", "https://ici.radio-canada.ca/tele/infoman/site"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"85-258": [[745, 135], [753, 135], [753, 136], [754, 136], [754, 137], [755, 137], [755, 138], [756, 138], [756, 139], [757, 139], [757, 140], [758, 140], [757, 140], [757, 141], [756, 141], [756, 142], [755, 142], [755, 143], [754, 143], [754, 144], [753, 144], [753, 145], [752, 145], [752, 146], [751, 146], [751, 147], [750, 147], [750, 148], [749, 148], [749, 149], [749, 148], [748, 148], [748, 147], [747, 147], [747, 146], [746, 146], [746, 145], [745, 145], [745, 144], [744, 144], [744, 143], [743, 143], [743, 142], [742, 142], [742, 141], [741, 141], [741, 140], [740, 140], [741, 140], [741, 139], [742, 139], [742, 138], [743, 138], [743, 137], [744, 137], [744, 136], [745, 136]]}, "center": {"85-258": [749, 141]}}, -{"id": 2062, "name": "Pikmin", "description": "Pikmin is a three-dimensional real-time strategy game in which the player is given control of a (or multiple) captain(s), who in turn has control over the Pikmin that follow him.", "links": {"subreddit": ["pikmin"]}, "path": {"209-258": [[-1025, 223], [-1005, 223], [-1005, 241], [-1007, 241], [-1007, 250], [-1039, 250], [-1048, 250], [-1048, 241], [-1025, 241]]}, "center": {"209-258": [-1015, 235]}}, -{"id": 2063, "name": "Chibiruto", "description": "Chibi version of Naruto", "links": {"subreddit": ["PlaceNaruto"], "discord": ["WMy7NF37"]}, "path": {"210-258": [[378, -975], [378, -956], [391, -956], [391, -974]]}, "center": {"210-258": [385, -965]}}, -{"id": 2064, "name": "OHNE <3", "description": "A thank you from the DaD Community, to Twitch streamer OhnePixel, for assisting them in a crucial point, enabling expansion southwards.", "links": {"subreddit": ["ohnePixel", "DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"210-258": [[-232, 566], [-226, 566], [-226, 535], [-233, 535], [-232, 552]]}, "center": {"210-258": [-229, 542]}}, -{"id": 2065, "name": "Speak Now (Taylor's Version)", "description": "Speak Now (Taylor's Version) is the third re-recorded album by American singer-songwriter Taylor Swift,", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"210-258": [[-1420, 744], [-1421, 719], [-1445, 719], [-1445, 745]]}, "center": {"210-258": [-1433, 732]}}, -{"id": 2066, "name": "Bearing", "description": "The Bearing is a part in the videogame Scrap Mechanic.", "links": {"subreddit": ["ScrapMechanic"]}, "path": {"210-258": [[-784, 849], [-784, 857], [-781, 860], [-773, 860], [-770, 857], [-770, 849], [-773, 846], [-781, 846], [-784, 850]]}, "center": {"210-258": [-777, 853]}}, -{"id": 2067, "name": "Touhou 11: Subterranean Animism", "description": "The icon of Touhou 11: Subterranean Animism, depicting the character Kirisame Marisa.\n\nTouhou Chireiden ~ Subterranean Animism is the eleventh main game of the Touhou Project scrolling shooter series by Team Shanghai Alice. The game was released on August 16, 2008, during the 74th Comiket.", "links": {"website": ["https://en.wikipedia.org/wiki/Subterranean_Animism"], "subreddit": ["touhou", "placestart"], "discord": ["apl"]}, "path": {"165-258": [[-48, 974], [-27, 974], [-27, 995], [-48, 995]]}, "center": {"165-258": [-37, 985]}}, -{"id": 2068, "name": "Minato with Rasengan", "description": "The Fourth Hokage from Naruto performing the Rasengan.", "links": {"subreddit": ["PlaceNaruto"], "discord": ["WMy7NF37"]}, "path": {"196-258": [[-975, -940], [-974, -941], [-974, -942], [-975, -943], [-975, -944], [-976, -945], [-976, -947], [-977, -948], [-977, -949], [-978, -950], [-978, -951], [-979, -952], [-979, -953], [-981, -955], [-980, -956], [-980, -957], [-978, -959], [-978, -963], [-979, -964], [-979, -965], [-980, -966], [-980, -967], [-980, -977], [-982, -977], [-983, -978], [-989, -978], [-991, -976], [-991, -970], [-990, -969], [-990, -968], [-990, -967], [-991, -966], [-992, -966], [-994, -964], [-995, -964], [-996, -963], [-996, -965], [-997, -966], [-996, -967], [-997, -968], [-998, -968], [-999, -969], [-999, -970], [-1000, -971], [-1001, -970], [-1001, -968], [-1002, -967], [-1004, -967], [-1004, -968], [-1003, -969], [-1003, -970], [-1004, -971], [-1006, -971], [-1007, -970], [-1008, -969], [-1008, -964], [-1009, -963], [-1010, -963], [-1010, -965], [-1009, -966], [-1009, -968], [-1010, -969], [-1012, -967], [-1012, -966], [-1014, -964], [-1014, -962], [-1011, -959], [-1011, -958], [-1010, -957], [-1011, -957], [-1012, -956], [-1013, -957], [-1013, -958], [-1014, -959], [-1015, -958], [-1015, -955], [-1012, -952], [-1008, -952], [-1007, -953], [-1007, -954], [-1006, -955], [-1005, -954], [-1005, -953], [-1007, -951], [-1008, -951], [-1009, -952], [-1010, -952], [-1011, -951], [-1008, -948], [-1007, -948], [-1006, -949], [-1005, -949], [-1004, -950], [-1003, -950], [-1002, -951], [-1001, -951], [-1000, -952], [-1000, -957], [-999, -957], [-999, -955], [-998, -954], [-998, -953], [-1000, -951], [-1000, -950], [-999, -949], [-998, -949], [-994, -953], [-994, -956], [-995, -957], [-994, -958], [-994, -959], [-993, -960], [-992, -960], [-992, -955], [-993, -954], [-993, -953], [-996, -950], [-996, -949], [-997, -948], [-997, -946], [-998, -945], [-998, -944], [-999, -943], [-999, -941], [-1000, -940], [-1000, -936], [-999, -935], [-999, -931], [-995, -931], [-994, -932], [-996, -934], [-997, -934], [-997, -938], [-994, -941], [-992, -941], [-992, -940], [-993, -939], [-993, -934], [-994, -933], [-994, -931], [-990, -931], [-989, -932], [-989, -934], [-988, -935], [-988, -939], [-988, -937], [-985, -937], [-985, -931], [-980, -931], [-979, -932], [-980, -933], [-980, -934], [-979, -934], [-977, -932], [-976, -932], [-975, -931], [-974, -931], [-973, -932], [-973, -937], [-974, -938], [-974, -942], [-975, -943]]}, "center": {"196-258": [-986, -947]}}, -{"id": 2069, "name": "K-On!", "description": "\"K-On!\" is a delightful and heartwarming anime that follows the adventures of five high school girls forming a band in their light music club. The story centers around Yui Hirasawa, a carefree girl with no musical experience, who joins the club at Sakuragaoka High School. Together with talented Mio, enthusiastic Ritsu, wealthy Tsumugi, and shy but talented Azusa, they bond over music and friendship. Originally aired in 2009, this anime became a massive hit and remains immensely popular to this day.\nThe five girls are also depicted on the top of this artwork, above the text. From left to right they are: Ritsu, Mio, Yui, Asuza and Mugi. Asuza is depicted with catears, as a hairband with catears is often placed on her head unexpectedly by several of the characters in the anime. It is also the only way to distinguish her from Mio in a 3x3 pixelart form...\n\nThis artwork was made by a (possibly bunch of) dedicated fans of K-On! from the Bocchi The Rock Discord server. Originally the artwork was built where Fubuki fishing Bocchi would end up, so the VTuber community reserved the final spot for K-On! above the VShojo logo.", "links": {"website": ["https://www.tbs.co.jp/anime/k-on/"], "subreddit": ["k_on"], "discord": ["kon"]}, "path": {"210-258": [[-586, -321], [-558, -321], [-558, -307], [-587, -307]]}, "center": {"210-258": [-572, -314]}}, -{"id": 2070, "name": "Chicho", "description": "A black cat that randomly appeared on the area r/PlaceFemboy was drawing Astolfo on.\n\nYoutube Streamer ZenBooda1 decided to include the cat in the official Template and decided to name the cat Midnight.\n\nHowever, it was later said that the cat already had a name \"Chicho\", named after the dead cat of the original creator's (LeiDy-17) BF, and was created as a gift to the cat.", "links": {"website": ["https://www.youtube.com/@ZenBooda1"], "subreddit": ["PlaceFemboy", "femboy"]}, "path": {"210-258": [[632, 927], [632, 938], [638, 938], [638, 927]]}, "center": {"210-258": [635, 933]}}, -{"id": 2071, "name": "Scottish Art", "description": "Some art created by r/Scotland, after a 3 day long battle against 4chan bots. It includes a Castle, a Lemming, an Irn Bru, a Highland Coo, a Traffic Cone, a Tennent's and of course Scotland's national flower, the Thistle. The text originally spelled 'A P Aye' in reference to the API changes, but was later changed to a shortened version of the Scottish phrase \"Och aye the noo\"", "links": {"subreddit": ["Scotland"]}, "path": {"115-258": [[-334, -259], [-303, -259], [-303, -222], [-334, -222]]}, "center": {"115-258": [-318, -240]}}, -{"id": 2072, "name": "Sorbians", "description": "We are the Sorbians, a Slavic minority in Germany, this is our symbol. (In it you can see our flag)", "links": {"subreddit": ["placeSORB"]}, "path": {"211-258": [[374, -1000], [368, -995], [369, -991], [371, -990], [374, -990], [375, -991], [373, -986], [377, -989], [377, -990], [382, -993], [382, -995], [379, -997], [376, -999]]}, "center": {"211-258": [374, -995]}}, +{"id": 2041, "name": "Flag of Germany (Extension of the North)", "description": "Germany is a country in Central Europe. The Flag is a extension of the Northern Flag \"Nordflagge\"", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"]}, "path": {"203-258, T": [[1179, -1000], [1179, -912], [1228, -912], [1228, -933], [1284, -933], [1284, -912], [1500, -912], [1500, -1000]]}, "center": {"203-258, T": [1340, -956]}}, +{"id": 2042, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe. This flag is used both by the Kingdom of the Netherlands and by its constituent nation, the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"203-258, T": [[1001, -551], [1001, -520], [1406, -520], [1406, -551]]}, "center": {"203-258, T": [1204, -535]}}, +{"id": 2043, "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"], "discord": ["placearg"]}, "path": {"202-258, T": [[1005, 898], [1401, 898], [1401, 999], [1005, 999]]}, "center": {"202-258, T": [1203, 949]}}, +{"id": 2044, "name": "Mustafa Kemal Atatürk", "description": "Mustafa Kemal Atatürk is the founder and first president of the Republic of Turkey.", "links": {"website": ["https://en.wikipedia.org/wiki/Mustafa_Kemal_Atat%C3%BCrk"], "subreddit": ["Turkey"]}, "path": {"202-258, T": [[1244, 780], [1244, 898], [1345, 898], [1345, 780]]}, "center": {"202-258, T": [1295, 839]}}, +{"id": 2045, "name": "Hornet", "description": "Hornet is the main character in the upcoming game Hollow Knight: Silksong. She was also a major character in the original Hollow Knight game.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Hornet"], "subreddit": ["HKPlace", "HollowKnight", "Silksong"], "discord": ["RKWC7ZUVnz"]}, "path": {"203-258, T": [[1227, -934], [1227, -864], [1278, -864], [1278, -884], [1285, -884], [1285, -934]]}, "center": {"203-258, T": [1256, -905]}}, +{"id": 2054, "name": "Woman, Life, Freedom", "description": "\"Woman, Life, Freedom\" is a slogan used by protestors against the treatment of women in Iran by the government. These protests have intensified recently in response to the death of Mahsa Amini, who was mortally wounded by the Iranian morality police for not wearing a hijab in public. This art is written in the Iranian language of Persian/Farsi with the colors of Iran's flag.\n\nThis art was organized by Iranian streamer AdMiRaL_TideBringer.", "links": {"website": ["https://en.wikipedia.org/wiki/Mahsa_Amini_protests", "https://en.wikipedia.org/wiki/Woman,_Life,_Freedom"], "subreddit": ["Admiral_TideBringer"]}, "path": {"203-258, T": [[1228, -786], [1229, -635], [1389, -635], [1389, -786]]}, "center": {"203-258, T": [1309, -710]}}, +{"id": 2055, "name": "Mini Kirby", "description": "Kirby is the main protagonist of a video game series of the same name developed by HAL Laboratory and its games mostly published by Nintendo. \nThis mini Kirby was made with the help of the Touhou r/place discord server, hence why it is placed directly next to the \"Good Apple?\" pixel art.", "links": {"discord": ["apl"]}, "path": {"250-258, T": [[-1431, -654], [-1431, -653], [-1418, -653], [-1418, -640], [-1430, -640]]}, "center": {"250-258, T": [-1424, -647]}}, +{"id": 2056, "name": "Reputation", "description": "Reputation is the sixth studio album by American singer-songwriter Taylor Swift.", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"210-258, T": [[-1445, 678], [-1445, 703], [-1420, 703], [-1420, 678]]}, "center": {"210-258, T": [-1432, 691]}}, +{"id": 2057, "name": "Benny the French Pikmin", "description": "Benny the Pikmin is designed by the discord server benny the Pikmin. Benny is French as a thank you to the French community for offering this place on the canvas.", "links": {"subreddit": ["pikmin"]}, "path": {"209-258, T": [[-1025, 223], [-1015, 223], [-1015, 241], [-1025, 241]]}, "center": {"209-258, T": [-1020, 232]}}, +{"id": 2058, "name": "Cviček wine", "description": "Cviček is a Slovenian wine produced in the Lower Carniola (Dolenjska) region of Slovenia. It is made from both red and white grape species. The wine has a low alcohol content of 8.5-10% and has a slightly acidic taste. It was once seen as a wine for the poor but is now gaining more and more popularity with both locals and tourists enjoying it.", "links": {"website": ["https://en.wikipedia.org/wiki/Cvi%C4%8Dek"], "subreddit": ["Slovenia"], "discord": ["N8y3mNez"]}, "path": {"209-258, T": [[413, -77], [414, -77], [414, -78], [415, -78], [415, -82], [414, -82], [414, -83], [413, -83], [413, -87], [418, -87], [418, -83], [417, -83], [417, -82], [416, -82], [416, -78], [417, -78], [417, -77], [418, -77]]}, "center": {"209-258, T": [415, -85]}}, +{"id": 2059, "name": "Ice Pikmin", "description": "Ice Pikmin, are a new type of Pikmin in Pikmin 4, this type of Pikmin can freeze enemies. When enough ice pikmin make contact with a body of water, it will freeze, allowing the player character to traverse through it with ease.\n\nThis Ice Pikmin was created by the benny the Pikmin discord server.", "links": {"subreddit": ["pikmin"]}, "path": {"209-258, T": [[-1015, 223], [-1005, 223], [-1005, 241], [-1015, 241]]}, "center": {"209-258, T": [-1010, 232]}}, +{"id": 2060, "name": "Maple syrup", "description": "Maple syrup, first made by the indigenous peoples of North America, is now an important part of Quebec's culture. Quebec is an iconic producer of maple syrup, responsible for more than 70% of maple syrup exports.", "links": {"website": ["https://en.wikipedia.org/wiki/Maple_syrup"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"123-258, T": [[762, 207], [762, 218], [764, 218], [764, 219], [767, 219], [767, 218], [774, 218], [774, 217], [775, 217], [775, 216], [780, 216], [780, 215], [783, 215], [784, 215], [784, 217], [784, 218], [783, 218], [783, 222], [784, 222], [784, 223], [785, 223], [786, 223], [786, 224], [789, 224], [789, 225], [793, 225], [793, 226], [800, 226], [800, 225], [802, 225], [802, 220], [803, 220], [803, 215], [804, 215], [804, 210], [805, 210], [805, 205], [807, 205], [807, 215], [808, 215], [808, 221], [807, 221], [807, 222], [806, 222], [807, 222], [807, 228], [808, 225], [808, 222], [808, 198], [807, 198], [807, 197], [806, 197], [806, 196], [804, 196], [804, 195], [801, 195], [801, 194], [798, 194], [797, 194], [797, 193], [790, 193], [790, 194], [789, 194], [789, 195], [789, 196], [788, 196], [788, 197], [788, 198], [787, 198], [786, 198], [786, 199], [785, 199], [785, 200], [785, 201], [784, 200], [784, 201], [784, 202], [783, 202], [783, 203], [782, 203], [782, 204], [781, 204], [781, 205], [780, 205], [780, 206], [779, 206], [778, 206], [778, 207], [776, 207], [776, 208], [771, 208], [771, 207]]}, "center": {"123-258, T": [793, 209]}}, +{"id": 2061, "name": "Infoman", "description": "Infoman is a half-hour-long televised series satirizing the current events of Quebec, Canada, and the world hosted by Jean-René Dufort on Ici Radio-Canada Télé. While the logo is not accurate and not a part of the r/Quebec canva, it was made by FedQc (a streamer from Gaspésie Quebec) during the night shift of r/Quebec and remained until the end.", "links": {"website": ["https://en.wikipedia.org/wiki/Infoman", "https://ici.radio-canada.ca/tele/infoman/site"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"85-258, T": [[745, 135], [753, 135], [753, 136], [754, 136], [754, 137], [755, 137], [755, 138], [756, 138], [756, 139], [757, 139], [757, 140], [758, 140], [757, 140], [757, 141], [756, 141], [756, 142], [755, 142], [755, 143], [754, 143], [754, 144], [753, 144], [753, 145], [752, 145], [752, 146], [751, 146], [751, 147], [750, 147], [750, 148], [749, 148], [749, 149], [749, 148], [748, 148], [748, 147], [747, 147], [747, 146], [746, 146], [746, 145], [745, 145], [745, 144], [744, 144], [744, 143], [743, 143], [743, 142], [742, 142], [742, 141], [741, 141], [741, 140], [740, 140], [741, 140], [741, 139], [742, 139], [742, 138], [743, 138], [743, 137], [744, 137], [744, 136], [745, 136]]}, "center": {"85-258, T": [749, 141]}}, +{"id": 2062, "name": "Pikmin", "description": "Pikmin is a three-dimensional real-time strategy game in which the player is given control of a (or multiple) captain(s), who in turn has control over the Pikmin that follow him.", "links": {"subreddit": ["pikmin"]}, "path": {"209-258, T": [[-1025, 223], [-1005, 223], [-1005, 241], [-1007, 241], [-1007, 250], [-1039, 250], [-1048, 250], [-1048, 241], [-1025, 241]]}, "center": {"209-258, T": [-1015, 235]}}, +{"id": 2063, "name": "Chibiruto", "description": "Chibi version of Naruto", "links": {"subreddit": ["PlaceNaruto"], "discord": ["WMy7NF37"]}, "path": {"210-258, T": [[378, -975], [378, -956], [391, -956], [391, -974]]}, "center": {"210-258, T": [385, -965]}}, +{"id": 2064, "name": "OHNE <3", "description": "A thank you from the DaD Community, to Twitch streamer OhnePixel, for assisting them in a crucial point, enabling expansion southwards.", "links": {"subreddit": ["ohnePixel", "DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"210-258, T": [[-232, 566], [-226, 566], [-226, 535], [-233, 535], [-232, 552]]}, "center": {"210-258, T": [-229, 542]}}, +{"id": 2065, "name": "Speak Now (Taylor's Version)", "description": "Speak Now (Taylor's Version) is the third re-recorded album by American singer-songwriter Taylor Swift,", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"210-258, T": [[-1420, 744], [-1421, 719], [-1445, 719], [-1445, 745]]}, "center": {"210-258, T": [-1433, 732]}}, +{"id": 2066, "name": "Bearing", "description": "The Bearing is a part in the videogame Scrap Mechanic.", "links": {"subreddit": ["ScrapMechanic"]}, "path": {"210-258, T": [[-784, 849], [-784, 857], [-781, 860], [-773, 860], [-770, 857], [-770, 849], [-773, 846], [-781, 846], [-784, 850]]}, "center": {"210-258, T": [-777, 853]}}, +{"id": 2067, "name": "Touhou 11: Subterranean Animism", "description": "The icon of Touhou 11: Subterranean Animism, depicting the character Kirisame Marisa.\n\nTouhou Chireiden ~ Subterranean Animism is the eleventh main game of the Touhou Project scrolling shooter series by Team Shanghai Alice. The game was released on August 16, 2008, during the 74th Comiket.", "links": {"website": ["https://en.wikipedia.org/wiki/Subterranean_Animism"], "subreddit": ["touhou", "placestart"], "discord": ["apl"]}, "path": {"165-258, T": [[-48, 974], [-27, 974], [-27, 995], [-48, 995]]}, "center": {"165-258, T": [-37, 985]}}, +{"id": 2068, "name": "Minato with Rasengan", "description": "The Fourth Hokage from Naruto performing the Rasengan.", "links": {"subreddit": ["PlaceNaruto"], "discord": ["WMy7NF37"]}, "path": {"196-258, T": [[-975, -940], [-974, -941], [-974, -942], [-975, -943], [-975, -944], [-976, -945], [-976, -947], [-977, -948], [-977, -949], [-978, -950], [-978, -951], [-979, -952], [-979, -953], [-981, -955], [-980, -956], [-980, -957], [-978, -959], [-978, -963], [-979, -964], [-979, -965], [-980, -966], [-980, -967], [-980, -977], [-982, -977], [-983, -978], [-989, -978], [-991, -976], [-991, -970], [-990, -969], [-990, -968], [-990, -967], [-991, -966], [-992, -966], [-994, -964], [-995, -964], [-996, -963], [-996, -965], [-997, -966], [-996, -967], [-997, -968], [-998, -968], [-999, -969], [-999, -970], [-1000, -971], [-1001, -970], [-1001, -968], [-1002, -967], [-1004, -967], [-1004, -968], [-1003, -969], [-1003, -970], [-1004, -971], [-1006, -971], [-1007, -970], [-1008, -969], [-1008, -964], [-1009, -963], [-1010, -963], [-1010, -965], [-1009, -966], [-1009, -968], [-1010, -969], [-1012, -967], [-1012, -966], [-1014, -964], [-1014, -962], [-1011, -959], [-1011, -958], [-1010, -957], [-1011, -957], [-1012, -956], [-1013, -957], [-1013, -958], [-1014, -959], [-1015, -958], [-1015, -955], [-1012, -952], [-1008, -952], [-1007, -953], [-1007, -954], [-1006, -955], [-1005, -954], [-1005, -953], [-1007, -951], [-1008, -951], [-1009, -952], [-1010, -952], [-1011, -951], [-1008, -948], [-1007, -948], [-1006, -949], [-1005, -949], [-1004, -950], [-1003, -950], [-1002, -951], [-1001, -951], [-1000, -952], [-1000, -957], [-999, -957], [-999, -955], [-998, -954], [-998, -953], [-1000, -951], [-1000, -950], [-999, -949], [-998, -949], [-994, -953], [-994, -956], [-995, -957], [-994, -958], [-994, -959], [-993, -960], [-992, -960], [-992, -955], [-993, -954], [-993, -953], [-996, -950], [-996, -949], [-997, -948], [-997, -946], [-998, -945], [-998, -944], [-999, -943], [-999, -941], [-1000, -940], [-1000, -936], [-999, -935], [-999, -931], [-995, -931], [-994, -932], [-996, -934], [-997, -934], [-997, -938], [-994, -941], [-992, -941], [-992, -940], [-993, -939], [-993, -934], [-994, -933], [-994, -931], [-990, -931], [-989, -932], [-989, -934], [-988, -935], [-988, -939], [-988, -937], [-985, -937], [-985, -931], [-980, -931], [-979, -932], [-980, -933], [-980, -934], [-979, -934], [-977, -932], [-976, -932], [-975, -931], [-974, -931], [-973, -932], [-973, -937], [-974, -938], [-974, -942], [-975, -943]]}, "center": {"196-258, T": [-986, -947]}}, +{"id": 2069, "name": "K-On!", "description": "\"K-On!\" is a delightful and heartwarming anime that follows the adventures of five high school girls forming a band in their light music club. The story centers around Yui Hirasawa, a carefree girl with no musical experience, who joins the club at Sakuragaoka High School. Together with talented Mio, enthusiastic Ritsu, wealthy Tsumugi, and shy but talented Azusa, they bond over music and friendship. Originally aired in 2009, this anime became a massive hit and remains immensely popular to this day.\nThe five girls are also depicted on the top of this artwork, above the text. From left to right they are: Ritsu, Mio, Yui, Asuza and Mugi. Asuza is depicted with catears, as a hairband with catears is often placed on her head unexpectedly by several of the characters in the anime. It is also the only way to distinguish her from Mio in a 3x3 pixelart form...\n\nThis artwork was made by a (possibly bunch of) dedicated fans of K-On! from the Bocchi The Rock Discord server. Originally the artwork was built where Fubuki fishing Bocchi would end up, so the VTuber community reserved the final spot for K-On! above the VShojo logo.", "links": {"website": ["https://www.tbs.co.jp/anime/k-on/"], "subreddit": ["k_on"], "discord": ["kon"]}, "path": {"210-258, T": [[-586, -321], [-558, -321], [-558, -307], [-587, -307]]}, "center": {"210-258, T": [-572, -314]}}, +{"id": 2070, "name": "Chicho", "description": "A black cat that randomly appeared on the area r/PlaceFemboy was drawing Astolfo on.\n\nYoutube Streamer ZenBooda1 decided to include the cat in the official Template and decided to name the cat Midnight.\n\nHowever, it was later said that the cat already had a name \"Chicho\", named after the dead cat of the original creator's (LeiDy-17) BF, and was created as a gift to the cat.", "links": {"website": ["https://www.youtube.com/@ZenBooda1"], "subreddit": ["PlaceFemboy", "femboy"]}, "path": {"210-258, T": [[632, 927], [632, 938], [638, 938], [638, 927]]}, "center": {"210-258, T": [635, 933]}}, +{"id": 2071, "name": "Scottish Art", "description": "Some art created by r/Scotland, after a 3 day long battle against 4chan bots. It includes a Castle, a Lemming, an Irn Bru, a Highland Coo, a Traffic Cone, a Tennent's and of course Scotland's national flower, the Thistle. The text originally spelled 'A P Aye' in reference to the API changes, but was later changed to a shortened version of the Scottish phrase \"Och aye the noo\"", "links": {"subreddit": ["Scotland"]}, "path": {"115-258, T": [[-334, -259], [-303, -259], [-303, -222], [-334, -222]]}, "center": {"115-258, T": [-318, -240]}}, +{"id": 2072, "name": "Sorbians", "description": "We are the Sorbians, a Slavic minority in Germany, this is our symbol. (In it you can see our flag)", "links": {"subreddit": ["placeSORB"]}, "path": {"211-258, T": [[374, -1000], [368, -995], [369, -991], [371, -990], [374, -990], [375, -991], [373, -986], [377, -989], [377, -990], [382, -993], [382, -995], [379, -997], [376, -999]]}, "center": {"211-258, T": [374, -995]}}, {"id": 2073, "name": "FIRST Gracious Professionalism Banner", "description": "Gracious Professionalism is one of the core values of FIRST, Gracious Professionalism encourages hard work, highlights the value of others, and respect of individuals and the community. There is also a blue banner which signifies a FIRST Robotics Competition Award.", "links": {"website": ["https://www.firstinspires.org/"], "subreddit": ["frc"], "discord": ["frc"]}, "path": {"208": [[-1174, 87], [-1174, 145], [-1174, 155], [-1174, 154], [-1128, 154], [-1128, 138], [-1115, 138], [-1116, 87]]}, "center": {"208": [-1146, 116]}}, -{"id": 2074, "name": "Folklore", "description": "is the eighth studio album by American singer-songwriter Taylor Swift.", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"210-258": [[1301, -622], [1301, -611], [1228, -611], [1228, -622], [1282, -622], [1282, -611], [1301, -611], [1301, -622], [1301, -611]]}, "center": {"210-258": [1255, -616]}}, -{"id": 2075, "name": "Ulti Blooper", "description": "The small logo of a german youtuber called Ulti.", "links": {}, "path": {"210-258": [[721, -367], [723, -367], [728, -362], [728, -361], [729, -360], [729, -357], [730, -356], [731, -355], [731, -354], [733, -354], [733, -358], [733, -359], [742, -359], [742, -353], [745, -353], [745, -351], [734, -351], [733, -347], [730, -347], [730, -348], [727, -348], [727, -347], [724, -347], [723, -346], [721, -346], [718, -347], [718, -348], [715, -348], [715, -349], [712, -349], [712, -348], [711, -348], [711, -352], [713, -353], [713, -355], [715, -357], [716, -358], [715, -360], [716, -361]]}, "center": {"210-258": [722, -354]}}, -{"id": 2076, "name": "Chimborazo Art's", "description": "Chimborazo is a currently inactive stratovolcano in the Western Cordillera of the Andes, located in Ecuador.", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador", "https://es.wikipedia.org/wiki/Volc%C3%A1n_Chimborazo"], "subreddit": ["ecuador"]}, "path": {"171-258": [[-1420, 619], [-1420, 744], [-1331, 744], [-1331, 743], [-1294, 743], [-1294, 619]]}, "center": {"171-258": [-1357, 682]}}, -{"id": 2077, "name": "Touhou Hijack!", "description": "\"Touhou Hijack!\" is a meme in the community of the game series Touhou Project. The meme involves Touhou showing up in unexpected places. This art features several Touhou characters, along with a variety of characters from other fandoms in the Touhou art style.\n\nThis piece was originally to be placed on the far left of the canvas, but was overrun by xQc's Charizard card takeover, leading to its placement here instead.", "links": {"website": ["https://en.wikipedia.org/wiki/Touhou_Project"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"171-177": [[-1415, -3], [-1415, 106], [-1320, 106], [-1320, -3]], "202-258": [[1285, 224], [1285, 395], [1380, 395], [1380, 224]]}, "center": {"171-177": [-1367, 52], "202-258": [1333, 310]}}, -{"id": 2078, "name": "YuuBuh's Minecraft Skin", "description": "YuuBuh is a small German VTuber and with his Community he claims this small space for his satisfaction.", "links": {"website": ["https://www.twitch.tv/yuubuh", "https://www.tiktok.com/@yuubuh", "https://youtube.com/@YuuBuh"]}, "path": {"220-258": [[1275, 12], [1275, 22], [1284, 20], [1284, 12]]}, "center": {"220-258": [1280, 17]}}, +{"id": 2074, "name": "Folklore", "description": "is the eighth studio album by American singer-songwriter Taylor Swift.", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"210-258, T": [[1301, -622], [1301, -611], [1228, -611], [1228, -622], [1282, -622], [1282, -611], [1301, -611], [1301, -622], [1301, -611]]}, "center": {"210-258, T": [1255, -616]}}, +{"id": 2075, "name": "Ulti Blooper", "description": "The small logo of a german youtuber called Ulti.", "links": {}, "path": {"210-258, T": [[721, -367], [723, -367], [728, -362], [728, -361], [729, -360], [729, -357], [730, -356], [731, -355], [731, -354], [733, -354], [733, -358], [733, -359], [742, -359], [742, -353], [745, -353], [745, -351], [734, -351], [733, -347], [730, -347], [730, -348], [727, -348], [727, -347], [724, -347], [723, -346], [721, -346], [718, -347], [718, -348], [715, -348], [715, -349], [712, -349], [712, -348], [711, -348], [711, -352], [713, -353], [713, -355], [715, -357], [716, -358], [715, -360], [716, -361]]}, "center": {"210-258, T": [722, -354]}}, +{"id": 2076, "name": "Chimborazo Art's", "description": "Chimborazo is a currently inactive stratovolcano in the Western Cordillera of the Andes, located in Ecuador.", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador", "https://es.wikipedia.org/wiki/Volc%C3%A1n_Chimborazo"], "subreddit": ["ecuador"]}, "path": {"171-258, T": [[-1420, 619], [-1420, 744], [-1331, 744], [-1331, 743], [-1294, 743], [-1294, 619]]}, "center": {"171-258, T": [-1357, 682]}}, +{"id": 2077, "name": "Touhou Hijack!", "description": "\"Touhou Hijack!\" is a meme in the community of the game series Touhou Project. The meme involves Touhou showing up in unexpected places. This art features several Touhou characters, along with a variety of characters from other fandoms in the Touhou art style.\n\nThis piece was originally to be placed on the far left of the canvas, but was overrun by xQc's Charizard card takeover, leading to its placement here instead.", "links": {"website": ["https://en.wikipedia.org/wiki/Touhou_Project"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"171-177": [[-1415, -3], [-1415, 106], [-1320, 106], [-1320, -3]], "202-258, T": [[1285, 224], [1285, 395], [1380, 395], [1380, 224]]}, "center": {"171-177": [-1367, 52], "202-258, T": [1333, 310]}}, +{"id": 2078, "name": "YuuBuh's Minecraft Skin", "description": "YuuBuh is a small German VTuber and with his Community he claims this small space for his satisfaction.", "links": {"website": ["https://www.twitch.tv/yuubuh", "https://www.tiktok.com/@yuubuh", "https://youtube.com/@YuuBuh"]}, "path": {"220-258, T": [[1275, 12], [1275, 22], [1284, 20], [1284, 12]]}, "center": {"220-258, T": [1280, 17]}}, {"id": 2079, "name": "TTTV Ruffy", "description": "Ruffy made out of TTTV logo (designed by u/TTTVTim), created by u/TTTVTim, u/RaZe_G1GGA, u/C0b3exe and u/Minipicker", "links": {}, "path": {"211-240": [[-1499, 224], [-1490, 224], [-1490, 223], [-1489, 223], [-1489, 221], [-1490, 221], [-1490, 219], [-1491, 219], [-1491, 220], [-1493, 220], [-1493, 218], [-1494, 218], [-1494, 217], [-1498, 217], [-1498, 218], [-1499, 218], [-1500, 223]]}, "center": {"211-240": [-1496, 221]}}, -{"id": 2080, "name": "Valorant Agents", "description": "6 of the 23 agents present in Valorant.\nFrom left to right and from top to bottom:\n- Killjoy, a sentinel agent\n- Sova, an initiator agent\n- Reyna, a duelist agent\n- Brimstone, a controller agent\n- Pheonix, a duelist agent\n- Omen, a controller agent", "links": {"website": ["https://valorant.fandom.com/wiki/VALORANT_Wiki", "https://playvalorant.com"], "subreddit": ["valorant"]}, "path": {"164-258": [[795, -517], [848, -517], [848, -570], [794, -571]]}, "center": {"164-258": [821, -544]}}, +{"id": 2080, "name": "Valorant Agents", "description": "6 of the 23 agents present in Valorant.\nFrom left to right and from top to bottom:\n- Killjoy, a sentinel agent\n- Sova, an initiator agent\n- Reyna, a duelist agent\n- Brimstone, a controller agent\n- Pheonix, a duelist agent\n- Omen, a controller agent", "links": {"website": ["https://valorant.fandom.com/wiki/VALORANT_Wiki", "https://playvalorant.com"], "subreddit": ["valorant"]}, "path": {"164-258, T": [[795, -517], [848, -517], [848, -570], [794, -571]]}, "center": {"164-258, T": [821, -544]}}, {"id": 2081, "name": "Tornado Hitting House", "description": "An art dedicated to all storm chasers and weather enthusiasts. Was made by members in Chases Storm and with the help of neighboring communities!", "links": {"discord": ["5cMW6tX9AH"]}, "path": {"103-128": [[-785, 373], [-770, 373], [-770, 364], [-785, 364]]}, "center": {"103-128": [-777, 369]}}, -{"id": 2082, "name": "Bonjwa Matteo", "description": "The picture of the Bonjwa community from 2022 rebuild this year from a smal group from the Bonjwa community.", "links": {"website": ["https://www.bonjwa.de/"], "subreddit": ["bonjwade"], "discord": ["bonjwa"]}, "path": {"210-258": [[1409, -912], [1409, -891], [1428, -891], [1428, -912], [1409, -912], [1409, -911]]}, "center": {"210-258": [1419, -901]}}, -{"id": 2083, "name": "Rádio e Televisão de Portugal", "description": "Rádio e Televisão de Portugal (RTP) is the public service broadcasting organisation of Portugal. It operates four national television channels and three national radio stations, as well as several satellite and cable offerings.", "links": {"website": ["https://en.wikipedia.org/wiki/R%C3%A1dio_e_Televis%C3%A3o_de_Portugal", "https://www.rtp.pt/"], "discord": ["TugaPlace"]}, "path": {"211-258": [[308, 208], [312, 212], [312, 219], [304, 229], [289, 229], [287, 222], [284, 218], [284, 212], [288, 208]]}, "center": {"211-258": [298, 219]}}, -{"id": 2084, "name": "The Very Hungry Caterpillar", "description": "The Very Hungry Caterpillar from the 1969 children's book of the same name. \n\nDespite originally being released in English, its German translation (Die kleine Raupe Nimmersatt) is almost equally as popular.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Very_Hungry_Caterpillar"]}, "path": {"204-258": [[-454, -1000], [-461, -1000], [-461, -999], [-462, -999], [-462, -998], [-463, -998], [-463, -995], [-464, -995], [-464, -993], [-466, -993], [-466, -992], [-467, -992], [-467, -991], [-468, -991], [-468, -990], [-469, -990], [-469, -985], [-468, -985], [-468, -984], [-469, -984], [-469, -983], [-470, -983], [-470, -982], [-471, -982], [-471, -976], [-472, -976], [-472, -974], [-473, -974], [-473, -970], [-472, -970], [-472, -969], [-471, -969], [-471, -965], [-472, -965], [-473, -964], [-473, -962], [-472, -962], [-474, -960], [-474, -959], [-477, -959], [-477, -958], [-478, -958], [-478, -956], [-476, -956], [-476, -952], [-478, -952], [-478, -951], [-479, -951], [-479, -950], [-480, -950], [-480, -947], [-481, -947], [-481, -943], [-480, -943], [-480, -939], [-479, -939], [-479, -938], [-477, -938], [-477, -937], [-476, -937], [-476, -940], [-473, -940], [-473, -939], [-471, -939], [-471, -937], [-472, -937], [-471, -937], [-471, -936], [-470, -936], [-470, -935], [-468, -935], [-468, -936], [-467, -936], [-467, -937], [-466, -937], [-466, -939], [-460, -939], [-460, -940], [-459, -940], [-459, -941], [-458, -941], [-458, -942], [-456, -942], [-456, -941], [-454, -941], [-454, -940], [-452, -940], [-452, -942], [-454, -942], [-454, -945], [-452, -945], [-452, -948], [-453, -948], [-453, -950], [-452, -950], [-452, -951], [-453, -951], [-453, -955], [-452, -955], [-452, -957], [-453, -957], [-453, -975], [-452, -975], [-452, -977], [-453, -977], [-453, -979], [-452, -979], [-452, -982], [-453, -982], [-453, -984], [-452, -984], [-452, -986], [-453, -986], [-453, -988], [-452, -988], [-452, -991], [-453, -991], [-453, -994], [-452, -994], [-452, -995], [-451, -995], [-451, -997], [-452, -997], [-452, -999], [-453, -999]]}, "center": {"204-258": [-464, -952]}}, -{"id": 2085, "name": "Eusébio Ferreira", "description": "Eusébio da Silva Ferreira nicknamed the \"Black Panther\", the \"Black Pearl\" or \"O Rei\" (\"The King\"), was a Portuguese footballer who played as a striker. He is considered one of the greatest players of all time as well as Benfica's best player ever. He was known for his speed, technique, athleticism and his ferocious right-footed shot, making him a prolific goalscorer, accumulating 733 goals in 745 matches.", "links": {"website": ["https://en.wikipedia.org/wiki/Eus%C3%A9bio"], "discord": ["TugaPlace"]}, "path": {"53-160": [[464, 337], [463, 327], [461, 321], [460, 313], [460, 306], [463, 300], [465, 297], [472, 294], [481, 294], [486, 297], [489, 301], [492, 309], [492, 319], [489, 322], [488, 325], [488, 338], [490, 343], [495, 345], [499, 347], [462, 347], [464, 343], [466, 341], [465, 338]], "161-258": [[503, 351], [500, 348], [493, 344], [490, 343], [488, 341], [489, 335], [491, 326], [492, 319], [492, 310], [489, 297], [487, 296], [478, 291], [472, 291], [465, 295], [462, 303], [460, 309], [461, 311], [460, 318], [464, 333], [465, 337], [465, 342], [462, 345], [457, 351]]}, "center": {"53-160": [476, 313], "161-258": [476, 318]}}, +{"id": 2082, "name": "Bonjwa Matteo", "description": "The picture of the Bonjwa community from 2022 rebuild this year from a smal group from the Bonjwa community.", "links": {"website": ["https://www.bonjwa.de/"], "subreddit": ["bonjwade"], "discord": ["bonjwa"]}, "path": {"210-258, T": [[1409, -912], [1409, -891], [1428, -891], [1428, -912], [1409, -912], [1409, -911]]}, "center": {"210-258, T": [1419, -901]}}, +{"id": 2083, "name": "Rádio e Televisão de Portugal", "description": "Rádio e Televisão de Portugal (RTP) is the public service broadcasting organisation of Portugal. It operates four national television channels and three national radio stations, as well as several satellite and cable offerings.", "links": {"website": ["https://en.wikipedia.org/wiki/R%C3%A1dio_e_Televis%C3%A3o_de_Portugal", "https://www.rtp.pt/"], "discord": ["TugaPlace"]}, "path": {"211-258, T": [[308, 208], [312, 212], [312, 219], [304, 229], [289, 229], [287, 222], [284, 218], [284, 212], [288, 208]]}, "center": {"211-258, T": [298, 219]}}, +{"id": 2084, "name": "The Very Hungry Caterpillar", "description": "The Very Hungry Caterpillar from the 1969 children's book of the same name. \n\nDespite originally being released in English, its German translation (Die kleine Raupe Nimmersatt) is almost equally as popular.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Very_Hungry_Caterpillar"]}, "path": {"204-258, T": [[-454, -1000], [-461, -1000], [-461, -999], [-462, -999], [-462, -998], [-463, -998], [-463, -995], [-464, -995], [-464, -993], [-466, -993], [-466, -992], [-467, -992], [-467, -991], [-468, -991], [-468, -990], [-469, -990], [-469, -985], [-468, -985], [-468, -984], [-469, -984], [-469, -983], [-470, -983], [-470, -982], [-471, -982], [-471, -976], [-472, -976], [-472, -974], [-473, -974], [-473, -970], [-472, -970], [-472, -969], [-471, -969], [-471, -965], [-472, -965], [-473, -964], [-473, -962], [-472, -962], [-474, -960], [-474, -959], [-477, -959], [-477, -958], [-478, -958], [-478, -956], [-476, -956], [-476, -952], [-478, -952], [-478, -951], [-479, -951], [-479, -950], [-480, -950], [-480, -947], [-481, -947], [-481, -943], [-480, -943], [-480, -939], [-479, -939], [-479, -938], [-477, -938], [-477, -937], [-476, -937], [-476, -940], [-473, -940], [-473, -939], [-471, -939], [-471, -937], [-472, -937], [-471, -937], [-471, -936], [-470, -936], [-470, -935], [-468, -935], [-468, -936], [-467, -936], [-467, -937], [-466, -937], [-466, -939], [-460, -939], [-460, -940], [-459, -940], [-459, -941], [-458, -941], [-458, -942], [-456, -942], [-456, -941], [-454, -941], [-454, -940], [-452, -940], [-452, -942], [-454, -942], [-454, -945], [-452, -945], [-452, -948], [-453, -948], [-453, -950], [-452, -950], [-452, -951], [-453, -951], [-453, -955], [-452, -955], [-452, -957], [-453, -957], [-453, -975], [-452, -975], [-452, -977], [-453, -977], [-453, -979], [-452, -979], [-452, -982], [-453, -982], [-453, -984], [-452, -984], [-452, -986], [-453, -986], [-453, -988], [-452, -988], [-452, -991], [-453, -991], [-453, -994], [-452, -994], [-452, -995], [-451, -995], [-451, -997], [-452, -997], [-452, -999], [-453, -999]]}, "center": {"204-258, T": [-464, -952]}}, +{"id": 2085, "name": "Eusébio Ferreira", "description": "Eusébio da Silva Ferreira nicknamed the \"Black Panther\", the \"Black Pearl\" or \"O Rei\" (\"The King\"), was a Portuguese footballer who played as a striker. He is considered one of the greatest players of all time as well as Benfica's best player ever. He was known for his speed, technique, athleticism and his ferocious right-footed shot, making him a prolific goalscorer, accumulating 733 goals in 745 matches.", "links": {"website": ["https://en.wikipedia.org/wiki/Eus%C3%A9bio"], "discord": ["TugaPlace"]}, "path": {"53-160": [[464, 337], [463, 327], [461, 321], [460, 313], [460, 306], [463, 300], [465, 297], [472, 294], [481, 294], [486, 297], [489, 301], [492, 309], [492, 319], [489, 322], [488, 325], [488, 338], [490, 343], [495, 345], [499, 347], [462, 347], [464, 343], [466, 341], [465, 338]], "161-258, T": [[503, 351], [500, 348], [493, 344], [490, 343], [488, 341], [489, 335], [491, 326], [492, 319], [492, 310], [489, 297], [487, 296], [478, 291], [472, 291], [465, 295], [462, 303], [460, 309], [461, 311], [460, 318], [464, 333], [465, 337], [465, 342], [462, 345], [457, 351]]}, "center": {"53-160": [476, 313], "161-258, T": [476, 318]}}, {"id": 2086, "name": "Fiddlebert", "description": "Fiddlebert Is a popular meme within the Pikmin community that is a pallete swap of Olimar. It is claimed that he was an unlockable character in the original Pikmin game, and was removed from it's re-releases for \"highly racist statements\". Fiddlebert is known to be extremely racist and homophobic, and often travels around with his homophobic dog named Moss. This was coordinated by the r/Pikmin discord and a streamer named \nObi The Producer.\nThis art was created by u/ShimorEgypt4227", "links": {"subreddit": ["Pikmin"]}, "path": {"210-249": [[1470, 380], [1469, 381], [1469, 382], [1468, 382], [1467, 383], [1466, 384], [1466, 385], [1465, 385], [1464, 385], [1464, 384], [1464, 386], [1464, 387], [1466, 388], [1466, 389], [1467, 390], [1468, 391], [1469, 392], [1468, 393], [1467, 394], [1477, 394], [1476, 393], [1475, 392], [1476, 391], [1477, 390], [1478, 389], [1479, 388], [1480, 387], [1480, 386], [1480, 385], [1480, 384], [1479, 385], [1478, 385], [1478, 384], [1477, 383], [1476, 382], [1475, 382], [1475, 381], [1474, 380], [1473, 381], [1472, 380], [1471, 381]]}, "center": {"210-249": [1472, 387]}}, -{"id": 2087, "name": "FRC Team 422", "description": "A small mural representing FIRST Robotics Team 422, based in Richmond, Virginia", "links": {"website": ["https://www.youtube.com/@mechtechdragons", "https://www.facebook.com/frc422/", "https://www.thebluealliance.com/team/422", "https://mechtechrobotics.com/"]}, "path": {"149-258": [[541, -610], [585, -610], [585, -612], [593, -612], [593, -614], [594, -614], [594, -618], [562, -618], [562, -615], [541, -615]]}, "center": {"149-258": [569, -614]}}, -{"id": 2088, "name": "Bachira Meguru - Blue Lock", "description": "", "links": {"subreddit": ["BlueLock"], "discord": ["F28THrNhcS"]}, "path": {"211-258": [[-1208, -637], [-1208, -622], [-1195, -622], [-1195, -638], [-1208, -638], [-1208, -622]]}, "center": {"211-258": [-1201, -630]}}, -{"id": 2089, "name": "Hong kong protest", "description": "This part of the canvas showcases Hong Kong pro-democracy movement's flag, the \"Black Bauhinia\" https://en.wikipedia.org/wiki/Black_Bauhinia_flag\n\nThe Yellow ribbon is also a symbol of the pro-democracy movement and by extension the Yellow economic circle, an economic resistance movement aiming at patronizing pro-democracy shops as protests were getting more and more repressed.\n\nThe Yellow Umbrella is also a symbol of the pro-democracy movement and refers to the 2014 Umbrella Movement protesting the Chinese Communist Party's hold of Hong Kong politics (https://en.wikipedia.org/wiki/Umbrella_Movement).\n\nThe numbers (that are defaced on the screenshot but should be 721 and 831) refer to 2 key dates of the protests. Namely, the Yuen Long attacks on July 21st 2019 (https://en.wikipedia.org/wiki/2019_Yuen_Long_attack) and the Prince Edward Station attack on August 31st 2019 (https://en.wikipedia.org/wiki/2019_Prince_Edward_station_attack).\n\nFinally the small 5x5 british flag on the left is a reminder of Hong Kong British Colonial Legacy and how Hong Kong was stripped of its right for self-determination as the UK handed over colonial powers to the People's Republic of China (https://hongkongfp.com/2016/11/08/china-stripped-hong-kong-right-self-determination-1972-distorted-history/)", "links": {"subreddit": ["HongKong"]}, "path": {"211-258": [[-839, 885], [-788, 885], [-788, 915], [-839, 915]]}, "center": {"211-258": [-813, 900]}}, -{"id": 2090, "name": "Omniscient Reader's Viewpoint", "description": "Omniscient Reader's Viewpoint is an apocalyptic fantasy fiction Korean web novel written by a duo of Korean authors under the pen name Sing-Syong. It follows the story of Kim Dokja, an office worker who enters the world of his favorite novel.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"211-258": [[88, 854], [89, 884], [127, 884], [128, 854], [105, 854]]}, "center": {"211-258": [108, 869]}}, -{"id": 2091, "name": "Enderpearl", "description": "An ender pearl is an item that can be thrown to teleport to where it lands, or used to craft eyes of ender which are required to access the End.\n\nIt was build by German streamer merleperle and her community.", "links": {"website": ["https://www.twitch.tv/merleperle"], "discord": ["73WXtbgajx"]}, "path": {"208-258": [[1000, 116], [1014, 116], [1014, 130], [1000, 130]]}, "center": {"208-258": [1007, 123]}}, -{"id": 2092, "name": "Tornado Hitting House", "description": "An art dedicated to all storm chasers and weather enthusiasts. Was made by members in Chases Storm and with the help of neighboring communities!", "links": {"discord": ["5cMW6tX9AH"]}, "path": {"134-258": [[580, -628], [580, -619], [595, -619], [595, -628]]}, "center": {"134-258": [588, -623]}}, -{"id": 2093, "name": "Lion Rampant", "description": "The Royal Banner of Scotland, also known as the Lion Rampant.", "links": {"subreddit": ["Scotland"], "discord": ["3yySs9qxCT"]}, "path": {"210-258": [[1380, 333], [1380, 373], [1438, 373], [1438, 333]]}, "center": {"210-258": [1409, 353]}}, -{"id": 2094, "name": "Monika", "description": "Monika is a main character and the poster girl of Doki Doki Literature Club!. She is the President of the Literature Club and is the game's driving force, directing club members to write poems until the club festival, which enables and develops the characters and story.\n\nThe mural was the subject of two sustained attacks, one from Vietnam which wiped us out, and another from the Void Dragon at the end", "links": {"website": ["https://ddlc.moe/"], "subreddit": ["DDLC"]}, "path": {"206-233": [[1282, 523], [1282, 518], [1287, 518], [1287, 517], [1348, 517], [1348, 533], [1367, 533], [1367, 534], [1361, 534], [1361, 538], [1352, 538], [1352, 562], [1372, 562], [1372, 563], [1371, 563], [1371, 569], [1367, 569], [1367, 570], [1365, 570], [1365, 571], [1357, 572], [1352, 576], [1329, 576], [1329, 575], [1313, 575], [1313, 574], [1309, 574], [1308, 572], [1299, 572], [1288, 569], [1286, 558], [1284, 557], [1280, 563], [1280, 546], [1280, 545], [1274, 545], [1274, 544], [1278, 539], [1278, 537], [1274, 537], [1274, 536], [1278, 536], [1278, 525], [1282, 525]], "252-258": [[1314, 536], [1314, 533], [1311, 533], [1311, 531], [1304, 532], [1298, 532], [1298, 544], [1300, 544], [1303, 547], [1309, 547], [1311, 545], [1311, 542]], "237-258": [[1293, 517], [1319, 517], [1319, 518], [1321, 518], [1321, 519], [1322, 519], [1322, 520], [1327, 520], [1327, 521], [1329, 521], [1330, 522], [1331, 523], [1332, 524], [1332, 528], [1330, 529], [1327, 531], [1326, 536], [1327, 537], [1327, 539], [1341, 553], [1349, 558], [1349, 569], [1342, 577], [1314, 577], [1295, 560], [1288, 565], [1288, 554], [1294, 543], [1292, 535], [1292, 530], [1289, 526], [1293, 520]]}, "center": {"206-233": [1321, 546], "252-258": [1305, 539], "237-258": [1314, 552]}}, -{"id": 2095, "name": "Stegmenschen", "description": "Stegmenschen (eng. pier people) is a small group of people that formed around a small wooden pier at the Millstätter Lake in Austria.", "links": {}, "path": {"211-258": [[541, -621], [562, -621], [562, -615], [541, -615]]}, "center": {"211-258": [552, -618]}}, +{"id": 2087, "name": "FRC Team 422", "description": "A small mural representing FIRST Robotics Team 422, based in Richmond, Virginia", "links": {"website": ["https://www.youtube.com/@mechtechdragons", "https://www.facebook.com/frc422/", "https://www.thebluealliance.com/team/422", "https://mechtechrobotics.com/"]}, "path": {"149-258, T": [[541, -610], [585, -610], [585, -612], [593, -612], [593, -614], [594, -614], [594, -618], [562, -618], [562, -615], [541, -615]]}, "center": {"149-258, T": [569, -614]}}, +{"id": 2088, "name": "Bachira Meguru - Blue Lock", "description": "", "links": {"subreddit": ["BlueLock"], "discord": ["F28THrNhcS"]}, "path": {"211-258, T": [[-1208, -637], [-1208, -622], [-1195, -622], [-1195, -638], [-1208, -638], [-1208, -622]]}, "center": {"211-258, T": [-1201, -630]}}, +{"id": 2089, "name": "Hong kong protest", "description": "This part of the canvas showcases Hong Kong pro-democracy movement's flag, the \"Black Bauhinia\" https://en.wikipedia.org/wiki/Black_Bauhinia_flag\n\nThe Yellow ribbon is also a symbol of the pro-democracy movement and by extension the Yellow economic circle, an economic resistance movement aiming at patronizing pro-democracy shops as protests were getting more and more repressed.\n\nThe Yellow Umbrella is also a symbol of the pro-democracy movement and refers to the 2014 Umbrella Movement protesting the Chinese Communist Party's hold of Hong Kong politics (https://en.wikipedia.org/wiki/Umbrella_Movement).\n\nThe numbers (that are defaced on the screenshot but should be 721 and 831) refer to 2 key dates of the protests. Namely, the Yuen Long attacks on July 21st 2019 (https://en.wikipedia.org/wiki/2019_Yuen_Long_attack) and the Prince Edward Station attack on August 31st 2019 (https://en.wikipedia.org/wiki/2019_Prince_Edward_station_attack).\n\nFinally the small 5x5 british flag on the left is a reminder of Hong Kong British Colonial Legacy and how Hong Kong was stripped of its right for self-determination as the UK handed over colonial powers to the People's Republic of China (https://hongkongfp.com/2016/11/08/china-stripped-hong-kong-right-self-determination-1972-distorted-history/)", "links": {"subreddit": ["HongKong"]}, "path": {"211-258, T": [[-839, 885], [-788, 885], [-788, 915], [-839, 915]]}, "center": {"211-258, T": [-813, 900]}}, +{"id": 2090, "name": "Omniscient Reader's Viewpoint", "description": "Omniscient Reader's Viewpoint is an apocalyptic fantasy fiction Korean web novel written by a duo of Korean authors under the pen name Sing-Syong. It follows the story of Kim Dokja, an office worker who enters the world of his favorite novel.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"211-258, T": [[88, 854], [89, 884], [127, 884], [128, 854], [105, 854]]}, "center": {"211-258, T": [108, 869]}}, +{"id": 2091, "name": "Enderpearl", "description": "An ender pearl is an item that can be thrown to teleport to where it lands, or used to craft eyes of ender which are required to access the End.\n\nIt was build by German streamer merleperle and her community.", "links": {"website": ["https://www.twitch.tv/merleperle"], "discord": ["73WXtbgajx"]}, "path": {"208-258, T": [[1000, 116], [1014, 116], [1014, 130], [1000, 130]]}, "center": {"208-258, T": [1007, 123]}}, +{"id": 2092, "name": "Tornado Hitting House", "description": "An art dedicated to all storm chasers and weather enthusiasts. Was made by members in Chases Storm and with the help of neighboring communities!", "links": {"discord": ["5cMW6tX9AH"]}, "path": {"134-258, T": [[580, -628], [580, -619], [595, -619], [595, -628]]}, "center": {"134-258, T": [588, -623]}}, +{"id": 2093, "name": "Lion Rampant", "description": "The Royal Banner of Scotland, also known as the Lion Rampant.", "links": {"subreddit": ["Scotland"], "discord": ["3yySs9qxCT"]}, "path": {"210-258, T": [[1380, 333], [1380, 373], [1438, 373], [1438, 333]]}, "center": {"210-258, T": [1409, 353]}}, +{"id": 2094, "name": "Monika", "description": "Monika is a main character and the poster girl of Doki Doki Literature Club!. She is the President of the Literature Club and is the game's driving force, directing club members to write poems until the club festival, which enables and develops the characters and story.\n\nThe mural was the subject of two sustained attacks, one from Vietnam which wiped us out, and another from the Void Dragon at the end", "links": {"website": ["https://ddlc.moe/"], "subreddit": ["DDLC"]}, "path": {"206-233": [[1282, 523], [1282, 518], [1287, 518], [1287, 517], [1348, 517], [1348, 533], [1367, 533], [1367, 534], [1361, 534], [1361, 538], [1352, 538], [1352, 562], [1372, 562], [1372, 563], [1371, 563], [1371, 569], [1367, 569], [1367, 570], [1365, 570], [1365, 571], [1357, 572], [1352, 576], [1329, 576], [1329, 575], [1313, 575], [1313, 574], [1309, 574], [1308, 572], [1299, 572], [1288, 569], [1286, 558], [1284, 557], [1280, 563], [1280, 546], [1280, 545], [1274, 545], [1274, 544], [1278, 539], [1278, 537], [1274, 537], [1274, 536], [1278, 536], [1278, 525], [1282, 525]], "252-258": [[1314, 536], [1314, 533], [1311, 533], [1311, 531], [1304, 532], [1298, 532], [1298, 544], [1300, 544], [1303, 547], [1309, 547], [1311, 545], [1311, 542]], "237-258, T": [[1293, 517], [1319, 517], [1319, 518], [1321, 518], [1321, 519], [1322, 519], [1322, 520], [1327, 520], [1327, 521], [1329, 521], [1330, 522], [1331, 523], [1332, 524], [1332, 528], [1330, 529], [1327, 531], [1326, 536], [1327, 537], [1327, 539], [1341, 553], [1349, 558], [1349, 569], [1342, 577], [1314, 577], [1295, 560], [1288, 565], [1288, 554], [1294, 543], [1292, 535], [1292, 530], [1289, 526], [1293, 520]]}, "center": {"206-233": [1321, 546], "252-258": [1305, 539], "237-258, T": [1314, 552]}}, +{"id": 2095, "name": "Stegmenschen", "description": "Stegmenschen (eng. pier people) is a small group of people that formed around a small wooden pier at the Millstätter Lake in Austria.", "links": {}, "path": {"211-258, T": [[541, -621], [562, -621], [562, -615], [541, -615]]}, "center": {"211-258, T": [552, -618]}}, {"id": 2096, "name": "Lewislefou's Community Name", "description": "The \"TERRIFIANCE\" logo is the community name of streamer Lewislefou. His logo was meant to take away the \"Gay Furbies\". This event took place when the streamer received a raid from a Russian streamer.", "links": {"website": ["https://twitch.tv/lewislefou"], "discord": ["jGRVbm3GMt"]}, "path": {"72-85": [[617, 244], [617, 262], [721, 262], [720, 262], [720, 261], [719, 261], [719, 260], [718, 260], [718, 259], [717, 259], [717, 258], [716, 258], [716, 257], [715, 257], [715, 256], [715, 255], [714, 255], [714, 254], [713, 254], [713, 253], [712, 253], [712, 250], [711, 250], [711, 249], [710, 249], [710, 244]]}, "center": {"72-85": [662, 253]}}, -{"id": 2097, "name": "Vahnilly", "description": "", "links": {"website": ["https://www.twitch.tv/"]}, "path": {"209-258": [[1490, 15], [1500, 15], [1500, 23], [1490, 23]]}, "center": {"209-258": [1495, 19]}}, -{"id": 2098, "name": "Lionel Messi", "description": "Made by the Argentine Community its a tribute to their arguably best football player ever.\nHe is loved by the argentine and many fans from all over the world.\nYou can read more about him on his wikipedia page", "links": {"website": ["https://en.wikipedia.org/wiki/Lionel_Messi"], "subreddit": ["PlaceArg", "messi"], "discord": ["WVdFHfvN7h"]}, "path": {"210-258": [[1237, 918], [1252, 903], [1274, 901], [1286, 908], [1288, 918], [1291, 928], [1290, 949], [1294, 952], [1289, 974], [1285, 977], [1286, 987], [1296, 988], [1301, 992], [1310, 995], [1314, 999], [1218, 999], [1229, 992], [1237, 986], [1244, 983], [1244, 964], [1234, 959], [1234, 928], [1236, 921]]}, "center": {"210-258": [1262, 933]}}, -{"id": 2099, "name": "Pink river dolphin (boto cor de rosa)", "description": "The pink river dolphin is a species of toothed whale which is native to and is exclusively of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Amazon_river_dolphin"]}, "path": {"211-258": [[-631, -643], [-634, -619], [-644, -625], [-655, -643], [-648, -651]]}, "center": {"211-258": [-641, -637]}}, -{"id": 2100, "name": "Sardine", "description": "One of the most consumed species of fish in Portugal.", "links": {"discord": ["TugaPlace"]}, "path": {"110-251": [[352, 212], [356, 212], [363, 214], [367, 214], [376, 211], [393, 211], [402, 213], [407, 216], [408, 218], [408, 220], [404, 223], [388, 226], [376, 225], [366, 222], [360, 223], [355, 225], [352, 224], [354, 221], [361, 218], [356, 215], [353, 214]]}, "center": {"110-251": [382, 218]}}, -{"id": 2101, "name": "Traffic cones (T-RV-7)", "description": "Traffic cones (in Québécois Cônes orange), are usually cone-shaped markers that are placed on roads to temporarily redirect traffic in a safe manner. They are omnipresent in Montréal, the most populated city in Québec, so much that they are an icon of the city.", "links": {"website": ["https://en.wikipedia.org/wiki/Traffic_cone", "https://fr.wikipedia.org/wiki/C%C3%B4ne_de_signalisation"]}, "path": {"112-258": [[483, 198], [483, 197], [577, 197], [577, 203], [483, 203]]}, "center": {"112-258": [530, 200]}}, +{"id": 2097, "name": "Vahnilly", "description": "", "links": {"website": ["https://www.twitch.tv/"]}, "path": {"209-258, T": [[1490, 15], [1500, 15], [1500, 23], [1490, 23]]}, "center": {"209-258, T": [1495, 19]}}, +{"id": 2098, "name": "Lionel Messi", "description": "Made by the Argentine Community its a tribute to their arguably best football player ever.\nHe is loved by the argentine and many fans from all over the world.\nYou can read more about him on his wikipedia page", "links": {"website": ["https://en.wikipedia.org/wiki/Lionel_Messi"], "subreddit": ["PlaceArg", "messi"], "discord": ["WVdFHfvN7h"]}, "path": {"210-258, T": [[1237, 918], [1252, 903], [1274, 901], [1286, 908], [1288, 918], [1291, 928], [1290, 949], [1294, 952], [1289, 974], [1285, 977], [1286, 987], [1296, 988], [1301, 992], [1310, 995], [1314, 999], [1218, 999], [1229, 992], [1237, 986], [1244, 983], [1244, 964], [1234, 959], [1234, 928], [1236, 921]]}, "center": {"210-258, T": [1262, 933]}}, +{"id": 2099, "name": "Pink river dolphin (boto cor de rosa)", "description": "The pink river dolphin is a species of toothed whale which is native to and is exclusively of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Amazon_river_dolphin"]}, "path": {"211-258, T": [[-631, -643], [-634, -619], [-644, -625], [-655, -643], [-648, -651]]}, "center": {"211-258, T": [-641, -637]}}, +{"id": 2100, "name": "Sardine", "description": "One of the most consumed species of fish in Portugal.", "links": {"discord": ["TugaPlace"]}, "path": {"110-251, T": [[352, 212], [356, 212], [363, 214], [367, 214], [376, 211], [393, 211], [402, 213], [407, 216], [408, 218], [408, 220], [404, 223], [388, 226], [376, 225], [366, 222], [360, 223], [355, 225], [352, 224], [354, 221], [361, 218], [356, 215], [353, 214]]}, "center": {"110-251, T": [382, 218]}}, +{"id": 2101, "name": "Traffic cones (T-RV-7)", "description": "Traffic cones (in Québécois Cônes orange), are usually cone-shaped markers that are placed on roads to temporarily redirect traffic in a safe manner. They are omnipresent in Montréal, the most populated city in Québec, so much that they are an icon of the city.", "links": {"website": ["https://en.wikipedia.org/wiki/Traffic_cone", "https://fr.wikipedia.org/wiki/C%C3%B4ne_de_signalisation"]}, "path": {"112-258, T": [[483, 198], [483, 197], [577, 197], [577, 203], [483, 203]]}, "center": {"112-258, T": [530, 200]}}, {"id": 2102, "name": "Breadbug", "description": "Breadbugs are creatures from the Pikmin series that appear in Pikmin 1, 2, and 4. They get their name from the fact that they resemble large bread rolls. The Breadbug has become quite a meme within the Pikmin community for looking both cute and derpy simultaneously, and is often paired with the phrase \"get breadbugged\".\nThis art was partially coordinated by the streamer Obi The Producer. \nThis art was created by u/ShimorEgypt4227", "links": {"website": ["https://www.pikminwiki.com/Breadbug"], "subreddit": ["Pikmin"]}, "path": {"211-249": [[1454, 386], [1460, 386], [1462, 388], [1462, 394], [1452, 394], [1452, 391], [1453, 390], [1453, 387]]}, "center": {"211-249": [1457, 390]}}, -{"id": 2103, "name": "Special Week", "description": "Special Week is a character from Uma Musume: Pretty Derby, and is based off a Japanese racehorse. The character is one of the 3 main protagonist and is used to promote Uma Musume as a whole.", "links": {"website": ["https://umamusume.fandom.com/wiki/Special_Week"], "subreddit": ["UmaMusume"], "discord": ["umamusume"]}, "path": {"206-258": [[-746, -206], [-718, -206], [-718, -207], [-719, -208], [-720, -209], [-721, -210], [-720, -211], [-719, -212], [-720, -213], [-720, -214], [-721, -215], [-722, -216], [-722, -217], [-721, -218], [-721, -219], [-720, -220], [-720, -221], [-720, -222], [-720, -223], [-721, -224], [-721, -225], [-721, -226], [-722, -227], [-722, -228], [-722, -229], [-722, -230], [-722, -231], [-723, -232], [-723, -233], [-722, -234], [-722, -235], [-723, -236], [-723, -237], [-722, -238], [-723, -241], [-723, -245], [-726, -245], [-726, -244], [-728, -244], [-728, -243], [-741, -243], [-741, -245], [-742, -245], [-742, -246], [-743, -247], [-744, -246], [-744, -245], [-744, -244], [-744, -243], [-745, -243], [-745, -240], [-746, -240], [-746, -239], [-747, -239], [-747, -237], [-748, -237], [-748, -236], [-749, -236], [-749, -233], [-750, -232], [-751, -231], [-751, -220], [-750, -219], [-750, -217], [-749, -216], [-748, -215], [-747, -214], [-747, -213], [-746, -212], [-746, -211], [-747, -210], [-747, -206]]}, "center": {"206-258": [-736, -224]}}, -{"id": 2104, "name": "Percé Rock", "description": "Percé Rock (French: Rocher Percé, lit. 'pierced rock') is a huge sheer rock formation in the Gulf of Saint Lawrence on the tip of the Gaspé Peninsula in Québec, Canada, off Percé Bay. Percé Rock appears from a distance like a ship under sail.", "links": {"website": ["https://en.wikipedia.org/wiki/Perc%C3%A9_Rock"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"136-258": [[570, 160], [570, 158], [571, 158], [571, 155], [574, 155], [574, 154], [575, 154], [575, 155], [583, 155], [583, 156], [584, 156], [584, 160], [583, 159], [584, 159], [584, 158], [584, 157], [583, 157], [580, 157], [580, 158], [579, 158], [579, 160], [570, 160], [586, 155], [586, 160], [589, 160], [589, 157], [588, 157], [588, 155], [587, 155]]}, "center": {"136-258": [573, 157]}}, -{"id": 2105, "name": "MLP Wipe Counter", "description": "The raid/wipe counter made by the MLP community. Each time one of their art art pieces got completely wiped out (minor raids happened too often to count), it increased by one.", "links": {"subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"210-258": [[685, 850], [692, 850], [694, 856], [686, 856]]}, "center": {"210-258": [690, 853]}}, -{"id": 2106, "name": "Caravela", "description": "The caravel is a small manoeuvrable sailing ship used in the 15th century by the Portuguese to explore along the West African coast and into the Atlantic Ocean. The lateen sails gave it speed and the capacity for sailing windward (beating). Caravels were used by the Portuguese and Castilians for the oceanic exploration voyages during the 15th and 16th centuries, during the Age of Discovery.", "links": {"website": ["https://en.wikipedia.org/wiki/Caravel"], "discord": ["TugaPlace"]}, "path": {"62-258": [[518, 353], [517, 347], [516, 340], [516, 335], [519, 332], [519, 328], [516, 324], [516, 321], [520, 312], [537, 305], [537, 298], [549, 299], [566, 317], [577, 327], [578, 334], [577, 338], [567, 341], [565, 349], [563, 353], [524, 353]]}, "center": {"62-258": [544, 329]}}, -{"id": 2107, "name": "Basque Country Flag (Ikurriña)", "description": "The Basque Country or Basque Autonomous Community was granted the status of nationality within Spain, attributed by the Spanish Constitution of 1978. The autonomous community is based on the Statute of Autonomy of the Basque Country.\nThe term Basque Country refers to the larger cultural region (Basque: Euskal Herria), the home of the Basque people, which includes the autonomous community.", "links": {"subreddit": ["basque"]}, "path": {"211-258": [[-445, 290], [-424, 290], [-424, 302], [-445, 303]]}, "center": {"211-258": [-435, 296]}}, -{"id": 2108, "name": "Ender Pearl", "description": "Ender Pearl by German Streamer Merleperle", "links": {"website": ["https://www.twitch.tv/merleperle"], "subreddit": ["merleperle"]}, "path": {"211-258": [[999, 115], [999, 131], [1015, 131], [1015, 115], [1008, 115]]}, "center": {"211-258": [1007, 123]}}, +{"id": 2103, "name": "Special Week", "description": "Special Week is a character from Uma Musume: Pretty Derby, and is based off a Japanese racehorse. The character is one of the 3 main protagonist and is used to promote Uma Musume as a whole.", "links": {"website": ["https://umamusume.fandom.com/wiki/Special_Week"], "subreddit": ["UmaMusume"], "discord": ["umamusume"]}, "path": {"206-258, T": [[-746, -206], [-718, -206], [-718, -207], [-719, -208], [-720, -209], [-721, -210], [-720, -211], [-719, -212], [-720, -213], [-720, -214], [-721, -215], [-722, -216], [-722, -217], [-721, -218], [-721, -219], [-720, -220], [-720, -221], [-720, -222], [-720, -223], [-721, -224], [-721, -225], [-721, -226], [-722, -227], [-722, -228], [-722, -229], [-722, -230], [-722, -231], [-723, -232], [-723, -233], [-722, -234], [-722, -235], [-723, -236], [-723, -237], [-722, -238], [-723, -241], [-723, -245], [-726, -245], [-726, -244], [-728, -244], [-728, -243], [-741, -243], [-741, -245], [-742, -245], [-742, -246], [-743, -247], [-744, -246], [-744, -245], [-744, -244], [-744, -243], [-745, -243], [-745, -240], [-746, -240], [-746, -239], [-747, -239], [-747, -237], [-748, -237], [-748, -236], [-749, -236], [-749, -233], [-750, -232], [-751, -231], [-751, -220], [-750, -219], [-750, -217], [-749, -216], [-748, -215], [-747, -214], [-747, -213], [-746, -212], [-746, -211], [-747, -210], [-747, -206]]}, "center": {"206-258, T": [-736, -224]}}, +{"id": 2104, "name": "Percé Rock", "description": "Percé Rock (French: Rocher Percé, lit. 'pierced rock') is a huge sheer rock formation in the Gulf of Saint Lawrence on the tip of the Gaspé Peninsula in Québec, Canada, off Percé Bay. Percé Rock appears from a distance like a ship under sail.", "links": {"website": ["https://en.wikipedia.org/wiki/Perc%C3%A9_Rock"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"136-258, T": [[570, 160], [570, 158], [571, 158], [571, 155], [574, 155], [574, 154], [575, 154], [575, 155], [583, 155], [583, 156], [584, 156], [584, 160], [583, 159], [584, 159], [584, 158], [584, 157], [583, 157], [580, 157], [580, 158], [579, 158], [579, 160], [570, 160], [586, 155], [586, 160], [589, 160], [589, 157], [588, 157], [588, 155], [587, 155]]}, "center": {"136-258, T": [573, 157]}}, +{"id": 2105, "name": "MLP Wipe Counter", "description": "The raid/wipe counter made by the MLP community. Each time one of their art art pieces got completely wiped out (minor raids happened too often to count), it increased by one.", "links": {"subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"210-258, T": [[685, 850], [692, 850], [694, 856], [686, 856]]}, "center": {"210-258, T": [690, 853]}}, +{"id": 2106, "name": "Caravela", "description": "The caravel is a small manoeuvrable sailing ship used in the 15th century by the Portuguese to explore along the West African coast and into the Atlantic Ocean. The lateen sails gave it speed and the capacity for sailing windward (beating). Caravels were used by the Portuguese and Castilians for the oceanic exploration voyages during the 15th and 16th centuries, during the Age of Discovery.", "links": {"website": ["https://en.wikipedia.org/wiki/Caravel"], "discord": ["TugaPlace"]}, "path": {"62-258, T": [[518, 353], [517, 347], [516, 340], [516, 335], [519, 332], [519, 328], [516, 324], [516, 321], [520, 312], [537, 305], [537, 298], [549, 299], [566, 317], [577, 327], [578, 334], [577, 338], [567, 341], [565, 349], [563, 353], [524, 353]]}, "center": {"62-258, T": [544, 329]}}, +{"id": 2107, "name": "Basque Country Flag (Ikurriña)", "description": "The Basque Country or Basque Autonomous Community was granted the status of nationality within Spain, attributed by the Spanish Constitution of 1978. The autonomous community is based on the Statute of Autonomy of the Basque Country.\nThe term Basque Country refers to the larger cultural region (Basque: Euskal Herria), the home of the Basque people, which includes the autonomous community.", "links": {"subreddit": ["basque"]}, "path": {"211-258, T": [[-445, 290], [-424, 290], [-424, 302], [-445, 303]]}, "center": {"211-258, T": [-435, 296]}}, +{"id": 2108, "name": "Ender Pearl", "description": "Ender Pearl by German Streamer Merleperle", "links": {"website": ["https://www.twitch.tv/merleperle"], "subreddit": ["merleperle"]}, "path": {"211-258, T": [[999, 115], [999, 131], [1015, 131], [1015, 115], [1008, 115]]}, "center": {"211-258, T": [1007, 123]}}, {"id": 2109, "name": "Analyst's logo Ewilan's Quest", "description": "The logo from the Analyst guild in the french book series \"La Quête d'Ewilan\".", "links": {"website": ["https://www.andarta-pictures.com/fr/productions/la-quete-d-ewilan.html"], "subreddit": ["EwilansQuest"], "discord": ["PpUbD6M8YA"]}, "path": {"91-94": [[-534, -163], [-538, -163], [-542, -159], [-542, -155], [-538, -151], [-534, -151], [-530, -155], [-530, -159]]}, "center": {"91-94": [-536, -157]}}, -{"id": 2110, "name": "ERA Florks", "description": "Flork of Cows is an online four-panel webcomic series memorable for its MS-Paint drawn sock puppet characters. Over the years, it has grown popular thanks in part to several popular strips, including the one that inspired Hey Man, You See That Guy Over There?\n\nExplosive Reactive Armor (ERA) refers to a type of reactive armor for military vehicles, predominantly used for tanks and armored personnel carriers (APC), that breaks up a competing projectile upon impact in order to protect the vehicle from being penetrated and keep the crew inside safe. ERA became the subject of memes and internet discourse in 2022 and 2023 amid the Russian Invasion of Ukraine, eventually leading to the use of Flork of Cows characters dressed like two Ukrainian soldiers that were portrayed putting ERA on any object. The memes became prevalent on Reddit's /r/NonCredibleDefense sub.", "links": {"subreddit": ["NonCredibleDefense"]}, "path": {"145-258": [[-14, -77], [-14, -83], [-16, -89], [-13, -89], [-12, -90], [-12, -91], [-15, -93], [-16, -97], [-23, -98], [-26, -95], [-26, -92], [-25, -91], [-26, -88], [-27, -89], [-27, -91], [-31, -92], [-31, -95], [-39, -96], [-42, -93], [-41, -91], [-39, -90], [-41, -88], [-42, -86], [-43, -85], [-43, -77]]}, "center": {"145-258": [-33, -85]}}, -{"id": 2111, "name": "Ice Pikmin", "description": "Ice Pikmin were a new type of pikmin introduced in Pikmin 4, they can freeze enemies and water.", "links": {"subreddit": ["Pikmin"]}, "path": {"211-258": [[186, 85], [188, 85], [188, 81], [197, 71], [190, 77], [185, 77], [185, 85], [193, 85], [195, 85], [197, 85], [198, 71]]}, "center": {"211-258": [194, 81]}}, -{"id": 2112, "name": "Mate Gaúcho", "description": "Mate is a traditional South American caffeine-rich infused herbal drink.\n\nIn the mate gourd there is a handkerchief, a typical accessory of the state of Rio Grande do Sul.\n\nIt is possible to notice that the \"cheeks\" of the gourd are painted with the colors of the two main soccer teams of Rio Grande do Sul, Grêmio and Internacional, which form the \"Clássico Gre-Nal\", To this day, the two teams have already faced each other 439 times, with 160 wins for Internacional against 141 for Grêmio, in addition to 138 draws.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Mate_(drink)](https://en.wikipedia.org/wiki/Mate_(drink))"], "subreddit": ["riograndedosul"], "discord": ["jyj9mVkgWB"]}, "path": {"209-258": [[-683, -641], [-676, -647], [-674, -647], [-679, -640], [-675, -637], [-675, -635], [-678, -632], [-678, -629], [-677, -629], [-677, -624], [-678, -624], [-678, -620], [-681, -617], [-680, -616], [-679, -615], [-679, -614], [-678, -613], [-678, -612], [-678, -611], [-680, -611], [-680, -613], [-683, -616], [-685, -616], [-686, -615], [-686, -614], [-686, -613], [-687, -612], [-688, -611], [-690, -611], [-689, -613], [-689, -615], [-692, -616], [-690, -616], [-690, -619], [-691, -620], [-692, -621], [-691, -622], [-690, -623], [-691, -624], [-691, -629], [-690, -630], [-690, -633], [-691, -633], [-692, -634], [-692, -637], [-688, -641]]}, "center": {"209-258": [-684, -626]}}, -{"id": 2113, "name": "Flying Thunder God Kunai", "description": "The Flying Thunder God Kunai are kunai used by Minato Namikaze in the manga Naruto.\n\nThis kunai was made in collaboration with Berserk for the Hill of Swords.", "links": {"website": ["https://naruto.fandom.com/wiki/Flying_Thunder_God_Kunai", "https://en.wikipedia.org/wiki/Naruto"], "subreddit": ["PlaceNaruto", "Berserk"], "discord": ["WMy7NF37", "M699v8xSqz"]}, "path": {"167-258": [[526, 943], [523, 946], [523, 954], [519, 954], [516, 957], [516, 961], [517, 961], [519, 959], [520, 959], [524, 964], [524, 965], [520, 965], [520, 967], [529, 967], [529, 966], [533, 966], [533, 964], [529, 964], [533, 959], [534, 959], [536, 961], [537, 961], [537, 957], [534, 954], [530, 954], [530, 946], [527, 943]]}, "center": {"167-258": [527, 958]}}, -{"id": 2114, "name": "Matoi Ryuko", "description": "Matoi Ryuko is the protagonist of Kill La Kill.", "links": {"subreddit": ["KillLaKill"], "discord": ["As5t36hXsk"]}, "path": {"211-258": [[-1031, 667], [-1000, 667], [-1000, 699], [-1032, 699]]}, "center": {"211-258": [-1016, 683]}}, -{"id": 2115, "name": "Narcissist", "description": "Narcissist was rumoured to be Playboi Carti's 4th studio album. It was supposed to be released on September 13th but it missed the initial release date. The release of the album has been teased by people in Carti's camp and has been rumored to have a racist aesthetic and theme. Carti also dropped merchandise for the same. But as you all've experienced throughout this decade, Jordan Carter loves to lie about release dates and mess with his fans. How this album would've sounded like? I guess we'll never know.", "links": {"website": ["https://playboicartiofficial.com/"], "subreddit": ["playboicarti"]}, "path": {"210-258": [[-570, -204], [-570, -191], [-557, -191], [-557, -204]]}, "center": {"210-258": [-563, -197]}}, +{"id": 2110, "name": "ERA Florks", "description": "Flork of Cows is an online four-panel webcomic series memorable for its MS-Paint drawn sock puppet characters. Over the years, it has grown popular thanks in part to several popular strips, including the one that inspired Hey Man, You See That Guy Over There?\n\nExplosive Reactive Armor (ERA) refers to a type of reactive armor for military vehicles, predominantly used for tanks and armored personnel carriers (APC), that breaks up a competing projectile upon impact in order to protect the vehicle from being penetrated and keep the crew inside safe. ERA became the subject of memes and internet discourse in 2022 and 2023 amid the Russian Invasion of Ukraine, eventually leading to the use of Flork of Cows characters dressed like two Ukrainian soldiers that were portrayed putting ERA on any object. The memes became prevalent on Reddit's /r/NonCredibleDefense sub.", "links": {"subreddit": ["NonCredibleDefense"]}, "path": {"145-258, T": [[-14, -77], [-14, -83], [-16, -89], [-13, -89], [-12, -90], [-12, -91], [-15, -93], [-16, -97], [-23, -98], [-26, -95], [-26, -92], [-25, -91], [-26, -88], [-27, -89], [-27, -91], [-31, -92], [-31, -95], [-39, -96], [-42, -93], [-41, -91], [-39, -90], [-41, -88], [-42, -86], [-43, -85], [-43, -77]]}, "center": {"145-258, T": [-33, -85]}}, +{"id": 2111, "name": "Ice Pikmin", "description": "Ice Pikmin were a new type of pikmin introduced in Pikmin 4, they can freeze enemies and water.", "links": {"subreddit": ["Pikmin"]}, "path": {"211-258, T": [[186, 85], [188, 85], [188, 81], [197, 71], [190, 77], [185, 77], [185, 85], [193, 85], [195, 85], [197, 85], [198, 71]]}, "center": {"211-258, T": [194, 81]}}, +{"id": 2112, "name": "Mate Gaúcho", "description": "Mate is a traditional South American caffeine-rich infused herbal drink.\n\nIn the mate gourd there is a handkerchief, a typical accessory of the state of Rio Grande do Sul.\n\nIt is possible to notice that the \"cheeks\" of the gourd are painted with the colors of the two main soccer teams of Rio Grande do Sul, Grêmio and Internacional, which form the \"Clássico Gre-Nal\", To this day, the two teams have already faced each other 439 times, with 160 wins for Internacional against 141 for Grêmio, in addition to 138 draws.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Mate_(drink)](https://en.wikipedia.org/wiki/Mate_(drink))"], "subreddit": ["riograndedosul"], "discord": ["jyj9mVkgWB"]}, "path": {"209-258, T": [[-683, -641], [-676, -647], [-674, -647], [-679, -640], [-675, -637], [-675, -635], [-678, -632], [-678, -629], [-677, -629], [-677, -624], [-678, -624], [-678, -620], [-681, -617], [-680, -616], [-679, -615], [-679, -614], [-678, -613], [-678, -612], [-678, -611], [-680, -611], [-680, -613], [-683, -616], [-685, -616], [-686, -615], [-686, -614], [-686, -613], [-687, -612], [-688, -611], [-690, -611], [-689, -613], [-689, -615], [-692, -616], [-690, -616], [-690, -619], [-691, -620], [-692, -621], [-691, -622], [-690, -623], [-691, -624], [-691, -629], [-690, -630], [-690, -633], [-691, -633], [-692, -634], [-692, -637], [-688, -641]]}, "center": {"209-258, T": [-684, -626]}}, +{"id": 2113, "name": "Flying Thunder God Kunai", "description": "The Flying Thunder God Kunai are kunai used by Minato Namikaze in the manga Naruto.\n\nThis kunai was made in collaboration with Berserk for the Hill of Swords.", "links": {"website": ["https://naruto.fandom.com/wiki/Flying_Thunder_God_Kunai", "https://en.wikipedia.org/wiki/Naruto"], "subreddit": ["PlaceNaruto", "Berserk"], "discord": ["WMy7NF37", "M699v8xSqz"]}, "path": {"167-258, T": [[526, 943], [523, 946], [523, 954], [519, 954], [516, 957], [516, 961], [517, 961], [519, 959], [520, 959], [524, 964], [524, 965], [520, 965], [520, 967], [529, 967], [529, 966], [533, 966], [533, 964], [529, 964], [533, 959], [534, 959], [536, 961], [537, 961], [537, 957], [534, 954], [530, 954], [530, 946], [527, 943]]}, "center": {"167-258, T": [527, 958]}}, +{"id": 2114, "name": "Matoi Ryuko", "description": "Matoi Ryuko is the protagonist of Kill La Kill.", "links": {"subreddit": ["KillLaKill"], "discord": ["As5t36hXsk"]}, "path": {"211-258, T": [[-1031, 667], [-1000, 667], [-1000, 699], [-1032, 699]]}, "center": {"211-258, T": [-1016, 683]}}, +{"id": 2115, "name": "Narcissist", "description": "Narcissist was rumoured to be Playboi Carti's 4th studio album. It was supposed to be released on September 13th but it missed the initial release date. The release of the album has been teased by people in Carti's camp and has been rumored to have a racist aesthetic and theme. Carti also dropped merchandise for the same. But as you all've experienced throughout this decade, Jordan Carter loves to lie about release dates and mess with his fans. How this album would've sounded like? I guess we'll never know.", "links": {"website": ["https://playboicartiofficial.com/"], "subreddit": ["playboicarti"]}, "path": {"210-258, T": [[-570, -204], [-570, -191], [-557, -191], [-557, -204]]}, "center": {"210-258, T": [-563, -197]}}, {"id": 2116, "name": "Zombie Escape Corner", "description": "Zombie Escape is a gamemode that can be played on Counter-Strike: Global Offensive, Team Fortress 2, and soon-to-be Counter-Strike 2.\nThis area contains logos of a few Zombie Escape communities, including GFL, Mapeadores, Skial, and Source 2 Zombie Escape project.", "links": {"website": ["https://gflclan.com/", "https://mapeadores.com/", "https://skial.com/"]}, "path": {"145-209": [[203, -803], [203, -797], [299, -797], [299, -803]]}, "center": {"145-209": [251, -800]}}, -{"id": 2117, "name": "bill wurtz initials", "description": "the letters b and w written in the lime green colour often associated with popular musician Bill Wurtz as a collaboration between r/billwurtz and r/furry_irl. it was mainly maintained by only 3 users and still managed to survive to the final canvas with only minor damage on the B", "links": {"website": ["https://billwurtz.com"], "subreddit": ["billwurtz", "furry_irl"]}, "path": {"206-258": [[-1125, 203], [-1125, 207], [-1117, 207], [-1118, 203]]}, "center": {"206-258": [-1121, 205]}}, -{"id": 2118, "name": "Matoi Ryuko", "description": "Matoi Ryuko is the protagonist of Kill La Kill.", "links": {"subreddit": ["KillLaKill"], "discord": ["As5t36hXsk"]}, "path": {"211-258": [[-1031, 667], [-1000, 667], [-1000, 699], [-1032, 699]]}, "center": {"211-258": [-1016, 683]}}, -{"id": 2119, "name": "Narcissist", "description": "Narcissist was rumoured to be Playboi Carti's 4th studio album. It was supposed to be released on September 13th but it missed the initial release date. The release of the album has been teased by people in Carti's camp and has been rumored to have a racist aesthetic and theme. Carti also dropped merchandise for the same. But as you all've experienced throughout this decade, Jordan Carter loves to lie about release dates and mess with his fans. How this album would've sounded like? I guess we'll never know.", "links": {"website": ["https://playboicartiofficial.com/"], "subreddit": ["playboicarti"]}, "path": {"210-258": [[-570, -204], [-570, -191], [-557, -191], [-557, -204]]}, "center": {"210-258": [-563, -197]}}, +{"id": 2117, "name": "bill wurtz initials", "description": "the letters b and w written in the lime green colour often associated with popular musician Bill Wurtz as a collaboration between r/billwurtz and r/furry_irl. it was mainly maintained by only 3 users and still managed to survive to the final canvas with only minor damage on the B", "links": {"website": ["https://billwurtz.com"], "subreddit": ["billwurtz", "furry_irl"]}, "path": {"206-258, T": [[-1125, 203], [-1125, 207], [-1117, 207], [-1118, 203]]}, "center": {"206-258, T": [-1121, 205]}}, +{"id": 2118, "name": "Matoi Ryuko", "description": "Matoi Ryuko is the protagonist of Kill La Kill.", "links": {"subreddit": ["KillLaKill"], "discord": ["As5t36hXsk"]}, "path": {"211-258, T": [[-1031, 667], [-1000, 667], [-1000, 699], [-1032, 699]]}, "center": {"211-258, T": [-1016, 683]}}, +{"id": 2119, "name": "Narcissist", "description": "Narcissist was rumoured to be Playboi Carti's 4th studio album. It was supposed to be released on September 13th but it missed the initial release date. The release of the album has been teased by people in Carti's camp and has been rumored to have a racist aesthetic and theme. Carti also dropped merchandise for the same. But as you all've experienced throughout this decade, Jordan Carter loves to lie about release dates and mess with his fans. How this album would've sounded like? I guess we'll never know.", "links": {"website": ["https://playboicartiofficial.com/"], "subreddit": ["playboicarti"]}, "path": {"210-258, T": [[-570, -204], [-570, -191], [-557, -191], [-557, -204]]}, "center": {"210-258, T": [-563, -197]}}, {"id": 2120, "name": "Indomie", "description": "Indomie is a brand of instant noodle produced by the Indonesian company Indofood.\n\nThis art was drawn by r/indonesia and r/1CAK.", "links": {"website": ["https://id.wikipedia.org/wiki/Indomie"], "subreddit": ["indonesia", "1CAK"]}, "path": {"194-222": [[-1462, 532], [-1462, 542], [-1449, 542], [-1449, 532]]}, "center": {"194-222": [-1455, 537]}}, -{"id": 2121, "name": "Capp n' Ccino's \"Peixe Alves\"", "description": "🇬🇧 / 🇺🇸\nOne of the icons (God) of the Discord server \"Capp n' Ccino\".\nTransported with love and affection to r / place, the story of our friend with scales begins when Peixe Alves falls from the sky (paradise) because he was curious to see what the monotonous life of mere mortals was like. Finding it calmer than paradise, Peixe Alves decides to rest in a lake, the Sacred Lake of Miraculous Infusions, name given because instead of seaweed, the lake contained infusion leaves, giving a unique aroma to its water. When Peixe Alves touched the water for the first time, the water became transparent, but with the same divine taste.\n\nHowever, when he landed on r/place, something caught his attention. A huge and very powerful creature with an intimidating appearance and an enormous height, that made Peixe Alves envious, but, at the same time, admired.\nPeixe Alves is a very powerful being, however he has limits. One of them is that Peixe Alves cannot change his appearance, that is, he is trapped in the body of a small fish and with a harmless appearance forever.\n\n🇵🇹 / 🇧🇷\nUm dos ícones (Deus) do servidor de Discord \"Capp n' Ccino\".\n\nTransportado com amor e carinho para o r/place, a história do nosso amigo de escamas começa quando Peixe Alves cai do céu (paraíso) porque teve curiosidade de ver como era a vida monótona dos meros mortais. Achando mais calmo do que o paraíso, Peixe Alves decide descançar em um lago, o Lago Sagrado de Infusões Milagrosas, nome dado pois em vez de algas, o lago continha folhas de infusões, dando um aroma único á sua água. Quando Peixe Alves tocou na água pela primeira vez, a água ficou transparente, porém, com o mesmo divino sabor.\n\nPorém, ao aterrar no r/place, algo lhe chamou á atenção. Uma criatura enorme e poderosíssima com uma aparência intimidadora e uma altura enorme, que deu inveja a Peixe Alves, mas, ao mesmo tempo, admirado.\nPeixe Alves é um ser poderosíssimo, no entanto ele tem limites. Um deles é que Peixe Alves não consegue mudar a sua aparência, ou seja, ele está preso no corpo de um peixe pequeno e com uma aparência inofensiva para sempre.", "links": {"website": ["https://depressao.fandom.com/pt-br/wiki/Peixe_Alves"], "discord": ["XGBMy7NeU8"]}, "path": {"212-258": [[-1113, 562], [-1113, 567], [-1103, 567], [-1103, 562]]}, "center": {"212-258": [-1108, 565]}}, -{"id": 2122, "name": "Poppy (Coquelicot)", "description": "Papaver rhoeas, with common names including common poppy,[3] corn poppy, corn rose, field poppy,[4] Flanders poppy, and red poppy, is an annual herbaceous species of flowering plant in the poppy family Papaveraceae. It is a temperate native with a very wide distribution area, from Africa to temperate and tropical Asia and Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Papaver_rhoeas"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"159-258": [[771, 192], [775, 192], [775, 193], [776, 193], [776, 194], [777, 194], [777, 195], [778, 195], [778, 199], [777, 199], [777, 200], [776, 200], [776, 201], [775, 201], [775, 202], [771, 202], [771, 201], [770, 201], [770, 200], [769, 200], [769, 199], [768, 199], [768, 195], [769, 195], [769, 194], [770, 194], [770, 193], [771, 193], [771, 192], [775, 192], [775, 193], [776, 193], [773, 203], [773, 204], [773, 205], [773, 206], [773, 207], [773, 206], [773, 205], [772, 205], [771, 204], [770, 204], [771, 204], [772, 205], [773, 205], [774, 205], [775, 204], [776, 204]]}, "center": {"159-258": [771, 197]}}, -{"id": 2123, "name": "Acadie", "description": "Acadia (French: Acadie) was a colony of New France in northeastern North America which included parts of what are now the Maritime provinces, the Gaspé Peninsula and Maine to the Kennebec River.", "links": {"website": ["https://en.wikipedia.org/wiki/Acadia"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"68-258": [[621, 173], [631, 173], [631, 181], [621, 181], [621, 173], [621, 182]]}, "center": {"68-258": [626, 177]}}, -{"id": 2124, "name": "Dóquiun, the stardust warrior.", "description": "Dóquiun from the comic series 'Guerreros del Universo' by ItsByPlay.", "links": {"website": ["https://tapas.io/series/Guerreros-del-Universo/info"]}, "path": {"242-258": [[-242, 849], [-242, 855], [-236, 855], [-236, 849]]}, "center": {"242-258": [-239, 852]}}, -{"id": 2125, "name": "bennyg187", "description": "TThe Shibahead is part of the emote bennyg187 from the german streamer BennyGee_. The emote shows an Shiba dog in an Adidas suit.", "links": {"website": ["https://www.twitch.tv/bennygee_"], "subreddit": ["BennyGee_"]}, "path": {"211-258": [[1418, 732], [1419, 718], [1415, 712], [1400, 712], [1391, 713], [1391, 720], [1396, 731], [1395, 732], [1402, 739], [1408, 742], [1410, 741], [1411, 739], [1411, 737], [1408, 736], [1405, 736], [1402, 732], [1418, 732], [1419, 716], [1419, 712], [1411, 712], [1390, 721], [1382, 721], [1382, 732], [1390, 732], [1395, 733], [1419, 733]]}, "center": {"211-258": [1388, 726]}}, -{"id": 2126, "name": "Spycrab", "description": "A smaller version of the Spycrab that can be found in the French flag.", "links": {}, "path": {"212-258": [[-565, 301], [-567, 300], [-567, 299], [-566, 297], [-560, 297], [-561, 302]]}, "center": {"212-258": [-563, 299]}}, +{"id": 2121, "name": "Capp n' Ccino's \"Peixe Alves\"", "description": "🇬🇧 / 🇺🇸\nOne of the icons (God) of the Discord server \"Capp n' Ccino\".\nTransported with love and affection to r / place, the story of our friend with scales begins when Peixe Alves falls from the sky (paradise) because he was curious to see what the monotonous life of mere mortals was like. Finding it calmer than paradise, Peixe Alves decides to rest in a lake, the Sacred Lake of Miraculous Infusions, name given because instead of seaweed, the lake contained infusion leaves, giving a unique aroma to its water. When Peixe Alves touched the water for the first time, the water became transparent, but with the same divine taste.\n\nHowever, when he landed on r/place, something caught his attention. A huge and very powerful creature with an intimidating appearance and an enormous height, that made Peixe Alves envious, but, at the same time, admired.\nPeixe Alves is a very powerful being, however he has limits. One of them is that Peixe Alves cannot change his appearance, that is, he is trapped in the body of a small fish and with a harmless appearance forever.\n\n🇵🇹 / 🇧🇷\nUm dos ícones (Deus) do servidor de Discord \"Capp n' Ccino\".\n\nTransportado com amor e carinho para o r/place, a história do nosso amigo de escamas começa quando Peixe Alves cai do céu (paraíso) porque teve curiosidade de ver como era a vida monótona dos meros mortais. Achando mais calmo do que o paraíso, Peixe Alves decide descançar em um lago, o Lago Sagrado de Infusões Milagrosas, nome dado pois em vez de algas, o lago continha folhas de infusões, dando um aroma único á sua água. Quando Peixe Alves tocou na água pela primeira vez, a água ficou transparente, porém, com o mesmo divino sabor.\n\nPorém, ao aterrar no r/place, algo lhe chamou á atenção. Uma criatura enorme e poderosíssima com uma aparência intimidadora e uma altura enorme, que deu inveja a Peixe Alves, mas, ao mesmo tempo, admirado.\nPeixe Alves é um ser poderosíssimo, no entanto ele tem limites. Um deles é que Peixe Alves não consegue mudar a sua aparência, ou seja, ele está preso no corpo de um peixe pequeno e com uma aparência inofensiva para sempre.", "links": {"website": ["https://depressao.fandom.com/pt-br/wiki/Peixe_Alves"], "discord": ["XGBMy7NeU8"]}, "path": {"212-258, T": [[-1113, 562], [-1113, 567], [-1103, 567], [-1103, 562]]}, "center": {"212-258, T": [-1108, 565]}}, +{"id": 2122, "name": "Poppy (Coquelicot)", "description": "Papaver rhoeas, with common names including common poppy,[3] corn poppy, corn rose, field poppy,[4] Flanders poppy, and red poppy, is an annual herbaceous species of flowering plant in the poppy family Papaveraceae. It is a temperate native with a very wide distribution area, from Africa to temperate and tropical Asia and Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Papaver_rhoeas"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"159-258, T": [[771, 192], [775, 192], [775, 193], [776, 193], [776, 194], [777, 194], [777, 195], [778, 195], [778, 199], [777, 199], [777, 200], [776, 200], [776, 201], [775, 201], [775, 202], [771, 202], [771, 201], [770, 201], [770, 200], [769, 200], [769, 199], [768, 199], [768, 195], [769, 195], [769, 194], [770, 194], [770, 193], [771, 193], [771, 192], [775, 192], [775, 193], [776, 193], [773, 203], [773, 204], [773, 205], [773, 206], [773, 207], [773, 206], [773, 205], [772, 205], [771, 204], [770, 204], [771, 204], [772, 205], [773, 205], [774, 205], [775, 204], [776, 204]]}, "center": {"159-258, T": [771, 197]}}, +{"id": 2123, "name": "Acadie", "description": "Acadia (French: Acadie) was a colony of New France in northeastern North America which included parts of what are now the Maritime provinces, the Gaspé Peninsula and Maine to the Kennebec River.", "links": {"website": ["https://en.wikipedia.org/wiki/Acadia"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"68-258, T": [[621, 173], [631, 173], [631, 181], [621, 181], [621, 173], [621, 182]]}, "center": {"68-258, T": [626, 177]}}, +{"id": 2124, "name": "Dóquiun, the stardust warrior.", "description": "Dóquiun from the comic series 'Guerreros del Universo' by ItsByPlay.", "links": {"website": ["https://tapas.io/series/Guerreros-del-Universo/info"]}, "path": {"242-258, T": [[-242, 849], [-242, 855], [-236, 855], [-236, 849]]}, "center": {"242-258, T": [-239, 852]}}, +{"id": 2125, "name": "bennyg187", "description": "TThe Shibahead is part of the emote bennyg187 from the german streamer BennyGee_. The emote shows an Shiba dog in an Adidas suit.", "links": {"website": ["https://www.twitch.tv/bennygee_"], "subreddit": ["BennyGee_"]}, "path": {"211-258, T": [[1418, 732], [1419, 718], [1415, 712], [1400, 712], [1391, 713], [1391, 720], [1396, 731], [1395, 732], [1402, 739], [1408, 742], [1410, 741], [1411, 739], [1411, 737], [1408, 736], [1405, 736], [1402, 732], [1418, 732], [1419, 716], [1419, 712], [1411, 712], [1390, 721], [1382, 721], [1382, 732], [1390, 732], [1395, 733], [1419, 733]]}, "center": {"211-258, T": [1388, 726]}}, +{"id": 2126, "name": "Spycrab", "description": "A smaller version of the Spycrab that can be found in the French flag.", "links": {}, "path": {"212-258, T": [[-565, 301], [-567, 300], [-567, 299], [-566, 297], [-560, 297], [-561, 302]]}, "center": {"212-258, T": [-563, 299]}}, {"id": 2127, "name": "Perpetual Adventure", "description": "The logo of a game on Roblox consisting of an obstacle course with various secrets and separate paths. Development began in 2018.", "links": {}, "path": {"204-210": [[-1159, 351], [-1159, 352], [-1158, 353], [-1157, 354], [-1158, 355], [-1158, 358], [-1159, 359], [-1159, 360], [-1158, 360], [-1156, 358], [-1155, 359], [-1154, 359], [-1153, 358], [-1151, 360], [-1150, 360], [-1150, 359], [-1152, 357], [-1151, 356], [-1151, 355], [-1152, 354], [-1151, 353], [-1150, 352], [-1150, 351], [-1151, 351], [-1152, 352], [-1153, 353], [-1154, 352], [-1155, 352], [-1156, 353], [-1158, 351]]}, "center": {"204-210": [-1154, 356]}}, -{"id": 2128, "name": "Sternburg Bier", "description": "A Lager beer that was created in the East German city Leipzig. It is famous among younger people (below age 30) and known as the typical student beer - because students are deemed broke and it's one of the cheapest beers there is.\nFor roughly 70cent per bottle you can enjoy Leipziger tradition and fun. \nMerke dir - Sternburg Bier!", "links": {"website": ["https://www.sternburg-bier.de/"]}, "path": {"211-258": [[299, -692], [299, -676], [361, -676], [361, -693]]}, "center": {"211-258": [330, -684]}}, -{"id": 2129, "name": "Connecticut College Gaming Club", "description": "The Connecticut College Gaming Club's gamer camel! Created by members and alums of the club with help from April Knights.", "links": {"subreddit": ["ConnCollGamingClub"]}, "path": {"212-258": [[-1199, 441], [-1182, 441], [-1182, 456], [-1199, 456]]}, "center": {"212-258": [-1190, 449]}}, -{"id": 2130, "name": "Traffic cones (T-RV-7)", "description": "Traffic cones (in Québécois Cônes orange), are usually cone-shaped markers that are placed on roads to temporarily redirect traffic in a safe manner. They are omnipresent in Montréal, the most populated city in Québec, so much that they are an icon of the city.", "links": {"website": ["https://en.wikipedia.org/wiki/Traffic_cone", "https://fr.wikipedia.org/wiki/C%C3%B4ne_de_signalisation"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"115-258": [[764, 220], [766, 220], [766, 222], [806, 222], [806, 228], [764, 228], [764, 220], [764, 202], [765, 202], [765, 203], [766, 203], [766, 220]]}, "center": {"115-258": [782, 225]}}, -{"id": 2131, "name": "Mann Co.", "description": "Mann Co. a fictional company in Team Fortress 2.", "links": {}, "path": {"212-258": [[-598, 309], [-598, 310], [-598, 316], [-566, 316], [-566, 309]]}, "center": {"212-258": [-582, 313]}}, -{"id": 2132, "name": "Spy", "description": "The Spy is a character from TF2, who inspired Spycrab.", "links": {}, "path": {"212-258": [[-595, 299], [-592, 299], [-590, 298], [-588, 291], [-595, 291]]}, "center": {"212-258": [-592, 294]}}, -{"id": 2133, "name": "Demoman", "description": "The Demoman is a character from TF2.", "links": {}, "path": {"212-258": [[-577, 308], [-577, 301], [-574, 302], [-573, 301], [-573, 309]]}, "center": {"212-258": [-575, 305]}}, -{"id": 2134, "name": "Stoner Soldier", "description": "A meme originating from TF2 depicting soldier with \"stoner-eyes\". He wears a hat iconic from JoJo's Bizarre Adventure due to JoJo-TF2 cooperation.", "links": {}, "path": {"212-258": [[-1118, -79], [-1107, -92], [-1107, -95], [-1109, -95], [-1110, -99], [-1109, -102], [-1114, -104], [-1115, -105], [-1108, -107], [-1107, -116], [-1100, -117], [-1092, -113], [-1092, -111], [-1088, -108], [-1086, -101], [-1087, -96], [-1088, -92], [-1082, -88], [-1075, -81]]}, "center": {"212-258": [-1098, -101]}}, -{"id": 2135, "name": "Church of the Sacred Hear", "description": "Church of the Sacred Heart (Arabic: كنيسة القلب المقدس, French: Église du Sacré-Cœur), is a former Roman Catholic church located in Casablanca, Morocco.", "links": {}, "path": {"211-258": [[296, 125], [264, 125], [264, 97], [292, 97], [292, 98], [293, 105], [294, 111], [296, 120], [296, 122], [296, 124], [296, 126]]}, "center": {"211-258": [278, 111]}}, -{"id": 2136, "name": "Jarate", "description": "An item from Team Fortress 2 depicting a jar full of the Sniper's urine.", "links": {}, "path": {"212-258": [[-565, 308], [-565, 302], [-561, 302], [-561, 308]]}, "center": {"212-258": [-563, 305]}}, -{"id": 2137, "name": "LaBasseCour", "description": "A place made by french guys, with the idea to make chickens, alliance with MSE, Adachi, Austria and Bolivia", "links": {"subreddit": ["LaBasseCour"], "discord": ["zN7RcRuf"]}, "path": {"144-258": [[-749, 245], [-749, 256], [-722, 256], [-722, 246]]}, "center": {"144-258": [-743, 251]}}, -{"id": 2138, "name": "Medic", "description": "The Medic is a character from TF2.", "links": {}, "path": {"212-258": [[-589, 303], [-589, 296], [-586, 296], [-586, 299], [-585, 299], [-585, 302], [-586, 302], [-586, 303]]}, "center": {"212-258": [-587, 300]}}, +{"id": 2128, "name": "Sternburg Bier", "description": "A Lager beer that was created in the East German city Leipzig. It is famous among younger people (below age 30) and known as the typical student beer - because students are deemed broke and it's one of the cheapest beers there is.\nFor roughly 70cent per bottle you can enjoy Leipziger tradition and fun. \nMerke dir - Sternburg Bier!", "links": {"website": ["https://www.sternburg-bier.de/"]}, "path": {"211-258, T": [[299, -692], [299, -676], [361, -676], [361, -693]]}, "center": {"211-258, T": [330, -684]}}, +{"id": 2129, "name": "Connecticut College Gaming Club", "description": "The Connecticut College Gaming Club's gamer camel! Created by members and alums of the club with help from April Knights.", "links": {"subreddit": ["ConnCollGamingClub"]}, "path": {"212-258, T": [[-1199, 441], [-1182, 441], [-1182, 456], [-1199, 456]]}, "center": {"212-258, T": [-1190, 449]}}, +{"id": 2130, "name": "Traffic cones (T-RV-7)", "description": "Traffic cones (in Québécois Cônes orange), are usually cone-shaped markers that are placed on roads to temporarily redirect traffic in a safe manner. They are omnipresent in Montréal, the most populated city in Québec, so much that they are an icon of the city.", "links": {"website": ["https://en.wikipedia.org/wiki/Traffic_cone", "https://fr.wikipedia.org/wiki/C%C3%B4ne_de_signalisation"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"115-258, T": [[764, 220], [766, 220], [766, 222], [806, 222], [806, 228], [764, 228], [764, 220], [764, 202], [765, 202], [765, 203], [766, 203], [766, 220]]}, "center": {"115-258, T": [782, 225]}}, +{"id": 2131, "name": "Mann Co.", "description": "Mann Co. a fictional company in Team Fortress 2.", "links": {}, "path": {"212-258, T": [[-598, 309], [-598, 310], [-598, 316], [-566, 316], [-566, 309]]}, "center": {"212-258, T": [-582, 313]}}, +{"id": 2132, "name": "Spy", "description": "The Spy is a character from TF2, who inspired Spycrab.", "links": {}, "path": {"212-258, T": [[-595, 299], [-592, 299], [-590, 298], [-588, 291], [-595, 291]]}, "center": {"212-258, T": [-592, 294]}}, +{"id": 2133, "name": "Demoman", "description": "The Demoman is a character from TF2.", "links": {}, "path": {"212-258, T": [[-577, 308], [-577, 301], [-574, 302], [-573, 301], [-573, 309]]}, "center": {"212-258, T": [-575, 305]}}, +{"id": 2134, "name": "Stoner Soldier", "description": "A meme originating from TF2 depicting soldier with \"stoner-eyes\". He wears a hat iconic from JoJo's Bizarre Adventure due to JoJo-TF2 cooperation.", "links": {}, "path": {"212-258, T": [[-1118, -79], [-1107, -92], [-1107, -95], [-1109, -95], [-1110, -99], [-1109, -102], [-1114, -104], [-1115, -105], [-1108, -107], [-1107, -116], [-1100, -117], [-1092, -113], [-1092, -111], [-1088, -108], [-1086, -101], [-1087, -96], [-1088, -92], [-1082, -88], [-1075, -81]]}, "center": {"212-258, T": [-1098, -101]}}, +{"id": 2135, "name": "Church of the Sacred Hear", "description": "Church of the Sacred Heart (Arabic: كنيسة القلب المقدس, French: Église du Sacré-Cœur), is a former Roman Catholic church located in Casablanca, Morocco.", "links": {}, "path": {"211-258, T": [[296, 125], [264, 125], [264, 97], [292, 97], [292, 98], [293, 105], [294, 111], [296, 120], [296, 122], [296, 124], [296, 126]]}, "center": {"211-258, T": [278, 111]}}, +{"id": 2136, "name": "Jarate", "description": "An item from Team Fortress 2 depicting a jar full of the Sniper's urine.", "links": {}, "path": {"212-258, T": [[-565, 308], [-565, 302], [-561, 302], [-561, 308]]}, "center": {"212-258, T": [-563, 305]}}, +{"id": 2137, "name": "LaBasseCour", "description": "A place made by french guys, with the idea to make chickens, alliance with MSE, Adachi, Austria and Bolivia", "links": {"subreddit": ["LaBasseCour"], "discord": ["zN7RcRuf"]}, "path": {"144-258, T": [[-749, 245], [-749, 256], [-722, 256], [-722, 246]]}, "center": {"144-258, T": [-743, 251]}}, +{"id": 2138, "name": "Medic", "description": "The Medic is a character from TF2.", "links": {}, "path": {"212-258, T": [[-589, 303], [-589, 296], [-586, 296], [-586, 299], [-585, 299], [-585, 302], [-586, 302], [-586, 303]]}, "center": {"212-258, T": [-587, 300]}}, {"id": 2139, "name": "Late x Rodny dog meme", "description": "Luis Eduardo Restrepo better known as Late is a Spanish youtuber dedicated to memes and the internet world.\n\nRodrigo, better known as Rodny (stylized RODNY), is a Mexican youtuber.\n\nHis content dedicated mainly to Roblox, has led him to have more than 4 million subscribers in his main channel, and more than 300 thousand in his secondary one.\n\nLate and Rodny are very good friends! and they decided to do this artwork together.", "links": {"website": ["https://www.twitch.tv/latesitoo", "https://www.youtube.com/@RODNYOFICIAL", "https://www.youtube.com/@LateCodOficial"], "subreddit": ["latesitoo"]}, "path": {"182-234": [[718, 1000], [653, 999], [654, 981], [678, 980], [678, 973], [718, 973]]}, "center": {"182-234": [690, 986]}}, -{"id": 2140, "name": "MF DOOM and Madlib - Madvillainy", "description": "Madvillainy is the studio album by American hip hop duo Madvillain, consisting of rapper MF Doom and producer Madlib. It was released on March 23, 2004 and is considered one of the best Hip Hop albums of all time.", "links": {"website": ["https://youtu.be/WffJfQPp7kE"], "subreddit": ["mfdoom", "madlib"]}, "path": {"212-258": [[264, -540], [301, -540], [301, -504], [264, -503]]}, "center": {"212-258": [282, -522]}}, -{"id": 2141, "name": "Pyro", "description": "The Pyro is a character from TF2", "links": {}, "path": {"212-258": [[-611, 315], [-607, 315], [-607, 308], [-611, 308]]}, "center": {"212-258": [-609, 312]}}, -{"id": 2142, "name": "Muștar Laminut", "description": "A well-known mustard manufacturer with origins in Romania.", "links": {}, "path": {"211-258": [[-1460, 429], [-1464, 429], [-1465, 424], [-1446, 424], [-1445, 428], [-1447, 433], [-1447, 446], [-1446, 450], [-1448, 451], [-1464, 451], [-1466, 449], [-1466, 446], [-1465, 446], [-1465, 433], [-1466, 432], [-1466, 429], [-1468, 428], [-1467, 426], [-1465, 424]]}, "center": {"211-258": [-1456, 437]}}, -{"id": 2143, "name": "LittleMeyh's community frog", "description": "A frog to represent the community of the French Twitch streamer LittleMeyh. Wiped out firstly by Morocco's bots and secondly by Bolivia's streamers, the third version was merged into Singapore's art and successfully survived.", "links": {"website": ["https://twitch.tv/littlemeyh"], "subreddit": ["LittleMeyhSurTwitch"], "discord": ["Y8tzCkuHmv"]}, "path": {"2-45": [[374, 5], [385, 5], [385, 16], [374, 16]], "48-73": [[363, -37], [374, -37], [374, -26], [363, -26]], "74-81": [[371, -26], [371, -23], [375, -23], [375, -26]], "87-147": [[385, -27], [377, -21], [375, -25]], "152-258": [[358, -12], [358, -18], [369, -19], [369, -16]]}, "center": {"2-45": [380, 11], "48-73": [369, -31], "74-81": [373, -24], "87-147": [378, -24], "152-258": [361, -16]}}, +{"id": 2140, "name": "MF DOOM and Madlib - Madvillainy", "description": "Madvillainy is the studio album by American hip hop duo Madvillain, consisting of rapper MF Doom and producer Madlib. It was released on March 23, 2004 and is considered one of the best Hip Hop albums of all time.", "links": {"website": ["https://youtu.be/WffJfQPp7kE"], "subreddit": ["mfdoom", "madlib"]}, "path": {"212-258, T": [[264, -540], [301, -540], [301, -504], [264, -503]]}, "center": {"212-258, T": [282, -522]}}, +{"id": 2141, "name": "Pyro", "description": "The Pyro is a character from TF2", "links": {}, "path": {"212-258, T": [[-611, 315], [-607, 315], [-607, 308], [-611, 308]]}, "center": {"212-258, T": [-609, 312]}}, +{"id": 2142, "name": "Muștar Laminut", "description": "A well-known mustard manufacturer with origins in Romania.", "links": {}, "path": {"211-258, T": [[-1460, 429], [-1464, 429], [-1465, 424], [-1446, 424], [-1445, 428], [-1447, 433], [-1447, 446], [-1446, 450], [-1448, 451], [-1464, 451], [-1466, 449], [-1466, 446], [-1465, 446], [-1465, 433], [-1466, 432], [-1466, 429], [-1468, 428], [-1467, 426], [-1465, 424]]}, "center": {"211-258, T": [-1456, 437]}}, +{"id": 2143, "name": "LittleMeyh's community frog", "description": "A frog to represent the community of the French Twitch streamer LittleMeyh. Wiped out firstly by Morocco's bots and secondly by Bolivia's streamers, the third version was merged into Singapore's art and successfully survived.", "links": {"website": ["https://twitch.tv/littlemeyh"], "subreddit": ["LittleMeyhSurTwitch"], "discord": ["Y8tzCkuHmv"]}, "path": {"2-45": [[374, 5], [385, 5], [385, 16], [374, 16]], "48-73": [[363, -37], [374, -37], [374, -26], [363, -26]], "74-81": [[371, -26], [371, -23], [375, -23], [375, -26]], "87-147": [[385, -27], [377, -21], [375, -25]], "152-258, T": [[358, -12], [358, -18], [369, -19], [369, -16]]}, "center": {"2-45": [380, 11], "48-73": [369, -31], "74-81": [373, -24], "87-147": [378, -24], "152-258, T": [361, -16]}}, {"id": 2144, "name": "1 Karate Dojo Norden", "description": "The Pixelart is an abbreviation for the first karate dojo north. Which was founded in 1976 by Sensai Jürgen Grade. We train traditional Schotokan Karate. \n~Hanno,Kai~", "links": {"website": ["https://1kdn.de"]}, "path": {"195-207": [[-938, -831], [-918, -831], [-918, -818], [-938, -818]]}, "center": {"195-207": [-928, -824]}}, -{"id": 2145, "name": "Twin Center", "description": "The Casablanca Twin Center is a complex of two skyscrapers located at Casablanca, Morocco. The two structures, the West Tower and the East Tower, have 28 floors each.", "links": {}, "path": {"211-258": [[262, 125], [237, 125], [239, 98], [264, 97], [263, 98], [265, 98], [263, 98], [263, 102]]}, "center": {"211-258": [250, 111]}}, -{"id": 2146, "name": "Jaime Garzón", "description": "Jaima Garzón was a Colombian comedian, journalist, politician, and peace activist. He was popular on Colombian television during the 1990s for his unique political satire", "links": {}, "path": {"213-231": [[1198, 773], [1198, 718], [1249, 718], [1249, 773]], "249-258": [[1194, 779], [1194, 725], [1243, 725], [1243, 779]]}, "center": {"213-231": [1224, 746], "249-258": [1219, 752]}}, -{"id": 2147, "name": "Analyst's logo Ewilan's Quest", "description": "he logo from the Analyst guild in the french book series \"La Quête d'Ewilan\".", "links": {"website": ["https://www.andarta-pictures.com/fr/productions/la-quete-d-ewilan.html"], "subreddit": ["EwilansQuest"], "discord": ["PpUbD6M8YA"]}, "path": {"116-258": [[911, -269], [910, -269], [910, -268], [895, -268], [894, -268], [894, -269], [893, -269], [893, -268], [894, -267], [894, -261], [890, -261], [889, -260], [889, -257], [890, -256], [890, -255], [891, -254], [896, -249], [897, -249], [898, -248], [901, -248], [902, -249], [902, -251], [911, -251], [911, -252], [910, -261], [911, -268]]}, "center": {"116-258": [902, -259]}}, -{"id": 2148, "name": "Soldier", "description": "A character from TF2. The halo is for his voice actor, Rick May, who passed away in 2020.", "links": {}, "path": {"212-258": [[-567, 308], [-567, 296], [-571, 296], [-571, 308]]}, "center": {"212-258": [-569, 302]}}, -{"id": 2149, "name": "Scout", "description": "The Scout is a character from TF2.", "links": {}, "path": {"212-258": [[-606, 315], [-600, 315], [-600, 307], [-605, 307]]}, "center": {"212-258": [-603, 311]}}, +{"id": 2145, "name": "Twin Center", "description": "The Casablanca Twin Center is a complex of two skyscrapers located at Casablanca, Morocco. The two structures, the West Tower and the East Tower, have 28 floors each.", "links": {}, "path": {"211-258, T": [[262, 125], [237, 125], [239, 98], [264, 97], [263, 98], [265, 98], [263, 98], [263, 102]]}, "center": {"211-258, T": [250, 111]}}, +{"id": 2146, "name": "Jaime Garzón", "description": "Jaima Garzón was a Colombian comedian, journalist, politician, and peace activist. He was popular on Colombian television during the 1990s for his unique political satire", "links": {}, "path": {"213-231": [[1198, 773], [1198, 718], [1249, 718], [1249, 773]], "249-258, T": [[1194, 779], [1194, 725], [1243, 725], [1243, 779]]}, "center": {"213-231": [1224, 746], "249-258, T": [1219, 752]}}, +{"id": 2147, "name": "Analyst's logo Ewilan's Quest", "description": "he logo from the Analyst guild in the french book series \"La Quête d'Ewilan\".", "links": {"website": ["https://www.andarta-pictures.com/fr/productions/la-quete-d-ewilan.html"], "subreddit": ["EwilansQuest"], "discord": ["PpUbD6M8YA"]}, "path": {"116-258, T": [[911, -269], [910, -269], [910, -268], [895, -268], [894, -268], [894, -269], [893, -269], [893, -268], [894, -267], [894, -261], [890, -261], [889, -260], [889, -257], [890, -256], [890, -255], [891, -254], [896, -249], [897, -249], [898, -248], [901, -248], [902, -249], [902, -251], [911, -251], [911, -252], [910, -261], [911, -268]]}, "center": {"116-258, T": [902, -259]}}, +{"id": 2148, "name": "Soldier", "description": "A character from TF2. The halo is for his voice actor, Rick May, who passed away in 2020.", "links": {}, "path": {"212-258, T": [[-567, 308], [-567, 296], [-571, 296], [-571, 308]]}, "center": {"212-258, T": [-569, 302]}}, +{"id": 2149, "name": "Scout", "description": "The Scout is a character from TF2.", "links": {}, "path": {"212-258, T": [[-606, 315], [-600, 315], [-600, 307], [-605, 307]]}, "center": {"212-258, T": [-603, 311]}}, {"id": 2150, "name": "neuroErm", "description": "It's an emote from the Twitch streamer Neuro-sama.", "links": {"website": ["https://www.twitch.tv/vedal987"], "subreddit": ["neuroSama"], "discord": ["neurosama"]}, "path": {"119-121": [[-422, -700], [-422, -641], [-392, -641], [-393, -621], [-343, -621], [-343, -700]]}, "center": {"119-121": [-375, -668]}}, -{"id": 2151, "name": "Casa-Voyageurs Railway Station", "description": "The station was built by the Compagnie des chemins de fer du Maroc [fr] (CFM) in 1923, under the French protectorate of Morocco. It had 8 platforms.", "links": {}, "path": {"211-258": [[165, 124], [120, 124], [120, 95], [165, 97], [166, 124]]}, "center": {"211-258": [149, 110]}}, -{"id": 2152, "name": "Sniper", "description": "The sniper is a character from TF2.", "links": {}, "path": {"212-258": [[-595, 308], [-591, 308], [-591, 300], [-595, 300]]}, "center": {"212-258": [-593, 304]}}, -{"id": 2153, "name": "Team Fortress 2 Logo", "description": "The TF2 logo, believed to depict the negative space of a valve, as in Valve the company.", "links": {}, "path": {"212-258": [[-601, 305], [-597, 302], [-596, 298], [-598, 296], [-600, 293], [-602, 292], [-606, 293], [-608, 294], [-610, 295], [-611, 298], [-612, 302], [-609, 305], [-608, 307], [-602, 307]]}, "center": {"212-258": [-604, 300]}}, -{"id": 2154, "name": "Burger de la honte", "description": "The shamefull burger", "links": {}, "path": {"212-258": [[859, -502], [859, -509], [858, -510], [857, -511], [856, -512], [855, -512], [854, -512], [853, -512], [852, -512], [851, -511], [850, -510], [850, -502], [854, -502]]}, "center": {"212-258": [855, -507]}}, -{"id": 2155, "name": "AMINJ", "description": "Master AMINJ\nJean François Champollion University\nALBI, FRANCE\n\nThe objective of this multidisciplinary master's degree is to train experts and project leaders in the conception of multimedia resources designed for teaching through apprenticeships, professional training, initial training (serious games, learning games, simulators, transmedia, MOOC …), as well as all sectors of gamification (advergame, newsgame, edugame...). \nThis master's reflects the broad range of skills required in this new industry through its multidisciplinarity and its transverse topics : technological and computer sciences, human and social sciences, educational sciences, law and economics.\n\nAt the end of this course graduates will be able to design, manage, develop, budget and assess a serious gaming device or interactive digital media, linked primarily to training, but also linked to the fields of marketing, communication, and information.", "links": {"website": ["https://www.univ-jfc.fr/masters/audiovisuel-medias-interactifs-numeriques-jeux"]}, "path": {"210-258": [[-497, 579], [-469, 579], [-469, 586], [-497, 586]]}, "center": {"210-258": [-483, 583]}}, -{"id": 2156, "name": "Buci Hagi", "description": "An edited version of 'Buci Messi' (tr: Ass Messi) which now is predicting the Romanian Football Team Manager, Gheorghe Hagi.", "links": {"subreddit": ["okprietenretardat", "okprietenretardat"]}, "path": {"203-258": [[-1467, 380], [-1474, 380], [-1476, 382], [-1476, 386], [-1478, 387], [-1478, 388], [-1481, 389], [-1486, 390], [-1488, 394], [-1488, 400], [-1487, 405], [-1486, 411], [-1482, 416], [-1478, 417], [-1470, 417], [-1465, 415], [-1459, 412], [-1459, 400], [-1461, 392], [-1467, 389], [-1466, 387], [-1464, 387], [-1464, 384], [-1465, 384], [-1466, 380]]}, "center": {"203-258": [-1473, 402]}}, -{"id": 2157, "name": "Engineer and Mini Sentry", "description": "The Engineer is the 6th class in TF2, accompanied by his Mini Sentry.", "links": {"website": ["https://www.teamfortress.com/classes.php?class=engineer"], "subreddit": ["tf2"], "discord": ["phRY9WtTSk"]}, "path": {"212-258": [[-589, 308], [-579, 308], [-579, 300], [-583, 300], [-584, 303], [-589, 303]]}, "center": {"212-258": [-582, 305]}}, -{"id": 2158, "name": "Heavy Weapons Guy", "description": "Heavy Weapons Guy, or Heavy, is a character from TF2.", "links": {}, "path": {"212-258": [[-564, 315], [-560, 315], [-560, 309], [-564, 309]]}, "center": {"212-258": [-562, 312]}}, +{"id": 2151, "name": "Casa-Voyageurs Railway Station", "description": "The station was built by the Compagnie des chemins de fer du Maroc [fr] (CFM) in 1923, under the French protectorate of Morocco. It had 8 platforms.", "links": {}, "path": {"211-258, T": [[165, 124], [120, 124], [120, 95], [165, 97], [166, 124]]}, "center": {"211-258, T": [149, 110]}}, +{"id": 2152, "name": "Sniper", "description": "The sniper is a character from TF2.", "links": {}, "path": {"212-258, T": [[-595, 308], [-591, 308], [-591, 300], [-595, 300]]}, "center": {"212-258, T": [-593, 304]}}, +{"id": 2153, "name": "Team Fortress 2 Logo", "description": "The TF2 logo, believed to depict the negative space of a valve, as in Valve the company.", "links": {}, "path": {"212-258, T": [[-601, 305], [-597, 302], [-596, 298], [-598, 296], [-600, 293], [-602, 292], [-606, 293], [-608, 294], [-610, 295], [-611, 298], [-612, 302], [-609, 305], [-608, 307], [-602, 307]]}, "center": {"212-258, T": [-604, 300]}}, +{"id": 2154, "name": "Burger de la honte", "description": "The shamefull burger", "links": {}, "path": {"212-258, T": [[859, -502], [859, -509], [858, -510], [857, -511], [856, -512], [855, -512], [854, -512], [853, -512], [852, -512], [851, -511], [850, -510], [850, -502], [854, -502]]}, "center": {"212-258, T": [855, -507]}}, +{"id": 2155, "name": "AMINJ", "description": "Master AMINJ\nJean François Champollion University\nALBI, FRANCE\n\nThe objective of this multidisciplinary master's degree is to train experts and project leaders in the conception of multimedia resources designed for teaching through apprenticeships, professional training, initial training (serious games, learning games, simulators, transmedia, MOOC …), as well as all sectors of gamification (advergame, newsgame, edugame...). \nThis master's reflects the broad range of skills required in this new industry through its multidisciplinarity and its transverse topics : technological and computer sciences, human and social sciences, educational sciences, law and economics.\n\nAt the end of this course graduates will be able to design, manage, develop, budget and assess a serious gaming device or interactive digital media, linked primarily to training, but also linked to the fields of marketing, communication, and information.", "links": {"website": ["https://www.univ-jfc.fr/masters/audiovisuel-medias-interactifs-numeriques-jeux"]}, "path": {"210-258, T": [[-497, 579], [-469, 579], [-469, 586], [-497, 586]]}, "center": {"210-258, T": [-483, 583]}}, +{"id": 2156, "name": "Buci Hagi", "description": "An edited version of 'Buci Messi' (tr: Ass Messi) which now is predicting the Romanian Football Team Manager, Gheorghe Hagi.", "links": {"subreddit": ["okprietenretardat", "okprietenretardat"]}, "path": {"203-258, T": [[-1467, 380], [-1474, 380], [-1476, 382], [-1476, 386], [-1478, 387], [-1478, 388], [-1481, 389], [-1486, 390], [-1488, 394], [-1488, 400], [-1487, 405], [-1486, 411], [-1482, 416], [-1478, 417], [-1470, 417], [-1465, 415], [-1459, 412], [-1459, 400], [-1461, 392], [-1467, 389], [-1466, 387], [-1464, 387], [-1464, 384], [-1465, 384], [-1466, 380]]}, "center": {"203-258, T": [-1473, 402]}}, +{"id": 2157, "name": "Engineer and Mini Sentry", "description": "The Engineer is the 6th class in TF2, accompanied by his Mini Sentry.", "links": {"website": ["https://www.teamfortress.com/classes.php?class=engineer"], "subreddit": ["tf2"], "discord": ["phRY9WtTSk"]}, "path": {"212-258, T": [[-589, 308], [-579, 308], [-579, 300], [-583, 300], [-584, 303], [-589, 303]]}, "center": {"212-258, T": [-582, 305]}}, +{"id": 2158, "name": "Heavy Weapons Guy", "description": "Heavy Weapons Guy, or Heavy, is a character from TF2.", "links": {}, "path": {"212-258, T": [[-564, 315], [-560, 315], [-560, 309], [-564, 309]]}, "center": {"212-258, T": [-562, 312]}}, {"id": 2159, "name": "Griefing of the Turkish flag", "description": "After a pixel fight between xQc, Papaplatte, Mizkif and Stegi, they all teamed up to grief the turkish flag into representing Spongebob characters and a banana.", "links": {"website": ["https://www.twitch.tv/stegi", "https://www.twitch.tv/papaplatte", "https://www.twitch.tv/xqc", "https://www.twitch.tv/mizkif"]}, "path": {"212-213": [[-367, 290], [-367, 443], [-166, 444], [-167, 291], [-367, 289], [-367, 291]]}, "center": {"212-213": [-270, 367]}}, -{"id": 2160, "name": "Hassan 2 mosque", "description": "The Hassan II Mosque is a mosque in Casablanca, Morocco. It is the largest functioning mosque in Africa and is the 7th largest in the world", "links": {"website": ["https://www.fmh2.ma/en"]}, "path": {"154-258": [[232, 125], [168, 125], [170, 117], [170, 116], [169, 116], [169, 115], [172, 112], [183, 112], [186, 108], [197, 108], [197, 103], [199, 103], [199, 98], [201, 98], [201, 103], [203, 103], [203, 108], [214, 108], [217, 112], [229, 112], [232, 115], [231, 115], [231, 119], [232, 119]]}, "center": {"154-258": [200, 116]}}, -{"id": 2161, "name": "r/Superstonk", "description": "r/Superstonk is a subreddit that converses in all things GameStop/GME stocks, including research, documentation, and crowd-sourced support. The community opposes the corruption of Wall Street corporations and likes to meme about getting rich when GameStop stocks skyrocket in price. Investors on the subreddit call themselves \"apes\".", "links": {"subreddit": ["Superstonk"]}, "path": {"56-258": [[775, 230], [763, 235], [747, 250], [742, 265], [742, 277], [746, 289], [746, 304], [741, 304], [741, 312], [821, 312], [821, 295], [816, 293], [820, 284], [822, 274], [822, 262], [819, 253], [812, 243], [811, 242], [811, 129], [808, 129], [808, 220], [807, 221], [807, 229], [797, 229], [794, 232], [793, 232], [788, 230]]}, "center": {"56-258": [782, 272]}}, -{"id": 2162, "name": "Flag of Belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors. This flag is the final flag and was destroyed several times. In the end, it managed to hold its position with help of the Vietnam community next to it.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium"]}, "path": {"202-258": [[1111, 679], [1111, 780], [1197, 780], [1197, 696], [1186, 702], [1166, 706], [1149, 706], [1136, 700], [1127, 703], [1127, 697], [1124, 695], [1122, 697], [1120, 691], [1121, 686]]}, "center": {"202-258": [1154, 743]}}, -{"id": 2163, "name": "Jaime garzon (colombia)", "description": "Jaime Hernando Garzón Forero fue un pedagogo, abogado, periodista, mediador de paz, e incluso fue considerado como humorista, aunque muchos dicen que sólo hizo uso de un don que Dios le dio para contar la verdad.", "links": {}, "path": {"212-258": [[1200, 716], [1243, 718], [1247, 774], [1198, 775]]}, "center": {"212-258": [1222, 751]}}, -{"id": 2165, "name": "Ducks United", "description": "The great union of ducks from mutliple subreddit all united under one banner (https://discord.gg/ySXpJwzTzs)", "links": {"subreddit": ["placeducks", "duck_place", "shareducks"], "discord": ["ySXpJwzTzs"]}, "path": {"210-258": [[1368, 719], [1368, 754], [1388, 754], [1388, 733], [1381, 733], [1381, 719]]}, "center": {"210-258": [1378, 742]}}, -{"id": 2166, "name": "Eve", "description": "Eve is a Japanese Singer. These artworks resemble characters that can be found in his YouTube music videos.", "links": {"website": ["https://www.youtube.com/channel/UCUXfRsEIJ9xO1DT7TbEWksw", "https://en.wikipedia.org/wiki/Eve_(Japanese_singer)"], "subreddit": ["E_ve"]}, "path": {"182-258": [[-368, 856], [-316, 856], [-319, 883], [-336, 883], [-337, 913], [-350, 921], [-362, 925], [-368, 924]]}, "center": {"182-258": [-351, 874]}}, -{"id": 2167, "name": "COCOJAMBO CREW", "description": "Bunch of dudes that waste too much time with playing videogames and trashtalking.", "links": {"website": ["https://cocojambo.net"], "subreddit": ["cocojambo_crew"], "discord": ["HPQaBd8"]}, "path": {"190-245": [[-1141, -199], [-1141, -191], [-1091, -191], [-1091, -199]], "246-258": [[-1139, -199], [-1091, -199], [-1091, -188], [-1139, -188]]}, "center": {"190-245": [-1116, -195], "246-258": [-1115, -193]}}, -{"id": 2168, "name": "Les Restos du Coeur", "description": "The Restaurants du Cœur (meaning Restaurants of Love), commonly known as the \"Restos du Cœur\", is a French charity, the main activity of which is to distribute food packages and hot meals to those in need. The association targets homeless and those with a low or a very low income (single families, old people with a low pension, young adults...). The association also helps people to find housing and supports other projects. This not-for-profit association has the \"recognized as being of public interest \"status which exempts it from specific taxes. The association, highly respected in France, is known for its huge number of volunteers (66,000 in 2015) and its original fund-raising method.\n\nIn the center is Coluche, its founder, that founded the association in September 1985 founded the association. He was also a comedian and an actor.", "links": {"website": ["https://en.wikipedia.org/wiki/Restaurants_du_C%C5%93ur", "https://en.wikipedia.org/wiki/Coluche", "https://www.restosducoeur.org/"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"193-258": [[684, -744], [684, -749], [685, -752], [686, -754], [687, -756], [688, -758], [689, -761], [688, -762], [687, -763], [686, -763], [685, -762], [684, -760], [683, -758], [682, -757], [682, -760], [683, -761], [683, -765], [682, -766], [681, -767], [680, -766], [679, -765], [679, -764], [678, -763], [678, -762], [677, -761], [676, -760], [676, -759], [675, -758], [675, -762], [676, -764], [677, -765], [677, -766], [676, -767], [675, -768], [674, -768], [673, -767], [672, -765], [671, -763], [669, -760], [668, -757], [667, -753], [666, -752], [666, -743], [667, -742], [667, -739], [668, -739], [669, -736], [670, -735], [671, -733], [672, -730], [671, -724], [673, -723], [673, -715], [672, -707], [673, -706], [673, -699], [674, -698], [674, -694], [675, -693], [676, -692], [677, -690], [678, -687], [681, -685], [683, -684], [685, -683], [685, -677], [689, -676], [767, -676], [766, -683], [766, -701], [765, -707], [765, -716], [767, -719], [768, -724], [769, -729], [771, -732], [769, -737], [769, -738], [770, -742], [770, -749], [771, -750], [772, -751], [773, -754], [775, -758], [776, -762], [777, -765], [777, -769], [776, -769], [776, -771], [775, -771], [774, -770], [772, -769], [770, -768], [768, -767], [766, -766], [763, -764], [762, -762], [761, -759], [759, -756], [759, -754], [759, -752], [758, -750], [756, -751], [754, -751], [752, -753], [749, -754], [744, -753], [740, -753], [738, -752], [736, -752], [732, -750], [730, -749], [729, -749], [727, -748], [723, -749], [721, -751], [718, -753], [715, -754], [711, -755], [706, -756], [701, -757], [698, -756], [696, -754], [695, -753], [692, -752], [689, -750], [687, -748], [686, -746]]}, "center": {"193-258": [711, -714]}}, -{"id": 2169, "name": "Dutch Flag within the Murder Drones logo", "description": "The reason the Murder Drones logo contains the Dutch flag within it is to honor the Dutch community for helping relocate and defend our original building spot.", "links": {}, "path": {"162-258": [[-868, 917], [-793, 917], [-793, 920], [-868, 920]]}, "center": {"162-258": [-830, 919]}}, -{"id": 2170, "name": "RetroGamingNow Iceberg", "description": "RetroGamingNow is a youtube creator who makes minecraft lore/mystery videos.", "links": {"website": ["https://www.youtube.com/@RetroGamingNow"], "subreddit": ["RetroGamingNow"], "discord": ["retrogamingnow"]}, "path": {"212-258": [[308, -943], [308, -948], [309, -948], [309, -950], [310, -951], [311, -951], [312, -950], [314, -949], [314, -950], [315, -951], [316, -951], [317, -950], [318, -949], [319, -948], [319, -947], [320, -946], [320, -944], [319, -943], [319, -940], [318, -939], [317, -938], [312, -938], [311, -939], [310, -939], [309, -941]]}, "center": {"212-258": [314, -944]}}, -{"id": 2171, "name": "Wakasagihime", "description": "A mermaid with the ability to grow in power when underwater and is the first boss of Touhou Kishinjou ~ Double Dealing Character.", "links": {"website": ["https://en.touhouwiki.net/wiki/Wakasagihime"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"213-258": [[185, 150], [190, 145], [192, 143], [199, 147], [199, 153], [199, 157], [198, 160], [197, 164], [201, 162], [202, 165], [195, 165], [194, 172], [187, 172], [185, 171], [183, 163], [184, 149], [186, 147], [188, 145]]}, "center": {"213-258": [191, 157]}}, -{"id": 2172, "name": "Charles de Gaulle", "description": "Charles de Gaulles was a French army officer, leader of the 2nd World War France resistance against Nazi Germany and multiple time president.", "links": {"website": ["https://en.wikipedia.org/wiki/Charles_de_Gaulle"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"200-258": [[643, -775], [634, -775], [633, -774], [632, -774], [631, -773], [630, -773], [629, -772], [628, -771], [627, -770], [627, -769], [626, -768], [626, -763], [625, -762], [624, -761], [624, -760], [625, -759], [627, -757], [627, -754], [628, -753], [628, -749], [629, -748], [629, -745], [630, -743], [631, -742], [631, -740], [629, -738], [627, -737], [625, -736], [625, -735], [624, -734], [623, -733], [624, -729], [624, -727], [623, -726], [623, -724], [622, -722], [622, -720], [621, -719], [620, -717], [619, -714], [618, -709], [617, -707], [616, -706], [616, -704], [615, -703], [615, -702], [614, -701], [614, -700], [613, -699], [612, -697], [612, -694], [612, -691], [613, -691], [613, -689], [613, -688], [614, -688], [615, -686], [617, -685], [619, -684], [619, -683], [619, -681], [618, -679], [617, -678], [617, -677], [617, -676], [668, -676], [668, -689], [669, -698], [670, -706], [671, -712], [672, -719], [671, -720], [671, -722], [672, -723], [672, -729], [671, -730], [670, -733], [664, -738], [662, -738], [660, -739], [656, -740], [653, -741], [652, -743], [651, -746], [651, -749], [652, -751], [652, -768], [649, -772]]}, "center": {"200-258": [643, -702]}}, +{"id": 2160, "name": "Hassan 2 mosque", "description": "The Hassan II Mosque is a mosque in Casablanca, Morocco. It is the largest functioning mosque in Africa and is the 7th largest in the world", "links": {"website": ["https://www.fmh2.ma/en"]}, "path": {"154-258, T": [[232, 125], [168, 125], [170, 117], [170, 116], [169, 116], [169, 115], [172, 112], [183, 112], [186, 108], [197, 108], [197, 103], [199, 103], [199, 98], [201, 98], [201, 103], [203, 103], [203, 108], [214, 108], [217, 112], [229, 112], [232, 115], [231, 115], [231, 119], [232, 119]]}, "center": {"154-258, T": [200, 116]}}, +{"id": 2161, "name": "r/Superstonk", "description": "r/Superstonk is a subreddit that converses in all things GameStop/GME stocks, including research, documentation, and crowd-sourced support. The community opposes the corruption of Wall Street corporations and likes to meme about getting rich when GameStop stocks skyrocket in price. Investors on the subreddit call themselves \"apes\".", "links": {"subreddit": ["Superstonk"]}, "path": {"56-258, T": [[775, 230], [763, 235], [747, 250], [742, 265], [742, 277], [746, 289], [746, 304], [741, 304], [741, 312], [821, 312], [821, 295], [816, 293], [820, 284], [822, 274], [822, 262], [819, 253], [812, 243], [811, 242], [811, 129], [808, 129], [808, 220], [807, 221], [807, 229], [797, 229], [794, 232], [793, 232], [788, 230]]}, "center": {"56-258, T": [782, 272]}}, +{"id": 2162, "name": "Flag of Belgium", "description": "Belgium is a country in Northwestern Europe. Its flag is often confused with the German flag, since both flags use the same colors. This flag is the final flag and was destroyed several times. In the end, it managed to hold its position with help of the Vietnam community next to it.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium"]}, "path": {"202-258, T": [[1111, 679], [1111, 780], [1197, 780], [1197, 696], [1186, 702], [1166, 706], [1149, 706], [1136, 700], [1127, 703], [1127, 697], [1124, 695], [1122, 697], [1120, 691], [1121, 686]]}, "center": {"202-258, T": [1154, 743]}}, +{"id": 2163, "name": "Jaime garzon (colombia)", "description": "Jaime Hernando Garzón Forero fue un pedagogo, abogado, periodista, mediador de paz, e incluso fue considerado como humorista, aunque muchos dicen que sólo hizo uso de un don que Dios le dio para contar la verdad.", "links": {}, "path": {"212-258, T": [[1200, 716], [1243, 718], [1247, 774], [1198, 775]]}, "center": {"212-258, T": [1222, 751]}}, +{"id": 2165, "name": "Ducks United", "description": "The great union of ducks from mutliple subreddit all united under one banner (https://discord.gg/ySXpJwzTzs)", "links": {"subreddit": ["placeducks", "duck_place", "shareducks"], "discord": ["ySXpJwzTzs"]}, "path": {"210-258, T": [[1368, 719], [1368, 754], [1388, 754], [1388, 733], [1381, 733], [1381, 719]]}, "center": {"210-258, T": [1378, 742]}}, +{"id": 2166, "name": "Eve", "description": "Eve is a Japanese Singer. These artworks resemble characters that can be found in his YouTube music videos.", "links": {"website": ["https://www.youtube.com/channel/UCUXfRsEIJ9xO1DT7TbEWksw", "https://en.wikipedia.org/wiki/Eve_(Japanese_singer)"], "subreddit": ["E_ve"]}, "path": {"182-258, T": [[-368, 856], [-316, 856], [-319, 883], [-336, 883], [-337, 913], [-350, 921], [-362, 925], [-368, 924]]}, "center": {"182-258, T": [-351, 874]}}, +{"id": 2167, "name": "COCOJAMBO CREW", "description": "Bunch of dudes that waste too much time with playing videogames and trashtalking.", "links": {"website": ["https://cocojambo.net"], "subreddit": ["cocojambo_crew"], "discord": ["HPQaBd8"]}, "path": {"190-245": [[-1141, -199], [-1141, -191], [-1091, -191], [-1091, -199]], "246-258, T": [[-1139, -199], [-1091, -199], [-1091, -188], [-1139, -188]]}, "center": {"190-245": [-1116, -195], "246-258, T": [-1115, -193]}}, +{"id": 2168, "name": "Les Restos du Coeur", "description": "The Restaurants du Cœur (meaning Restaurants of Love), commonly known as the \"Restos du Cœur\", is a French charity, the main activity of which is to distribute food packages and hot meals to those in need. The association targets homeless and those with a low or a very low income (single families, old people with a low pension, young adults...). The association also helps people to find housing and supports other projects. This not-for-profit association has the \"recognized as being of public interest \"status which exempts it from specific taxes. The association, highly respected in France, is known for its huge number of volunteers (66,000 in 2015) and its original fund-raising method.\n\nIn the center is Coluche, its founder, that founded the association in September 1985 founded the association. He was also a comedian and an actor.", "links": {"website": ["https://en.wikipedia.org/wiki/Restaurants_du_C%C5%93ur", "https://en.wikipedia.org/wiki/Coluche", "https://www.restosducoeur.org/"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"193-258, T": [[684, -744], [684, -749], [685, -752], [686, -754], [687, -756], [688, -758], [689, -761], [688, -762], [687, -763], [686, -763], [685, -762], [684, -760], [683, -758], [682, -757], [682, -760], [683, -761], [683, -765], [682, -766], [681, -767], [680, -766], [679, -765], [679, -764], [678, -763], [678, -762], [677, -761], [676, -760], [676, -759], [675, -758], [675, -762], [676, -764], [677, -765], [677, -766], [676, -767], [675, -768], [674, -768], [673, -767], [672, -765], [671, -763], [669, -760], [668, -757], [667, -753], [666, -752], [666, -743], [667, -742], [667, -739], [668, -739], [669, -736], [670, -735], [671, -733], [672, -730], [671, -724], [673, -723], [673, -715], [672, -707], [673, -706], [673, -699], [674, -698], [674, -694], [675, -693], [676, -692], [677, -690], [678, -687], [681, -685], [683, -684], [685, -683], [685, -677], [689, -676], [767, -676], [766, -683], [766, -701], [765, -707], [765, -716], [767, -719], [768, -724], [769, -729], [771, -732], [769, -737], [769, -738], [770, -742], [770, -749], [771, -750], [772, -751], [773, -754], [775, -758], [776, -762], [777, -765], [777, -769], [776, -769], [776, -771], [775, -771], [774, -770], [772, -769], [770, -768], [768, -767], [766, -766], [763, -764], [762, -762], [761, -759], [759, -756], [759, -754], [759, -752], [758, -750], [756, -751], [754, -751], [752, -753], [749, -754], [744, -753], [740, -753], [738, -752], [736, -752], [732, -750], [730, -749], [729, -749], [727, -748], [723, -749], [721, -751], [718, -753], [715, -754], [711, -755], [706, -756], [701, -757], [698, -756], [696, -754], [695, -753], [692, -752], [689, -750], [687, -748], [686, -746]]}, "center": {"193-258, T": [711, -714]}}, +{"id": 2169, "name": "Dutch Flag within the Murder Drones logo", "description": "The reason the Murder Drones logo contains the Dutch flag within it is to honor the Dutch community for helping relocate and defend our original building spot.", "links": {}, "path": {"162-258, T": [[-868, 917], [-793, 917], [-793, 920], [-868, 920]]}, "center": {"162-258, T": [-830, 919]}}, +{"id": 2170, "name": "RetroGamingNow Iceberg", "description": "RetroGamingNow is a youtube creator who makes minecraft lore/mystery videos.", "links": {"website": ["https://www.youtube.com/@RetroGamingNow"], "subreddit": ["RetroGamingNow"], "discord": ["retrogamingnow"]}, "path": {"212-258, T": [[308, -943], [308, -948], [309, -948], [309, -950], [310, -951], [311, -951], [312, -950], [314, -949], [314, -950], [315, -951], [316, -951], [317, -950], [318, -949], [319, -948], [319, -947], [320, -946], [320, -944], [319, -943], [319, -940], [318, -939], [317, -938], [312, -938], [311, -939], [310, -939], [309, -941]]}, "center": {"212-258, T": [314, -944]}}, +{"id": 2171, "name": "Wakasagihime", "description": "A mermaid with the ability to grow in power when underwater and is the first boss of Touhou Kishinjou ~ Double Dealing Character.", "links": {"website": ["https://en.touhouwiki.net/wiki/Wakasagihime"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"213-258, T": [[185, 150], [190, 145], [192, 143], [199, 147], [199, 153], [199, 157], [198, 160], [197, 164], [201, 162], [202, 165], [195, 165], [194, 172], [187, 172], [185, 171], [183, 163], [184, 149], [186, 147], [188, 145]]}, "center": {"213-258, T": [191, 157]}}, +{"id": 2172, "name": "Charles de Gaulle", "description": "Charles de Gaulles was a French army officer, leader of the 2nd World War France resistance against Nazi Germany and multiple time president.", "links": {"website": ["https://en.wikipedia.org/wiki/Charles_de_Gaulle"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"200-258, T": [[643, -775], [634, -775], [633, -774], [632, -774], [631, -773], [630, -773], [629, -772], [628, -771], [627, -770], [627, -769], [626, -768], [626, -763], [625, -762], [624, -761], [624, -760], [625, -759], [627, -757], [627, -754], [628, -753], [628, -749], [629, -748], [629, -745], [630, -743], [631, -742], [631, -740], [629, -738], [627, -737], [625, -736], [625, -735], [624, -734], [623, -733], [624, -729], [624, -727], [623, -726], [623, -724], [622, -722], [622, -720], [621, -719], [620, -717], [619, -714], [618, -709], [617, -707], [616, -706], [616, -704], [615, -703], [615, -702], [614, -701], [614, -700], [613, -699], [612, -697], [612, -694], [612, -691], [613, -691], [613, -689], [613, -688], [614, -688], [615, -686], [617, -685], [619, -684], [619, -683], [619, -681], [618, -679], [617, -678], [617, -677], [617, -676], [668, -676], [668, -689], [669, -698], [670, -706], [671, -712], [672, -719], [671, -720], [671, -722], [672, -723], [672, -729], [671, -730], [670, -733], [664, -738], [662, -738], [660, -739], [656, -740], [653, -741], [652, -743], [651, -746], [651, -749], [652, -751], [652, -768], [649, -772]]}, "center": {"200-258, T": [643, -702]}}, {"id": 2173, "name": "Romano Fafard", "description": "The Romano Fafard is the spaceship of the Quebec television show: \"Dans une galaxie près de chez vous\". It is an icon of québec culture.", "links": {"website": ["https://fr.wikipedia.org/wiki/Romano_Fafard", "https://fr.wikipedia.org/wiki/Dans_une_galaxie_pr%C3%A8s_de_chez_vous", "https://en.wikipedia.org/wiki/Dans_une_galaxie_pr%C3%A8s_de_chez_vous"]}, "path": {"169-185": [[820, 317], [820, 334], [810, 329], [802, 329], [804, 338], [803, 348], [786, 347], [784, 343], [776, 343], [776, 346], [761, 344], [762, 339], [768, 336], [770, 334], [774, 338], [784, 339], [787, 336], [798, 335], [798, 329], [795, 326], [796, 323], [809, 323]]}, "center": {"169-185": [797, 341]}}, -{"id": 2174, "name": "Emi Ibarazaki (Katawa Shoujo)", "description": "A picture of Emi Ibarazaki, an amputee with prosthetic legs. She is from a visual novel called Katawa Shoujo, which is about crippled/disabled girls, She is sitting down, having fallen over. Alongside her is a lemon and a heart that reassembles Katawa Shoujo's logo.", "links": {"subreddit": ["katawashoujo"]}, "path": {"173-258": [[-1277, -297], [-1277, -260], [-1234, -259], [-1234, -297]]}, "center": {"173-258": [-1255, -278]}}, -{"id": 2175, "name": "Pinewood Builders Logo", "description": "A logo of Pinewood Builders, a popular Roblox group that makes roleplay games in the sci-fi genre.", "links": {"website": ["https://www.roblox.com/groups/159511/Pinewood-Builders#!/about"]}, "path": {"212-258": [[-147, 405], [-129, 405], [-129, 419], [-147, 419]]}, "center": {"212-258": [-138, 412]}}, -{"id": 2176, "name": "RVNX Logo", "description": "RvNx Mango is a german Youtuber and Streamer. He became famous for his video about Germany's role in r/place 2022. The mentioned video is linked below (in German)", "links": {"website": ["https://www.youtube.com/watch?v=wAvCjaFIZiQ"], "subreddit": ["rvnxmango"]}, "path": {"213-258": [[381, -320], [381, -300], [385, -300], [385, -320]]}, "center": {"213-258": [383, -310]}}, -{"id": 2177, "name": "4er Kaktus (4 Block Cactus)", "description": "The Cactus is a funny meme from the German Minecraft community. The Meme was started by the German Twitch streamer \"BastiGHG\", then it was quickly spread over the German Minecraft community. It will always be a German Masterpiece of Meme. <3", "links": {"website": ["https://www.twitch.tv/bastighg"]}, "path": {"213-258": [[535, -689], [535, -688], [536, -688], [537, -688], [538, -688], [538, -687], [539, -687], [539, -686], [540, -686], [541, -686], [541, -685], [542, -685], [543, -685], [544, -685], [545, -685], [545, -684], [546, -684], [546, -683], [547, -683], [549, -683], [550, -683], [550, -684], [551, -684], [553, -684], [552, -685], [554, -685], [557, -685], [557, -686], [560, -686], [560, -690], [561, -690], [561, -695], [562, -695], [562, -705], [563, -705], [562, -705], [562, -706], [562, -709], [563, -709], [562, -710], [562, -712], [563, -712], [562, -714], [562, -749], [561, -749], [561, -750], [560, -750], [560, -751], [559, -752], [554, -752], [553, -752], [553, -753], [550, -753], [550, -754], [540, -752], [538, -751], [536, -750], [535, -749]]}, "center": {"213-258": [548, -719]}}, -{"id": 2178, "name": "GeoGuessr", "description": "GeoGuessr is a browser-based geography game in which players use street view imagery to guess a location on a map.", "links": {"website": ["https://www.geoguessr.com"], "subreddit": ["geoguessr"], "discord": ["MJAqQfW"]}, "path": {"174-198": [[-26, 941], [-22, 936], [-22, 932], [-25, 929], [-28, 929], [-33, 930], [-41, 930], [-42, 932], [-42, 937], [-40, 939], [-32, 939]], "168-173": [[-26, 941], [-22, 936], [-22, 932], [-26, 929], [-27, 929], [-31, 932], [-31, 936], [-27, 941]], "199-258": [[-27, 965], [-23, 965], [-22, 964], [-20, 964], [-19, 963], [-18, 963], [-17, 962], [-16, 961], [-16, 960], [-15, 959], [-15, 957], [-14, 956], [-14, 952], [-15, 951], [-15, 949], [-16, 948], [-16, 947], [-17, 946], [-18, 945], [-20, 944], [-22, 944], [-23, 943], [-24, 943], [-25, 943], [-25, 942], [-24, 941], [-23, 940], [-23, 937], [-21, 937], [-21, 935], [-22, 935], [-22, 930], [-23, 930], [-24, 930], [-24, 929], [-24, 928], [-29, 928], [-29, 929], [-42, 929], [-42, 930], [-43, 930], [-43, 938], [-42, 938], [-42, 939], [-30, 939], [-30, 940], [-29, 940], [-29, 941], [-28, 941], [-28, 942], [-27, 942], [-27, 943], [-27, 944], [-30, 944], [-30, 945], [-32, 945], [-32, 946], [-33, 946], [-33, 947], [-34, 947], [-34, 949], [-35, 949], [-35, 952], [-36, 952], [-36, 956], [-35, 956], [-35, 959], [-34, 959], [-34, 961], [-33, 961], [-33, 962], [-32, 962], [-32, 963], [-31, 963], [-30, 964], [-28, 964], [-27, 964]]}, "center": {"174-198": [-28, 934], "168-173": [-26, 935], "199-258": [-25, 954]}}, -{"id": 2179, "name": "S.D.M.G", "description": "A somewhat Iconic ranger weapon dropped from the final boss in terraria.", "links": {"website": ["https://terraria.org"], "subreddit": ["terraria"], "discord": ["terraria"]}, "path": {"213-258": [[429, -933], [398, -933], [424, -939], [429, -933], [425, -928], [410, -927], [409, -932], [402, -930], [397, -936], [397, -928], [404, -929], [410, -928], [404, -938], [409, -941], [413, -940], [424, -938], [398, -936]]}, "center": {"213-258": [413, -930]}}, -{"id": 2180, "name": "Slime Prince", "description": "The Slime Prince is a pet in the game Terraria. It can be summoned from a Royal Delight, an item dropped by the first boss in Terraria, the King Slime.", "links": {"website": ["https://terraria.wiki.gg/wiki/Royal_Delight", "https://terraria.org", "https://en.wikipedia.org/wiki/Terraria"], "subreddit": ["terraria", "IndieAlliance"], "discord": ["terraria", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"206-258": [[-656, 414], [-656, 418], [-659, 422], [-659, 426], [-656, 429], [-645, 429], [-642, 426], [-642, 422], [-643, 421], [-643, 419], [-646, 414], [-649, 414], [-650, 413], [-651, 413], [-652, 414]]}, "center": {"206-258": [-650, 422]}}, -{"id": 2181, "name": "Terra Blade", "description": "The Terra Blade is an iconic sword from the game Terraria, known for being a top weapon for years before eventually being replaced by the Zenith.", "links": {"website": ["https://terraria.wiki.gg/wiki/Terra_Blade"], "subreddit": ["terraria", "Berserk"], "discord": ["terraria", "M699v8xSqz"]}, "path": {"191-258": [[589, 912], [586, 915], [586, 916], [583, 916], [583, 920], [582, 920], [582, 928], [584, 928], [586, 932], [586, 945], [588, 945], [589, 946], [590, 946], [590, 940], [589, 939], [589, 932], [590, 931], [592, 931], [597, 926], [597, 922], [595, 920], [595, 916], [592, 916], [592, 915]]}, "center": {"191-258": [589, 923]}}, -{"id": 2182, "name": "Nijika bonking Kita", "description": "This is a picture of Nijika Ijichi bonking Ikuyo Kita in her professor mode, possbly because she try to peek into Ryo on the box below. \n\nNijika and Kita is part of Kessoku Band members in the series Bocchi the Rock!.\n\nNijika always cares about her band members as the band leader of Kessoku Band, and with her angelic personality is also dubbed as Archangel of Shimokitazawa. \nTruly the paragon of human virtue.\n\nIkuyo Kita in the other hand is a Ryo simp and a bright extrovert, her smile (read: Kitaura) is as powerful as The Sun itself. Sometimes is mistaken as a Filipino due to whatever her name meaning goes in Tagalog (and extends to other SEA countries languages like Indonesian and Malay too).\n\nHowever, her closeness with Bocchi made her somehow fusion with Bocchi, hence suddenly the Bocchi hairpin in the left.", "links": {"website": ["https://www.reddit.com/r/ChurchOfNijika/comments/1064rpf/the_nijika_pledge/"], "subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"213-258": [[1327, 192], [1379, 191], [1379, 224], [1328, 224], [1326, 205], [1328, 196]]}, "center": {"213-258": [1353, 208]}}, +{"id": 2174, "name": "Emi Ibarazaki (Katawa Shoujo)", "description": "A picture of Emi Ibarazaki, an amputee with prosthetic legs. She is from a visual novel called Katawa Shoujo, which is about crippled/disabled girls, She is sitting down, having fallen over. Alongside her is a lemon and a heart that reassembles Katawa Shoujo's logo.", "links": {"subreddit": ["katawashoujo"]}, "path": {"173-258, T": [[-1277, -297], [-1277, -260], [-1234, -259], [-1234, -297]]}, "center": {"173-258, T": [-1255, -278]}}, +{"id": 2175, "name": "Pinewood Builders Logo", "description": "A logo of Pinewood Builders, a popular Roblox group that makes roleplay games in the sci-fi genre.", "links": {"website": ["https://www.roblox.com/groups/159511/Pinewood-Builders#!/about"]}, "path": {"212-258, T": [[-147, 405], [-129, 405], [-129, 419], [-147, 419]]}, "center": {"212-258, T": [-138, 412]}}, +{"id": 2176, "name": "RVNX Logo", "description": "RvNx Mango is a german Youtuber and Streamer. He became famous for his video about Germany's role in r/place 2022. The mentioned video is linked below (in German)", "links": {"website": ["https://www.youtube.com/watch?v=wAvCjaFIZiQ"], "subreddit": ["rvnxmango"]}, "path": {"213-258, T": [[381, -320], [381, -300], [385, -300], [385, -320]]}, "center": {"213-258, T": [383, -310]}}, +{"id": 2177, "name": "4er Kaktus (4 Block Cactus)", "description": "The Cactus is a funny meme from the German Minecraft community. The Meme was started by the German Twitch streamer \"BastiGHG\", then it was quickly spread over the German Minecraft community. It will always be a German Masterpiece of Meme. <3", "links": {"website": ["https://www.twitch.tv/bastighg"]}, "path": {"213-258, T": [[535, -689], [535, -688], [536, -688], [537, -688], [538, -688], [538, -687], [539, -687], [539, -686], [540, -686], [541, -686], [541, -685], [542, -685], [543, -685], [544, -685], [545, -685], [545, -684], [546, -684], [546, -683], [547, -683], [549, -683], [550, -683], [550, -684], [551, -684], [553, -684], [552, -685], [554, -685], [557, -685], [557, -686], [560, -686], [560, -690], [561, -690], [561, -695], [562, -695], [562, -705], [563, -705], [562, -705], [562, -706], [562, -709], [563, -709], [562, -710], [562, -712], [563, -712], [562, -714], [562, -749], [561, -749], [561, -750], [560, -750], [560, -751], [559, -752], [554, -752], [553, -752], [553, -753], [550, -753], [550, -754], [540, -752], [538, -751], [536, -750], [535, -749]]}, "center": {"213-258, T": [548, -719]}}, +{"id": 2178, "name": "GeoGuessr", "description": "GeoGuessr is a browser-based geography game in which players use street view imagery to guess a location on a map.", "links": {"website": ["https://www.geoguessr.com"], "subreddit": ["geoguessr"], "discord": ["MJAqQfW"]}, "path": {"174-198": [[-26, 941], [-22, 936], [-22, 932], [-25, 929], [-28, 929], [-33, 930], [-41, 930], [-42, 932], [-42, 937], [-40, 939], [-32, 939]], "168-173": [[-26, 941], [-22, 936], [-22, 932], [-26, 929], [-27, 929], [-31, 932], [-31, 936], [-27, 941]], "199-258, T": [[-27, 965], [-23, 965], [-22, 964], [-20, 964], [-19, 963], [-18, 963], [-17, 962], [-16, 961], [-16, 960], [-15, 959], [-15, 957], [-14, 956], [-14, 952], [-15, 951], [-15, 949], [-16, 948], [-16, 947], [-17, 946], [-18, 945], [-20, 944], [-22, 944], [-23, 943], [-24, 943], [-25, 943], [-25, 942], [-24, 941], [-23, 940], [-23, 937], [-21, 937], [-21, 935], [-22, 935], [-22, 930], [-23, 930], [-24, 930], [-24, 929], [-24, 928], [-29, 928], [-29, 929], [-42, 929], [-42, 930], [-43, 930], [-43, 938], [-42, 938], [-42, 939], [-30, 939], [-30, 940], [-29, 940], [-29, 941], [-28, 941], [-28, 942], [-27, 942], [-27, 943], [-27, 944], [-30, 944], [-30, 945], [-32, 945], [-32, 946], [-33, 946], [-33, 947], [-34, 947], [-34, 949], [-35, 949], [-35, 952], [-36, 952], [-36, 956], [-35, 956], [-35, 959], [-34, 959], [-34, 961], [-33, 961], [-33, 962], [-32, 962], [-32, 963], [-31, 963], [-30, 964], [-28, 964], [-27, 964]]}, "center": {"174-198": [-28, 934], "168-173": [-26, 935], "199-258, T": [-25, 954]}}, +{"id": 2179, "name": "S.D.M.G", "description": "A somewhat Iconic ranger weapon dropped from the final boss in terraria.", "links": {"website": ["https://terraria.org"], "subreddit": ["terraria"], "discord": ["terraria"]}, "path": {"213-258, T": [[429, -933], [398, -933], [424, -939], [429, -933], [425, -928], [410, -927], [409, -932], [402, -930], [397, -936], [397, -928], [404, -929], [410, -928], [404, -938], [409, -941], [413, -940], [424, -938], [398, -936]]}, "center": {"213-258, T": [413, -930]}}, +{"id": 2180, "name": "Slime Prince", "description": "The Slime Prince is a pet in the game Terraria. It can be summoned from a Royal Delight, an item dropped by the first boss in Terraria, the King Slime.", "links": {"website": ["https://terraria.wiki.gg/wiki/Royal_Delight", "https://terraria.org", "https://en.wikipedia.org/wiki/Terraria"], "subreddit": ["terraria", "IndieAlliance"], "discord": ["terraria", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"206-258, T": [[-656, 414], [-656, 418], [-659, 422], [-659, 426], [-656, 429], [-645, 429], [-642, 426], [-642, 422], [-643, 421], [-643, 419], [-646, 414], [-649, 414], [-650, 413], [-651, 413], [-652, 414]]}, "center": {"206-258, T": [-650, 422]}}, +{"id": 2181, "name": "Terra Blade", "description": "The Terra Blade is an iconic sword from the game Terraria, known for being a top weapon for years before eventually being replaced by the Zenith.", "links": {"website": ["https://terraria.wiki.gg/wiki/Terra_Blade"], "subreddit": ["terraria", "Berserk"], "discord": ["terraria", "M699v8xSqz"]}, "path": {"191-258, T": [[589, 912], [586, 915], [586, 916], [583, 916], [583, 920], [582, 920], [582, 928], [584, 928], [586, 932], [586, 945], [588, 945], [589, 946], [590, 946], [590, 940], [589, 939], [589, 932], [590, 931], [592, 931], [597, 926], [597, 922], [595, 920], [595, 916], [592, 916], [592, 915]]}, "center": {"191-258, T": [589, 923]}}, +{"id": 2182, "name": "Nijika bonking Kita", "description": "This is a picture of Nijika Ijichi bonking Ikuyo Kita in her professor mode, possbly because she try to peek into Ryo on the box below. \n\nNijika and Kita is part of Kessoku Band members in the series Bocchi the Rock!.\n\nNijika always cares about her band members as the band leader of Kessoku Band, and with her angelic personality is also dubbed as Archangel of Shimokitazawa. \nTruly the paragon of human virtue.\n\nIkuyo Kita in the other hand is a Ryo simp and a bright extrovert, her smile (read: Kitaura) is as powerful as The Sun itself. Sometimes is mistaken as a Filipino due to whatever her name meaning goes in Tagalog (and extends to other SEA countries languages like Indonesian and Malay too).\n\nHowever, her closeness with Bocchi made her somehow fusion with Bocchi, hence suddenly the Bocchi hairpin in the left.", "links": {"website": ["https://www.reddit.com/r/ChurchOfNijika/comments/1064rpf/the_nijika_pledge/"], "subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"213-258, T": [[1327, 192], [1379, 191], [1379, 224], [1328, 224], [1326, 205], [1328, 196]]}, "center": {"213-258, T": [1353, 208]}}, {"id": 2183, "name": "32?", "description": "In the last few hours of r/place2023, twitch streamer xQc unsuccessfully led his stream to randomly black out section of the canvas. While attempting to black out the head of the dragon, who's creation was lead by Papaplatte (another twitch streamer), at 1200 630, xQc organized the attack by sorting his viewers into different sections of the art by the day of the month they were born on. \n\nWhile drawing out the sections on his stream, xQc divided it into 32 sections, despite there being no more than 31 days in the longest months.\n\nThe entire community of r/place retaliated against xQc's attacks by putting \"32?\" on the Charizard card, which xQc led the creation of, in order to question his competence.", "links": {}, "path": {"211-214": [[-1364, 95], [-1301, 97], [-1296, 62], [-1364, 65]]}, "center": {"211-214": [-1316, 80]}}, -{"id": 2184, "name": "JuJutsu Kaisen", "description": "JuJutsu is a Japanese Manga-Anime, written by Gege Akutami.", "links": {"discord": ["jjk"]}, "path": {"213-258": [[-628, 290], [-613, 290], [-613, 316], [-627, 316]]}, "center": {"213-258": [-620, 303]}}, -{"id": 2185, "name": "Zephra", "description": "Hispanic Yu-Gi-Oh streamer and community", "links": {"website": ["https://www.twitch.tv/zephracarl/"], "discord": ["Ph26JFNpvQ"]}, "path": {"213-258": [[381, -297], [381, -290], [387, -290], [387, -297]]}, "center": {"213-258": [384, -293]}}, -{"id": 2186, "name": "Terraria", "description": "Terraria is a 2D action-adventure game with a procedural generated world. This art contains a few German artworks in the style of Terraria characters, including cultists worshipping a beer and a German player character with a Zenith.", "links": {"website": ["https://terraria.org", "https://en.wikipedia.org/wiki/Terraria"], "subreddit": ["Terraria"], "discord": ["terraria"]}, "path": {"202-258": [[-1494, -938], [-1496, -936], [-1496, -922], [-1493, -919], [-1493, -912], [-1491, -910], [-1402, -910], [-1402, -912], [-1404, -916], [-1404, -919], [-1398, -929], [-1407, -936], [-1412, -936], [-1413, -937], [-1418, -937], [-1418, -938], [-1422, -942], [-1425, -943], [-1436, -943], [-1436, -942], [-1439, -942], [-1441, -940], [-1443, -936], [-1461, -936], [-1461, -943], [-1467, -943], [-1478, -932], [-1482, -930], [-1487, -936]]}, "center": {"202-258": [-1430, -926]}}, -{"id": 2187, "name": "Champion's Sword", "description": "The Champion's Sword is a main component of the story of the game Guardian Tales. It is an ultimate weapon created to defeat an unknown threat from the future. The sword was discovered by Kaden, as part of his plan to help the next generation's hero. It was later handed to Queen Lili, before being passed down to her descendants, where ultimately it was placed near a statue within the Kanterbury Forest. It acts as a key to activate Heavenhold. Furthermore, it was mentioned by the Little Princess to be very light that even she herself can hold it up.", "links": {"website": ["https://guardian-tales.fandom.com/wiki/Champion%27s_Sword", "https://guardiantales.com/", "https://en.wikipedia.org/wiki/Guardian_Tales"], "subreddit": ["GuardianTales", "Berserk"], "discord": ["UrXWzvG", "M699v8xSqz"]}, "path": {"167-258": [[552, 921], [548, 925], [548, 928], [550, 930], [550, 935], [547, 939], [547, 943], [549, 946], [549, 947], [552, 950], [552, 951], [550, 953], [550, 957], [561, 957], [562, 956], [562, 954], [561, 953], [561, 948], [559, 946], [559, 945], [563, 941], [563, 936], [558, 931], [556, 931], [556, 928], [554, 926], [556, 924], [556, 923], [554, 921]]}, "center": {"167-258": [555, 939]}}, +{"id": 2184, "name": "JuJutsu Kaisen", "description": "JuJutsu is a Japanese Manga-Anime, written by Gege Akutami.", "links": {"discord": ["jjk"]}, "path": {"213-258, T": [[-628, 290], [-613, 290], [-613, 316], [-627, 316]]}, "center": {"213-258, T": [-620, 303]}}, +{"id": 2185, "name": "Zephra", "description": "Hispanic Yu-Gi-Oh streamer and community", "links": {"website": ["https://www.twitch.tv/zephracarl/"], "discord": ["Ph26JFNpvQ"]}, "path": {"213-258, T": [[381, -297], [381, -290], [387, -290], [387, -297]]}, "center": {"213-258, T": [384, -293]}}, +{"id": 2186, "name": "Terraria", "description": "Terraria is a 2D action-adventure game with a procedural generated world. This art contains a few German artworks in the style of Terraria characters, including cultists worshipping a beer and a German player character with a Zenith.", "links": {"website": ["https://terraria.org", "https://en.wikipedia.org/wiki/Terraria"], "subreddit": ["Terraria"], "discord": ["terraria"]}, "path": {"202-258, T": [[-1494, -938], [-1496, -936], [-1496, -922], [-1493, -919], [-1493, -912], [-1491, -910], [-1402, -910], [-1402, -912], [-1404, -916], [-1404, -919], [-1398, -929], [-1407, -936], [-1412, -936], [-1413, -937], [-1418, -937], [-1418, -938], [-1422, -942], [-1425, -943], [-1436, -943], [-1436, -942], [-1439, -942], [-1441, -940], [-1443, -936], [-1461, -936], [-1461, -943], [-1467, -943], [-1478, -932], [-1482, -930], [-1487, -936]]}, "center": {"202-258, T": [-1430, -926]}}, +{"id": 2187, "name": "Champion's Sword", "description": "The Champion's Sword is a main component of the story of the game Guardian Tales. It is an ultimate weapon created to defeat an unknown threat from the future. The sword was discovered by Kaden, as part of his plan to help the next generation's hero. It was later handed to Queen Lili, before being passed down to her descendants, where ultimately it was placed near a statue within the Kanterbury Forest. It acts as a key to activate Heavenhold. Furthermore, it was mentioned by the Little Princess to be very light that even she herself can hold it up.", "links": {"website": ["https://guardian-tales.fandom.com/wiki/Champion%27s_Sword", "https://guardiantales.com/", "https://en.wikipedia.org/wiki/Guardian_Tales"], "subreddit": ["GuardianTales", "Berserk"], "discord": ["UrXWzvG", "M699v8xSqz"]}, "path": {"167-258, T": [[552, 921], [548, 925], [548, 928], [550, 930], [550, 935], [547, 939], [547, 943], [549, 946], [549, 947], [552, 950], [552, 951], [550, 953], [550, 957], [561, 957], [562, 956], [562, 954], [561, 953], [561, 948], [559, 946], [559, 945], [563, 941], [563, 936], [558, 931], [556, 931], [556, 928], [554, 926], [556, 924], [556, 923], [554, 921]]}, "center": {"167-258, T": [555, 939]}}, {"id": 2188, "name": "Quantum Science Logo", "description": "Quantum Science is a popular game studio on Roblox dedicated to creating games in the sci-fi genre.", "links": {"website": ["https://www.roblox.com/groups/2847031/Quantum-Science-Inc#!/about"], "discord": ["qsp"]}, "path": {"251-258": [[-1403, -514], [-1394, -514], [-1393, -513], [-1392, -512], [-1392, -511], [-1391, -510], [-1391, -509], [-1390, -508], [-1390, -507], [-1389, -506], [-1389, -505], [-1390, -504], [-1390, -503], [-1391, -502], [-1391, -501], [-1392, -500], [-1392, -499], [-1393, -498], [-1394, -497], [-1403, -497], [-1404, -498], [-1404, -499], [-1405, -500], [-1406, -501], [-1406, -502], [-1407, -503], [-1407, -504], [-1408, -505], [-1408, -506], [-1407, -507], [-1407, -508], [-1406, -509], [-1406, -510], [-1405, -511], [-1405, -512], [-1404, -513]]}, "center": {"251-258": [-1398, -505]}}, {"id": 2189, "name": "Crying Gigachad Yagoo", "description": "Crying Gigachad Yagoo is a pixel art of Motoaki Tanigo (aka Yagoo), the CEO of Cover Corporation, the parent company of Hololive. Yagoo is depicted crying with the body of Ernest Khalimov (aka Gigachad). The edit is a meme showing the CEO's vulnerability despite his apparent prowess.\n\nWithin the Hololive fan community, Yagoo is revered as a beloved CEO with a soft and shy demeanour, contrasting the stereotype of a typical company executive. Yagoo is shown as a gigachad for his ability to grow a stable company within a turbulent industry. \n\nYagoo is shown crying because, in an interview with the media, he once envisioned Hololive as an idol group for the virtual world. The statement quickly became a meme due to the behaviour of his talents, which was opposite to what was expected of a typical idol group in Japan.", "links": {"website": ["https://knowyourmeme.com/photos/2309866-hololive", "https://hololive.wiki/wiki/YAGOO"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"211": [[-107, -864], [-106, -837], [-109, -837], [-112, -836], [-119, -829], [-119, -817], [-119, -806], [-113, -806], [-113, -792], [-108, -793], [-111, -797], [-110, -804], [-109, -809], [-102, -812], [-93, -812], [-87, -809], [-80, -810], [-84, -805], [-85, -804], [-85, -801], [-83, -801], [-84, -796], [-86, -793], [-64, -792], [-65, -864]]}, "center": {"211": [-86, -832]}}, -{"id": 2190, "name": "Romano Fafard", "description": "Le Romano Fafard (VE-450) est un vaisseau spatial fictif dans la série télévisée québécoise Dans une galaxie près de chez vous, lancé le 28 octobre 2034 depuis le centre spatial de Rawdon. Il est sous le commandement du capitaine Charles Patenaude à partir du 28 octobre 2034. La mission de son équipage est de trouver une planète habitable pour déménager six milliards de tatas.", "links": {"website": ["https://fr.wikipedia.org/wiki/Romano_Fafard", "https://en.wikipedia.org/wiki/Dans_une_galaxie_pr%C3%A8s_de_chez_vous"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec", "Xca8AVQrE8"]}, "path": {"220-258": [[567, 125], [571, 125], [571, 126], [572, 126], [571, 126], [570, 126], [570, 127], [569, 127], [569, 128], [568, 128], [568, 129], [567, 129], [567, 130], [566, 130], [566, 131], [564, 131], [564, 132], [563, 132], [562, 132], [562, 133], [561, 133], [561, 134], [559, 134], [559, 135], [558, 135], [558, 138], [560, 138], [560, 139], [561, 139], [561, 142], [560, 142], [560, 143], [558, 143], [558, 144], [556, 144], [556, 145], [554, 145], [554, 146], [550, 146], [550, 145], [547, 145], [547, 146], [545, 146], [545, 147], [544, 147], [544, 148], [542, 148], [542, 149], [540, 149], [540, 148], [539, 148], [539, 147], [538, 147], [538, 144], [539, 144], [539, 143], [540, 143], [540, 141], [541, 141], [541, 140], [541, 141], [542, 141], [542, 142], [543, 142], [543, 143], [544, 143], [544, 144], [546, 144], [547, 144], [547, 141], [548, 141], [548, 140], [550, 140], [550, 139], [551, 139], [552, 139], [552, 138], [553, 138], [553, 137], [554, 137], [554, 134], [555, 134], [555, 133], [556, 133], [556, 132], [558, 132], [558, 131], [560, 131], [560, 130], [561, 130], [561, 129], [562, 129], [562, 127], [564, 127], [564, 126], [567, 126]]}, "center": {"220-258": [555, 141]}}, -{"id": 2191, "name": "Brave Duck", "description": "A small project of the community of a German Twitch-Streamer named Herr_Currywurst. When Papaplattes Red Dragon appeared, few fought brave against it and since then the duck lives happily in their pond.", "links": {"website": ["https://www.twitch.tv/herr_currywurst/"]}, "path": {"213-258": [[1368, 675], [1392, 675], [1392, 655], [1374, 655], [1369, 658], [1368, 660], [1368, 665]]}, "center": {"213-258": [1380, 665]}}, -{"id": 2192, "name": "Rubius and Titi", "description": "The Spanish youtuber Rubius with the alien from the survival series of minecraft Karmaland V", "links": {"website": ["https://www.twitch.tv/rubius"], "subreddit": ["ubius"]}, "path": {"155-258": [[167, 678], [167, 702], [168, 703], [169, 704], [170, 705], [175, 705], [174, 717], [175, 719], [176, 719], [177, 720], [179, 721], [239, 723], [241, 722], [242, 720], [242, 705], [241, 704], [239, 703], [238, 703], [230, 702], [230, 678], [232, 678], [234, 676], [233, 623], [232, 624], [231, 622], [230, 622], [227, 621], [162, 621], [161, 624], [160, 625], [159, 626], [159, 673], [160, 675], [162, 677], [296, 676], [297, 677], [298, 691], [297, 691], [295, 693], [279, 693], [279, 695], [295, 695], [296, 696], [297, 697], [298, 698], [298, 719], [288, 719], [287, 722], [285, 722], [283, 723], [278, 723], [277, 723], [277, 721], [276, 720], [276, 719], [267, 719], [267, 723], [258, 723], [258, 722], [257, 721], [255, 720], [255, 719], [253, 719], [253, 717], [251, 716], [251, 698], [253, 696], [254, 696], [256, 695], [262, 695], [262, 693], [250, 693], [249, 692], [248, 691], [247, 690], [247, 679], [248, 678], [249, 677], [250, 676]]}, "center": {"155-258": [204, 649]}}, -{"id": 2193, "name": "Innovation Inc. Logos", "description": "Logos from Innovation Inc, a popular development group on Roblox that specializes in the sci-fi genre.", "links": {"website": ["https://www.roblox.com/groups/157764/Innovation-Inc#!/about"], "discord": ["N8N4AVa"]}, "path": {"212-258": [[-97, 419], [-128, 419], [-128, 406], [-97, 406]]}, "center": {"212-258": [-112, 413]}}, -{"id": 2194, "name": "Burger de la honte", "description": "It is a tribute to pay respect to autists.", "links": {}, "path": {"213-258": [[859, -502], [859, -509], [858, -510], [857, -511], [856, -512], [852, -512], [851, -511], [850, -510], [849, -509], [849, -502]]}, "center": {"213-258": [854, -507]}}, -{"id": 2195, "name": "Are You Alright - Lovejoy", "description": "Are You Alright? is the debut EP released by British indie rock band Lovejoy. It was released on May 9, 2021 and includes four tracks. The band consists of William Gold (also known as Wilbur Soot, a twitch streamer with a large following) as lead vocalist and rhythm guitarist, Joe Goldsmith as lead guitarist, Mark Boardman as drummer, and Ash Kabosu as bassist", "links": {"website": ["https://www.lvjyonline.com/"]}, "path": {"212-258": [[567, 501], [567, 530], [537, 531], [536, 501]]}, "center": {"212-258": [552, 516]}}, -{"id": 2196, "name": "Arwing", "description": "The Arwing is a spacecraft from Star Fox, which Rick May VA'd for.", "links": {}, "path": {"213-258": [[-1151, -86], [-1149, -82], [-1147, -86]]}, "center": {"213-258": [-1149, -85]}}, -{"id": 2197, "name": "Chicago Bears", "description": "Banner logo for the Chicago Bears, an American Football team in the NFL.", "links": {"subreddit": ["CHIBears"]}, "path": {"212-258": [[1390, 516], [1406, 516], [1406, 526], [1391, 534]]}, "center": {"212-258": [1397, 523]}}, -{"id": 2198, "name": "Guaraná Antarctica", "description": "Guaraná Antarctica is a famous guaraná-flavoured soda originating in Brazil. It was created in 1921 by Pedro Baptista de Andrade for Companhia Antarctica Paulista", "links": {"website": ["https://en.wikipedia.org/wiki/Guaran%C3%A1_Antarctica"], "discord": ["r-br"]}, "path": {"204-258": [[173, 357], [173, 361], [172, 362], [171, 363], [169, 363], [168, 364], [165, 364], [165, 369], [164, 369], [164, 370], [161, 370], [161, 371], [160, 372], [156, 372], [155, 371], [154, 370], [154, 367], [153, 367], [153, 362], [154, 361], [155, 360], [159, 360], [159, 359], [160, 358], [160, 357], [163, 357], [164, 358], [165, 357], [166, 357], [167, 358], [168, 359], [170, 359], [171, 358], [172, 357]]}, "center": {"204-258": [159, 365]}}, -{"id": 2199, "name": "Flag of Kazakhstan", "description": "Kazakhstan, a Central Asian country and former Soviet republic, extends from the Caspian Sea in the west to the Altai Mountains at its eastern border with China and Russia.\n- 9th largest country by land area\n- shares the longest continuous international border with Russian Federation\n- Capital - Astana (was renamed 3 times), biggest city - Almaty\n- homeland for Baikonur Cosmodrome (leased to Russia) spaceport where the 1st person in the space - Yuri Gagarin, started his flight\\n- currency - Tenge\n- languages: kazakh, russian", "links": {"website": ["https://en.wikipedia.org/wiki/Kazakhstan"], "subreddit": ["placekazakhstan", "kazakhstan"]}, "path": {"179-258": [[-1408, 506], [-1408, 538], [-1366, 538], [-1366, 506]]}, "center": {"179-258": [-1387, 522]}}, -{"id": 2200, "name": "Flag of Sardinia", "description": "Sardinia is an island located in the Mediterranean Sea and is the second-largest island in the Mediterranean after Sicily. It is an autonomous region of Italy and has its own distinctive culture, history, and language. The island is known for its beautiful coastline, rugged landscapes, and ancient archaeological sites, making it a popular tourist destination. Sardinia has a rich history that dates back to prehistoric times, with evidence of various civilizations and cultures that have left their mark on the island.\n\nThe flag (bandera de sa Sardigna) is known as flag of the Four Moors and represents the island of Sardinia and its people. It is composed of the St George's Cross and four heads of Moors, which in the past may not have been forehead bandaged but blindfolded and turned towards the hoist.\n\nIts official name is Regione Autònoma de Sardigna (Autonomous Region of Sardinia). It is divided into four provinces and a metropolitan city. The capital of the region of Sardinia — and its largest city — is Cagliari. Sardinia's indigenous language and Algherese Catalan are referred to by both the regional and national law as two of Italy's twelve officially recognized linguistic minorities, albeit gravely endangered, while the regional law provides some measures to recognize and protect the aforementioned as well as the island's other minority languages (the Corsican-influenced Sassarese and Gallurese, and finally Tabarchino Ligurian).\n Owing to the variety of Sardinia's ecosystems, which include mountains, woods, plains, stretches of largely uninhabited territory, streams, rocky coasts, and long sandy beaches, Sardinia has been metaphorically described as a micro-continent. In the modern era, many travelers and writers have extolled the beauty of its long-untouched landscapes, which retain vestiges of the Nuragic civilization.", "links": {"website": ["https://en.wikipedia.org/wiki/Sardinia"], "subreddit": ["Sardegna"]}, "path": {"213-258": [[1429, 99], [1439, 99], [1439, 91], [1429, 91]]}, "center": {"213-258": [1434, 95]}}, -{"id": 2201, "name": "Bic", "description": "Société Bic S.A., commonly called Bic, is a French manufacturing corporation based in Clichy, Hauts-de-Seine. It sells a world-leading brand of lighters and pens since its founding by Marcel Bich (1914–1994) in 1945, and a competitive amount of shaving goods. For several years, it sponsored Formula One and bicycle racers.", "links": {"website": ["https://fr.bic.com/fr"]}, "path": {"193-258": [[888, -295], [891, -292], [893, -292], [896, -289], [896, -285], [897, -285], [898, -281], [905, -281], [905, -283], [906, -283], [907, -284], [907, -290], [904, -294], [904, -295], [907, -298], [907, -303], [903, -306], [899, -306], [898, -305], [895, -302], [895, -297], [897, -297], [898, -294], [897, -293], [896, -293], [891, -298], [889, -295]]}, "center": {"193-258": [901, -300]}}, +{"id": 2190, "name": "Romano Fafard", "description": "Le Romano Fafard (VE-450) est un vaisseau spatial fictif dans la série télévisée québécoise Dans une galaxie près de chez vous, lancé le 28 octobre 2034 depuis le centre spatial de Rawdon. Il est sous le commandement du capitaine Charles Patenaude à partir du 28 octobre 2034. La mission de son équipage est de trouver une planète habitable pour déménager six milliards de tatas.", "links": {"website": ["https://fr.wikipedia.org/wiki/Romano_Fafard", "https://en.wikipedia.org/wiki/Dans_une_galaxie_pr%C3%A8s_de_chez_vous"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec", "Xca8AVQrE8"]}, "path": {"220-258, T": [[567, 125], [571, 125], [571, 126], [572, 126], [571, 126], [570, 126], [570, 127], [569, 127], [569, 128], [568, 128], [568, 129], [567, 129], [567, 130], [566, 130], [566, 131], [564, 131], [564, 132], [563, 132], [562, 132], [562, 133], [561, 133], [561, 134], [559, 134], [559, 135], [558, 135], [558, 138], [560, 138], [560, 139], [561, 139], [561, 142], [560, 142], [560, 143], [558, 143], [558, 144], [556, 144], [556, 145], [554, 145], [554, 146], [550, 146], [550, 145], [547, 145], [547, 146], [545, 146], [545, 147], [544, 147], [544, 148], [542, 148], [542, 149], [540, 149], [540, 148], [539, 148], [539, 147], [538, 147], [538, 144], [539, 144], [539, 143], [540, 143], [540, 141], [541, 141], [541, 140], [541, 141], [542, 141], [542, 142], [543, 142], [543, 143], [544, 143], [544, 144], [546, 144], [547, 144], [547, 141], [548, 141], [548, 140], [550, 140], [550, 139], [551, 139], [552, 139], [552, 138], [553, 138], [553, 137], [554, 137], [554, 134], [555, 134], [555, 133], [556, 133], [556, 132], [558, 132], [558, 131], [560, 131], [560, 130], [561, 130], [561, 129], [562, 129], [562, 127], [564, 127], [564, 126], [567, 126]]}, "center": {"220-258, T": [555, 141]}}, +{"id": 2191, "name": "Brave Duck", "description": "A small project of the community of a German Twitch-Streamer named Herr_Currywurst. When Papaplattes Red Dragon appeared, few fought brave against it and since then the duck lives happily in their pond.", "links": {"website": ["https://www.twitch.tv/herr_currywurst/"]}, "path": {"213-258, T": [[1368, 675], [1392, 675], [1392, 655], [1374, 655], [1369, 658], [1368, 660], [1368, 665]]}, "center": {"213-258, T": [1380, 665]}}, +{"id": 2192, "name": "Rubius and Titi", "description": "The Spanish youtuber Rubius with the alien from the survival series of minecraft Karmaland V", "links": {"website": ["https://www.twitch.tv/rubius"], "subreddit": ["ubius"]}, "path": {"155-258, T": [[167, 678], [167, 702], [168, 703], [169, 704], [170, 705], [175, 705], [174, 717], [175, 719], [176, 719], [177, 720], [179, 721], [239, 723], [241, 722], [242, 720], [242, 705], [241, 704], [239, 703], [238, 703], [230, 702], [230, 678], [232, 678], [234, 676], [233, 623], [232, 624], [231, 622], [230, 622], [227, 621], [162, 621], [161, 624], [160, 625], [159, 626], [159, 673], [160, 675], [162, 677], [296, 676], [297, 677], [298, 691], [297, 691], [295, 693], [279, 693], [279, 695], [295, 695], [296, 696], [297, 697], [298, 698], [298, 719], [288, 719], [287, 722], [285, 722], [283, 723], [278, 723], [277, 723], [277, 721], [276, 720], [276, 719], [267, 719], [267, 723], [258, 723], [258, 722], [257, 721], [255, 720], [255, 719], [253, 719], [253, 717], [251, 716], [251, 698], [253, 696], [254, 696], [256, 695], [262, 695], [262, 693], [250, 693], [249, 692], [248, 691], [247, 690], [247, 679], [248, 678], [249, 677], [250, 676]]}, "center": {"155-258, T": [204, 649]}}, +{"id": 2193, "name": "Innovation Inc. Logos", "description": "Logos from Innovation Inc, a popular development group on Roblox that specializes in the sci-fi genre.", "links": {"website": ["https://www.roblox.com/groups/157764/Innovation-Inc#!/about"], "discord": ["N8N4AVa"]}, "path": {"212-258, T": [[-97, 419], [-128, 419], [-128, 406], [-97, 406]]}, "center": {"212-258, T": [-112, 413]}}, +{"id": 2194, "name": "Burger de la honte", "description": "It is a tribute to pay respect to autists.", "links": {}, "path": {"213-258, T": [[859, -502], [859, -509], [858, -510], [857, -511], [856, -512], [852, -512], [851, -511], [850, -510], [849, -509], [849, -502]]}, "center": {"213-258, T": [854, -507]}}, +{"id": 2195, "name": "Are You Alright - Lovejoy", "description": "Are You Alright? is the debut EP released by British indie rock band Lovejoy. It was released on May 9, 2021 and includes four tracks. The band consists of William Gold (also known as Wilbur Soot, a twitch streamer with a large following) as lead vocalist and rhythm guitarist, Joe Goldsmith as lead guitarist, Mark Boardman as drummer, and Ash Kabosu as bassist", "links": {"website": ["https://www.lvjyonline.com/"]}, "path": {"212-258, T": [[567, 501], [567, 530], [537, 531], [536, 501]]}, "center": {"212-258, T": [552, 516]}}, +{"id": 2196, "name": "Arwing", "description": "The Arwing is a spacecraft from Star Fox, which Rick May VA'd for.", "links": {}, "path": {"213-258, T": [[-1151, -86], [-1149, -82], [-1147, -86]]}, "center": {"213-258, T": [-1149, -85]}}, +{"id": 2197, "name": "Chicago Bears", "description": "Banner logo for the Chicago Bears, an American Football team in the NFL.", "links": {"subreddit": ["CHIBears"]}, "path": {"212-258, T": [[1390, 516], [1406, 516], [1406, 526], [1391, 534]]}, "center": {"212-258, T": [1397, 523]}}, +{"id": 2198, "name": "Guaraná Antarctica", "description": "Guaraná Antarctica is a famous guaraná-flavoured soda originating in Brazil. It was created in 1921 by Pedro Baptista de Andrade for Companhia Antarctica Paulista", "links": {"website": ["https://en.wikipedia.org/wiki/Guaran%C3%A1_Antarctica"], "discord": ["r-br"]}, "path": {"204-258, T": [[173, 357], [173, 361], [172, 362], [171, 363], [169, 363], [168, 364], [165, 364], [165, 369], [164, 369], [164, 370], [161, 370], [161, 371], [160, 372], [156, 372], [155, 371], [154, 370], [154, 367], [153, 367], [153, 362], [154, 361], [155, 360], [159, 360], [159, 359], [160, 358], [160, 357], [163, 357], [164, 358], [165, 357], [166, 357], [167, 358], [168, 359], [170, 359], [171, 358], [172, 357]]}, "center": {"204-258, T": [159, 365]}}, +{"id": 2199, "name": "Flag of Kazakhstan", "description": "Kazakhstan, a Central Asian country and former Soviet republic, extends from the Caspian Sea in the west to the Altai Mountains at its eastern border with China and Russia.\n- 9th largest country by land area\n- shares the longest continuous international border with Russian Federation\n- Capital - Astana (was renamed 3 times), biggest city - Almaty\n- homeland for Baikonur Cosmodrome (leased to Russia) spaceport where the 1st person in the space - Yuri Gagarin, started his flight\\n- currency - Tenge\n- languages: kazakh, russian", "links": {"website": ["https://en.wikipedia.org/wiki/Kazakhstan"], "subreddit": ["placekazakhstan", "kazakhstan"]}, "path": {"179-258, T": [[-1408, 506], [-1408, 538], [-1366, 538], [-1366, 506]]}, "center": {"179-258, T": [-1387, 522]}}, +{"id": 2200, "name": "Flag of Sardinia", "description": "Sardinia is an island located in the Mediterranean Sea and is the second-largest island in the Mediterranean after Sicily. It is an autonomous region of Italy and has its own distinctive culture, history, and language. The island is known for its beautiful coastline, rugged landscapes, and ancient archaeological sites, making it a popular tourist destination. Sardinia has a rich history that dates back to prehistoric times, with evidence of various civilizations and cultures that have left their mark on the island.\n\nThe flag (bandera de sa Sardigna) is known as flag of the Four Moors and represents the island of Sardinia and its people. It is composed of the St George's Cross and four heads of Moors, which in the past may not have been forehead bandaged but blindfolded and turned towards the hoist.\n\nIts official name is Regione Autònoma de Sardigna (Autonomous Region of Sardinia). It is divided into four provinces and a metropolitan city. The capital of the region of Sardinia — and its largest city — is Cagliari. Sardinia's indigenous language and Algherese Catalan are referred to by both the regional and national law as two of Italy's twelve officially recognized linguistic minorities, albeit gravely endangered, while the regional law provides some measures to recognize and protect the aforementioned as well as the island's other minority languages (the Corsican-influenced Sassarese and Gallurese, and finally Tabarchino Ligurian).\n Owing to the variety of Sardinia's ecosystems, which include mountains, woods, plains, stretches of largely uninhabited territory, streams, rocky coasts, and long sandy beaches, Sardinia has been metaphorically described as a micro-continent. In the modern era, many travelers and writers have extolled the beauty of its long-untouched landscapes, which retain vestiges of the Nuragic civilization.", "links": {"website": ["https://en.wikipedia.org/wiki/Sardinia"], "subreddit": ["Sardegna"]}, "path": {"213-258, T": [[1429, 99], [1439, 99], [1439, 91], [1429, 91]]}, "center": {"213-258, T": [1434, 95]}}, +{"id": 2201, "name": "Bic", "description": "Société Bic S.A., commonly called Bic, is a French manufacturing corporation based in Clichy, Hauts-de-Seine. It sells a world-leading brand of lighters and pens since its founding by Marcel Bich (1914–1994) in 1945, and a competitive amount of shaving goods. For several years, it sponsored Formula One and bicycle racers.", "links": {"website": ["https://fr.bic.com/fr"]}, "path": {"193-258, T": [[888, -295], [891, -292], [893, -292], [896, -289], [896, -285], [897, -285], [898, -281], [905, -281], [905, -283], [906, -283], [907, -284], [907, -290], [904, -294], [904, -295], [907, -298], [907, -303], [903, -306], [899, -306], [898, -305], [895, -302], [895, -297], [897, -297], [898, -294], [897, -293], [896, -293], [891, -298], [889, -295]]}, "center": {"193-258, T": [901, -300]}}, {"id": 2202, "name": "Duck Swarm", "description": "A duck swarm created by the Ducks United, as some random people started to join in, because the pattern was easy to reproduce it quickly went out of control and started covered a really large part of the canvas", "links": {"subreddit": ["placeducks", "duck_place", "shareducks"], "discord": ["ySXpJwzTzs"]}, "path": {"1-16": [[78, -7], [104, -7], [104, -15], [104, -16], [-369, -16], [-368, 57], [-340, 58], [-341, 67], [-329, 67], [-320, 61], [-304, 60], [-298, 73], [-299, 89], [-310, 91], [-312, 96], [-305, 105], [-301, 108], [-291, 108], [-291, 113], [-278, 114], [-275, 110], [-272, 104], [-266, 104], [-264, 90], [-265, 72], [-255, 64], [-235, 66], [-232, 74], [-196, 75], [-195, 87], [-197, 90], [-206, 87], [-205, 113], [-186, 113], [-183, 120], [-183, 128], [-146, 128], [-145, 128], [-145, 34], [-79, 34], [-78, -10], [77, -10], [77, -7], [95, -7]]}, "center": {"1-16": [-190, 30]}}, -{"id": 2203, "name": "Jaime Garzón", "description": "Jaime Hernando Garzón Forero (24 October 1960 – 13 August 1999) was a Colombian comedian, journalist, politician, and peace activist. He was popular on Colombian television during the 1990s for his unique political satire. In addition to his work on television, he also had roles as a peace negotiator in the release of FARC guerrillas hostages. He was murdered in 1999 by right-wing paramilitary hitmen, with suspected support from members of the Colombian military and security services, according to testimonies of former paramilitaries commanders.", "links": {"website": ["https://en.wikipedia.org/wiki/Jaime_Garz%C3%B3n"], "subreddit": ["Colombia"]}, "path": {"213-258": [[1199, 773], [1199, 758], [1201, 758], [1201, 756], [1203, 754], [1204, 751], [1207, 750], [1208, 747], [1210, 746], [1210, 744], [1209, 743], [1209, 731], [1210, 729], [1211, 726], [1212, 724], [1213, 724], [1213, 722], [1215, 722], [1215, 721], [1218, 721], [1218, 720], [1222, 720], [1223, 720], [1223, 719], [1226, 719], [1226, 718], [1227, 718], [1227, 720], [1228, 720], [1229, 719], [1230, 718], [1232, 718], [1232, 720], [1233, 720], [1233, 722], [1234, 722], [1235, 723], [1236, 723], [1237, 724], [1238, 725], [1239, 725], [1240, 726], [1240, 730], [1239, 730], [1239, 740], [1237, 741], [1237, 743], [1238, 743], [1237, 745], [1237, 746], [1237, 748], [1238, 749], [1238, 753], [1240, 753], [1241, 754], [1243, 756], [1246, 759], [1247, 762], [1249, 762], [1249, 773]]}, "center": {"213-258": [1222, 757]}}, +{"id": 2203, "name": "Jaime Garzón", "description": "Jaime Hernando Garzón Forero (24 October 1960 – 13 August 1999) was a Colombian comedian, journalist, politician, and peace activist. He was popular on Colombian television during the 1990s for his unique political satire. In addition to his work on television, he also had roles as a peace negotiator in the release of FARC guerrillas hostages. He was murdered in 1999 by right-wing paramilitary hitmen, with suspected support from members of the Colombian military and security services, according to testimonies of former paramilitaries commanders.", "links": {"website": ["https://en.wikipedia.org/wiki/Jaime_Garz%C3%B3n"], "subreddit": ["Colombia"]}, "path": {"213-258, T": [[1199, 773], [1199, 758], [1201, 758], [1201, 756], [1203, 754], [1204, 751], [1207, 750], [1208, 747], [1210, 746], [1210, 744], [1209, 743], [1209, 731], [1210, 729], [1211, 726], [1212, 724], [1213, 724], [1213, 722], [1215, 722], [1215, 721], [1218, 721], [1218, 720], [1222, 720], [1223, 720], [1223, 719], [1226, 719], [1226, 718], [1227, 718], [1227, 720], [1228, 720], [1229, 719], [1230, 718], [1232, 718], [1232, 720], [1233, 720], [1233, 722], [1234, 722], [1235, 723], [1236, 723], [1237, 724], [1238, 725], [1239, 725], [1240, 726], [1240, 730], [1239, 730], [1239, 740], [1237, 741], [1237, 743], [1238, 743], [1237, 745], [1237, 746], [1237, 748], [1238, 749], [1238, 753], [1240, 753], [1241, 754], [1243, 756], [1246, 759], [1247, 762], [1249, 762], [1249, 773]]}, "center": {"213-258, T": [1222, 757]}}, {"id": 2204, "name": "Aldi Mates", "description": "Small German community of some different types of Gamers that love to have fun.\n\nThe A M8´s is there Clan Tag abbreviation (Aldi M8[ate]s)", "links": {"website": ["http://steamcommunity.com/groups/Aldimates", "https://www.instagram.com/bremse.f/", "https://www.instagram.com/tim_derking/", "https://www.instagram.com/schmackessss/", "https://www.instagram.com/xjanisex/", "https://www.instagram.com/philip.sir/", "https://www.instagram.com/x.alex_s.x/"], "discord": ["4pv8n7jjDj"]}, "path": {"210-211": [[1452, -817], [1452, -818], [1452, -804], [1477, -804], [1477, -817]]}, "center": {"210-211": [1465, -810]}}, -{"id": 2205, "name": "Yugo", "description": "an Eliatrope that can create portals and is the main character of the Wakfu animated series.", "links": {"website": ["https://www.wakfu.com/en/s3/yugo"]}, "path": {"213-258": [[-444, 810], [-444, 806], [-442, 807], [-439, 807], [-440, 806], [-438, 807], [-438, 809], [-438, 813], [-439, 816], [-441, 817], [-443, 820], [-446, 814], [-449, 811], [-450, 809]]}, "center": {"213-258": [-442, 813]}}, -{"id": 2206, "name": "Blur Band Logo", "description": "The logo of 90s Britpop band, Blur. This particular logo is stylized in the form from their latest album, The Ballad of Darren, released on 21 July 2023. They are most well known for songs such as \"Song 2\" and \"Parklife\", as well as being the band of Damon Albarn, who later went on to create the virtual band Gorillaz.", "links": {"website": ["https://www.blur.co.uk"], "subreddit": ["blur"], "discord": ["5kdJbWm"]}, "path": {"203-208": [[1228, -798], [1239, -798], [1239, -792], [1228, -792]], "212-258": [[1264, -791], [1274, -791], [1274, -786], [1264, -786]]}, "center": {"203-208": [1234, -795], "212-258": [1269, -788]}}, -{"id": 2207, "name": "Itazura Iro patting T-chan", "description": "Itazura Iro, the mascot of VTubers Place patting T-chan, Hololive production's Reddit Administrator.\n\nT-chan helped VTPL in supporting their efforts in last year's iteration of Place. To acknowledge her efforts, they made an emote patting T-chan.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"213-258": [[-334, -874], [-334, -882], [-329, -889], [-324, -893], [-320, -893], [-320, -894], [-319, -898], [-318, -901], [-316, -904], [-319, -904], [-319, -909], [-318, -910], [-311, -910], [-310, -909], [-309, -908], [-297, -908], [-296, -909], [-295, -911], [-290, -910], [-287, -907], [-287, -904], [-291, -903], [-289, -901], [-289, -899], [-288, -897], [-288, -887], [-289, -883], [-290, -881], [-291, -879], [-295, -879], [-299, -876], [-308, -876], [-308, -867], [-328, -866], [-331, -867], [-332, -873]]}, "center": {"213-258": [-304, -892]}}, -{"id": 2208, "name": "Baltic State TV towers", "description": "Lithuania's, Estonia's and Latvia's TV towers. Located in each of the countries' capitals. Each has their national flag and a Ukranian flag attached. The background has patterns from each country.", "links": {"website": ["https://www.govilnius.lt/visit-vilnius/places/television-tower", "https://www.teletorn.ee/en/", "https://www.redzet.eu/en/travel/sights/tower/riga-radio-and-tv-tower"], "subreddit": ["BalticStates", "lithuania", "latvia", "Eesti"], "discord": ["GNS6ujQMhF"]}, "path": {"199-258": [[-91, 482], [-91, 564], [-3, 564], [-3, 487], [-27, 486], [-32, 490], [-36, 492], [-41, 493], [-44, 494], [-50, 494], [-55, 493], [-60, 492], [-73, 483], [-80, 481]]}, "center": {"199-258": [-56, 529]}}, -{"id": 2209, "name": "Lover", "description": "Lover is the seventh studio album by American singer-songwriter Taylor Swift.", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"214-258": [[1326, -622], [1326, -635], [1302, -635], [1302, -622]]}, "center": {"214-258": [1314, -628]}}, +{"id": 2205, "name": "Yugo", "description": "an Eliatrope that can create portals and is the main character of the Wakfu animated series.", "links": {"website": ["https://www.wakfu.com/en/s3/yugo"]}, "path": {"213-258, T": [[-444, 810], [-444, 806], [-442, 807], [-439, 807], [-440, 806], [-438, 807], [-438, 809], [-438, 813], [-439, 816], [-441, 817], [-443, 820], [-446, 814], [-449, 811], [-450, 809]]}, "center": {"213-258, T": [-442, 813]}}, +{"id": 2206, "name": "Blur Band Logo", "description": "The logo of 90s Britpop band, Blur. This particular logo is stylized in the form from their latest album, The Ballad of Darren, released on 21 July 2023. They are most well known for songs such as \"Song 2\" and \"Parklife\", as well as being the band of Damon Albarn, who later went on to create the virtual band Gorillaz.", "links": {"website": ["https://www.blur.co.uk"], "subreddit": ["blur"], "discord": ["5kdJbWm"]}, "path": {"203-208": [[1228, -798], [1239, -798], [1239, -792], [1228, -792]], "212-258, T": [[1264, -791], [1274, -791], [1274, -786], [1264, -786]]}, "center": {"203-208": [1234, -795], "212-258, T": [1269, -788]}}, +{"id": 2207, "name": "Itazura Iro patting T-chan", "description": "Itazura Iro, the mascot of VTubers Place patting T-chan, Hololive production's Reddit Administrator.\n\nT-chan helped VTPL in supporting their efforts in last year's iteration of Place. To acknowledge her efforts, they made an emote patting T-chan.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"213-258, T": [[-334, -874], [-334, -882], [-329, -889], [-324, -893], [-320, -893], [-320, -894], [-319, -898], [-318, -901], [-316, -904], [-319, -904], [-319, -909], [-318, -910], [-311, -910], [-310, -909], [-309, -908], [-297, -908], [-296, -909], [-295, -911], [-290, -910], [-287, -907], [-287, -904], [-291, -903], [-289, -901], [-289, -899], [-288, -897], [-288, -887], [-289, -883], [-290, -881], [-291, -879], [-295, -879], [-299, -876], [-308, -876], [-308, -867], [-328, -866], [-331, -867], [-332, -873]]}, "center": {"213-258, T": [-304, -892]}}, +{"id": 2208, "name": "Baltic State TV towers", "description": "Lithuania's, Estonia's and Latvia's TV towers. Located in each of the countries' capitals. Each has their national flag and a Ukranian flag attached. The background has patterns from each country.", "links": {"website": ["https://www.govilnius.lt/visit-vilnius/places/television-tower", "https://www.teletorn.ee/en/", "https://www.redzet.eu/en/travel/sights/tower/riga-radio-and-tv-tower"], "subreddit": ["BalticStates", "lithuania", "latvia", "Eesti"], "discord": ["GNS6ujQMhF"]}, "path": {"199-258, T": [[-91, 482], [-91, 564], [-3, 564], [-3, 487], [-27, 486], [-32, 490], [-36, 492], [-41, 493], [-44, 494], [-50, 494], [-55, 493], [-60, 492], [-73, 483], [-80, 481]]}, "center": {"199-258, T": [-56, 529]}}, +{"id": 2209, "name": "Lover", "description": "Lover is the seventh studio album by American singer-songwriter Taylor Swift.", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"214-258, T": [[1326, -622], [1326, -635], [1302, -635], [1302, -622]]}, "center": {"214-258, T": [1314, -628]}}, {"id": 2210, "name": "South Park", "description": "", "links": {}, "path": {"214-239": [[-621, 884], [-621, 883], [-622, 883], [-622, 882], [-623, 882], [-623, 881], [-624, 881], [-624, 880], [-624, 873], [-632, 873], [-632, 879], [-645, 879], [-645, 884], [-642, 884], [-642, 903], [-627, 903], [-626, 903], [-626, 902], [-625, 902], [-624, 902], [-624, 901], [-624, 900], [-624, 899], [-622, 899], [-621, 899], [-621, 893]]}, "center": {"214-239": [-631, 890]}}, -{"id": 2212, "name": "Olympique de Marseille", "description": "Olympique de Marseille (or shortened to \"OM\") is a French professional football club based in Marseille that competes in Ligue 1, the top flight of French football. \nFounded in 1899, the club has won nine league titles, ten Coupe de France titles, three Coupe de la Ligue titles, three Trophée des Champions titles.", "links": {"website": ["https://en.wikipedia.org/wiki/Olympique_de_Marseille"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"206-258": [[939, -832], [938, -831], [937, -830], [936, -829], [935, -828], [935, -827], [934, -826], [934, -825], [933, -824], [933, -821], [934, -820], [935, -819], [936, -817], [936, -816], [935, -815], [935, -814], [934, -813], [933, -812], [934, -811], [940, -811], [940, -812], [941, -813], [943, -812], [945, -811], [951, -811], [952, -812], [953, -812], [954, -813], [955, -812], [956, -811], [961, -811], [962, -812], [961, -813], [960, -814], [960, -815], [959, -816], [959, -817], [960, -818], [960, -819], [961, -820], [961, -821], [962, -822], [962, -824], [961, -825], [961, -826], [960, -827], [960, -828], [959, -829], [958, -830], [957, -831], [956, -832], [956, -833], [955, -834], [956, -835], [956, -837], [955, -838], [953, -838], [952, -837], [943, -837], [942, -838], [940, -838], [939, -837], [939, -835], [940, -834], [939, -833]]}, "center": {"206-258": [947, -823]}}, +{"id": 2212, "name": "Olympique de Marseille", "description": "Olympique de Marseille (or shortened to \"OM\") is a French professional football club based in Marseille that competes in Ligue 1, the top flight of French football. \nFounded in 1899, the club has won nine league titles, ten Coupe de France titles, three Coupe de la Ligue titles, three Trophée des Champions titles.", "links": {"website": ["https://en.wikipedia.org/wiki/Olympique_de_Marseille"], "subreddit": ["france", "placeFR"], "discord": ["placeFR"]}, "path": {"206-258, T": [[939, -832], [938, -831], [937, -830], [936, -829], [935, -828], [935, -827], [934, -826], [934, -825], [933, -824], [933, -821], [934, -820], [935, -819], [936, -817], [936, -816], [935, -815], [935, -814], [934, -813], [933, -812], [934, -811], [940, -811], [940, -812], [941, -813], [943, -812], [945, -811], [951, -811], [952, -812], [953, -812], [954, -813], [955, -812], [956, -811], [961, -811], [962, -812], [961, -813], [960, -814], [960, -815], [959, -816], [959, -817], [960, -818], [960, -819], [961, -820], [961, -821], [962, -822], [962, -824], [961, -825], [961, -826], [960, -827], [960, -828], [959, -829], [958, -830], [957, -831], [956, -832], [956, -833], [955, -834], [956, -835], [956, -837], [955, -838], [953, -838], [952, -837], [943, -837], [942, -838], [940, -838], [939, -837], [939, -835], [940, -834], [939, -833]]}, "center": {"206-258, T": [947, -823]}}, {"id": 2213, "name": "Mini Canadian Flag", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Canada"]}, "path": {"214-232": [[-658, 839], [-658, 844], [-647, 844], [-647, 839]], "233-238": [[-658, 841], [-658, 844], [-647, 844], [-647, 841]]}, "center": {"214-232": [-652, 842], "233-238": [-652, 843]}}, -{"id": 2214, "name": "Biene Maya (Maya the Bee)", "description": "Biene Maya, known as Maya the Bee, is a fictional character created by German author Waldemar Bonsels in 1912. She's a young and adventurous bee who learns about friendship and teamwork through various captivating adventures. The character's popularity grew in Germany, becoming especially beloved among German youth. Her charming stories have been adapted into books, animated films, and TV series, making her an enduring symbol of nature's beauty and wonder, cherished by children worldwide. (created by r/placede)", "links": {"website": ["https://de.m.wikipedia.org/wiki/Biene_Maja"], "subreddit": ["placede"]}, "path": {"213-258": [[-72, -569], [-73, -568], [-74, -568], [-74, -567], [-75, -567], [-75, -566], [-75, -565], [-75, -564], [-74, -564], [-74, -563], [-74, -562], [-75, -562], [-75, -561], [-74, -561], [-74, -560], [-73, -560], [-72, -560], [-69, -560], [-69, -559], [-65, -559], [-65, -558], [-63, -558], [-63, -557], [-61, -557], [-61, -558], [-60, -558], [-60, -559], [-58, -559], [-58, -552], [-51, -552], [-51, -562], [-50, -562], [-50, -563], [-49, -563], [-49, -564], [-48, -564], [-48, -565], [-47, -565], [-46, -566], [-46, -567], [-45, -567], [-45, -568], [-44, -568], [-44, -569], [-42, -569], [-41, -569], [-41, -568], [-40, -568], [-40, -567], [-39, -567], [-39, -566], [-38, -566], [-38, -565], [-37, -566], [-36, -567], [-35, -568], [-34, -569], [-33, -570], [-34, -571], [-35, -572], [-36, -573], [-37, -574], [-38, -575], [-39, -576], [-40, -575], [-41, -574], [-42, -573], [-43, -572], [-44, -571], [-45, -570], [-46, -570], [-47, -570], [-47, -571], [-47, -572], [-46, -572], [-46, -573], [-46, -574], [-46, -575], [-45, -575], [-45, -576], [-46, -576], [-46, -580], [-45, -580], [-45, -581], [-44, -581], [-44, -582], [-44, -586], [-45, -586], [-45, -585], [-44, -585], [-45, -582], [-45, -581], [-45, -580], [-46, -580], [-47, -580], [-48, -580], [-48, -581], [-49, -581], [-50, -581], [-50, -582], [-51, -582], [-52, -582], [-52, -585], [-53, -585], [-53, -587], [-54, -587], [-54, -589], [-55, -589], [-55, -588], [-54, -588], [-54, -587], [-53, -587], [-53, -585], [-52, -585], [-52, -582], [-53, -582], [-53, -581], [-54, -581], [-55, -581], [-57, -581], [-58, -581], [-58, -582], [-58, -583], [-59, -583], [-59, -584], [-60, -583], [-61, -582], [-61, -581], [-62, -580], [-63, -580], [-63, -582], [-64, -582], [-64, -583], [-65, -583], [-65, -584], [-66, -584], [-66, -585], [-67, -585], [-68, -585], [-68, -584], [-69, -584], [-69, -580], [-68, -580], [-68, -579], [-68, -578], [-67, -578], [-67, -577], [-66, -577], [-66, -576], [-65, -575], [-64, -574], [-63, -573], [-62, -572], [-61, -571]]}, "center": {"213-258": [-54, -574]}}, -{"id": 2215, "name": "Katawa Shoujo", "description": "Art depicting the logo of Katawa Shoujo and its initials \"K.S.\"\n\nKatawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku High School for disabled children, located somewhere in modern Japan. Hisao Nakai, a normal boy living a normal life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends—and perhaps love, if he plays his cards right. There are five main paths corresponding to the 5 main female characters, each path following the storyline pertaining to that character.", "links": {"website": ["https://www.katawa-shoujo.com"], "subreddit": ["katawashoujo"], "discord": ["S2EHXbA"]}, "path": {"88-258": [[-582, 387], [-582, 404], [-570, 404], [-570, 387]]}, "center": {"88-258": [-576, 396]}}, -{"id": 2216, "name": "Hämis", "description": "The Spidey (in-game name Hämis) is a small, but aggressive three-legged critter in the rogue-lite game Noita. The Hämis is beloved by all.", "links": {"website": ["https://noita.wiki.gg/wiki/H%C3%A4mis"], "subreddit": ["noita"], "discord": ["noita"]}, "path": {"206-258": [[-1108, 491], [-1108, 485], [-1107, 485], [-1107, 483], [-1106, 483], [-1106, 481], [-1105, 481], [-1105, 480], [-1102, 480], [-1102, 481], [-1101, 481], [-1101, 484], [-1100, 484], [-1100, 491]]}, "center": {"206-258": [-1104, 487]}}, +{"id": 2214, "name": "Biene Maya (Maya the Bee)", "description": "Biene Maya, known as Maya the Bee, is a fictional character created by German author Waldemar Bonsels in 1912. She's a young and adventurous bee who learns about friendship and teamwork through various captivating adventures. The character's popularity grew in Germany, becoming especially beloved among German youth. Her charming stories have been adapted into books, animated films, and TV series, making her an enduring symbol of nature's beauty and wonder, cherished by children worldwide. (created by r/placede)", "links": {"website": ["https://de.m.wikipedia.org/wiki/Biene_Maja"], "subreddit": ["placede"]}, "path": {"213-258, T": [[-72, -569], [-73, -568], [-74, -568], [-74, -567], [-75, -567], [-75, -566], [-75, -565], [-75, -564], [-74, -564], [-74, -563], [-74, -562], [-75, -562], [-75, -561], [-74, -561], [-74, -560], [-73, -560], [-72, -560], [-69, -560], [-69, -559], [-65, -559], [-65, -558], [-63, -558], [-63, -557], [-61, -557], [-61, -558], [-60, -558], [-60, -559], [-58, -559], [-58, -552], [-51, -552], [-51, -562], [-50, -562], [-50, -563], [-49, -563], [-49, -564], [-48, -564], [-48, -565], [-47, -565], [-46, -566], [-46, -567], [-45, -567], [-45, -568], [-44, -568], [-44, -569], [-42, -569], [-41, -569], [-41, -568], [-40, -568], [-40, -567], [-39, -567], [-39, -566], [-38, -566], [-38, -565], [-37, -566], [-36, -567], [-35, -568], [-34, -569], [-33, -570], [-34, -571], [-35, -572], [-36, -573], [-37, -574], [-38, -575], [-39, -576], [-40, -575], [-41, -574], [-42, -573], [-43, -572], [-44, -571], [-45, -570], [-46, -570], [-47, -570], [-47, -571], [-47, -572], [-46, -572], [-46, -573], [-46, -574], [-46, -575], [-45, -575], [-45, -576], [-46, -576], [-46, -580], [-45, -580], [-45, -581], [-44, -581], [-44, -582], [-44, -586], [-45, -586], [-45, -585], [-44, -585], [-45, -582], [-45, -581], [-45, -580], [-46, -580], [-47, -580], [-48, -580], [-48, -581], [-49, -581], [-50, -581], [-50, -582], [-51, -582], [-52, -582], [-52, -585], [-53, -585], [-53, -587], [-54, -587], [-54, -589], [-55, -589], [-55, -588], [-54, -588], [-54, -587], [-53, -587], [-53, -585], [-52, -585], [-52, -582], [-53, -582], [-53, -581], [-54, -581], [-55, -581], [-57, -581], [-58, -581], [-58, -582], [-58, -583], [-59, -583], [-59, -584], [-60, -583], [-61, -582], [-61, -581], [-62, -580], [-63, -580], [-63, -582], [-64, -582], [-64, -583], [-65, -583], [-65, -584], [-66, -584], [-66, -585], [-67, -585], [-68, -585], [-68, -584], [-69, -584], [-69, -580], [-68, -580], [-68, -579], [-68, -578], [-67, -578], [-67, -577], [-66, -577], [-66, -576], [-65, -575], [-64, -574], [-63, -573], [-62, -572], [-61, -571]]}, "center": {"213-258, T": [-54, -574]}}, +{"id": 2215, "name": "Katawa Shoujo", "description": "Art depicting the logo of Katawa Shoujo and its initials \"K.S.\"\n\nKatawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku High School for disabled children, located somewhere in modern Japan. Hisao Nakai, a normal boy living a normal life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends—and perhaps love, if he plays his cards right. There are five main paths corresponding to the 5 main female characters, each path following the storyline pertaining to that character.", "links": {"website": ["https://www.katawa-shoujo.com"], "subreddit": ["katawashoujo"], "discord": ["S2EHXbA"]}, "path": {"88-258, T": [[-582, 387], [-582, 404], [-570, 404], [-570, 387]]}, "center": {"88-258, T": [-576, 396]}}, +{"id": 2216, "name": "Hämis", "description": "The Spidey (in-game name Hämis) is a small, but aggressive three-legged critter in the rogue-lite game Noita. The Hämis is beloved by all.", "links": {"website": ["https://noita.wiki.gg/wiki/H%C3%A4mis"], "subreddit": ["noita"], "discord": ["noita"]}, "path": {"206-258, T": [[-1108, 491], [-1108, 485], [-1107, 485], [-1107, 483], [-1106, 483], [-1106, 481], [-1105, 481], [-1105, 480], [-1102, 480], [-1102, 481], [-1101, 481], [-1101, 484], [-1100, 484], [-1100, 491]]}, "center": {"206-258, T": [-1104, 487]}}, {"id": 2217, "name": "Harfang des neiges", "description": "The snowy owl, also known as the polar owl, the white owl and the Arctic owl, is a large, white owl of the true owl family.", "links": {"website": ["https://en.wikipedia.org/wiki/Snowy_owl"], "subreddit": ["Quebec"]}, "path": {"178-187": [[794, 364], [799, 364], [803, 368], [803, 371], [802, 373], [805, 378], [806, 380], [803, 383], [801, 386], [802, 387], [800, 388], [800, 391], [799, 395], [798, 394], [799, 391], [793, 389], [793, 369]]}, "center": {"178-187": [799, 379]}}, -{"id": 2218, "name": "ttv/dkincc & ttv/drakeoffc", "description": "An art created by two Russian streamers, dkincc and drakeoffc. The top of the art features a meme with dkincc's face, and the bottom part features Om Nom from the mobile game \"Cut the Rope\".", "links": {"website": ["https://twitch.tv/dkincc", "https://twitch.tv/drakeoffc"]}, "path": {"214-258": [[-838, -5], [-838, 21], [-811, 22], [-810, 57], [-810, 97], [-795, 97], [-794, 160], [-775, 161], [-775, 177], [-750, 177], [-734, 161], [-731, 161], [-728, 133], [-696, 132], [-695, 23], [-759, 22], [-760, -6]]}, "center": {"214-258": [-748, 74]}}, -{"id": 2219, "name": "November 2015 Paris attacks", "description": "This is a tribute to the series of coordinated terrorist attacks (6 in total) by Islamic extremists took place on Friday, 13 November 2015 in Paris, France, and the city's northern suburb, Saint-Denis.\n\nOne of the group carried out a mass shooting and took hostages at an Eagles of Death Metal concert attended by 1,500 people in the Bataclan theater (the specific one shown on the canvas).\nIn total (counting all the attacks that happened on that day), there were 130 people dead, including 90 at the Bataclan theater. Another 416 people were injured with almost 100 critically.", "links": {"website": ["https://en.wikipedia.org/wiki/November_2015_Paris_attacks"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"192-258": [[795, -793], [796, -738], [769, -737], [769, -731], [777, -730], [778, -720], [765, -719], [765, -710], [799, -710], [799, -703], [780, -702], [781, -691], [838, -691], [837, -702], [811, -703], [810, -744], [808, -747], [808, -749], [810, -750], [810, -757], [815, -759], [813, -791], [805, -793]]}, "center": {"192-258": [792, -724]}}, -{"id": 2220, "name": "Noble Prize", "description": "The Nobel Prize is a prestigious international award given annually in several categories, including Physics, Chemistry, Medicine, Literature, Peace, and Economic Sciences. It was established by the will of Alfred Nobel, a Swedish inventor, engineer, and industrialist, in 1895. The prize recognizes outstanding contributions and achievements that have had a significant and positive impact on humanity. Recipients are awarded a medal, diploma, and a monetary prize.", "links": {"website": ["https://en.wikipedia.org/wiki/Nobel_Prize", "https://www.nobelprize.org/"]}, "path": {"214-258": [[89, -249], [96, -249], [103, -242], [103, -235], [96, -228], [89, -228], [82, -235], [82, -242]]}, "center": {"214-258": [93, -238]}}, -{"id": 2221, "name": "Kessoku Band x Romania", "description": "Ryo, Nijika and Kita, being the bassist, drummer and rythm guitar (and singer) respectively of Bocchi The Rock's fictional band \"kessoku band\" and here they are drawn with their hair representing each color of the Romanian flag.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"213-258": [[-1500, 480], [-1483, 478], [-1474, 474], [-1471, 478], [-1449, 477], [-1442, 483], [-1442, 491], [-1461, 491], [-1481, 491], [-1499, 492]]}, "center": {"213-258": [-1477, 483]}}, -{"id": 2222, "name": "Shigure Ui (Vtuber and Illustrator)", "description": "Shigure Ui (しぐれうい) is a female Japanese Virtual YouTuber and illustrator. She is a character designer for Oozora Subaru, a talent from Hololive Japan, the light novel OsaMake, and the anime series WIXOSS DIVA(A)LIVE. Shigure Ui is also known as Ui-mama, a title given by the Hololive community for being a character designer of their favourite vtuber. Given her close relationship and many collaborations with Hololive talents, Ui-mama is often associated with the agency despite not being officially part of Hololive.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Shigure_Ui"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"214-258": [[-191, -823], [-190, -775], [-184, -775], [-184, -779], [-172, -779], [-172, -785], [-159, -785], [-159, -812], [-159, -813], [-175, -813], [-175, -823], [-183, -823], [-191, -823], [-191, -775], [-184, -776], [-160, -777], [-160, -823], [-178, -823]]}, "center": {"214-258": [-167, -818]}}, -{"id": 2223, "name": "Free Palestine", "description": "You can read it's self explanatory", "links": {"subreddit": ["palestine", "BDS"], "discord": ["gZHbSvXE"]}, "path": {"213-258": [[2, -807], [68, -807], [69, -826], [2, -826]]}, "center": {"213-258": [36, -816]}}, -{"id": 2224, "name": "Annoying Dog dressed with the Bonhomme Carnaval's clothes.", "description": "The character representing indie developer of Deltarune and Undertale ''Toby Fox'' dressed with the arrowed sash and the toque of the character representing the Quebec Winter Carnaval : The Bonhomme Carnaval", "links": {"subreddit": ["quebec", "deltarune", "undertale"], "discord": ["placequebec", "undertale"]}, "path": {"179-258": [[796, 187], [798, 187], [798, 186], [798, 185], [799, 185], [799, 184], [800, 184], [800, 183], [801, 183], [801, 182], [801, 181], [802, 181], [802, 180], [803, 180], [803, 179], [803, 178], [803, 177], [802, 177], [802, 176], [801, 176], [801, 175], [800, 175], [800, 174], [799, 174], [770, 174], [769, 174], [769, 175], [769, 176], [770, 176], [771, 176], [773, 176], [775, 176], [776, 176], [776, 177], [777, 177], [778, 177], [778, 178], [778, 179], [778, 180], [778, 181], [778, 182], [779, 182], [779, 183], [778, 183], [778, 184], [777, 184], [777, 185], [778, 186], [779, 187], [780, 187], [781, 187], [782, 187], [784, 187], [785, 187], [785, 186], [785, 185], [786, 185], [787, 185], [788, 185], [789, 185], [790, 185], [791, 185], [792, 185], [792, 184], [793, 184], [794, 184], [796, 184], [797, 184], [798, 184], [799, 184], [800, 183], [798, 184], [797, 184], [798, 184], [796, 185], [797, 184], [796, 184], [795, 184], [798, 183], [799, 183], [799, 182], [800, 183]]}, "center": {"179-258": [788, 179]}}, -{"id": 2225, "name": "Croatian memorabilia", "description": "Small art of important croatian memorabilia consisting of iconic red and white checkboard pattern, Amphitheatre in Pula, Ban Josip Jelačić, Water tower in Vukovar and character from a kids TV show Little Flying Bears.", "links": {"subreddit": ["croatia"]}, "path": {"159-258": [[-131, 524], [-99, 524], [-99, 585], [-113, 585], [-113, 593], [-117, 593], [-117, 592], [-120, 592], [-120, 591], [-123, 591], [-123, 590], [-131, 590], [-131, 542], [-132, 542]]}, "center": {"159-258": [-115, 540]}}, -{"id": 2226, "name": "Canadian Goose", "description": "A canadian goose constructed by r/placecanada with mountains and the skyline of the city of Toronto in the background. Geese have had a perfect attendence in r/place canvases with previous iterations named \"Mr. Goose\" being built by the University of Waterloo.", "links": {"subreddit": ["placecanada", "uwaterloo"], "discord": ["placecanada"]}, "path": {"214-258": [[1439, 332], [1484, 332], [1484, 379], [1439, 379]]}, "center": {"214-258": [1462, 356]}}, -{"id": 2227, "name": "EBLⱯN and CR1NGE SQUAD", "description": "An art created by Russian Twitch community \"EBLⱯN\". Some of the core members are drakeoffc, Stintik, JesusAVGN, dkincc.", "links": {"website": ["https://www.twitch.tv/team/cr1nge", "https://www.twitch.tv/team/apox", "https://twitch.tv/Stintik", "https://twitch.tv/JesusAVGN", "https://www.twitch.tv/drakeoffc", "https://www.twitch.tv/dkincc"]}, "path": {"214-258": [[430, -46], [499, -46], [499, 31], [431, 31]]}, "center": {"214-258": [465, -8]}}, -{"id": 2228, "name": "Eekum Bokum (Inugami Korone)", "description": "Eekum Bokum is a meme showing Inugami Korone (left) responding cutely to the \"Eekum bokum\" phrase spoken by the skull (right). \"Eekum Bokum\" is stated when a character picks up a Mumbo token (skull) in the 1998 video game Banjo-Kazooie. \n\nOn August 25th, 2020, Hololive Vtuber Inugame Korone played the game during a live stream and was amused by the sound clip, repeating it whenever it played during the game. Three days later, an animator, \"2ManySnacks\", posted a three-second video of Korone and the mumbo coin repeating the \"Eekum bokum\" phrase to YouTube. The video quickly became viral, garnering over 3 million views in about 3 weeks, which spawned multiple memes and edits.", "links": {"website": ["https://knowyourmeme.com/memes/eekum-bokum", "https://www.youtube.com/watch?v=P5MpLQ8TQcQ"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"213-258": [[-262, -823], [-191, -823], [-190, -775], [-262, -775]]}, "center": {"213-258": [-226, -799]}}, +{"id": 2218, "name": "ttv/dkincc & ttv/drakeoffc", "description": "An art created by two Russian streamers, dkincc and drakeoffc. The top of the art features a meme with dkincc's face, and the bottom part features Om Nom from the mobile game \"Cut the Rope\".", "links": {"website": ["https://twitch.tv/dkincc", "https://twitch.tv/drakeoffc"]}, "path": {"214-258, T": [[-838, -5], [-838, 21], [-811, 22], [-810, 57], [-810, 97], [-795, 97], [-794, 160], [-775, 161], [-775, 177], [-750, 177], [-734, 161], [-731, 161], [-728, 133], [-696, 132], [-695, 23], [-759, 22], [-760, -6]]}, "center": {"214-258, T": [-748, 74]}}, +{"id": 2219, "name": "November 2015 Paris attacks", "description": "This is a tribute to the series of coordinated terrorist attacks (6 in total) by Islamic extremists took place on Friday, 13 November 2015 in Paris, France, and the city's northern suburb, Saint-Denis.\n\nOne of the group carried out a mass shooting and took hostages at an Eagles of Death Metal concert attended by 1,500 people in the Bataclan theater (the specific one shown on the canvas).\nIn total (counting all the attacks that happened on that day), there were 130 people dead, including 90 at the Bataclan theater. Another 416 people were injured with almost 100 critically.", "links": {"website": ["https://en.wikipedia.org/wiki/November_2015_Paris_attacks"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"192-258, T": [[795, -793], [796, -738], [769, -737], [769, -731], [777, -730], [778, -720], [765, -719], [765, -710], [799, -710], [799, -703], [780, -702], [781, -691], [838, -691], [837, -702], [811, -703], [810, -744], [808, -747], [808, -749], [810, -750], [810, -757], [815, -759], [813, -791], [805, -793]]}, "center": {"192-258, T": [792, -724]}}, +{"id": 2220, "name": "Noble Prize", "description": "The Nobel Prize is a prestigious international award given annually in several categories, including Physics, Chemistry, Medicine, Literature, Peace, and Economic Sciences. It was established by the will of Alfred Nobel, a Swedish inventor, engineer, and industrialist, in 1895. The prize recognizes outstanding contributions and achievements that have had a significant and positive impact on humanity. Recipients are awarded a medal, diploma, and a monetary prize.", "links": {"website": ["https://en.wikipedia.org/wiki/Nobel_Prize", "https://www.nobelprize.org/"]}, "path": {"214-258, T": [[89, -249], [96, -249], [103, -242], [103, -235], [96, -228], [89, -228], [82, -235], [82, -242]]}, "center": {"214-258, T": [93, -238]}}, +{"id": 2221, "name": "Kessoku Band x Romania", "description": "Ryo, Nijika and Kita, being the bassist, drummer and rythm guitar (and singer) respectively of Bocchi The Rock's fictional band \"kessoku band\" and here they are drawn with their hair representing each color of the Romanian flag.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"213-258, T": [[-1500, 480], [-1483, 478], [-1474, 474], [-1471, 478], [-1449, 477], [-1442, 483], [-1442, 491], [-1461, 491], [-1481, 491], [-1499, 492]]}, "center": {"213-258, T": [-1477, 483]}}, +{"id": 2222, "name": "Shigure Ui (Vtuber and Illustrator)", "description": "Shigure Ui (しぐれうい) is a female Japanese Virtual YouTuber and illustrator. She is a character designer for Oozora Subaru, a talent from Hololive Japan, the light novel OsaMake, and the anime series WIXOSS DIVA(A)LIVE. Shigure Ui is also known as Ui-mama, a title given by the Hololive community for being a character designer of their favourite vtuber. Given her close relationship and many collaborations with Hololive talents, Ui-mama is often associated with the agency despite not being officially part of Hololive.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Shigure_Ui"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"214-258, T": [[-191, -823], [-190, -775], [-184, -775], [-184, -779], [-172, -779], [-172, -785], [-159, -785], [-159, -812], [-159, -813], [-175, -813], [-175, -823], [-183, -823], [-191, -823], [-191, -775], [-184, -776], [-160, -777], [-160, -823], [-178, -823]]}, "center": {"214-258, T": [-167, -818]}}, +{"id": 2223, "name": "Free Palestine", "description": "You can read it's self explanatory", "links": {"subreddit": ["palestine", "BDS"], "discord": ["gZHbSvXE"]}, "path": {"213-258, T": [[2, -807], [68, -807], [69, -826], [2, -826]]}, "center": {"213-258, T": [36, -816]}}, +{"id": 2224, "name": "Annoying Dog dressed with the Bonhomme Carnaval's clothes.", "description": "The character representing indie developer of Deltarune and Undertale ''Toby Fox'' dressed with the arrowed sash and the toque of the character representing the Quebec Winter Carnaval : The Bonhomme Carnaval", "links": {"subreddit": ["quebec", "deltarune", "undertale"], "discord": ["placequebec", "undertale"]}, "path": {"179-258, T": [[796, 187], [798, 187], [798, 186], [798, 185], [799, 185], [799, 184], [800, 184], [800, 183], [801, 183], [801, 182], [801, 181], [802, 181], [802, 180], [803, 180], [803, 179], [803, 178], [803, 177], [802, 177], [802, 176], [801, 176], [801, 175], [800, 175], [800, 174], [799, 174], [770, 174], [769, 174], [769, 175], [769, 176], [770, 176], [771, 176], [773, 176], [775, 176], [776, 176], [776, 177], [777, 177], [778, 177], [778, 178], [778, 179], [778, 180], [778, 181], [778, 182], [779, 182], [779, 183], [778, 183], [778, 184], [777, 184], [777, 185], [778, 186], [779, 187], [780, 187], [781, 187], [782, 187], [784, 187], [785, 187], [785, 186], [785, 185], [786, 185], [787, 185], [788, 185], [789, 185], [790, 185], [791, 185], [792, 185], [792, 184], [793, 184], [794, 184], [796, 184], [797, 184], [798, 184], [799, 184], [800, 183], [798, 184], [797, 184], [798, 184], [796, 185], [797, 184], [796, 184], [795, 184], [798, 183], [799, 183], [799, 182], [800, 183]]}, "center": {"179-258, T": [788, 179]}}, +{"id": 2225, "name": "Croatian memorabilia", "description": "Small art of important croatian memorabilia consisting of iconic red and white checkboard pattern, Amphitheatre in Pula, Ban Josip Jelačić, Water tower in Vukovar and character from a kids TV show Little Flying Bears.", "links": {"subreddit": ["croatia"]}, "path": {"159-258, T": [[-131, 524], [-99, 524], [-99, 585], [-113, 585], [-113, 593], [-117, 593], [-117, 592], [-120, 592], [-120, 591], [-123, 591], [-123, 590], [-131, 590], [-131, 542], [-132, 542]]}, "center": {"159-258, T": [-115, 540]}}, +{"id": 2226, "name": "Canadian Goose", "description": "A canadian goose constructed by r/placecanada with mountains and the skyline of the city of Toronto in the background. Geese have had a perfect attendence in r/place canvases with previous iterations named \"Mr. Goose\" being built by the University of Waterloo.", "links": {"subreddit": ["placecanada", "uwaterloo"], "discord": ["placecanada"]}, "path": {"214-258, T": [[1439, 332], [1484, 332], [1484, 379], [1439, 379]]}, "center": {"214-258, T": [1462, 356]}}, +{"id": 2227, "name": "EBLⱯN and CR1NGE SQUAD", "description": "An art created by Russian Twitch community \"EBLⱯN\". Some of the core members are drakeoffc, Stintik, JesusAVGN, dkincc.", "links": {"website": ["https://www.twitch.tv/team/cr1nge", "https://www.twitch.tv/team/apox", "https://twitch.tv/Stintik", "https://twitch.tv/JesusAVGN", "https://www.twitch.tv/drakeoffc", "https://www.twitch.tv/dkincc"]}, "path": {"214-258, T": [[430, -46], [499, -46], [499, 31], [431, 31]]}, "center": {"214-258, T": [465, -8]}}, +{"id": 2228, "name": "Eekum Bokum (Inugami Korone)", "description": "Eekum Bokum is a meme showing Inugami Korone (left) responding cutely to the \"Eekum bokum\" phrase spoken by the skull (right). \"Eekum Bokum\" is stated when a character picks up a Mumbo token (skull) in the 1998 video game Banjo-Kazooie. \n\nOn August 25th, 2020, Hololive Vtuber Inugame Korone played the game during a live stream and was amused by the sound clip, repeating it whenever it played during the game. Three days later, an animator, \"2ManySnacks\", posted a three-second video of Korone and the mumbo coin repeating the \"Eekum bokum\" phrase to YouTube. The video quickly became viral, garnering over 3 million views in about 3 weeks, which spawned multiple memes and edits.", "links": {"website": ["https://knowyourmeme.com/memes/eekum-bokum", "https://www.youtube.com/watch?v=P5MpLQ8TQcQ"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"213-258, T": [[-262, -823], [-191, -823], [-190, -775], [-262, -775]]}, "center": {"213-258, T": [-226, -799]}}, {"id": 2229, "name": "Pink Floyd - The Dark Side Of The Moon", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Pink_Floyd"]}, "path": {"177-234": [[-643, 831], [-643, 812], [-660, 812], [-660, 814], [-661, 814], [-661, 815], [-663, 815], [-663, 831], [-653, 831]]}, "center": {"177-234": [-653, 822]}}, -{"id": 2231, "name": "Red (TV)", "description": "Red (Taylor's Version) is the second re-recorded album by American singer-songwriter Taylor Swift, released on November 12th, 2021.", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"212-258": [[1283, -622], [1283, -610], [1301, -610], [1301, -622]]}, "center": {"212-258": [1292, -616]}}, -{"id": 2232, "name": "Oh Khaled", "description": "Oh Khaled is a french guy, pretty handsome wich have a mystical tree rizz. He was told to be the legendary \"aigri man\".", "links": {"website": ["https://www.urbandictionary.com/define.php?term=Kogetta"]}, "path": {"214-258": [[867, -547], [866, -548], [865, -548], [864, -547], [864, -545], [865, -544], [866, -543], [867, -542], [868, -543], [869, -544], [870, -545], [870, -547], [869, -548]]}, "center": {"214-258": [867, -545]}}, -{"id": 2233, "name": "Akira Complex", "description": "Akira Complex was an American rhythm game composer. Their works were featured in multiple games, including beatmania IIDX, Dance Dance Revolution, Arcaea, and Cytus II.\n\nThey tragically passed away in June 2023, with their label Attack The Music announcing the news on June 26.\n\nThe phrase near the bottom, \"my guiding star\", is a reference to one of their songs, Ether Strike, which is featured in Arcaea.", "links": {"website": ["https://remywiki.com/Akira_Complex#:~:text=Akira%20Complex%20was%20signed%20to,passed%20away%20in%20June%202023."]}, "path": {"208-258": [[1394, 190], [1394, 223], [1460, 224], [1458, 191], [1456, 191]]}, "center": {"208-258": [1427, 207]}}, +{"id": 2231, "name": "Red (TV)", "description": "Red (Taylor's Version) is the second re-recorded album by American singer-songwriter Taylor Swift, released on November 12th, 2021.", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"212-258, T": [[1283, -622], [1283, -610], [1301, -610], [1301, -622]]}, "center": {"212-258, T": [1292, -616]}}, +{"id": 2232, "name": "Oh Khaled", "description": "Oh Khaled is a french guy, pretty handsome wich have a mystical tree rizz. He was told to be the legendary \"aigri man\".", "links": {"website": ["https://www.urbandictionary.com/define.php?term=Kogetta"]}, "path": {"214-258, T": [[867, -547], [866, -548], [865, -548], [864, -547], [864, -545], [865, -544], [866, -543], [867, -542], [868, -543], [869, -544], [870, -545], [870, -547], [869, -548]]}, "center": {"214-258, T": [867, -545]}}, +{"id": 2233, "name": "Akira Complex", "description": "Akira Complex was an American rhythm game composer. Their works were featured in multiple games, including beatmania IIDX, Dance Dance Revolution, Arcaea, and Cytus II.\n\nThey tragically passed away in June 2023, with their label Attack The Music announcing the news on June 26.\n\nThe phrase near the bottom, \"my guiding star\", is a reference to one of their songs, Ether Strike, which is featured in Arcaea.", "links": {"website": ["https://remywiki.com/Akira_Complex#:~:text=Akira%20Complex%20was%20signed%20to,passed%20away%20in%20June%202023."]}, "path": {"208-258, T": [[1394, 190], [1394, 223], [1460, 224], [1458, 191], [1456, 191]]}, "center": {"208-258, T": [1427, 207]}}, {"id": 2234, "name": "Hello Kitty", "description": "Hello Kitty", "links": {}, "path": {"247": [[-661, 835], [-675, 835], [-675, 844], [-661, 844]]}, "center": {"247": [-668, 840]}}, -{"id": 2235, "name": "Rusty Lake Boatman", "description": "The boatman from the surrealist Escape The Room game series \"Rusty Lake.\"", "links": {"website": ["https://www.rustylake.com/"], "subreddit": ["rustylake"], "discord": ["rustylake"]}, "path": {"214-258": [[-929, 568], [-922, 568], [-917, 566], [-913, 557], [-906, 557], [-902, 565], [-896, 571], [-899, 577], [-924, 577]]}, "center": {"214-258": [-909, 569]}}, +{"id": 2235, "name": "Rusty Lake Boatman", "description": "The boatman from the surrealist Escape The Room game series \"Rusty Lake.\"", "links": {"website": ["https://www.rustylake.com/"], "subreddit": ["rustylake"], "discord": ["rustylake"]}, "path": {"214-258, T": [[-929, 568], [-922, 568], [-917, 566], [-913, 557], [-906, 557], [-902, 565], [-896, 571], [-899, 577], [-924, 577]]}, "center": {"214-258, T": [-909, 569]}}, {"id": 2236, "name": "\"no it's becky\"", "description": "A joke within the swiftie community.\nIn 2014, someone posted a picture of their alleged friend on tumblr and captioned it 'this is my late friend becky. she died of doing crack at a party. don't do crack.' but the person in the picture was actually Taylor Swift. A fan replied stating they're 'pretty sure that's Taylor swift' but the OP replied back with 'no it's becky.' \nA few days later, Taylor Swift was spotted wearing a t-shirt with the phrase 'no its becky' on it, making it a joke amongst her fanbase", "links": {"subreddit": ["taylorswift"]}, "path": {"212": [[-1421, 704], [-1421, 718], [-1445, 719], [-1445, 704]]}, "center": {"212": [-1433, 711]}}, -{"id": 2237, "name": "VC3 - Forever", "description": "VC3 is a community-driven platform passionately owned and managed by a group of users who hold diverse perspectives on r/placeDE's moderation team. The revolution is considered a ban-worthy topic in r/placede's server due to its controversial nature. Embracing a spirit of independence and a desire for constructive dialogue, this community welcomes users who have experienced difficulties in r/placeDE's discord server or VC3, fostering an inclusive environment for open discussions.\nWe also have an alliance with the German south flag.", "links": {"website": ["https://de.wikipedia.org/wiki/Deutsche_Revolution_1848/1849"], "subreddit": ["sprachkanal3"], "discord": ["RRXccGRncM"]}, "path": {"211-258": [[1493, -317], [1487, -317], [1487, -295], [1493, -295]]}, "center": {"211-258": [1490, -306]}}, -{"id": 2238, "name": "Ryo Yamada", "description": "Ryo Yamada is the bassist of Kessoku Band, the main band of the manga and anime Bocchi the Rock!. She is an instrument lover and an enthusiastic musician, but also a bad spender. She is always in debt because she also likes to borrow money. As a result, she is always on her weed diet (as of the grassweed).\n\nThis art feature Ryo Yamada in the style of a Touhou character. On the bottom right you can see a rock being Bocchified. Truly Bocchi the Rock.", "links": {"website": ["https://bocchi-the-rock.fandom.com/wiki/Ryo_Yamada"], "subreddit": ["BocchiTheRock", "KessokuBand", "touhou"], "discord": ["bocchi", "kessokuband", "apl"]}, "path": {"203-258": [[1353, 332], [1353, 334], [1350, 337], [1348, 337], [1348, 360], [1350, 360], [1353, 363], [1353, 365], [1379, 365], [1379, 332]]}, "center": {"203-258": [1364, 349]}}, -{"id": 2239, "name": "Josip Jelačić", "description": "Josip Jelačić was the Ban of Croatia between 23 March 1848 and 19 April 1859. He was a member of the House of Jelačić and a noted army general, remembered for his military campaigns during the Revolutions of 1848 and for his abolition of serfdom in Croatia.", "links": {"website": ["https://en.wikipedia.org/wiki/Josip_Jela%C4%8Di%C4%87"], "discord": ["pWUQwMhN"]}, "path": {"214-258": [[-108, 563], [-100, 563], [-99, 564], [-98, 565], [-98, 586], [-108, 586], [-109, 585], [-110, 584], [-110, 583], [-111, 582], [-112, 581], [-112, 578], [-113, 577], [-113, 575], [-112, 574], [-113, 573], [-113, 566], [-112, 566], [-111, 565], [-110, 564], [-109, 564]]}, "center": {"214-258": [-105, 571]}}, -{"id": 2240, "name": "Bingoculolandia", "description": "ES:\n\nUn servidor hispano de Discord liderado por un vtuber pendejo y con un sentido del humor curseado.\nLos astros se alinearon de nuevo y al igual que el año pasado, dejaron de ser huevones por 3 días seguidos. Días que usaron para hacer a la cosa morada llamada Shrekspeare, también conocida como renacuajo por algunos miembros. Este año fue hecha en colaboración con Esqueletito Crew quienes nos apoyaron para hacer crecer a Shrekspeare incluso más de lo que se pensaba inicialmente.\n\nEN:\n\nA spanish Discord server led by a stupid vtuber with a cursed sense of humor.\nThe stars aligned again this year and like last year, they stopped being fucking lazy retarded for three consecutive days, days that were use to make the purple thing called Shrekspeare, also known as renacuajo by some members.\nThis year we made Shrekspeare in collaboration with Esqueletito Crew, who greatly helped us to make Shrekspeare even bigger than we initially thought.\nComparación del año pasado con este año en el Atlas", "links": {"website": ["https://www.youtube.com/@Bingobosal/"], "subreddit": ["Bingoculolandia"], "discord": ["HCQDFUYXvY"]}, "path": {"214-258": [[-916, -212], [-916, -200], [-919, -198], [-919, -192], [-948, -192], [-948, -198], [-952, -201], [-947, -202], [-947, -205], [-936, -212], [-918, -214], [-916, -211]]}, "center": {"214-258": [-928, -203]}}, -{"id": 2241, "name": "ttv/JesusAVGN", "description": "An art created by a Russian streamer JesusAVGN and his girlfriend Alinaavii, featuring his cat, Booba (Буба). Has been supporting Ukraine since the start of the war and lives in the U.S.", "links": {"website": ["https://twitch.tv/JesusAVGN", "https://twitch.tv/Alinaavii"]}, "path": {"161-210": [[147, 789], [147, 885], [299, 886], [299, 788]], "211-258": [[147, 789], [298, 789], [299, 900], [146, 899]]}, "center": {"161-210": [223, 837], "211-258": [223, 844]}}, -{"id": 2242, "name": "Bocchi (lonely in the small spot)", "description": "This is Bocchi/Hitori Gotoh being really lonely. Somebody keep her company please.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"213-258": [[-78, 855], [-62, 855], [-61, 867], [-78, 867]]}, "center": {"213-258": [-69, 861]}}, -{"id": 2243, "name": "WESTCOL", "description": "Colombian streamer, currently number 1 in the country. He was the one who released platforms like Twitch, Kick in Colombia. With a great community.", "links": {"website": ["https://kick.com/westcol"]}, "path": {"213-258": [[-1000, 648], [-883, 648], [-882, 757], [-1000, 756], [-1001, 657], [-1001, 639], [-883, 639], [-883, 648], [-882, 767], [-1000, 766], [-1000, 760], [-984, 743], [-1000, 761], [-1000, 744]]}, "center": {"213-258": [-993, 761]}}, +{"id": 2237, "name": "VC3 - Forever", "description": "VC3 is a community-driven platform passionately owned and managed by a group of users who hold diverse perspectives on r/placeDE's moderation team. The revolution is considered a ban-worthy topic in r/placede's server due to its controversial nature. Embracing a spirit of independence and a desire for constructive dialogue, this community welcomes users who have experienced difficulties in r/placeDE's discord server or VC3, fostering an inclusive environment for open discussions.\nWe also have an alliance with the German south flag.", "links": {"website": ["https://de.wikipedia.org/wiki/Deutsche_Revolution_1848/1849"], "subreddit": ["sprachkanal3"], "discord": ["RRXccGRncM"]}, "path": {"211-258, T": [[1493, -317], [1487, -317], [1487, -295], [1493, -295]]}, "center": {"211-258, T": [1490, -306]}}, +{"id": 2238, "name": "Ryo Yamada", "description": "Ryo Yamada is the bassist of Kessoku Band, the main band of the manga and anime Bocchi the Rock!. She is an instrument lover and an enthusiastic musician, but also a bad spender. She is always in debt because she also likes to borrow money. As a result, she is always on her weed diet (as of the grassweed).\n\nThis art feature Ryo Yamada in the style of a Touhou character. On the bottom right you can see a rock being Bocchified. Truly Bocchi the Rock.", "links": {"website": ["https://bocchi-the-rock.fandom.com/wiki/Ryo_Yamada"], "subreddit": ["BocchiTheRock", "KessokuBand", "touhou"], "discord": ["bocchi", "kessokuband", "apl"]}, "path": {"203-258, T": [[1353, 332], [1353, 334], [1350, 337], [1348, 337], [1348, 360], [1350, 360], [1353, 363], [1353, 365], [1379, 365], [1379, 332]]}, "center": {"203-258, T": [1364, 349]}}, +{"id": 2239, "name": "Josip Jelačić", "description": "Josip Jelačić was the Ban of Croatia between 23 March 1848 and 19 April 1859. He was a member of the House of Jelačić and a noted army general, remembered for his military campaigns during the Revolutions of 1848 and for his abolition of serfdom in Croatia.", "links": {"website": ["https://en.wikipedia.org/wiki/Josip_Jela%C4%8Di%C4%87"], "discord": ["pWUQwMhN"]}, "path": {"214-258, T": [[-108, 563], [-100, 563], [-99, 564], [-98, 565], [-98, 586], [-108, 586], [-109, 585], [-110, 584], [-110, 583], [-111, 582], [-112, 581], [-112, 578], [-113, 577], [-113, 575], [-112, 574], [-113, 573], [-113, 566], [-112, 566], [-111, 565], [-110, 564], [-109, 564]]}, "center": {"214-258, T": [-105, 571]}}, +{"id": 2240, "name": "Bingoculolandia", "description": "ES:\n\nUn servidor hispano de Discord liderado por un vtuber pendejo y con un sentido del humor curseado.\nLos astros se alinearon de nuevo y al igual que el año pasado, dejaron de ser huevones por 3 días seguidos. Días que usaron para hacer a la cosa morada llamada Shrekspeare, también conocida como renacuajo por algunos miembros. Este año fue hecha en colaboración con Esqueletito Crew quienes nos apoyaron para hacer crecer a Shrekspeare incluso más de lo que se pensaba inicialmente.\n\nEN:\n\nA spanish Discord server led by a stupid vtuber with a cursed sense of humor.\nThe stars aligned again this year and like last year, they stopped being fucking lazy retarded for three consecutive days, days that were use to make the purple thing called Shrekspeare, also known as renacuajo by some members.\nThis year we made Shrekspeare in collaboration with Esqueletito Crew, who greatly helped us to make Shrekspeare even bigger than we initially thought.\nComparación del año pasado con este año en el Atlas", "links": {"website": ["https://www.youtube.com/@Bingobosal/"], "subreddit": ["Bingoculolandia"], "discord": ["HCQDFUYXvY"]}, "path": {"214-258, T": [[-916, -212], [-916, -200], [-919, -198], [-919, -192], [-948, -192], [-948, -198], [-952, -201], [-947, -202], [-947, -205], [-936, -212], [-918, -214], [-916, -211]]}, "center": {"214-258, T": [-928, -203]}}, +{"id": 2241, "name": "ttv/JesusAVGN", "description": "An art created by a Russian streamer JesusAVGN and his girlfriend Alinaavii, featuring his cat, Booba (Буба). Has been supporting Ukraine since the start of the war and lives in the U.S.", "links": {"website": ["https://twitch.tv/JesusAVGN", "https://twitch.tv/Alinaavii"]}, "path": {"161-210": [[147, 789], [147, 885], [299, 886], [299, 788]], "211-258, T": [[147, 789], [298, 789], [299, 900], [146, 899]]}, "center": {"161-210": [223, 837], "211-258, T": [223, 844]}}, +{"id": 2242, "name": "Bocchi (lonely in the small spot)", "description": "This is Bocchi/Hitori Gotoh being really lonely. Somebody keep her company please.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"213-258, T": [[-78, 855], [-62, 855], [-61, 867], [-78, 867]]}, "center": {"213-258, T": [-69, 861]}}, +{"id": 2243, "name": "WESTCOL", "description": "Colombian streamer, currently number 1 in the country. He was the one who released platforms like Twitch, Kick in Colombia. With a great community.", "links": {"website": ["https://kick.com/westcol"]}, "path": {"213-258, T": [[-1000, 648], [-883, 648], [-882, 757], [-1000, 756], [-1001, 657], [-1001, 639], [-883, 639], [-883, 648], [-882, 767], [-1000, 766], [-1000, 760], [-984, 743], [-1000, 761], [-1000, 744]]}, "center": {"213-258, T": [-993, 761]}}, {"id": 2244, "name": "Eekum Bokum", "description": "Eekum Bokum was a meme that was popularized in 2020 during Inugami Korone's playthrough of Banjo-Kazooie. The art is from an animated video made by the animator 2ManySnacks", "links": {}, "path": {"161-242": [[-262, -822], [-263, -779], [-193, -777], [-192, -822]]}, "center": {"161-242": [-217, -800]}}, -{"id": 2245, "name": "EBLⱯN", "description": "An art created by Russian Twitch community \"EBLⱯN\". Some of the core members are drakeoffc, Stintik, JesusAVGN, dkincc, mazellovvv, T2X2.", "links": {"website": ["https://twitch.tv/team/apox", "https://twitch.tv/drakeoffc", "https://twitch.tv/Stintik", "https://twitch.tv/JesusAVGN", "https://twitch.tv/dkincc", "https://twitch.tv/mazellovvv", "https://twitch.tv/t2x2"]}, "path": {"214-258": [[56, 886], [145, 886], [145, 970], [56, 970]]}, "center": {"214-258": [101, 928]}}, -{"id": 2246, "name": "Kikaninchen", "description": "\"Kikaninchen\" is a popular German children's TV show created by KiKa, airing since 2009. It features a curious blue rabbit named Kikaninchen and its friends going on imaginative adventures in a fantasy world. The show promotes interactive learning, creativity, and important values for children aged 3 to 5. (created by r/placede)", "links": {"subreddit": ["placede"]}, "path": {"214-258": [[1285, -913], [1285, -916], [1286, -916], [1286, -917], [1287, -917], [1287, -919], [1289, -919], [1288, -927], [1289, -927], [1289, -930], [1290, -930], [1290, -931], [1290, -932], [1289, -932], [1289, -935], [1290, -935], [1290, -939], [1291, -939], [1291, -940], [1292, -940], [1292, -942], [1292, -943], [1285, -943], [1285, -942], [1284, -942], [1284, -941], [1281, -941], [1281, -942], [1280, -942], [1279, -942], [1279, -943], [1279, -945], [1280, -945], [1280, -946], [1284, -946], [1283, -947], [1283, -949], [1284, -949], [1285, -948], [1286, -947], [1287, -946], [1288, -946], [1288, -945], [1291, -945], [1293, -945], [1292, -948], [1291, -948], [1290, -948], [1289, -948], [1289, -949], [1288, -949], [1288, -950], [1286, -950], [1286, -951], [1285, -951], [1285, -952], [1284, -952], [1284, -953], [1283, -953], [1283, -954], [1283, -955], [1282, -955], [1282, -962], [1283, -962], [1283, -964], [1284, -964], [1284, -966], [1285, -966], [1285, -969], [1286, -969], [1286, -970], [1285, -970], [1285, -971], [1284, -971], [1284, -972], [1283, -972], [1283, -973], [1282, -973], [1281, -973], [1281, -974], [1280, -974], [1279, -974], [1279, -975], [1278, -975], [1278, -976], [1277, -976], [1277, -977], [1276, -977], [1276, -982], [1277, -982], [1277, -984], [1281, -984], [1281, -983], [1284, -983], [1283, -982], [1284, -981], [1285, -981], [1285, -980], [1285, -978], [1286, -978], [1286, -976], [1287, -976], [1287, -974], [1288, -974], [1288, -972], [1289, -971], [1290, -971], [1291, -971], [1292, -971], [1292, -973], [1292, -975], [1292, -978], [1291, -978], [1291, -982], [1290, -982], [1290, -985], [1291, -985], [1291, -986], [1292, -986], [1292, -987], [1295, -987], [1295, -986], [1296, -986], [1296, -985], [1297, -985], [1297, -979], [1296, -978], [1296, -972], [1297, -972], [1298, -971], [1299, -970], [1300, -969], [1301, -968], [1302, -967], [1303, -966], [1304, -963], [1304, -962], [1305, -962], [1305, -956], [1304, -955], [1304, -954], [1304, -953], [1303, -953], [1302, -952], [1301, -951], [1300, -950], [1299, -949], [1298, -949], [1299, -947], [1300, -946], [1302, -947], [1303, -948], [1304, -949], [1305, -950], [1306, -951], [1307, -952], [1307, -953], [1307, -954], [1308, -955], [1309, -954], [1309, -953], [1312, -953], [1312, -952], [1313, -951], [1313, -950], [1312, -949], [1311, -948], [1307, -948], [1306, -947], [1305, -947], [1305, -946], [1304, -946], [1303, -945], [1302, -944], [1301, -944], [1301, -942], [1302, -941], [1302, -940], [1303, -939], [1303, -935], [1304, -934], [1304, -926], [1303, -926], [1303, -923], [1302, -923], [1302, -919], [1303, -919], [1304, -917], [1305, -918], [1306, -917], [1307, -917], [1307, -913], [1303, -913], [1303, -914], [1301, -914], [1301, -915], [1300, -915], [1300, -916], [1299, -916], [1299, -917], [1299, -918], [1298, -918], [1298, -919], [1297, -919], [1297, -921], [1298, -922], [1298, -925], [1297, -926], [1297, -927], [1295, -927], [1295, -925], [1294, -924], [1294, -922], [1293, -922], [1293, -916], [1292, -916], [1292, -913]]}, "center": {"214-258": [1294, -960]}}, -{"id": 2247, "name": "Otome games Shiraishi", "description": "Created by the members of r/otomegames, Shiraishi is a character from the visual novel CollarxMalice, who became the subreddit's most popular character in the 2022 favorite character tournament.", "links": {"subreddit": ["otomegames"], "discord": ["M4bxjA2f"]}, "path": {"216-258": [[-1469, -349], [-1470, -328], [-1440, -328], [-1440, -350]]}, "center": {"216-258": [-1455, -339]}}, -{"id": 2248, "name": "Volt", "description": "Volt Europa (frequently abbreviated as Volt) is a pro-European and European federalist political party (often self-referring as a \"movement\"), which is organized as a pan-European umbrella for subsidiary parties of the same name and branding in all EU member states and several non-EU states (such as the UK, Switzerland, and Ukraine).", "links": {"website": ["https://en.wikipedia.org/wiki/Volt_Europa", "https://www.volteuropa.org/"]}, "path": {"214-258": [[-193, 631], [-154, 631], [-154, 647], [-193, 647]]}, "center": {"214-258": [-173, 639]}}, +{"id": 2245, "name": "EBLⱯN", "description": "An art created by Russian Twitch community \"EBLⱯN\". Some of the core members are drakeoffc, Stintik, JesusAVGN, dkincc, mazellovvv, T2X2.", "links": {"website": ["https://twitch.tv/team/apox", "https://twitch.tv/drakeoffc", "https://twitch.tv/Stintik", "https://twitch.tv/JesusAVGN", "https://twitch.tv/dkincc", "https://twitch.tv/mazellovvv", "https://twitch.tv/t2x2"]}, "path": {"214-258, T": [[56, 886], [145, 886], [145, 970], [56, 970]]}, "center": {"214-258, T": [101, 928]}}, +{"id": 2246, "name": "Kikaninchen", "description": "\"Kikaninchen\" is a popular German children's TV show created by KiKa, airing since 2009. It features a curious blue rabbit named Kikaninchen and its friends going on imaginative adventures in a fantasy world. The show promotes interactive learning, creativity, and important values for children aged 3 to 5. (created by r/placede)", "links": {"subreddit": ["placede"]}, "path": {"214-258, T": [[1285, -913], [1285, -916], [1286, -916], [1286, -917], [1287, -917], [1287, -919], [1289, -919], [1288, -927], [1289, -927], [1289, -930], [1290, -930], [1290, -931], [1290, -932], [1289, -932], [1289, -935], [1290, -935], [1290, -939], [1291, -939], [1291, -940], [1292, -940], [1292, -942], [1292, -943], [1285, -943], [1285, -942], [1284, -942], [1284, -941], [1281, -941], [1281, -942], [1280, -942], [1279, -942], [1279, -943], [1279, -945], [1280, -945], [1280, -946], [1284, -946], [1283, -947], [1283, -949], [1284, -949], [1285, -948], [1286, -947], [1287, -946], [1288, -946], [1288, -945], [1291, -945], [1293, -945], [1292, -948], [1291, -948], [1290, -948], [1289, -948], [1289, -949], [1288, -949], [1288, -950], [1286, -950], [1286, -951], [1285, -951], [1285, -952], [1284, -952], [1284, -953], [1283, -953], [1283, -954], [1283, -955], [1282, -955], [1282, -962], [1283, -962], [1283, -964], [1284, -964], [1284, -966], [1285, -966], [1285, -969], [1286, -969], [1286, -970], [1285, -970], [1285, -971], [1284, -971], [1284, -972], [1283, -972], [1283, -973], [1282, -973], [1281, -973], [1281, -974], [1280, -974], [1279, -974], [1279, -975], [1278, -975], [1278, -976], [1277, -976], [1277, -977], [1276, -977], [1276, -982], [1277, -982], [1277, -984], [1281, -984], [1281, -983], [1284, -983], [1283, -982], [1284, -981], [1285, -981], [1285, -980], [1285, -978], [1286, -978], [1286, -976], [1287, -976], [1287, -974], [1288, -974], [1288, -972], [1289, -971], [1290, -971], [1291, -971], [1292, -971], [1292, -973], [1292, -975], [1292, -978], [1291, -978], [1291, -982], [1290, -982], [1290, -985], [1291, -985], [1291, -986], [1292, -986], [1292, -987], [1295, -987], [1295, -986], [1296, -986], [1296, -985], [1297, -985], [1297, -979], [1296, -978], [1296, -972], [1297, -972], [1298, -971], [1299, -970], [1300, -969], [1301, -968], [1302, -967], [1303, -966], [1304, -963], [1304, -962], [1305, -962], [1305, -956], [1304, -955], [1304, -954], [1304, -953], [1303, -953], [1302, -952], [1301, -951], [1300, -950], [1299, -949], [1298, -949], [1299, -947], [1300, -946], [1302, -947], [1303, -948], [1304, -949], [1305, -950], [1306, -951], [1307, -952], [1307, -953], [1307, -954], [1308, -955], [1309, -954], [1309, -953], [1312, -953], [1312, -952], [1313, -951], [1313, -950], [1312, -949], [1311, -948], [1307, -948], [1306, -947], [1305, -947], [1305, -946], [1304, -946], [1303, -945], [1302, -944], [1301, -944], [1301, -942], [1302, -941], [1302, -940], [1303, -939], [1303, -935], [1304, -934], [1304, -926], [1303, -926], [1303, -923], [1302, -923], [1302, -919], [1303, -919], [1304, -917], [1305, -918], [1306, -917], [1307, -917], [1307, -913], [1303, -913], [1303, -914], [1301, -914], [1301, -915], [1300, -915], [1300, -916], [1299, -916], [1299, -917], [1299, -918], [1298, -918], [1298, -919], [1297, -919], [1297, -921], [1298, -922], [1298, -925], [1297, -926], [1297, -927], [1295, -927], [1295, -925], [1294, -924], [1294, -922], [1293, -922], [1293, -916], [1292, -916], [1292, -913]]}, "center": {"214-258, T": [1294, -960]}}, +{"id": 2247, "name": "Otome games Shiraishi", "description": "Created by the members of r/otomegames, Shiraishi is a character from the visual novel CollarxMalice, who became the subreddit's most popular character in the 2022 favorite character tournament.", "links": {"subreddit": ["otomegames"], "discord": ["M4bxjA2f"]}, "path": {"216-258, T": [[-1469, -349], [-1470, -328], [-1440, -328], [-1440, -350]]}, "center": {"216-258, T": [-1455, -339]}}, +{"id": 2248, "name": "Volt", "description": "Volt Europa (frequently abbreviated as Volt) is a pro-European and European federalist political party (often self-referring as a \"movement\"), which is organized as a pan-European umbrella for subsidiary parties of the same name and branding in all EU member states and several non-EU states (such as the UK, Switzerland, and Ukraine).", "links": {"website": ["https://en.wikipedia.org/wiki/Volt_Europa", "https://www.volteuropa.org/"]}, "path": {"214-258, T": [[-193, 631], [-154, 631], [-154, 647], [-193, 647]]}, "center": {"214-258, T": [-173, 639]}}, {"id": 2249, "name": "r/MadeofStyrofoam (MoS)", "description": "r/MadeOfStyrofoam is a self-harm support subreddit aimed towards creating a safe place and community for those who struggle or have struggled in the past with self-injurious behavior.", "links": {"subreddit": ["MadeofStyrofoam"]}, "path": {"26-69": [[-317, -259], [-303, -259], [-303, -235], [-317, -235]]}, "center": {"26-69": [-310, -247]}}, -{"id": 2250, "name": "The Golden Path", "description": "The Golden Path is the path that will offer the player the best gameplay, story, rewards and/or secrets the game has to offer. The Golden Path usually leads to the Golden Ending in Multiple Endings games, and sometimes is the only way to get there, although this is not always the case.", "links": {"website": ["https://www.youtube.com/watch?v=j3VzaBcoDAI&t=19s"]}, "path": {"162-258": [[-501, 481], [-501, 483], [-500, 483], [-500, 484], [-496, 484], [-489, 484], [-489, 483], [-489, 478], [-480, 478], [-480, 482], [-477, 482], [-477, 424], [-477, 423], [-478, 423], [-478, 421], [-477, 421], [-477, 420], [-476, 420], [-476, 419], [-474, 419], [-474, 420], [-468, 420], [-409, 420], [-409, 418], [-411, 418], [-411, 416], [-408, 416], [-408, 415], [-407, 415], [-407, 414], [-406, 414], [-406, 413], [-405, 413], [-405, 412], [-403, 412], [-403, 413], [-402, 413], [-402, 414], [-401, 414], [-401, 420], [-395, 420], [-395, 419], [-393, 419], [-393, 420], [-392, 420], [-392, 421], [-391, 421], [-391, 423], [-392, 423], [-392, 483], [-368, 483], [-368, 616], [-368, 615], [-370, 615], [-370, 622], [-368, 622], [-368, 618], [-367, 618], [-366, 618], [-366, 617], [-365, 617], [-365, 616], [-340, 616], [-339, 617], [-339, 618], [-338, 618], [-337, 618], [-337, 614], [-366, 614], [-366, 601], [-365, 601], [-365, 599], [-364, 599], [-364, 596], [-366, 596], [-366, 588], [-307, 588], [-307, 615], [-305, 615], [-305, 614], [-298, 614], [-298, 612], [-305, 612], [-305, 587], [-305, 568], [-221, 568], [-221, 523], [-203, 523], [-203, 461], [-368, 461], [-368, 464], [-366, 463], [-307, 463], [-307, 567], [-305, 463], [-204, 463], [-205, 522], [-221, 521], [-221, 464], [-223, 464], [-223, 567], [-305, 566], [-305, 465], [-307, 465], [-307, 587], [-366, 586], [-366, 465], [-368, 465], [-368, 481], [-390, 481], [-390, 425], [-389, 425], [-389, 420], [-389, 419], [-390, 419], [-390, 418], [-391, 418], [-391, 417], [-397, 417], [-397, 418], [-399, 418], [-399, 413], [-399, 412], [-400, 412], [-400, 411], [-401, 411], [-401, 410], [-407, 410], [-407, 411], [-408, 411], [-408, 412], [-409, 412], [-409, 413], [-410, 413], [-410, 414], [-411, 414], [-412, 414], [-412, 415], [-413, 415], [-413, 418], [-472, 418], [-472, 417], [-478, 417], [-478, 418], [-479, 418], [-479, 419], [-480, 419], [-480, 425], [-479, 425], [-479, 480], [-479, 476], [-491, 476], [-491, 483], [-494, 483], [-494, 482], [-498, 482], [-498, 481]]}, "center": {"162-258": [-366, 598]}}, -{"id": 2251, "name": "Hermitcraft TCG", "description": "Hermitcraft TCG is the trading card gam made by Vintage Beef based on his fellow members of the Hermitcraft server. There is also an online community of the game", "links": {"website": ["https://hc-tcg.fly.dev/"], "discord": ["rkMbhkJg"]}, "path": {"214-258": [[593, -616], [613, -616], [612, -611], [593, -611]]}, "center": {"214-258": [603, -613]}}, -{"id": 2253, "name": "Tin Foil Chef TCG Card", "description": "TinFoilChef, also written as Tinfoil Chef or abbreviated as TFC, was a YouTuber and member of Hermitcraft, who passed away on August, 13 2022. The Hermitcraft Trading Card Game (often abbreviated as TCG) is a server-wide minigame on Hermitcraft in Season 9 created by VintageBeef. One of the cards was made of TFC as a memorial to him passing away.", "links": {"website": ["https://hermitcraft.fandom.com/wiki/TinFoilChef"], "subreddit": ["Hermitcraft"]}, "path": {"173-258": [[-1061, -541], [-1019, -541], [-1019, -499], [-1060, -499]]}, "center": {"173-258": [-1040, -520]}}, -{"id": 2254, "name": "Tribute to Rosins Restaurants", "description": "A small tribute from german streamer Rumathra and his community to german-television-cook Frank Rosin who is saving restaurant owners from bankruptcy. Funny enough, watching and reacting to Frank Rosin episodes saved Rumathra himself from bankruptcy. After multiple attempts of putting the logo on the canvas it finally worked out. While Rumathra went offline bcs he got sick, an alliance was formed with Tunesia and the pixelart was defended.\nWhile being offline, Rumathra was also mentioned in a peace treaty between xQc and Pappaplatte that was signed with \"Wieland Welte\" which led to an increased google search statistic for the streamer.", "links": {"website": ["https://www.twitch.tv/rumathra"], "discord": ["ESZwZEA"]}, "path": {"214-258": [[594, 973], [586, 976], [584, 970], [625, 970], [625, 976], [584, 976], [584, 970], [624, 971], [624, 975], [584, 974], [594, 972]]}, "center": {"214-258": [603, 975]}}, -{"id": 2255, "name": "Reimu and Miku saber-fighting at Flappy Birdland featuring Flappy and Kyubey", "description": "United as a front in the face of rampant raids from larger communities and livestream viewers, in particular XQC, r/placevietnam, r/touhou, r/hatsune, r/StarWars_Place, and r/placeCanada present this miniaturized recreation of the epic lightsaber battle between Reimu Hakurei and Hatsune Miku, with the supporting cast of Flappy Bird and Kyubey from Madoka Magica. Both heroines don the traditional Vietnam dress of áo dài, with Miku featuring an additional iconic nón lá (bamboo conic hat) and a Canadian maple leaf on Reimu's hair. This battle recreation depicts the unity between vastly different communities coming together in the face of adversity, as well as celebrating our artistic values.", "links": {"subreddit": ["placevietnam", "touhou", "hatsune", "starwars_place", "MadokaMagica"], "discord": ["placevietnam", "apl", "hatsune", "TheGalacticRepublic", "madoka"]}, "path": {"200-258": [[-1362, -701], [-1362, -660], [-1308, -660], [-1308, -662], [-1289, -662], [-1289, -701]]}, "center": {"200-258": [-1325, -680]}}, +{"id": 2250, "name": "The Golden Path", "description": "The Golden Path is the path that will offer the player the best gameplay, story, rewards and/or secrets the game has to offer. The Golden Path usually leads to the Golden Ending in Multiple Endings games, and sometimes is the only way to get there, although this is not always the case.", "links": {"website": ["https://www.youtube.com/watch?v=j3VzaBcoDAI&t=19s"]}, "path": {"162-258, T": [[-501, 481], [-501, 483], [-500, 483], [-500, 484], [-496, 484], [-489, 484], [-489, 483], [-489, 478], [-480, 478], [-480, 482], [-477, 482], [-477, 424], [-477, 423], [-478, 423], [-478, 421], [-477, 421], [-477, 420], [-476, 420], [-476, 419], [-474, 419], [-474, 420], [-468, 420], [-409, 420], [-409, 418], [-411, 418], [-411, 416], [-408, 416], [-408, 415], [-407, 415], [-407, 414], [-406, 414], [-406, 413], [-405, 413], [-405, 412], [-403, 412], [-403, 413], [-402, 413], [-402, 414], [-401, 414], [-401, 420], [-395, 420], [-395, 419], [-393, 419], [-393, 420], [-392, 420], [-392, 421], [-391, 421], [-391, 423], [-392, 423], [-392, 483], [-368, 483], [-368, 616], [-368, 615], [-370, 615], [-370, 622], [-368, 622], [-368, 618], [-367, 618], [-366, 618], [-366, 617], [-365, 617], [-365, 616], [-340, 616], [-339, 617], [-339, 618], [-338, 618], [-337, 618], [-337, 614], [-366, 614], [-366, 601], [-365, 601], [-365, 599], [-364, 599], [-364, 596], [-366, 596], [-366, 588], [-307, 588], [-307, 615], [-305, 615], [-305, 614], [-298, 614], [-298, 612], [-305, 612], [-305, 587], [-305, 568], [-221, 568], [-221, 523], [-203, 523], [-203, 461], [-368, 461], [-368, 464], [-366, 463], [-307, 463], [-307, 567], [-305, 463], [-204, 463], [-205, 522], [-221, 521], [-221, 464], [-223, 464], [-223, 567], [-305, 566], [-305, 465], [-307, 465], [-307, 587], [-366, 586], [-366, 465], [-368, 465], [-368, 481], [-390, 481], [-390, 425], [-389, 425], [-389, 420], [-389, 419], [-390, 419], [-390, 418], [-391, 418], [-391, 417], [-397, 417], [-397, 418], [-399, 418], [-399, 413], [-399, 412], [-400, 412], [-400, 411], [-401, 411], [-401, 410], [-407, 410], [-407, 411], [-408, 411], [-408, 412], [-409, 412], [-409, 413], [-410, 413], [-410, 414], [-411, 414], [-412, 414], [-412, 415], [-413, 415], [-413, 418], [-472, 418], [-472, 417], [-478, 417], [-478, 418], [-479, 418], [-479, 419], [-480, 419], [-480, 425], [-479, 425], [-479, 480], [-479, 476], [-491, 476], [-491, 483], [-494, 483], [-494, 482], [-498, 482], [-498, 481]]}, "center": {"162-258, T": [-366, 598]}}, +{"id": 2251, "name": "Hermitcraft TCG", "description": "Hermitcraft TCG is the trading card gam made by Vintage Beef based on his fellow members of the Hermitcraft server. There is also an online community of the game", "links": {"website": ["https://hc-tcg.fly.dev/"], "discord": ["rkMbhkJg"]}, "path": {"214-258, T": [[593, -616], [613, -616], [612, -611], [593, -611]]}, "center": {"214-258, T": [603, -613]}}, +{"id": 2253, "name": "Tin Foil Chef TCG Card", "description": "TinFoilChef, also written as Tinfoil Chef or abbreviated as TFC, was a YouTuber and member of Hermitcraft, who passed away on August, 13 2022. The Hermitcraft Trading Card Game (often abbreviated as TCG) is a server-wide minigame on Hermitcraft in Season 9 created by VintageBeef. One of the cards was made of TFC as a memorial to him passing away.", "links": {"website": ["https://hermitcraft.fandom.com/wiki/TinFoilChef"], "subreddit": ["Hermitcraft"]}, "path": {"173-258, T": [[-1061, -541], [-1019, -541], [-1019, -499], [-1060, -499]]}, "center": {"173-258, T": [-1040, -520]}}, +{"id": 2254, "name": "Tribute to Rosins Restaurants", "description": "A small tribute from german streamer Rumathra and his community to german-television-cook Frank Rosin who is saving restaurant owners from bankruptcy. Funny enough, watching and reacting to Frank Rosin episodes saved Rumathra himself from bankruptcy. After multiple attempts of putting the logo on the canvas it finally worked out. While Rumathra went offline bcs he got sick, an alliance was formed with Tunesia and the pixelart was defended.\nWhile being offline, Rumathra was also mentioned in a peace treaty between xQc and Pappaplatte that was signed with \"Wieland Welte\" which led to an increased google search statistic for the streamer.", "links": {"website": ["https://www.twitch.tv/rumathra"], "discord": ["ESZwZEA"]}, "path": {"214-258, T": [[594, 973], [586, 976], [584, 970], [625, 970], [625, 976], [584, 976], [584, 970], [624, 971], [624, 975], [584, 974], [594, 972]]}, "center": {"214-258, T": [603, 975]}}, +{"id": 2255, "name": "Reimu and Miku saber-fighting at Flappy Birdland featuring Flappy and Kyubey", "description": "United as a front in the face of rampant raids from larger communities and livestream viewers, in particular XQC, r/placevietnam, r/touhou, r/hatsune, r/StarWars_Place, and r/placeCanada present this miniaturized recreation of the epic lightsaber battle between Reimu Hakurei and Hatsune Miku, with the supporting cast of Flappy Bird and Kyubey from Madoka Magica. Both heroines don the traditional Vietnam dress of áo dài, with Miku featuring an additional iconic nón lá (bamboo conic hat) and a Canadian maple leaf on Reimu's hair. This battle recreation depicts the unity between vastly different communities coming together in the face of adversity, as well as celebrating our artistic values.", "links": {"subreddit": ["placevietnam", "touhou", "hatsune", "starwars_place", "MadokaMagica"], "discord": ["placevietnam", "apl", "hatsune", "TheGalacticRepublic", "madoka"]}, "path": {"200-258, T": [[-1362, -701], [-1362, -660], [-1308, -660], [-1308, -662], [-1289, -662], [-1289, -701]]}, "center": {"200-258, T": [-1325, -680]}}, {"id": 2256, "name": "ue logo", "description": "The logo of the German streamer and youtuber \"Huebi\".", "links": {"website": ["https://www.youtube.com/@Huebi.", "https://www.huebi.tv/", "https://youtube.com/@Huebschrauber"], "subreddit": ["Huebi", "HuebiOhneKontext"], "discord": ["huebi"]}, "path": {"11-22": [[26, 343], [44, 343], [44, 354], [26, 354]]}, "center": {"11-22": [35, 349]}}, -{"id": 2257, "name": "Stoffhase Felix", "description": "Felix is ​​the title of a german children's book series written by Annette Langen and illustrated by Constanza Droop. It was published by Coppenrath Verlag Münster and celebrated its 20th anniversary in spring 2014. In addition to the book series, two films, an animated series and a musical have been produced.", "links": {"website": ["https://www.coppenrath.de/felix-der-hase/"]}, "path": {"214-258": [[603, -966], [598, -972], [595, -980], [594, -980], [594, -985], [597, -988], [598, -988], [607, -978], [610, -980], [616, -981], [617, -979], [620, -980], [622, -978], [622, -974], [617, -969], [615, -969], [613, -971], [612, -969], [617, -963], [617, -957], [616, -954], [621, -952], [623, -951], [623, -952], [625, -954], [622, -957], [623, -958], [626, -955], [633, -959], [633, -957], [627, -954], [630, -953], [630, -951], [634, -953], [635, -953], [637, -952], [640, -945], [642, -940], [644, -939], [644, -937], [638, -932], [630, -927], [630, -926], [627, -926], [624, -925], [623, -924], [617, -924], [613, -928], [613, -925], [612, -924], [612, -922], [615, -921], [619, -919], [619, -915], [617, -913], [608, -913], [607, -914], [605, -914], [605, -916], [603, -916], [603, -920], [604, -920], [604, -923], [605, -923], [605, -927], [606, -927], [606, -931], [605, -931], [604, -932], [603, -932], [600, -935], [600, -937], [599, -937], [599, -940], [600, -941], [600, -943], [592, -943], [590, -945], [589, -945], [589, -947], [588, -947], [588, -948], [585, -948], [584, -949], [584, -961], [600, -961], [600, -951], [602, -953], [604, -953], [604, -955], [602, -958], [602, -963], [603, -964]]}, "center": {"214-258": [621, -938]}}, +{"id": 2257, "name": "Stoffhase Felix", "description": "Felix is ​​the title of a german children's book series written by Annette Langen and illustrated by Constanza Droop. It was published by Coppenrath Verlag Münster and celebrated its 20th anniversary in spring 2014. In addition to the book series, two films, an animated series and a musical have been produced.", "links": {"website": ["https://www.coppenrath.de/felix-der-hase/"]}, "path": {"214-258, T": [[603, -966], [598, -972], [595, -980], [594, -980], [594, -985], [597, -988], [598, -988], [607, -978], [610, -980], [616, -981], [617, -979], [620, -980], [622, -978], [622, -974], [617, -969], [615, -969], [613, -971], [612, -969], [617, -963], [617, -957], [616, -954], [621, -952], [623, -951], [623, -952], [625, -954], [622, -957], [623, -958], [626, -955], [633, -959], [633, -957], [627, -954], [630, -953], [630, -951], [634, -953], [635, -953], [637, -952], [640, -945], [642, -940], [644, -939], [644, -937], [638, -932], [630, -927], [630, -926], [627, -926], [624, -925], [623, -924], [617, -924], [613, -928], [613, -925], [612, -924], [612, -922], [615, -921], [619, -919], [619, -915], [617, -913], [608, -913], [607, -914], [605, -914], [605, -916], [603, -916], [603, -920], [604, -920], [604, -923], [605, -923], [605, -927], [606, -927], [606, -931], [605, -931], [604, -932], [603, -932], [600, -935], [600, -937], [599, -937], [599, -940], [600, -941], [600, -943], [592, -943], [590, -945], [589, -945], [589, -947], [588, -947], [588, -948], [585, -948], [584, -949], [584, -961], [600, -961], [600, -951], [602, -953], [604, -953], [604, -955], [602, -958], [602, -963], [603, -964]]}, "center": {"214-258, T": [621, -938]}}, {"id": 2258, "name": "Borussia Mönchenlgadbach", "description": "This the Art from the German Football Team Borussia Mönchengladbach, its made by the Fans from Buschi's Borussia", "links": {"website": ["https://de.wikipedia.org/wiki/Borussia_Mönchengladbach", "https://www.borussia.de/"], "discord": ["5KgzQtTE9G"]}, "path": {"209-240": [[-656, 884], [-656, 903], [-641, 903], [-641, 884]]}, "center": {"209-240": [-648, 894]}}, -{"id": 2259, "name": "Minichi 2", "description": "A small pixelart of the oc \"Machi\" by u/machi2ns' community -\n\nThe specific pixelart was built and destroyed 4 previous times, all at different locations, until finally finding a home as part of the UGA's artwork as \"apology\" for the 4th destruction by them.", "links": {}, "path": {"214-258": [[-709, 244], [-708, 238], [-718, 236], [-721, 245], [-717, 249], [-710, 249]]}, "center": {"214-258": [-714, 243]}}, +{"id": 2259, "name": "Minichi 2", "description": "A small pixelart of the oc \"Machi\" by u/machi2ns' community -\n\nThe specific pixelart was built and destroyed 4 previous times, all at different locations, until finally finding a home as part of the UGA's artwork as \"apology\" for the 4th destruction by them.", "links": {}, "path": {"214-258, T": [[-709, 244], [-708, 238], [-718, 236], [-721, 245], [-717, 249], [-710, 249]]}, "center": {"214-258, T": [-714, 243]}}, {"id": 2260, "name": "Frix Name", "description": "It only says Frix and next to it a yellow and light green shield", "links": {"website": ["https://i.imgur.com/dNfB0ls.jpg", "https://www.tiktok.com/@frix.23"]}, "path": {"123-135": [[-471, -1000], [-449, -1000], [-449, -993], [-471, -993]]}, "center": {"123-135": [-460, -996]}}, -{"id": 2261, "name": "Dark and Darker Madrinas Coffee mug", "description": "This art is a depiction of the Tankard included in the Madrinas + Dark and Darker Limited Edition Box Set.", "links": {"subreddit": ["DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"214-258": [[-291, 546], [-291, 558], [-290, 558], [-290, 559], [-283, 559], [-283, 558], [-282, 558], [-282, 556], [-279, 556], [-279, 548], [-281, 548], [-281, 547], [-282, 547], [-282, 546], [-283, 546], [-283, 545], [-284, 545], [-284, 544], [-285, 544], [-286, 544], [-286, 545], [-287, 544], [-288, 544], [-289, 544], [-289, 545], [-290, 545], [-290, 546]]}, "center": {"214-258": [-286, 552]}}, -{"id": 2262, "name": "KiKANiNCHEN", "description": "KiKANiNCHEN is a German TV Show that is broadcast on KiKA, a public television channel of ARD and ZDF for children and teenager. It is aimed at children aged three to six years. It first aired on October 5, 2009", "links": {"website": ["https://www.kikaninchen.de", "https://www.kika.de/"]}, "path": {"215-258": [[1285, -913], [1285, -916], [1287, -919], [1288, -919], [1288, -927], [1289, -927], [1289, -930], [1290, -931], [1289, -932], [1289, -935], [1290, -936], [1290, -939], [1292, -941], [1292, -943], [1286, -943], [1284, -941], [1281, -941], [1280, -942], [1279, -942], [1279, -945], [1280, -946], [1283, -946], [1283, -949], [1284, -949], [1287, -946], [1288, -946], [1288, -945], [1291, -945], [1292, -946], [1292, -947], [1289, -948], [1287, -950], [1286, -950], [1283, -953], [1283, -955], [1282, -955], [1282, -962], [1283, -964], [1284, -966], [1285, -967], [1285, -968], [1286, -968], [1286, -970], [1285, -970], [1277, -975], [1276, -976], [1276, -978], [1275, -978], [1275, -983], [1276, -983], [1276, -984], [1276, -985], [1278, -985], [1278, -984], [1279, -984], [1279, -985], [1282, -985], [1290, -970], [1290, -972], [1292, -972], [1289, -982], [1289, -986], [1292, -988], [1295, -988], [1298, -985], [1298, -978], [1297, -978], [1297, -972], [1304, -965], [1304, -962], [1305, -962], [1305, -956], [1299, -949], [1299, -946], [1300, -946], [1307, -951], [1307, -954], [1308, -955], [1310, -953], [1312, -953], [1312, -951], [1313, -951], [1313, -950], [1311, -948], [1306, -948], [1301, -943], [1301, -941], [1302, -941], [1303, -939], [1303, -935], [1304, -934], [1304, -926], [1303, -925], [1303, -923], [1302, -922], [1302, -919], [1303, -919], [1305, -918], [1307, -917], [1307, -914], [1301, -914], [1299, -917], [1299, -918], [1298, -918], [1297, -919], [1297, -921], [1298, -922], [1298, -926], [1296, -927], [1294, -925], [1294, -922], [1293, -922], [1293, -916], [1292, -916], [1292, -913]]}, "center": {"215-258": [1293, -959]}}, -{"id": 2263, "name": "Alpine longhorn beetle", "description": "one of the most beatutiful beetle of austria and hungary with a hight priority of protection", "links": {"website": ["https://en.wikipedia.org/wiki/Rosalia_longicorn"]}, "path": {"205-258": [[-711, -27], [-711, -33], [-699, -30], [-697, -24], [-701, -23], [-702, -18], [-706, -17], [-711, -15], [-714, -18], [-716, -24], [-715, -28], [-711, -32], [-710, -33]]}, "center": {"205-258": [-707, -23]}}, -{"id": 2264, "name": "Waterfall (MC Escher)", "description": "Waterfall (Dutch: Waterval) is a lithograph by the Dutch artist M. C. Escher, first printed in October 1961. It shows a perpetual motion machine where water from the base of a waterfall appears to run downhill along the water path before reaching the top of the waterfall. \n\nIt was created by the dutch community.", "links": {"website": ["https://en.wikipedia.org/wiki/Waterfall_(M._C._Escher)"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"215-258": [[1405, -551], [1500, -551], [1500, -450], [1405, -450]]}, "center": {"215-258": [1453, -500]}}, -{"id": 2265, "name": "Loona", "description": "Loona is the receptionist of I.M.P, the adoptive daughter of Blitzo, and one of the main protagonists of the Vivziepop web series, Helluva Boss.\n\nOn rare occasions, she joins the rest of the I.M.P gang during their missions on Earth.", "links": {"website": ["https://hazbinhotel.fandom.com/wiki/Loona"], "subreddit": ["HelluvaBoss", "HazbinHotel"]}, "path": {"164-213": [[-589, -946], [-586, -946], [-585, -947], [-585, -951], [-584, -951], [-583, -952], [-583, -953], [-580, -956], [-579, -956], [-575, -960], [-574, -960], [-573, -961], [-572, -961], [-571, -962], [-570, -962], [-569, -963], [-566, -963], [-565, -962], [-565, -960], [-562, -960], [-561, -959], [-560, -959], [-559, -958], [-558, -958], [-557, -957], [-556, -957], [-556, -956], [-554, -954], [-554, -939], [-553, -938], [-548, -938], [-546, -936], [-546, -928], [-549, -928], [-550, -927], [-550, -924], [-551, -923], [-551, -921], [-552, -921], [-552, -920], [-554, -918], [-554, -917], [-555, -917], [-556, -916], [-556, -915], [-558, -915], [-559, -914], [-560, -914], [-561, -913], [-581, -913], [-582, -914], [-583, -914], [-583, -917], [-585, -919], [-585, -926], [-582, -929], [-582, -932], [-581, -933], [-581, -935], [-582, -936], [-582, -937], [-584, -939], [-584, -940], [-587, -943], [-588, -943], [-589, -944]], "214-258": [[-595, -946], [-593, -946], [-590, -949], [-590, -951], [-589, -952], [-589, -953], [-585, -957], [-584, -957], [-581, -960], [-580, -960], [-579, -961], [-578, -961], [-577, -962], [-576, -962], [-575, -963], [-574, -963], [-573, -964], [-572, -964], [-571, -963], [-571, -960], [-565, -966], [-565, -961], [-566, -960], [-566, -959], [-565, -958], [-564, -958], [-560, -954], [-560, -953], [-559, -952], [-559, -943], [-560, -942], [-560, -939], [-559, -938], [-554, -938], [-552, -936], [-552, -929], [-553, -928], [-554, -929], [-556, -927], [-556, -924], [-557, -923], [-557, -922], [-558, -921], [-558, -920], [-563, -915], [-564, -915], [-565, -914], [-566, -914], [-567, -913], [-587, -913], [-588, -914], [-588, -915], [-589, -916], [-589, -917], [-590, -918], [-590, -920], [-591, -921], [-591, -924], [-592, -925], [-588, -929], [-588, -932], [-587, -933], [-587, -935], [-588, -936], [-588, -937], [-590, -939], [-590, -940], [-595, -945]]}, "center": {"164-213": [-566, -929], "214-258": [-572, -929]}}, -{"id": 2266, "name": "Survivor Duck 🦆", "description": "This duck has seen some shit.\n\nSurviving the initial apearance of the Dragon, this duck has been caught in the middle of the later Streamer War over the Dragon. It lost its hat in the war and in a sudden onset of void, almost its life. It has been slowly revived by a handful of people and kept healthy since then, but th mental scars will remaing forever...", "links": {}, "path": {"206-258": [[1264, 682], [1260, 682], [1255, 685], [1258, 695], [1267, 695], [1271, 691], [1270, 687], [1265, 682], [1264, 682], [1265, 682], [1259, 682]]}, "center": {"206-258": [1263, 689]}}, -{"id": 2267, "name": "Taiwan High Speed Rail", "description": "Taiwan High Speed Rail (THSR) is the high-speed railway of Taiwan consisting of one line that runs approximately 350 km (217 mi) along the west coast, from the capital Taipei to the southern city of Kaohsiung", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan_High_Speed_Rail"]}, "path": {"48-258": [[-218, -371], [-210, -381], [-193, -386], [-78, -386], [-65, -379], [-59, -370]]}, "center": {"48-258": [-90, -378]}}, -{"id": 2268, "name": "Blue Horse Central", "description": "Run by Prince_Polaris, this is another work from the Brony fandom; a discord server built on the concept that only those with a blue OC are invited to join.\n\nAfter being overtaken by a question block from the Mario games, it was first moved downwards, then after being unable to establish the full logo, it was instead moved back up and to the left of its original position to avoid encroaching on a Roblox character, where a tiny version of one of the server's members was also placed.", "links": {}, "path": {"214-258": [[1467, -109], [1482, -109], [1482, -94], [1467, -94], [1467, -97], [1461, -97], [1461, -102], [1467, -102]]}, "center": {"214-258": [1474, -101]}}, -{"id": 2269, "name": "Kaziukas the Great", "description": "This is a memorial to remind people of the sacrifice taken by Kaziukas the Great in the making of his first selfie", "links": {}, "path": {"214-258": [[-1277, -368], [-1277, -298], [-1235, -298], [-1235, -299], [-1207, -299], [-1207, -325], [-1189, -325], [-1189, -368]]}, "center": {"214-258": [-1241, -333]}}, -{"id": 2270, "name": "ttv/spb17o3", "description": "An art created by Russian streamer spb17o3. Streams politics, supports Ukraine. The text says \"Baza\" (База), meaning \"Based\" in English.", "links": {"website": ["https://twitch.tv/spb17o3"]}, "path": {"214-258": [[183, 966], [264, 966], [264, 989], [183, 989]]}, "center": {"214-258": [224, 978]}}, -{"id": 2271, "name": "Regenbogenfisch (Rainbow-Fish)", "description": "\"Regenbogenfisch\" or \"Rainbow Fish\" is a fictional character from a beloved children's book by Marcus Pfister. It is known for its stunning appearance, with colorful, shimmering scales resembling a rainbow. The story teaches kids about friendship and the joy of sharing. (created by r/placede)", "links": {"subreddit": ["placede"]}, "path": {"215-258": [[1008, -563], [1008, -572], [1009, -572], [1009, -574], [1010, -574], [1010, -588], [1009, -588], [1009, -591], [1008, -591], [1008, -593], [1007, -593], [1007, -595], [1008, -595], [1008, -596], [1010, -596], [1010, -595], [1014, -595], [1014, -594], [1016, -594], [1016, -593], [1017, -593], [1017, -592], [1018, -592], [1018, -591], [1019, -591], [1019, -590], [1019, -589], [1020, -589], [1020, -588], [1021, -588], [1021, -587], [1022, -587], [1022, -585], [1023, -585], [1023, -584], [1024, -584], [1026, -584], [1025, -585], [1026, -585], [1026, -586], [1027, -586], [1027, -587], [1028, -587], [1028, -588], [1029, -588], [1029, -589], [1030, -589], [1030, -591], [1029, -591], [1029, -592], [1027, -592], [1027, -593], [1025, -593], [1025, -594], [1024, -594], [1024, -595], [1023, -595], [1023, -596], [1022, -596], [1022, -597], [1021, -597], [1021, -598], [1022, -598], [1022, -601], [1023, -600], [1023, -601], [1025, -601], [1025, -602], [1031, -602], [1031, -601], [1033, -601], [1033, -600], [1039, -600], [1039, -599], [1041, -599], [1041, -598], [1042, -598], [1042, -597], [1043, -597], [1043, -596], [1043, -595], [1044, -595], [1044, -594], [1045, -594], [1045, -591], [1046, -591], [1046, -590], [1047, -590], [1047, -589], [1048, -589], [1048, -588], [1049, -588], [1049, -587], [1050, -587], [1050, -586], [1051, -586], [1051, -585], [1052, -585], [1052, -584], [1053, -584], [1053, -582], [1054, -582], [1054, -579], [1054, -578], [1055, -578], [1055, -575], [1054, -575], [1054, -574], [1052, -574], [1052, -573], [1051, -573], [1051, -572], [1050, -572], [1050, -571], [1047, -570], [1047, -569], [1046, -569], [1046, -568], [1045, -568], [1045, -567], [1044, -567], [1044, -566], [1043, -566], [1043, -564], [1042, -564], [1042, -563], [1041, -563], [1041, -562], [1040, -562], [1040, -561], [1038, -561], [1038, -560], [1036, -560], [1036, -561], [1036, -562], [1033, -562], [1033, -564], [1034, -564], [1034, -565], [1035, -565], [1035, -566], [1036, -566], [1036, -568], [1033, -568], [1033, -567], [1032, -566], [1025, -566], [1025, -568], [1026, -568], [1026, -569], [1027, -569], [1027, -570], [1028, -570], [1028, -572], [1027, -572], [1027, -573], [1026, -573], [1026, -574], [1025, -574], [1025, -575], [1024, -575], [1023, -575], [1023, -574], [1022, -574], [1022, -573], [1021, -573], [1020, -571], [1019, -570], [1018, -569], [1017, -568], [1016, -567], [1015, -566], [1014, -565], [1013, -564], [1011, -564], [1011, -563]]}, "center": {"215-258": [1038, -580]}}, -{"id": 2272, "name": "Pippi Longstocking", "description": "Pippi Longstocking, the creation of Swedish author Astrid Lindgren, is a beloved and mischievous children's literary character who embarks on whimsical adventures in her quirky Villa Villekulla. She was first introduced to the world in 1945, and her spirited nature and unique perspective on life continue to captivate readers of all ages, making her a timeless source of inspiration for those who dare to dream and live life to the fullest.", "links": {"website": ["https://en.wikipedia.org/wiki/Pippi_Longstocking"]}, "path": {"214-258": [[56, -210], [63, -210], [63, -209], [64, -209], [64, -208], [65, -208], [65, -206], [66, -206], [66, -204], [70, -204], [70, -203], [69, -203], [69, -202], [66, -202], [66, -198], [65, -198], [65, -196], [64, -196], [64, -190], [64, -189], [65, -189], [65, -187], [64, -187], [64, -186], [63, -186], [63, -185], [63, -183], [62, -183], [62, -180], [65, -180], [64, -179], [61, -179], [61, -185], [58, -185], [58, -179], [55, -179], [55, -180], [54, -180], [57, -180], [57, -185], [56, -185], [54, -187], [54, -189], [55, -190], [55, -196], [54, -196], [54, -198], [53, -198], [53, -202], [50, -202], [49, -203], [48, -203], [49, -204], [52, -204], [53, -205], [53, -206], [54, -206], [54, -208], [55, -208]]}, "center": {"214-258": [59, -202]}}, +{"id": 2261, "name": "Dark and Darker Madrinas Coffee mug", "description": "This art is a depiction of the Tankard included in the Madrinas + Dark and Darker Limited Edition Box Set.", "links": {"subreddit": ["DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"214-258, T": [[-291, 546], [-291, 558], [-290, 558], [-290, 559], [-283, 559], [-283, 558], [-282, 558], [-282, 556], [-279, 556], [-279, 548], [-281, 548], [-281, 547], [-282, 547], [-282, 546], [-283, 546], [-283, 545], [-284, 545], [-284, 544], [-285, 544], [-286, 544], [-286, 545], [-287, 544], [-288, 544], [-289, 544], [-289, 545], [-290, 545], [-290, 546]]}, "center": {"214-258, T": [-286, 552]}}, +{"id": 2262, "name": "KiKANiNCHEN", "description": "KiKANiNCHEN is a German TV Show that is broadcast on KiKA, a public television channel of ARD and ZDF for children and teenager. It is aimed at children aged three to six years. It first aired on October 5, 2009", "links": {"website": ["https://www.kikaninchen.de", "https://www.kika.de/"]}, "path": {"215-258, T": [[1285, -913], [1285, -916], [1287, -919], [1288, -919], [1288, -927], [1289, -927], [1289, -930], [1290, -931], [1289, -932], [1289, -935], [1290, -936], [1290, -939], [1292, -941], [1292, -943], [1286, -943], [1284, -941], [1281, -941], [1280, -942], [1279, -942], [1279, -945], [1280, -946], [1283, -946], [1283, -949], [1284, -949], [1287, -946], [1288, -946], [1288, -945], [1291, -945], [1292, -946], [1292, -947], [1289, -948], [1287, -950], [1286, -950], [1283, -953], [1283, -955], [1282, -955], [1282, -962], [1283, -964], [1284, -966], [1285, -967], [1285, -968], [1286, -968], [1286, -970], [1285, -970], [1277, -975], [1276, -976], [1276, -978], [1275, -978], [1275, -983], [1276, -983], [1276, -984], [1276, -985], [1278, -985], [1278, -984], [1279, -984], [1279, -985], [1282, -985], [1290, -970], [1290, -972], [1292, -972], [1289, -982], [1289, -986], [1292, -988], [1295, -988], [1298, -985], [1298, -978], [1297, -978], [1297, -972], [1304, -965], [1304, -962], [1305, -962], [1305, -956], [1299, -949], [1299, -946], [1300, -946], [1307, -951], [1307, -954], [1308, -955], [1310, -953], [1312, -953], [1312, -951], [1313, -951], [1313, -950], [1311, -948], [1306, -948], [1301, -943], [1301, -941], [1302, -941], [1303, -939], [1303, -935], [1304, -934], [1304, -926], [1303, -925], [1303, -923], [1302, -922], [1302, -919], [1303, -919], [1305, -918], [1307, -917], [1307, -914], [1301, -914], [1299, -917], [1299, -918], [1298, -918], [1297, -919], [1297, -921], [1298, -922], [1298, -926], [1296, -927], [1294, -925], [1294, -922], [1293, -922], [1293, -916], [1292, -916], [1292, -913]]}, "center": {"215-258, T": [1293, -959]}}, +{"id": 2263, "name": "Alpine longhorn beetle", "description": "one of the most beatutiful beetle of austria and hungary with a hight priority of protection", "links": {"website": ["https://en.wikipedia.org/wiki/Rosalia_longicorn"]}, "path": {"205-258, T": [[-711, -27], [-711, -33], [-699, -30], [-697, -24], [-701, -23], [-702, -18], [-706, -17], [-711, -15], [-714, -18], [-716, -24], [-715, -28], [-711, -32], [-710, -33]]}, "center": {"205-258, T": [-707, -23]}}, +{"id": 2264, "name": "Waterfall (MC Escher)", "description": "Waterfall (Dutch: Waterval) is a lithograph by the Dutch artist M. C. Escher, first printed in October 1961. It shows a perpetual motion machine where water from the base of a waterfall appears to run downhill along the water path before reaching the top of the waterfall. \n\nIt was created by the dutch community.", "links": {"website": ["https://en.wikipedia.org/wiki/Waterfall_(M._C._Escher)"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"215-258, T": [[1405, -551], [1500, -551], [1500, -450], [1405, -450]]}, "center": {"215-258, T": [1453, -500]}}, +{"id": 2265, "name": "Loona", "description": "Loona is the receptionist of I.M.P, the adoptive daughter of Blitzo, and one of the main protagonists of the Vivziepop web series, Helluva Boss.\n\nOn rare occasions, she joins the rest of the I.M.P gang during their missions on Earth.", "links": {"website": ["https://hazbinhotel.fandom.com/wiki/Loona"], "subreddit": ["HelluvaBoss", "HazbinHotel"]}, "path": {"164-213": [[-589, -946], [-586, -946], [-585, -947], [-585, -951], [-584, -951], [-583, -952], [-583, -953], [-580, -956], [-579, -956], [-575, -960], [-574, -960], [-573, -961], [-572, -961], [-571, -962], [-570, -962], [-569, -963], [-566, -963], [-565, -962], [-565, -960], [-562, -960], [-561, -959], [-560, -959], [-559, -958], [-558, -958], [-557, -957], [-556, -957], [-556, -956], [-554, -954], [-554, -939], [-553, -938], [-548, -938], [-546, -936], [-546, -928], [-549, -928], [-550, -927], [-550, -924], [-551, -923], [-551, -921], [-552, -921], [-552, -920], [-554, -918], [-554, -917], [-555, -917], [-556, -916], [-556, -915], [-558, -915], [-559, -914], [-560, -914], [-561, -913], [-581, -913], [-582, -914], [-583, -914], [-583, -917], [-585, -919], [-585, -926], [-582, -929], [-582, -932], [-581, -933], [-581, -935], [-582, -936], [-582, -937], [-584, -939], [-584, -940], [-587, -943], [-588, -943], [-589, -944]], "214-258, T": [[-595, -946], [-593, -946], [-590, -949], [-590, -951], [-589, -952], [-589, -953], [-585, -957], [-584, -957], [-581, -960], [-580, -960], [-579, -961], [-578, -961], [-577, -962], [-576, -962], [-575, -963], [-574, -963], [-573, -964], [-572, -964], [-571, -963], [-571, -960], [-565, -966], [-565, -961], [-566, -960], [-566, -959], [-565, -958], [-564, -958], [-560, -954], [-560, -953], [-559, -952], [-559, -943], [-560, -942], [-560, -939], [-559, -938], [-554, -938], [-552, -936], [-552, -929], [-553, -928], [-554, -929], [-556, -927], [-556, -924], [-557, -923], [-557, -922], [-558, -921], [-558, -920], [-563, -915], [-564, -915], [-565, -914], [-566, -914], [-567, -913], [-587, -913], [-588, -914], [-588, -915], [-589, -916], [-589, -917], [-590, -918], [-590, -920], [-591, -921], [-591, -924], [-592, -925], [-588, -929], [-588, -932], [-587, -933], [-587, -935], [-588, -936], [-588, -937], [-590, -939], [-590, -940], [-595, -945]]}, "center": {"164-213": [-566, -929], "214-258, T": [-572, -929]}}, +{"id": 2266, "name": "Survivor Duck 🦆", "description": "This duck has seen some shit.\n\nSurviving the initial apearance of the Dragon, this duck has been caught in the middle of the later Streamer War over the Dragon. It lost its hat in the war and in a sudden onset of void, almost its life. It has been slowly revived by a handful of people and kept healthy since then, but th mental scars will remaing forever...", "links": {}, "path": {"206-258, T": [[1264, 682], [1260, 682], [1255, 685], [1258, 695], [1267, 695], [1271, 691], [1270, 687], [1265, 682], [1264, 682], [1265, 682], [1259, 682]]}, "center": {"206-258, T": [1263, 689]}}, +{"id": 2267, "name": "Taiwan High Speed Rail", "description": "Taiwan High Speed Rail (THSR) is the high-speed railway of Taiwan consisting of one line that runs approximately 350 km (217 mi) along the west coast, from the capital Taipei to the southern city of Kaohsiung", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan_High_Speed_Rail"]}, "path": {"48-258, T": [[-218, -371], [-210, -381], [-193, -386], [-78, -386], [-65, -379], [-59, -370]]}, "center": {"48-258, T": [-90, -378]}}, +{"id": 2268, "name": "Blue Horse Central", "description": "Run by Prince_Polaris, this is another work from the Brony fandom; a discord server built on the concept that only those with a blue OC are invited to join.\n\nAfter being overtaken by a question block from the Mario games, it was first moved downwards, then after being unable to establish the full logo, it was instead moved back up and to the left of its original position to avoid encroaching on a Roblox character, where a tiny version of one of the server's members was also placed.", "links": {}, "path": {"214-258, T": [[1467, -109], [1482, -109], [1482, -94], [1467, -94], [1467, -97], [1461, -97], [1461, -102], [1467, -102]]}, "center": {"214-258, T": [1474, -101]}}, +{"id": 2269, "name": "Kaziukas the Great", "description": "This is a memorial to remind people of the sacrifice taken by Kaziukas the Great in the making of his first selfie", "links": {}, "path": {"214-258, T": [[-1277, -368], [-1277, -298], [-1235, -298], [-1235, -299], [-1207, -299], [-1207, -325], [-1189, -325], [-1189, -368]]}, "center": {"214-258, T": [-1241, -333]}}, +{"id": 2270, "name": "ttv/spb17o3", "description": "An art created by Russian streamer spb17o3. Streams politics, supports Ukraine. The text says \"Baza\" (База), meaning \"Based\" in English.", "links": {"website": ["https://twitch.tv/spb17o3"]}, "path": {"214-258, T": [[183, 966], [264, 966], [264, 989], [183, 989]]}, "center": {"214-258, T": [224, 978]}}, +{"id": 2271, "name": "Regenbogenfisch (Rainbow-Fish)", "description": "\"Regenbogenfisch\" or \"Rainbow Fish\" is a fictional character from a beloved children's book by Marcus Pfister. It is known for its stunning appearance, with colorful, shimmering scales resembling a rainbow. The story teaches kids about friendship and the joy of sharing. (created by r/placede)", "links": {"subreddit": ["placede"]}, "path": {"215-258, T": [[1008, -563], [1008, -572], [1009, -572], [1009, -574], [1010, -574], [1010, -588], [1009, -588], [1009, -591], [1008, -591], [1008, -593], [1007, -593], [1007, -595], [1008, -595], [1008, -596], [1010, -596], [1010, -595], [1014, -595], [1014, -594], [1016, -594], [1016, -593], [1017, -593], [1017, -592], [1018, -592], [1018, -591], [1019, -591], [1019, -590], [1019, -589], [1020, -589], [1020, -588], [1021, -588], [1021, -587], [1022, -587], [1022, -585], [1023, -585], [1023, -584], [1024, -584], [1026, -584], [1025, -585], [1026, -585], [1026, -586], [1027, -586], [1027, -587], [1028, -587], [1028, -588], [1029, -588], [1029, -589], [1030, -589], [1030, -591], [1029, -591], [1029, -592], [1027, -592], [1027, -593], [1025, -593], [1025, -594], [1024, -594], [1024, -595], [1023, -595], [1023, -596], [1022, -596], [1022, -597], [1021, -597], [1021, -598], [1022, -598], [1022, -601], [1023, -600], [1023, -601], [1025, -601], [1025, -602], [1031, -602], [1031, -601], [1033, -601], [1033, -600], [1039, -600], [1039, -599], [1041, -599], [1041, -598], [1042, -598], [1042, -597], [1043, -597], [1043, -596], [1043, -595], [1044, -595], [1044, -594], [1045, -594], [1045, -591], [1046, -591], [1046, -590], [1047, -590], [1047, -589], [1048, -589], [1048, -588], [1049, -588], [1049, -587], [1050, -587], [1050, -586], [1051, -586], [1051, -585], [1052, -585], [1052, -584], [1053, -584], [1053, -582], [1054, -582], [1054, -579], [1054, -578], [1055, -578], [1055, -575], [1054, -575], [1054, -574], [1052, -574], [1052, -573], [1051, -573], [1051, -572], [1050, -572], [1050, -571], [1047, -570], [1047, -569], [1046, -569], [1046, -568], [1045, -568], [1045, -567], [1044, -567], [1044, -566], [1043, -566], [1043, -564], [1042, -564], [1042, -563], [1041, -563], [1041, -562], [1040, -562], [1040, -561], [1038, -561], [1038, -560], [1036, -560], [1036, -561], [1036, -562], [1033, -562], [1033, -564], [1034, -564], [1034, -565], [1035, -565], [1035, -566], [1036, -566], [1036, -568], [1033, -568], [1033, -567], [1032, -566], [1025, -566], [1025, -568], [1026, -568], [1026, -569], [1027, -569], [1027, -570], [1028, -570], [1028, -572], [1027, -572], [1027, -573], [1026, -573], [1026, -574], [1025, -574], [1025, -575], [1024, -575], [1023, -575], [1023, -574], [1022, -574], [1022, -573], [1021, -573], [1020, -571], [1019, -570], [1018, -569], [1017, -568], [1016, -567], [1015, -566], [1014, -565], [1013, -564], [1011, -564], [1011, -563]]}, "center": {"215-258, T": [1038, -580]}}, +{"id": 2272, "name": "Pippi Longstocking", "description": "Pippi Longstocking, the creation of Swedish author Astrid Lindgren, is a beloved and mischievous children's literary character who embarks on whimsical adventures in her quirky Villa Villekulla. She was first introduced to the world in 1945, and her spirited nature and unique perspective on life continue to captivate readers of all ages, making her a timeless source of inspiration for those who dare to dream and live life to the fullest.", "links": {"website": ["https://en.wikipedia.org/wiki/Pippi_Longstocking"]}, "path": {"214-258, T": [[56, -210], [63, -210], [63, -209], [64, -209], [64, -208], [65, -208], [65, -206], [66, -206], [66, -204], [70, -204], [70, -203], [69, -203], [69, -202], [66, -202], [66, -198], [65, -198], [65, -196], [64, -196], [64, -190], [64, -189], [65, -189], [65, -187], [64, -187], [64, -186], [63, -186], [63, -185], [63, -183], [62, -183], [62, -180], [65, -180], [64, -179], [61, -179], [61, -185], [58, -185], [58, -179], [55, -179], [55, -180], [54, -180], [57, -180], [57, -185], [56, -185], [54, -187], [54, -189], [55, -190], [55, -196], [54, -196], [54, -198], [53, -198], [53, -202], [50, -202], [49, -203], [48, -203], [49, -204], [52, -204], [53, -205], [53, -206], [54, -206], [54, -208], [55, -208]]}, "center": {"214-258, T": [59, -202]}}, {"id": 2273, "name": "Xlabit", "description": "Xlabit is a Vietnamese developer community.", "links": {"website": ["https://xlabit.com"], "subreddit": ["xlabit", "VietNam"], "discord": ["9XVQ4wVnkE"]}, "path": {"212-222": [[1076, 438], [1076, 444], [1082, 444], [1082, 441], [1080, 438]]}, "center": {"212-222": [1079, 441]}}, -{"id": 2274, "name": "Capitan Gato", "description": "Capitan Gato Minecraft Skin Face", "links": {"website": ["https://www.youtube.com/@CapitanGato"], "discord": ["gatitos"]}, "path": {"119-258": [[-639, -790], [-639, -791], [-602, -791], [-602, -757], [-639, -757], [-639, -790], [-639, -791]]}, "center": {"119-258": [-620, -774]}}, -{"id": 2275, "name": "IRONMACE Logo", "description": "IRONMACE's company logo", "links": {"website": ["https://www.ironmace.com/"], "subreddit": ["DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"215-258": [[-299, 516], [-255, 516], [-255, 521], [-247, 523], [-239, 521], [-239, 516], [-235, 513], [-235, 510], [-238, 508], [-238, 507], [-239, 507], [-239, 502], [-247, 500], [-255, 502], [-255, 507], [-299, 507]]}, "center": {"215-258": [-247, 511]}}, +{"id": 2274, "name": "Capitan Gato", "description": "Capitan Gato Minecraft Skin Face", "links": {"website": ["https://www.youtube.com/@CapitanGato"], "discord": ["gatitos"]}, "path": {"119-258, T": [[-639, -790], [-639, -791], [-602, -791], [-602, -757], [-639, -757], [-639, -790], [-639, -791]]}, "center": {"119-258, T": [-620, -774]}}, +{"id": 2275, "name": "IRONMACE Logo", "description": "IRONMACE's company logo", "links": {"website": ["https://www.ironmace.com/"], "subreddit": ["DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"215-258, T": [[-299, 516], [-255, 516], [-255, 521], [-247, 523], [-239, 521], [-239, 516], [-235, 513], [-235, 510], [-238, 508], [-238, 507], [-239, 507], [-239, 502], [-247, 500], [-255, 502], [-255, 507], [-299, 507]]}, "center": {"215-258, T": [-247, 511]}}, {"id": 2276, "name": "Flag of New Jericho", "description": "Unfinished flag of the Technocratic Republic of New Jericho, a fictional nation from the Nation Roleplay Discord server Earth's Revenge.", "links": {"subreddit": ["earthsrevenge"], "discord": ["sbaWHfbM4U"]}, "path": {"90": [[-646, 277], [-635, 277], [-635, 282], [-646, 282]]}, "center": {"90": [-640, 280]}}, -{"id": 2277, "name": "r/MadeofStyrofoam (MoS)", "description": "r/MadeOfStyrofoam is a self-harm support subreddit aimed towards creating a safe place and community for those who struggle or have struggled in the past with self-injurious behavior.", "links": {"subreddit": ["MadeofStyrofoam"]}, "path": {"70-258": [[499, -340], [500, -341], [506, -341], [509, -338], [510, -339], [511, -340], [513, -340], [515, -339], [518, -339], [522, -339], [522, -334], [509, -333], [508, -332], [508, -330], [505, -327], [502, -327], [499, -330], [499, -332], [498, -333], [498, -339]]}, "center": {"70-258": [503, -336]}}, -{"id": 2278, "name": "Graveyard", "description": "This spot used to hold 3 streamers, who were incredibly toxic towards the r/nordics community, falsely accusing them of stuff and being racist. they also destroyed the original lance reddick memorial with no remorse. The nordics retaliated during the last hours of r/place and destroyed them completely!", "links": {}, "path": {"215-258": [[-690, 481], [-689, 498], [-655, 498], [-655, 481]]}, "center": {"215-258": [-672, 490]}}, -{"id": 2279, "name": "Pelmeni", "description": "An art created by Ukrainian streamer Zubarefff, who lives in China. The art features a big plate full of Pelmeni, a Russian-Ukrainian version of soup dumplings.", "links": {"website": ["https://twitch.tv/zubarefff"]}, "path": {"214-258": [[146, 900], [298, 900], [298, 965], [146, 965]]}, "center": {"214-258": [222, 933]}}, +{"id": 2277, "name": "r/MadeofStyrofoam (MoS)", "description": "r/MadeOfStyrofoam is a self-harm support subreddit aimed towards creating a safe place and community for those who struggle or have struggled in the past with self-injurious behavior.", "links": {"subreddit": ["MadeofStyrofoam"]}, "path": {"70-258, T": [[499, -340], [500, -341], [506, -341], [509, -338], [510, -339], [511, -340], [513, -340], [515, -339], [518, -339], [522, -339], [522, -334], [509, -333], [508, -332], [508, -330], [505, -327], [502, -327], [499, -330], [499, -332], [498, -333], [498, -339]]}, "center": {"70-258, T": [503, -336]}}, +{"id": 2278, "name": "Graveyard", "description": "This spot used to hold 3 streamers, who were incredibly toxic towards the r/nordics community, falsely accusing them of stuff and being racist. they also destroyed the original lance reddick memorial with no remorse. The nordics retaliated during the last hours of r/place and destroyed them completely!", "links": {}, "path": {"215-258, T": [[-690, 481], [-689, 498], [-655, 498], [-655, 481]]}, "center": {"215-258, T": [-672, 490]}}, +{"id": 2279, "name": "Pelmeni", "description": "An art created by Ukrainian streamer Zubarefff, who lives in China. The art features a big plate full of Pelmeni, a Russian-Ukrainian version of soup dumplings.", "links": {"website": ["https://twitch.tv/zubarefff"]}, "path": {"214-258, T": [[146, 900], [298, 900], [298, 965], [146, 965]]}, "center": {"214-258, T": [222, 933]}}, {"id": 2280, "name": "Bandera de Chiriquí", "description": "Bandera de Chiriquí el color rojo indica el amor de los chiricanos por su tierra, el color verde significa la fertilidad del suelo y las estrellas indican el número de distritos de la provincia, el color blanco de las estrellas significa la paz. Es un Pais según mucho, un continente según otros, pero la verdad es que es un territorio Importante de Panamá.", "links": {"website": ["https://es.wikipedia.org/wiki/Bandera_de_Chiriqu%C3%AD#:~:text=En%20esta%20versi%C3%B3n%20se%20se%C3%B1ala,las%20estrellas%20significa%20la%20paz.", "https://www.ecured.cu/Bandera_de_Chiriqu%C3%AD"], "subreddit": ["MasQueGeeks", "Panama"], "discord": ["j59jMZXgCg", "yDnataxy"]}, "path": {"214": [[-1500, 648], [-1479, 648], [-1478, 648], [-1478, 664], [-1500, 664], [-1500, 656]]}, "center": {"214": [-1489, 656]}}, {"id": 2281, "name": "Chapulin colorado", "description": "El Chapulín Colorado is a famous Mexican superhero created by comedian Roberto Gómez Bolaños", "links": {"subreddit": ["PlaceMexico", "mexico"]}, "path": {"198": [[44, -871], [44, -875], [43, -876], [43, -879], [41, -880], [40, -882], [39, -887], [38, -889], [37, -890], [36, -892], [34, -892], [33, -891], [32, -891], [32, -888], [35, -887], [37, -886], [38, -884], [38, -881], [36, -881], [34, -882], [34, -885], [29, -886], [28, -883], [22, -883], [22, -880], [25, -878], [27, -878], [28, -880], [30, -884], [32, -884], [31, -880], [25, -875], [27, -875], [27, -868], [28, -869], [28, -868], [25, -862], [22, -862], [23, -864], [24, -866], [24, -867], [13, -867], [13, -865], [14, -864], [14, -863], [16, -862], [13, -862], [12, -861], [11, -860], [11, -859], [12, -858], [15, -857], [13, -856], [13, -854], [24, -853], [22, -857], [25, -857], [27, -856], [27, -855], [27, -853], [26, -853], [25, -851], [24, -850], [28, -849], [35, -849], [35, -853], [37, -853], [38, -851], [38, -849], [48, -849], [47, -852], [46, -853], [45, -854], [44, -856], [43, -857], [42, -859], [41, -860], [41, -864], [42, -864], [43, -863], [44, -862], [44, -858], [47, -857], [51, -856], [52, -861], [50, -862], [49, -864], [48, -865], [47, -866], [46, -867], [45, -868], [44, -869], [43, -870]]}, "center": {"198": [35, -873]}}, -{"id": 2282, "name": "Islanders' Josh Bailey Memorial", "description": "Josh Bailey is a hockey player who spent 15 years with the New York Islanders. Through the power of song, Bailey was a part of many key moments with the team, but his time in New York ended on June 29th", "links": {"website": ["https://www.nhl.com/islanders/"], "subreddit": ["newyorkislanders"], "discord": ["cTa64RDF"]}, "path": {"216-258": [[1260, 562], [1260, 572], [1267, 572], [1267, 562]]}, "center": {"216-258": [1264, 567]}}, -{"id": 2283, "name": "New York Islanders", "description": "The New York Islanders are a hockey team based in Elmont, New York, United States. They play in the National Hockey League (NHL).", "links": {"website": ["https://www.nhl.com/islanders/"], "subreddit": ["newyorkislanders"], "discord": ["cTa64RDF"]}, "path": {"216-258": [[1267, 562], [1267, 572], [1277, 572], [1278, 562]]}, "center": {"216-258": [1272, 567]}}, +{"id": 2282, "name": "Islanders' Josh Bailey Memorial", "description": "Josh Bailey is a hockey player who spent 15 years with the New York Islanders. Through the power of song, Bailey was a part of many key moments with the team, but his time in New York ended on June 29th", "links": {"website": ["https://www.nhl.com/islanders/"], "subreddit": ["newyorkislanders"], "discord": ["cTa64RDF"]}, "path": {"216-258, T": [[1260, 562], [1260, 572], [1267, 572], [1267, 562]]}, "center": {"216-258, T": [1264, 567]}}, +{"id": 2283, "name": "New York Islanders", "description": "The New York Islanders are a hockey team based in Elmont, New York, United States. They play in the National Hockey League (NHL).", "links": {"website": ["https://www.nhl.com/islanders/"], "subreddit": ["newyorkislanders"], "discord": ["cTa64RDF"]}, "path": {"216-258, T": [[1267, 562], [1267, 572], [1277, 572], [1278, 562]]}, "center": {"216-258, T": [1272, 567]}}, {"id": 2284, "name": "FSU Seminoles", "description": "Florida State University, home of the Seminoles. Unconquered!", "links": {"website": ["http://www.fsu.edu"], "subreddit": ["fsusports"]}, "path": {"215": [[358, 915], [358, 903], [411, 903], [411, 924], [360, 924], [360, 916]]}, "center": {"215": [385, 914]}}, -{"id": 2285, "name": "Wisp (BitCraft)", "description": "\"It's good to have a friend around. So listen careful to Wisp's advice. It could save you one day.\" -@BitCraftOnline on Twitter\n\nIts one of BitCrafts mascots.", "links": {}, "path": {"216-258": [[-129, 430], [-132, 434], [-133, 445], [-120, 445], [-120, 430], [-124, 430]]}, "center": {"216-258": [-126, 439]}}, +{"id": 2285, "name": "Wisp (BitCraft)", "description": "\"It's good to have a friend around. So listen careful to Wisp's advice. It could save you one day.\" -@BitCraftOnline on Twitter\n\nIts one of BitCrafts mascots.", "links": {}, "path": {"216-258, T": [[-129, 430], [-132, 434], [-133, 445], [-120, 445], [-120, 430], [-124, 430]]}, "center": {"216-258, T": [-126, 439]}}, {"id": 2286, "name": "Lebanon flag", "description": "Lebanon, officially the Republic of Lebanon is a Mediterranean country in the Levant Region in West Asia, located between Syria to the north and east and Israel to the south.", "links": {"website": ["https://en.wikipedia.org/wiki/Lebanon"]}, "path": {"215": [[-1000, -7], [-983, -7], [-983, 4], [-1000, 4]]}, "center": {"215": [-991, -1]}}, -{"id": 2287, "name": "Petare Gang 9295", "description": "Obra que representa la comunidad del streamer Samulx_ y el lugar donde nacio, Petare, Venezuela. 9295 significa la calle de la misma. La boca y los ojos de la obra es ela foto de perfil que lo ha acompañado en toda su trayectoria como streamer", "links": {"website": ["https://kick.com/samulx"]}, "path": {"214-258": [[-1010, 776], [-1031, 775], [-972, 774], [-971, 812], [-1033, 812], [-1033, 774], [-973, 774]]}, "center": {"214-258": [-990, 793]}}, -{"id": 2288, "name": "TIE Fighters (Star Wars)", "description": "The TIE fighter or Twin Ion Engine fighter is a series of fictional starfighters featured in the Star Wars universe. TIE fighters are depicted as fast, agile, yet fragile starfighters produced by Sienar Fleet Systems for the Galactic Empire and by Sienar-Jaemus Fleet Systems for the First Order and the Sith Eternal. TIE fighters and other TIE craft appear in Star Wars films, television shows, and throughout the Star Wars expanded universe.", "links": {"subreddit": ["starwars_place"], "discord": ["TheGalacticRepublic"]}, "path": {"208-258": [[1047, -686], [1047, -679], [1049, -679], [1049, -678], [1051, -677], [1051, -676], [1052, -676], [1052, -675], [1055, -675], [1055, -674], [1056, -674], [1056, -673], [1058, -673], [1059, -677], [1059, -681], [1061, -681], [1061, -683], [1067, -686], [1074, -678], [1077, -685], [1076, -694], [1075, -694], [1074, -698], [1069, -702], [1066, -702], [1063, -699], [1064, -695], [1060, -695], [1059, -693], [1057, -693], [1057, -694], [1053, -695], [1053, -697], [1050, -697], [1048, -694], [1047, -694], [1047, -691], [1047, -687], [1047, -686], [1154, -673], [1158, -675], [1161, -677], [1163, -681], [1165, -686], [1164, -691], [1161, -697], [1156, -695], [1153, -692], [1149, -695], [1148, -696], [1145, -703], [1138, -700], [1134, -691], [1136, -684], [1137, -682], [1142, -681], [1143, -684], [1150, -684], [1151, -678], [1152, -675], [1156, -673]]}, "center": {"208-258": [1142, -692]}}, -{"id": 2289, "name": "A suspicious QR Code", "description": "Don't scan me.", "links": {}, "path": {"216-258": [[-110, 854], [-78, 854], [-78, 886], [-110, 886]]}, "center": {"216-258": [-94, 870]}}, +{"id": 2287, "name": "Petare Gang 9295", "description": "Obra que representa la comunidad del streamer Samulx_ y el lugar donde nacio, Petare, Venezuela. 9295 significa la calle de la misma. La boca y los ojos de la obra es ela foto de perfil que lo ha acompañado en toda su trayectoria como streamer", "links": {"website": ["https://kick.com/samulx"]}, "path": {"214-258, T": [[-1010, 776], [-1031, 775], [-972, 774], [-971, 812], [-1033, 812], [-1033, 774], [-973, 774]]}, "center": {"214-258, T": [-990, 793]}}, +{"id": 2288, "name": "TIE Fighters (Star Wars)", "description": "The TIE fighter or Twin Ion Engine fighter is a series of fictional starfighters featured in the Star Wars universe. TIE fighters are depicted as fast, agile, yet fragile starfighters produced by Sienar Fleet Systems for the Galactic Empire and by Sienar-Jaemus Fleet Systems for the First Order and the Sith Eternal. TIE fighters and other TIE craft appear in Star Wars films, television shows, and throughout the Star Wars expanded universe.", "links": {"subreddit": ["starwars_place"], "discord": ["TheGalacticRepublic"]}, "path": {"208-258, T": [[1047, -686], [1047, -679], [1049, -679], [1049, -678], [1051, -677], [1051, -676], [1052, -676], [1052, -675], [1055, -675], [1055, -674], [1056, -674], [1056, -673], [1058, -673], [1059, -677], [1059, -681], [1061, -681], [1061, -683], [1067, -686], [1074, -678], [1077, -685], [1076, -694], [1075, -694], [1074, -698], [1069, -702], [1066, -702], [1063, -699], [1064, -695], [1060, -695], [1059, -693], [1057, -693], [1057, -694], [1053, -695], [1053, -697], [1050, -697], [1048, -694], [1047, -694], [1047, -691], [1047, -687], [1047, -686], [1154, -673], [1158, -675], [1161, -677], [1163, -681], [1165, -686], [1164, -691], [1161, -697], [1156, -695], [1153, -692], [1149, -695], [1148, -696], [1145, -703], [1138, -700], [1134, -691], [1136, -684], [1137, -682], [1142, -681], [1143, -684], [1150, -684], [1151, -678], [1152, -675], [1156, -673]]}, "center": {"208-258, T": [1142, -692]}}, +{"id": 2289, "name": "A suspicious QR Code", "description": "Don't scan me.", "links": {}, "path": {"216-258, T": [[-110, 854], [-78, 854], [-78, 886], [-110, 886]]}, "center": {"216-258, T": [-94, 870]}}, {"id": 2290, "name": "The Nordics Coalition", "description": "The Nordics Coalition, consisting of Sweden, Norway, Denmark, Finland, Iceland, Greenland and Sapmi.", "links": {"subreddit": ["nordics"], "discord": ["nordics"]}, "path": {"215": [[-195, -258], [-195, -193], [-173, -193], [-173, -179], [90, -179], [90, -207], [252, -207], [252, -196], [280, -196], [280, -194], [288, -194], [288, -223], [284, -226], [258, -226], [258, -233], [230, -233], [230, -234], [229, -234], [229, -250], [185, -250], [185, -301], [185, -341], [145, -341], [145, -367], [-176, -367], [-176, -258]]}, "center": {"215": [6, -273]}}, {"id": 2291, "name": "Aradiroff", "description": "aradiroff is a chilean youtuber dedicated to video game content", "links": {"website": ["https://www.youtube.com/@AradirOff"], "subreddit": ["AradirOff"]}, "path": {"215": [[-1175, -661], [-1174, -667], [-1178, -669], [-1179, -669], [-1180, -670], [-1181, -671], [-1182, -672], [-1182, -677], [-1181, -678], [-1181, -679], [-1182, -679], [-1182, -682], [-1183, -684], [-1183, -688], [-1182, -689], [-1182, -694], [-1185, -694], [-1185, -695], [-1184, -696], [-1185, -697], [-1185, -698], [-1184, -699], [-1185, -700], [-1184, -701], [-1185, -702], [-1185, -704], [-1185, -705], [-1185, -707], [-1185, -708], [-1184, -709], [-1185, -710], [-1186, -711], [-1186, -712], [-1186, -713], [-1175, -713], [-1175, -709], [-1174, -709], [-1173, -708], [-1172, -708], [-1170, -706], [-1171, -709], [-1170, -710], [-1167, -710], [-1167, -711], [-1164, -707], [-1164, -706], [-1162, -705], [-1157, -703], [-1152, -703], [-1149, -703], [-1148, -704], [-1147, -704], [-1146, -704], [-1145, -705], [-1144, -706], [-1143, -707], [-1141, -707], [-1138, -707], [-1138, -705], [-1137, -706], [-1136, -706], [-1134, -706], [-1132, -708], [-1130, -709], [-1128, -710], [-1125, -711], [-1124, -708], [-1123, -709], [-1122, -707], [-1121, -706], [-1123, -705], [-1124, -702], [-1125, -698], [-1127, -695], [-1122, -691], [-1122, -688], [-1123, -688], [-1127, -686], [-1129, -685], [-1130, -682], [-1131, -680], [-1132, -679], [-1133, -677], [-1134, -675], [-1134, -672], [-1135, -672], [-1137, -671], [-1138, -669], [-1139, -668], [-1133, -662], [-1134, -662], [-1134, -659], [-1135, -658], [-1136, -657], [-1138, -655], [-1138, -654], [-1139, -652], [-1139, -651], [-1140, -650], [-1142, -649], [-1145, -649], [-1146, -651], [-1148, -653], [-1148, -654], [-1150, -655], [-1151, -658], [-1154, -659], [-1156, -660]]}, "center": {"215": [-1158, -682]}}, -{"id": 2292, "name": "Puff-shroom By ANTONIcraTV", "description": "Puff-shroom made by Peruvian youtuber/streamer ANTONIcra\nPopularly called \"CHIBOLITO\"", "links": {"website": ["https://www.youtube.com/@ANTONIcra", "https://www.twitch.tv/antonicratv"], "discord": ["craft-army-708001528681857094"]}, "path": {"122-258": [[-495, -791], [-448, -791], [-448, -747], [-496, -747], [-496, -791]]}, "center": {"122-258": [-472, -769]}}, -{"id": 2293, "name": "Transformers", "description": "Transformers is a highly popular Mecha/Robot Franchise about sentient alien Robots, who can transform into vehicles (and a few other things) that initially started as a comic book series in 1984.\n\nAfter the comic followed several new cartoons, comics, anime and a live-action series, as well as a massive load of toylines. There still is ongoing new content being produced regularly, such as the 2023 released \"Rise of The Beasts\" Live-Action and the \"EarthSpark\" Cartoon, making Transformers one of the most well-established and longlived international franchises.\n\nDepicted on the r/place are the insignias of the two main factions on the right (Decepticons - the bad guys led by Megatron vs. Autobots - the good guys led by Optimus Prime), Optimus Prime's vehicular Alt-Mode on the left and the logo for the 1984 Cartoon Series \"The Transformers\" below.", "links": {"website": ["https://en.wikipedia.org/wiki/Transformers"], "subreddit": ["transformers"]}, "path": {"216-258": [[-1425, -368], [-1425, -351], [-1471, -351], [-1471, -359], [-1483, -360], [-1483, -368]]}, "center": {"216-258": [-1454, -359]}}, +{"id": 2292, "name": "Puff-shroom By ANTONIcraTV", "description": "Puff-shroom made by Peruvian youtuber/streamer ANTONIcra\nPopularly called \"CHIBOLITO\"", "links": {"website": ["https://www.youtube.com/@ANTONIcra", "https://www.twitch.tv/antonicratv"], "discord": ["craft-army-708001528681857094"]}, "path": {"122-258, T": [[-495, -791], [-448, -791], [-448, -747], [-496, -747], [-496, -791]]}, "center": {"122-258, T": [-472, -769]}}, +{"id": 2293, "name": "Transformers", "description": "Transformers is a highly popular Mecha/Robot Franchise about sentient alien Robots, who can transform into vehicles (and a few other things) that initially started as a comic book series in 1984.\n\nAfter the comic followed several new cartoons, comics, anime and a live-action series, as well as a massive load of toylines. There still is ongoing new content being produced regularly, such as the 2023 released \"Rise of The Beasts\" Live-Action and the \"EarthSpark\" Cartoon, making Transformers one of the most well-established and longlived international franchises.\n\nDepicted on the r/place are the insignias of the two main factions on the right (Decepticons - the bad guys led by Megatron vs. Autobots - the good guys led by Optimus Prime), Optimus Prime's vehicular Alt-Mode on the left and the logo for the 1984 Cartoon Series \"The Transformers\" below.", "links": {"website": ["https://en.wikipedia.org/wiki/Transformers"], "subreddit": ["transformers"]}, "path": {"216-258, T": [[-1425, -368], [-1425, -351], [-1471, -351], [-1471, -359], [-1483, -360], [-1483, -368]]}, "center": {"216-258, T": [-1454, -359]}}, {"id": 2294, "name": "r/MadeofStyrofoam (MoS)", "description": "r/MadeOfStyrofoam is a self-harm support subreddit aimed towards creating a safe place and community for those who struggle or have struggled in the past with self-injurious behavior.", "links": {"subreddit": ["MadeofStyrofoam"]}, "path": {"164-215": [[758, 859], [772, 859], [772, 880], [758, 880]]}, "center": {"164-215": [765, 870]}}, -{"id": 2295, "name": "Taiwan beer", "description": "Gold Medal Taiwan beer", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan_Beer#Beers"]}, "path": {"246-258": [[-39, 566], [-39, 574], [-33, 574], [-33, 566]]}, "center": {"246-258": [-36, 570]}}, -{"id": 2296, "name": "The HAL Tejas", "description": "The HAL Tejas (lit. \"Brilliance\"), is an Indian single-engine, canard delta wing, multirole combat aircraft designed by the Aeronautical Development Agency (ADA) in collaboration with Aircraft Research and Design Centre (ARDC) of Hindustan Aeronautics Limited (HAL) for the Indian Air Force (IAF). It will be succeeded by the Mk2 in the future.", "links": {"website": ["https://en.wikipedia.org/wiki/HAL_Tejas", "https://en.wikipedia.org/wiki/HAL_Tejas_Mk2"], "subreddit": ["india"]}, "path": {"216-258": [[314, -265], [314, -263], [358, -263], [362, -261], [368, -261], [369, -263], [371, -261], [372, -262], [375, -262], [382, -255], [386, -256], [382, -262], [385, -261], [400, -261], [408, -264], [417, -264], [417, -266], [407, -266], [397, -270], [395, -270], [397, -279], [391, -279], [385, -272], [382, -272], [383, -276], [380, -276], [385, -284], [381, -284], [375, -274], [374, -272], [371, -272], [371, -271], [370, -272], [360, -272], [360, -271], [356, -269], [349, -268], [338, -266], [338, -265]]}, "center": {"216-258": [389, -267]}}, -{"id": 2297, "name": "MINI PENIS POW(ER)", "description": "The logos of 12 schools in the Big 10, an athletic conference consisting of American universities. Was originally supposed to say \"MINI PENIS POWER\", however the last two letters were covered up.", "links": {"website": ["https://bigten.org"], "subreddit": ["CFB", "VirginiaTech", "OSU"], "discord": ["vt", "UBJQRyvf", "b3M5mZBre5", "qAD9YX7"]}, "path": {"188-258": [[-1160, -325], [-1110, -325], [-1111, -320], [-1106, -312], [-1096, -312], [-1096, -297], [-1121, -297], [-1121, -277], [-1154, -279]]}, "center": {"188-258": [-1138, -306]}}, +{"id": 2295, "name": "Taiwan beer", "description": "Gold Medal Taiwan beer", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan_Beer#Beers"]}, "path": {"246-258, T": [[-39, 566], [-39, 574], [-33, 574], [-33, 566]]}, "center": {"246-258, T": [-36, 570]}}, +{"id": 2296, "name": "The HAL Tejas", "description": "The HAL Tejas (lit. \"Brilliance\"), is an Indian single-engine, canard delta wing, multirole combat aircraft designed by the Aeronautical Development Agency (ADA) in collaboration with Aircraft Research and Design Centre (ARDC) of Hindustan Aeronautics Limited (HAL) for the Indian Air Force (IAF). It will be succeeded by the Mk2 in the future.", "links": {"website": ["https://en.wikipedia.org/wiki/HAL_Tejas", "https://en.wikipedia.org/wiki/HAL_Tejas_Mk2"], "subreddit": ["india"]}, "path": {"216-258, T": [[314, -265], [314, -263], [358, -263], [362, -261], [368, -261], [369, -263], [371, -261], [372, -262], [375, -262], [382, -255], [386, -256], [382, -262], [385, -261], [400, -261], [408, -264], [417, -264], [417, -266], [407, -266], [397, -270], [395, -270], [397, -279], [391, -279], [385, -272], [382, -272], [383, -276], [380, -276], [385, -284], [381, -284], [375, -274], [374, -272], [371, -272], [371, -271], [370, -272], [360, -272], [360, -271], [356, -269], [349, -268], [338, -266], [338, -265]]}, "center": {"216-258, T": [389, -267]}}, +{"id": 2297, "name": "MINI PENIS POW(ER)", "description": "The logos of 12 schools in the Big 10, an athletic conference consisting of American universities. Was originally supposed to say \"MINI PENIS POWER\", however the last two letters were covered up.", "links": {"website": ["https://bigten.org"], "subreddit": ["CFB", "VirginiaTech", "OSU"], "discord": ["vt", "UBJQRyvf", "b3M5mZBre5", "qAD9YX7"]}, "path": {"188-258, T": [[-1160, -325], [-1110, -325], [-1111, -320], [-1106, -312], [-1096, -312], [-1096, -297], [-1121, -297], [-1121, -277], [-1154, -279]]}, "center": {"188-258, T": [-1138, -306]}}, {"id": 2298, "name": "FrauMauzenberger", "description": "FrauMauzenberger is a small Twitch Partner and german Vtuber. She does cozy gaming streams and informative Videos about japan, the japanese language and culture. Her stream is considered a safe space for people of every group.", "links": {"website": ["https://www.twitch.tv/fraumauzenberger/"], "discord": ["FrauMauzenberger"]}, "path": {"215": [[-1500, -710], [-1487, -710], [-1487, -699], [-1500, -699]]}, "center": {"215": [-1493, -704]}}, -{"id": 2299, "name": "Luck and Pluck", "description": "Luck and Pluck is a sword from the manga Jojo's Bizarre Adventure, Phantom Blood.\n\nThe sword originally belongs to the dark knight Bruford, under the name Luck, but after Jonathan defeated Bruford and returned his human soul to him even if only for a brief moment. Bruford gave the sword to Jonathan and changed the writing using his own blood from \"Luck\" to \"Pluck\" knowing that Jonathan will need more than just Luck to defeat DIO\n\nThis was built in collaboration with the Berserk community as a part of the \"Hill of swords\" project without the help of the official Jojo subreddits.", "links": {"website": ["https://jojowiki.com/Phantom_Blood"], "subreddit": ["JoJosBizarrePlace", "Berserk"], "discord": ["4HEn7YXMSZ", "M699v8xSqz"]}, "path": {"165-258": [[595, 937], [592, 940], [592, 941], [593, 942], [593, 951], [590, 954], [590, 956], [587, 956], [587, 961], [592, 961], [592, 963], [589, 965], [589, 966], [594, 966], [595, 965], [601, 965], [601, 963], [598, 963], [598, 961], [603, 961], [603, 956], [600, 956], [600, 954], [598, 952], [598, 942], [599, 941], [599, 940], [596, 937]]}, "center": {"165-258": [595, 957]}}, +{"id": 2299, "name": "Luck and Pluck", "description": "Luck and Pluck is a sword from the manga Jojo's Bizarre Adventure, Phantom Blood.\n\nThe sword originally belongs to the dark knight Bruford, under the name Luck, but after Jonathan defeated Bruford and returned his human soul to him even if only for a brief moment. Bruford gave the sword to Jonathan and changed the writing using his own blood from \"Luck\" to \"Pluck\" knowing that Jonathan will need more than just Luck to defeat DIO\n\nThis was built in collaboration with the Berserk community as a part of the \"Hill of swords\" project without the help of the official Jojo subreddits.", "links": {"website": ["https://jojowiki.com/Phantom_Blood"], "subreddit": ["JoJosBizarrePlace", "Berserk"], "discord": ["4HEn7YXMSZ", "M699v8xSqz"]}, "path": {"165-258, T": [[595, 937], [592, 940], [592, 941], [593, 942], [593, 951], [590, 954], [590, 956], [587, 956], [587, 961], [592, 961], [592, 963], [589, 965], [589, 966], [594, 966], [595, 965], [601, 965], [601, 963], [598, 963], [598, 961], [603, 961], [603, 956], [600, 956], [600, 954], [598, 952], [598, 942], [599, 941], [599, 940], [596, 937]]}, "center": {"165-258, T": [595, 957]}}, {"id": 2300, "name": "Kafka!", "description": "Kafka is a playable character from the turn-based RPG Honkai: Star Rail by Hoyoverse. Her ultimate icon is depicted in this image, made by r/KafkaMains", "links": {"subreddit": ["KafkaMains"]}, "path": {"215": [[-896, -227], [-896, -191], [-869, -191], [-869, -227]]}, "center": {"215": [-882, -209]}}, {"id": 2301, "name": "#ZeoElite", "description": "This artwork, made by the German youtuber Zeo and his community, shows him dryhumping a public bin, which is an inside joke of his community.", "links": {"website": ["https://www.youtube.com/@Zeo", "https://www.twitch.tv/zeosite"], "subreddit": ["ZeoOfficial"]}, "path": {"8-13": [[32, 308], [63, 308], [63, 321], [32, 321]]}, "center": {"8-13": [48, 315]}}, -{"id": 2302, "name": "Blueable", "description": "Blueable is the Founder of a small group called \"The Colorables\"", "links": {}, "path": {"216-258": [[491, 950], [491, 957], [498, 957], [499, 950], [496, 950], [494, 950], [492, 950]]}, "center": {"216-258": [495, 954]}}, +{"id": 2302, "name": "Blueable", "description": "Blueable is the Founder of a small group called \"The Colorables\"", "links": {}, "path": {"216-258, T": [[491, 950], [491, 957], [498, 957], [499, 950], [496, 950], [494, 950], [492, 950]]}, "center": {"216-258, T": [495, 954]}}, {"id": 2303, "name": "XQC Sucking a Banana", "description": "After the griefing of the Turkish flag by XQC, Papaplette and Mizkif, the turkish streamer Elraenn started his stream and fixed the Turkish flag. Turks driven by rage, wanted to embarrass XQC by drawing a portait of him sucking a banana. The portait was painted in less than a minute.", "links": {"website": ["https://www.twitch.tv/elraenn", "https://www.twitch.tv/xqc"]}, "path": {"216-217": [[504, 177], [506, 188], [511, 200], [528, 203], [535, 203], [536, 251], [541, 251], [541, 204], [555, 189], [566, 164], [572, 163], [556, 136], [543, 133], [527, 128], [510, 131], [507, 130], [496, 158], [500, 169]]}, "center": {"216-217": [532, 163]}}, -{"id": 2304, "name": "B1G & ACC Logos", "description": "The logos of the Big 10 and Atlantic Coast Conference (ACC), two collegiate athletic conferences in the United States. Organized by hundreds of students attending universities in both conferences.", "links": {"website": ["https://bigten.org", "https://theacc.com"], "subreddit": ["VirginiaTech", "OSU", "FSB", "IndianaUniversity", "UMD", "MichiganWolverines", "UVA"], "discord": ["UBJQRyvf", "b3M5mZBre5", "vt", "KF7FGdS", "cm3urfy"]}, "path": {"154-258": [[636, -676], [659, -676], [659, -653], [636, -653]]}, "center": {"154-258": [648, -664]}}, +{"id": 2304, "name": "B1G & ACC Logos", "description": "The logos of the Big 10 and Atlantic Coast Conference (ACC), two collegiate athletic conferences in the United States. Organized by hundreds of students attending universities in both conferences.", "links": {"website": ["https://bigten.org", "https://theacc.com"], "subreddit": ["VirginiaTech", "OSU", "FSB", "IndianaUniversity", "UMD", "MichiganWolverines", "UVA"], "discord": ["UBJQRyvf", "b3M5mZBre5", "vt", "KF7FGdS", "cm3urfy"]}, "path": {"154-258, T": [[636, -676], [659, -676], [659, -653], [636, -653]]}, "center": {"154-258, T": [648, -664]}}, {"id": 2305, "name": "Penn Central 'Mating Worm' Logo", "description": "The Penn Central Transportation Company was formed upon the merger of the Pennsylvania, New York Central, and New Haven railroads. It fell into bankruptcy merely two years after, marking the largest American bankruptcy for the time.", "links": {"website": ["https://en.wikipedia.org/wiki/Penn_Central_Transportation_Company"]}, "path": {"216-227": [[1112, 590], [1112, 593], [1118, 593], [1118, 590]]}, "center": {"216-227": [1115, 592]}}, -{"id": 2306, "name": "Factorio Cog Wheel", "description": "Logo of Factorio, a pupular construction and management simulation game developed by Czech studio 'Wube Software'. The game follows an engineer who crash-lands onto an alien planet, exploiting its resources to build a rocket to escape, while battling native insect-like attackers. The game focuses on automation of the mining, transportation, processing, and assembly of resources and products.", "links": {"website": ["https://factorio.com/"], "subreddit": ["factorio"]}, "path": {"190-258": [[-1101, 233], [-1093, 233], [-1093, 236], [-1090, 237], [-1088, 235], [-1086, 235], [-1082, 239], [-1084, 241], [-1084, 242], [-1083, 243], [-1080, 243], [-1080, 246], [-1081, 247], [-1081, 251], [-1083, 251], [-1083, 256], [-1085, 259], [-1087, 259], [-1088, 258], [-1091, 258], [-1092, 258], [-1093, 259], [-1096, 259], [-1096, 261], [-1101, 261], [-1101, 258], [-1103, 256], [-1105, 256], [-1109, 258], [-1111, 258], [-1111, 256], [-1113, 255], [-1111, 252], [-1111, 250], [-1116, 250], [-1116, 243], [-1112, 243], [-1112, 238], [-1108, 234], [-1106, 234], [-1104, 237], [-1101, 236]]}, "center": {"190-258": [-1097, 247]}}, -{"id": 2307, "name": "Phosphophyllite", "description": "The Main Character of Land of the Lustrous (Houseki no Kuni). It was organised by the discord server 'land of the lustrous r/place idk'. We thank the Dutch community (r/PlaceNL) for allowing us to make the pixel art of Phos on the flag of the Netherlands and the orange stripe representing the Oranje Boven.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous"], "discord": ["gDKwmDndPA"]}, "path": {"175-258": [[-1146, -501], [-1146, -551], [-1197, -551], [-1197, -501]]}, "center": {"175-258": [-1171, -526]}}, -{"id": 2308, "name": "Iroha Tamaki", "description": "Protagonist of \"Magia Record: Puella Magi Madoka Magica Side Story\" or simply \"MagiReco\", a spinoff of 2011's anime \"Puella Magi Madoka Magica\". MagiReco is originally a mobile game that was turned into an anime at some point. Currently, the MagiReco game is only available in Japan.\n\nIn memory of the NA servers.", "links": {"subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka", "magiarecord"]}, "path": {"216-258": [[474, 872], [474, 895], [499, 895], [499, 872]]}, "center": {"216-258": [487, 884]}}, -{"id": 2309, "name": "TSMC", "description": "Taiwan Semiconductor Manufacturing Company Limited (TSMC) is one of the most influential global semiconductor manufacturing company headquartered in Hsinchu, Taiwan. 92% of the world's most advanced semi conductors are manufactured by it and it's Taiwanese counterparts. Placed on place by place tw.", "links": {"website": ["https://placetw.com", "https://en.wikipedia.org/wiki/TSMC"], "subreddit": ["placetw"], "discord": ["8xSQKCHSnT"]}, "path": {"217-258": [[-63, 566], [-63, 585], [-33, 585], [-33, 566]]}, "center": {"217-258": [-48, 576]}}, -{"id": 2310, "name": "Flapjack", "description": "Flapjack is a bird shaped magical totem from Disney's \"The Owl House\", an American animated fantasy TV series.", "links": {"website": ["https://theowlhouse.fandom.com/wiki/Flapjack"], "subreddit": ["TheOwlHouse", "place_CentralAlliance"]}, "path": {"178-258": [[-186, 545], [-178, 545], [-178, 551], [-179, 551], [-179, 552], [-180, 552], [-180, 553], [-181, 553], [-186, 553]]}, "center": {"178-258": [-182, 549]}}, -{"id": 2311, "name": "KUSS", "description": "KUSS is a Community Project of [Twitch.tv/SephiroxTV](https://Twitch.tv/SephiroxTV) - It's purpose is to spread love and the message of the KUSS", "links": {"website": ["https://www.twitch.tv/sephiroxtv"], "discord": ["yZSnVwd8wB"]}, "path": {"217-258": [[-934, -963], [-933, -963], [-932, -963], [-931, -962], [-930, -963], [-929, -963], [-928, -963], [-927, -962], [-926, -961], [-925, -961], [-924, -960], [-925, -959], [-926, -958], [-927, -957], [-928, -957], [-929, -956], [-933, -956], [-934, -957], [-935, -957], [-936, -958], [-937, -959], [-938, -960], [-937, -961], [-936, -961], [-935, -962]]}, "center": {"217-258": [-929, -960]}}, -{"id": 2312, "name": "HOLD THE LINE", "description": "Hold the line is the communities' unification mantra, that was coined by the community.\n\nIt references the \"shield wall\" style of fighting, where everyone has to interlock shields so the wall itself stands strong against an offensive push.\n\nGenerally if each person holds their spot, and the line as a whole stands, it's far FAR harder to break through the formation.", "links": {"website": ["https://www.ironmace.com/"], "subreddit": ["DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"216-258": [[-297, 544], [-297, 542], [-296, 542], [-296, 527], [-298, 527], [-298, 525], [-297, 525], [-297, 524], [-294, 524], [-293, 524], [-293, 525], [-292, 525], [-292, 526], [-291, 526], [-291, 533], [-286, 533], [-286, 532], [-284, 532], [-284, 526], [-285, 526], [-285, 524], [-280, 524], [-280, 525], [-279, 530], [-278, 530], [-277, 529], [-277, 527], [-276, 527], [-276, 526], [-275, 526], [-275, 525], [-273, 525], [-273, 524], [-269, 524], [-269, 525], [-268, 525], [-267, 525], [-267, 526], [-266, 526], [-266, 527], [-264, 527], [-264, 526], [-264, 525], [-259, 525], [-259, 534], [-257, 535], [-257, 534], [-255, 534], [-252, 534], [-252, 527], [-253, 527], [-253, 526], [-254, 526], [-254, 525], [-254, 524], [-241, 524], [-241, 525], [-238, 525], [-238, 526], [-237, 526], [-237, 527], [-236, 527], [-236, 528], [-236, 529], [-235, 529], [-235, 540], [-236, 540], [-236, 543], [-238, 543], [-238, 544], [-241, 544], [-241, 545], [-242, 545], [-242, 546], [-235, 546], [-235, 552], [-239, 552], [-239, 550], [-243, 550], [-243, 553], [-237, 553], [-237, 557], [-243, 557], [-243, 561], [-239, 561], [-239, 560], [-238, 560], [-238, 558], [-235, 558], [-235, 566], [-249, 566], [-248, 566], [-248, 565], [-250, 565], [-250, 562], [-254, 562], [-255, 562], [-255, 563], [-254, 563], [-254, 564], [-254, 565], [-259, 565], [-258, 564], [-259, 564], [-262, 560], [-264, 565], [-267, 565], [-267, 564], [-272, 564], [-272, 565], [-278, 565], [-278, 564], [-279, 563], [-279, 562], [-278, 562], [-278, 561], [-277, 561], [-277, 556], [-278, 556], [-278, 555], [-279, 555], [-279, 554], [-279, 553], [-278, 553], [-278, 552], [-277, 552], [-277, 551], [-276, 550], [-277, 549], [-276, 549], [-276, 544], [-280, 544], [-281, 545], [-284, 545], [-285, 545], [-285, 544], [-285, 542], [-284, 541], [-283, 540], [-284, 535], [-288, 536], [-288, 537], [-292, 537], [-291, 544], [-292, 544], [-293, 545], [-293, 547], [-292, 547], [-292, 561], [-285, 561], [-284, 560], [-282, 560], [-282, 565], [-283, 565], [-298, 566], [-298, 563], [-297, 563], [-297, 548], [-298, 547], [-298, 546], [-293, 546]]}, "center": {"216-258": [-263, 547]}}, -{"id": 2313, "name": "Dimple & Psycho Helmet (Mob Psycho 100)", "description": "A mural depicting a green evil spirit called Dimple, and a crude depiction of the main protagonist of Mob Psycho 100, Mob, who's full name is Shigeo Kageyama. This specific drawing of Mob is based off the \"Psycho Helmet Cult\" that Mob accidently created during his first fight against Dimple.\n\nThe Dimple in this entry was moved from the Portugal map above it due to being erased at an earlier time during r/place 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/Mob_Psycho_100"], "subreddit": ["Mobpsycho100"]}, "path": {"195-258": [[382, 882], [382, 902], [415, 902], [415, 882]]}, "center": {"195-258": [399, 892]}}, -{"id": 2314, "name": "REWE", "description": "Rewe (stylized as REWE; German pronunciation: [ˈʁeːvə]) is a supermarket chain in Germany and the main brand of Rewe Group headquartered in Cologne. The name originated from an abbreviation of the original name \"Revisionsverband der Westkauf-Genossenschaften\" (Audit union for Westkauf-Cooperatives). With about 3,300 stores, Rewe is the second largest food retailer in Germany behind EDEKA.\n\nIn 2011, the company started a delivery service with a test run in Frankfurt am Main, which was gradually expanded to locations throughout Germany. With this approach, Rewe was a pioneer in online grocery delivery within Germany. As of 2015, they have publicised plans for investing more heavily in their online presence.\n\nTheir own store brand products are branded \"ja!\" (Discounter-price), \"REWE Beste Wahl\" (\"Normal\" price), \"REWE Feine Welt\" (High price, special items), \"REWE Bio\" (Organic), \"REWE Bio vegan\" (Organic and vegan), \"REWE Regional\" and \"REWE to go\".\n\nThe Bundesliga club 1. FC Köln is sponsored by Rewe on their jerseys until the end of the 2020–21 season.", "links": {"website": ["https://en.wikipedia.org/wiki/REWE"], "subreddit": ["placede"]}, "path": {"217-258": [[1, -565], [35, -565], [35, -554], [2, -554]]}, "center": {"217-258": [18, -559]}}, -{"id": 2315, "name": "Rewe", "description": "https://www.rewe.de/", "links": {"website": ["https://www.rewe.de/"]}, "path": {"217-258": [[35, -566], [0, -566], [0, -554], [35, -554]]}, "center": {"217-258": [18, -560]}}, -{"id": 2316, "name": "Chanson de l´Oignon", "description": "The Chanson de l´Oignon is playing at the end of every hypetrain from the German VTuber EveryLunaEver. The Origin is in the first 12h stream (1k followers special) as in the chat at some point someone came up that there is a French song, in which it is about onions. Salutes the onion.", "links": {"website": ["https://www.twitch.tv/everylunaever"], "discord": ["mondlandingserver"]}, "path": {"216-258": [[1218, -912], [1218, -891], [1227, -891], [1227, -912], [1227, -915], [1217, -915], [1217, -890], [1227, -890]]}, "center": {"216-258": [1223, -911]}}, -{"id": 2317, "name": "Potions from DaD", "description": "(From left to right)\nHealth, Protection, Invisibility, Clarity, Luck, Troll Vial", "links": {"website": ["https://www.ironmace.com/"], "subreddit": ["DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"216-258": [[-290, 499], [-290, 502], [-291, 502], [-291, 506], [-290, 506], [-290, 507], [-256, 507], [-256, 499]]}, "center": {"216-258": [-273, 503]}}, -{"id": 2318, "name": "Technoblade", "description": "Technoblade was an American YouTuber, best known in the United States for his Minecraft videos and live streams on his YouTube channel. His channel has over 16 million subscribers. He died of cancer in June 2022 at the age of 23.", "links": {"website": ["https://technoblade.com/"], "subreddit": ["Technoblade"], "discord": ["technoblade"]}, "path": {"194-258": [[-675, 992], [-660, 992], [-660, 977], [-675, 977], [-675, 980]]}, "center": {"194-258": [-667, 985]}}, +{"id": 2306, "name": "Factorio Cog Wheel", "description": "Logo of Factorio, a pupular construction and management simulation game developed by Czech studio 'Wube Software'. The game follows an engineer who crash-lands onto an alien planet, exploiting its resources to build a rocket to escape, while battling native insect-like attackers. The game focuses on automation of the mining, transportation, processing, and assembly of resources and products.", "links": {"website": ["https://factorio.com/"], "subreddit": ["factorio"]}, "path": {"190-258, T": [[-1101, 233], [-1093, 233], [-1093, 236], [-1090, 237], [-1088, 235], [-1086, 235], [-1082, 239], [-1084, 241], [-1084, 242], [-1083, 243], [-1080, 243], [-1080, 246], [-1081, 247], [-1081, 251], [-1083, 251], [-1083, 256], [-1085, 259], [-1087, 259], [-1088, 258], [-1091, 258], [-1092, 258], [-1093, 259], [-1096, 259], [-1096, 261], [-1101, 261], [-1101, 258], [-1103, 256], [-1105, 256], [-1109, 258], [-1111, 258], [-1111, 256], [-1113, 255], [-1111, 252], [-1111, 250], [-1116, 250], [-1116, 243], [-1112, 243], [-1112, 238], [-1108, 234], [-1106, 234], [-1104, 237], [-1101, 236]]}, "center": {"190-258, T": [-1097, 247]}}, +{"id": 2307, "name": "Phosphophyllite", "description": "The Main Character of Land of the Lustrous (Houseki no Kuni). It was organised by the discord server 'land of the lustrous r/place idk'. We thank the Dutch community (r/PlaceNL) for allowing us to make the pixel art of Phos on the flag of the Netherlands and the orange stripe representing the Oranje Boven.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous"], "discord": ["gDKwmDndPA"]}, "path": {"175-258, T": [[-1146, -501], [-1146, -551], [-1197, -551], [-1197, -501]]}, "center": {"175-258, T": [-1171, -526]}}, +{"id": 2308, "name": "Iroha Tamaki", "description": "Protagonist of \"Magia Record: Puella Magi Madoka Magica Side Story\" or simply \"MagiReco\", a spinoff of 2011's anime \"Puella Magi Madoka Magica\". MagiReco is originally a mobile game that was turned into an anime at some point. Currently, the MagiReco game is only available in Japan.\n\nIn memory of the NA servers.", "links": {"subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka", "magiarecord"]}, "path": {"216-258, T": [[474, 872], [474, 895], [499, 895], [499, 872]]}, "center": {"216-258, T": [487, 884]}}, +{"id": 2309, "name": "TSMC", "description": "Taiwan Semiconductor Manufacturing Company Limited (TSMC) is one of the most influential global semiconductor manufacturing company headquartered in Hsinchu, Taiwan. 92% of the world's most advanced semi conductors are manufactured by it and it's Taiwanese counterparts. Placed on place by place tw.", "links": {"website": ["https://placetw.com", "https://en.wikipedia.org/wiki/TSMC"], "subreddit": ["placetw"], "discord": ["8xSQKCHSnT"]}, "path": {"217-258, T": [[-63, 566], [-63, 585], [-33, 585], [-33, 566]]}, "center": {"217-258, T": [-48, 576]}}, +{"id": 2310, "name": "Flapjack", "description": "Flapjack is a bird shaped magical totem from Disney's \"The Owl House\", an American animated fantasy TV series.", "links": {"website": ["https://theowlhouse.fandom.com/wiki/Flapjack"], "subreddit": ["TheOwlHouse", "place_CentralAlliance"]}, "path": {"178-258, T": [[-186, 545], [-178, 545], [-178, 551], [-179, 551], [-179, 552], [-180, 552], [-180, 553], [-181, 553], [-186, 553]]}, "center": {"178-258, T": [-182, 549]}}, +{"id": 2311, "name": "KUSS", "description": "KUSS is a Community Project of [Twitch.tv/SephiroxTV](https://Twitch.tv/SephiroxTV) - It's purpose is to spread love and the message of the KUSS", "links": {"website": ["https://www.twitch.tv/sephiroxtv"], "discord": ["yZSnVwd8wB"]}, "path": {"217-258, T": [[-934, -963], [-933, -963], [-932, -963], [-931, -962], [-930, -963], [-929, -963], [-928, -963], [-927, -962], [-926, -961], [-925, -961], [-924, -960], [-925, -959], [-926, -958], [-927, -957], [-928, -957], [-929, -956], [-933, -956], [-934, -957], [-935, -957], [-936, -958], [-937, -959], [-938, -960], [-937, -961], [-936, -961], [-935, -962]]}, "center": {"217-258, T": [-929, -960]}}, +{"id": 2312, "name": "HOLD THE LINE", "description": "Hold the line is the communities' unification mantra, that was coined by the community.\n\nIt references the \"shield wall\" style of fighting, where everyone has to interlock shields so the wall itself stands strong against an offensive push.\n\nGenerally if each person holds their spot, and the line as a whole stands, it's far FAR harder to break through the formation.", "links": {"website": ["https://www.ironmace.com/"], "subreddit": ["DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"216-258, T": [[-297, 544], [-297, 542], [-296, 542], [-296, 527], [-298, 527], [-298, 525], [-297, 525], [-297, 524], [-294, 524], [-293, 524], [-293, 525], [-292, 525], [-292, 526], [-291, 526], [-291, 533], [-286, 533], [-286, 532], [-284, 532], [-284, 526], [-285, 526], [-285, 524], [-280, 524], [-280, 525], [-279, 530], [-278, 530], [-277, 529], [-277, 527], [-276, 527], [-276, 526], [-275, 526], [-275, 525], [-273, 525], [-273, 524], [-269, 524], [-269, 525], [-268, 525], [-267, 525], [-267, 526], [-266, 526], [-266, 527], [-264, 527], [-264, 526], [-264, 525], [-259, 525], [-259, 534], [-257, 535], [-257, 534], [-255, 534], [-252, 534], [-252, 527], [-253, 527], [-253, 526], [-254, 526], [-254, 525], [-254, 524], [-241, 524], [-241, 525], [-238, 525], [-238, 526], [-237, 526], [-237, 527], [-236, 527], [-236, 528], [-236, 529], [-235, 529], [-235, 540], [-236, 540], [-236, 543], [-238, 543], [-238, 544], [-241, 544], [-241, 545], [-242, 545], [-242, 546], [-235, 546], [-235, 552], [-239, 552], [-239, 550], [-243, 550], [-243, 553], [-237, 553], [-237, 557], [-243, 557], [-243, 561], [-239, 561], [-239, 560], [-238, 560], [-238, 558], [-235, 558], [-235, 566], [-249, 566], [-248, 566], [-248, 565], [-250, 565], [-250, 562], [-254, 562], [-255, 562], [-255, 563], [-254, 563], [-254, 564], [-254, 565], [-259, 565], [-258, 564], [-259, 564], [-262, 560], [-264, 565], [-267, 565], [-267, 564], [-272, 564], [-272, 565], [-278, 565], [-278, 564], [-279, 563], [-279, 562], [-278, 562], [-278, 561], [-277, 561], [-277, 556], [-278, 556], [-278, 555], [-279, 555], [-279, 554], [-279, 553], [-278, 553], [-278, 552], [-277, 552], [-277, 551], [-276, 550], [-277, 549], [-276, 549], [-276, 544], [-280, 544], [-281, 545], [-284, 545], [-285, 545], [-285, 544], [-285, 542], [-284, 541], [-283, 540], [-284, 535], [-288, 536], [-288, 537], [-292, 537], [-291, 544], [-292, 544], [-293, 545], [-293, 547], [-292, 547], [-292, 561], [-285, 561], [-284, 560], [-282, 560], [-282, 565], [-283, 565], [-298, 566], [-298, 563], [-297, 563], [-297, 548], [-298, 547], [-298, 546], [-293, 546]]}, "center": {"216-258, T": [-263, 547]}}, +{"id": 2313, "name": "Dimple & Psycho Helmet (Mob Psycho 100)", "description": "A mural depicting a green evil spirit called Dimple, and a crude depiction of the main protagonist of Mob Psycho 100, Mob, who's full name is Shigeo Kageyama. This specific drawing of Mob is based off the \"Psycho Helmet Cult\" that Mob accidently created during his first fight against Dimple.\n\nThe Dimple in this entry was moved from the Portugal map above it due to being erased at an earlier time during r/place 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/Mob_Psycho_100"], "subreddit": ["Mobpsycho100"]}, "path": {"195-258, T": [[382, 882], [382, 902], [415, 902], [415, 882]]}, "center": {"195-258, T": [399, 892]}}, +{"id": 2314, "name": "REWE", "description": "Rewe (stylized as REWE; German pronunciation: [ˈʁeːvə]) is a supermarket chain in Germany and the main brand of Rewe Group headquartered in Cologne. The name originated from an abbreviation of the original name \"Revisionsverband der Westkauf-Genossenschaften\" (Audit union for Westkauf-Cooperatives). With about 3,300 stores, Rewe is the second largest food retailer in Germany behind EDEKA.\n\nIn 2011, the company started a delivery service with a test run in Frankfurt am Main, which was gradually expanded to locations throughout Germany. With this approach, Rewe was a pioneer in online grocery delivery within Germany. As of 2015, they have publicised plans for investing more heavily in their online presence.\n\nTheir own store brand products are branded \"ja!\" (Discounter-price), \"REWE Beste Wahl\" (\"Normal\" price), \"REWE Feine Welt\" (High price, special items), \"REWE Bio\" (Organic), \"REWE Bio vegan\" (Organic and vegan), \"REWE Regional\" and \"REWE to go\".\n\nThe Bundesliga club 1. FC Köln is sponsored by Rewe on their jerseys until the end of the 2020–21 season.", "links": {"website": ["https://en.wikipedia.org/wiki/REWE"], "subreddit": ["placede"]}, "path": {"217-258, T": [[1, -565], [35, -565], [35, -554], [2, -554]]}, "center": {"217-258, T": [18, -559]}}, +{"id": 2315, "name": "Rewe", "description": "https://www.rewe.de/", "links": {"website": ["https://www.rewe.de/"]}, "path": {"217-258, T": [[35, -566], [0, -566], [0, -554], [35, -554]]}, "center": {"217-258, T": [18, -560]}}, +{"id": 2316, "name": "Chanson de l´Oignon", "description": "The Chanson de l´Oignon is playing at the end of every hypetrain from the German VTuber EveryLunaEver. The Origin is in the first 12h stream (1k followers special) as in the chat at some point someone came up that there is a French song, in which it is about onions. Salutes the onion.", "links": {"website": ["https://www.twitch.tv/everylunaever"], "discord": ["mondlandingserver"]}, "path": {"216-258, T": [[1218, -912], [1218, -891], [1227, -891], [1227, -912], [1227, -915], [1217, -915], [1217, -890], [1227, -890]]}, "center": {"216-258, T": [1223, -911]}}, +{"id": 2317, "name": "Potions from DaD", "description": "(From left to right)\nHealth, Protection, Invisibility, Clarity, Luck, Troll Vial", "links": {"website": ["https://www.ironmace.com/"], "subreddit": ["DarkAndDarker"], "discord": ["darkanddarker"]}, "path": {"216-258, T": [[-290, 499], [-290, 502], [-291, 502], [-291, 506], [-290, 506], [-290, 507], [-256, 507], [-256, 499]]}, "center": {"216-258, T": [-273, 503]}}, +{"id": 2318, "name": "Technoblade", "description": "Technoblade was an American YouTuber, best known in the United States for his Minecraft videos and live streams on his YouTube channel. His channel has over 16 million subscribers. He died of cancer in June 2022 at the age of 23.", "links": {"website": ["https://technoblade.com/"], "subreddit": ["Technoblade"], "discord": ["technoblade"]}, "path": {"194-258, T": [[-675, 992], [-660, 992], [-660, 977], [-675, 977], [-675, 980]]}, "center": {"194-258, T": [-667, 985]}}, {"id": 2319, "name": "Autism Infinity Symbol", "description": "The Autism Infinity Symbol is a symbol meant to spread awareness about Autism.\n\nThe infinity symbol represents something incapable of ending, and it is often linked with a solid blue or all the colors of the rainbow. \n\nThe rainbow-colored infinity symbol is a popular symbol among autistic people and autism rights advocates, symbolizing a broad and varied spectrum of experiences. \n\nIt is often used to represent the idea of neurodiversity and the acceptance of different ways of thinking and being.", "links": {"website": ["https://youtu.be/lIvAbbVznl0"], "subreddit": ["autism"]}, "path": {"215": [[640, 942], [640, 938], [643, 936], [646, 936], [657, 936], [657, 945], [640, 945]]}, "center": {"215": [649, 941]}}, -{"id": 2320, "name": "KUSS", "description": "KUSS is a Community Project of [Twitch.tv/SephiroxTV](https://Twitch.tv/SephiroxTV) - It's purpose is to spread love and the message of the KUSS", "links": {"website": ["https://www.twitch.tv/sephiroxtv"], "discord": ["yZSnVwd8wB"]}, "path": {"216-258": [[-923, -960], [-924, -960], [-926, -961], [-927, -962], [-928, -963], [-930, -963], [-931, -962], [-932, -963], [-934, -963], [-935, -962], [-936, -961], [-937, -961], [-938, -960], [-937, -959], [-936, -958], [-935, -957], [-934, -957], [-933, -956], [-929, -956], [-928, -957], [-927, -957], [-926, -958], [-925, -959]]}, "center": {"216-258": [-933, -960]}}, -{"id": 2321, "name": "Master Sword", "description": "The Master Sword, also known as the \"Sword that Seals the Darkness\" and \"Blade of Evil's Bane\", is a recurring legendary sword in the The Legend of Zelda video game series, known for being the wielded by the hero Link, the playable character in the games.\n\nThis art was created as a contribution to the Hill of Swords.", "links": {"website": ["https://zelda.fandom.com/wiki/Master_Sword"], "subreddit": ["zelda", "Berserk"], "discord": ["rzelda", "M699v8xSqz"]}, "path": {"163-258": [[615, 954], [615, 958], [614, 959], [614, 960], [615, 961], [615, 962], [621, 962], [621, 961], [622, 960], [622, 959], [621, 958], [621, 954], [622, 953], [623, 952], [624, 953], [625, 954], [628, 954], [629, 953], [629, 952], [628, 951], [627, 950], [626, 949], [625, 948], [624, 947], [623, 946], [622, 947], [621, 948], [621, 947], [620, 945], [620, 935], [621, 934], [621, 933], [620, 932], [619, 931], [618, 930], [617, 931], [616, 932], [615, 933], [615, 934], [616, 935], [616, 945], [615, 948], [614, 947], [613, 946], [612, 947], [611, 948], [610, 949], [609, 950], [608, 951], [607, 952], [607, 953], [608, 954], [611, 954], [612, 953], [613, 952], [614, 953]]}, "center": {"163-258": [618, 951]}}, -{"id": 2322, "name": "Men I Trust", "description": "Men I Trust is a Canadian indie band from Montreal, Quebec. Formed in 2014, the band consists of Jessy Caron, Dragos Chiriac, and Emmanuelle Proulx.", "links": {"website": ["https://menitrust.tumblr.com/"], "subreddit": ["menitrust"], "discord": ["sUbczPJU"]}, "path": {"173-258": [[-60, 951], [-52, 951], [-52, 961], [-60, 961]]}, "center": {"173-258": [-56, 956]}}, -{"id": 2323, "name": "Obey Me! MC", "description": "A pink sheep, which is the symbol that represents the player character in the mobile dating sim \"Obey Me! Shall We Date?\" This was created by the subreddits r/obeyme and r/otomegames.", "links": {"subreddit": ["obeyme"]}, "path": {"218-258": [[-1440, -343], [-1426, -343], [-1426, -327], [-1440, -327]]}, "center": {"218-258": [-1433, -335]}}, -{"id": 2324, "name": "The 5 Stars", "description": "The 5 stars representing 5 times that Brazil won the FIFA World Cup. Those being the 1958, 1962, 1970, 1994 and 2002 editions.", "links": {"website": ["https://en.wikipedia.org/wiki/Brazilian_Football_Confederation"], "subreddit": ["brasil"]}, "path": {"218-258": [[175, 311], [175, 306], [175, 305], [174, 305], [174, 303], [177, 303], [177, 302], [178, 302], [178, 300], [179, 299], [187, 295], [190, 295], [190, 294], [191, 294], [191, 292], [192, 292], [192, 291], [206, 291], [206, 290], [208, 290], [208, 291], [222, 291], [222, 292], [223, 292], [223, 294], [224, 294], [224, 295], [227, 295], [235, 299], [236, 300], [236, 302], [237, 302], [237, 303], [240, 303], [240, 305], [239, 305], [239, 306], [238, 306], [238, 308], [239, 308], [239, 311], [237, 311], [235, 309], [233, 311], [231, 311], [231, 308], [232, 308], [232, 306], [231, 306], [231, 305], [230, 305], [230, 303], [224, 303], [222, 301], [220, 303], [218, 303], [218, 300], [209, 300], [207, 298], [205, 300], [203, 300], [196, 300], [196, 303], [194, 303], [188, 303], [184, 305], [183, 305], [183, 306], [182, 308], [183, 308], [183, 311], [181, 311], [179, 309], [177, 311]]}, "center": {"218-258": [218, 296]}}, -{"id": 2325, "name": "The Final Clean", "description": "The pixel janitors that every /r/place focus on making a final, cleaned up version of the canvas, free of stray pixels and other blemishes.", "links": {"subreddit": ["TheFinalClean"], "discord": ["HDyNFKxb"]}, "path": {"97-258": [[-650, -309], [-669, -309], [-669, -306], [-658, -306], [-657, -297], [-649, -297], [-649, -309]]}, "center": {"97-258": [-653, -304]}}, -{"id": 2326, "name": "Viking sword from DaD", "description": "A viking sword from DaD. \nUsed to extract valuables from less fortunate adventurers.", "links": {}, "path": {"218-258": [[-296, 523], [-296, 517], [-255, 517], [-256, 523]]}, "center": {"218-258": [-275, 520]}}, -{"id": 2327, "name": "The potions", "description": "Various potions from the game \"Dark and darker\". \nIn-game, the character drinks said potions to obtain different kinds of buffs to their character. \n\nFrom left to right they are;\nHealing potion, \nPotion of protection, \nInvisibility potion, \nClarity potion, \n(Speculated) Luck potion\n and Trolls blood.", "links": {}, "path": {"217-258": [[-291, 499], [-256, 499], [-256, 507], [-291, 507]]}, "center": {"217-258": [-273, 503]}}, -{"id": 2328, "name": "Your Turn To Die", "description": "Your Turn to Die (YTTD) is a negotiation/adventure game by Nankidai about a deadly game, where the participants choose who dies.", "links": {"website": ["https://en.wikipedia.org/wiki/Kimi_ga_Shine_-Tas%C5%ABketsu_Death_Game-"], "subreddit": ["YTTD"], "discord": ["yttd"]}, "path": {"203-258": [[1227, 359], [1227, 411], [1285, 411], [1284, 359]]}, "center": {"203-258": [1256, 385]}}, -{"id": 2329, "name": "Tricky the clown", "description": "In the \"Madness Combat\" series, Tricky is a formidable and ruthless foe who always seems to resurrect and return even after being repeatedly defeated. He possesses supernatural abilities and is known for his ferocity and relentless aggressiveness.\n\nHowever, Tricky made an exciting leap into another popular game called \"Friday Night Funkin'.\" In this rhythm game, Tricky became one of the most challenging opponents in the mod made by Banbuds, Rozebud, KadeDev, Cval, where players must face him in a series of intense rap battles.\n\nThis was drawn by the argentine/uruguay streamer FranquitoM", "links": {"website": ["https://www.twitch.tv/franqitom"]}, "path": {"217-258": [[1436, 247], [1435, 243], [1431, 243], [1430, 240], [1430, 237], [1435, 234], [1440, 234], [1451, 235], [1457, 241], [1460, 251], [1462, 261], [1467, 261], [1472, 256], [1481, 256], [1492, 267], [1491, 274], [1495, 281], [1496, 285], [1487, 289], [1484, 288], [1475, 299], [1470, 297], [1471, 300], [1484, 311], [1484, 322], [1480, 324], [1469, 323], [1463, 319], [1460, 318], [1454, 317], [1447, 323], [1445, 324], [1430, 322], [1425, 316], [1424, 312], [1436, 305], [1433, 299], [1425, 283], [1408, 279], [1405, 276], [1404, 273], [1401, 265], [1402, 260], [1401, 255], [1402, 244], [1409, 239], [1417, 240], [1419, 243], [1417, 247], [1416, 251], [1421, 253], [1426, 249], [1435, 247]]}, "center": {"217-258": [1451, 282]}}, -{"id": 2330, "name": "Little Bon Bon", "description": "A tiny artwork depicting the gen1 Pony \"Bon Bon\" from the original My Little Pony toy series. Her presence on the PAF mural is due to LBB's alliance with r/Lain. r/Lain originally adopted LBB when they were situated next to r/EightySix, and brought the Pony with them as they traveled around the Canvas.", "links": {}, "path": {"218-258": [[-699, -139], [-699, -137], [-696, -137], [-698, -136], [-698, -139], [-697, -138], [-696, -136], [-696, -135], [-695, -136], [-696, -137], [-695, -137], [-698, -136], [-698, -135]]}, "center": {"218-258": [-697, -137]}}, -{"id": 2331, "name": "'TIKU' Gamertag", "description": "Tried my name 'TIMO' until I noticed I screwed up with the M (too small) - so I changed it to 'TIKU' (short for Tikurai)\n\n[If someone from ByNT/DigiWhos reads this, moin servus! 4407 <3]", "links": {}, "path": {"204-258": [[1450, 124], [1450, 126], [1462, 126], [1462, 124]]}, "center": {"204-258": [1456, 125]}}, -{"id": 2332, "name": "Torch from DaD", "description": "A skeleton arm holding up the default torch from DaD", "links": {}, "path": {"218-258": [[-305, 495], [-305, 464], [-298, 464], [-298, 495], [-300, 495]]}, "center": {"218-258": [-301, 480]}}, -{"id": 2333, "name": "r/PlaceFishCult tank", "description": "A gathering of friends by a small group dedicated to making fish in Reddit's r/place.", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"108-258": [[477, -294], [499, -294], [499, -285], [477, -285]]}, "center": {"108-258": [488, -289]}}, -{"id": 2334, "name": "Autism Infinity Symbol", "description": "The Rainbow Infinity Symbol, is a symbol that represents autism, and the autism rights movement. It represents the infinite variation of the people in the movement, and of the infinite variation of the human condition as a whole.", "links": {"website": ["https://en.wikipedia.org/wiki/Autism_rights_movement", "https://en.wikipedia.org/wiki/Autism_spectrum"], "subreddit": ["autism"]}, "path": {"217-258": [[641, 935], [641, 934], [658, 935], [658, 945], [640, 945], [640, 934]]}, "center": {"217-258": [649, 940]}}, -{"id": 2335, "name": "Phililpine Flag Logo", "description": "Originally, a long Philippine flag was placed there but after negotiations with r/placestart we agreed to become a logo instead", "links": {"subreddit": ["2philippines4u"], "discord": ["nutribun-republic-996688646063271996"]}, "path": {"218-258": [[-737, 973], [-732, 973], [-726, 974], [-721, 973], [-716, 974], [-714, 977], [-714, 982], [-714, 987], [-714, 992], [-715, 999], [-723, 999], [-730, 998], [-737, 997], [-740, 996], [-740, 989], [-739, 976]]}, "center": {"218-258": [-727, 986]}}, -{"id": 2336, "name": "Soulfire torch from DaD", "description": "A skin for the default torch in DaD", "links": {}, "path": {"218-258": [[-242, 463], [-240, 496], [-235, 496], [-234, 464], [-238, 463]]}, "center": {"218-258": [-238, 467]}}, -{"id": 2337, "name": "Yui Hirasawa (K-On!)", "description": "The head of Yui Hirasawa, the lead guitarist and lead vocalist of Ho-kago Tea Time from the anime series K-On!", "links": {"subreddit": ["k_on"], "discord": ["kon"]}, "path": {"218-258": [[681, 678], [688, 678], [688, 679], [689, 679], [689, 680], [690, 680], [690, 681], [691, 681], [691, 683], [692, 683], [692, 689], [691, 689], [691, 691], [690, 691], [690, 692], [689, 692], [689, 693], [688, 693], [687, 693], [687, 692], [682, 692], [682, 693], [679, 693], [679, 692], [678, 692], [678, 691], [677, 691], [677, 689], [676, 689], [676, 685], [677, 685], [677, 681], [678, 681], [678, 680], [679, 680], [679, 679], [680, 679], [680, 678]]}, "center": {"218-258": [684, 685]}}, -{"id": 2338, "name": "Austrian Ku", "description": "Ku is an owl from the video game Ori and the Will of the Wisps. She is Ori's adopted sister.", "links": {"website": ["https://www.orithegame.com"], "subreddit": ["oriandtheblindforest"], "discord": ["bawvbxZgAE"]}, "path": {"217-258": [[39, -47], [39, -43], [37, -40], [40, -37], [42, -30], [42, -28], [22, -28], [22, -30], [23, -33], [24, -37], [25, -40], [25, -45], [28, -47], [30, -47], [31, -42], [29, -41], [33, -41], [33, -44], [37, -47]]}, "center": {"217-258": [31, -34]}}, +{"id": 2320, "name": "KUSS", "description": "KUSS is a Community Project of [Twitch.tv/SephiroxTV](https://Twitch.tv/SephiroxTV) - It's purpose is to spread love and the message of the KUSS", "links": {"website": ["https://www.twitch.tv/sephiroxtv"], "discord": ["yZSnVwd8wB"]}, "path": {"216-258, T": [[-923, -960], [-924, -960], [-926, -961], [-927, -962], [-928, -963], [-930, -963], [-931, -962], [-932, -963], [-934, -963], [-935, -962], [-936, -961], [-937, -961], [-938, -960], [-937, -959], [-936, -958], [-935, -957], [-934, -957], [-933, -956], [-929, -956], [-928, -957], [-927, -957], [-926, -958], [-925, -959]]}, "center": {"216-258, T": [-933, -960]}}, +{"id": 2321, "name": "Master Sword", "description": "The Master Sword, also known as the \"Sword that Seals the Darkness\" and \"Blade of Evil's Bane\", is a recurring legendary sword in the The Legend of Zelda video game series, known for being the wielded by the hero Link, the playable character in the games.\n\nThis art was created as a contribution to the Hill of Swords.", "links": {"website": ["https://zelda.fandom.com/wiki/Master_Sword"], "subreddit": ["zelda", "Berserk"], "discord": ["rzelda", "M699v8xSqz"]}, "path": {"163-258, T": [[615, 954], [615, 958], [614, 959], [614, 960], [615, 961], [615, 962], [621, 962], [621, 961], [622, 960], [622, 959], [621, 958], [621, 954], [622, 953], [623, 952], [624, 953], [625, 954], [628, 954], [629, 953], [629, 952], [628, 951], [627, 950], [626, 949], [625, 948], [624, 947], [623, 946], [622, 947], [621, 948], [621, 947], [620, 945], [620, 935], [621, 934], [621, 933], [620, 932], [619, 931], [618, 930], [617, 931], [616, 932], [615, 933], [615, 934], [616, 935], [616, 945], [615, 948], [614, 947], [613, 946], [612, 947], [611, 948], [610, 949], [609, 950], [608, 951], [607, 952], [607, 953], [608, 954], [611, 954], [612, 953], [613, 952], [614, 953]]}, "center": {"163-258, T": [618, 951]}}, +{"id": 2322, "name": "Men I Trust", "description": "Men I Trust is a Canadian indie band from Montreal, Quebec. Formed in 2014, the band consists of Jessy Caron, Dragos Chiriac, and Emmanuelle Proulx.", "links": {"website": ["https://menitrust.tumblr.com/"], "subreddit": ["menitrust"], "discord": ["sUbczPJU"]}, "path": {"173-258, T": [[-60, 951], [-52, 951], [-52, 961], [-60, 961]]}, "center": {"173-258, T": [-56, 956]}}, +{"id": 2323, "name": "Obey Me! MC", "description": "A pink sheep, which is the symbol that represents the player character in the mobile dating sim \"Obey Me! Shall We Date?\" This was created by the subreddits r/obeyme and r/otomegames.", "links": {"subreddit": ["obeyme"]}, "path": {"218-258, T": [[-1440, -343], [-1426, -343], [-1426, -327], [-1440, -327]]}, "center": {"218-258, T": [-1433, -335]}}, +{"id": 2324, "name": "The 5 Stars", "description": "The 5 stars representing 5 times that Brazil won the FIFA World Cup. Those being the 1958, 1962, 1970, 1994 and 2002 editions.", "links": {"website": ["https://en.wikipedia.org/wiki/Brazilian_Football_Confederation"], "subreddit": ["brasil"]}, "path": {"218-258, T": [[175, 311], [175, 306], [175, 305], [174, 305], [174, 303], [177, 303], [177, 302], [178, 302], [178, 300], [179, 299], [187, 295], [190, 295], [190, 294], [191, 294], [191, 292], [192, 292], [192, 291], [206, 291], [206, 290], [208, 290], [208, 291], [222, 291], [222, 292], [223, 292], [223, 294], [224, 294], [224, 295], [227, 295], [235, 299], [236, 300], [236, 302], [237, 302], [237, 303], [240, 303], [240, 305], [239, 305], [239, 306], [238, 306], [238, 308], [239, 308], [239, 311], [237, 311], [235, 309], [233, 311], [231, 311], [231, 308], [232, 308], [232, 306], [231, 306], [231, 305], [230, 305], [230, 303], [224, 303], [222, 301], [220, 303], [218, 303], [218, 300], [209, 300], [207, 298], [205, 300], [203, 300], [196, 300], [196, 303], [194, 303], [188, 303], [184, 305], [183, 305], [183, 306], [182, 308], [183, 308], [183, 311], [181, 311], [179, 309], [177, 311]]}, "center": {"218-258, T": [218, 296]}}, +{"id": 2325, "name": "The Final Clean", "description": "The pixel janitors that every /r/place focus on making a final, cleaned up version of the canvas, free of stray pixels and other blemishes.", "links": {"subreddit": ["TheFinalClean"], "discord": ["HDyNFKxb"]}, "path": {"97-258, T": [[-650, -309], [-669, -309], [-669, -306], [-658, -306], [-657, -297], [-649, -297], [-649, -309]]}, "center": {"97-258, T": [-653, -304]}}, +{"id": 2326, "name": "Viking sword from DaD", "description": "A viking sword from DaD. \nUsed to extract valuables from less fortunate adventurers.", "links": {}, "path": {"218-258, T": [[-296, 523], [-296, 517], [-255, 517], [-256, 523]]}, "center": {"218-258, T": [-275, 520]}}, +{"id": 2327, "name": "The potions", "description": "Various potions from the game \"Dark and darker\". \nIn-game, the character drinks said potions to obtain different kinds of buffs to their character. \n\nFrom left to right they are;\nHealing potion, \nPotion of protection, \nInvisibility potion, \nClarity potion, \n(Speculated) Luck potion\n and Trolls blood.", "links": {}, "path": {"217-258, T": [[-291, 499], [-256, 499], [-256, 507], [-291, 507]]}, "center": {"217-258, T": [-273, 503]}}, +{"id": 2328, "name": "Your Turn To Die", "description": "Your Turn to Die (YTTD) is a negotiation/adventure game by Nankidai about a deadly game, where the participants choose who dies.", "links": {"website": ["https://en.wikipedia.org/wiki/Kimi_ga_Shine_-Tas%C5%ABketsu_Death_Game-"], "subreddit": ["YTTD"], "discord": ["yttd"]}, "path": {"203-258, T": [[1227, 359], [1227, 411], [1285, 411], [1284, 359]]}, "center": {"203-258, T": [1256, 385]}}, +{"id": 2329, "name": "Tricky the clown", "description": "In the \"Madness Combat\" series, Tricky is a formidable and ruthless foe who always seems to resurrect and return even after being repeatedly defeated. He possesses supernatural abilities and is known for his ferocity and relentless aggressiveness.\n\nHowever, Tricky made an exciting leap into another popular game called \"Friday Night Funkin'.\" In this rhythm game, Tricky became one of the most challenging opponents in the mod made by Banbuds, Rozebud, KadeDev, Cval, where players must face him in a series of intense rap battles.\n\nThis was drawn by the argentine/uruguay streamer FranquitoM", "links": {"website": ["https://www.twitch.tv/franqitom"]}, "path": {"217-258, T": [[1436, 247], [1435, 243], [1431, 243], [1430, 240], [1430, 237], [1435, 234], [1440, 234], [1451, 235], [1457, 241], [1460, 251], [1462, 261], [1467, 261], [1472, 256], [1481, 256], [1492, 267], [1491, 274], [1495, 281], [1496, 285], [1487, 289], [1484, 288], [1475, 299], [1470, 297], [1471, 300], [1484, 311], [1484, 322], [1480, 324], [1469, 323], [1463, 319], [1460, 318], [1454, 317], [1447, 323], [1445, 324], [1430, 322], [1425, 316], [1424, 312], [1436, 305], [1433, 299], [1425, 283], [1408, 279], [1405, 276], [1404, 273], [1401, 265], [1402, 260], [1401, 255], [1402, 244], [1409, 239], [1417, 240], [1419, 243], [1417, 247], [1416, 251], [1421, 253], [1426, 249], [1435, 247]]}, "center": {"217-258, T": [1451, 282]}}, +{"id": 2330, "name": "Little Bon Bon", "description": "A tiny artwork depicting the gen1 Pony \"Bon Bon\" from the original My Little Pony toy series. Her presence on the PAF mural is due to LBB's alliance with r/Lain. r/Lain originally adopted LBB when they were situated next to r/EightySix, and brought the Pony with them as they traveled around the Canvas.", "links": {}, "path": {"218-258, T": [[-699, -139], [-699, -137], [-696, -137], [-698, -136], [-698, -139], [-697, -138], [-696, -136], [-696, -135], [-695, -136], [-696, -137], [-695, -137], [-698, -136], [-698, -135]]}, "center": {"218-258, T": [-697, -137]}}, +{"id": 2331, "name": "'TIKU' Gamertag", "description": "Tried my name 'TIMO' until I noticed I screwed up with the M (too small) - so I changed it to 'TIKU' (short for Tikurai)\n\n[If someone from ByNT/DigiWhos reads this, moin servus! 4407 <3]", "links": {}, "path": {"204-258, T": [[1450, 124], [1450, 126], [1462, 126], [1462, 124]]}, "center": {"204-258, T": [1456, 125]}}, +{"id": 2332, "name": "Torch from DaD", "description": "A skeleton arm holding up the default torch from DaD", "links": {}, "path": {"218-258, T": [[-305, 495], [-305, 464], [-298, 464], [-298, 495], [-300, 495]]}, "center": {"218-258, T": [-301, 480]}}, +{"id": 2333, "name": "r/PlaceFishCult tank", "description": "A gathering of friends by a small group dedicated to making fish in Reddit's r/place.", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"108-258, T": [[477, -294], [499, -294], [499, -285], [477, -285]]}, "center": {"108-258, T": [488, -289]}}, +{"id": 2334, "name": "Autism Infinity Symbol", "description": "The Rainbow Infinity Symbol, is a symbol that represents autism, and the autism rights movement. It represents the infinite variation of the people in the movement, and of the infinite variation of the human condition as a whole.", "links": {"website": ["https://en.wikipedia.org/wiki/Autism_rights_movement", "https://en.wikipedia.org/wiki/Autism_spectrum"], "subreddit": ["autism"]}, "path": {"217-258, T": [[641, 935], [641, 934], [658, 935], [658, 945], [640, 945], [640, 934]]}, "center": {"217-258, T": [649, 940]}}, +{"id": 2335, "name": "Phililpine Flag Logo", "description": "Originally, a long Philippine flag was placed there but after negotiations with r/placestart we agreed to become a logo instead", "links": {"subreddit": ["2philippines4u"], "discord": ["nutribun-republic-996688646063271996"]}, "path": {"218-258, T": [[-737, 973], [-732, 973], [-726, 974], [-721, 973], [-716, 974], [-714, 977], [-714, 982], [-714, 987], [-714, 992], [-715, 999], [-723, 999], [-730, 998], [-737, 997], [-740, 996], [-740, 989], [-739, 976]]}, "center": {"218-258, T": [-727, 986]}}, +{"id": 2336, "name": "Soulfire torch from DaD", "description": "A skin for the default torch in DaD", "links": {}, "path": {"218-258, T": [[-242, 463], [-240, 496], [-235, 496], [-234, 464], [-238, 463]]}, "center": {"218-258, T": [-238, 467]}}, +{"id": 2337, "name": "Yui Hirasawa (K-On!)", "description": "The head of Yui Hirasawa, the lead guitarist and lead vocalist of Ho-kago Tea Time from the anime series K-On!", "links": {"subreddit": ["k_on"], "discord": ["kon"]}, "path": {"218-258, T": [[681, 678], [688, 678], [688, 679], [689, 679], [689, 680], [690, 680], [690, 681], [691, 681], [691, 683], [692, 683], [692, 689], [691, 689], [691, 691], [690, 691], [690, 692], [689, 692], [689, 693], [688, 693], [687, 693], [687, 692], [682, 692], [682, 693], [679, 693], [679, 692], [678, 692], [678, 691], [677, 691], [677, 689], [676, 689], [676, 685], [677, 685], [677, 681], [678, 681], [678, 680], [679, 680], [679, 679], [680, 679], [680, 678]]}, "center": {"218-258, T": [684, 685]}}, +{"id": 2338, "name": "Austrian Ku", "description": "Ku is an owl from the video game Ori and the Will of the Wisps. She is Ori's adopted sister.", "links": {"website": ["https://www.orithegame.com"], "subreddit": ["oriandtheblindforest"], "discord": ["bawvbxZgAE"]}, "path": {"217-258, T": [[39, -47], [39, -43], [37, -40], [40, -37], [42, -30], [42, -28], [22, -28], [22, -30], [23, -33], [24, -37], [25, -40], [25, -45], [28, -47], [30, -47], [31, -42], [29, -41], [33, -41], [33, -44], [37, -47]]}, "center": {"217-258, T": [31, -34]}}, {"id": 2339, "name": "PUMAS UNAM", "description": "Club Universidad Nacional, commonly called Pumas, is a professional football club of the National Autonomous University of Mexico (abbreviated as UNAM in Spanish) based in Mexico City. The club competes in the Liga MX, the top division in the Mexican football league system. They have a puma's face in their logo.", "links": {"website": ["https://en.wikipedia.org/wiki/Club_Universidad_Nacional"], "subreddit": ["PumasUnam"]}, "path": {"206-208": [[-1500, 912], [-1475, 912], [-1475, 939], [-1500, 939]]}, "center": {"206-208": [-1487, 926]}}, -{"id": 2340, "name": "Ho-kago Tea Time Logo (K-On!)", "description": "The logo used by Ho-kago Tea Time from the anime series K-On!", "links": {"subreddit": ["k_on"], "discord": ["kon"]}, "path": {"218-258": [[259, -895], [260, -895], [260, -894], [261, -894], [261, -892], [262, -892], [262, -890], [268, -890], [268, -889], [269, -889], [269, -886], [268, -886], [268, -885], [267, -885], [267, -884], [266, -884], [266, -881], [265, -881], [265, -879], [264, -879], [264, -878], [263, -878], [263, -877], [261, -877], [261, -878], [260, -878], [260, -879], [259, -879], [259, -880], [259, -879], [258, -879], [258, -878], [257, -878], [257, -877], [255, -877], [255, -878], [254, -878], [254, -879], [253, -879], [253, -883], [252, -883], [252, -881], [250, -881], [250, -886], [249, -886], [249, -887], [248, -887], [248, -889], [250, -889], [250, -890], [256, -890], [256, -892], [257, -892], [257, -894], [258, -894], [258, -895]]}, "center": {"218-258": [259, -885]}}, -{"id": 2341, "name": "Flag of New Jericho", "description": "Flag of the Technocratic Republic of New Jericho, a fictional nation from the Discord nation roleplay server Earth's Revenge", "links": {"subreddit": ["earthsrevenge"], "discord": ["rKbkjy996m"]}, "path": {"218-258": [[1179, -794], [1191, -794], [1191, -785], [1179, -785]]}, "center": {"218-258": [1185, -789]}}, -{"id": 2342, "name": "Polnareff, Silver chariot, and the stand arrow", "description": "Allied with France, the jojo community added this emblematic french character to their flag.", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"218-258": [[-502, 267], [-477, 267], [-481, 256], [-501, 243]]}, "center": {"218-258": [-493, 259]}}, +{"id": 2340, "name": "Ho-kago Tea Time Logo (K-On!)", "description": "The logo used by Ho-kago Tea Time from the anime series K-On!", "links": {"subreddit": ["k_on"], "discord": ["kon"]}, "path": {"218-258, T": [[259, -895], [260, -895], [260, -894], [261, -894], [261, -892], [262, -892], [262, -890], [268, -890], [268, -889], [269, -889], [269, -886], [268, -886], [268, -885], [267, -885], [267, -884], [266, -884], [266, -881], [265, -881], [265, -879], [264, -879], [264, -878], [263, -878], [263, -877], [261, -877], [261, -878], [260, -878], [260, -879], [259, -879], [259, -880], [259, -879], [258, -879], [258, -878], [257, -878], [257, -877], [255, -877], [255, -878], [254, -878], [254, -879], [253, -879], [253, -883], [252, -883], [252, -881], [250, -881], [250, -886], [249, -886], [249, -887], [248, -887], [248, -889], [250, -889], [250, -890], [256, -890], [256, -892], [257, -892], [257, -894], [258, -894], [258, -895]]}, "center": {"218-258, T": [259, -885]}}, +{"id": 2341, "name": "Flag of New Jericho", "description": "Flag of the Technocratic Republic of New Jericho, a fictional nation from the Discord nation roleplay server Earth's Revenge", "links": {"subreddit": ["earthsrevenge"], "discord": ["rKbkjy996m"]}, "path": {"218-258, T": [[1179, -794], [1191, -794], [1191, -785], [1179, -785]]}, "center": {"218-258, T": [1185, -789]}}, +{"id": 2342, "name": "Polnareff, Silver chariot, and the stand arrow", "description": "Allied with France, the jojo community added this emblematic french character to their flag.", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"218-258, T": [[-502, 267], [-477, 267], [-481, 256], [-501, 243]]}, "center": {"218-258, T": [-493, 259]}}, {"id": 2343, "name": "New Flag of Poland", "description": "The new Polish Flag", "links": {"website": ["https://en.wikipedia.org/wiki/Poland"]}, "path": {"215-222": [[-1176, -26], [-1176, -6], [-1285, -6], [-1285, -26]]}, "center": {"215-222": [-1230, -16]}}, -{"id": 2344, "name": "Toothless", "description": "Toothless is a dragon from the 'How To Train your Dragon'-Franchise. He is a Night Fury and he seems to be the only one left of his kind. He together with Hiccup are two of the main characters from the movies and the series.", "links": {"website": ["https://howtotrainyourdragon.fandom.com/"], "subreddit": ["httyd"]}, "path": {"170-258": [[-56, 855], [-56, 891], [-49, 899], [-49, 905], [-42, 912], [-27, 912], [-22, 905], [-22, 899], [-17, 894], [-16, 856]]}, "center": {"170-258": [-36, 879]}}, -{"id": 2345, "name": "Spider-Woman (Gwen Stacy)", "description": "Spider-Woman (Gwen Stacy) is a superhero from Marvel Comics. The version of the character in the \"Spider-Verse\" film series is speculated to be trans by some fans. \nThis art is made by TransPlace, PlacePride and Spider-Man Place.", "links": {"subreddit": ["transplace", "PlacePride"], "discord": ["TransPlace", "MUMhGkK4un", "cQZQDYsB"]}, "path": {"111-258": [[-613, -170], [-613, -164], [-621, -158], [-621, -145], [-613, -138], [-611, -138], [-603, -145], [-603, -158], [-611, -164], [-611, -170]]}, "center": {"111-258": [-612, -152]}}, -{"id": 2346, "name": "Nathan the gay dog", "description": "This dog, named Nathan, sports the colors of the gay pride flag. Gay people are men attracted to other men.", "links": {"website": ["https://en.wikipedia.org/wiki/Spider-Woman_(Gwen_Stacy)"], "subreddit": ["PlacePride", "transplace"], "discord": ["MUMhGkK4un", "TransPlace"]}, "path": {"144-258": [[-595, -163], [-601, -158], [-601, -155], [-599, -153], [-599, -143], [-597, -141], [-589, -141], [-585, -145], [-585, -148], [-588, -151], [-588, -154], [-587, -154], [-585, -156], [-585, -158], [-591, -163]]}, "center": {"144-258": [-594, -156]}}, -{"id": 2347, "name": "Sylveon", "description": "Sylveon is a Fairy-type Pokémon from the Generation VI Pokémon games (Pokémon X/Y). It is an evolution of Eevee, a Pokémon known for its unique capability to evolve into eight different Pokémon, commonly nicknamed the Eeveelutions. Sylveon is often seen as a trans icon due to its coloration matching that of the trans flag. Its shiny version does too.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Sylveon_(Pok%C3%A9mon)"], "subreddit": ["transplace", "PlacePride"], "discord": ["TransPlace", "MUMhGkK4un"]}, "path": {"161-258": [[-573, -162], [-580, -157], [-580, -143], [-583, -141], [-583, -139], [-579, -136], [-576, -136], [-575, -135], [-575, -130], [-571, -130], [-569, -132], [-562, -132], [-560, -134], [-560, -136], [-555, -136], [-549, -141], [-549, -143], [-552, -143], [-557, -140], [-558, -140], [-559, -141], [-559, -142], [-552, -151], [-552, -152], [-556, -155], [-559, -155], [-559, -157], [-561, -159], [-562, -159], [-568, -154], [-569, -154], [-570, -155], [-570, -160], [-572, -162]]}, "center": {"161-258": [-569, -144]}}, -{"id": 2348, "name": "Tony", "description": "Tony is a character from the game EarthBound. He is a friend of Jeff Andonuts, one of the game's main characters, and is canonically gay.", "links": {"website": ["https://earthbound.fandom.com/wiki/Tony"], "subreddit": ["earthbound", "PlacePride", "transplace"], "discord": ["MUMhGkK4un", "TransPlace"]}, "path": {"166-258": [[-543, -154], [-545, -152], [-547, -152], [-547, -145], [-543, -141], [-547, -137], [-547, -136], [-545, -134], [-545, -131], [-543, -129], [-535, -129], [-532, -132], [-532, -135], [-531, -136], [-531, -137], [-535, -141], [-531, -145], [-531, -152], [-533, -152], [-535, -154]]}, "center": {"166-258": [-539, -147]}}, -{"id": 2349, "name": "Aroace flag", "description": "A pride flag for the Aromantic Asexual community\nAromanticism is a romantic orientation characterized by experiencing little to no romantic attraction.\nAsexuality is the lack of sexual attraction to others, or low or absent interest in or desire for sexual activity.", "links": {}, "path": {"213-258": [[-366, 614], [-366, 588], [-307, 588], [-307, 614]]}, "center": {"213-258": [-336, 601]}}, -{"id": 2350, "name": "Jerma985 - Sparkle On!", "description": "Jerma985, also known as Jeremy Elbertson or just Jerma, is an American live streamer, YouTuber, and voice actor known for his elaborate, \"borderline surreal\", livestreams on Twitch. Depicted here is the \"Sparkle On!\" meme, one of many jokes inside the Jerma985 community. His shirt contains the r/place 2022 \"Sus Guy\" face.", "links": {"subreddit": ["jerma985"], "discord": ["jerma"]}, "path": {"218-258": [[-1105, 153], [-1038, 154], [-1038, 126], [-1061, 126], [-1061, 116], [-1055, 116], [-1060, 113], [-1060, 108], [-1056, 103], [-1057, 89], [-1063, 87], [-1081, 88], [-1085, 96], [-1080, 98], [-1081, 104], [-1075, 109], [-1076, 113], [-1095, 118], [-1105, 126]]}, "center": {"218-258": [-1079, 134]}}, -{"id": 2351, "name": "Frida, search and rescue dog", "description": "Frida was a yellow Labrador Retriever who worked as a search and rescue dog for the Mexican Navy (SEMAR). She was deployed to help the rescue efforts in the aftermath of natural disasters. Equipped with protective goggles, harness and boots, she was trained to bark if she detected someone in need of help.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Frida_(dog)](https://en.wikipedia.org/wiki/Frida_(dog))"]}, "path": {"130-258": [[-239, 162], [-263, 162], [-263, 155], [-262, 155], [-262, 153], [-266, 153], [-266, 149], [-259, 149], [-259, 148], [-257, 148], [-257, 147], [-253, 147], [-253, 146], [-251, 146], [-251, 145], [-248, 145], [-248, 144], [-247, 144], [-247, 139], [-246, 139], [-246, 138], [-244, 138], [-244, 137], [-235, 137], [-235, 138], [-234, 139], [-234, 140], [-232, 140], [-232, 145], [-233, 145], [-234, 146], [-237, 146], [-238, 147], [-239, 152], [-240, 153], [-240, 162]]}, "center": {"130-258": [-248, 154]}}, -{"id": 2352, "name": "Block_Up", "description": "Two Blocklets and the Logo representing an indie two-player 2D puzzle platformer with a focus on teamwork.\n\nThe blue Blocklet on the left can place blocks, whilst the red Blocklet on the right can break them.", "links": {"website": ["https://leonkax.itch.io/blockup"], "subreddit": ["Block_Up"], "discord": ["5VTkDScBsd"]}, "path": {"181-258": [[972, 132], [998, 132], [998, 140], [972, 140]]}, "center": {"181-258": [985, 136]}}, -{"id": 2353, "name": "Frisk", "description": "Frisk is the player character in the game Undertale. Frisk uses they/them pronouns in the game and is seen as non-binary/non-genderconforming by most of the Undertale community, their gender identity has been labled as \"Androgynous\" by the creator of the game.", "links": {"website": ["https://undertale.fandom.com/wiki/Frisk"], "subreddit": ["Undertale", "PlacePride", "transplace", "friskundertale"], "discord": ["MUMhGkK4un", "TransPlace", "H42xxVbjED"]}, "path": {"158-258": [[-611, -138], [-614, -136], [-616, -132], [-616, -122], [-614, -120], [-614, -117], [-603, -117], [-603, -120], [-604, -120], [-604, -123], [-600, -123], [-600, -126], [-603, -128], [-603, -134], [-607, -138]]}, "center": {"158-258": [-609, -130]}}, -{"id": 2354, "name": "Chara", "description": "Chara is a character from the 2015 hit indie video game, Undertale. Chara's story takes place years before the events in the game, as Chara was the first child that fell down into the Underground, and was subsequently the first child to die and the first human soul to be collected. Both Chara and Frisk (the protagonist) use they/them pronouns in the game and are seen as non-binary/non-genderconforming by most of the Undertale community, though their gender identities have never been confirmed by the game's creator.", "links": {"website": ["https://undertale.fandom.com/wiki/Chara"], "subreddit": ["Undertale", "PlacePride", "transplace", "charadefensesquad", "charaoffensesquad"], "discord": ["MUMhGkK4un", "TransPlace", "H42xxVbjED"]}, "path": {"155-258": [[-596, -138], [-600, -134], [-600, -127], [-602, -125], [-600, -123], [-598, -123], [-598, -120], [-599, -120], [-599, -117], [-589, -117], [-589, -120], [-587, -122], [-587, -133], [-589, -136], [-592, -138]]}, "center": {"155-258": [-594, -128]}}, -{"id": 2355, "name": "Rainbow Borb", "description": "A Borb is a blob character from the game Leaf Blower Revolution. This Borb sports the colors of the rainbow LGBT flag.", "links": {"website": ["https://leaf-blower-revolution.fandom.com/wiki/Borbs"], "subreddit": ["PlacePride", "transplace"], "discord": ["PlacePride", "PlacePride"]}, "path": {"145-258": [[-520, -157], [-525, -153], [-525, -150], [-520, -146], [-513, -146], [-508, -150], [-508, -153], [-513, -157]]}, "center": {"145-258": [-516, -151]}}, -{"id": 2356, "name": "Emotional Support Demon", "description": "Emotional Support Demon is a mascot of Swedish YouTuber \"The Click\".", "links": {"website": ["https://www.youtube.com/channel/UCPr3T20IPZ03gU9gZ2BwM5g", "https://youtube.fandom.com/wiki/The_Click"]}, "path": {"107-258": [[-524, -140], [-527, -137], [-532, -137], [-532, -131], [-530, -129], [-530, -125], [-528, -123], [-528, -120], [-515, -120], [-515, -123], [-513, -125], [-513, -129], [-511, -131], [-511, -137], [-516, -137], [-519, -140]]}, "center": {"107-258": [-521, -130]}}, -{"id": 2357, "name": "Hooky Police / Hypnogirl", "description": "r/HypnoHookup is a subreddit for people seeking to pair up for erotic hypnosis play. \n\nDepicted is the the mascot of the subreddit discord server's moderation bot, Hooky Police. She is otherwise known as Hypnogirl to people outside the subreddit. \n\nHooky Police is known for being authoritative and assertive, and her signature glare is very well known to troublesome users. She has been the server moderation mascot since mid-2021. She has blue hair, pink eyes, and a grey shirt. The original design had to be pared back as it was difficult to maintain. \n\nHooky Police is the second server mascot to be featured on r/place. This is r/HypnoHookup's first artwork for r/place 2023, the second is located above the \"Z\" in FUCK SPEZ - a pink haired server mascot named Hooky.", "links": {"subreddit": ["HypnoHookup"], "discord": ["hypnohookup"]}, "path": {"100-258": [[-626, -128], [-629, -126], [-631, -123], [-631, -122], [-629, -120], [-629, -115], [-630, -115], [-630, -107], [-625, -107], [-625, -106], [-618, -106], [-618, -109], [-616, -112], [-616, -117], [-617, -118], [-617, -123], [-619, -126], [-622, -128]]}, "center": {"100-258": [-623, -114]}}, -{"id": 2358, "name": "Bridget", "description": "Bridget is a transgender character from the Guilty Gear game series.", "links": {"website": ["https://en.wikipedia.org/wiki/Bridget_(Guilty_Gear)"], "subreddit": ["transplace", "PlacePride"], "discord": ["TransPlace", "PlacePride"]}, "path": {"103-258": [[-600, -117], [-601, -116], [-604, -116], [-604, -112], [-605, -112], [-605, -104], [-601, -101], [-591, -101], [-589, -103], [-589, -111], [-591, -115], [-594, -117]]}, "center": {"103-258": [-597, -109]}}, -{"id": 2359, "name": "xababPride", "description": "xababPride is an emote from French streamer Xabab. It features Xabab's mascot, a bear, waving a rainbow pride flag.", "links": {"website": ["https://www.twitchmetrics.net/e/emotesv2_3aab928a6ebe4c53bafcbc8f56915d2c-xababPride"], "subreddit": ["PlacePride", "transplace"], "discord": ["PlacePride", "TransPlace"]}, "path": {"112-258": [[-582, -130], [-585, -128], [-585, -118], [-588, -118], [-591, -115], [-591, -112], [-590, -111], [-590, -106], [-586, -102], [-567, -102], [-561, -107], [-561, -109], [-563, -111], [-563, -128], [-566, -130], [-573, -130], [-575, -128], [-576, -128], [-579, -130]]}, "center": {"112-258": [-575, -114]}}, -{"id": 2360, "name": "Technoblade", "description": "Technoblade was a YouTuber for the game Minecraft known for his competitiveness and funny humor. He was part of the Minecraft content creator group Sleepy Bois Inc. (SBI), and also a part of the Minecraft series Dream SMP, where he was part of the anarchist organization The Syndicate. He contracted cancer in 2021, and passed away in June 2022.\n\nThis art depicts Technoblade's signature crown, diamond sword, and red cape.", "links": {"website": ["https://www.youtube.com/channel/UCFAiFyGs6oDiF1Nf-rRJpZA", "https://en.wikipedia.org/wiki/Technoblade", "https://youtube.fandom.com/wiki/Technoblade"], "subreddit": ["Technoblade"]}, "path": {"89-258": [[-612, -114], [-615, -111], [-615, -107], [-614, -107], [-614, -102], [-618, -98], [-620, -92], [-623, -89], [-624, -87], [-624, -84], [-618, -84], [-618, -82], [-617, -82], [-617, -79], [-605, -79], [-605, -82], [-604, -82], [-604, -88], [-608, -88], [-605, -91], [-604, -96], [-604, -98], [-608, -102], [-608, -107], [-607, -107], [-607, -111], [-610, -114]]}, "center": {"89-258": [-612, -94]}}, -{"id": 2361, "name": "PEGS Mug", "description": "A mug of coffee made by the offline chat community of the Twitch streamer Philza. They are known as Philza's Early Gang Society, PEGS, peggers(cursed nickname), and Early gang. The mug is modeled after the mug featured in Philza's sub emote ph1lEarly as that emote was added for Early gang.\n\nThe two among us inside the coffee is a reference to the same mug made during r/place 22'", "links": {"website": ["https://www.twitch.tv/philza", "https://youtube.fandom.com/wiki/Ph1LzA"], "subreddit": ["Philza"], "discord": ["philza"]}, "path": {"103-258": [[-592, -99], [-594, -97], [-594, -94], [-596, -94], [-599, -91], [-599, -85], [-596, -82], [-594, -82], [-594, -81], [-592, -79], [-581, -79], [-579, -81], [-579, -97], [-581, -99]]}, "center": {"103-258": [-587, -89]}}, -{"id": 2362, "name": "Black MIDI", "description": "Black MIDI is a music genre consisting of compositions that use the MIDI format to create a song or a remix containing a large number of notes. It is given its name due to its appearance in sheet music, being so dense it completely blackens it.", "links": {"website": ["https://en.wikipedia.org/wiki/Black_MIDI"], "subreddit": ["BlackMIDI"], "discord": ["FXHZJG7zu4"]}, "path": {"120-173": [[-556, -514], [-536, -514], [-536, -501], [-556, -501]], "96-98": [[-825, -287], [-802, -287], [-802, -274], [-825, -274]], "174-258": [[-1022, -204], [-1003, -204], [-1003, -191], [-1022, -191]]}, "center": {"120-173": [-546, -507], "96-98": [-813, -280], "174-258": [-1012, -197]}}, -{"id": 2363, "name": "Mexico City Metro", "description": "The Mexico City Metro is a rapid transit system that serves the metropolitan area of Mexico City, including some municipalities in the State of Mexico.", "links": {"website": ["https://metro.cdmx.gob.mx/la-red/mapa-de-la-red"]}, "path": {"122-258": [[-266, 162], [-266, 165], [-268, 168], [-268, 172], [-196, 171], [-196, 168], [-195, 167], [-195, 165], [-196, 165], [-196, 162]]}, "center": {"122-258": [-253, 167]}}, -{"id": 2364, "name": "VanillaGames", "description": "Vanilla Games is a small minecraft minigames server created in 2015(i think).It uses no plugins to function, hence the name Vanilla Games.\nIts logo is a chain command block with the letters VG placed on top.\nplay.vanillagames.net is the server's IP.", "links": {"website": ["https://vanillagames.net/"]}, "path": {"220-258": [[373, 886], [373, 891], [380, 892], [380, 886], [377, 886], [374, 886], [374, 890]]}, "center": {"220-258": [377, 889]}}, -{"id": 2365, "name": "Chisato Nishikigi (Lycoris Recoil)", "description": "A small pixel artwork of Chisato Nishikigi, one of the main characters of the anime series Lycoris Recoil.", "links": {"subreddit": ["LycorisRecoil"]}, "path": {"219-258": [[689, 696], [691, 696], [691, 697], [692, 697], [692, 699], [693, 699], [693, 703], [691, 703], [691, 706], [688, 706], [688, 703], [686, 703], [686, 699], [687, 699], [687, 697], [688, 697], [688, 696], [690, 696]]}, "center": {"219-258": [690, 701]}}, -{"id": 2366, "name": "Ulquiorra Cifer", "description": "A chibified version of Ulquiorra Cifer, the Cuatro (4th) Espada and an antagonist in the hit manga and anime series BLEACH, written and illustrated by Tite Kubo.\n\nIn this artwork, Ulquiorra is holding Zangetsu, Ichigo's iconic zanpakutō (sword).\n\nThis artwork was made by the BLEACH r/place Discord server. Zangetsu was added later by other members of the BLEACH community.", "links": {"website": ["https://bleach.fandom.com/wiki/Ulquiorra_Cifer", "https://bleach-anime.com/", "https://en.wikipedia.org/wiki/Bleach_(manga)"], "subreddit": ["bleach"], "discord": ["EGGZ8tBas6"]}, "path": {"211-258": [[-1341, -941], [-1345, -941], [-1345, -942], [-1346, -942], [-1346, -944], [-1347, -944], [-1347, -945], [-1348, -945], [-1348, -948], [-1350, -948], [-1350, -950], [-1351, -950], [-1351, -959], [-1350, -959], [-1350, -960], [-1349, -960], [-1349, -961], [-1348, -961], [-1348, -962], [-1347, -962], [-1347, -963], [-1344, -963], [-1344, -964], [-1342, -964], [-1342, -963], [-1338, -963], [-1338, -962], [-1337, -962], [-1337, -963], [-1336, -963], [-1336, -965], [-1335, -965], [-1335, -966], [-1332, -966], [-1332, -960], [-1333, -960], [-1333, -958], [-1334, -958], [-1334, -955], [-1333, -954], [-1334, -953], [-1334, -950], [-1340, -944]]}, "center": {"211-258": [-1342, -954]}}, -{"id": 2367, "name": "Cachaça 51", "description": "Cachaça 51 is a strong alcoholic liquor in Brazil, distilled from sugarcane. It is used in the famous Caipirinha drink.", "links": {"website": ["https://pt.wikipedia.org/wiki/Caninha_51"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"204-258": [[260, 565], [260, 570], [262, 572], [263, 595], [254, 595], [254, 578], [256, 574], [257, 571], [257, 565]]}, "center": {"204-258": [258, 583]}}, -{"id": 2368, "name": "MadeOfStyrofoam", "description": "An open forum with loose moderation to discuss self harm in all its forms", "links": {"subreddit": ["MadeOfStyrofoam"]}, "path": {"30-68": [[-318, -235], [-318, -259], [-303, -259], [-303, -235]], "164-258": [[758, 880], [758, 859], [772, 859], [772, 880]]}, "center": {"30-68": [-310, -247], "164-258": [765, 870]}}, -{"id": 2369, "name": "Omniscient Reader's Viewpoint", "description": "Omniscient Reader's Viewpoint is a apocalyptic fantasy Fiction\nKorean Web Novel written by a\nKorean author duo writing under the pen name Sing-Syong about an office worker, Kim Dokja, who enters the world of his favorite novel", "links": {"subreddit": ["OmniscientReader"]}, "path": {"220-258": [[1144, 661], [1151, 658], [1154, 656], [1159, 656], [1163, 656], [1164, 655], [1165, 656], [1171, 659], [1179, 663], [1185, 668], [1193, 674], [1194, 678], [1194, 681], [1193, 684], [1186, 687], [1169, 690], [1154, 688], [1145, 684], [1140, 678], [1139, 668]]}, "center": {"220-258": [1161, 672]}}, +{"id": 2344, "name": "Toothless", "description": "Toothless is a dragon from the 'How To Train your Dragon'-Franchise. He is a Night Fury and he seems to be the only one left of his kind. He together with Hiccup are two of the main characters from the movies and the series.", "links": {"website": ["https://howtotrainyourdragon.fandom.com/"], "subreddit": ["httyd"]}, "path": {"170-258, T": [[-56, 855], [-56, 891], [-49, 899], [-49, 905], [-42, 912], [-27, 912], [-22, 905], [-22, 899], [-17, 894], [-16, 856]]}, "center": {"170-258, T": [-36, 879]}}, +{"id": 2345, "name": "Spider-Woman (Gwen Stacy)", "description": "Spider-Woman (Gwen Stacy) is a superhero from Marvel Comics. The version of the character in the \"Spider-Verse\" film series is speculated to be trans by some fans. \nThis art is made by TransPlace, PlacePride and Spider-Man Place.", "links": {"subreddit": ["transplace", "PlacePride"], "discord": ["TransPlace", "MUMhGkK4un", "cQZQDYsB"]}, "path": {"111-258, T": [[-613, -170], [-613, -164], [-621, -158], [-621, -145], [-613, -138], [-611, -138], [-603, -145], [-603, -158], [-611, -164], [-611, -170]]}, "center": {"111-258, T": [-612, -152]}}, +{"id": 2346, "name": "Nathan the gay dog", "description": "This dog, named Nathan, sports the colors of the gay pride flag. Gay people are men attracted to other men.", "links": {"website": ["https://en.wikipedia.org/wiki/Spider-Woman_(Gwen_Stacy)"], "subreddit": ["PlacePride", "transplace"], "discord": ["MUMhGkK4un", "TransPlace"]}, "path": {"144-258, T": [[-595, -163], [-601, -158], [-601, -155], [-599, -153], [-599, -143], [-597, -141], [-589, -141], [-585, -145], [-585, -148], [-588, -151], [-588, -154], [-587, -154], [-585, -156], [-585, -158], [-591, -163]]}, "center": {"144-258, T": [-594, -156]}}, +{"id": 2347, "name": "Sylveon", "description": "Sylveon is a Fairy-type Pokémon from the Generation VI Pokémon games (Pokémon X/Y). It is an evolution of Eevee, a Pokémon known for its unique capability to evolve into eight different Pokémon, commonly nicknamed the Eeveelutions. Sylveon is often seen as a trans icon due to its coloration matching that of the trans flag. Its shiny version does too.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Sylveon_(Pok%C3%A9mon)"], "subreddit": ["transplace", "PlacePride"], "discord": ["TransPlace", "MUMhGkK4un"]}, "path": {"161-258, T": [[-573, -162], [-580, -157], [-580, -143], [-583, -141], [-583, -139], [-579, -136], [-576, -136], [-575, -135], [-575, -130], [-571, -130], [-569, -132], [-562, -132], [-560, -134], [-560, -136], [-555, -136], [-549, -141], [-549, -143], [-552, -143], [-557, -140], [-558, -140], [-559, -141], [-559, -142], [-552, -151], [-552, -152], [-556, -155], [-559, -155], [-559, -157], [-561, -159], [-562, -159], [-568, -154], [-569, -154], [-570, -155], [-570, -160], [-572, -162]]}, "center": {"161-258, T": [-569, -144]}}, +{"id": 2348, "name": "Tony", "description": "Tony is a character from the game EarthBound. He is a friend of Jeff Andonuts, one of the game's main characters, and is canonically gay.", "links": {"website": ["https://earthbound.fandom.com/wiki/Tony"], "subreddit": ["earthbound", "PlacePride", "transplace"], "discord": ["MUMhGkK4un", "TransPlace"]}, "path": {"166-258, T": [[-543, -154], [-545, -152], [-547, -152], [-547, -145], [-543, -141], [-547, -137], [-547, -136], [-545, -134], [-545, -131], [-543, -129], [-535, -129], [-532, -132], [-532, -135], [-531, -136], [-531, -137], [-535, -141], [-531, -145], [-531, -152], [-533, -152], [-535, -154]]}, "center": {"166-258, T": [-539, -147]}}, +{"id": 2349, "name": "Aroace flag", "description": "A pride flag for the Aromantic Asexual community\nAromanticism is a romantic orientation characterized by experiencing little to no romantic attraction.\nAsexuality is the lack of sexual attraction to others, or low or absent interest in or desire for sexual activity.", "links": {}, "path": {"213-258, T": [[-366, 614], [-366, 588], [-307, 588], [-307, 614]]}, "center": {"213-258, T": [-336, 601]}}, +{"id": 2350, "name": "Jerma985 - Sparkle On!", "description": "Jerma985, also known as Jeremy Elbertson or just Jerma, is an American live streamer, YouTuber, and voice actor known for his elaborate, \"borderline surreal\", livestreams on Twitch. Depicted here is the \"Sparkle On!\" meme, one of many jokes inside the Jerma985 community. His shirt contains the r/place 2022 \"Sus Guy\" face.", "links": {"subreddit": ["jerma985"], "discord": ["jerma"]}, "path": {"218-258, T": [[-1105, 153], [-1038, 154], [-1038, 126], [-1061, 126], [-1061, 116], [-1055, 116], [-1060, 113], [-1060, 108], [-1056, 103], [-1057, 89], [-1063, 87], [-1081, 88], [-1085, 96], [-1080, 98], [-1081, 104], [-1075, 109], [-1076, 113], [-1095, 118], [-1105, 126]]}, "center": {"218-258, T": [-1079, 134]}}, +{"id": 2351, "name": "Frida, search and rescue dog", "description": "Frida was a yellow Labrador Retriever who worked as a search and rescue dog for the Mexican Navy (SEMAR). She was deployed to help the rescue efforts in the aftermath of natural disasters. Equipped with protective goggles, harness and boots, she was trained to bark if she detected someone in need of help.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Frida_(dog)](https://en.wikipedia.org/wiki/Frida_(dog))"]}, "path": {"130-258, T": [[-239, 162], [-263, 162], [-263, 155], [-262, 155], [-262, 153], [-266, 153], [-266, 149], [-259, 149], [-259, 148], [-257, 148], [-257, 147], [-253, 147], [-253, 146], [-251, 146], [-251, 145], [-248, 145], [-248, 144], [-247, 144], [-247, 139], [-246, 139], [-246, 138], [-244, 138], [-244, 137], [-235, 137], [-235, 138], [-234, 139], [-234, 140], [-232, 140], [-232, 145], [-233, 145], [-234, 146], [-237, 146], [-238, 147], [-239, 152], [-240, 153], [-240, 162]]}, "center": {"130-258, T": [-248, 154]}}, +{"id": 2352, "name": "Block_Up", "description": "Two Blocklets and the Logo representing an indie two-player 2D puzzle platformer with a focus on teamwork.\n\nThe blue Blocklet on the left can place blocks, whilst the red Blocklet on the right can break them.", "links": {"website": ["https://leonkax.itch.io/blockup"], "subreddit": ["Block_Up"], "discord": ["5VTkDScBsd"]}, "path": {"181-258, T": [[972, 132], [998, 132], [998, 140], [972, 140]]}, "center": {"181-258, T": [985, 136]}}, +{"id": 2353, "name": "Frisk", "description": "Frisk is the player character in the game Undertale. Frisk uses they/them pronouns in the game and is seen as non-binary/non-genderconforming by most of the Undertale community, their gender identity has been labled as \"Androgynous\" by the creator of the game.", "links": {"website": ["https://undertale.fandom.com/wiki/Frisk"], "subreddit": ["Undertale", "PlacePride", "transplace", "friskundertale"], "discord": ["MUMhGkK4un", "TransPlace", "H42xxVbjED"]}, "path": {"158-258, T": [[-611, -138], [-614, -136], [-616, -132], [-616, -122], [-614, -120], [-614, -117], [-603, -117], [-603, -120], [-604, -120], [-604, -123], [-600, -123], [-600, -126], [-603, -128], [-603, -134], [-607, -138]]}, "center": {"158-258, T": [-609, -130]}}, +{"id": 2354, "name": "Chara", "description": "Chara is a character from the 2015 hit indie video game, Undertale. Chara's story takes place years before the events in the game, as Chara was the first child that fell down into the Underground, and was subsequently the first child to die and the first human soul to be collected. Both Chara and Frisk (the protagonist) use they/them pronouns in the game and are seen as non-binary/non-genderconforming by most of the Undertale community, though their gender identities have never been confirmed by the game's creator.", "links": {"website": ["https://undertale.fandom.com/wiki/Chara"], "subreddit": ["Undertale", "PlacePride", "transplace", "charadefensesquad", "charaoffensesquad"], "discord": ["MUMhGkK4un", "TransPlace", "H42xxVbjED"]}, "path": {"155-258, T": [[-596, -138], [-600, -134], [-600, -127], [-602, -125], [-600, -123], [-598, -123], [-598, -120], [-599, -120], [-599, -117], [-589, -117], [-589, -120], [-587, -122], [-587, -133], [-589, -136], [-592, -138]]}, "center": {"155-258, T": [-594, -128]}}, +{"id": 2355, "name": "Rainbow Borb", "description": "A Borb is a blob character from the game Leaf Blower Revolution. This Borb sports the colors of the rainbow LGBT flag.", "links": {"website": ["https://leaf-blower-revolution.fandom.com/wiki/Borbs"], "subreddit": ["PlacePride", "transplace"], "discord": ["PlacePride", "PlacePride"]}, "path": {"145-258, T": [[-520, -157], [-525, -153], [-525, -150], [-520, -146], [-513, -146], [-508, -150], [-508, -153], [-513, -157]]}, "center": {"145-258, T": [-516, -151]}}, +{"id": 2356, "name": "Emotional Support Demon", "description": "Emotional Support Demon is a mascot of Swedish YouTuber \"The Click\".", "links": {"website": ["https://www.youtube.com/channel/UCPr3T20IPZ03gU9gZ2BwM5g", "https://youtube.fandom.com/wiki/The_Click"]}, "path": {"107-258, T": [[-524, -140], [-527, -137], [-532, -137], [-532, -131], [-530, -129], [-530, -125], [-528, -123], [-528, -120], [-515, -120], [-515, -123], [-513, -125], [-513, -129], [-511, -131], [-511, -137], [-516, -137], [-519, -140]]}, "center": {"107-258, T": [-521, -130]}}, +{"id": 2357, "name": "Hooky Police / Hypnogirl", "description": "r/HypnoHookup is a subreddit for people seeking to pair up for erotic hypnosis play. \n\nDepicted is the the mascot of the subreddit discord server's moderation bot, Hooky Police. She is otherwise known as Hypnogirl to people outside the subreddit. \n\nHooky Police is known for being authoritative and assertive, and her signature glare is very well known to troublesome users. She has been the server moderation mascot since mid-2021. She has blue hair, pink eyes, and a grey shirt. The original design had to be pared back as it was difficult to maintain. \n\nHooky Police is the second server mascot to be featured on r/place. This is r/HypnoHookup's first artwork for r/place 2023, the second is located above the \"Z\" in FUCK SPEZ - a pink haired server mascot named Hooky.", "links": {"subreddit": ["HypnoHookup"], "discord": ["hypnohookup"]}, "path": {"100-258, T": [[-626, -128], [-629, -126], [-631, -123], [-631, -122], [-629, -120], [-629, -115], [-630, -115], [-630, -107], [-625, -107], [-625, -106], [-618, -106], [-618, -109], [-616, -112], [-616, -117], [-617, -118], [-617, -123], [-619, -126], [-622, -128]]}, "center": {"100-258, T": [-623, -114]}}, +{"id": 2358, "name": "Bridget", "description": "Bridget is a transgender character from the Guilty Gear game series.", "links": {"website": ["https://en.wikipedia.org/wiki/Bridget_(Guilty_Gear)"], "subreddit": ["transplace", "PlacePride"], "discord": ["TransPlace", "PlacePride"]}, "path": {"103-258, T": [[-600, -117], [-601, -116], [-604, -116], [-604, -112], [-605, -112], [-605, -104], [-601, -101], [-591, -101], [-589, -103], [-589, -111], [-591, -115], [-594, -117]]}, "center": {"103-258, T": [-597, -109]}}, +{"id": 2359, "name": "xababPride", "description": "xababPride is an emote from French streamer Xabab. It features Xabab's mascot, a bear, waving a rainbow pride flag.", "links": {"website": ["https://www.twitchmetrics.net/e/emotesv2_3aab928a6ebe4c53bafcbc8f56915d2c-xababPride"], "subreddit": ["PlacePride", "transplace"], "discord": ["PlacePride", "TransPlace"]}, "path": {"112-258, T": [[-582, -130], [-585, -128], [-585, -118], [-588, -118], [-591, -115], [-591, -112], [-590, -111], [-590, -106], [-586, -102], [-567, -102], [-561, -107], [-561, -109], [-563, -111], [-563, -128], [-566, -130], [-573, -130], [-575, -128], [-576, -128], [-579, -130]]}, "center": {"112-258, T": [-575, -114]}}, +{"id": 2360, "name": "Technoblade", "description": "Technoblade was a YouTuber for the game Minecraft known for his competitiveness and funny humor. He was part of the Minecraft content creator group Sleepy Bois Inc. (SBI), and also a part of the Minecraft series Dream SMP, where he was part of the anarchist organization The Syndicate. He contracted cancer in 2021, and passed away in June 2022.\n\nThis art depicts Technoblade's signature crown, diamond sword, and red cape.", "links": {"website": ["https://www.youtube.com/channel/UCFAiFyGs6oDiF1Nf-rRJpZA", "https://en.wikipedia.org/wiki/Technoblade", "https://youtube.fandom.com/wiki/Technoblade"], "subreddit": ["Technoblade"]}, "path": {"89-258, T": [[-612, -114], [-615, -111], [-615, -107], [-614, -107], [-614, -102], [-618, -98], [-620, -92], [-623, -89], [-624, -87], [-624, -84], [-618, -84], [-618, -82], [-617, -82], [-617, -79], [-605, -79], [-605, -82], [-604, -82], [-604, -88], [-608, -88], [-605, -91], [-604, -96], [-604, -98], [-608, -102], [-608, -107], [-607, -107], [-607, -111], [-610, -114]]}, "center": {"89-258, T": [-612, -94]}}, +{"id": 2361, "name": "PEGS Mug", "description": "A mug of coffee made by the offline chat community of the Twitch streamer Philza. They are known as Philza's Early Gang Society, PEGS, peggers(cursed nickname), and Early gang. The mug is modeled after the mug featured in Philza's sub emote ph1lEarly as that emote was added for Early gang.\n\nThe two among us inside the coffee is a reference to the same mug made during r/place 22'", "links": {"website": ["https://www.twitch.tv/philza", "https://youtube.fandom.com/wiki/Ph1LzA"], "subreddit": ["Philza"], "discord": ["philza"]}, "path": {"103-258, T": [[-592, -99], [-594, -97], [-594, -94], [-596, -94], [-599, -91], [-599, -85], [-596, -82], [-594, -82], [-594, -81], [-592, -79], [-581, -79], [-579, -81], [-579, -97], [-581, -99]]}, "center": {"103-258, T": [-587, -89]}}, +{"id": 2362, "name": "Black MIDI", "description": "Black MIDI is a music genre consisting of compositions that use the MIDI format to create a song or a remix containing a large number of notes. It is given its name due to its appearance in sheet music, being so dense it completely blackens it.", "links": {"website": ["https://en.wikipedia.org/wiki/Black_MIDI"], "subreddit": ["BlackMIDI"], "discord": ["FXHZJG7zu4"]}, "path": {"120-173": [[-556, -514], [-536, -514], [-536, -501], [-556, -501]], "96-98": [[-825, -287], [-802, -287], [-802, -274], [-825, -274]], "174-258, T": [[-1022, -204], [-1003, -204], [-1003, -191], [-1022, -191]]}, "center": {"120-173": [-546, -507], "96-98": [-813, -280], "174-258, T": [-1012, -197]}}, +{"id": 2363, "name": "Mexico City Metro", "description": "The Mexico City Metro is a rapid transit system that serves the metropolitan area of Mexico City, including some municipalities in the State of Mexico.", "links": {"website": ["https://metro.cdmx.gob.mx/la-red/mapa-de-la-red"]}, "path": {"122-258, T": [[-266, 162], [-266, 165], [-268, 168], [-268, 172], [-196, 171], [-196, 168], [-195, 167], [-195, 165], [-196, 165], [-196, 162]]}, "center": {"122-258, T": [-253, 167]}}, +{"id": 2364, "name": "VanillaGames", "description": "Vanilla Games is a small minecraft minigames server created in 2015(i think).It uses no plugins to function, hence the name Vanilla Games.\nIts logo is a chain command block with the letters VG placed on top.\nplay.vanillagames.net is the server's IP.", "links": {"website": ["https://vanillagames.net/"]}, "path": {"220-258, T": [[373, 886], [373, 891], [380, 892], [380, 886], [377, 886], [374, 886], [374, 890]]}, "center": {"220-258, T": [377, 889]}}, +{"id": 2365, "name": "Chisato Nishikigi (Lycoris Recoil)", "description": "A small pixel artwork of Chisato Nishikigi, one of the main characters of the anime series Lycoris Recoil.", "links": {"subreddit": ["LycorisRecoil"]}, "path": {"219-258, T": [[689, 696], [691, 696], [691, 697], [692, 697], [692, 699], [693, 699], [693, 703], [691, 703], [691, 706], [688, 706], [688, 703], [686, 703], [686, 699], [687, 699], [687, 697], [688, 697], [688, 696], [690, 696]]}, "center": {"219-258, T": [690, 701]}}, +{"id": 2366, "name": "Ulquiorra Cifer", "description": "A chibified version of Ulquiorra Cifer, the Cuatro (4th) Espada and an antagonist in the hit manga and anime series BLEACH, written and illustrated by Tite Kubo.\n\nIn this artwork, Ulquiorra is holding Zangetsu, Ichigo's iconic zanpakutō (sword).\n\nThis artwork was made by the BLEACH r/place Discord server. Zangetsu was added later by other members of the BLEACH community.", "links": {"website": ["https://bleach.fandom.com/wiki/Ulquiorra_Cifer", "https://bleach-anime.com/", "https://en.wikipedia.org/wiki/Bleach_(manga)"], "subreddit": ["bleach"], "discord": ["EGGZ8tBas6"]}, "path": {"211-258, T": [[-1341, -941], [-1345, -941], [-1345, -942], [-1346, -942], [-1346, -944], [-1347, -944], [-1347, -945], [-1348, -945], [-1348, -948], [-1350, -948], [-1350, -950], [-1351, -950], [-1351, -959], [-1350, -959], [-1350, -960], [-1349, -960], [-1349, -961], [-1348, -961], [-1348, -962], [-1347, -962], [-1347, -963], [-1344, -963], [-1344, -964], [-1342, -964], [-1342, -963], [-1338, -963], [-1338, -962], [-1337, -962], [-1337, -963], [-1336, -963], [-1336, -965], [-1335, -965], [-1335, -966], [-1332, -966], [-1332, -960], [-1333, -960], [-1333, -958], [-1334, -958], [-1334, -955], [-1333, -954], [-1334, -953], [-1334, -950], [-1340, -944]]}, "center": {"211-258, T": [-1342, -954]}}, +{"id": 2367, "name": "Cachaça 51", "description": "Cachaça 51 is a strong alcoholic liquor in Brazil, distilled from sugarcane. It is used in the famous Caipirinha drink.", "links": {"website": ["https://pt.wikipedia.org/wiki/Caninha_51"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"204-258, T": [[260, 565], [260, 570], [262, 572], [263, 595], [254, 595], [254, 578], [256, 574], [257, 571], [257, 565]]}, "center": {"204-258, T": [258, 583]}}, +{"id": 2368, "name": "MadeOfStyrofoam", "description": "An open forum with loose moderation to discuss self harm in all its forms", "links": {"subreddit": ["MadeOfStyrofoam"]}, "path": {"30-68": [[-318, -235], [-318, -259], [-303, -259], [-303, -235]], "164-258, T": [[758, 880], [758, 859], [772, 859], [772, 880]]}, "center": {"30-68": [-310, -247], "164-258, T": [765, 870]}}, +{"id": 2369, "name": "Omniscient Reader's Viewpoint", "description": "Omniscient Reader's Viewpoint is a apocalyptic fantasy Fiction\nKorean Web Novel written by a\nKorean author duo writing under the pen name Sing-Syong about an office worker, Kim Dokja, who enters the world of his favorite novel", "links": {"subreddit": ["OmniscientReader"]}, "path": {"220-258, T": [[1144, 661], [1151, 658], [1154, 656], [1159, 656], [1163, 656], [1164, 655], [1165, 656], [1171, 659], [1179, 663], [1185, 668], [1193, 674], [1194, 678], [1194, 681], [1193, 684], [1186, 687], [1169, 690], [1154, 688], [1145, 684], [1140, 678], [1139, 668]]}, "center": {"220-258, T": [1161, 672]}}, {"id": 2370, "name": "Monarch butterfly", "description": "The monarch butterfly, It is amongst the most familiar of North American butterflies and an iconic pollinator.\n\nThe eastern North American monarch population is notable for its annual southward late-summer/autumn instinctive migration from the northern and central United States and southern Canada to Florida and Mexico\n\nOn July 20, 2022, the International Union for Conservation of Nature added the migratory monarch butterfly to its red list of endangered species.", "links": {"website": ["https://en.wikipedia.org/wiki/Monarch_butterfly#Conservation_status"]}, "path": {"75-245": [[-254, -3], [-253, -3], [-252, -3], [-252, -2], [-250, -2], [-250, 0], [-249, 0], [-249, 4], [-248, 4], [-248, 5], [-247, 5], [-247, 7], [-245, 7], [-245, 9], [-244, 9], [-244, 11], [-243, 11], [-243, 18], [-244, 18], [-245, 19], [-246, 20], [-247, 20], [-247, 21], [-252, 21], [-253, 23], [-254, 24], [-255, 24], [-256, 23], [-256, 22], [-257, 21], [-258, 20], [-259, 19], [-260, 18], [-263, 18], [-263, 13], [-262, 13], [-262, 7], [-261, 7], [-261, 3], [-260, 3], [-259, 2], [-258, 1], [-255, -2]]}, "center": {"75-245": [-253, 12]}}, {"id": 2371, "name": "Hijitus", "description": "Hijitus is a comic book character created by Manuel García Ferré.\nHis debut was in 1955 in the comic strip The Adventures of Pi-Pío in Billiken magazine.\nHe also got a TV Series called \"Las aventuras de Hijitus\" which was broadcast in 1967 to 1974, in the nineties and 2010 to 2014", "links": {"website": ["https://en.wikipedia.org/wiki/Hijitus"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"217-218": [[1327, 976], [1323, 976], [1319, 971], [1332, 957], [1340, 958], [1354, 973], [1355, 998], [1336, 999], [1328, 978]]}, "center": {"217-218": [1342, 979]}}, -{"id": 2372, "name": "Millonarios FC", "description": "Millonarios Fútbol Club, also known as Millonarios, is a Colombian professional football club based in Bogotá that currently plays in the Categoría Primera A, the top flight of football in Colombia.\n\nIt is one of the most successful and iconic clubs in Colombia, making it one of the largest sports entities in the country and one of the most important in South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Millonarios_F.C."]}, "path": {"220-258": [[-1284, 866], [-1280, 868], [-1276, 869], [-1273, 867], [-1269, 866], [-1268, 861], [-1267, 857], [-1266, 852], [-1271, 847], [-1274, 849], [-1276, 847], [-1279, 849], [-1283, 847], [-1287, 852], [-1285, 855], [-1285, 859], [-1287, 861], [-1287, 864]]}, "center": {"220-258": [-1276, 858]}}, -{"id": 2373, "name": "buddhaFlower", "description": "BuddhaFlower is a Twitch emote associated with the popular streamer Buddha, who is well-known for his engaging content on the NoPixel role-playing server in Grand Theft Auto V.", "links": {"website": ["https://www.twitch.tv/buddha"], "subreddit": ["NoPixel"], "discord": ["buddha"]}, "path": {"220-258": [[-1293, 714], [-1293, 742], [-1266, 742], [-1267, 714]]}, "center": {"220-258": [-1280, 728]}}, -{"id": 2374, "name": "Chibi Kakashi", "description": "collab between jojo and r/placenaruto and anbu chat", "links": {"subreddit": ["PlaceNaruto", "jojosbizarreplace"], "discord": ["WMy7NF37", "DSKegr5XTB"]}, "path": {"220-258": [[-1122, -116], [-1122, -114], [-1121, -108], [-1120, -107], [-1114, -107], [-1114, -116]]}, "center": {"220-258": [-1118, -112]}}, -{"id": 2375, "name": "Reggie - r/PlaceFishCult", "description": "Reginald P. Flight, or Reggie for short, is a white, grey, and orange fish named by Qualifications", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"163-258": [[490, -292], [491, -293], [492, -292], [491, -291], [490, -292], [489, -291], [490, -292], [489, -293]]}, "center": {"163-258": [491, -292]}}, -{"id": 2376, "name": "ULTRAKILL", "description": "ULTRAKILL is a fast-paced ultra-violent retro first-person shooter combining the skill-based-style scoring from character action games with unadulterated carnage inspired by the best shooters of the '90s. This art features the heads of two player characters from the game.", "links": {"website": ["https://en.wikipedia.org/wiki/Ultrakill"], "subreddit": ["ultrakill"]}, "path": {"115-258": [[-575, -98], [-578, -95], [-578, -94], [-575, -91], [-565, -91], [-562, -94], [-562, -95], [-566, -98]]}, "center": {"115-258": [-570, -94]}}, -{"id": 2377, "name": "Orion", "description": "Orion is one of the playable characters in the fighting game Brawlhalla.", "links": {"website": ["https://brawlhalla.fandom.com/wiki/Orion"], "subreddit": ["Brawlhalla"]}, "path": {"100-258": [[-531, -121], [-535, -112], [-535, -98], [-533, -96], [-533, -90], [-529, -90], [-525, -85], [-521, -85], [-520, -84], [-511, -84], [-511, -92], [-510, -93], [-510, -98], [-508, -100], [-508, -104], [-510, -104], [-510, -106], [-515, -120], [-518, -113], [-521, -116], [-525, -110]]}, "center": {"100-258": [-521, -99]}}, -{"id": 2378, "name": "Mollo", "description": "Mollo is a transgender playable character in the fighting game Rivals of Aether.", "links": {"website": ["https://rivals-of-aether.fandom.com/wiki/Mollo"], "subreddit": ["RivalsOfAether", "transplace"], "discord": ["TransPlace"]}, "path": {"53-258": [[177, 58], [176, 59], [173, 59], [171, 61], [171, 66], [173, 70], [178, 75], [180, 75], [186, 69], [187, 65], [187, 61], [185, 59], [182, 59], [181, 58]]}, "center": {"53-258": [179, 66]}}, -{"id": 2379, "name": "Lotus", "description": "Lotus is a mysterious character in the game Warframe. Lotus's symbol is often used to represent the game as a whole.", "links": {"website": ["https://warframe.fandom.com/wiki/Lotus"], "subreddit": ["Warframe"]}, "path": {"147-258": [[210, 54], [198, 62], [203, 68], [217, 68], [222, 62]]}, "center": {"147-258": [210, 62]}}, -{"id": 2380, "name": "Transgender Wooloo", "description": "Wooloo is a Normal-type sheep Pokémon from the Generation VII Pokémon games (Pokémon Sword/Shield). This Wooloo's fleece has the colors of the transgender pride flag.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Wooloo_(Pok%C3%A9mon)"], "subreddit": ["transplace"], "discord": ["TransPlace"]}, "path": {"180-258": [[237, 54], [233, 59], [233, 64], [238, 68], [242, 68], [247, 64], [247, 58], [243, 54]]}, "center": {"180-258": [240, 61]}}, -{"id": 2381, "name": "Sappho", "description": "This cat, named Sappho, sports the lesbian pride flag colors on its fur. She is named after lesbian Greek poet Sappho. The word \"lesbian\" comes from Sappho's residence on the island of Lesbos.", "links": {"website": ["https://en.wikipedia.org/wiki/Sappho"], "subreddit": ["transplace"], "discord": ["TransPlace"]}, "path": {"52-258": [[128, 66], [124, 71], [124, 75], [128, 78], [128, 86], [143, 86], [146, 83], [146, 78], [142, 75], [140, 77], [140, 71], [138, 69], [138, 68], [136, 66], [133, 69], [131, 69]]}, "center": {"52-258": [134, 76]}}, -{"id": 2382, "name": "Sakurajima Mai", "description": "The heroine from the anime & light novel \"Seishun Buta Yarou\", or \"Rascal Does Not Dream of Bunny Girl Senpai\"", "links": {"website": ["https://aobuta.fandom.com/wiki/Mai_Sakurajima#Light_Novel"], "subreddit": ["SeishunButaYarou"]}, "path": {"201-258": [[-911, -930], [-908, -930], [-907, -931], [-906, -931], [-905, -930], [-901, -930], [-901, -931], [-900, -932], [-900, -933], [-899, -934], [-899, -935], [-898, -936], [-898, -937], [-897, -938], [-897, -939], [-895, -941], [-895, -946], [-894, -947], [-894, -948], [-893, -949], [-893, -952], [-894, -953], [-894, -954], [-895, -955], [-891, -955], [-889, -957], [-889, -965], [-893, -969], [-899, -969], [-901, -967], [-901, -966], [-903, -964], [-907, -964], [-907, -967], [-910, -970], [-919, -970], [-922, -967], [-922, -958], [-921, -957], [-917, -957], [-918, -956], [-918, -953], [-917, -952], [-916, -952], [-916, -950], [-914, -948], [-914, -943], [-915, -942], [-915, -941], [-914, -940], [-914, -936], [-912, -934], [-912, -931]]}, "center": {"201-258": [-905, -954]}}, -{"id": 2383, "name": "Sakuta Azusagawa", "description": "The main character of the anime/LN \"Bunny girl senpai\"", "links": {"website": ["https://aobuta.fandom.com/wiki/Sakuta_Azusagawa"], "subreddit": ["SeishunButaYarou"]}, "path": {"221-258": [[-1481, 491], [-1480, 512], [-1460, 512], [-1461, 492]]}, "center": {"221-258": [-1470, 502]}}, +{"id": 2372, "name": "Millonarios FC", "description": "Millonarios Fútbol Club, also known as Millonarios, is a Colombian professional football club based in Bogotá that currently plays in the Categoría Primera A, the top flight of football in Colombia.\n\nIt is one of the most successful and iconic clubs in Colombia, making it one of the largest sports entities in the country and one of the most important in South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Millonarios_F.C."]}, "path": {"220-258, T": [[-1284, 866], [-1280, 868], [-1276, 869], [-1273, 867], [-1269, 866], [-1268, 861], [-1267, 857], [-1266, 852], [-1271, 847], [-1274, 849], [-1276, 847], [-1279, 849], [-1283, 847], [-1287, 852], [-1285, 855], [-1285, 859], [-1287, 861], [-1287, 864]]}, "center": {"220-258, T": [-1276, 858]}}, +{"id": 2373, "name": "buddhaFlower", "description": "BuddhaFlower is a Twitch emote associated with the popular streamer Buddha, who is well-known for his engaging content on the NoPixel role-playing server in Grand Theft Auto V.", "links": {"website": ["https://www.twitch.tv/buddha"], "subreddit": ["NoPixel"], "discord": ["buddha"]}, "path": {"220-258, T": [[-1293, 714], [-1293, 742], [-1266, 742], [-1267, 714]]}, "center": {"220-258, T": [-1280, 728]}}, +{"id": 2374, "name": "Chibi Kakashi", "description": "collab between jojo and r/placenaruto and anbu chat", "links": {"subreddit": ["PlaceNaruto", "jojosbizarreplace"], "discord": ["WMy7NF37", "DSKegr5XTB"]}, "path": {"220-258, T": [[-1122, -116], [-1122, -114], [-1121, -108], [-1120, -107], [-1114, -107], [-1114, -116]]}, "center": {"220-258, T": [-1118, -112]}}, +{"id": 2375, "name": "Reggie - r/PlaceFishCult", "description": "Reginald P. Flight, or Reggie for short, is a white, grey, and orange fish named by Qualifications", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"163-258, T": [[490, -292], [491, -293], [492, -292], [491, -291], [490, -292], [489, -291], [490, -292], [489, -293]]}, "center": {"163-258, T": [491, -292]}}, +{"id": 2376, "name": "ULTRAKILL", "description": "ULTRAKILL is a fast-paced ultra-violent retro first-person shooter combining the skill-based-style scoring from character action games with unadulterated carnage inspired by the best shooters of the '90s. This art features the heads of two player characters from the game.", "links": {"website": ["https://en.wikipedia.org/wiki/Ultrakill"], "subreddit": ["ultrakill"]}, "path": {"115-258, T": [[-575, -98], [-578, -95], [-578, -94], [-575, -91], [-565, -91], [-562, -94], [-562, -95], [-566, -98]]}, "center": {"115-258, T": [-570, -94]}}, +{"id": 2377, "name": "Orion", "description": "Orion is one of the playable characters in the fighting game Brawlhalla.", "links": {"website": ["https://brawlhalla.fandom.com/wiki/Orion"], "subreddit": ["Brawlhalla"]}, "path": {"100-258, T": [[-531, -121], [-535, -112], [-535, -98], [-533, -96], [-533, -90], [-529, -90], [-525, -85], [-521, -85], [-520, -84], [-511, -84], [-511, -92], [-510, -93], [-510, -98], [-508, -100], [-508, -104], [-510, -104], [-510, -106], [-515, -120], [-518, -113], [-521, -116], [-525, -110]]}, "center": {"100-258, T": [-521, -99]}}, +{"id": 2378, "name": "Mollo", "description": "Mollo is a transgender playable character in the fighting game Rivals of Aether.", "links": {"website": ["https://rivals-of-aether.fandom.com/wiki/Mollo"], "subreddit": ["RivalsOfAether", "transplace"], "discord": ["TransPlace"]}, "path": {"53-258, T": [[177, 58], [176, 59], [173, 59], [171, 61], [171, 66], [173, 70], [178, 75], [180, 75], [186, 69], [187, 65], [187, 61], [185, 59], [182, 59], [181, 58]]}, "center": {"53-258, T": [179, 66]}}, +{"id": 2379, "name": "Lotus", "description": "Lotus is a mysterious character in the game Warframe. Lotus's symbol is often used to represent the game as a whole.", "links": {"website": ["https://warframe.fandom.com/wiki/Lotus"], "subreddit": ["Warframe"]}, "path": {"147-258, T": [[210, 54], [198, 62], [203, 68], [217, 68], [222, 62]]}, "center": {"147-258, T": [210, 62]}}, +{"id": 2380, "name": "Transgender Wooloo", "description": "Wooloo is a Normal-type sheep Pokémon from the Generation VII Pokémon games (Pokémon Sword/Shield). This Wooloo's fleece has the colors of the transgender pride flag.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Wooloo_(Pok%C3%A9mon)"], "subreddit": ["transplace"], "discord": ["TransPlace"]}, "path": {"180-258, T": [[237, 54], [233, 59], [233, 64], [238, 68], [242, 68], [247, 64], [247, 58], [243, 54]]}, "center": {"180-258, T": [240, 61]}}, +{"id": 2381, "name": "Sappho", "description": "This cat, named Sappho, sports the lesbian pride flag colors on its fur. She is named after lesbian Greek poet Sappho. The word \"lesbian\" comes from Sappho's residence on the island of Lesbos.", "links": {"website": ["https://en.wikipedia.org/wiki/Sappho"], "subreddit": ["transplace"], "discord": ["TransPlace"]}, "path": {"52-258, T": [[128, 66], [124, 71], [124, 75], [128, 78], [128, 86], [143, 86], [146, 83], [146, 78], [142, 75], [140, 77], [140, 71], [138, 69], [138, 68], [136, 66], [133, 69], [131, 69]]}, "center": {"52-258, T": [134, 76]}}, +{"id": 2382, "name": "Sakurajima Mai", "description": "The heroine from the anime & light novel \"Seishun Buta Yarou\", or \"Rascal Does Not Dream of Bunny Girl Senpai\"", "links": {"website": ["https://aobuta.fandom.com/wiki/Mai_Sakurajima#Light_Novel"], "subreddit": ["SeishunButaYarou"]}, "path": {"201-258, T": [[-911, -930], [-908, -930], [-907, -931], [-906, -931], [-905, -930], [-901, -930], [-901, -931], [-900, -932], [-900, -933], [-899, -934], [-899, -935], [-898, -936], [-898, -937], [-897, -938], [-897, -939], [-895, -941], [-895, -946], [-894, -947], [-894, -948], [-893, -949], [-893, -952], [-894, -953], [-894, -954], [-895, -955], [-891, -955], [-889, -957], [-889, -965], [-893, -969], [-899, -969], [-901, -967], [-901, -966], [-903, -964], [-907, -964], [-907, -967], [-910, -970], [-919, -970], [-922, -967], [-922, -958], [-921, -957], [-917, -957], [-918, -956], [-918, -953], [-917, -952], [-916, -952], [-916, -950], [-914, -948], [-914, -943], [-915, -942], [-915, -941], [-914, -940], [-914, -936], [-912, -934], [-912, -931]]}, "center": {"201-258, T": [-905, -954]}}, +{"id": 2383, "name": "Sakuta Azusagawa", "description": "The main character of the anime/LN \"Bunny girl senpai\"", "links": {"website": ["https://aobuta.fandom.com/wiki/Sakuta_Azusagawa"], "subreddit": ["SeishunButaYarou"]}, "path": {"221-258, T": [[-1481, 491], [-1480, 512], [-1460, 512], [-1461, 492]]}, "center": {"221-258, T": [-1470, 502]}}, {"id": 2384, "name": "Neku Sakuraba", "description": "Protagonist of the cult classic JRPG The World Ends With You (known in japan as Subarashiki Kono Sekai or It's A Wonderful World) Neku is an anti social teenager who ends up in a contest called the Reaper's Game where he and his partner must compete to see who can come back to life.\n\nThe game had a Sequel in 2021 called NEO: The World Ends With You that despite critical acclaim, did not met publisher Square Enix's expectations, the IP has been dormant since.", "links": {"subreddit": ["TWEWY"]}, "path": {"207-208": [[-1217, -634], [-1224, -637], [-1210, -638], [-1217, -626], [-1224, -637]]}, "center": {"207-208": [-1217, -631]}}, -{"id": 2385, "name": "Cozy Glow's Rook", "description": "The cutie mark of the real empress of friendship her majestic COZY GLOW", "links": {}, "path": {"221-258": [[24, 241], [23, 241], [23, 249], [23, 250], [30, 250], [30, 240], [23, 240], [23, 247], [22, 247], [22, 250], [23, 245], [27, 250]]}, "center": {"221-258": [27, 243]}}, -{"id": 2386, "name": "Signet of Ego", "description": "Elysia's Signet from Honkai Impact 3rd.", "links": {"website": ["https://honkaiimpact3.hoyoverse.com/global/en-us/fab"], "subreddit": ["houkai3rd", "honkaiimpact3"], "discord": ["hi3"]}, "path": {"204-258": [[1269, 226], [1268, 226], [1268, 225], [1267, 225], [1266, 225], [1265, 225], [1264, 225], [1263, 225], [1262, 225], [1262, 224], [1261, 224], [1261, 223], [1260, 223], [1259, 223], [1259, 224], [1259, 225], [1258, 225], [1257, 225], [1256, 225], [1255, 225], [1254, 225], [1254, 226], [1253, 226], [1252, 226], [1251, 226], [1251, 227], [1251, 226], [1250, 226], [1250, 225], [1249, 225], [1248, 225], [1248, 226], [1248, 227], [1248, 228], [1247, 228], [1247, 229], [1246, 229], [1246, 230], [1246, 231], [1245, 231], [1245, 232], [1244, 232], [1244, 233], [1244, 234], [1243, 234], [1242, 234], [1241, 234], [1241, 235], [1240, 235], [1240, 236], [1239, 237], [1238, 238], [1237, 238], [1237, 239], [1237, 240], [1237, 241], [1238, 241], [1238, 242], [1237, 242], [1237, 243], [1236, 243], [1236, 244], [1236, 245], [1237, 245], [1238, 245], [1238, 246], [1238, 247], [1239, 247], [1239, 248], [1238, 248], [1238, 249], [1237, 249], [1237, 250], [1236, 250], [1235, 250], [1235, 251], [1235, 252], [1236, 252], [1236, 253], [1237, 253], [1238, 253], [1238, 254], [1239, 254], [1239, 255], [1239, 256], [1240, 256], [1240, 257], [1241, 257], [1241, 258], [1242, 258], [1242, 259], [1242, 260], [1242, 261], [1242, 262], [1243, 262], [1242, 262], [1242, 263], [1241, 263], [1241, 264], [1241, 265], [1241, 266], [1241, 267], [1241, 268], [1242, 268], [1243, 268], [1244, 268], [1244, 267], [1245, 267], [1246, 267], [1246, 266], [1247, 266], [1247, 265], [1247, 266], [1247, 267], [1247, 268], [1247, 269], [1247, 270], [1247, 272], [1247, 273], [1247, 274], [1248, 274], [1249, 274], [1250, 274], [1251, 274], [1251, 273], [1252, 273], [1253, 273], [1253, 272], [1254, 272], [1254, 271], [1254, 270], [1255, 270], [1255, 269], [1256, 269], [1256, 270], [1256, 271], [1257, 271], [1258, 271], [1260, 271], [1260, 270], [1261, 270], [1263, 270], [1264, 270], [1264, 271], [1265, 271], [1265, 272], [1266, 272], [1266, 273], [1267, 273], [1268, 273], [1268, 272], [1269, 272], [1269, 271], [1270, 271], [1270, 270], [1270, 269], [1271, 269], [1272, 269], [1272, 268], [1273, 268], [1274, 268], [1274, 267], [1275, 267], [1275, 266], [1276, 266], [1277, 266], [1277, 265], [1277, 264], [1278, 264], [1278, 263], [1279, 263], [1279, 262], [1280, 263], [1281, 263], [1282, 263], [1283, 263], [1284, 263], [1284, 262], [1284, 261], [1284, 260], [1284, 259], [1284, 258], [1283, 258], [1283, 257], [1283, 256], [1282, 256], [1282, 255], [1283, 255], [1283, 254], [1283, 253], [1284, 253], [1284, 252], [1284, 251], [1284, 250], [1284, 249], [1283, 249], [1282, 249], [1281, 249], [1280, 249], [1279, 249], [1278, 249], [1278, 248], [1277, 248], [1277, 247], [1276, 247], [1277, 247], [1278, 247], [1279, 247], [1279, 246], [1280, 246], [1280, 245], [1281, 245], [1282, 245], [1282, 244], [1283, 244], [1283, 243], [1284, 243], [1284, 242], [1285, 242], [1285, 241], [1286, 241], [1286, 240], [1286, 239], [1285, 239], [1284, 239], [1283, 239], [1282, 239], [1281, 239], [1281, 238], [1280, 238], [1278, 238], [1277, 238], [1276, 238], [1275, 238], [1274, 238], [1273, 238], [1273, 237], [1273, 234], [1272, 234], [1272, 233], [1272, 232], [1272, 231], [1272, 230], [1272, 228], [1271, 228], [1270, 228], [1270, 227], [1270, 226], [1273, 249]]}, "center": {"204-258": [1256, 249]}}, -{"id": 2387, "name": "Senko x Special Week (Netherlands Flag)", "description": "A collab with r/placeNL of anime characters Senko and Special Week holding Dutch chocolate milk and Fristi (Dutch yogurt drink).\n\nThese 2 characters can also be found on the French and German flags around the canvas, holding various beverages.", "links": {"subreddit": ["senkoplace", "SewayakiKitsune", "UmaMusume"], "discord": ["senkoplace", "umamusume"]}, "path": {"212-258": [[1129, -450], [1129, -451], [1129, -452], [1130, -453], [1131, -454], [1131, -455], [1131, -456], [1131, -462], [1130, -463], [1131, -464], [1131, -466], [1132, -468], [1133, -469], [1134, -468], [1135, -469], [1135, -470], [1134, -471], [1134, -473], [1133, -474], [1133, -476], [1134, -477], [1134, -479], [1136, -480], [1135, -483], [1134, -484], [1134, -486], [1133, -491], [1132, -494], [1131, -496], [1130, -498], [1129, -499], [1128, -500], [1127, -499], [1126, -498], [1125, -497], [1125, -496], [1124, -495], [1122, -495], [1121, -496], [1116, -496], [1115, -497], [1112, -497], [1111, -498], [1109, -498], [1109, -499], [1107, -499], [1106, -500], [1105, -500], [1104, -499], [1104, -495], [1105, -494], [1106, -492], [1106, -490], [1107, -489], [1107, -487], [1106, -486], [1106, -484], [1105, -484], [1105, -482], [1104, -481], [1103, -480], [1104, -479], [1105, -479], [1105, -477], [1104, -476], [1103, -475], [1102, -476], [1101, -476], [1100, -475], [1097, -475], [1096, -476], [1095, -476], [1094, -475], [1092, -475], [1084, -465], [1084, -464], [1079, -463], [1079, -464], [1078, -464], [1076, -467], [1074, -469], [1071, -473], [1069, -475], [1067, -474], [1066, -474], [1061, -474], [1059, -474], [1058, -475], [1057, -477], [1056, -480], [1057, -484], [1056, -488], [1054, -490], [1053, -491], [1052, -492], [1052, -498], [1051, -501], [1050, -502], [1049, -501], [1049, -500], [1049, -499], [1048, -499], [1048, -497], [1047, -496], [1047, -495], [1039, -495], [1037, -495], [1037, -496], [1036, -497], [1035, -498], [1034, -497], [1034, -496], [1034, -495], [1033, -494], [1033, -492], [1032, -491], [1031, -490], [1031, -489], [1030, -488], [1029, -487], [1029, -486], [1028, -484], [1028, -485], [1028, -477], [1029, -476], [1029, -474], [1028, -473], [1028, -470], [1029, -469], [1029, -468], [1030, -468], [1030, -466], [1031, -465], [1031, -466], [1032, -464], [1032, -463], [1031, -462], [1031, -456], [1032, -455], [1032, -452], [1033, -451], [1034, -451]]}, "center": {"212-258": [1115, -465]}}, -{"id": 2388, "name": "The Vigilante", "description": "The Vigilante is a Cheeseslime wearing a cowboy hat. He is the grandson of John E. Cheese, the former owner of Fun Farm, which he now owns. He was apparently tricked by Pizzaface into thinking Peppino is a wanted criminal using forgery, leading to his fight at the Western District.", "links": {"website": ["https://pizzatower.fandom.com/wiki/The_Vigilante"], "subreddit": ["PizzaTower"]}, "path": {"189-258": [[-872, -269], [-871, -268], [-865, -268], [-864, -269], [-865, -270], [-864, -270], [-863, -271], [-865, -273], [-867, -274], [-868, -273], [-870, -274], [-871, -273], [-872, -272], [-873, -271], [-872, -270], [-871, -270]]}, "center": {"189-258": [-868, -270]}}, -{"id": 2389, "name": "Violet Evergarden", "description": "Main character of the Light novel and anime with the same name", "links": {"website": ["https://violet-evergarden.fandom.com/wiki/Violet_Evergarden"]}, "path": {"214-258": [[1217, -912], [1181, -912], [1181, -921], [1187, -925], [1182, -930], [1185, -933], [1186, -944], [1193, -951], [1214, -950], [1229, -938], [1229, -933], [1226, -932], [1228, -925], [1227, -922], [1224, -922], [1222, -919], [1222, -916], [1217, -915]]}, "center": {"214-258": [1206, -931]}}, +{"id": 2385, "name": "Cozy Glow's Rook", "description": "The cutie mark of the real empress of friendship her majestic COZY GLOW", "links": {}, "path": {"221-258, T": [[24, 241], [23, 241], [23, 249], [23, 250], [30, 250], [30, 240], [23, 240], [23, 247], [22, 247], [22, 250], [23, 245], [27, 250]]}, "center": {"221-258, T": [27, 243]}}, +{"id": 2386, "name": "Signet of Ego", "description": "Elysia's Signet from Honkai Impact 3rd.", "links": {"website": ["https://honkaiimpact3.hoyoverse.com/global/en-us/fab"], "subreddit": ["houkai3rd", "honkaiimpact3"], "discord": ["hi3"]}, "path": {"204-258, T": [[1269, 226], [1268, 226], [1268, 225], [1267, 225], [1266, 225], [1265, 225], [1264, 225], [1263, 225], [1262, 225], [1262, 224], [1261, 224], [1261, 223], [1260, 223], [1259, 223], [1259, 224], [1259, 225], [1258, 225], [1257, 225], [1256, 225], [1255, 225], [1254, 225], [1254, 226], [1253, 226], [1252, 226], [1251, 226], [1251, 227], [1251, 226], [1250, 226], [1250, 225], [1249, 225], [1248, 225], [1248, 226], [1248, 227], [1248, 228], [1247, 228], [1247, 229], [1246, 229], [1246, 230], [1246, 231], [1245, 231], [1245, 232], [1244, 232], [1244, 233], [1244, 234], [1243, 234], [1242, 234], [1241, 234], [1241, 235], [1240, 235], [1240, 236], [1239, 237], [1238, 238], [1237, 238], [1237, 239], [1237, 240], [1237, 241], [1238, 241], [1238, 242], [1237, 242], [1237, 243], [1236, 243], [1236, 244], [1236, 245], [1237, 245], [1238, 245], [1238, 246], [1238, 247], [1239, 247], [1239, 248], [1238, 248], [1238, 249], [1237, 249], [1237, 250], [1236, 250], [1235, 250], [1235, 251], [1235, 252], [1236, 252], [1236, 253], [1237, 253], [1238, 253], [1238, 254], [1239, 254], [1239, 255], [1239, 256], [1240, 256], [1240, 257], [1241, 257], [1241, 258], [1242, 258], [1242, 259], [1242, 260], [1242, 261], [1242, 262], [1243, 262], [1242, 262], [1242, 263], [1241, 263], [1241, 264], [1241, 265], [1241, 266], [1241, 267], [1241, 268], [1242, 268], [1243, 268], [1244, 268], [1244, 267], [1245, 267], [1246, 267], [1246, 266], [1247, 266], [1247, 265], [1247, 266], [1247, 267], [1247, 268], [1247, 269], [1247, 270], [1247, 272], [1247, 273], [1247, 274], [1248, 274], [1249, 274], [1250, 274], [1251, 274], [1251, 273], [1252, 273], [1253, 273], [1253, 272], [1254, 272], [1254, 271], [1254, 270], [1255, 270], [1255, 269], [1256, 269], [1256, 270], [1256, 271], [1257, 271], [1258, 271], [1260, 271], [1260, 270], [1261, 270], [1263, 270], [1264, 270], [1264, 271], [1265, 271], [1265, 272], [1266, 272], [1266, 273], [1267, 273], [1268, 273], [1268, 272], [1269, 272], [1269, 271], [1270, 271], [1270, 270], [1270, 269], [1271, 269], [1272, 269], [1272, 268], [1273, 268], [1274, 268], [1274, 267], [1275, 267], [1275, 266], [1276, 266], [1277, 266], [1277, 265], [1277, 264], [1278, 264], [1278, 263], [1279, 263], [1279, 262], [1280, 263], [1281, 263], [1282, 263], [1283, 263], [1284, 263], [1284, 262], [1284, 261], [1284, 260], [1284, 259], [1284, 258], [1283, 258], [1283, 257], [1283, 256], [1282, 256], [1282, 255], [1283, 255], [1283, 254], [1283, 253], [1284, 253], [1284, 252], [1284, 251], [1284, 250], [1284, 249], [1283, 249], [1282, 249], [1281, 249], [1280, 249], [1279, 249], [1278, 249], [1278, 248], [1277, 248], [1277, 247], [1276, 247], [1277, 247], [1278, 247], [1279, 247], [1279, 246], [1280, 246], [1280, 245], [1281, 245], [1282, 245], [1282, 244], [1283, 244], [1283, 243], [1284, 243], [1284, 242], [1285, 242], [1285, 241], [1286, 241], [1286, 240], [1286, 239], [1285, 239], [1284, 239], [1283, 239], [1282, 239], [1281, 239], [1281, 238], [1280, 238], [1278, 238], [1277, 238], [1276, 238], [1275, 238], [1274, 238], [1273, 238], [1273, 237], [1273, 234], [1272, 234], [1272, 233], [1272, 232], [1272, 231], [1272, 230], [1272, 228], [1271, 228], [1270, 228], [1270, 227], [1270, 226], [1273, 249]]}, "center": {"204-258, T": [1256, 249]}}, +{"id": 2387, "name": "Senko x Special Week (Netherlands Flag)", "description": "A collab with r/placeNL of anime characters Senko and Special Week holding Dutch chocolate milk and Fristi (Dutch yogurt drink).\n\nThese 2 characters can also be found on the French and German flags around the canvas, holding various beverages.", "links": {"subreddit": ["senkoplace", "SewayakiKitsune", "UmaMusume"], "discord": ["senkoplace", "umamusume"]}, "path": {"212-258, T": [[1129, -450], [1129, -451], [1129, -452], [1130, -453], [1131, -454], [1131, -455], [1131, -456], [1131, -462], [1130, -463], [1131, -464], [1131, -466], [1132, -468], [1133, -469], [1134, -468], [1135, -469], [1135, -470], [1134, -471], [1134, -473], [1133, -474], [1133, -476], [1134, -477], [1134, -479], [1136, -480], [1135, -483], [1134, -484], [1134, -486], [1133, -491], [1132, -494], [1131, -496], [1130, -498], [1129, -499], [1128, -500], [1127, -499], [1126, -498], [1125, -497], [1125, -496], [1124, -495], [1122, -495], [1121, -496], [1116, -496], [1115, -497], [1112, -497], [1111, -498], [1109, -498], [1109, -499], [1107, -499], [1106, -500], [1105, -500], [1104, -499], [1104, -495], [1105, -494], [1106, -492], [1106, -490], [1107, -489], [1107, -487], [1106, -486], [1106, -484], [1105, -484], [1105, -482], [1104, -481], [1103, -480], [1104, -479], [1105, -479], [1105, -477], [1104, -476], [1103, -475], [1102, -476], [1101, -476], [1100, -475], [1097, -475], [1096, -476], [1095, -476], [1094, -475], [1092, -475], [1084, -465], [1084, -464], [1079, -463], [1079, -464], [1078, -464], [1076, -467], [1074, -469], [1071, -473], [1069, -475], [1067, -474], [1066, -474], [1061, -474], [1059, -474], [1058, -475], [1057, -477], [1056, -480], [1057, -484], [1056, -488], [1054, -490], [1053, -491], [1052, -492], [1052, -498], [1051, -501], [1050, -502], [1049, -501], [1049, -500], [1049, -499], [1048, -499], [1048, -497], [1047, -496], [1047, -495], [1039, -495], [1037, -495], [1037, -496], [1036, -497], [1035, -498], [1034, -497], [1034, -496], [1034, -495], [1033, -494], [1033, -492], [1032, -491], [1031, -490], [1031, -489], [1030, -488], [1029, -487], [1029, -486], [1028, -484], [1028, -485], [1028, -477], [1029, -476], [1029, -474], [1028, -473], [1028, -470], [1029, -469], [1029, -468], [1030, -468], [1030, -466], [1031, -465], [1031, -466], [1032, -464], [1032, -463], [1031, -462], [1031, -456], [1032, -455], [1032, -452], [1033, -451], [1034, -451]]}, "center": {"212-258, T": [1115, -465]}}, +{"id": 2388, "name": "The Vigilante", "description": "The Vigilante is a Cheeseslime wearing a cowboy hat. He is the grandson of John E. Cheese, the former owner of Fun Farm, which he now owns. He was apparently tricked by Pizzaface into thinking Peppino is a wanted criminal using forgery, leading to his fight at the Western District.", "links": {"website": ["https://pizzatower.fandom.com/wiki/The_Vigilante"], "subreddit": ["PizzaTower"]}, "path": {"189-258, T": [[-872, -269], [-871, -268], [-865, -268], [-864, -269], [-865, -270], [-864, -270], [-863, -271], [-865, -273], [-867, -274], [-868, -273], [-870, -274], [-871, -273], [-872, -272], [-873, -271], [-872, -270], [-871, -270]]}, "center": {"189-258, T": [-868, -270]}}, +{"id": 2389, "name": "Violet Evergarden", "description": "Main character of the Light novel and anime with the same name", "links": {"website": ["https://violet-evergarden.fandom.com/wiki/Violet_Evergarden"]}, "path": {"214-258, T": [[1217, -912], [1181, -912], [1181, -921], [1187, -925], [1182, -930], [1185, -933], [1186, -944], [1193, -951], [1214, -950], [1229, -938], [1229, -933], [1226, -932], [1228, -925], [1227, -922], [1224, -922], [1222, -919], [1222, -916], [1217, -915]]}, "center": {"214-258, T": [1206, -931]}}, {"id": 2390, "name": "Felps face", "description": "This is the face of a brazilian streamer called Felps. This face is a meme in his community.", "links": {"website": ["https://www.twitch.tv/Felps"], "subreddit": ["Felps"], "discord": ["Felps"]}, "path": {"213-230": [[1114, 454], [1121, 469], [1122, 477], [1136, 490], [1142, 493], [1149, 503], [1155, 503], [1155, 502], [1159, 502], [1162, 507], [1172, 507], [1209, 507], [1211, 503], [1218, 502], [1217, 494], [1242, 474], [1243, 451], [1253, 412], [1226, 412], [1225, 361], [1203, 361], [1203, 327], [1203, 315], [1173, 320], [1140, 331], [1111, 365], [1109, 395], [1103, 405], [1104, 428], [1103, 437], [1106, 443], [1111, 443], [1112, 453]]}, "center": {"213-230": [1166, 418]}}, -{"id": 2391, "name": "OG Ainz", "description": "A work by the overlord community showing Ainz, Aura, Mare, Cocytus(couchcytus), Shalltear, and Lupusregina.", "links": {"subreddit": ["overlord"], "discord": ["sbbRw8J4"]}, "path": {"220-258": [[630, 945], [630, 967], [651, 967], [651, 945], [641, 945], [636, 945]]}, "center": {"220-258": [641, 956]}}, -{"id": 2392, "name": "Children of Dusk", "description": "Is an alternate future timeline that starts in the year 2022, with minor points of divergence far earlier, eventually reaching the 22nd century and beyond.", "links": {"website": ["https://children-of-dusk.fandom.com/wiki/Children_of_Dusk_Wiki"], "subreddit": ["childrenofdusk"]}, "path": {"188-258": [[-953, -241], [-947, -241], [-946, -240], [-945, -239], [-945, -232], [-946, -231], [-947, -230], [-953, -230], [-954, -231], [-955, -232], [-955, -239], [-954, -240]]}, "center": {"188-258": [-950, -235]}}, -{"id": 2393, "name": "Peruvian guinea pig", "description": "Peruvian guinea pig", "links": {"website": ["https://www.animalfunfacts.net/pets/guinea-pigs/683-peruvian.html"]}, "path": {"221-258": [[-1156, -704], [-1164, -706], [-1165, -709], [-1162, -712], [-1163, -715], [-1162, -720], [-1159, -722], [-1155, -724], [-1153, -724], [-1150, -721], [-1146, -719], [-1143, -715], [-1140, -715], [-1138, -713], [-1138, -709], [-1138, -707], [-1141, -706], [-1145, -704], [-1160, -705], [-1157, -704]]}, "center": {"221-258": [-1153, -713]}}, -{"id": 2394, "name": "Proteo, search and rescue dog", "description": "Proteo, a 9-year-old specially trained K9 for the Mexican search and rescue team, died after being severely injured in the line of duty in Adıyaman ( Turkey ). Assisting Mexican military teams, the German shepherd rescued two people from the rubble. The Mexican government paid him tribute and called him a hero.\n\nProteo is the Spanish word for Proteus a prophetic sea god in Greek mythology who had the ability to change his shape at will. He was known for his wisdom and knowledge and was often sought after by mortals seeking guidance and advice.", "links": {"website": ["https://www.capital21.cdmx.gob.mx/noticias/?p=37193"]}, "path": {"221-258": [[-220, 162], [-239, 162], [-239, 158], [-240, 158], [-240, 153], [-240, 151], [-239, 148], [-233, 148], [-232, 147], [-231, 147], [-230, 146], [-226, 142], [-226, 137], [-222, 137], [-222, 139], [-221, 139], [-221, 137], [-218, 137], [-217, 137], [-217, 140], [-216, 141], [-213, 141], [-213, 146], [-214, 147], [-215, 148], [-218, 148], [-219, 149], [-219, 150], [-220, 151], [-220, 155]]}, "center": {"221-258": [-228, 154]}}, -{"id": 2395, "name": "Atletico nacional football club", "description": "Atlético Nacional es un club de fútbol de la ciudad de Medellín, Colombia. Es el club con mayor cantidad de títulos en Colombia. De igual forma es considerado como uno de los equipos más populares y emblemáticos de Colombia y de Sudamérica. ​", "links": {}, "path": {"221-258": [[-1288, 839], [-1269, 839], [-1269, 813], [-1287, 813]]}, "center": {"221-258": [-1278, 826]}}, -{"id": 2396, "name": "Vocaloids", "description": "Vocaloid (stylized as VOCALOID) is a singing voice synthesizer software product developed by the Yamaha Corporation. This features mini versions of some of the most popular Vocaloids all on top of a \"MIKU\" sign. From right to left, the Vocaloids are Kagamine Len, Kagamine Rin, Megurine Luka, MEIKO, and KAITO.", "links": {"website": ["https://www.vocaloid.com/en/"], "subreddit": ["Vocaloid"]}, "path": {"221-258": [[-335, 571], [-308, 571], [-309, 586], [-335, 586]]}, "center": {"221-258": [-321, 579]}}, -{"id": 2397, "name": "Tiny Bill Cipher", "description": "Tiny Bill Cipher was a project of u/finniansss from r/gravityfalls who had help from r/tinytardis, and r/mylittlepony in r/place 2022. \n\nThis year the same user asked for help from their old allies to build a new Tiny Bill Cipher next to the Tiny Tardis and above the Waddle Dee.", "links": {"subreddit": ["gravityfalls", "tinytardis", "mylittlepony"]}, "path": {"221-258": [[509, 887], [510, 887], [509, 888], [512, 888], [512, 887], [511, 886], [512, 885], [510, 883], [508, 885], [509, 886], [508, 887], [508, 888]]}, "center": {"221-258": [510, 885]}}, -{"id": 2398, "name": "Corote", "description": "A popular brazilian brand of alcoholic beverages, made known by its bottle style and colors", "links": {"website": ["https://corote.com.br/"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"162-258": [[250, 557], [254, 562], [254, 569], [251, 570], [247, 570], [245, 568], [245, 562], [249, 557]]}, "center": {"162-258": [250, 564]}}, -{"id": 2399, "name": "[MLP] Tiny Sunburst", "description": "Sunburst is a recurring supporting character from My Little Pony: Friendship Is Magic. He is a unicorn from the Crystal Empire and one of his distinguishing features are his naturally white socks (hoof coloration).", "links": {"website": ["https://mlp.fandom.com/wiki/Sunburst"], "subreddit": ["mylittlepony"]}, "path": {"221-258": [[565, 880], [567, 880], [567, 881], [569, 881], [569, 883], [568, 883], [568, 884], [564, 884], [563, 882], [563, 879], [566, 879]]}, "center": {"221-258": [565, 882]}}, -{"id": 2400, "name": "Assassin & SocksNeedsHelp", "description": "SocksNeedsHelp is a variety content creator with an emphasis on modded Risk of Rain 2. Assassin is a character from Realm of the Mad God/ROTMG (specifically, the RoR2 modded character of it, created by HasteReapr/Bee in the SocksNeedsHelp Discord server.)", "links": {}, "path": {"221-258": [[-1227, 579], [-1246, 579], [-1246, 589], [-1226, 589], [-1226, 579]]}, "center": {"221-258": [-1236, 584]}}, -{"id": 2401, "name": "Waddle Dee", "description": "Waddle Dee, a character from the Kirby series, that found a spot beside Tiny Tardis early on. One of the very first alliances made with the MLP, and Tiny Tardis factions. Later lost due to a streamer attack, Waddle Dee finally returned beside Tiny Tardis once again, after the MLP faction settled into their final main location on the canvas.", "links": {}, "path": {"220-258": [[508, 888], [513, 888], [515, 895], [506, 895], [506, 889]]}, "center": {"220-258": [510, 892]}}, -{"id": 2402, "name": "Le Fabuleux destin d'Amélie Poulain", "description": "The Fabulous Destiny of Amélie Poulain is a 2001 French period magical realism romantic comedy film directed by Jean-Pierre Jeunet. Written by Jeunet with Guillaume Laurant, the film is a whimsical depiction of contemporary Parisian life, set in Montmartre. It tells the story of a shy waitress, played by Audrey Tautou, who decides to change the lives of those around her for the better while dealing with her own isolation.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"213-258": [[1002, -281], [1055, -281], [1055, -212], [1002, -214]]}, "center": {"213-258": [1029, -246]}}, -{"id": 2403, "name": "Karmaland", "description": "Karmaland is one of the best-known and oldest Minecraft series in the Spanish-speaking community. Created by the Spanish youtubers Vegetta777 and Willyrex, in 2014, it currently has 5 seasons.\nThe members of its last season were: Vegetta777, Willyrex, sTaXx, Alexby11, xfarganx, Luzu, Rubius, Lolito, Mangel, Maximus (sapopeta), Quackity and Illojuan.", "links": {}, "path": {"220-258": [[400, 362], [446, 362], [445, 413], [401, 413]]}, "center": {"220-258": [423, 385]}}, -{"id": 2404, "name": "Sakura Miku", "description": "Sakura Miku is the name of a Hatsune Miku Japanese Vocaloid module. Sakura Miku is a pink-themed alternate hue for Hatsune Miku, designed to symbolize the start of spring. The official Sakura Miku appeared in 2011. At the 2011 Hatsune Miku concert, a small Sakura Miku of about 3.5cm was given away. The \"Project DIVA\" series includes Sakura Miku as an alternate character module for Hatsune Miku.", "links": {"website": ["https://project-diva.fandom.com/wiki/Sakura_Miku"], "subreddit": ["hatsune", "touhou"], "discord": ["hatsune", "apl"]}, "path": {"204-258": [[1322, 332], [1322, 334], [1319, 337], [1317, 337], [1317, 360], [1319, 360], [1322, 363], [1322, 365], [1343, 365], [1343, 363], [1346, 360], [1348, 360], [1348, 337], [1346, 337], [1343, 334], [1343, 332]]}, "center": {"204-258": [1333, 349]}}, -{"id": 2405, "name": "Toyosatomimi no Miko", "description": "Toyosatomimi no Miko is the main antagonist of the game Touhou Shinreibyou ~ Ten Desires. The game hints that Miko is transgender.", "links": {"website": ["https://en.touhouwiki.net/wiki/Toyosatomimi_no_Miko"], "subreddit": ["touhou", "transplace"], "discord": ["apl", "TransPlace"]}, "path": {"86-258": [[147, 69], [145, 72], [145, 77], [146, 78], [146, 84], [145, 85], [145, 86], [160, 86], [160, 85], [158, 83], [158, 82], [159, 81], [160, 76], [162, 74], [162, 72], [159, 72], [155, 68], [148, 68]]}, "center": {"86-258": [153, 76]}}, -{"id": 2406, "name": "Billy", "description": "Billy is a slime character from the game Pong Ultimate, made by the Belgian streamer Doigt. It was drawn near the start of r/place and quickly adopted by r/transplace, which now has a Billy Appreciation Club. Billy was later recolored to match the bisexual pride flag.", "links": {"subreddit": ["transplace"], "discord": ["TransPlace"]}, "path": {"16-258": [[165, 72], [161, 75], [158, 78], [158, 82], [161, 85], [173, 85], [176, 82], [176, 79], [174, 76], [171, 73], [169, 72]], "3-8": [[400, 100], [400, 99], [399, 99], [399, 98], [398, 98], [398, 95], [399, 95], [399, 93], [400, 93], [400, 92], [401, 92], [401, 91], [402, 91], [402, 90], [404, 90], [404, 89], [408, 89], [408, 90], [410, 90], [410, 91], [411, 91], [411, 92], [412, 92], [412, 93], [413, 93], [413, 94], [414, 94], [414, 98], [413, 98], [413, 99], [412, 99], [412, 100]]}, "center": {"16-258": [167, 79], "3-8": [406, 95]}}, -{"id": 2407, "name": "The Moroccan Coat of Arms", "description": "The Coat of arms of Morocco shows: a green pentagram or Star of Solomon on a red background before the Atlas Mountains and a rising sun. The royal crown is on top. Two Barbary lions function as the holders of the shield.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Morocco"], "subreddit": ["morocco"]}, "path": {"206-258": [[1445, 832], [1436, 837], [1424, 839], [1416, 843], [1417, 853], [1413, 881], [1414, 893], [1444, 898], [1477, 895], [1488, 867], [1483, 848], [1482, 840], [1474, 837], [1460, 833], [1453, 830], [1451, 827], [1449, 825], [1445, 827], [1444, 831]]}, "center": {"206-258": [1453, 865]}}, -{"id": 2408, "name": "Lyria", "description": "The deuteragonist of Japanese Gacha Game, Granblue Fantasy. Lyria, otherwise known as \"The Girl in Blue\" is a mysteriously powerful girl that can control Primal Beasts and revived the Main Character via. a life-link and is therefore eternally attached to them", "links": {"subreddit": ["Granblue_en"]}, "path": {"222-258": [[-727, 163], [-732, 165], [-733, 172], [-732, 173], [-732, 174], [-731, 174], [-730, 176], [-725, 176], [-725, 175], [-724, 174], [-724, 168], [-724, 166]]}, "center": {"222-258": [-728, 170]}}, -{"id": 2409, "name": "Cozy Glow's Cutie Mark", "description": "Cutie marks are small symbols from My Little Pony, displayed on the show's characters to symbolize them.\n\nThis is Cozy Glow's, a character from MLP: Friendship is Magic, who is depicted as a ruthless mastermind. Her cutie mark symbolizes her cunning duality displayed throughout the show.\n\nThis is also the last remnant of the original MLP art, which was raided by a streamer who replaced Rainbow Dash, another MLP: FiM character, with a platypus. Reddit went on to tweet in support of this nuke.", "links": {"website": ["https://mlp.fandom.com/wiki/Cozy_Glow"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"221-258": [[23, 248], [29, 248], [29, 240], [23, 240]]}, "center": {"221-258": [26, 244]}}, -{"id": 2410, "name": "Aztec calendar", "description": "The Aztec or Mexica calendar is the calendrical system used by the Aztecs as well as other Pre-Columbian peoples of central Mexico. It is one of the Mesoamerican calendars, sharing the basic structure of calendars from throughout ancient Mesoamerica.\n\"Viva el 401!\"", "links": {"website": ["https://en.wikipedia.org/wiki/Aztec_calendar"]}, "path": {"205-258": [[1435, 516], [1413, 521], [1393, 534], [1379, 548], [1374, 563], [1372, 600], [1386, 621], [1417, 642], [1451, 642], [1486, 620], [1499, 605], [1498, 562], [1483, 537], [1462, 522], [1447, 518], [1445, 518]]}, "center": {"205-258": [1436, 579]}}, -{"id": 2411, "name": "Sachertorte", "description": "A famous Cake mainly out of Austria made of choccolate and jam", "links": {"website": ["https://wikipedia.org/wiki/Sachertorte"], "discord": ["placeaustria"]}, "path": {"222-258": [[-1097, -36], [-1083, -48], [-1083, -56], [-1070, -57], [-1070, -47], [-1078, -47], [-1072, -39], [-1073, -27], [-1079, -26], [-1096, -27]]}, "center": {"222-258": [-1082, -36]}}, -{"id": 2412, "name": "KeMonito", "description": "Mexican masked professional wrestler, working for the Mexican professional wrestling promotion Consejo Mundial de Lucha Libre (CMLL) portraying a tecnico (\"Good guy\")", "links": {"website": ["https://en.wikipedia.org/wiki/KeMonito"]}, "path": {"222-258": [[71, -849], [89, -849], [89, -829], [71, -829], [71, -830]]}, "center": {"222-258": [80, -839]}}, -{"id": 2413, "name": "Internet Explorer", "description": "Internet Explorer was the default web browser for Windows operating systems from 1995 to 2016. It was deprecated shortly after the creation of Microsoft Edge in 2015.\n\nThe icon was griefed by Russian trolls around 3 times as of 12:15 AM EST, converting it into a Yandex icon, a Russian web browser and the Steam logo. The logo was rebuilt multiple times.", "links": {"website": ["https://microsoft.com/ie"], "subreddit": ["InternetExplorer"]}, "path": {"182-258": [[-1183, 973], [-1184, 978], [-1186, 980], [-1188, 985], [-1189, 987], [-1190, 987], [-1189, 991], [-1186, 991], [-1184, 993], [-1182, 996], [-1182, 997], [-1182, 999], [-1098, 999], [-1098, 972], [-1184, 973]]}, "center": {"182-258": [-1141, 986]}}, -{"id": 2414, "name": "Clash Royale", "description": "Clash Royale is a mobile RTS game where you use cards and place your units tactically to destroy the enemie's tower. \n\nThis pixel art was a protest against the pay-to-win (P2W) changes added to the game in the latest updates.", "links": {"website": ["https://en.wikipedia.org/wiki/Clash_Royale"], "subreddit": ["ClashRoyale"]}, "path": {"222-258": [[-1354, 565], [-1368, 579], [-1368, 619], [-1294, 619], [-1294, 565], [-1348, 565]]}, "center": {"222-258": [-1331, 592]}}, +{"id": 2391, "name": "OG Ainz", "description": "A work by the overlord community showing Ainz, Aura, Mare, Cocytus(couchcytus), Shalltear, and Lupusregina.", "links": {"subreddit": ["overlord"], "discord": ["sbbRw8J4"]}, "path": {"220-258, T": [[630, 945], [630, 967], [651, 967], [651, 945], [641, 945], [636, 945]]}, "center": {"220-258, T": [641, 956]}}, +{"id": 2392, "name": "Children of Dusk", "description": "Is an alternate future timeline that starts in the year 2022, with minor points of divergence far earlier, eventually reaching the 22nd century and beyond.", "links": {"website": ["https://children-of-dusk.fandom.com/wiki/Children_of_Dusk_Wiki"], "subreddit": ["childrenofdusk"]}, "path": {"188-258, T": [[-953, -241], [-947, -241], [-946, -240], [-945, -239], [-945, -232], [-946, -231], [-947, -230], [-953, -230], [-954, -231], [-955, -232], [-955, -239], [-954, -240]]}, "center": {"188-258, T": [-950, -235]}}, +{"id": 2393, "name": "Peruvian guinea pig", "description": "Peruvian guinea pig", "links": {"website": ["https://www.animalfunfacts.net/pets/guinea-pigs/683-peruvian.html"]}, "path": {"221-258, T": [[-1156, -704], [-1164, -706], [-1165, -709], [-1162, -712], [-1163, -715], [-1162, -720], [-1159, -722], [-1155, -724], [-1153, -724], [-1150, -721], [-1146, -719], [-1143, -715], [-1140, -715], [-1138, -713], [-1138, -709], [-1138, -707], [-1141, -706], [-1145, -704], [-1160, -705], [-1157, -704]]}, "center": {"221-258, T": [-1153, -713]}}, +{"id": 2394, "name": "Proteo, search and rescue dog", "description": "Proteo, a 9-year-old specially trained K9 for the Mexican search and rescue team, died after being severely injured in the line of duty in Adıyaman ( Turkey ). Assisting Mexican military teams, the German shepherd rescued two people from the rubble. The Mexican government paid him tribute and called him a hero.\n\nProteo is the Spanish word for Proteus a prophetic sea god in Greek mythology who had the ability to change his shape at will. He was known for his wisdom and knowledge and was often sought after by mortals seeking guidance and advice.", "links": {"website": ["https://www.capital21.cdmx.gob.mx/noticias/?p=37193"]}, "path": {"221-258, T": [[-220, 162], [-239, 162], [-239, 158], [-240, 158], [-240, 153], [-240, 151], [-239, 148], [-233, 148], [-232, 147], [-231, 147], [-230, 146], [-226, 142], [-226, 137], [-222, 137], [-222, 139], [-221, 139], [-221, 137], [-218, 137], [-217, 137], [-217, 140], [-216, 141], [-213, 141], [-213, 146], [-214, 147], [-215, 148], [-218, 148], [-219, 149], [-219, 150], [-220, 151], [-220, 155]]}, "center": {"221-258, T": [-228, 154]}}, +{"id": 2395, "name": "Atletico nacional football club", "description": "Atlético Nacional es un club de fútbol de la ciudad de Medellín, Colombia. Es el club con mayor cantidad de títulos en Colombia. De igual forma es considerado como uno de los equipos más populares y emblemáticos de Colombia y de Sudamérica. ​", "links": {}, "path": {"221-258, T": [[-1288, 839], [-1269, 839], [-1269, 813], [-1287, 813]]}, "center": {"221-258, T": [-1278, 826]}}, +{"id": 2396, "name": "Vocaloids", "description": "Vocaloid (stylized as VOCALOID) is a singing voice synthesizer software product developed by the Yamaha Corporation. This features mini versions of some of the most popular Vocaloids all on top of a \"MIKU\" sign. From right to left, the Vocaloids are Kagamine Len, Kagamine Rin, Megurine Luka, MEIKO, and KAITO.", "links": {"website": ["https://www.vocaloid.com/en/"], "subreddit": ["Vocaloid"]}, "path": {"221-258, T": [[-335, 571], [-308, 571], [-309, 586], [-335, 586]]}, "center": {"221-258, T": [-321, 579]}}, +{"id": 2397, "name": "Tiny Bill Cipher", "description": "Tiny Bill Cipher was a project of u/finniansss from r/gravityfalls who had help from r/tinytardis, and r/mylittlepony in r/place 2022. \n\nThis year the same user asked for help from their old allies to build a new Tiny Bill Cipher next to the Tiny Tardis and above the Waddle Dee.", "links": {"subreddit": ["gravityfalls", "tinytardis", "mylittlepony"]}, "path": {"221-258, T": [[509, 887], [510, 887], [509, 888], [512, 888], [512, 887], [511, 886], [512, 885], [510, 883], [508, 885], [509, 886], [508, 887], [508, 888]]}, "center": {"221-258, T": [510, 885]}}, +{"id": 2398, "name": "Corote", "description": "A popular brazilian brand of alcoholic beverages, made known by its bottle style and colors", "links": {"website": ["https://corote.com.br/"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"162-258, T": [[250, 557], [254, 562], [254, 569], [251, 570], [247, 570], [245, 568], [245, 562], [249, 557]]}, "center": {"162-258, T": [250, 564]}}, +{"id": 2399, "name": "[MLP] Tiny Sunburst", "description": "Sunburst is a recurring supporting character from My Little Pony: Friendship Is Magic. He is a unicorn from the Crystal Empire and one of his distinguishing features are his naturally white socks (hoof coloration).", "links": {"website": ["https://mlp.fandom.com/wiki/Sunburst"], "subreddit": ["mylittlepony"]}, "path": {"221-258, T": [[565, 880], [567, 880], [567, 881], [569, 881], [569, 883], [568, 883], [568, 884], [564, 884], [563, 882], [563, 879], [566, 879]]}, "center": {"221-258, T": [565, 882]}}, +{"id": 2400, "name": "Assassin & SocksNeedsHelp", "description": "SocksNeedsHelp is a variety content creator with an emphasis on modded Risk of Rain 2. Assassin is a character from Realm of the Mad God/ROTMG (specifically, the RoR2 modded character of it, created by HasteReapr/Bee in the SocksNeedsHelp Discord server.)", "links": {}, "path": {"221-258, T": [[-1227, 579], [-1246, 579], [-1246, 589], [-1226, 589], [-1226, 579]]}, "center": {"221-258, T": [-1236, 584]}}, +{"id": 2401, "name": "Waddle Dee", "description": "Waddle Dee, a character from the Kirby series, that found a spot beside Tiny Tardis early on. One of the very first alliances made with the MLP, and Tiny Tardis factions. Later lost due to a streamer attack, Waddle Dee finally returned beside Tiny Tardis once again, after the MLP faction settled into their final main location on the canvas.", "links": {}, "path": {"220-258, T": [[508, 888], [513, 888], [515, 895], [506, 895], [506, 889]]}, "center": {"220-258, T": [510, 892]}}, +{"id": 2402, "name": "Le Fabuleux destin d'Amélie Poulain", "description": "The Fabulous Destiny of Amélie Poulain is a 2001 French period magical realism romantic comedy film directed by Jean-Pierre Jeunet. Written by Jeunet with Guillaume Laurant, the film is a whimsical depiction of contemporary Parisian life, set in Montmartre. It tells the story of a shy waitress, played by Audrey Tautou, who decides to change the lives of those around her for the better while dealing with her own isolation.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"213-258, T": [[1002, -281], [1055, -281], [1055, -212], [1002, -214]]}, "center": {"213-258, T": [1029, -246]}}, +{"id": 2403, "name": "Karmaland", "description": "Karmaland is one of the best-known and oldest Minecraft series in the Spanish-speaking community. Created by the Spanish youtubers Vegetta777 and Willyrex, in 2014, it currently has 5 seasons.\nThe members of its last season were: Vegetta777, Willyrex, sTaXx, Alexby11, xfarganx, Luzu, Rubius, Lolito, Mangel, Maximus (sapopeta), Quackity and Illojuan.", "links": {}, "path": {"220-258, T": [[400, 362], [446, 362], [445, 413], [401, 413]]}, "center": {"220-258, T": [423, 385]}}, +{"id": 2404, "name": "Sakura Miku", "description": "Sakura Miku is the name of a Hatsune Miku Japanese Vocaloid module. Sakura Miku is a pink-themed alternate hue for Hatsune Miku, designed to symbolize the start of spring. The official Sakura Miku appeared in 2011. At the 2011 Hatsune Miku concert, a small Sakura Miku of about 3.5cm was given away. The \"Project DIVA\" series includes Sakura Miku as an alternate character module for Hatsune Miku.", "links": {"website": ["https://project-diva.fandom.com/wiki/Sakura_Miku"], "subreddit": ["hatsune", "touhou"], "discord": ["hatsune", "apl"]}, "path": {"204-258, T": [[1322, 332], [1322, 334], [1319, 337], [1317, 337], [1317, 360], [1319, 360], [1322, 363], [1322, 365], [1343, 365], [1343, 363], [1346, 360], [1348, 360], [1348, 337], [1346, 337], [1343, 334], [1343, 332]]}, "center": {"204-258, T": [1333, 349]}}, +{"id": 2405, "name": "Toyosatomimi no Miko", "description": "Toyosatomimi no Miko is the main antagonist of the game Touhou Shinreibyou ~ Ten Desires. The game hints that Miko is transgender.", "links": {"website": ["https://en.touhouwiki.net/wiki/Toyosatomimi_no_Miko"], "subreddit": ["touhou", "transplace"], "discord": ["apl", "TransPlace"]}, "path": {"86-258, T": [[147, 69], [145, 72], [145, 77], [146, 78], [146, 84], [145, 85], [145, 86], [160, 86], [160, 85], [158, 83], [158, 82], [159, 81], [160, 76], [162, 74], [162, 72], [159, 72], [155, 68], [148, 68]]}, "center": {"86-258, T": [153, 76]}}, +{"id": 2406, "name": "Billy", "description": "Billy is a slime character from the game Pong Ultimate, made by the Belgian streamer Doigt. It was drawn near the start of r/place and quickly adopted by r/transplace, which now has a Billy Appreciation Club. Billy was later recolored to match the bisexual pride flag.", "links": {"subreddit": ["transplace"], "discord": ["TransPlace"]}, "path": {"3-8": [[400, 100], [400, 99], [399, 99], [399, 98], [398, 98], [398, 95], [399, 95], [399, 93], [400, 93], [400, 92], [401, 92], [401, 91], [402, 91], [402, 90], [404, 90], [404, 89], [408, 89], [408, 90], [410, 90], [410, 91], [411, 91], [411, 92], [412, 92], [412, 93], [413, 93], [413, 94], [414, 94], [414, 98], [413, 98], [413, 99], [412, 99], [412, 100]], "16-258, T": [[165, 72], [161, 75], [158, 78], [158, 82], [161, 85], [173, 85], [176, 82], [176, 79], [174, 76], [171, 73], [169, 72]]}, "center": {"3-8": [406, 95], "16-258, T": [167, 79]}}, +{"id": 2407, "name": "The Moroccan Coat of Arms", "description": "The Coat of arms of Morocco shows: a green pentagram or Star of Solomon on a red background before the Atlas Mountains and a rising sun. The royal crown is on top. Two Barbary lions function as the holders of the shield.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Morocco"], "subreddit": ["morocco"]}, "path": {"206-258, T": [[1445, 832], [1436, 837], [1424, 839], [1416, 843], [1417, 853], [1413, 881], [1414, 893], [1444, 898], [1477, 895], [1488, 867], [1483, 848], [1482, 840], [1474, 837], [1460, 833], [1453, 830], [1451, 827], [1449, 825], [1445, 827], [1444, 831]]}, "center": {"206-258, T": [1453, 865]}}, +{"id": 2408, "name": "Lyria", "description": "The deuteragonist of Japanese Gacha Game, Granblue Fantasy. Lyria, otherwise known as \"The Girl in Blue\" is a mysteriously powerful girl that can control Primal Beasts and revived the Main Character via. a life-link and is therefore eternally attached to them", "links": {"subreddit": ["Granblue_en"]}, "path": {"222-258, T": [[-727, 163], [-732, 165], [-733, 172], [-732, 173], [-732, 174], [-731, 174], [-730, 176], [-725, 176], [-725, 175], [-724, 174], [-724, 168], [-724, 166]]}, "center": {"222-258, T": [-728, 170]}}, +{"id": 2409, "name": "Cozy Glow's Cutie Mark", "description": "Cutie marks are small symbols from My Little Pony, displayed on the show's characters to symbolize them.\n\nThis is Cozy Glow's, a character from MLP: Friendship is Magic, who is depicted as a ruthless mastermind. Her cutie mark symbolizes her cunning duality displayed throughout the show.\n\nThis is also the last remnant of the original MLP art, which was raided by a streamer who replaced Rainbow Dash, another MLP: FiM character, with a platypus. Reddit went on to tweet in support of this nuke.", "links": {"website": ["https://mlp.fandom.com/wiki/Cozy_Glow"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"221-258, T": [[23, 248], [29, 248], [29, 240], [23, 240]]}, "center": {"221-258, T": [26, 244]}}, +{"id": 2410, "name": "Aztec calendar", "description": "The Aztec or Mexica calendar is the calendrical system used by the Aztecs as well as other Pre-Columbian peoples of central Mexico. It is one of the Mesoamerican calendars, sharing the basic structure of calendars from throughout ancient Mesoamerica.\n\"Viva el 401!\"", "links": {"website": ["https://en.wikipedia.org/wiki/Aztec_calendar"]}, "path": {"205-258, T": [[1435, 516], [1413, 521], [1393, 534], [1379, 548], [1374, 563], [1372, 600], [1386, 621], [1417, 642], [1451, 642], [1486, 620], [1499, 605], [1498, 562], [1483, 537], [1462, 522], [1447, 518], [1445, 518]]}, "center": {"205-258, T": [1436, 579]}}, +{"id": 2411, "name": "Sachertorte", "description": "A famous Cake mainly out of Austria made of choccolate and jam", "links": {"website": ["https://wikipedia.org/wiki/Sachertorte"], "discord": ["placeaustria"]}, "path": {"222-258, T": [[-1097, -36], [-1083, -48], [-1083, -56], [-1070, -57], [-1070, -47], [-1078, -47], [-1072, -39], [-1073, -27], [-1079, -26], [-1096, -27]]}, "center": {"222-258, T": [-1082, -36]}}, +{"id": 2412, "name": "KeMonito", "description": "Mexican masked professional wrestler, working for the Mexican professional wrestling promotion Consejo Mundial de Lucha Libre (CMLL) portraying a tecnico (\"Good guy\")", "links": {"website": ["https://en.wikipedia.org/wiki/KeMonito"]}, "path": {"222-258, T": [[71, -849], [89, -849], [89, -829], [71, -829], [71, -830]]}, "center": {"222-258, T": [80, -839]}}, +{"id": 2413, "name": "Internet Explorer", "description": "Internet Explorer was the default web browser for Windows operating systems from 1995 to 2016. It was deprecated shortly after the creation of Microsoft Edge in 2015.\n\nThe icon was griefed by Russian trolls around 3 times as of 12:15 AM EST, converting it into a Yandex icon, a Russian web browser and the Steam logo. The logo was rebuilt multiple times.", "links": {"website": ["https://microsoft.com/ie"], "subreddit": ["InternetExplorer"]}, "path": {"182-258, T": [[-1183, 973], [-1184, 978], [-1186, 980], [-1188, 985], [-1189, 987], [-1190, 987], [-1189, 991], [-1186, 991], [-1184, 993], [-1182, 996], [-1182, 997], [-1182, 999], [-1098, 999], [-1098, 972], [-1184, 973]]}, "center": {"182-258, T": [-1141, 986]}}, +{"id": 2414, "name": "Clash Royale", "description": "Clash Royale is a mobile RTS game where you use cards and place your units tactically to destroy the enemie's tower. \n\nThis pixel art was a protest against the pay-to-win (P2W) changes added to the game in the latest updates.", "links": {"website": ["https://en.wikipedia.org/wiki/Clash_Royale"], "subreddit": ["ClashRoyale"]}, "path": {"222-258, T": [[-1354, 565], [-1368, 579], [-1368, 619], [-1294, 619], [-1294, 565], [-1348, 565]]}, "center": {"222-258, T": [-1331, 592]}}, {"id": 2415, "name": "German Ainz", "description": "Submitted to Germany after the first attempt to place Ainz had failed. he is a skeleton mage holding a staff.", "links": {"subreddit": ["overlord"], "discord": ["sbbRw8J4"]}, "path": {"220": [[-626, -983], [-622, -987], [-615, -987], [-608, -985], [-613, -973], [-626, -973]]}, "center": {"220": [-619, -980]}}, -{"id": 2416, "name": "Moroccan Zellij Pattern", "description": "This pattern is called Zellige, seen frequently and originating in Morocco. Zellige is a tilework made from individually chiseled geometric tiles set into a plaster base, then crafted into a unique pattern, it can be observed in any major Moroccan monument.", "links": {"subreddit": ["morocco"]}, "path": {"222-258": [[1397, 780], [1345, 780], [1346, 820], [1398, 821], [1397, 781]]}, "center": {"222-258": [1372, 800]}}, -{"id": 2417, "name": "Don Ramón", "description": "Mexican fictional character from the Mexican television sitcom El Chavo del Ocho. played by the Mexican actor Ramón Valdés.", "links": {"website": ["https://en.wikipedia.org/wiki/Don_Ramón"]}, "path": {"164-258": [[-213, 98], [-225, 108], [-225, 111], [-224, 112], [-224, 120], [-223, 121], [-223, 125], [-222, 126], [-218, 134], [-218, 137], [-216, 141], [-213, 141], [-207, 141], [-204, 135], [-203, 130], [-200, 123], [-200, 111], [-199, 105], [-204, 99], [-206, 98]]}, "center": {"164-258": [-212, 118]}}, +{"id": 2416, "name": "Moroccan Zellij Pattern", "description": "This pattern is called Zellige, seen frequently and originating in Morocco. Zellige is a tilework made from individually chiseled geometric tiles set into a plaster base, then crafted into a unique pattern, it can be observed in any major Moroccan monument.", "links": {"subreddit": ["morocco"]}, "path": {"222-258, T": [[1397, 780], [1345, 780], [1346, 820], [1398, 821], [1397, 781]]}, "center": {"222-258, T": [1372, 800]}}, +{"id": 2417, "name": "Don Ramón", "description": "Mexican fictional character from the Mexican television sitcom El Chavo del Ocho. played by the Mexican actor Ramón Valdés.", "links": {"website": ["https://en.wikipedia.org/wiki/Don_Ramón"]}, "path": {"164-258, T": [[-213, 98], [-225, 108], [-225, 111], [-224, 112], [-224, 120], [-223, 121], [-223, 125], [-222, 126], [-218, 134], [-218, 137], [-216, 141], [-213, 141], [-207, 141], [-204, 135], [-203, 130], [-200, 123], [-200, 111], [-199, 105], [-204, 99], [-206, 98]]}, "center": {"164-258, T": [-212, 118]}}, {"id": 2418, "name": "The Ballad of Hamantha", "description": "A song by artist, Jack Stauber", "links": {"website": ["https://jackstauber.com/"], "subreddit": ["jackstauber"], "discord": ["HcFqDKT"]}, "path": {"167-234": [[-615, 814], [-600, 814], [-600, 829], [-614, 829], [-613, 828], [-612, 827], [-612, 826], [-613, 825], [-614, 824], [-615, 825]]}, "center": {"167-234": [-607, 821]}}, {"id": 2419, "name": "State Of Alaska", "description": "The U.S. state of Alaska is the northernmost of the U.S.", "links": {"website": ["https://en.wikipedia.org/wiki/Alaska"], "subreddit": ["AmericanFlaginPlace"]}, "path": {"209-247": [[-173, 100], [-170, 100], [-166, 102], [-158, 106], [-159, 111], [-151, 120], [-158, 120], [-160, 114], [-165, 116], [-171, 125], [-176, 129], [-183, 130], [-179, 117], [-179, 114], [-176, 107], [-175, 102]]}, "center": {"209-247": [-169, 109]}}, -{"id": 2420, "name": "Universidad Nacional de Colombia (Unal)", "description": "The National University of Colombia (UNAL) is a national Colombian public university, founded under the government of Santos Acosta on September 22, 1867. It is linked to the history and academic production of Latin America. Its flagship campus, the University City of Bogotá, is the largest in the country and has 17 buildings declared a national monument. It has campuses in Medellín, Manizales, Palmira, Arauca, Leticia, Tumaco, San Andrés and La Paz (Cesar).​", "links": {"website": ["https://unal.edu.co"], "subreddit": ["Colombia"]}, "path": {"178-258": [[-871, 867], [-846, 867], [-846, 881], [-871, 881]]}, "center": {"178-258": [-858, 874]}}, -{"id": 2421, "name": "Supreme Calamitas badge", "description": "A sprite of the head of Supreme Calamitas from the Terraria mod Calamity with the Y from the Calamity logo directly beneath it, built by a small offshoot discord server of r/CalamityMod", "links": {"subreddit": ["CalamityMod"]}, "path": {"166-258": [[393, -963], [393, -939], [406, -939], [406, -963]]}, "center": {"166-258": [400, -951]}}, +{"id": 2420, "name": "Universidad Nacional de Colombia (Unal)", "description": "The National University of Colombia (UNAL) is a national Colombian public university, founded under the government of Santos Acosta on September 22, 1867. It is linked to the history and academic production of Latin America. Its flagship campus, the University City of Bogotá, is the largest in the country and has 17 buildings declared a national monument. It has campuses in Medellín, Manizales, Palmira, Arauca, Leticia, Tumaco, San Andrés and La Paz (Cesar).​", "links": {"website": ["https://unal.edu.co"], "subreddit": ["Colombia"]}, "path": {"178-258, T": [[-871, 867], [-846, 867], [-846, 881], [-871, 881]]}, "center": {"178-258, T": [-858, 874]}}, +{"id": 2421, "name": "Supreme Calamitas badge", "description": "A sprite of the head of Supreme Calamitas from the Terraria mod Calamity with the Y from the Calamity logo directly beneath it, built by a small offshoot discord server of r/CalamityMod", "links": {"subreddit": ["CalamityMod"]}, "path": {"166-258, T": [[393, -963], [393, -939], [406, -939], [406, -963]]}, "center": {"166-258, T": [400, -951]}}, {"id": 2422, "name": "French Ainz(2)", "description": "this is the unexpected creation of second French Ainz first was(910,-180) but was changed. He holds the baguette of Ainz Ool Gown.", "links": {"subreddit": ["overlord"], "discord": ["sbbRw8J4"]}, "path": {"220": [[-462, 550], [-462, 567], [-442, 567], [-442, 550]]}, "center": {"220": [-452, 559]}}, -{"id": 2423, "name": "XQC you Wappla", "description": "Insult towards XQC after his failed attempt of attacking Austria thanks to Papaplatte and various communities assisting austria.", "links": {"discord": ["placeaustria"]}, "path": {"212-258": [[-785, -46], [-697, -46], [-697, -36], [-785, -37]]}, "center": {"212-258": [-710, -41]}}, -{"id": 2424, "name": "MC Championship", "description": "MC Championship (MCC) is a Minecraft Tournament organized by The Noxcrew and Smajor.", "links": {"website": ["https://noxcrew.com/mcc"], "subreddit": ["MinecraftChampionship"]}, "path": {"221-258": [[-617, -247], [-589, -247], [-589, -238], [-587, -238], [-587, -237], [-587, -236], [-622, -236], [-622, -241], [-617, -241]]}, "center": {"221-258": [-604, -241]}}, -{"id": 2425, "name": "Starlight Glimmer", "description": "Starlight Glimmer is a reccuring character in the series My Little Pony: Friendship is Magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Starlight_Glimmer"], "subreddit": ["mylittlepony"]}, "path": {"222-258": [[626, 95], [626, 93], [627, 93], [627, 92], [629, 92], [630, 91], [631, 90], [631, 88], [633, 85], [635, 83], [639, 83], [643, 84], [644, 86], [645, 89], [646, 91], [650, 92], [651, 94], [651, 95], [651, 96], [626, 96], [626, 93]]}, "center": {"222-258": [638, 90]}}, -{"id": 2426, "name": "Puffmin", "description": "Puffmin Is a hostile type of Pikmin that only appears in Pikmin 1. They are created when the Puffstool covers your Pikmin in spores. once the transformation is complete, the Puffmin begin to attack your captain.", "links": {"website": ["https://www.pikminwiki.com/Mushroom_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"222-258": [[237, 87], [237, 77], [233, 77], [233, 87]]}, "center": {"222-258": [235, 82]}}, -{"id": 2427, "name": "Flags of Osea, Cascadia and Belka", "description": "Flags of fictional nations Osea (top), Cascadia (middel) and Belka (bottom), the top and bottom being from the Ace Combat universe, and the middel is from Project Wingman's universe.\n\nAltough r/acecombat is private in protest of the recent API changes. This didn't seem to stop r/Project_Wingman from making the Osean and Belkan flags anyways, with both games having overlapping fanbases", "links": {"website": ["https://empirebuilder.fandom.com/wiki/The_Republic_of_Belka", "https://en.wikipedia.org/wiki/Ace_Combat"], "subreddit": ["Project_Wingman", "acecombat"]}, "path": {"211-223": [[-1024, 195], [-1024, 212], [-1012, 212], [-1012, 195]], "224-258": [[-1024, 195], [-1024, 220], [-1012, 220], [-1012, 195]]}, "center": {"211-223": [-1018, 204], "224-258": [-1018, 208]}}, -{"id": 2428, "name": "Kaworu & Shinji", "description": "from evangelion", "links": {"website": ["https://en.wikipedia.org/wiki/Neon_Genesis_Evangelion"]}, "path": {"222-258": [[-130, -992], [-128, -981], [-133, -970], [-164, -973], [-160, -990]]}, "center": {"222-258": [-140, -981]}}, +{"id": 2423, "name": "XQC you Wappla", "description": "Insult towards XQC after his failed attempt of attacking Austria thanks to Papaplatte and various communities assisting austria.", "links": {"discord": ["placeaustria"]}, "path": {"212-258, T": [[-785, -46], [-697, -46], [-697, -36], [-785, -37]]}, "center": {"212-258, T": [-710, -41]}}, +{"id": 2424, "name": "MC Championship", "description": "MC Championship (MCC) is a Minecraft Tournament organized by The Noxcrew and Smajor.", "links": {"website": ["https://noxcrew.com/mcc"], "subreddit": ["MinecraftChampionship"]}, "path": {"221-258, T": [[-617, -247], [-589, -247], [-589, -238], [-587, -238], [-587, -237], [-587, -236], [-622, -236], [-622, -241], [-617, -241]]}, "center": {"221-258, T": [-604, -241]}}, +{"id": 2425, "name": "Starlight Glimmer", "description": "Starlight Glimmer is a reccuring character in the series My Little Pony: Friendship is Magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Starlight_Glimmer"], "subreddit": ["mylittlepony"]}, "path": {"222-258, T": [[626, 95], [626, 93], [627, 93], [627, 92], [629, 92], [630, 91], [631, 90], [631, 88], [633, 85], [635, 83], [639, 83], [643, 84], [644, 86], [645, 89], [646, 91], [650, 92], [651, 94], [651, 95], [651, 96], [626, 96], [626, 93]]}, "center": {"222-258, T": [638, 90]}}, +{"id": 2426, "name": "Puffmin", "description": "Puffmin Is a hostile type of Pikmin that only appears in Pikmin 1. They are created when the Puffstool covers your Pikmin in spores. once the transformation is complete, the Puffmin begin to attack your captain.", "links": {"website": ["https://www.pikminwiki.com/Mushroom_Pikmin"], "subreddit": ["Pikmin"]}, "path": {"222-258, T": [[237, 87], [237, 77], [233, 77], [233, 87]]}, "center": {"222-258, T": [235, 82]}}, +{"id": 2427, "name": "Flags of Osea, Cascadia and Belka", "description": "Flags of fictional nations Osea (top), Cascadia (middel) and Belka (bottom), the top and bottom being from the Ace Combat universe, and the middel is from Project Wingman's universe.\n\nAltough r/acecombat is private in protest of the recent API changes. This didn't seem to stop r/Project_Wingman from making the Osean and Belkan flags anyways, with both games having overlapping fanbases", "links": {"website": ["https://empirebuilder.fandom.com/wiki/The_Republic_of_Belka", "https://en.wikipedia.org/wiki/Ace_Combat"], "subreddit": ["Project_Wingman", "acecombat"]}, "path": {"211-223": [[-1024, 195], [-1024, 212], [-1012, 212], [-1012, 195]], "224-258, T": [[-1024, 195], [-1024, 220], [-1012, 220], [-1012, 195]]}, "center": {"211-223": [-1018, 204], "224-258, T": [-1018, 208]}}, +{"id": 2428, "name": "Kaworu & Shinji", "description": "from evangelion", "links": {"website": ["https://en.wikipedia.org/wiki/Neon_Genesis_Evangelion"]}, "path": {"222-258, T": [[-130, -992], [-128, -981], [-133, -970], [-164, -973], [-160, -990]]}, "center": {"222-258, T": [-140, -981]}}, {"id": 2429, "name": "Axolotl", "description": "Axolotl , from Classical Nahuatl: āxōlōtl \n\nThe axolotl is native only to the freshwater of Lake Xochimilco and Lake Chalco in the Valley of Mexico. Lake Chalco no longer exists, having been drained as a flood control measure, and Lake Xochimilco remains a remnant of its former self.\n\nThe wild population has been put under heavy pressure by the growth of Mexico City. The axolotl is currently on the International Union for Conservation of Nature's annual Red List of threatened species.", "links": {"website": ["https://en.wikipedia.org/wiki/Axolotl#Threats"]}, "path": {"85-245": [[-217, 42], [-217, 74], [-244, 74], [-244, 42]]}, "center": {"85-245": [-230, 58]}}, {"id": 2430, "name": "French Albdeo and Demiurge", "description": "made in collaboration with the French was formerly original French Ainz changed to albedo and demiurge after French Ainz 2 appeared unexpectedly", "links": {"subreddit": ["overlord"], "discord": ["sbbRw8J4"]}, "path": {"220": [[899, -184], [899, -173], [922, -173], [922, -194], [898, -194]]}, "center": {"220": [910, -183]}}, -{"id": 2431, "name": "Snivy", "description": "The sprite of Snivy, our favorite pokemon.", "links": {"subreddit": ["snivy"], "discord": ["snivy"]}, "path": {"220-258": [[1425, 112], [1426, 111], [1429, 111], [1430, 110], [1431, 109], [1432, 108], [1436, 108], [1437, 109], [1438, 110], [1439, 111], [1440, 112], [1441, 113], [1442, 112], [1442, 113], [1444, 114], [1445, 115], [1445, 118], [1445, 119], [1444, 120], [1443, 121], [1442, 121], [1441, 122], [1440, 123], [1440, 124], [1438, 125], [1430, 124], [1430, 120], [1429, 120], [1429, 118], [1425, 114]]}, "center": {"220-258": [1436, 117]}}, +{"id": 2431, "name": "Snivy", "description": "The sprite of Snivy, our favorite pokemon.", "links": {"subreddit": ["snivy"], "discord": ["snivy"]}, "path": {"220-258, T": [[1425, 112], [1426, 111], [1429, 111], [1430, 110], [1431, 109], [1432, 108], [1436, 108], [1437, 109], [1438, 110], [1439, 111], [1440, 112], [1441, 113], [1442, 112], [1442, 113], [1444, 114], [1445, 115], [1445, 118], [1445, 119], [1444, 120], [1443, 121], [1442, 121], [1441, 122], [1440, 123], [1440, 124], [1438, 125], [1430, 124], [1430, 120], [1429, 120], [1429, 118], [1425, 114]]}, "center": {"220-258, T": [1436, 117]}}, {"id": 2432, "name": "National university of colombia (UN) Logo", "description": "The national university (UN) / (UNAL) is an institution of higher education in Colombia", "links": {"subreddit": ["unal"]}, "path": {"218": [[-846, 881], [-846, 867], [-871, 867], [-871, 881], [-866, 881]]}, "center": {"218": [-858, 874]}}, -{"id": 2433, "name": "Luís de Camões", "description": "Luís de Camões is a Portuguese poet who is best known for his epic poem, Os Lusíadas.", "links": {"website": ["https://en.wikipedia.org/wiki/Lu%C3%ADs_de_Cam%C3%B5es"], "discord": ["TugaPlace"]}, "path": {"59-258": [[332, 322], [327, 328], [327, 331], [328, 331], [328, 336], [326, 336], [326, 339], [324, 342], [324, 345], [345, 345], [345, 341], [342, 339], [342, 327], [337, 322]]}, "center": {"59-258": [335, 337]}}, -{"id": 2434, "name": "Silithur Infiltrator", "description": "Due to a convergence of the multiverse, the figure of the musician Quim and the streamer Silithur (the blue bangs) converged in this space throughout this event", "links": {"website": ["https://en.wikipedia.org/wiki/Quim_Barreiros", "https://www.twitch.tv/silithur"], "discord": ["silithur"]}, "path": {"73-258": [[355, 323], [358, 323], [363, 329], [363, 332], [361, 334], [358, 335], [364, 340], [364, 345], [344, 344], [347, 338], [352, 336], [352, 334], [347, 328], [353, 323], [356, 323]]}, "center": {"73-258": [356, 329]}}, -{"id": 2435, "name": "Quim Barreiros", "description": "Quim Barreiros is a Portuguese musician and singer who specializes in Pimba, a Portuguese genre of folk music with crude or corny lyrics.", "links": {"website": ["https://en.wikipedia.org/wiki/Quim_Barreiros"], "discord": ["TugaPlace"]}, "path": {"60-258": [[355, 320], [346, 328], [346, 329], [350, 335], [350, 336], [348, 336], [344, 340], [344, 345], [362, 345], [364, 341], [364, 339], [360, 336], [360, 333], [364, 329], [364, 328]]}, "center": {"60-258": [354, 330]}}, -{"id": 2436, "name": "UABO", "description": "This egg is from the meme \"UABO\" from Portuguese steamer wuant.", "links": {"website": ["https://www.twitch.tv/wuant", "https://youtube.fandom.com/wiki/Wuant"], "discord": ["TugaPlace"]}, "path": {"99-258": [[353, 335], [353, 340], [351, 340], [351, 346], [349, 348], [349, 350], [354, 354], [359, 354], [364, 350], [364, 348], [362, 346], [362, 341], [360, 339], [360, 335]]}, "center": {"99-258": [356, 348]}}, -{"id": 2437, "name": "Heart of Viana", "description": "The Heart of Viana (Portuguese: Coração de Viana) is a piece of jewelry that symbolizes Portugal.", "links": {"website": ["https://www.luisa-paixao.eu/blogs/la-vie-au-portugal/coeur-de-viana"], "discord": ["TugaPlace"]}, "path": {"101-258": [[-828, 187], [-831, 190], [-833, 193], [-833, 197], [-830, 202], [-824, 208], [-824, 212], [-823, 212], [-823, 215], [-824, 215], [-827, 219], [-827, 220], [-822, 220], [-808, 212], [-799, 203], [-797, 198], [-797, 193], [-802, 188], [-810, 188], [-810, 186], [-825, 186], [-826, 187]]}, "center": {"101-258": [-814, 200]}}, +{"id": 2433, "name": "Luís de Camões", "description": "Luís de Camões is a Portuguese poet who is best known for his epic poem, Os Lusíadas.", "links": {"website": ["https://en.wikipedia.org/wiki/Lu%C3%ADs_de_Cam%C3%B5es"], "discord": ["TugaPlace"]}, "path": {"59-258, T": [[332, 322], [327, 328], [327, 331], [328, 331], [328, 336], [326, 336], [326, 339], [324, 342], [324, 345], [345, 345], [345, 341], [342, 339], [342, 327], [337, 322]]}, "center": {"59-258, T": [335, 337]}}, +{"id": 2434, "name": "Silithur Infiltrator", "description": "Due to a convergence of the multiverse, the figure of the musician Quim and the streamer Silithur (the blue bangs) converged in this space throughout this event", "links": {"website": ["https://en.wikipedia.org/wiki/Quim_Barreiros", "https://www.twitch.tv/silithur"], "discord": ["silithur"]}, "path": {"73-258, T": [[355, 323], [358, 323], [363, 329], [363, 332], [361, 334], [358, 335], [364, 340], [364, 345], [344, 344], [347, 338], [352, 336], [352, 334], [347, 328], [353, 323], [356, 323]]}, "center": {"73-258, T": [356, 329]}}, +{"id": 2435, "name": "Quim Barreiros", "description": "Quim Barreiros is a Portuguese musician and singer who specializes in Pimba, a Portuguese genre of folk music with crude or corny lyrics.", "links": {"website": ["https://en.wikipedia.org/wiki/Quim_Barreiros"], "discord": ["TugaPlace"]}, "path": {"60-258, T": [[355, 320], [346, 328], [346, 329], [350, 335], [350, 336], [348, 336], [344, 340], [344, 345], [362, 345], [364, 341], [364, 339], [360, 336], [360, 333], [364, 329], [364, 328]]}, "center": {"60-258, T": [354, 330]}}, +{"id": 2436, "name": "UABO", "description": "This egg is from the meme \"UABO\" from Portuguese steamer wuant.", "links": {"website": ["https://www.twitch.tv/wuant", "https://youtube.fandom.com/wiki/Wuant"], "discord": ["TugaPlace"]}, "path": {"99-258, T": [[353, 335], [353, 340], [351, 340], [351, 346], [349, 348], [349, 350], [354, 354], [359, 354], [364, 350], [364, 348], [362, 346], [362, 341], [360, 339], [360, 335]]}, "center": {"99-258, T": [356, 348]}}, +{"id": 2437, "name": "Heart of Viana", "description": "The Heart of Viana (Portuguese: Coração de Viana) is a piece of jewelry that symbolizes Portugal.", "links": {"website": ["https://www.luisa-paixao.eu/blogs/la-vie-au-portugal/coeur-de-viana"], "discord": ["TugaPlace"]}, "path": {"101-258, T": [[-828, 187], [-831, 190], [-833, 193], [-833, 197], [-830, 202], [-824, 208], [-824, 212], [-823, 212], [-823, 215], [-824, 215], [-827, 219], [-827, 220], [-822, 220], [-808, 212], [-799, 203], [-797, 198], [-797, 193], [-802, 188], [-810, 188], [-810, 186], [-825, 186], [-826, 187]]}, "center": {"101-258, T": [-814, 200]}}, {"id": 2438, "name": "Los monos and Dream", "description": "This drawing are the skins from Minecraft from a group of friends called \"Los Monos\" conforming by (from right to left) Omega_Critico, GianTV, SrAmilcar, Farfadox, Dream and Shadoune666 (Dream is not part of the Monos but they added it because there are they friends)", "links": {"website": ["https://www.youtube.com/@CriticoOmega", "https://www.youtube.com/@Giantv", "https://www.youtube.com/@SrAmilcar1", "https://www.youtube.com/@Farfadox", "https://www.youtube.com/@dream", "https://www.youtube.com/@Shadoune666"]}, "path": {"172-220": [[-1031, -296], [-1121, -297], [-1121, -281], [-1031, -281]]}, "center": {"172-220": [-1113, -289]}}, -{"id": 2439, "name": "Tony Tony Chopper", "description": "Tony Tony Chopper aka \"Cotton Candy Lover\" Chopper, is a character from the One piece manga/anime, and the doctor of the Straw Hat Pirates", "links": {"website": ["https://onepiece.fandom.com/wiki/Tony_Tony_Chopper"], "subreddit": ["onepiece"]}, "path": {"223-258": [[-623, -637], [-602, -637], [-601, -611], [-624, -611], [-623, -611]]}, "center": {"223-258": [-612, -624]}}, -{"id": 2440, "name": "DinoDance", "description": "DinoDance is an animated emote that was recently added on the platform Twitch.tv. Being the first global animated emote (animated emote accessible to all users), it is represented here as it looks on the website.", "links": {"website": ["https://twitch.tv"]}, "path": {"223-258": [[-1438, -350], [-1438, -343], [-1426, -343], [-1426, -350]]}, "center": {"223-258": [-1432, -346]}}, -{"id": 2441, "name": "Ollie Bye", "description": "Ollie Bye is a popular mapper and youtuber that makes educational videos about historical events through the use of animated maps.", "links": {"website": ["https://www.youtube.com/@OllieBye"], "discord": ["ollie-bye-344557435757002753"]}, "path": {"223-258": [[-527, 123], [-527, 136], [-502, 136], [-502, 123]]}, "center": {"223-258": [-514, 130]}}, -{"id": 2442, "name": "Sweetie Bot", "description": "Sweetie Bot is a character in the My Little Pony parody series, Friendship is Witchcraft, based on the character \"Sweetie Belle\" from the main show. The pixel art was drawn by a brony faction called Secret r/place Brownies, usually shortened to Sr/pB.", "links": {"website": ["https://knowyourmeme.com/memes/sweetie-bot"], "subreddit": ["mylittlepony"], "discord": ["6BPJ6xYk"]}, "path": {"222-258": [[-368, 965], [-367, 948], [-362, 943], [-357, 941], [-356, 924], [-345, 919], [-331, 919], [-331, 924], [-328, 928], [-330, 932], [-334, 932], [-334, 944], [-339, 946], [-337, 969], [-368, 970], [-368, 966]]}, "center": {"222-258": [-353, 955]}}, -{"id": 2443, "name": "The Great Review and Outer Wilds Collaboration", "description": "This art depicts the subreddit logo of The Great Review (TGR), who is a French gaming youtuber.\n\nThis art also depicts the Eye of the Universe in the action-adventure game Outer Wilds, in which the player character solves the mysteries of a doomed solar system.\nThe quantum moon is depicted at the 6th location, next to the eye.", "links": {"website": ["https://www.youtube.com/@TheGreatReview"], "subreddit": ["thegreatreview", "outerwilds"], "discord": ["JrZMPsPn"]}, "path": {"208-258": [[1137, -4], [1201, -5], [1201, -1], [1198, -1], [1203, -1], [1203, -4], [1207, -4], [1207, 9], [1168, 9], [1168, 8], [1168, 9], [1167, 9], [1167, 13], [1169, 13], [1169, 16], [1169, 13], [1167, 13], [1167, 9], [1207, 9], [1207, -4], [1203, -4], [1203, -1], [1203, 1], [1200, 1], [1200, 4], [1160, 4], [1160, 5], [1159, 5], [1159, 6], [1158, 7], [1158, 8], [1165, 8], [1165, 10], [1158, 10], [1158, 12], [1161, 12], [1161, 14], [1158, 14], [1158, 13], [1156, 13], [1156, 17], [1157, 17], [1157, 20], [1155, 20], [1155, 18], [1154, 18], [1154, 16], [1152, 16], [1152, 19], [1150, 19], [1150, 14], [1146, 14], [1146, 15], [1145, 15], [1145, 16], [1144, 16], [1144, 15], [1145, 15], [1145, 14], [1146, 14], [1146, 13], [1147, 13], [1147, 11], [1146, 11], [1146, 10], [1142, 10], [1142, 8], [1146, 8], [1146, 7], [1147, 7], [1147, 6], [1147, 5], [1146, 5], [1137, 5], [1137, 4]]}, "center": {"208-258": [1153, 2]}}, -{"id": 2444, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.\nThe three characters are from 3 music videos, Rock-chan, Otona-chan, and Bus-chan.\nThe black and gray music note is a tribute to the Inabakumori community.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"], "discord": ["tuyu"]}, "path": {"177-258": [[-1110, 13], [-1175, 13], [-1175, -6], [-1110, -6]]}, "center": {"177-258": [-1142, 4]}}, -{"id": 2445, "name": "Wowaka & Powapowa-P tribute", "description": "A memorial for the music producers Powapowa-P (also 椎名もた) and Wowaka (before 現実逃避P), who passed away in 2015 and 2019, respectively. They became known for their songs composed with Vocaloid, especially with Hatsune Miku. The heart is from the song 'Unknown Mother-Goose,' while the red pencil is from '赤ベンお願いします' (Please Give Me a Red Pen), the last songs they released before passing away.", "links": {"website": ["https://www.nicovideo.jp/watch/sm26745370", "https://www.youtube.com/watch?v=P_CSdxSGfaA", "https://www.nicovideo.jp/watch/sm31791630"], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"120-124": [[-783, -628], [-783, -656], [-821, -656], [-821, -624], [-788, -624], [-787, -628]], "151-258": [[-897, -227], [-897, -228], [-896, -228], [-896, -229], [-895, -229], [-895, -230], [-894, -230], [-894, -231], [-893, -231], [-893, -232], [-892, -232], [-892, -234], [-891, -234], [-891, -237], [-892, -237], [-892, -238], [-893, -238], [-893, -239], [-894, -239], [-894, -240], [-895, -240], [-895, -241], [-897, -241], [-897, -240], [-898, -240], [-898, -239], [-899, -239], [-900, -240], [-901, -240], [-901, -241], [-902, -242], [-902, -248], [-903, -248], [-903, -251], [-904, -252], [-926, -252], [-926, -251], [-927, -251], [-927, -233], [-928, -233], [-928, -232], [-929, -232], [-929, -231], [-929, -230], [-929, -229], [-919, -229], [-919, -227]]}, "center": {"120-124": [-802, -640], "151-258": [-914, -240]}}, -{"id": 2446, "name": "Transplace-Pikmin Alliance", "description": "The Pikmin community and the members of r/Transplace have been strong allies throughout r/place 2023, and have done multiple collaboration projection, including the main one shown here, which includes the Pikmin Crew and the Trans Flag. Other projects performed by this alliance include, collaboration in the r/FurryIRL project. As well as a seecond trans flag which later got griefed by streamers. In this second project was the Transmin, which was a Winged Pikmin that had the colors of the trans flag.", "links": {"website": ["https://www.pikminwiki.com/Winged_Pikmin", "https://en.wikipedia.org/wiki/Pikmin"], "subreddit": ["Pikmin", "transplace"]}, "path": {"223-258": [[276, 39], [278, 39], [279, 90], [264, 90], [263, 96], [235, 98], [187, 97], [115, 96], [115, 37], [278, 37]]}, "center": {"223-258": [210, 67]}}, -{"id": 2447, "name": "Polandball", "description": "The Main Standing Character of the Subreddit r/Polandball\n\nA subreddit of Wiggly mouse-drawn comics where balls represent different countries. They poke fun at national stereotypes and the \"international drama\" of their diplomatic relations. Polandball combines history, geography, Engrish, and an inferiority complex.\n\nA small circle representing a voltorb, made with one of the pokeballs that was previously in that space.", "links": {"subreddit": ["polandball"], "discord": ["2hwab34"]}, "path": {"189-258": [[-1423, 422], [-1419, 422], [-1419, 423], [-1418, 423], [-1418, 427], [-1419, 427], [-1419, 428], [-1423, 428], [-1423, 427], [-1424, 427], [-1424, 423], [-1423, 423]]}, "center": {"189-258": [-1421, 425]}}, -{"id": 2448, "name": "Discord", "description": "Discord is a song made by Eurobeat Brony (currently Odyssey Eurobeat). In 2012, The Living Tombstone remixed the song with this being the thumbnail for the video.\n\nThis area was the My Little Pony fandom's contribution to the Fuck Spez art.", "links": {"website": ["https://www.youtube.com/watch?v=xPfMb50dsOk"], "subreddit": ["mylittlepony", "TheLivingTombstone", "fuckspezplace"], "discord": ["bronyplace", "fuckspez"]}, "path": {"206-258": [[1346, -78], [1346, -22], [1392, -22], [1392, -77], [1396, -77], [1396, -73], [1397, -73], [1397, -68], [1398, -68], [1398, -64], [1399, -64], [1399, -60], [1400, -60], [1400, -55], [1401, -55], [1401, -49], [1402, -49], [1402, -46], [1403, -46], [1403, -41], [1404, -41], [1404, -37], [1405, -37], [1405, -32], [1406, -32], [1406, -28], [1407, -28], [1407, -22], [1452, -22], [1452, -25], [1451, -25], [1451, -28], [1450, -28], [1450, -32], [1449, -32], [1449, -36], [1448, -36], [1448, -39], [1447, -39], [1447, -43], [1446, -47], [1445, -47], [1445, -51], [1444, -51], [1444, -54], [1443, -54], [1443, -59], [1442, -59], [1442, -62], [1441, -62], [1441, -65], [1440, -65], [1440, -69], [1439, -69], [1439, -75], [1438, -75], [1438, -77], [1437, -77], [1437, -80], [1436, -80], [1436, -81], [1396, -81], [1396, -77], [1392, -78]]}, "center": {"206-258": [1369, -52]}}, -{"id": 2449, "name": "Colorado flag", "description": "flag of the U.S state of Colorado", "links": {"website": ["https://en.wikipedia.org/wiki/Colorado"], "subreddit": ["Colorado"]}, "path": {"223-258": [[1454, 635], [1484, 635], [1484, 650], [1454, 650]]}, "center": {"223-258": [1469, 643]}}, -{"id": 2450, "name": "PokeIsland Palm Tree", "description": "The palm tree, the symbol of the PokeIsland/Poke's Island YouTube/Discord community. Two other depictions of the palm have existed on the canvas; the first a 3x4 design under the protect of r/kessokuband, and a 5x7 design independently developed before it was invaded by the Touhou community.", "links": {"website": ["https://www.youtube.com/@PokeIsland"], "subreddit": ["pokeislandyt"], "discord": ["KVaeKYWY"]}, "path": {"224-258": [[-1147, 479], [-1143, 479], [-1143, 480], [-1134, 480], [-1132, 481], [-1131, 483], [-1131, 487], [-1133, 485], [-1137, 484], [-1135, 486], [-1135, 498], [-1138, 501], [-1139, 501], [-1139, 499], [-1142, 492], [-1143, 491], [-1141, 491], [-1140, 492], [-1139, 495], [-1139, 501], [-1138, 502], [-1138, 512], [-1137, 513], [-1137, 514], [-1138, 515], [-1138, 519], [-1136, 521], [-1137, 522], [-1138, 521], [-1140, 520], [-1142, 518], [-1146, 518], [-1146, 517], [-1142, 513], [-1142, 502], [-1144, 498], [-1144, 497], [-1145, 496], [-1145, 494], [-1146, 493], [-1146, 492], [-1147, 491], [-1147, 489], [-1148, 489], [-1149, 491], [-1151, 493], [-1151, 494], [-1153, 496], [-1155, 498], [-1156, 497], [-1156, 494], [-1155, 493], [-1155, 490], [-1152, 487], [-1154, 487], [-1158, 491], [-1159, 490], [-1158, 489], [-1157, 486], [-1153, 482], [-1149, 482], [-1149, 480], [-1147, 480]]}, "center": {"224-258": [-1143, 485]}}, -{"id": 2451, "name": "El Santo", "description": "Rodolfo Guzmán Huerta known professionally as El Santo or in English The Saint, Mexican masked professional wrestler, actor and folk hero. He is one of the most famous and iconic Mexican wrestlers.", "links": {"website": ["https://en.wikipedia.org/wiki/El_Santo"]}, "path": {"223-258": [[106, -849], [98, -849], [98, -848], [97, -847], [96, -846], [95, -845], [94, -844], [94, -835], [95, -835], [95, -833], [98, -829], [107, -829], [109, -835], [110, -836], [110, -845]]}, "center": {"223-258": [102, -839]}}, -{"id": 2452, "name": "Epic Seven", "description": "Epic Seven is a free-to-play 2D RPG available on iOS and Android platforms. Control a variety of characters as you explore the game's world through its adventure mode, which is brought to life with anime cutscenes that detail the game story as well as individual character special attacks. The character is Ravi in her Chibi art", "links": {"website": ["https://epic7.smilegatemegaport.com/"], "subreddit": ["EpicSeven"], "discord": ["officialepicseven", "epicseven"]}, "path": {"223-258": [[1204, 317], [1205, 348], [1232, 348], [1232, 317]]}, "center": {"223-258": [1218, 332]}}, -{"id": 2453, "name": "Zhongli", "description": "Zhongli is a character from the video game, Genshin Impact. \n\nHe is a playable 5-star Geo Polearm user.", "links": {"website": ["https://genshin.hoyoverse.com/en/home", "https://youtu.be/4oBpaBEMBIM?si=k1uMCtYTiRlWGAXP"], "subreddit": ["Genshin_Impact", "ZhongliMains"]}, "path": {"216-258": [[-1182, -118], [-1182, -119], [-1185, -119], [-1186, -120], [-1187, -120], [-1190, -123], [-1190, -125], [-1188, -127], [-1187, -127], [-1185, -129], [-1187, -129], [-1188, -130], [-1188, -132], [-1185, -135], [-1188, -135], [-1190, -137], [-1190, -141], [-1189, -142], [-1186, -142], [-1185, -143], [-1186, -143], [-1187, -144], [-1187, -150], [-1182, -155], [-1181, -155], [-1180, -156], [-1175, -156], [-1174, -155], [-1173, -155], [-1172, -154], [-1171, -154], [-1170, -153], [-1169, -153], [-1169, -151], [-1168, -150], [-1168, -148], [-1167, -148], [-1167, -144], [-1168, -144], [-1169, -143], [-1169, -141], [-1168, -141], [-1167, -142], [-1167, -143], [-1167, -147], [-1166, -148], [-1158, -148], [-1157, -147], [-1157, -120], [-1155, -118], [-1156, -117], [-1169, -117], [-1169, -118], [-1167, -120], [-1167, -135], [-1172, -135], [-1172, -132], [-1171, -131], [-1171, -130], [-1169, -128], [-1169, -126], [-1167, -124], [-1167, -122], [-1168, -121], [-1173, -121], [-1173, -118], [-1174, -117], [-1181, -117]]}, "center": {"216-258": [-1177, -147]}}, +{"id": 2439, "name": "Tony Tony Chopper", "description": "Tony Tony Chopper aka \"Cotton Candy Lover\" Chopper, is a character from the One piece manga/anime, and the doctor of the Straw Hat Pirates", "links": {"website": ["https://onepiece.fandom.com/wiki/Tony_Tony_Chopper"], "subreddit": ["onepiece"]}, "path": {"223-258, T": [[-623, -637], [-602, -637], [-601, -611], [-624, -611], [-623, -611]]}, "center": {"223-258, T": [-612, -624]}}, +{"id": 2440, "name": "DinoDance", "description": "DinoDance is an animated emote that was recently added on the platform Twitch.tv. Being the first global animated emote (animated emote accessible to all users), it is represented here as it looks on the website.", "links": {"website": ["https://twitch.tv"]}, "path": {"223-258, T": [[-1438, -350], [-1438, -343], [-1426, -343], [-1426, -350]]}, "center": {"223-258, T": [-1432, -346]}}, +{"id": 2441, "name": "Ollie Bye", "description": "Ollie Bye is a popular mapper and youtuber that makes educational videos about historical events through the use of animated maps.", "links": {"website": ["https://www.youtube.com/@OllieBye"], "discord": ["ollie-bye-344557435757002753"]}, "path": {"223-258, T": [[-527, 123], [-527, 136], [-502, 136], [-502, 123]]}, "center": {"223-258, T": [-514, 130]}}, +{"id": 2442, "name": "Sweetie Bot", "description": "Sweetie Bot is a character in the My Little Pony parody series, Friendship is Witchcraft, based on the character \"Sweetie Belle\" from the main show. The pixel art was drawn by a brony faction called Secret r/place Brownies, usually shortened to Sr/pB.", "links": {"website": ["https://knowyourmeme.com/memes/sweetie-bot"], "subreddit": ["mylittlepony"], "discord": ["6BPJ6xYk"]}, "path": {"222-258, T": [[-368, 965], [-367, 948], [-362, 943], [-357, 941], [-356, 924], [-345, 919], [-331, 919], [-331, 924], [-328, 928], [-330, 932], [-334, 932], [-334, 944], [-339, 946], [-337, 969], [-368, 970], [-368, 966]]}, "center": {"222-258, T": [-353, 955]}}, +{"id": 2443, "name": "The Great Review and Outer Wilds Collaboration", "description": "This art depicts the subreddit logo of The Great Review (TGR), who is a French gaming youtuber.\n\nThis art also depicts the Eye of the Universe in the action-adventure game Outer Wilds, in which the player character solves the mysteries of a doomed solar system.\nThe quantum moon is depicted at the 6th location, next to the eye.", "links": {"website": ["https://www.youtube.com/@TheGreatReview"], "subreddit": ["thegreatreview", "outerwilds"], "discord": ["JrZMPsPn"]}, "path": {"208-258, T": [[1137, -4], [1201, -5], [1201, -1], [1198, -1], [1203, -1], [1203, -4], [1207, -4], [1207, 9], [1168, 9], [1168, 8], [1168, 9], [1167, 9], [1167, 13], [1169, 13], [1169, 16], [1169, 13], [1167, 13], [1167, 9], [1207, 9], [1207, -4], [1203, -4], [1203, -1], [1203, 1], [1200, 1], [1200, 4], [1160, 4], [1160, 5], [1159, 5], [1159, 6], [1158, 7], [1158, 8], [1165, 8], [1165, 10], [1158, 10], [1158, 12], [1161, 12], [1161, 14], [1158, 14], [1158, 13], [1156, 13], [1156, 17], [1157, 17], [1157, 20], [1155, 20], [1155, 18], [1154, 18], [1154, 16], [1152, 16], [1152, 19], [1150, 19], [1150, 14], [1146, 14], [1146, 15], [1145, 15], [1145, 16], [1144, 16], [1144, 15], [1145, 15], [1145, 14], [1146, 14], [1146, 13], [1147, 13], [1147, 11], [1146, 11], [1146, 10], [1142, 10], [1142, 8], [1146, 8], [1146, 7], [1147, 7], [1147, 6], [1147, 5], [1146, 5], [1137, 5], [1137, 4]]}, "center": {"208-258, T": [1153, 2]}}, +{"id": 2444, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.\nThe three characters are from 3 music videos, Rock-chan, Otona-chan, and Bus-chan.\nThe black and gray music note is a tribute to the Inabakumori community.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"], "discord": ["tuyu"]}, "path": {"177-258, T": [[-1110, 13], [-1175, 13], [-1175, -6], [-1110, -6]]}, "center": {"177-258, T": [-1142, 4]}}, +{"id": 2445, "name": "Wowaka & Powapowa-P tribute", "description": "A memorial for the music producers Powapowa-P (also 椎名もた) and Wowaka (before 現実逃避P), who passed away in 2015 and 2019, respectively. They became known for their songs composed with Vocaloid, especially with Hatsune Miku. The heart is from the song 'Unknown Mother-Goose,' while the red pencil is from '赤ベンお願いします' (Please Give Me a Red Pen), the last songs they released before passing away.", "links": {"website": ["https://www.nicovideo.jp/watch/sm26745370", "https://www.youtube.com/watch?v=P_CSdxSGfaA", "https://www.nicovideo.jp/watch/sm31791630"], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"120-124": [[-783, -628], [-783, -656], [-821, -656], [-821, -624], [-788, -624], [-787, -628]], "151-258, T": [[-897, -227], [-897, -228], [-896, -228], [-896, -229], [-895, -229], [-895, -230], [-894, -230], [-894, -231], [-893, -231], [-893, -232], [-892, -232], [-892, -234], [-891, -234], [-891, -237], [-892, -237], [-892, -238], [-893, -238], [-893, -239], [-894, -239], [-894, -240], [-895, -240], [-895, -241], [-897, -241], [-897, -240], [-898, -240], [-898, -239], [-899, -239], [-900, -240], [-901, -240], [-901, -241], [-902, -242], [-902, -248], [-903, -248], [-903, -251], [-904, -252], [-926, -252], [-926, -251], [-927, -251], [-927, -233], [-928, -233], [-928, -232], [-929, -232], [-929, -231], [-929, -230], [-929, -229], [-919, -229], [-919, -227]]}, "center": {"120-124": [-802, -640], "151-258, T": [-914, -240]}}, +{"id": 2446, "name": "Transplace-Pikmin Alliance", "description": "The Pikmin community and the members of r/Transplace have been strong allies throughout r/place 2023, and have done multiple collaboration projection, including the main one shown here, which includes the Pikmin Crew and the Trans Flag. Other projects performed by this alliance include, collaboration in the r/FurryIRL project. As well as a seecond trans flag which later got griefed by streamers. In this second project was the Transmin, which was a Winged Pikmin that had the colors of the trans flag.", "links": {"website": ["https://www.pikminwiki.com/Winged_Pikmin", "https://en.wikipedia.org/wiki/Pikmin"], "subreddit": ["Pikmin", "transplace"]}, "path": {"223-258, T": [[276, 39], [278, 39], [279, 90], [264, 90], [263, 96], [235, 98], [187, 97], [115, 96], [115, 37], [278, 37]]}, "center": {"223-258, T": [210, 67]}}, +{"id": 2447, "name": "Polandball", "description": "The Main Standing Character of the Subreddit r/Polandball\n\nA subreddit of Wiggly mouse-drawn comics where balls represent different countries. They poke fun at national stereotypes and the \"international drama\" of their diplomatic relations. Polandball combines history, geography, Engrish, and an inferiority complex.\n\nA small circle representing a voltorb, made with one of the pokeballs that was previously in that space.", "links": {"subreddit": ["polandball"], "discord": ["2hwab34"]}, "path": {"189-258, T": [[-1423, 422], [-1419, 422], [-1419, 423], [-1418, 423], [-1418, 427], [-1419, 427], [-1419, 428], [-1423, 428], [-1423, 427], [-1424, 427], [-1424, 423], [-1423, 423]]}, "center": {"189-258, T": [-1421, 425]}}, +{"id": 2448, "name": "Discord", "description": "Discord is a song made by Eurobeat Brony (currently Odyssey Eurobeat). In 2012, The Living Tombstone remixed the song with this being the thumbnail for the video.\n\nThis area was the My Little Pony fandom's contribution to the Fuck Spez art.", "links": {"website": ["https://www.youtube.com/watch?v=xPfMb50dsOk"], "subreddit": ["mylittlepony", "TheLivingTombstone", "fuckspezplace"], "discord": ["bronyplace", "fuckspez"]}, "path": {"206-258, T": [[1346, -78], [1346, -22], [1392, -22], [1392, -77], [1396, -77], [1396, -73], [1397, -73], [1397, -68], [1398, -68], [1398, -64], [1399, -64], [1399, -60], [1400, -60], [1400, -55], [1401, -55], [1401, -49], [1402, -49], [1402, -46], [1403, -46], [1403, -41], [1404, -41], [1404, -37], [1405, -37], [1405, -32], [1406, -32], [1406, -28], [1407, -28], [1407, -22], [1452, -22], [1452, -25], [1451, -25], [1451, -28], [1450, -28], [1450, -32], [1449, -32], [1449, -36], [1448, -36], [1448, -39], [1447, -39], [1447, -43], [1446, -47], [1445, -47], [1445, -51], [1444, -51], [1444, -54], [1443, -54], [1443, -59], [1442, -59], [1442, -62], [1441, -62], [1441, -65], [1440, -65], [1440, -69], [1439, -69], [1439, -75], [1438, -75], [1438, -77], [1437, -77], [1437, -80], [1436, -80], [1436, -81], [1396, -81], [1396, -77], [1392, -78]]}, "center": {"206-258, T": [1369, -52]}}, +{"id": 2449, "name": "Colorado flag", "description": "flag of the U.S state of Colorado", "links": {"website": ["https://en.wikipedia.org/wiki/Colorado"], "subreddit": ["Colorado"]}, "path": {"223-258, T": [[1454, 635], [1484, 635], [1484, 650], [1454, 650]]}, "center": {"223-258, T": [1469, 643]}}, +{"id": 2450, "name": "PokeIsland Palm Tree", "description": "The palm tree, the symbol of the PokeIsland/Poke's Island YouTube/Discord community. Two other depictions of the palm have existed on the canvas; the first a 3x4 design under the protect of r/kessokuband, and a 5x7 design independently developed before it was invaded by the Touhou community.", "links": {"website": ["https://www.youtube.com/@PokeIsland"], "subreddit": ["pokeislandyt"], "discord": ["KVaeKYWY"]}, "path": {"224-258, T": [[-1147, 479], [-1143, 479], [-1143, 480], [-1134, 480], [-1132, 481], [-1131, 483], [-1131, 487], [-1133, 485], [-1137, 484], [-1135, 486], [-1135, 498], [-1138, 501], [-1139, 501], [-1139, 499], [-1142, 492], [-1143, 491], [-1141, 491], [-1140, 492], [-1139, 495], [-1139, 501], [-1138, 502], [-1138, 512], [-1137, 513], [-1137, 514], [-1138, 515], [-1138, 519], [-1136, 521], [-1137, 522], [-1138, 521], [-1140, 520], [-1142, 518], [-1146, 518], [-1146, 517], [-1142, 513], [-1142, 502], [-1144, 498], [-1144, 497], [-1145, 496], [-1145, 494], [-1146, 493], [-1146, 492], [-1147, 491], [-1147, 489], [-1148, 489], [-1149, 491], [-1151, 493], [-1151, 494], [-1153, 496], [-1155, 498], [-1156, 497], [-1156, 494], [-1155, 493], [-1155, 490], [-1152, 487], [-1154, 487], [-1158, 491], [-1159, 490], [-1158, 489], [-1157, 486], [-1153, 482], [-1149, 482], [-1149, 480], [-1147, 480]]}, "center": {"224-258, T": [-1143, 485]}}, +{"id": 2451, "name": "El Santo", "description": "Rodolfo Guzmán Huerta known professionally as El Santo or in English The Saint, Mexican masked professional wrestler, actor and folk hero. He is one of the most famous and iconic Mexican wrestlers.", "links": {"website": ["https://en.wikipedia.org/wiki/El_Santo"]}, "path": {"223-258, T": [[106, -849], [98, -849], [98, -848], [97, -847], [96, -846], [95, -845], [94, -844], [94, -835], [95, -835], [95, -833], [98, -829], [107, -829], [109, -835], [110, -836], [110, -845]]}, "center": {"223-258, T": [102, -839]}}, +{"id": 2452, "name": "Epic Seven", "description": "Epic Seven is a free-to-play 2D RPG available on iOS and Android platforms. Control a variety of characters as you explore the game's world through its adventure mode, which is brought to life with anime cutscenes that detail the game story as well as individual character special attacks. The character is Ravi in her Chibi art", "links": {"website": ["https://epic7.smilegatemegaport.com/"], "subreddit": ["EpicSeven"], "discord": ["officialepicseven", "epicseven"]}, "path": {"223-258, T": [[1204, 317], [1205, 348], [1232, 348], [1232, 317]]}, "center": {"223-258, T": [1218, 332]}}, +{"id": 2453, "name": "Zhongli", "description": "Zhongli is a character from the video game, Genshin Impact. \n\nHe is a playable 5-star Geo Polearm user.", "links": {"website": ["https://genshin.hoyoverse.com/en/home", "https://youtu.be/4oBpaBEMBIM?si=k1uMCtYTiRlWGAXP"], "subreddit": ["Genshin_Impact", "ZhongliMains"]}, "path": {"216-258, T": [[-1182, -118], [-1182, -119], [-1185, -119], [-1186, -120], [-1187, -120], [-1190, -123], [-1190, -125], [-1188, -127], [-1187, -127], [-1185, -129], [-1187, -129], [-1188, -130], [-1188, -132], [-1185, -135], [-1188, -135], [-1190, -137], [-1190, -141], [-1189, -142], [-1186, -142], [-1185, -143], [-1186, -143], [-1187, -144], [-1187, -150], [-1182, -155], [-1181, -155], [-1180, -156], [-1175, -156], [-1174, -155], [-1173, -155], [-1172, -154], [-1171, -154], [-1170, -153], [-1169, -153], [-1169, -151], [-1168, -150], [-1168, -148], [-1167, -148], [-1167, -144], [-1168, -144], [-1169, -143], [-1169, -141], [-1168, -141], [-1167, -142], [-1167, -143], [-1167, -147], [-1166, -148], [-1158, -148], [-1157, -147], [-1157, -120], [-1155, -118], [-1156, -117], [-1169, -117], [-1169, -118], [-1167, -120], [-1167, -135], [-1172, -135], [-1172, -132], [-1171, -131], [-1171, -130], [-1169, -128], [-1169, -126], [-1167, -124], [-1167, -122], [-1168, -121], [-1173, -121], [-1173, -118], [-1174, -117], [-1181, -117]]}, "center": {"216-258, T": [-1177, -147]}}, {"id": 2454, "name": "Guillermo del Toro", "description": "Mexican filmmaker", "links": {}, "path": {"130-143": [[-220, 133], [-242, 133], [-242, 107], [-220, 107], [-220, 111]]}, "center": {"130-143": [-231, 120]}}, -{"id": 2455, "name": "arctic potato's little heart", "description": "i solo built this", "links": {"discord": ["6fgugGfvvF"]}, "path": {"223-258": [[-1009, 201], [-1006, 198], [-1008, 196], [-1009, 197], [-1010, 196], [-1012, 198]]}, "center": {"223-258": [-1009, 199]}}, +{"id": 2455, "name": "arctic potato's little heart", "description": "i solo built this", "links": {"discord": ["6fgugGfvvF"]}, "path": {"223-258, T": [[-1009, 201], [-1006, 198], [-1008, 196], [-1009, 197], [-1010, 196], [-1012, 198]]}, "center": {"223-258, T": [-1009, 199]}}, {"id": 2456, "name": "FNAF Corner", "description": "A tribute to Five Nights at Freddy's by GG Games and r/fightnightsatfreddys. It features many iconic images from throughout the franchise, from various animatronics, to two lore-important scenes within the games.", "links": {"website": ["https://www.youtube.com/@GGGames._"], "subreddit": ["fivenightsatfreddys"], "discord": ["freddit"]}, "path": {"223-236": [[-773, 714], [-773, 743], [-871, 743], [-871, 786], [-839, 785], [-839, 792], [-721, 793], [-721, 714]], "237-241": [[-871, 743], [-871, 786], [-839, 786], [-839, 793], [-721, 793], [-721, 784], [-773, 784], [-774, 743]]}, "center": {"223-236": [-751, 763], "237-241": [-814, 768]}}, -{"id": 2457, "name": "Lisbon Tram", "description": "First introduced in Oporto, Portugal in 1895, the tram (Portuguese: elétrico) is a means of transportation for its people. These iconic vehicles still work to this day, and are commonly used in the current era for tourism, such as the Lisbon Tram in Lisbon, Portugal.", "links": {"website": ["https://en.wikipedia.org/wiki/Trams_in_Lisbon"], "discord": ["TugaPlace"]}, "path": {"144-258": [[-859, 196], [-863, 203], [-863, 208], [-868, 208], [-868, 238], [-866, 238], [-866, 245], [-844, 245], [-844, 229], [-842, 229], [-842, 208], [-853, 208], [-853, 205], [-846, 205], [-846, 204], [-852, 199], [-855, 196]]}, "center": {"144-258": [-855, 223]}}, +{"id": 2457, "name": "Lisbon Tram", "description": "First introduced in Oporto, Portugal in 1895, the tram (Portuguese: elétrico) is a means of transportation for its people. These iconic vehicles still work to this day, and are commonly used in the current era for tourism, such as the Lisbon Tram in Lisbon, Portugal.", "links": {"website": ["https://en.wikipedia.org/wiki/Trams_in_Lisbon"], "discord": ["TugaPlace"]}, "path": {"144-258, T": [[-859, 196], [-863, 203], [-863, 208], [-868, 208], [-868, 238], [-866, 238], [-866, 245], [-844, 245], [-844, 229], [-842, 229], [-842, 208], [-853, 208], [-853, 205], [-846, 205], [-846, 204], [-852, 199], [-855, 196]]}, "center": {"144-258, T": [-855, 223]}}, {"id": 2458, "name": "SirKazzio", "description": "SirKazzio is a Portuguese YouTuber and streamer.", "links": {"website": ["https://www.youtube.com/user/sirkazzio", "https://twitch.tv/sirkazzio"]}, "path": {"159-170": [[500, 500], [500, 548], [580, 548], [580, 513], [541, 513], [541, 500]]}, "center": {"159-170": [523, 526]}}, -{"id": 2459, "name": "This page needs a hero!", "description": "This is a flag with the Mr Incredible logo except it's green to symbolize flatulence. The character it's supposed to represent is Incredible Gassy, a morbidly obese version of Bob Parr with a green suit originating from an animation by BoboComics. In the video, he hops on a comically large dildo and farts a lot.", "links": {"website": ["https://twitter.com/GassyTwt"], "subreddit": ["gassers"]}, "path": {"224-258": [[1027, -969], [1033, -969], [1033, -965], [1027, -965]]}, "center": {"224-258": [1030, -967]}}, +{"id": 2459, "name": "This page needs a hero!", "description": "This is a flag with the Mr Incredible logo except it's green to symbolize flatulence. The character it's supposed to represent is Incredible Gassy, a morbidly obese version of Bob Parr with a green suit originating from an animation by BoboComics. In the video, he hops on a comically large dildo and farts a lot.", "links": {"website": ["https://twitter.com/GassyTwt"], "subreddit": ["gassers"]}, "path": {"224-258, T": [[1027, -969], [1033, -969], [1033, -965], [1027, -965]]}, "center": {"224-258, T": [1030, -967]}}, {"id": 2460, "name": "Hello Jon", "description": "\"Hello Jon Apologies For the Deception\" Is a common copy pasta from the horror podcast The Magnus Archives", "links": {"subreddit": ["TheMagnusArchives"]}, "path": {"224-235": [[-89, -76], [-57, -76], [-57, -70], [-50, -70], [-49, -57], [-99, -57], [-98, -63], [-100, -64], [-100, -70], [-90, -70], [-90, -76]]}, "center": {"224-235": [-74, -66]}}, -{"id": 2461, "name": "BananaDuck", "description": "Twitch Streamer", "links": {"website": ["https://www.twitch.tv/bananaduck"], "subreddit": ["Bananaduck"], "discord": ["FaztJYKf"]}, "path": {"22-258": [[-313, -178], [-303, -178], [-303, -166], [-313, -166]]}, "center": {"22-258": [-308, -172]}}, -{"id": 2462, "name": "Bocchi sus", "description": "When the Boccher is sus! 😳😳😳🩷🩵💛", "links": {"subreddit": ["BocchiTheRock"]}, "path": {"224-258": [[685, 691], [686, 691], [686, 692], [688, 692], [688, 697], [686, 697], [686, 696], [686, 697], [684, 697], [684, 696], [683, 696], [683, 692], [684, 692], [684, 691]]}, "center": {"224-258": [686, 694]}}, -{"id": 2463, "name": "Aqua Hoshino", "description": "A chibified version of Aqua Hoshino from the anime series Oshi no Ko.", "links": {"subreddit": ["OshiNoKo"], "discord": ["oshinoko"]}, "path": {"224-258": [[-760, -153], [-753, -153], [-753, -152], [-752, -152], [-752, -151], [-751, -151], [-751, -150], [-750, -150], [-750, -142], [-751, -142], [-751, -141], [-753, -141], [-753, -139], [-754, -139], [-754, -138], [-760, -138], [-760, -139], [-761, -139], [-761, -141], [-762, -141], [-762, -142], [-764, -142], [-764, -150], [-763, -150], [-763, -151], [-762, -151], [-762, -152], [-761, -152], [-761, -153], [-753, -153]]}, "center": {"224-258": [-757, -146]}}, -{"id": 2464, "name": "TMA", "description": "Tiny TMA recorder with the Ceaseless Watcher Eye, with the recorder turned on for most of the event. Several floating eyes to represent other friendly horror podcasts. The purple cat is Admiral, a cat featured in the podcast.", "links": {"subreddit": ["TheMagnusArchives"]}, "path": {"224-258": [[-752, -260], [-751, -256], [-739, -256], [-735, -259], [-729, -259], [-730, -265], [-739, -268], [-741, -271], [-741, -273], [-744, -273], [-747, -275], [-746, -278], [-744, -281], [-744, -284], [-750, -285], [-754, -279], [-755, -270], [-751, -256]]}, "center": {"224-258": [-745, -264]}}, -{"id": 2465, "name": "Ludwig, the Holy Blade", "description": "Art of Ludwig, a boss from Bloodborne's \"The Old Hunters\" DLC. \n\nThe art depicts a popular cutscene that occurs during the middle of the boss fight, where Ludwig regains his humanity through the aid of the Moonlight Greatsword.\n\nThe Moonlight Greatsword can also be found in the Hill of Swords southeast of the canvas.", "links": {"subreddit": ["bloodborne"], "discord": ["bloodborne"]}, "path": {"224-258": [[-1300, -513], [-1261, -513], [-1261, -483], [-1300, -483]]}, "center": {"224-258": [-1280, -498]}}, +{"id": 2461, "name": "BananaDuck", "description": "Twitch Streamer", "links": {"website": ["https://www.twitch.tv/bananaduck"], "subreddit": ["Bananaduck"], "discord": ["FaztJYKf"]}, "path": {"22-258, T": [[-313, -178], [-303, -178], [-303, -166], [-313, -166]]}, "center": {"22-258, T": [-308, -172]}}, +{"id": 2462, "name": "Bocchi sus", "description": "When the Boccher is sus! 😳😳😳🩷🩵💛", "links": {"subreddit": ["BocchiTheRock"]}, "path": {"224-258, T": [[685, 691], [686, 691], [686, 692], [688, 692], [688, 697], [686, 697], [686, 696], [686, 697], [684, 697], [684, 696], [683, 696], [683, 692], [684, 692], [684, 691]]}, "center": {"224-258, T": [686, 694]}}, +{"id": 2463, "name": "Aqua Hoshino", "description": "A chibified version of Aqua Hoshino from the anime series Oshi no Ko.", "links": {"subreddit": ["OshiNoKo"], "discord": ["oshinoko"]}, "path": {"224-258, T": [[-760, -153], [-753, -153], [-753, -152], [-752, -152], [-752, -151], [-751, -151], [-751, -150], [-750, -150], [-750, -142], [-751, -142], [-751, -141], [-753, -141], [-753, -139], [-754, -139], [-754, -138], [-760, -138], [-760, -139], [-761, -139], [-761, -141], [-762, -141], [-762, -142], [-764, -142], [-764, -150], [-763, -150], [-763, -151], [-762, -151], [-762, -152], [-761, -152], [-761, -153], [-753, -153]]}, "center": {"224-258, T": [-757, -146]}}, +{"id": 2464, "name": "TMA", "description": "Tiny TMA recorder with the Ceaseless Watcher Eye, with the recorder turned on for most of the event. Several floating eyes to represent other friendly horror podcasts. The purple cat is Admiral, a cat featured in the podcast.", "links": {"subreddit": ["TheMagnusArchives"]}, "path": {"224-258, T": [[-752, -260], [-751, -256], [-739, -256], [-735, -259], [-729, -259], [-730, -265], [-739, -268], [-741, -271], [-741, -273], [-744, -273], [-747, -275], [-746, -278], [-744, -281], [-744, -284], [-750, -285], [-754, -279], [-755, -270], [-751, -256]]}, "center": {"224-258, T": [-745, -264]}}, +{"id": 2465, "name": "Ludwig, the Holy Blade", "description": "Art of Ludwig, a boss from Bloodborne's \"The Old Hunters\" DLC. \n\nThe art depicts a popular cutscene that occurs during the middle of the boss fight, where Ludwig regains his humanity through the aid of the Moonlight Greatsword.\n\nThe Moonlight Greatsword can also be found in the Hill of Swords southeast of the canvas.", "links": {"subreddit": ["bloodborne"], "discord": ["bloodborne"]}, "path": {"224-258, T": [[-1300, -513], [-1261, -513], [-1261, -483], [-1300, -483]]}, "center": {"224-258, T": [-1280, -498]}}, {"id": 2466, "name": "Doctor Simi", "description": "Doctor Simi is the mascot of the Mexican pharmacy chain Farmacias Similares", "links": {}, "path": {"128": [[-252, 134], [-256, 134], [-257, 134], [-261, 138], [-261, 142], [-252, 153], [-249, 151], [-248, 145], [-244, 139], [-250, 134]]}, "center": {"128": [-253, 141]}}, {"id": 2467, "name": "GGgames mural", "description": "mural made by fnaf streamer and youtuber GGgames using various icons from his channel and fnaf", "links": {"website": ["https://www.twitch.tv/gggamestw"], "subreddit": ["fivenightsatfreddys"], "discord": ["GGgames"]}, "path": {"170-237": [[-783, 744], [-744, 744], [-744, 774], [-783, 774], [-872, 743], [-720, 744], [-721, 713], [-773, 714], [-772, 742], [-721, 745], [-721, 792], [-838, 792], [-839, 786], [-870, 786], [-870, 743]]}, "center": {"170-237": [-853, 768]}}, -{"id": 2468, "name": "J&J Records", "description": "Das Artwork von zwei deutschen hobby Musikern. Diese haben zu zweit das Artwork über 8 Stunden lang gebaut und mit Leib und Seele verteidigt, um sich in die Geschichtsbücher des Internets zu verewigen.", "links": {"website": ["https://frontl.ink/aa189yo"]}, "path": {"224-258": [[-311, -991], [-311, -975], [-286, -975], [-286, -991]]}, "center": {"224-258": [-298, -983]}}, +{"id": 2468, "name": "J&J Records", "description": "Das Artwork von zwei deutschen hobby Musikern. Diese haben zu zweit das Artwork über 8 Stunden lang gebaut und mit Leib und Seele verteidigt, um sich in die Geschichtsbücher des Internets zu verewigen.", "links": {"website": ["https://frontl.ink/aa189yo"]}, "path": {"224-258, T": [[-311, -991], [-311, -975], [-286, -975], [-286, -991]]}, "center": {"224-258, T": [-298, -983]}}, {"id": 2469, "name": "Axolotl", "description": "Died for the sins of r/Mexico and r/PlaceMexico", "links": {"subreddit": ["PlaceMexico", "mexico"], "discord": ["xRWcUBGuvn"]}, "path": {"83-101": [[-213, 97], [-213, 102], [-213, 103], [-225, 103], [-225, 120], [-235, 120], [-235, 103], [-246, 103], [-246, 97], [-241, 97], [-241, 83], [-218, 83], [-218, 97]]}, "center": {"83-101": [-230, 94]}}, -{"id": 2470, "name": "Universidad Distrital de Colombia", "description": "The Francisco José de Caldas District University is a Colombian public university\nIt was founded in 1948 at the initiative of the priest Daniel de Caicedo who was also its first rector. Its original name was the Municipal University of Bogotá and it was created by the Bogotá Council to educate low-income youth in the city. His first careers were radiotechnics and topography that would eventually become Electronic Engineering, Topographic Engineering and Cadastral Engineering and Geodesy. There was also a career associated with environmental care, later Forest Engineering.\nThe Francisco José de Caldas District University is an autonomous institution of higher education, of a public nature, constituted essentially by processes and relationships that generate students and teachers identified in the free search for knowledg", "links": {"website": ["https://www.udistrital.edu.co/inicio"], "subreddit": ["Colombia"]}, "path": {"224-258": [[1485, 365], [1500, 365], [1500, 384], [1484, 384], [1484, 366]]}, "center": {"224-258": [1492, 375]}}, -{"id": 2471, "name": "Sunset Shimmer's Cutie Mark", "description": "Sunset Shimmer is one of the main characters in the My Little Pony spin-off series: Equestria Girls. This is her cutie mark.", "links": {"website": ["https://mlp.fandom.com/wiki/Sunset_Shimmer"], "subreddit": ["mylittlepony"]}, "path": {"223-258": [[1462, -97], [1469, -90], [1468, -88], [1476, -84], [1468, -73], [1464, -74], [1462, -66], [1457, -75], [1453, -74], [1447, -83], [1454, -91], [1457, -89]]}, "center": {"223-258": [1462, -82]}}, -{"id": 2472, "name": "Mem-Cho", "description": "A chibified version of Mem-Cho from the anime series Oshi no Ko.", "links": {"subreddit": ["OshiNoKo"], "discord": ["oshinoko"]}, "path": {"224-258": [[-763, -164], [-763, -170], [-760, -170], [-760, -169], [-759, -169], [-759, -168], [-758, -168], [-758, -167], [-756, -167], [-756, -168], [-755, -168], [-755, -169], [-754, -169], [-754, -170], [-751, -170], [-751, -164], [-750, -164], [-750, -156], [-751, -156], [-751, -155], [-752, -155], [-752, -154], [-753, -154], [-753, -151], [-761, -151], [-761, -154], [-762, -154], [-762, -155], [-764, -155], [-764, -164], [-763, -164], [-763, -170]]}, "center": {"224-258": [-757, -160]}}, -{"id": 2473, "name": "Akane Kurokawa", "description": "A chibified version of Akane Kurokawa from the anime series Oshi no Ko.", "links": {"subreddit": ["OshiNoKo"], "discord": ["oshinoko"]}, "path": {"224-258": [[-686, -155], [-679, -155], [-679, -154], [-678, -154], [-678, -153], [-677, -153], [-677, -152], [-676, -152], [-676, -142], [-677, -142], [-677, -138], [-680, -138], [-680, -139], [-686, -139], [-686, -138], [-689, -138], [-689, -142], [-690, -142], [-690, -152], [-689, -152], [-689, -153], [-688, -153], [-688, -154], [-687, -154], [-687, -155], [-679, -155]]}, "center": {"224-258": [-683, -147]}}, -{"id": 2474, "name": "Jat", "description": "Jonathan Sims Cat AU from the r/place TMA discord", "links": {"subreddit": ["TheMagnusArchives"]}, "path": {"224-258": [[1006, 48], [1004, 46], [1001, 65], [1006, 65], [1012, 61], [1012, 44], [1003, 44], [1000, 64], [1008, 64]]}, "center": {"224-258": [1009, 47]}}, -{"id": 2475, "name": "Kana Arima", "description": "A chibified version of Kana Arima from the anime series Oshi no Ko.", "links": {"subreddit": ["OshiNoKo"], "discord": ["oshinoko"]}, "path": {"224-258": [[-728, -141], [-729, -141], [-729, -142], [-730, -142], [-730, -149], [-729, -149], [-729, -150], [-730, -150], [-730, -154], [-729, -154], [-729, -155], [-727, -155], [-729, -155], [-729, -156], [-730, -156], [-730, -158], [-728, -158], [-728, -157], [-727, -157], [-728, -157], [-728, -159], [-726, -159], [-726, -158], [-725, -158], [-725, -156], [-718, -156], [-718, -155], [-717, -155], [-717, -154], [-716, -154], [-716, -151], [-717, -151], [-716, -151], [-716, -141], [-717, -141], [-717, -140], [-719, -140], [-719, -139], [-728, -139]]}, "center": {"224-258": [-723, -146]}}, -{"id": 2476, "name": "Jeremie Belpois", "description": "Jeremie Belpois is one of the main protagonists of Code Lyoko, a French animated series about a group of teenagers traveling to the virtual world of Lyoko. There they battle against a malignant artificial intelligence known as XANA who threatens Earth with its powers to access the real world and cause trouble.", "links": {"website": ["https://en.wikipedia.org/wiki/Code_Lyoko"], "subreddit": ["codelyoko"]}, "path": {"121-258": [[886, -697], [881, -697], [880, -696], [879, -696], [878, -695], [877, -695], [874, -692], [874, -691], [873, -691], [872, -690], [872, -688], [871, -688], [869, -686], [869, -685], [868, -684], [868, -674], [869, -673], [869, -671], [871, -669], [871, -668], [874, -665], [875, -665], [877, -663], [876, -663], [875, -662], [875, -661], [874, -661], [873, -660], [873, -658], [872, -658], [870, -656], [870, -655], [869, -654], [869, -652], [870, -651], [871, -651], [871, -653], [873, -655], [873, -648], [872, -647], [872, -640], [874, -642], [874, -643], [878, -646], [878, -650], [879, -651], [879, -654], [880, -655], [880, -657], [881, -657], [881, -659], [883, -661], [883, -662], [884, -663], [884, -664], [885, -665], [886, -665], [887, -666], [887, -667], [892, -672], [893, -672], [896, -675], [896, -676], [900, -680], [900, -682], [901, -683], [901, -687], [894, -694], [894, -695], [893, -696], [891, -696], [890, -697]]}, "center": {"121-258": [885, -683]}}, -{"id": 2477, "name": "Hard Sign (Ъ)", "description": "Ъ or Твёрдый Знак is the 28th letter of the Russian Alphabet.", "links": {"subreddit": ["alphabetfriends"]}, "path": {"224-258": [[-322, 963], [-321, 963], [-320, 962], [-320, 961], [-322, 961], [-322, 959], [-323, 959], [-322, 959]]}, "center": {"224-258": [-321, 962]}}, -{"id": 2478, "name": "Cutie Mark Crusaders", "description": "The Cutie Mark Crusaders (CMC) is a club in My Little Pony: Friendship is Magic. Shown here is their logo (top) and the 3 main members: Sweetie Belle, Apple Bloom, and Scootaloo.", "links": {"website": ["https://mlp.fandom.com/wiki/Cutie_Mark_Crusaders"], "subreddit": ["mylittlepony"]}, "path": {"225-258": [[581, 830], [581, 822], [574, 818], [576, 814], [572, 813], [569, 823], [574, 825], [574, 829]]}, "center": {"225-258": [577, 824]}}, -{"id": 2479, "name": "The quintessential quintuplets", "description": "The Quintessential Quintuplets (Japanese: 五等分の花嫁, Go-Tōbun no Hanayome, \"Five Equal Brides\" is a Japanese manga series written and illustrated by Negi Haruba. It was serialized in Kodansha's Weekly Shōnen Magazine from August 2017 to February 2020, with its chapters collected into fourteen volumes. The series follows the daily life of a high-school student Futaro Uesugi, who is hired as a private tutor for a group of identical quintuplets: Ichika, Nino, Miku, Yotsuba, and Itsuki Nakano", "links": {"subreddit": ["5ToubunNoHanayome"], "discord": ["RButSmgF7y"]}, "path": {"225-258": [[-922, 73], [-922, 87], [-913, 87], [-913, 73]]}, "center": {"225-258": [-917, 80]}}, -{"id": 2480, "name": "5Toubun no Hanayome", "description": "Small mural of the Nakano Sisters and Fuutarou Uesugi:\n5Toubun no Hanayome (五等分の花嫁, Gotōbun no Hanayome), also known as The Quintessential Quintuplets is a romantic-comedy manga series written and illustrated by Negi Haruba.", "links": {"website": ["https://5hanayome.fandom.com/wiki/5Toubun_no_Hanayome_Wiki"], "subreddit": ["5ToubunNoHanayome"], "discord": ["vwM4E8cC", "5toubun", "9T263Pkf"]}, "path": {"225-258": [[-923, 72], [-923, 88], [-912, 88], [-912, 72], [-913, 72]]}, "center": {"225-258": [-917, 80]}}, -{"id": 2481, "name": "Cyno", "description": "Cyno is a playable character from Genshin Impact. He originates from Sumeru, a middle eastern-inspired region in the game.\n\nHis character designs contains many Egyptian elements. Consequently, this art was built in collaboration with r/egypt.\n\nThe art was originally made by @docariadraw. Please follow them!", "links": {"website": ["https://docariadraw.carrd.co/"], "subreddit": ["egypt", "Genshin_Impact"], "discord": ["sumeru", "RvGVdAYW"]}, "path": {"225-258": [[-837, 379], [-834, 368], [-830, 362], [-823, 361], [-819, 368], [-813, 368], [-813, 395], [-808, 395], [-808, 403], [-837, 403]]}, "center": {"225-258": [-825, 385]}}, -{"id": 2482, "name": "Miko Iino", "description": "Miko Iino from the anime Kaguya-sama: Love is War", "links": {"website": ["https://kaguyasama-wa-kokurasetai.fandom.com/wiki/Miko_Iino"], "subreddit": ["MikoIino"]}, "path": {"250-258": [[-133, -824], [-133, -806], [-118, -806], [-120, -824], [-126, -824]]}, "center": {"250-258": [-126, -813]}}, -{"id": 2483, "name": "Pointed Cap (Witch Hat Atelier)", "description": "The pointed cap is the symbol of a witch. Apprentices witches wear a hat that is part of the uniform of their atelier, this particular design is of Qifrey's atelier.\n\nWitch Hat Atelier (とんがり帽子のアトリエ) is an ongoing manga written and illustrated by Kamome Shirahama.\n\nThe series follows a girl named Coco, who dreams of being a witch, but in her world only those born with magical abilities are able to become witches. However, after meeting a witch named Qifrey, it seems like there may be hope for Coco after all.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Witch_Hat_Atelier_Wiki"], "subreddit": ["WitchHatAtelier"], "discord": ["xpQSRKjH"]}, "path": {"225-258": [[762, 838], [762, 837], [762, 836], [763, 836], [763, 834], [764, 831], [765, 829], [766, 827], [767, 826], [767, 825], [768, 826], [769, 827], [771, 828], [770, 829], [769, 832], [771, 833], [770, 835], [771, 836], [771, 838]]}, "center": {"225-258": [767, 834]}}, -{"id": 2484, "name": "Rival Regions", "description": "Rival Regions (RR) is a niche mmo geopolitical simulator web and mobile game.", "links": {"website": ["https://rivalregions.com", "https://m.rivalregions.com"], "subreddit": ["RivalRegions_RR"]}, "path": {"154-258": [[-805, 514], [-805, 500], [-791, 500], [-791, 514]]}, "center": {"154-258": [-798, 507]}}, -{"id": 2485, "name": "Flag of Bolivia", "description": "Bolivia is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Flag_of_Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"202-258": [[1327, -864], [1327, -833], [1299, -833], [1299, -845], [1278, -845], [1278, -831], [1270, -831], [1270, -786], [1499, -786], [1499, -864]]}, "center": {"202-258": [1392, -825]}}, -{"id": 2486, "name": "Natalan", "description": "Mural del mayor streamer de guatemala, Natalan, y sus fans llamados \"NATALIERS\"", "links": {"website": ["https://twitch.tv/natalan"], "subreddit": ["NATALANDIA_OFICIAL"], "discord": ["natalandia"]}, "path": {"210-258": [[1389, -672], [1389, -610], [1499, -610], [1499, -672]]}, "center": {"210-258": [1444, -641]}}, -{"id": 2487, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America. \n\nRepresentative drawing of:\n\nPico Bolivar: highest mountain in Venezuela, at 4,978 metres (16,332 ft)\n\nMérida cable car: It is the highest and second longest cable car globally for just 500 meters. Mérida Cable Car is a journey of 12.5 kilometres, reaching an elevation of 4,765 meters, making it an engineering marvel that is one of a kind and has over 40 years of history.\n\nNational Football Tshirt\n\nEmpanada: Traditional Venezuelan empanadas are made with ground corn dough, though modern versions are made with precooked corn. The dough may have a yellow color when toasted due to the addition of annatto. The fillings are very diverse, with the most conventional being cheese, shredded beef, chicken, cazón (school shark) in the Margaritan Island region especially, ham, black beans and cheese (commonly called dominó) and even combinations of mollusks.\n\nMalta: is a lightly carbonated, non-alcoholic malt beverage brewed from barley, hops, and water; corn and caramel color may also be added.\n\nThe following countries left a heart in our flag:\nUkraine\nChile\nArgentina\nMéxico\nBrasil\nMorocco\nEgipt\nPalestine\nGermany\nEspaña\nUruguay", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"202-258": [[1399, 780], [1399, 825], [1499, 825], [1499, 780], [1499, 781]]}, "center": {"202-258": [1444, 803]}}, -{"id": 2488, "name": "Kafka", "description": "Kafka is a character from the gacha game Honkai: Star Rail. Her Ultimate attack icon is that of a spider due to her overall theme and appearance bearing resemblances to one.", "links": {"subreddit": ["HonkaiStarRail", "KafkaMains"], "discord": ["kafkamains"]}, "path": {"138-258": [[-896, -227], [-896, -213], [-897, -212], [-897, -192], [-869, -192], [-868, -227], [-891, -227], [-896, -227], [-896, -213], [-896, -212], [-897, -212], [-898, -211], [-896, -213]]}, "center": {"138-258": [-883, -207]}}, -{"id": 2489, "name": "Rem", "description": "Rem, best girl from Re:Zero", "links": {}, "path": {"226-258": [[1395, -891], [1396, -878], [1408, -878], [1409, -890]]}, "center": {"226-258": [1402, -884]}}, -{"id": 2490, "name": "Green Day and Nirvana", "description": "Green Day and Nirvana are two american rock bands that spearheaded the Music Union. The art features the album art for American Idiot, GD which stands for Green Day and NV which stands for Nirvana.", "links": {"subreddit": ["greenday", "nirvana"], "discord": ["VJKghe9e"]}, "path": {"250-258": [[-40, -985], [-24, -985], [-24, -982], [-23, -982], [-23, -977], [-19, -977], [-19, -972], [-25, -972], [-26, -977], [-31, -977], [-32, -975], [-34, -974], [-40, -974], [-41, -974], [-41, -985]]}, "center": {"250-258": [-36, -980]}}, -{"id": 2491, "name": "BTS's Take Two", "description": "This includes the title art for BTS's most recent single, \"Take Two\", along with the band's logo on the right. The left of the image says \"ARMY, BANGTAN\" in Korean.", "links": {"website": ["https://ibighit.com/bts/eng/discography/detail/take-two/index.html"], "subreddit": ["bangtan"]}, "path": {"19": [[418, 288], [418, 312], [387, 312], [387, 297], [384, 297], [384, 277], [399, 277], [399, 281], [406, 281], [406, 289]], "226-258": [[-1261, 374], [-1200, 374], [-1200, 405], [-1261, 405]], "122-211": [[339, -176], [339, -154], [399, -154], [399, -176]], "64-121": [[355, -176], [355, -154], [398, -154], [398, -175]], "47-55": [[356, -142], [399, -142], [399, -172], [379, -172], [379, -160], [356, -160]], "30-42": [[480, -155], [480, -132], [500, -132], [500, -155]]}, "center": {"19": [400, 300], "226-258": [-1230, 390], "122-211": [369, -165], "64-121": [376, -165], "47-55": [388, -153], "30-42": [490, -143]}}, +{"id": 2470, "name": "Universidad Distrital de Colombia", "description": "The Francisco José de Caldas District University is a Colombian public university\nIt was founded in 1948 at the initiative of the priest Daniel de Caicedo who was also its first rector. Its original name was the Municipal University of Bogotá and it was created by the Bogotá Council to educate low-income youth in the city. His first careers were radiotechnics and topography that would eventually become Electronic Engineering, Topographic Engineering and Cadastral Engineering and Geodesy. There was also a career associated with environmental care, later Forest Engineering.\nThe Francisco José de Caldas District University is an autonomous institution of higher education, of a public nature, constituted essentially by processes and relationships that generate students and teachers identified in the free search for knowledg", "links": {"website": ["https://www.udistrital.edu.co/inicio"], "subreddit": ["Colombia"]}, "path": {"224-258, T": [[1485, 365], [1500, 365], [1500, 384], [1484, 384], [1484, 366]]}, "center": {"224-258, T": [1492, 375]}}, +{"id": 2471, "name": "Sunset Shimmer's Cutie Mark", "description": "Sunset Shimmer is one of the main characters in the My Little Pony spin-off series: Equestria Girls. This is her cutie mark.", "links": {"website": ["https://mlp.fandom.com/wiki/Sunset_Shimmer"], "subreddit": ["mylittlepony"]}, "path": {"223-258, T": [[1462, -97], [1469, -90], [1468, -88], [1476, -84], [1468, -73], [1464, -74], [1462, -66], [1457, -75], [1453, -74], [1447, -83], [1454, -91], [1457, -89]]}, "center": {"223-258, T": [1462, -82]}}, +{"id": 2472, "name": "Mem-Cho", "description": "A chibified version of Mem-Cho from the anime series Oshi no Ko.", "links": {"subreddit": ["OshiNoKo"], "discord": ["oshinoko"]}, "path": {"224-258, T": [[-763, -164], [-763, -170], [-760, -170], [-760, -169], [-759, -169], [-759, -168], [-758, -168], [-758, -167], [-756, -167], [-756, -168], [-755, -168], [-755, -169], [-754, -169], [-754, -170], [-751, -170], [-751, -164], [-750, -164], [-750, -156], [-751, -156], [-751, -155], [-752, -155], [-752, -154], [-753, -154], [-753, -151], [-761, -151], [-761, -154], [-762, -154], [-762, -155], [-764, -155], [-764, -164], [-763, -164], [-763, -170]]}, "center": {"224-258, T": [-757, -160]}}, +{"id": 2473, "name": "Akane Kurokawa", "description": "A chibified version of Akane Kurokawa from the anime series Oshi no Ko.", "links": {"subreddit": ["OshiNoKo"], "discord": ["oshinoko"]}, "path": {"224-258, T": [[-686, -155], [-679, -155], [-679, -154], [-678, -154], [-678, -153], [-677, -153], [-677, -152], [-676, -152], [-676, -142], [-677, -142], [-677, -138], [-680, -138], [-680, -139], [-686, -139], [-686, -138], [-689, -138], [-689, -142], [-690, -142], [-690, -152], [-689, -152], [-689, -153], [-688, -153], [-688, -154], [-687, -154], [-687, -155], [-679, -155]]}, "center": {"224-258, T": [-683, -147]}}, +{"id": 2474, "name": "Jat", "description": "Jonathan Sims Cat AU from the r/place TMA discord", "links": {"subreddit": ["TheMagnusArchives"]}, "path": {"224-258, T": [[1006, 48], [1004, 46], [1001, 65], [1006, 65], [1012, 61], [1012, 44], [1003, 44], [1000, 64], [1008, 64]]}, "center": {"224-258, T": [1009, 47]}}, +{"id": 2475, "name": "Kana Arima", "description": "A chibified version of Kana Arima from the anime series Oshi no Ko.", "links": {"subreddit": ["OshiNoKo"], "discord": ["oshinoko"]}, "path": {"224-258, T": [[-728, -141], [-729, -141], [-729, -142], [-730, -142], [-730, -149], [-729, -149], [-729, -150], [-730, -150], [-730, -154], [-729, -154], [-729, -155], [-727, -155], [-729, -155], [-729, -156], [-730, -156], [-730, -158], [-728, -158], [-728, -157], [-727, -157], [-728, -157], [-728, -159], [-726, -159], [-726, -158], [-725, -158], [-725, -156], [-718, -156], [-718, -155], [-717, -155], [-717, -154], [-716, -154], [-716, -151], [-717, -151], [-716, -151], [-716, -141], [-717, -141], [-717, -140], [-719, -140], [-719, -139], [-728, -139]]}, "center": {"224-258, T": [-723, -146]}}, +{"id": 2476, "name": "Jeremie Belpois", "description": "Jeremie Belpois is one of the main protagonists of Code Lyoko, a French animated series about a group of teenagers traveling to the virtual world of Lyoko. There they battle against a malignant artificial intelligence known as XANA who threatens Earth with its powers to access the real world and cause trouble.", "links": {"website": ["https://en.wikipedia.org/wiki/Code_Lyoko"], "subreddit": ["codelyoko"]}, "path": {"121-258, T": [[886, -697], [881, -697], [880, -696], [879, -696], [878, -695], [877, -695], [874, -692], [874, -691], [873, -691], [872, -690], [872, -688], [871, -688], [869, -686], [869, -685], [868, -684], [868, -674], [869, -673], [869, -671], [871, -669], [871, -668], [874, -665], [875, -665], [877, -663], [876, -663], [875, -662], [875, -661], [874, -661], [873, -660], [873, -658], [872, -658], [870, -656], [870, -655], [869, -654], [869, -652], [870, -651], [871, -651], [871, -653], [873, -655], [873, -648], [872, -647], [872, -640], [874, -642], [874, -643], [878, -646], [878, -650], [879, -651], [879, -654], [880, -655], [880, -657], [881, -657], [881, -659], [883, -661], [883, -662], [884, -663], [884, -664], [885, -665], [886, -665], [887, -666], [887, -667], [892, -672], [893, -672], [896, -675], [896, -676], [900, -680], [900, -682], [901, -683], [901, -687], [894, -694], [894, -695], [893, -696], [891, -696], [890, -697]]}, "center": {"121-258, T": [885, -683]}}, +{"id": 2477, "name": "Hard Sign (Ъ)", "description": "Ъ or Твёрдый Знак is the 28th letter of the Russian Alphabet.", "links": {"subreddit": ["alphabetfriends"]}, "path": {"224-258, T": [[-322, 963], [-321, 963], [-320, 962], [-320, 961], [-322, 961], [-322, 959], [-323, 959], [-322, 959]]}, "center": {"224-258, T": [-321, 962]}}, +{"id": 2478, "name": "Cutie Mark Crusaders", "description": "The Cutie Mark Crusaders (CMC) is a club in My Little Pony: Friendship is Magic. Shown here is their logo (top) and the 3 main members: Sweetie Belle, Apple Bloom, and Scootaloo.", "links": {"website": ["https://mlp.fandom.com/wiki/Cutie_Mark_Crusaders"], "subreddit": ["mylittlepony"]}, "path": {"225-258, T": [[581, 830], [581, 822], [574, 818], [576, 814], [572, 813], [569, 823], [574, 825], [574, 829]]}, "center": {"225-258, T": [577, 824]}}, +{"id": 2479, "name": "The quintessential quintuplets", "description": "The Quintessential Quintuplets (Japanese: 五等分の花嫁, Go-Tōbun no Hanayome, \"Five Equal Brides\" is a Japanese manga series written and illustrated by Negi Haruba. It was serialized in Kodansha's Weekly Shōnen Magazine from August 2017 to February 2020, with its chapters collected into fourteen volumes. The series follows the daily life of a high-school student Futaro Uesugi, who is hired as a private tutor for a group of identical quintuplets: Ichika, Nino, Miku, Yotsuba, and Itsuki Nakano", "links": {"subreddit": ["5ToubunNoHanayome"], "discord": ["RButSmgF7y"]}, "path": {"225-258, T": [[-922, 73], [-922, 87], [-913, 87], [-913, 73]]}, "center": {"225-258, T": [-917, 80]}}, +{"id": 2480, "name": "5Toubun no Hanayome", "description": "Small mural of the Nakano Sisters and Fuutarou Uesugi:\n5Toubun no Hanayome (五等分の花嫁, Gotōbun no Hanayome), also known as The Quintessential Quintuplets is a romantic-comedy manga series written and illustrated by Negi Haruba.", "links": {"website": ["https://5hanayome.fandom.com/wiki/5Toubun_no_Hanayome_Wiki"], "subreddit": ["5ToubunNoHanayome"], "discord": ["vwM4E8cC", "5toubun", "9T263Pkf"]}, "path": {"225-258, T": [[-923, 72], [-923, 88], [-912, 88], [-912, 72], [-913, 72]]}, "center": {"225-258, T": [-917, 80]}}, +{"id": 2481, "name": "Cyno", "description": "Cyno is a playable character from Genshin Impact. He originates from Sumeru, a middle eastern-inspired region in the game.\n\nHis character designs contains many Egyptian elements. Consequently, this art was built in collaboration with r/egypt.\n\nThe art was originally made by @docariadraw. Please follow them!", "links": {"website": ["https://docariadraw.carrd.co/"], "subreddit": ["egypt", "Genshin_Impact"], "discord": ["sumeru", "RvGVdAYW"]}, "path": {"225-258, T": [[-837, 379], [-834, 368], [-830, 362], [-823, 361], [-819, 368], [-813, 368], [-813, 395], [-808, 395], [-808, 403], [-837, 403]]}, "center": {"225-258, T": [-825, 385]}}, +{"id": 2482, "name": "Miko Iino", "description": "Miko Iino from the anime Kaguya-sama: Love is War", "links": {"website": ["https://kaguyasama-wa-kokurasetai.fandom.com/wiki/Miko_Iino"], "subreddit": ["MikoIino"]}, "path": {"250-258, T": [[-133, -824], [-133, -806], [-118, -806], [-120, -824], [-126, -824]]}, "center": {"250-258, T": [-126, -813]}}, +{"id": 2483, "name": "Pointed Cap (Witch Hat Atelier)", "description": "The pointed cap is the symbol of a witch. Apprentices witches wear a hat that is part of the uniform of their atelier, this particular design is of Qifrey's atelier.\n\nWitch Hat Atelier (とんがり帽子のアトリエ) is an ongoing manga written and illustrated by Kamome Shirahama.\n\nThe series follows a girl named Coco, who dreams of being a witch, but in her world only those born with magical abilities are able to become witches. However, after meeting a witch named Qifrey, it seems like there may be hope for Coco after all.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Witch_Hat_Atelier_Wiki"], "subreddit": ["WitchHatAtelier"], "discord": ["xpQSRKjH"]}, "path": {"225-258, T": [[762, 838], [762, 837], [762, 836], [763, 836], [763, 834], [764, 831], [765, 829], [766, 827], [767, 826], [767, 825], [768, 826], [769, 827], [771, 828], [770, 829], [769, 832], [771, 833], [770, 835], [771, 836], [771, 838]]}, "center": {"225-258, T": [767, 834]}}, +{"id": 2484, "name": "Rival Regions", "description": "Rival Regions (RR) is a niche mmo geopolitical simulator web and mobile game.", "links": {"website": ["https://rivalregions.com", "https://m.rivalregions.com"], "subreddit": ["RivalRegions_RR"]}, "path": {"154-258, T": [[-805, 514], [-805, 500], [-791, 500], [-791, 514]]}, "center": {"154-258, T": [-798, 507]}}, +{"id": 2485, "name": "Flag of Bolivia", "description": "Bolivia is a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Flag_of_Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"202-258, T": [[1327, -864], [1327, -833], [1299, -833], [1299, -845], [1278, -845], [1278, -831], [1270, -831], [1270, -786], [1499, -786], [1499, -864]]}, "center": {"202-258, T": [1392, -825]}}, +{"id": 2486, "name": "Natalan", "description": "Mural del mayor streamer de guatemala, Natalan, y sus fans llamados \"NATALIERS\"", "links": {"website": ["https://twitch.tv/natalan"], "subreddit": ["NATALANDIA_OFICIAL"], "discord": ["natalandia"]}, "path": {"210-258, T": [[1389, -672], [1389, -610], [1499, -610], [1499, -672]]}, "center": {"210-258, T": [1444, -641]}}, +{"id": 2487, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America. \n\nRepresentative drawing of:\n\nPico Bolivar: highest mountain in Venezuela, at 4,978 metres (16,332 ft)\n\nMérida cable car: It is the highest and second longest cable car globally for just 500 meters. Mérida Cable Car is a journey of 12.5 kilometres, reaching an elevation of 4,765 meters, making it an engineering marvel that is one of a kind and has over 40 years of history.\n\nNational Football Tshirt\n\nEmpanada: Traditional Venezuelan empanadas are made with ground corn dough, though modern versions are made with precooked corn. The dough may have a yellow color when toasted due to the addition of annatto. The fillings are very diverse, with the most conventional being cheese, shredded beef, chicken, cazón (school shark) in the Margaritan Island region especially, ham, black beans and cheese (commonly called dominó) and even combinations of mollusks.\n\nMalta: is a lightly carbonated, non-alcoholic malt beverage brewed from barley, hops, and water; corn and caramel color may also be added.\n\nThe following countries left a heart in our flag:\nUkraine\nChile\nArgentina\nMéxico\nBrasil\nMorocco\nEgipt\nPalestine\nGermany\nEspaña\nUruguay", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"202-258, T": [[1399, 780], [1399, 825], [1499, 825], [1499, 780], [1499, 781]]}, "center": {"202-258, T": [1444, 803]}}, +{"id": 2488, "name": "Kafka", "description": "Kafka is a character from the gacha game Honkai: Star Rail. Her Ultimate attack icon is that of a spider due to her overall theme and appearance bearing resemblances to one.", "links": {"subreddit": ["HonkaiStarRail", "KafkaMains"], "discord": ["kafkamains"]}, "path": {"138-258, T": [[-896, -227], [-896, -213], [-897, -212], [-897, -192], [-869, -192], [-868, -227], [-891, -227], [-896, -227], [-896, -213], [-896, -212], [-897, -212], [-898, -211], [-896, -213]]}, "center": {"138-258, T": [-883, -207]}}, +{"id": 2489, "name": "Rem", "description": "Rem, best girl from Re:Zero", "links": {}, "path": {"226-258, T": [[1395, -891], [1396, -878], [1408, -878], [1409, -890]]}, "center": {"226-258, T": [1402, -884]}}, +{"id": 2490, "name": "Green Day and Nirvana", "description": "Green Day and Nirvana are two american rock bands that spearheaded the Music Union. The art features the album art for American Idiot, GD which stands for Green Day and NV which stands for Nirvana.", "links": {"subreddit": ["greenday", "nirvana"], "discord": ["VJKghe9e"]}, "path": {"250-258, T": [[-40, -985], [-24, -985], [-24, -982], [-23, -982], [-23, -977], [-19, -977], [-19, -972], [-25, -972], [-26, -977], [-31, -977], [-32, -975], [-34, -974], [-40, -974], [-41, -974], [-41, -985]]}, "center": {"250-258, T": [-36, -980]}}, +{"id": 2491, "name": "BTS's Take Two", "description": "This includes the title art for BTS's most recent single, \"Take Two\", along with the band's logo on the right. The left of the image says \"ARMY, BANGTAN\" in Korean.", "links": {"website": ["https://ibighit.com/bts/eng/discography/detail/take-two/index.html"], "subreddit": ["bangtan"]}, "path": {"19": [[418, 288], [418, 312], [387, 312], [387, 297], [384, 297], [384, 277], [399, 277], [399, 281], [406, 281], [406, 289]], "122-211": [[339, -176], [339, -154], [399, -154], [399, -176]], "64-121": [[355, -176], [355, -154], [398, -154], [398, -175]], "47-55": [[356, -142], [399, -142], [399, -172], [379, -172], [379, -160], [356, -160]], "30-42": [[480, -155], [480, -132], [500, -132], [500, -155]], "226-258, T": [[-1261, 374], [-1200, 374], [-1200, 405], [-1261, 405]]}, "center": {"19": [400, 300], "122-211": [369, -165], "64-121": [376, -165], "47-55": [388, -153], "30-42": [490, -143], "226-258, T": [-1230, 390]}}, {"id": 2492, "name": "Republic of Yucatan", "description": "A short-lived republic within the Yucatan Peninsula, the flag is still used but not officially recognized.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Yucat%C3%A1n"]}, "path": {"196-205": [[-917, 357], [-904, 357], [-904, 365], [-917, 365]]}, "center": {"196-205": [-910, 361]}}, -{"id": 2493, "name": "DLRG sign", "description": "The German Life Saving Association (German: Deutsche Lebens-Rettungs-Gesellschaft or short: DLRG) is a relief organization for life saving in Germany. The DLRG is the largest voluntary lifesaving organization in the world.", "links": {"website": ["https://www.dlrg.de/"]}, "path": {"225-258": [[-1092, -71], [-1072, -71], [-1072, -65], [-1092, -65]]}, "center": {"225-258": [-1082, -68]}}, +{"id": 2493, "name": "DLRG sign", "description": "The German Life Saving Association (German: Deutsche Lebens-Rettungs-Gesellschaft or short: DLRG) is a relief organization for life saving in Germany. The DLRG is the largest voluntary lifesaving organization in the world.", "links": {"website": ["https://www.dlrg.de/"]}, "path": {"225-258, T": [[-1092, -71], [-1072, -71], [-1072, -65], [-1092, -65]]}, "center": {"225-258, T": [-1082, -68]}}, {"id": 2494, "name": "El Castillo, Chichen Itza", "description": "El Castillo (Spanish pronunciation: [el kas'tiʎo], Spanish for \"the castle\"), also known as the Temple of Kukulcan' is a Mesoamerican step-pyramid that dominates the center of the Chichen Itza archaeological site in the Mexican state of Yucatán. The temple building is more formally designated by archaeologists as Chichen Itza Structure 5B18. It was created by 401 Mexican Team! \"Viva el 401!\"", "links": {"website": ["https://en.wikipedia.org/wiki/El_Castillo,_Chichen_Itza"], "subreddit": ["placeMexico"], "discord": ["e9VQN4XQJV"]}, "path": {"125": [[-226, 77], [-227, 79], [-211, 58], [-207, 52], [-196, 52], [-191, 61], [-192, 78], [-192, 79]]}, "center": {"125": [-203, 67]}}, -{"id": 2495, "name": "The Carolean", "description": "Caroleans or in swedish \"Karoliner\" is a term used to describe soldiers of the Swedish army during the reigns of Kings Charles XI and Charles XII of Sweden, and specifically from 1680, when Charles XI instituted an absolute monarchy and embarked on a series of sweeping military reforms, to the death of Charles XII in 1718", "links": {"website": ["https://en.wikipedia.org/wiki/Caroleans"], "subreddit": ["sweden", "nordics"]}, "path": {"225-258": [[199, -249], [195, -242], [199, -238], [198, -233], [198, -218], [194, -213], [195, -211], [200, -213], [200, -221], [203, -222], [204, -218], [206, -209], [210, -208], [208, -211], [208, -216], [209, -225], [208, -230], [210, -233], [212, -237], [213, -241], [219, -242], [228, -242], [228, -243], [220, -242], [220, -245], [207, -245], [205, -249], [200, -250]]}, "center": {"225-258": [205, -239]}}, -{"id": 2496, "name": "Demon Grove", "description": "One of the r/placetrees groves.", "links": {"subreddit": ["placetrees"], "discord": ["sq4vJ9FU"]}, "path": {"225-258": [[-1180, 529], [-1182, 527], [-1182, 520], [-1183, 519], [-1180, 517], [-1178, 516], [-1175, 514], [-1173, 514], [-1172, 515], [-1171, 513], [-1170, 511], [-1167, 511], [-1165, 515], [-1162, 513], [-1161, 514], [-1160, 518], [-1146, 518], [-1142, 513], [-1142, 505], [-1149, 505], [-1149, 504], [-1151, 502], [-1150, 501], [-1149, 501], [-1149, 500], [-1148, 499], [-1145, 499], [-1143, 501], [-1145, 495], [-1151, 501], [-1152, 498], [-1148, 495], [-1148, 493], [-1147, 492], [-1147, 489], [-1148, 489], [-1150, 490], [-1151, 495], [-1155, 498], [-1156, 497], [-1155, 489], [-1152, 487], [-1155, 487], [-1155, 488], [-1158, 491], [-1159, 490], [-1156, 486], [-1153, 482], [-1149, 482], [-1149, 480], [-1147, 480], [-1147, 479], [-1143, 479], [-1143, 480], [-1134, 480], [-1134, 481], [-1132, 481], [-1132, 482], [-1131, 482], [-1131, 489], [-1133, 489], [-1133, 486], [-1136, 484], [-1138, 484], [-1135, 487], [-1135, 491], [-1134, 492], [-1134, 496], [-1138, 501], [-1138, 512], [-1137, 513], [-1137, 514], [-1138, 515], [-1138, 518], [-1135, 514], [-1133, 514], [-1133, 513], [-1136, 512], [-1136, 508], [-1135, 508], [-1134, 502], [-1134, 497], [-1133, 497], [-1133, 494], [-1127, 491], [-1120, 491], [-1114, 496], [-1114, 498], [-1113, 499], [-1113, 504], [-1114, 505], [-1117, 509], [-1119, 510], [-1116, 510], [-1116, 515], [-1117, 515], [-1118, 520], [-1114, 520], [-1114, 525], [-1119, 525], [-1119, 526], [-1118, 527], [-1119, 528], [-1120, 528], [-1121, 529], [-1121, 531], [-1123, 531], [-1125, 527], [-1133, 526], [-1138, 521], [-1143, 521], [-1144, 519], [-1159, 519], [-1161, 521], [-1179, 528]]}, "center": {"225-258": [-1124, 501]}}, -{"id": 2497, "name": "Pride pillar", "description": "Artwork to comemorate the peace treaty between the Suedflagge and r/transplace.", "links": {}, "path": {"164-258": [[-586, -79], [-567, -79], [-567, -59], [-585, -58]]}, "center": {"164-258": [-576, -69]}}, +{"id": 2495, "name": "The Carolean", "description": "Caroleans or in swedish \"Karoliner\" is a term used to describe soldiers of the Swedish army during the reigns of Kings Charles XI and Charles XII of Sweden, and specifically from 1680, when Charles XI instituted an absolute monarchy and embarked on a series of sweeping military reforms, to the death of Charles XII in 1718", "links": {"website": ["https://en.wikipedia.org/wiki/Caroleans"], "subreddit": ["sweden", "nordics"]}, "path": {"225-258, T": [[199, -249], [195, -242], [199, -238], [198, -233], [198, -218], [194, -213], [195, -211], [200, -213], [200, -221], [203, -222], [204, -218], [206, -209], [210, -208], [208, -211], [208, -216], [209, -225], [208, -230], [210, -233], [212, -237], [213, -241], [219, -242], [228, -242], [228, -243], [220, -242], [220, -245], [207, -245], [205, -249], [200, -250]]}, "center": {"225-258, T": [205, -239]}}, +{"id": 2496, "name": "Demon Grove", "description": "One of the r/placetrees groves.", "links": {"subreddit": ["placetrees"], "discord": ["sq4vJ9FU"]}, "path": {"225-258, T": [[-1180, 529], [-1182, 527], [-1182, 520], [-1183, 519], [-1180, 517], [-1178, 516], [-1175, 514], [-1173, 514], [-1172, 515], [-1171, 513], [-1170, 511], [-1167, 511], [-1165, 515], [-1162, 513], [-1161, 514], [-1160, 518], [-1146, 518], [-1142, 513], [-1142, 505], [-1149, 505], [-1149, 504], [-1151, 502], [-1150, 501], [-1149, 501], [-1149, 500], [-1148, 499], [-1145, 499], [-1143, 501], [-1145, 495], [-1151, 501], [-1152, 498], [-1148, 495], [-1148, 493], [-1147, 492], [-1147, 489], [-1148, 489], [-1150, 490], [-1151, 495], [-1155, 498], [-1156, 497], [-1155, 489], [-1152, 487], [-1155, 487], [-1155, 488], [-1158, 491], [-1159, 490], [-1156, 486], [-1153, 482], [-1149, 482], [-1149, 480], [-1147, 480], [-1147, 479], [-1143, 479], [-1143, 480], [-1134, 480], [-1134, 481], [-1132, 481], [-1132, 482], [-1131, 482], [-1131, 489], [-1133, 489], [-1133, 486], [-1136, 484], [-1138, 484], [-1135, 487], [-1135, 491], [-1134, 492], [-1134, 496], [-1138, 501], [-1138, 512], [-1137, 513], [-1137, 514], [-1138, 515], [-1138, 518], [-1135, 514], [-1133, 514], [-1133, 513], [-1136, 512], [-1136, 508], [-1135, 508], [-1134, 502], [-1134, 497], [-1133, 497], [-1133, 494], [-1127, 491], [-1120, 491], [-1114, 496], [-1114, 498], [-1113, 499], [-1113, 504], [-1114, 505], [-1117, 509], [-1119, 510], [-1116, 510], [-1116, 515], [-1117, 515], [-1118, 520], [-1114, 520], [-1114, 525], [-1119, 525], [-1119, 526], [-1118, 527], [-1119, 528], [-1120, 528], [-1121, 529], [-1121, 531], [-1123, 531], [-1125, 527], [-1133, 526], [-1138, 521], [-1143, 521], [-1144, 519], [-1159, 519], [-1161, 521], [-1179, 528]]}, "center": {"225-258, T": [-1124, 501]}}, +{"id": 2497, "name": "Pride pillar", "description": "Artwork to comemorate the peace treaty between the Suedflagge and r/transplace.", "links": {}, "path": {"164-258, T": [[-586, -79], [-567, -79], [-567, -59], [-585, -58]]}, "center": {"164-258, T": [-576, -69]}}, {"id": 2498, "name": "Sebo moustache", "description": "A moustache to comemorate the alliance between German streamer Sebo and the Suedflagge.", "links": {}, "path": {"115-153": [[-742, -73], [-708, -73], [-708, -62], [-742, -62]]}, "center": {"115-153": [-725, -67]}}, -{"id": 2499, "name": "Dachshund", "description": "A replacement artwork after the Suedflagge broke up its alliance with Sebo on good terms because German streamer Rumathra had beef with Sebo that the Suedflagge didnt want to die for. Dachshunds, also called \"sausage dogs\" or \"wiener dogs\", are short dogs with stubby legs, which are widely associated with Germany and german fashion.", "links": {}, "path": {"203-258": [[-746, -75], [-713, -75], [-713, -62], [-746, -62]]}, "center": {"203-258": [-729, -68]}}, -{"id": 2500, "name": "RenRize", "description": "Ren is a Mexican streamer, she is 24 years old, a mechatronic engineer and has a company called \"DreamLabs PC\".", "links": {"website": ["https://www.twitch.tv/renrize", "https://instagram.com/renrize?igshid=MzRlODBiNWFlZA==", "https://www.youtube.com/@renrize"]}, "path": {"225-258": [[-1195, -707], [-1195, -668], [-1183, -668], [-1183, -707]]}, "center": {"225-258": [-1189, -687]}}, -{"id": 2501, "name": "Rimuru Tempest", "description": "Artwork showcasing Rimuru Tempest, the main protagonist of the web novel series That Time I Got Reincarnated As A Slime.", "links": {"subreddit": ["TenseiSlime"], "discord": ["tenseislime"]}, "path": {"131-258": [[207, -868], [215, -868], [215, -867], [216, -867], [216, -866], [217, -866], [217, -865], [218, -865], [218, -863], [219, -863], [219, -855], [220, -855], [220, -852], [219, -852], [219, -849], [218, -849], [218, -848], [219, -848], [219, -846], [220, -846], [220, -845], [221, -845], [221, -843], [222, -843], [222, -838], [221, -838], [221, -835], [222, -835], [222, -832], [221, -832], [221, -831], [222, -831], [222, -830], [224, -830], [224, -829], [226, -829], [226, -828], [227, -828], [227, -827], [228, -827], [228, -826], [229, -826], [229, -824], [227, -824], [227, -825], [223, -825], [223, -826], [221, -826], [221, -827], [221, -817], [220, -817], [220, -816], [217, -816], [217, -809], [218, -809], [218, -808], [219, -808], [219, -807], [220, -807], [220, -804], [211, -804], [211, -817], [211, -816], [209, -816], [209, -810], [208, -810], [208, -808], [209, -808], [209, -807], [210, -807], [210, -804], [202, -804], [202, -862], [204, -862], [204, -863], [205, -863], [205, -864], [206, -864], [206, -865], [206, -864], [202, -864], [202, -867], [203, -867], [203, -868], [215, -868]]}, "center": {"131-258": [211, -836]}}, -{"id": 2502, "name": "BMO", "description": "BMO is a character from the 2010 Cartoon Network animated series, Adventure Time", "links": {}, "path": {"226-258": [[-1294, 554], [-1285, 554], [-1285, 566], [-1294, 566]]}, "center": {"226-258": [-1289, 560]}}, -{"id": 2503, "name": "Nina Kosaka", "description": "Nina Kosaka was a virtual Youtuber affiliated with Nijisanji, as part of their English branch's third wave \"Ethyria\", amassing nearly 600,000 subscribers.\n\nShe retired from the persona on July 8, 2023, with her content remaining online on her Youtube channel.", "links": {"website": ["https://www.youtube.com/channel/UCkieJGn3pgJikVW8gmMXE2w"], "subreddit": ["Nijisanji"]}, "path": {"98-258": [[-606, -327], [-606, -308], [-587, -308], [-587, -327]]}, "center": {"98-258": [-596, -317]}}, +{"id": 2499, "name": "Dachshund", "description": "A replacement artwork after the Suedflagge broke up its alliance with Sebo on good terms because German streamer Rumathra had beef with Sebo that the Suedflagge didnt want to die for. Dachshunds, also called \"sausage dogs\" or \"wiener dogs\", are short dogs with stubby legs, which are widely associated with Germany and german fashion.", "links": {}, "path": {"203-258, T": [[-746, -75], [-713, -75], [-713, -62], [-746, -62]]}, "center": {"203-258, T": [-729, -68]}}, +{"id": 2500, "name": "RenRize", "description": "Ren is a Mexican streamer, she is 24 years old, a mechatronic engineer and has a company called \"DreamLabs PC\".", "links": {"website": ["https://www.twitch.tv/renrize", "https://instagram.com/renrize?igshid=MzRlODBiNWFlZA==", "https://www.youtube.com/@renrize"]}, "path": {"225-258, T": [[-1195, -707], [-1195, -668], [-1183, -668], [-1183, -707]]}, "center": {"225-258, T": [-1189, -687]}}, +{"id": 2501, "name": "Rimuru Tempest", "description": "Artwork showcasing Rimuru Tempest, the main protagonist of the web novel series That Time I Got Reincarnated As A Slime.", "links": {"subreddit": ["TenseiSlime"], "discord": ["tenseislime"]}, "path": {"131-258, T": [[207, -868], [215, -868], [215, -867], [216, -867], [216, -866], [217, -866], [217, -865], [218, -865], [218, -863], [219, -863], [219, -855], [220, -855], [220, -852], [219, -852], [219, -849], [218, -849], [218, -848], [219, -848], [219, -846], [220, -846], [220, -845], [221, -845], [221, -843], [222, -843], [222, -838], [221, -838], [221, -835], [222, -835], [222, -832], [221, -832], [221, -831], [222, -831], [222, -830], [224, -830], [224, -829], [226, -829], [226, -828], [227, -828], [227, -827], [228, -827], [228, -826], [229, -826], [229, -824], [227, -824], [227, -825], [223, -825], [223, -826], [221, -826], [221, -827], [221, -817], [220, -817], [220, -816], [217, -816], [217, -809], [218, -809], [218, -808], [219, -808], [219, -807], [220, -807], [220, -804], [211, -804], [211, -817], [211, -816], [209, -816], [209, -810], [208, -810], [208, -808], [209, -808], [209, -807], [210, -807], [210, -804], [202, -804], [202, -862], [204, -862], [204, -863], [205, -863], [205, -864], [206, -864], [206, -865], [206, -864], [202, -864], [202, -867], [203, -867], [203, -868], [215, -868]]}, "center": {"131-258, T": [211, -836]}}, +{"id": 2502, "name": "BMO", "description": "BMO is a character from the 2010 Cartoon Network animated series, Adventure Time", "links": {}, "path": {"226-258, T": [[-1294, 554], [-1285, 554], [-1285, 566], [-1294, 566]]}, "center": {"226-258, T": [-1289, 560]}}, +{"id": 2503, "name": "Nina Kosaka", "description": "Nina Kosaka was a virtual Youtuber affiliated with Nijisanji, as part of their English branch's third wave \"Ethyria\", amassing nearly 600,000 subscribers.\n\nShe retired from the persona on July 8, 2023, with her content remaining online on her Youtube channel.", "links": {"website": ["https://www.youtube.com/channel/UCkieJGn3pgJikVW8gmMXE2w"], "subreddit": ["Nijisanji"]}, "path": {"98-258, T": [[-606, -327], [-606, -308], [-587, -308], [-587, -327]]}, "center": {"98-258, T": [-596, -317]}}, {"id": 2504, "name": "andean condor", "description": "its a giant south american vulture native from the andes mountains. In Andean mythology, the Andean condor was associated with the sun deity, and was believed to be the ruler of the upper world (called hanan pacha in quechua).", "links": {"website": ["https://en.wikipedia.org/wiki/Andean_condor"]}, "path": {"60-243": [[-190, -25], [-188, -25], [-188, -20], [-187, -17], [-186, -14], [-185, -11], [-184, -8], [-183, -8], [-181, -7], [-179, -6], [-178, -7], [-177, -6], [-176, -5], [-175, -4], [-176, -4], [-176, -2], [-176, -1], [-174, -1], [-171, 0], [-168, 1], [-164, 2], [-164, 4], [-167, 4], [-167, 3], [-176, 3], [-176, 2], [-178, 2], [-178, 1], [-180, 1], [-180, 0], [-182, 0], [-182, -1], [-185, -1], [-185, 2], [-185, 4], [-191, 3]]}, "center": {"60-243": [-187, -5]}}, -{"id": 2505, "name": "FL Studio", "description": "FL Studio (Fruity Loops Studio) is a Digital Audio Workstation created by Image-Line. It is used by many music artists to compose Music. It's also used by many within the Black MIDI Community due to its support of MIDI and having convenient tools for Black MIDI production.", "links": {"website": ["https://www.image-line.com/fl-studio/"], "subreddit": ["FL_Studio"], "discord": ["27wgKfafmP"]}, "path": {"162-185": [[-540, -514], [-536, -514], [-536, -508], [-537, -508], [-538, -508], [-538, -507], [-539, -507], [-539, -506], [-541, -506], [-542, -506], [-542, -512], [-540, -512]], "208-258": [[-1003, -204], [-1007, -204], [-1007, -202], [-1007, -201], [-1008, -201], [-1008, -200], [-1009, -200], [-1009, -196], [-1006, -196], [-1006, -197], [-1005, -197], [-1005, -198], [-1004, -198], [-1003, -198]]}, "center": {"162-185": [-540, -510], "208-258": [-1005, -200]}}, -{"id": 2506, "name": "Domino", "description": "Domino is a Japanese software used to produce MIDI music. Developed by TakaboSoft, Domino is most used by Black MIDI Producers due to its speed and efficiency, making it advantageous for making MIDI files with a huge number of notes.", "links": {"website": ["https://takabosoft.com/domino", "https://github.com/Hans5958/Domino-English-Translation"]}, "path": {"212-258": [[-1028, -204], [-1022, -204], [-1022, -197], [-1028, -197]]}, "center": {"212-258": [-1025, -200]}}, -{"id": 2507, "name": "Gojo Satoru", "description": "Gojo Satoru is one of the main characters in the anime and manga Jujutsu Kaisen.", "links": {"website": ["https://en.wikipedia.org/wiki/Satoru_Gojo"], "discord": ["jjk"]}, "path": {"194-202": [[-1212, -930], [-1218, -925], [-1218, -922], [-1215, -919], [-1215, -910], [-1200, -910], [-1200, -913], [-1198, -915], [-1198, -926], [-1200, -926], [-1203, -929], [-1205, -929], [-1206, -930]], "203-258": [[-1209, -918], [-1209, -921], [-1210, -922], [-1211, -923], [-1212, -924], [-1212, -927], [-1212, -928], [-1211, -928], [-1211, -929], [-1210, -929], [-1210, -932], [-1206, -932], [-1206, -933], [-1194, -933], [-1194, -932], [-1193, -932], [-1193, -931], [-1192, -931], [-1192, -930], [-1191, -930], [-1191, -928], [-1190, -928], [-1190, -927], [-1189, -927], [-1189, -922], [-1188, -921], [-1188, -918], [-1189, -917], [-1189, -913], [-1190, -912], [-1190, -910], [-1207, -910], [-1207, -915]]}, "center": {"194-202": [-1206, -920], "203-258": [-1199, -921]}}, -{"id": 2508, "name": "Cult of the Lamb - Lamb Card", "description": "A Card of the Lamb, with the four corners colored to represent the four Bishops of the Old Faith", "links": {"website": ["https://www.cultofthelamb.com/"], "subreddit": ["CultOfTheLamb"], "discord": ["NHmc6Jpt"]}, "path": {"227-258": [[1207, -590], [1226, -590], [1226, -551], [1207, -551]]}, "center": {"227-258": [1217, -570]}}, -{"id": 2509, "name": "Breast cancer awareness", "description": "Breast cancer awareness is an effort to raise awareness and reduce the stigma of breast cancer through education about screening, symptoms, and treatment. Supporters hope that greater knowledge will lead to earlier detection of breast cancer, which is associated with higher long-term survival rates, and that money raised for breast cancer will produce a reliable, permanent cure.", "links": {"website": ["https://en.wikipedia.org/wiki/Breast_cancer_awareness", "https://en.wikipedia.org/wiki/Breast_cancer"], "subreddit": ["place_the_wave", "place_wave"], "discord": ["wxVbQDKTE3", "VTHVv5hd"]}, "path": {"219-258": [[1377, -957], [1377, -926], [1401, -926], [1401, -957]]}, "center": {"219-258": [1389, -941]}}, -{"id": 2510, "name": "Blackpink Heart Logo", "description": "Blackpink is a South Korean girl group formed by YG Entertainment, consisting of members Jisoo, Jennie, Rosé, and Lisa.\n\nThe heart is made up of the letters 'B' and 'P', the initials of \"Black\" and \"Pink\", representing love for and by Blackpink", "links": {"website": ["https://www.blackpinkmusic.com/", "https://www.blackpinklive.com/"], "subreddit": ["BlackPink", "BeulPing"], "discord": ["qmGHwGq"]}, "path": {"227-258": [[651, 953], [678, 953], [678, 967], [651, 967]]}, "center": {"227-258": [665, 960]}}, -{"id": 2512, "name": "Big ben", "description": "Big Ben is the nickname for the Great Bell of the Great Clock of Westminster, at the north end of the Palace of Westminster in London, England, and the name is frequently extended to refer also to the clock and the clock tower.\nThe official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II.", "links": {"website": ["https://en.wikipedia.org/wiki/Big_Ben"]}, "path": {"210-258": [[1070, 897], [1070, 874], [1071, 873], [1071, 866], [1070, 865], [1070, 862], [1069, 861], [1068, 860], [1068, 859], [1067, 858], [1067, 857], [1066, 856], [1065, 856], [1064, 857], [1064, 858], [1063, 859], [1063, 860], [1062, 861], [1061, 862], [1061, 865], [1060, 866], [1060, 873], [1061, 874], [1061, 878], [1060, 878], [1059, 878], [1059, 879], [1058, 878], [1057, 879], [1056, 878], [1055, 879], [1054, 878], [1053, 879], [1052, 878], [1051, 879], [1050, 878], [1049, 879], [1048, 878], [1047, 877], [1047, 873], [1046, 872], [1046, 870], [1045, 869], [1044, 870], [1044, 872], [1043, 873], [1043, 874], [1042, 873], [1040, 873], [1039, 874], [1039, 873], [1038, 872], [1038, 870], [1037, 869], [1036, 870], [1036, 872], [1035, 873], [1035, 878], [1035, 879], [1035, 881], [1036, 883], [1037, 883], [1037, 886], [1038, 886], [1038, 888], [1040, 889], [1045, 894], [1046, 895], [1046, 897], [1046, 898], [1070, 898]]}, "center": {"210-258": [1053, 888]}}, -{"id": 2513, "name": "Paddington Bear", "description": "Paddington Bear is a fictional character in children's literature. He first appeared on 13 October 1958 in the children's book A Bear Called Paddington and has been featured in more than twenty books written by British author Michael Bond, and illustrated by Peggy Fortnum and other artists.\nThat has also seen adaptations to movies.", "links": {"website": ["https://en.wikipedia.org/wiki/Paddington_Bear", "https://en.wikipedia.org/wiki/Paddington_(film_series)"]}, "path": {"209-258": [[1031, 807], [1031, 809], [1030, 810], [1030, 814], [1031, 815], [1032, 817], [1033, 818], [1034, 819], [1035, 820], [1034, 821], [1034, 823], [1033, 824], [1033, 830], [1034, 831], [1034, 833], [1036, 834], [1036, 835], [1035, 836], [1034, 837], [1035, 838], [1039, 839], [1040, 838], [1041, 837], [1043, 837], [1044, 838], [1050, 839], [1051, 838], [1055, 838], [1056, 837], [1058, 837], [1059, 836], [1059, 828], [1056, 827], [1056, 822], [1055, 821], [1055, 820], [1054, 819], [1054, 817], [1055, 816], [1054, 815], [1054, 813], [1054, 811], [1053, 810], [1052, 809], [1052, 808], [1051, 807], [1050, 806], [1049, 805], [1048, 804], [1046, 803], [1045, 802], [1043, 802], [1042, 803], [1041, 804], [1040, 804], [1039, 805], [1038, 806], [1037, 805], [1036, 804], [1034, 803], [1033, 804], [1032, 805], [1032, 806]]}, "center": {"209-258": [1045, 826]}}, -{"id": 2514, "name": "White House", "description": "The White House is the official residence and workplace of the President of the United States. It is located at 1600 Pennsylvania Avenue NW in Washington, D.C., and has been the residence of every U.S. president since John Adams in 1800 when the national capital was moved from Philadelphia to Washington, D.C.", "links": {"website": ["https://en.wikipedia.org/wiki/White_House", "https://www.whitehouse.gov/"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"194-258": [[942, 883], [929, 883], [927, 882], [924, 882], [920, 881], [918, 880], [914, 879], [924, 879], [925, 872], [915, 871], [915, 870], [914, 869], [913, 868], [912, 869], [911, 870], [912, 871], [912, 879], [911, 880], [910, 880], [908, 881], [905, 882], [902, 882], [901, 883], [895, 883], [894, 883], [894, 885], [896, 886], [896, 890], [895, 891], [894, 892], [894, 895], [895, 896], [942, 896], [943, 895], [943, 886], [944, 885], [944, 884], [943, 883], [942, 882]]}, "center": {"194-258": [914, 888]}}, +{"id": 2505, "name": "FL Studio", "description": "FL Studio (Fruity Loops Studio) is a Digital Audio Workstation created by Image-Line. It is used by many music artists to compose Music. It's also used by many within the Black MIDI Community due to its support of MIDI and having convenient tools for Black MIDI production.", "links": {"website": ["https://www.image-line.com/fl-studio/"], "subreddit": ["FL_Studio"], "discord": ["27wgKfafmP"]}, "path": {"162-185": [[-540, -514], [-536, -514], [-536, -508], [-537, -508], [-538, -508], [-538, -507], [-539, -507], [-539, -506], [-541, -506], [-542, -506], [-542, -512], [-540, -512]], "208-258, T": [[-1003, -204], [-1007, -204], [-1007, -202], [-1007, -201], [-1008, -201], [-1008, -200], [-1009, -200], [-1009, -196], [-1006, -196], [-1006, -197], [-1005, -197], [-1005, -198], [-1004, -198], [-1003, -198]]}, "center": {"162-185": [-540, -510], "208-258, T": [-1005, -200]}}, +{"id": 2506, "name": "Domino", "description": "Domino is a Japanese software used to produce MIDI music. Developed by TakaboSoft, Domino is most used by Black MIDI Producers due to its speed and efficiency, making it advantageous for making MIDI files with a huge number of notes.", "links": {"website": ["https://takabosoft.com/domino", "https://github.com/Hans5958/Domino-English-Translation"]}, "path": {"212-258, T": [[-1028, -204], [-1022, -204], [-1022, -197], [-1028, -197]]}, "center": {"212-258, T": [-1025, -200]}}, +{"id": 2507, "name": "Gojo Satoru", "description": "Gojo Satoru is one of the main characters in the anime and manga Jujutsu Kaisen.", "links": {"website": ["https://en.wikipedia.org/wiki/Satoru_Gojo"], "discord": ["jjk"]}, "path": {"194-202": [[-1212, -930], [-1218, -925], [-1218, -922], [-1215, -919], [-1215, -910], [-1200, -910], [-1200, -913], [-1198, -915], [-1198, -926], [-1200, -926], [-1203, -929], [-1205, -929], [-1206, -930]], "203-258, T": [[-1209, -918], [-1209, -921], [-1210, -922], [-1211, -923], [-1212, -924], [-1212, -927], [-1212, -928], [-1211, -928], [-1211, -929], [-1210, -929], [-1210, -932], [-1206, -932], [-1206, -933], [-1194, -933], [-1194, -932], [-1193, -932], [-1193, -931], [-1192, -931], [-1192, -930], [-1191, -930], [-1191, -928], [-1190, -928], [-1190, -927], [-1189, -927], [-1189, -922], [-1188, -921], [-1188, -918], [-1189, -917], [-1189, -913], [-1190, -912], [-1190, -910], [-1207, -910], [-1207, -915]]}, "center": {"194-202": [-1206, -920], "203-258, T": [-1199, -921]}}, +{"id": 2508, "name": "Cult of the Lamb - Lamb Card", "description": "A Card of the Lamb, with the four corners colored to represent the four Bishops of the Old Faith", "links": {"website": ["https://www.cultofthelamb.com/"], "subreddit": ["CultOfTheLamb"], "discord": ["NHmc6Jpt"]}, "path": {"227-258, T": [[1207, -590], [1226, -590], [1226, -551], [1207, -551]]}, "center": {"227-258, T": [1217, -570]}}, +{"id": 2509, "name": "Breast cancer awareness", "description": "Breast cancer awareness is an effort to raise awareness and reduce the stigma of breast cancer through education about screening, symptoms, and treatment. Supporters hope that greater knowledge will lead to earlier detection of breast cancer, which is associated with higher long-term survival rates, and that money raised for breast cancer will produce a reliable, permanent cure.", "links": {"website": ["https://en.wikipedia.org/wiki/Breast_cancer_awareness", "https://en.wikipedia.org/wiki/Breast_cancer"], "subreddit": ["place_the_wave", "place_wave"], "discord": ["wxVbQDKTE3", "VTHVv5hd"]}, "path": {"219-258, T": [[1377, -957], [1377, -926], [1401, -926], [1401, -957]]}, "center": {"219-258, T": [1389, -941]}}, +{"id": 2510, "name": "Blackpink Heart Logo", "description": "Blackpink is a South Korean girl group formed by YG Entertainment, consisting of members Jisoo, Jennie, Rosé, and Lisa.\n\nThe heart is made up of the letters 'B' and 'P', the initials of \"Black\" and \"Pink\", representing love for and by Blackpink", "links": {"website": ["https://www.blackpinkmusic.com/", "https://www.blackpinklive.com/"], "subreddit": ["BlackPink", "BeulPing"], "discord": ["qmGHwGq"]}, "path": {"227-258, T": [[651, 953], [678, 953], [678, 967], [651, 967]]}, "center": {"227-258, T": [665, 960]}}, +{"id": 2512, "name": "Big ben", "description": "Big Ben is the nickname for the Great Bell of the Great Clock of Westminster, at the north end of the Palace of Westminster in London, England, and the name is frequently extended to refer also to the clock and the clock tower.\nThe official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II.", "links": {"website": ["https://en.wikipedia.org/wiki/Big_Ben"]}, "path": {"210-258, T": [[1070, 897], [1070, 874], [1071, 873], [1071, 866], [1070, 865], [1070, 862], [1069, 861], [1068, 860], [1068, 859], [1067, 858], [1067, 857], [1066, 856], [1065, 856], [1064, 857], [1064, 858], [1063, 859], [1063, 860], [1062, 861], [1061, 862], [1061, 865], [1060, 866], [1060, 873], [1061, 874], [1061, 878], [1060, 878], [1059, 878], [1059, 879], [1058, 878], [1057, 879], [1056, 878], [1055, 879], [1054, 878], [1053, 879], [1052, 878], [1051, 879], [1050, 878], [1049, 879], [1048, 878], [1047, 877], [1047, 873], [1046, 872], [1046, 870], [1045, 869], [1044, 870], [1044, 872], [1043, 873], [1043, 874], [1042, 873], [1040, 873], [1039, 874], [1039, 873], [1038, 872], [1038, 870], [1037, 869], [1036, 870], [1036, 872], [1035, 873], [1035, 878], [1035, 879], [1035, 881], [1036, 883], [1037, 883], [1037, 886], [1038, 886], [1038, 888], [1040, 889], [1045, 894], [1046, 895], [1046, 897], [1046, 898], [1070, 898]]}, "center": {"210-258, T": [1053, 888]}}, +{"id": 2513, "name": "Paddington Bear", "description": "Paddington Bear is a fictional character in children's literature. He first appeared on 13 October 1958 in the children's book A Bear Called Paddington and has been featured in more than twenty books written by British author Michael Bond, and illustrated by Peggy Fortnum and other artists.\nThat has also seen adaptations to movies.", "links": {"website": ["https://en.wikipedia.org/wiki/Paddington_Bear", "https://en.wikipedia.org/wiki/Paddington_(film_series)"]}, "path": {"209-258, T": [[1031, 807], [1031, 809], [1030, 810], [1030, 814], [1031, 815], [1032, 817], [1033, 818], [1034, 819], [1035, 820], [1034, 821], [1034, 823], [1033, 824], [1033, 830], [1034, 831], [1034, 833], [1036, 834], [1036, 835], [1035, 836], [1034, 837], [1035, 838], [1039, 839], [1040, 838], [1041, 837], [1043, 837], [1044, 838], [1050, 839], [1051, 838], [1055, 838], [1056, 837], [1058, 837], [1059, 836], [1059, 828], [1056, 827], [1056, 822], [1055, 821], [1055, 820], [1054, 819], [1054, 817], [1055, 816], [1054, 815], [1054, 813], [1054, 811], [1053, 810], [1052, 809], [1052, 808], [1051, 807], [1050, 806], [1049, 805], [1048, 804], [1046, 803], [1045, 802], [1043, 802], [1042, 803], [1041, 804], [1040, 804], [1039, 805], [1038, 806], [1037, 805], [1036, 804], [1034, 803], [1033, 804], [1032, 805], [1032, 806]]}, "center": {"209-258, T": [1045, 826]}}, +{"id": 2514, "name": "White House", "description": "The White House is the official residence and workplace of the President of the United States. It is located at 1600 Pennsylvania Avenue NW in Washington, D.C., and has been the residence of every U.S. president since John Adams in 1800 when the national capital was moved from Philadelphia to Washington, D.C.", "links": {"website": ["https://en.wikipedia.org/wiki/White_House", "https://www.whitehouse.gov/"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"194-258, T": [[942, 883], [929, 883], [927, 882], [924, 882], [920, 881], [918, 880], [914, 879], [924, 879], [925, 872], [915, 871], [915, 870], [914, 869], [913, 868], [912, 869], [911, 870], [912, 871], [912, 879], [911, 880], [910, 880], [908, 881], [905, 882], [902, 882], [901, 883], [895, 883], [894, 883], [894, 885], [896, 886], [896, 890], [895, 891], [894, 892], [894, 895], [895, 896], [942, 896], [943, 895], [943, 886], [944, 885], [944, 884], [943, 883], [942, 882]]}, "center": {"194-258, T": [914, 888]}}, {"id": 2515, "name": "Duolingo", "description": "Duolingo is a online platform to learn new languages.", "links": {"website": ["https://www.duolingo.com/"]}, "path": {"208-212": [[-1081, 605], [-1081, 557], [-1074, 551], [-1061, 564], [-1054, 564], [-1045, 556], [-1045, 579], [-1046, 580], [-1046, 582], [-1044, 582], [-1040, 578], [-1034, 578], [-1031, 580], [-1031, 582], [-1032, 585], [-1044, 596], [-1044, 598], [-1054, 598], [-1062, 600], [-1067, 601], [-1068, 603], [-1069, 603], [-1070, 604]]}, "center": {"208-212": [-1064, 582]}}, -{"id": 2516, "name": "Seattle Sports", "description": "A collection of the professional sports teams based in Seattle, Washington, USA. This includes the Seattle Seahawks's logo (NFL), Mariners trident (MLB), and Kraken anchor (NHL). \n\nThe numbers surrounding the logos represent the jersey numbers of various legends in Seattle sports, such as Ken Griffey Jr. (24), Ichiro Suzuki (51), Walter Jones (71) and the 12th man (i.e. the fans).", "links": {"subreddit": ["Seahawks"]}, "path": {"176-208": [[-142, 912], [-142, 877], [-109, 877], [-109, 912]], "209-258": [[-152, 877], [-109, 877], [-109, 912], [-142, 912], [-142, 904], [-158, 904], [-158, 885], [-156, 885], [-156, 883], [-152, 879]]}, "center": {"176-208": [-125, 895], "209-258": [-128, 894]}}, -{"id": 2517, "name": "Route 66", "description": "U.S. Route 66 was one of the original highways in the United States Numbered Highway System. It was established on November 11, 1926, with road signs erected the following year. The highway, which from Chicago, Illinois to Santa Monica, California soon became one of the most famous roadways in the United States.\n\nIt was recognized in popular culture by both the 1946 hit song \"(Get Your Kicks on) Route 66\" and the Route 66 television series. It was also featured in the Disney/Pixar animated feature film Cars. In John Steinbeck's novel The Grapes of Wrath (1939), the highway symbolizes escape, loss, and the hope of a new beginning; Steinbeck dubbed it the Mother Road. Other designations and nicknames include the Will Rogers Highway and the Main Street of America.", "links": {"website": ["https://en.wikipedia.org/wiki/U.S._Route_66"]}, "path": {"173-258": [[910, 831], [911, 830], [912, 830], [913, 829], [915, 828], [917, 828], [920, 825], [920, 824], [921, 823], [921, 819], [920, 818], [919, 818], [920, 817], [919, 816], [919, 815], [918, 814], [918, 808], [913, 803], [910, 806], [907, 806], [906, 805], [904, 805], [902, 807], [900, 807], [899, 806], [897, 806], [896, 807], [895, 807], [891, 811], [891, 812], [894, 815], [894, 819], [893, 820], [893, 825], [897, 829], [898, 829], [899, 830], [905, 830], [906, 831], [908, 831], [908, 840], [909, 841], [927, 841], [928, 840], [929, 840], [932, 837], [933, 837], [935, 835], [938, 835], [939, 834], [940, 834], [941, 833], [941, 832], [942, 831], [943, 830], [944, 829], [946, 828], [946, 827], [947, 826], [947, 824], [949, 822], [949, 820], [951, 818], [952, 817], [954, 819], [954, 820], [952, 822], [952, 824], [950, 826], [950, 828], [949, 829], [949, 830], [947, 832], [946, 832], [946, 833], [945, 834], [944, 834], [944, 835], [942, 837], [941, 837], [940, 838], [937, 838], [935, 840], [934, 840], [931, 843], [930, 843], [929, 844], [908, 844], [907, 843], [906, 843], [906, 844], [905, 845], [902, 845], [900, 843], [896, 843], [895, 844], [894, 844], [893, 843], [891, 843], [890, 842], [889, 842], [888, 841], [887, 841], [886, 840], [885, 841], [878, 841], [877, 840], [876, 841], [872, 841], [871, 841], [869, 839], [870, 838], [874, 838], [875, 837], [878, 837], [879, 838], [883, 838], [885, 836], [886, 837], [887, 837], [888, 838], [889, 838], [890, 839], [891, 839], [897, 840], [898, 839], [900, 839], [903, 841], [905, 839], [908, 839], [908, 832], [909, 832]]}, "center": {"173-258": [907, 818]}}, -{"id": 2518, "name": "Feastables", "description": "Feastables LLC is a food brand created by Jimmy Donaldson, known online as MrBeast. \nIn January 2022, Donaldson announced the creation of the company, which launched with its own brand of chocolate bars called \"MrBeast Bars\".", "links": {"website": ["https://en.wikipedia.org/wiki/Feastables", "https://feastables.com/"]}, "path": {"206-217": [[1298, -913], [1298, -902], [1340, -902], [1340, -913]], "218-258": [[1298, -913], [1298, -902], [1372, -902], [1371, -913]]}, "center": {"206-217": [1319, -907], "218-258": [1335, -907]}}, -{"id": 2519, "name": "Alaska and Hawaii", "description": "A drawing representing a map of Alaska and Hawaii", "links": {"website": ["https://en.wikipedia.org/wiki/List_of_islands_of_the_United_States"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"176-258": [[848, 833], [850, 836], [851, 838], [849, 840], [848, 841], [844, 841], [843, 834], [843, 833], [841, 833], [840, 831], [838, 831], [837, 830], [836, 829], [833, 828], [833, 827], [832, 827], [828, 827], [819, 826], [819, 825], [802, 821], [801, 822], [800, 823], [799, 823], [798, 824], [792, 826], [788, 826], [784, 826], [783, 825], [784, 824], [788, 824], [791, 823], [798, 820], [799, 819], [800, 815], [798, 815], [797, 813], [799, 811], [797, 810], [796, 809], [795, 810], [793, 811], [792, 813], [791, 813], [790, 812], [790, 811], [792, 810], [792, 809], [791, 809], [790, 808], [791, 806], [792, 805], [794, 803], [796, 803], [797, 802], [796, 801], [792, 801], [792, 800], [791, 799], [791, 798], [793, 797], [795, 796], [796, 796], [797, 795], [796, 794], [795, 794], [794, 793], [794, 792], [793, 791], [795, 790], [797, 788], [800, 785], [802, 784], [803, 784], [804, 785], [807, 785], [810, 785], [810, 788], [812, 788], [813, 787], [815, 786], [816, 788], [817, 790], [817, 792], [817, 794], [818, 796], [818, 797], [819, 797], [819, 798], [820, 800], [820, 802], [819, 803], [818, 804], [817, 805], [816, 805], [817, 806], [818, 808], [820, 808], [820, 807], [823, 806], [826, 808], [831, 809], [832, 809], [838, 814], [839, 815], [836, 816], [835, 815], [830, 813], [828, 813], [829, 812], [829, 811], [828, 811], [827, 810], [826, 809], [825, 811], [822, 810], [820, 811], [819, 811], [819, 810], [818, 810], [816, 810], [816, 809], [816, 808], [815, 808], [815, 807], [814, 806], [813, 808], [812, 808], [811, 810], [809, 811], [807, 812], [807, 814], [807, 816], [806, 816], [805, 817], [803, 818], [802, 819], [803, 820], [820, 824], [820, 822], [822, 822], [824, 822], [824, 823], [828, 824], [833, 824], [836, 827], [838, 827], [841, 828], [842, 829], [844, 829], [847, 832]]}, "center": {"176-258": [807, 798]}}, -{"id": 2520, "name": "Blush", "description": "A nice random guy from Bavaria!", "links": {"website": ["https://www.twitch.tv/blushttv"]}, "path": {"225-258": [[-646, -969], [-626, -969], [-626, -965], [-646, -965]]}, "center": {"225-258": [-636, -967]}}, -{"id": 2521, "name": "Stegi and Domo", "description": "A reward for Stegi and Papaplatte (Domo) for Stegis nightwatch and defense of the German flag against an intruding Brazilian artwork.", "links": {"website": ["https://www.youtube.com/@byStegi", "https://www.youtube.com/@DomoPapaplatte"], "subreddit": ["placede"]}, "path": {"152-258": [[-397, -930], [-397, -917], [-399, -915], [-387, -914], [-387, -915], [-383, -915], [-383, -939], [-382, -940], [-381, -941], [-380, -940], [-378, -940], [-377, -941], [-377, -943], [-382, -956], [-391, -960], [-401, -956], [-403, -949], [-405, -943], [-404, -935], [-398, -933]]}, "center": {"152-258": [-391, -947]}}, -{"id": 2522, "name": "Danny Gonzalez's Nutcracker", "description": "This is a pixelized rendition of the nutcracker soldier that appears in the background of Danny Gonzalez's videos.", "links": {"subreddit": ["DannyGonzalez"]}, "path": {"163-165": [[-201, 575], [-197, 575], [-196, 576], [-196, 585], [-195, 585], [-195, 593], [-196, 594], [-196, 599], [-193, 599], [-193, 601], [-198, 602], [-204, 602], [-204, 599], [-202, 599], [-203, 586], [-202, 585], [-202, 575]], "172-258": [[-195, 576], [-188, 576], [-188, 583], [-187, 583], [-186, 584], [-187, 585], [-187, 596], [-188, 597], [-188, 600], [-192, 601], [-191, 596], [-192, 600], [-194, 601], [-196, 601], [-196, 576]]}, "center": {"163-165": [-199, 589], "172-258": [-191, 586]}}, -{"id": 2523, "name": "Perkele", "description": "A famous Finnish swearword.", "links": {"website": ["https://en.wikipedia.org/wiki/Perkele"]}, "path": {"227-258": [[53, -286], [87, -286], [87, -280], [53, -280]]}, "center": {"227-258": [70, -283]}}, -{"id": 2524, "name": "Wilhelm Tell", "description": "William Tell (German: Wilhelm Tell, pronounced [ˈvɪlhɛlm ˈtɛl] (listen); French: Guillaume Tell; Italian: Guglielmo Tell; Romansh: Guglielm Tell) is a folk hero of Switzerland. According to the legend, Tell was an expert mountain climber and marksman with a crossbow who assassinated Albrecht Gessler, a tyrannical reeve of the Austrian dukes of the House of Habsburg positioned in Altdorf, in the canton of Uri. Tell's defiance and tyrannicide encouraged the population to open rebellion and a pact against the foreign rulers with neighbouring Schwyz and Unterwalden, marking the foundation of the Swiss Confederacy. Tell was considered the father of the Swiss Confederacy.", "links": {"website": ["https://en.wikipedia.org/wiki/William_Tell"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"227-258": [[-549, 883], [-543, 885], [-539, 885], [-534, 882], [-540, 877], [-543, 877], [-549, 882]]}, "center": {"227-258": [-541, 881]}}, -{"id": 2525, "name": "Ayrton Senna's Helmet", "description": "Iconic helmet used by the brazilian F1 racer Ayrton Senna. During his incredible ten-year career, Ayrton Senna achieved 41 wins, 80 podiums, and 65 pole positions. Along with that, he managed to secure three World Drivers' Championships against some very tough rivals such as Alain Prost and Nigel Mansell", "links": {"website": ["https://en.wikipedia.org/wiki/Ayrton_Senna", "https://senna.com/en/a-historia-do-desenho-do-capacete-de-ayrton-senna-o-mais-famoso-do-automobilismo/"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"230-258": [[171, 306], [172, 305], [172, 300], [171, 299], [170, 298], [169, 297], [164, 297], [163, 298], [162, 298], [162, 299], [161, 300], [161, 303], [162, 304], [162, 305], [163, 306]]}, "center": {"230-258": [167, 302]}}, -{"id": 2526, "name": "Nijika's Dorito", "description": "Nijika's ahoge is often called a Dorito since the triangular design is similar to those of Dorito snack.\n\nIt is spinnable by her mind power (refer Chapter 65 or the example in Episode 11) and is rumored capable to smack any living thing too", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"227-258": [[1350, 189], [1364, 189], [1363, 202], [1357, 196], [1358, 195]]}, "center": {"227-258": [1360, 192]}}, -{"id": 2527, "name": "Bochum University of Applied Sciences", "description": "Hochschule Bochum is a University of Applied Sciences. It is located in Bochum, Germany.", "links": {"website": ["https://de.wikipedia.org/wiki/Hochschule_Bochum", "https://www.hochschule-bochum.de/en/"]}, "path": {"207-258": [[-206, -57], [-206, -76], [-181, -76], [-181, -57]]}, "center": {"207-258": [-193, -66]}}, +{"id": 2516, "name": "Seattle Sports", "description": "A collection of the professional sports teams based in Seattle, Washington, USA. This includes the Seattle Seahawks's logo (NFL), Mariners trident (MLB), and Kraken anchor (NHL). \n\nThe numbers surrounding the logos represent the jersey numbers of various legends in Seattle sports, such as Ken Griffey Jr. (24), Ichiro Suzuki (51), Walter Jones (71) and the 12th man (i.e. the fans).", "links": {"subreddit": ["Seahawks"]}, "path": {"176-208": [[-142, 912], [-142, 877], [-109, 877], [-109, 912]], "209-258, T": [[-152, 877], [-109, 877], [-109, 912], [-142, 912], [-142, 904], [-158, 904], [-158, 885], [-156, 885], [-156, 883], [-152, 879]]}, "center": {"176-208": [-125, 895], "209-258, T": [-128, 894]}}, +{"id": 2517, "name": "Route 66", "description": "U.S. Route 66 was one of the original highways in the United States Numbered Highway System. It was established on November 11, 1926, with road signs erected the following year. The highway, which from Chicago, Illinois to Santa Monica, California soon became one of the most famous roadways in the United States.\n\nIt was recognized in popular culture by both the 1946 hit song \"(Get Your Kicks on) Route 66\" and the Route 66 television series. It was also featured in the Disney/Pixar animated feature film Cars. In John Steinbeck's novel The Grapes of Wrath (1939), the highway symbolizes escape, loss, and the hope of a new beginning; Steinbeck dubbed it the Mother Road. Other designations and nicknames include the Will Rogers Highway and the Main Street of America.", "links": {"website": ["https://en.wikipedia.org/wiki/U.S._Route_66"]}, "path": {"173-258, T": [[910, 831], [911, 830], [912, 830], [913, 829], [915, 828], [917, 828], [920, 825], [920, 824], [921, 823], [921, 819], [920, 818], [919, 818], [920, 817], [919, 816], [919, 815], [918, 814], [918, 808], [913, 803], [910, 806], [907, 806], [906, 805], [904, 805], [902, 807], [900, 807], [899, 806], [897, 806], [896, 807], [895, 807], [891, 811], [891, 812], [894, 815], [894, 819], [893, 820], [893, 825], [897, 829], [898, 829], [899, 830], [905, 830], [906, 831], [908, 831], [908, 840], [909, 841], [927, 841], [928, 840], [929, 840], [932, 837], [933, 837], [935, 835], [938, 835], [939, 834], [940, 834], [941, 833], [941, 832], [942, 831], [943, 830], [944, 829], [946, 828], [946, 827], [947, 826], [947, 824], [949, 822], [949, 820], [951, 818], [952, 817], [954, 819], [954, 820], [952, 822], [952, 824], [950, 826], [950, 828], [949, 829], [949, 830], [947, 832], [946, 832], [946, 833], [945, 834], [944, 834], [944, 835], [942, 837], [941, 837], [940, 838], [937, 838], [935, 840], [934, 840], [931, 843], [930, 843], [929, 844], [908, 844], [907, 843], [906, 843], [906, 844], [905, 845], [902, 845], [900, 843], [896, 843], [895, 844], [894, 844], [893, 843], [891, 843], [890, 842], [889, 842], [888, 841], [887, 841], [886, 840], [885, 841], [878, 841], [877, 840], [876, 841], [872, 841], [871, 841], [869, 839], [870, 838], [874, 838], [875, 837], [878, 837], [879, 838], [883, 838], [885, 836], [886, 837], [887, 837], [888, 838], [889, 838], [890, 839], [891, 839], [897, 840], [898, 839], [900, 839], [903, 841], [905, 839], [908, 839], [908, 832], [909, 832]]}, "center": {"173-258, T": [907, 818]}}, +{"id": 2518, "name": "Feastables", "description": "Feastables LLC is a food brand created by Jimmy Donaldson, known online as MrBeast. \nIn January 2022, Donaldson announced the creation of the company, which launched with its own brand of chocolate bars called \"MrBeast Bars\".", "links": {"website": ["https://en.wikipedia.org/wiki/Feastables", "https://feastables.com/"]}, "path": {"206-217": [[1298, -913], [1298, -902], [1340, -902], [1340, -913]], "218-258, T": [[1298, -913], [1298, -902], [1372, -902], [1371, -913]]}, "center": {"206-217": [1319, -907], "218-258, T": [1335, -907]}}, +{"id": 2519, "name": "Alaska and Hawaii", "description": "A drawing representing a map of Alaska and Hawaii", "links": {"website": ["https://en.wikipedia.org/wiki/List_of_islands_of_the_United_States"], "subreddit": ["AmericanFlagInPlace"]}, "path": {"176-258, T": [[848, 833], [850, 836], [851, 838], [849, 840], [848, 841], [844, 841], [843, 834], [843, 833], [841, 833], [840, 831], [838, 831], [837, 830], [836, 829], [833, 828], [833, 827], [832, 827], [828, 827], [819, 826], [819, 825], [802, 821], [801, 822], [800, 823], [799, 823], [798, 824], [792, 826], [788, 826], [784, 826], [783, 825], [784, 824], [788, 824], [791, 823], [798, 820], [799, 819], [800, 815], [798, 815], [797, 813], [799, 811], [797, 810], [796, 809], [795, 810], [793, 811], [792, 813], [791, 813], [790, 812], [790, 811], [792, 810], [792, 809], [791, 809], [790, 808], [791, 806], [792, 805], [794, 803], [796, 803], [797, 802], [796, 801], [792, 801], [792, 800], [791, 799], [791, 798], [793, 797], [795, 796], [796, 796], [797, 795], [796, 794], [795, 794], [794, 793], [794, 792], [793, 791], [795, 790], [797, 788], [800, 785], [802, 784], [803, 784], [804, 785], [807, 785], [810, 785], [810, 788], [812, 788], [813, 787], [815, 786], [816, 788], [817, 790], [817, 792], [817, 794], [818, 796], [818, 797], [819, 797], [819, 798], [820, 800], [820, 802], [819, 803], [818, 804], [817, 805], [816, 805], [817, 806], [818, 808], [820, 808], [820, 807], [823, 806], [826, 808], [831, 809], [832, 809], [838, 814], [839, 815], [836, 816], [835, 815], [830, 813], [828, 813], [829, 812], [829, 811], [828, 811], [827, 810], [826, 809], [825, 811], [822, 810], [820, 811], [819, 811], [819, 810], [818, 810], [816, 810], [816, 809], [816, 808], [815, 808], [815, 807], [814, 806], [813, 808], [812, 808], [811, 810], [809, 811], [807, 812], [807, 814], [807, 816], [806, 816], [805, 817], [803, 818], [802, 819], [803, 820], [820, 824], [820, 822], [822, 822], [824, 822], [824, 823], [828, 824], [833, 824], [836, 827], [838, 827], [841, 828], [842, 829], [844, 829], [847, 832]]}, "center": {"176-258, T": [807, 798]}}, +{"id": 2520, "name": "Blush", "description": "A nice random guy from Bavaria!", "links": {"website": ["https://www.twitch.tv/blushttv"]}, "path": {"225-258, T": [[-646, -969], [-626, -969], [-626, -965], [-646, -965]]}, "center": {"225-258, T": [-636, -967]}}, +{"id": 2521, "name": "Stegi and Domo", "description": "A reward for Stegi and Papaplatte (Domo) for Stegis nightwatch and defense of the German flag against an intruding Brazilian artwork.", "links": {"website": ["https://www.youtube.com/@byStegi", "https://www.youtube.com/@DomoPapaplatte"], "subreddit": ["placede"]}, "path": {"152-258, T": [[-397, -930], [-397, -917], [-399, -915], [-387, -914], [-387, -915], [-383, -915], [-383, -939], [-382, -940], [-381, -941], [-380, -940], [-378, -940], [-377, -941], [-377, -943], [-382, -956], [-391, -960], [-401, -956], [-403, -949], [-405, -943], [-404, -935], [-398, -933]]}, "center": {"152-258, T": [-391, -947]}}, +{"id": 2522, "name": "Danny Gonzalez's Nutcracker", "description": "This is a pixelized rendition of the nutcracker soldier that appears in the background of Danny Gonzalez's videos.", "links": {"subreddit": ["DannyGonzalez"]}, "path": {"163-165": [[-201, 575], [-197, 575], [-196, 576], [-196, 585], [-195, 585], [-195, 593], [-196, 594], [-196, 599], [-193, 599], [-193, 601], [-198, 602], [-204, 602], [-204, 599], [-202, 599], [-203, 586], [-202, 585], [-202, 575]], "172-258, T": [[-195, 576], [-188, 576], [-188, 583], [-187, 583], [-186, 584], [-187, 585], [-187, 596], [-188, 597], [-188, 600], [-192, 601], [-191, 596], [-192, 600], [-194, 601], [-196, 601], [-196, 576]]}, "center": {"163-165": [-199, 589], "172-258, T": [-191, 586]}}, +{"id": 2523, "name": "Perkele", "description": "A famous Finnish swearword.", "links": {"website": ["https://en.wikipedia.org/wiki/Perkele"]}, "path": {"227-258, T": [[53, -286], [87, -286], [87, -280], [53, -280]]}, "center": {"227-258, T": [70, -283]}}, +{"id": 2524, "name": "Wilhelm Tell", "description": "William Tell (German: Wilhelm Tell, pronounced [ˈvɪlhɛlm ˈtɛl] (listen); French: Guillaume Tell; Italian: Guglielmo Tell; Romansh: Guglielm Tell) is a folk hero of Switzerland. According to the legend, Tell was an expert mountain climber and marksman with a crossbow who assassinated Albrecht Gessler, a tyrannical reeve of the Austrian dukes of the House of Habsburg positioned in Altdorf, in the canton of Uri. Tell's defiance and tyrannicide encouraged the population to open rebellion and a pact against the foreign rulers with neighbouring Schwyz and Unterwalden, marking the foundation of the Swiss Confederacy. Tell was considered the father of the Swiss Confederacy.", "links": {"website": ["https://en.wikipedia.org/wiki/William_Tell"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"227-258, T": [[-549, 883], [-543, 885], [-539, 885], [-534, 882], [-540, 877], [-543, 877], [-549, 882]]}, "center": {"227-258, T": [-541, 881]}}, +{"id": 2525, "name": "Ayrton Senna's Helmet", "description": "Iconic helmet used by the brazilian F1 racer Ayrton Senna. During his incredible ten-year career, Ayrton Senna achieved 41 wins, 80 podiums, and 65 pole positions. Along with that, he managed to secure three World Drivers' Championships against some very tough rivals such as Alain Prost and Nigel Mansell", "links": {"website": ["https://en.wikipedia.org/wiki/Ayrton_Senna", "https://senna.com/en/a-historia-do-desenho-do-capacete-de-ayrton-senna-o-mais-famoso-do-automobilismo/"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"230-258, T": [[171, 306], [172, 305], [172, 300], [171, 299], [170, 298], [169, 297], [164, 297], [163, 298], [162, 298], [162, 299], [161, 300], [161, 303], [162, 304], [162, 305], [163, 306]]}, "center": {"230-258, T": [167, 302]}}, +{"id": 2526, "name": "Nijika's Dorito", "description": "Nijika's ahoge is often called a Dorito since the triangular design is similar to those of Dorito snack.\n\nIt is spinnable by her mind power (refer Chapter 65 or the example in Episode 11) and is rumored capable to smack any living thing too", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"227-258, T": [[1350, 189], [1364, 189], [1363, 202], [1357, 196], [1358, 195]]}, "center": {"227-258, T": [1360, 192]}}, +{"id": 2527, "name": "Bochum University of Applied Sciences", "description": "Hochschule Bochum is a University of Applied Sciences. It is located in Bochum, Germany.", "links": {"website": ["https://de.wikipedia.org/wiki/Hochschule_Bochum", "https://www.hochschule-bochum.de/en/"]}, "path": {"207-258, T": [[-206, -57], [-206, -76], [-181, -76], [-181, -57]]}, "center": {"207-258, T": [-193, -66]}}, {"id": 2528, "name": "machu picchu", "description": "Machu Picchu is a 15th-century Inca citadel located in the Eastern Cordillera of southern Peru.\nMachu Picchu was declared a Peruvian Historic Sanctuary in 1982 and a UNESCO World Heritage Site in 1983. In 2007, Machu Picchu was voted one of the New Seven Wonders of the World in a worldwide internet poll.", "links": {"website": ["https://en.wikipedia.org/wiki/Machu_Picchu", "https://www.machupicchu.gob.pe/?lang=en"]}, "path": {"63-149": [[-191, 78], [-183, 73], [-178, 78], [-174, 75], [-173, 70], [-169, 64], [-168, 63], [-165, 65], [-160, 72], [-154, 76], [-149, 77], [-145, 79], [-142, 82], [-142, 96], [-191, 97], [-191, 79]], "150-243": [[-191, 78], [-183, 73], [-178, 78], [-174, 75], [-173, 70], [-169, 64], [-168, 63], [-165, 65], [-160, 72], [-154, 76], [-149, 77], [-145, 79], [-143, 84], [-190, 84]]}, "center": {"63-149": [-165, 84], "150-243": [-166, 76]}}, -{"id": 2529, "name": "Moominpappa", "description": "Moominpappa is a character in the Finnish Moomin series. He is the father of the main protagonist, the Moomintroll.", "links": {"website": ["https://www.moomin.com/fi/hahmot/muumipappa/"]}, "path": {"227-258": [[54, -309], [43, -309], [43, -310], [43, -315], [41, -317], [42, -319], [42, -323], [44, -323], [44, -329], [51, -329], [51, -323], [53, -323], [52, -321], [52, -319], [54, -317], [54, -316], [55, -316], [55, -312], [54, -312], [54, -309], [43, -309]]}, "center": {"227-258": [49, -315]}}, -{"id": 2530, "name": "First Logo", "description": "FIRST is a global community of elementary through high school students dedicated to Robotics and STEM Education through mentor-based programs. Every year, students are given a challenge and must design robots to compete in the challenge given. It is split into 3 age groups, FIRST Robotics Competition, (FRC) FIRST Tech Competition, and FIRST Lego League (FLL).\n \nGracious Professionalism is a core FIRST philosophy that encourages high-quality work, emphasizes the value of others, and respects individuals and the community.", "links": {"website": ["https://www.firstinspires.org/"], "subreddit": ["frc"], "discord": ["frc"]}, "path": {"192-258": [[-1176, 86], [-1114, 86], [-1114, 112], [-1104, 112], [-1105, 163], [-1129, 163], [-1129, 155], [-1176, 155]]}, "center": {"192-258": [-1144, 123]}}, -{"id": 2531, "name": "Subaru Duck", "description": "A depiction of Hololive 2nd Generation Talent Oozora Subaru as a duck, a common way Subaru is depicted in the Hololive community. Built by the hololive community (Vtubers Place Discord)", "links": {}, "path": {"227-258": [[-645, -303], [-640, -303], [-640, -307], [-640, -308], [-637, -308], [-637, -309], [-636, -309], [-636, -310], [-637, -310], [-637, -311], [-638, -311], [-638, -314], [-639, -314], [-639, -315], [-641, -315], [-641, -316], [-645, -316], [-645, -315], [-646, -315], [-646, -314], [-647, -314], [-647, -310], [-647, -309], [-648, -309], [-648, -308], [-649, -308], [-649, -307], [-648, -307], [-645, -307], [-645, -303], [-640, -303], [-643, -303]]}, "center": {"227-258": [-643, -311]}}, -{"id": 2532, "name": "Thunderdome", "description": "Thunderdome is a famous concept in hardcore techno and gabber music that was mainly used for a series of parties and CD-albums. It was organized by the Dutch entertainment company ID&T.", "links": {"website": ["https://thunderdome.com"], "subreddit": ["PlaceNL"], "discord": ["placenl"], "wiki": ["Thunderdome"]}, "path": {"216-258": [[-1436, -499], [-1436, -503], [-1440, -503], [-1445, -505], [-1452, -512], [-1454, -517], [-1454, -524], [-1458, -527], [-1459, -534], [-1461, -536], [-1462, -535], [-1465, -538], [-1465, -541], [-1463, -543], [-1460, -543], [-1459, -541], [-1460, -540], [-1459, -537], [-1457, -536], [-1456, -536], [-1454, -537], [-1451, -532], [-1449, -532], [-1444, -536], [-1442, -537], [-1441, -538], [-1440, -539], [-1441, -540], [-1441, -541], [-1438, -543], [-1436, -545], [-1434, -543], [-1432, -544], [-1431, -545], [-1432, -546], [-1432, -547], [-1431, -548], [-1429, -545], [-1428, -543], [-1431, -538], [-1426, -536], [-1424, -533], [-1421, -533], [-1419, -535], [-1416, -535], [-1414, -537], [-1413, -536], [-1412, -536], [-1409, -539], [-1409, -540], [-1407, -541], [-1405, -541], [-1404, -539], [-1407, -534], [-1408, -534], [-1409, -535], [-1413, -531], [-1412, -528], [-1417, -523], [-1417, -518], [-1419, -512], [-1428, -503], [-1431, -503], [-1433, -502]]}, "center": {"216-258": [-1436, -520]}}, -{"id": 2533, "name": "Eileen the Crow", "description": "This pixel art features a character from the videogame Bloodborne, a dystopian gothic/lovecraftian action RPG developed by Fromsoftware in coalition with Japan Studio and Sony, and released in 2015 for the PlayStation 4. \n\nThis artwork is a chibi styled rendition of Eileen the Crow, a popular character due to her confident personality and peculiar crow-like attire.\n\nThe Hollow Knight community assisted on the finalization of this artwork.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/03/raven-hunter.html?m=1"], "subreddit": ["bloodborne"], "discord": ["Pfcy2mfw"]}, "path": {"227-258": [[1285, -912], [1298, -912], [1298, -895], [1285, -895]]}, "center": {"227-258": [1292, -903]}}, -{"id": 2534, "name": "Postauto", "description": "PostAuto Switzerland, PostBus Ltd. (known as PostAuto Schweiz in Swiss Standard German (PostAuto AG), CarPostal Suisse in Swiss French (CarPostal S.A.), AutoPostale Svizzera in Swiss Italian (AutoPostale S.A.), and AutoDaPosta Svizra in Romansh (AutoDaPosta S.A.) is a subsidiary company of the Swiss Post, which provides regional and rural bus services throughout Switzerland, and also in France, Germany, and Liechtenstein.", "links": {"website": ["https://en.wikipedia.org/wiki/PostBus_Switzerland"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"227-258": [[1499, -695], [1443, -695], [1443, -719], [1499, -719]]}, "center": {"227-258": [1471, -707]}}, -{"id": 2535, "name": "M1 Abrams", "description": "The M1 Abrams is a third-generation American main battle tank designed by Chrysler Defense and named for General Creighton Abrams", "links": {"website": ["https://en.wikipedia.org/wiki/M1_Abrams"]}, "path": {"227-258": [[-184, 157], [-184, 160], [-183, 160], [-183, 161], [-182, 161], [-182, 162], [-181, 162], [-181, 163], [-158, 163], [-158, 162], [-157, 162], [-157, 161], [-156, 161], [-156, 160], [-155, 160], [-155, 158], [-158, 158], [-158, 157], [-159, 157], [-159, 156], [-161, 156], [-161, 155], [-161, 154], [-162, 154], [-162, 153], [-164, 153], [-164, 152], [-166, 152], [-166, 153], [-175, 153], [-175, 152], [-175, 153], [-179, 153], [-179, 154], [-179, 155], [-181, 155], [-181, 156], [-183, 156], [-178, 155], [-178, 156], [-178, 154], [-178, 153], [-176, 153], [-178, 153], [-178, 150], [-178, 153], [-162, 154], [-161, 154], [-156, 154], [-162, 154], [-178, 153]]}, "center": {"227-258": [-173, 158]}}, -{"id": 2536, "name": "Konata Izumi (Lucky Star)", "description": "A forever unfinished pixel artwork of Konata Izumi, one of the main protagonists of the Lucky Star anime. Half of her face isn't built as it overlaps the Moroccan flag.", "links": {"subreddit": ["luckystar"], "discord": ["aKgmG2UW2M"]}, "path": {"227-258": [[692, 706], [694, 706], [694, 708], [692, 708], [692, 709], [694, 709], [694, 722], [693, 722], [693, 723], [692, 723], [693, 723], [693, 727], [692, 727], [692, 728], [683, 728], [683, 724], [684, 724], [684, 709], [686, 709], [686, 708], [686, 707]]}, "center": {"227-258": [689, 717]}}, -{"id": 2537, "name": "Lucia", "description": "BPL-01GR, code name Plume, She is the Leader of Gray Raven. She is a character belonging to the game called \"Punishing: Gray Raven\" which is a mobile action role-playing game developed and published by Kuro Game.", "links": {"website": ["https://pgr.kurogame.net/"], "subreddit": ["PunishingGrayRaven"], "discord": ["pgr"]}, "path": {"227-258": [[-731, 176], [-731, 169], [-740, 169], [-740, 172], [-742, 172], [-742, 181], [-738, 181], [-738, 185], [-733, 185], [-733, 180], [-731, 180]]}, "center": {"227-258": [-736, 176]}}, +{"id": 2529, "name": "Moominpappa", "description": "Moominpappa is a character in the Finnish Moomin series. He is the father of the main protagonist, the Moomintroll.", "links": {"website": ["https://www.moomin.com/fi/hahmot/muumipappa/"]}, "path": {"227-258, T": [[54, -309], [43, -309], [43, -310], [43, -315], [41, -317], [42, -319], [42, -323], [44, -323], [44, -329], [51, -329], [51, -323], [53, -323], [52, -321], [52, -319], [54, -317], [54, -316], [55, -316], [55, -312], [54, -312], [54, -309], [43, -309]]}, "center": {"227-258, T": [49, -315]}}, +{"id": 2530, "name": "First Logo", "description": "FIRST is a global community of elementary through high school students dedicated to Robotics and STEM Education through mentor-based programs. Every year, students are given a challenge and must design robots to compete in the challenge given. It is split into 3 age groups, FIRST Robotics Competition, (FRC) FIRST Tech Competition, and FIRST Lego League (FLL).\n \nGracious Professionalism is a core FIRST philosophy that encourages high-quality work, emphasizes the value of others, and respects individuals and the community.", "links": {"website": ["https://www.firstinspires.org/"], "subreddit": ["frc"], "discord": ["frc"]}, "path": {"192-258, T": [[-1176, 86], [-1114, 86], [-1114, 112], [-1104, 112], [-1105, 163], [-1129, 163], [-1129, 155], [-1176, 155]]}, "center": {"192-258, T": [-1144, 123]}}, +{"id": 2531, "name": "Subaru Duck", "description": "A depiction of Hololive 2nd Generation Talent Oozora Subaru as a duck, a common way Subaru is depicted in the Hololive community. Built by the hololive community (Vtubers Place Discord)", "links": {}, "path": {"227-258, T": [[-645, -303], [-640, -303], [-640, -307], [-640, -308], [-637, -308], [-637, -309], [-636, -309], [-636, -310], [-637, -310], [-637, -311], [-638, -311], [-638, -314], [-639, -314], [-639, -315], [-641, -315], [-641, -316], [-645, -316], [-645, -315], [-646, -315], [-646, -314], [-647, -314], [-647, -310], [-647, -309], [-648, -309], [-648, -308], [-649, -308], [-649, -307], [-648, -307], [-645, -307], [-645, -303], [-640, -303], [-643, -303]]}, "center": {"227-258, T": [-643, -311]}}, +{"id": 2532, "name": "Thunderdome", "description": "Thunderdome is a famous concept in hardcore techno and gabber music that was mainly used for a series of parties and CD-albums. It was organized by the Dutch entertainment company ID&T.", "links": {"website": ["https://thunderdome.com"], "subreddit": ["PlaceNL"], "discord": ["placenl"], "wiki": ["Thunderdome"]}, "path": {"216-258, T": [[-1436, -499], [-1436, -503], [-1440, -503], [-1445, -505], [-1452, -512], [-1454, -517], [-1454, -524], [-1458, -527], [-1459, -534], [-1461, -536], [-1462, -535], [-1465, -538], [-1465, -541], [-1463, -543], [-1460, -543], [-1459, -541], [-1460, -540], [-1459, -537], [-1457, -536], [-1456, -536], [-1454, -537], [-1451, -532], [-1449, -532], [-1444, -536], [-1442, -537], [-1441, -538], [-1440, -539], [-1441, -540], [-1441, -541], [-1438, -543], [-1436, -545], [-1434, -543], [-1432, -544], [-1431, -545], [-1432, -546], [-1432, -547], [-1431, -548], [-1429, -545], [-1428, -543], [-1431, -538], [-1426, -536], [-1424, -533], [-1421, -533], [-1419, -535], [-1416, -535], [-1414, -537], [-1413, -536], [-1412, -536], [-1409, -539], [-1409, -540], [-1407, -541], [-1405, -541], [-1404, -539], [-1407, -534], [-1408, -534], [-1409, -535], [-1413, -531], [-1412, -528], [-1417, -523], [-1417, -518], [-1419, -512], [-1428, -503], [-1431, -503], [-1433, -502]]}, "center": {"216-258, T": [-1436, -520]}}, +{"id": 2533, "name": "Eileen the Crow", "description": "This pixel art features a character from the videogame Bloodborne, a dystopian gothic/lovecraftian action RPG developed by Fromsoftware in coalition with Japan Studio and Sony, and released in 2015 for the PlayStation 4. \n\nThis artwork is a chibi styled rendition of Eileen the Crow, a popular character due to her confident personality and peculiar crow-like attire.\n\nThe Hollow Knight community assisted on the finalization of this artwork.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/03/raven-hunter.html?m=1"], "subreddit": ["bloodborne"], "discord": ["Pfcy2mfw"]}, "path": {"227-258, T": [[1285, -912], [1298, -912], [1298, -895], [1285, -895]]}, "center": {"227-258, T": [1292, -903]}}, +{"id": 2534, "name": "Postauto", "description": "PostAuto Switzerland, PostBus Ltd. (known as PostAuto Schweiz in Swiss Standard German (PostAuto AG), CarPostal Suisse in Swiss French (CarPostal S.A.), AutoPostale Svizzera in Swiss Italian (AutoPostale S.A.), and AutoDaPosta Svizra in Romansh (AutoDaPosta S.A.) is a subsidiary company of the Swiss Post, which provides regional and rural bus services throughout Switzerland, and also in France, Germany, and Liechtenstein.", "links": {"website": ["https://en.wikipedia.org/wiki/PostBus_Switzerland"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"227-258, T": [[1499, -695], [1443, -695], [1443, -719], [1499, -719]]}, "center": {"227-258, T": [1471, -707]}}, +{"id": 2535, "name": "M1 Abrams", "description": "The M1 Abrams is a third-generation American main battle tank designed by Chrysler Defense and named for General Creighton Abrams", "links": {"website": ["https://en.wikipedia.org/wiki/M1_Abrams"]}, "path": {"227-258, T": [[-184, 157], [-184, 160], [-183, 160], [-183, 161], [-182, 161], [-182, 162], [-181, 162], [-181, 163], [-158, 163], [-158, 162], [-157, 162], [-157, 161], [-156, 161], [-156, 160], [-155, 160], [-155, 158], [-158, 158], [-158, 157], [-159, 157], [-159, 156], [-161, 156], [-161, 155], [-161, 154], [-162, 154], [-162, 153], [-164, 153], [-164, 152], [-166, 152], [-166, 153], [-175, 153], [-175, 152], [-175, 153], [-179, 153], [-179, 154], [-179, 155], [-181, 155], [-181, 156], [-183, 156], [-178, 155], [-178, 156], [-178, 154], [-178, 153], [-176, 153], [-178, 153], [-178, 150], [-178, 153], [-162, 154], [-161, 154], [-156, 154], [-162, 154], [-178, 153]]}, "center": {"227-258, T": [-173, 158]}}, +{"id": 2536, "name": "Konata Izumi (Lucky Star)", "description": "A forever unfinished pixel artwork of Konata Izumi, one of the main protagonists of the Lucky Star anime. Half of her face isn't built as it overlaps the Moroccan flag.", "links": {"subreddit": ["luckystar"], "discord": ["aKgmG2UW2M"]}, "path": {"227-258, T": [[692, 706], [694, 706], [694, 708], [692, 708], [692, 709], [694, 709], [694, 722], [693, 722], [693, 723], [692, 723], [693, 723], [693, 727], [692, 727], [692, 728], [683, 728], [683, 724], [684, 724], [684, 709], [686, 709], [686, 708], [686, 707]]}, "center": {"227-258, T": [689, 717]}}, +{"id": 2537, "name": "Lucia", "description": "BPL-01GR, code name Plume, She is the Leader of Gray Raven. She is a character belonging to the game called \"Punishing: Gray Raven\" which is a mobile action role-playing game developed and published by Kuro Game.", "links": {"website": ["https://pgr.kurogame.net/"], "subreddit": ["PunishingGrayRaven"], "discord": ["pgr"]}, "path": {"227-258, T": [[-731, 176], [-731, 169], [-740, 169], [-740, 172], [-742, 172], [-742, 181], [-738, 181], [-738, 185], [-733, 185], [-733, 180], [-731, 180]]}, "center": {"227-258, T": [-736, 176]}}, {"id": 2538, "name": "HSV", "description": "The HSV (Hamburger Sport-Verein) is a German sports club based in Hamburg. It is commonly known for its football (soccer) team, which competes in the top tier of German football, the Bundesliga. Founded in 1887, the club has a rich history and a large fan base. The team plays its home matches at the Volksparkstadion in Hamburg. The colors associated with HSV are blue, white, and black.", "links": {"website": ["https://www.hsv.de"], "subreddit": ["hsv"], "discord": ["hsv"]}, "path": {"208-247": [[-710, 865], [-678, 865], [-678, 887], [-710, 887]]}, "center": {"208-247": [-694, 876]}}, -{"id": 2539, "name": "The Void", "description": "", "links": {"subreddit": ["theswarm"], "discord": ["circularswarm"]}, "path": {"227-258": [[1041, 187], [1284, 186], [1274, 221], [1247, 223], [1233, 312], [1205, 315], [1203, 362], [1203, 386], [1227, 362], [1226, 412], [1045, 424], [1044, 379], [999, 381], [1001, 339], [1040, 303], [1053, 284], [1084, 281], [1084, 246], [1016, 246]]}, "center": {"227-258": [1128, 342]}}, -{"id": 2540, "name": "Generation Loss", "description": "Generation Loss is a horror series created by content creator Ranboo.\nGeneration 1: The Social Experiments was a live experience streamed on May 24, 26 and 28, 2023.", "links": {"website": ["https://generationloss.fandom.com/wiki/Generation_Loss_Wiki"], "subreddit": ["genloss"], "discord": ["ranboo"]}, "path": {"227-258": [[382, 500], [438, 500], [438, 554], [381, 554]]}, "center": {"227-258": [410, 527]}}, -{"id": 2541, "name": "Shlo7 Emote of Shlorox", "description": "Shlo7 Emote of Shlorox", "links": {"website": ["https://www.twitch.tv/shlorox"], "subreddit": ["shlorox"], "discord": ["shlorox"]}, "path": {"227-258": [[203, -672], [172, -672], [173, -628], [203, -628]]}, "center": {"227-258": [188, -650]}}, -{"id": 2542, "name": "Progressbar95", "description": "Progressbar95 is a game designed to invoke nostalgia. It was made by Moldovan developer Igor Uduslivii (also known as icoeye) and was published in 2019 by German company Spooky House Studios UG. Progressbar95 includes OSes largely inspired by existing Windows and macOS systems. The goal of the game is to fill the \"progress bar\" with blue segments while avoiding the orange and red ones. After completing levels, you get upgrades that improves your performance and after a certain goal, you unlock other OSes, which get harder each time.", "links": {"website": ["https://icoeye.com/", "https://www.spookyhousestudios.com/"], "subreddit": ["Progressbar95"], "discord": ["pcGE32TDsw"]}, "path": {"225-258": [[-650, 972], [-651, 972], [-651, 998], [-624, 998], [-624, 973]]}, "center": {"225-258": [-638, 985]}}, +{"id": 2539, "name": "The Void", "description": "", "links": {"subreddit": ["theswarm"], "discord": ["circularswarm"]}, "path": {"227-258, T": [[1041, 187], [1284, 186], [1274, 221], [1247, 223], [1233, 312], [1205, 315], [1203, 362], [1203, 386], [1227, 362], [1226, 412], [1045, 424], [1044, 379], [999, 381], [1001, 339], [1040, 303], [1053, 284], [1084, 281], [1084, 246], [1016, 246]]}, "center": {"227-258, T": [1128, 342]}}, +{"id": 2540, "name": "Generation Loss", "description": "Generation Loss is a horror series created by content creator Ranboo.\nGeneration 1: The Social Experiments was a live experience streamed on May 24, 26 and 28, 2023.", "links": {"website": ["https://generationloss.fandom.com/wiki/Generation_Loss_Wiki"], "subreddit": ["genloss"], "discord": ["ranboo"]}, "path": {"227-258, T": [[382, 500], [438, 500], [438, 554], [381, 554]]}, "center": {"227-258, T": [410, 527]}}, +{"id": 2541, "name": "Shlo7 Emote of Shlorox", "description": "Shlo7 Emote of Shlorox", "links": {"website": ["https://www.twitch.tv/shlorox"], "subreddit": ["shlorox"], "discord": ["shlorox"]}, "path": {"227-258, T": [[203, -672], [172, -672], [173, -628], [203, -628]]}, "center": {"227-258, T": [188, -650]}}, +{"id": 2542, "name": "Progressbar95", "description": "Progressbar95 is a game designed to invoke nostalgia. It was made by Moldovan developer Igor Uduslivii (also known as icoeye) and was published in 2019 by German company Spooky House Studios UG. Progressbar95 includes OSes largely inspired by existing Windows and macOS systems. The goal of the game is to fill the \"progress bar\" with blue segments while avoiding the orange and red ones. After completing levels, you get upgrades that improves your performance and after a certain goal, you unlock other OSes, which get harder each time.", "links": {"website": ["https://icoeye.com/", "https://www.spookyhousestudios.com/"], "subreddit": ["Progressbar95"], "discord": ["pcGE32TDsw"]}, "path": {"225-258, T": [[-650, 972], [-651, 972], [-651, 998], [-624, 998], [-624, 973]]}, "center": {"225-258, T": [-638, 985]}}, {"id": 2543, "name": "TF2 Weed Soldier", "description": "An image of the Team Fortress 2 Soldier with his mouth agape and bloodshot eyes, surrounded by weed leaves. This image is used frequently by TF2 YouTuber Chimparoncito, who arranged this live on stream.", "links": {"website": ["https://www.youtube.com/watch?v=WPt7U__XbPc", "https://www.youtube.com/watch?v=KVFclEhEsmM"]}, "path": {"204-247": [[-1033, -966], [-1033, -982], [-1034, -982], [-1035, -990], [-1037, -990], [-1037, -993], [-1035, -994], [-1035, -998], [-1030, -998], [-1028, -1000], [-1002, -1000], [-1001, -968], [-1004, -967], [-1004, -968], [-1002, -969], [-1003, -970], [-1003, -971], [-1004, -971], [-1006, -971], [-1007, -970], [-1008, -969], [-1008, -967]]}, "center": {"204-247": [-1017, -983]}}, -{"id": 2544, "name": "quaso", "description": "Chibi Pixel Art of the (in)famous Ganyu Cocogoat Plush, a scuffed plush that was intended to be of the character Ganyu from Genshin Impact, but instead in \"goat\" (or Qilin) form. This plush has since become a meme in the community, and was eventually named \"Quaso\" due to its frequent use in \"Quaso\" memes.\n\nIncluded here are also \"Quaso\" versions for other characters, such as Nilou (also from Genshin Impact), Yae miko (in collaboration with r/bocchitherock). There is also quasos referencing r/okbuddygenshin characters such as \"balls\" a photo realistic version of keaya and a fischl quaso which is the representation of one of the greatest okbg users \"u/Drago_288\" known for their famous \"you need kok.\" an inside joke between buddies.", "links": {"subreddit": ["okbuddygenshin"]}, "path": {"227-258": [[-97, 385], [-97, 365], [-89, 366], [-89, 385], [-126, 386], [-135, 397], [-135, 403], [-153, 403], [-153, 398], [-161, 397], [-161, 390], [-153, 390], [-152, 397], [-136, 396], [-136, 383], [-129, 384], [-125, 386]]}, "center": {"227-258": [-93, 381]}}, -{"id": 2545, "name": "Little versions of the Stegi & Papaplatte mascots", "description": "These two are the mascots of the german streamers Stegi and Papaplatte who helped defend the German flag. So that is how they earned a spot on the flag because the Germans wanted to thank them.", "links": {"website": ["https://youtube.fandom.com/de/wiki/ByStegi", "https://youtube.fandom.com/de/wiki/Papaplatte"], "subreddit": ["Stegi", "Papaplatte"]}, "path": {"166-258": [[-391, -939], [-391, -943], [-383, -945], [-383, -914], [-404, -912], [-398, -917], [-398, -936], [-404, -933], [-404, -944], [-400, -957], [-390, -960], [-381, -955], [-380, -950], [-376, -942], [-382, -938], [-382, -913]]}, "center": {"166-258": [-392, -951]}}, -{"id": 2547, "name": "Alpensteinbock", "description": "Der Alpensteinbock (Capra ibex) oder Gemeiner Steinbock – zur Abgrenzung von anderen Steinböcken – ist eine in den Alpen verbreitete Art der Ziegen.", "links": {"website": ["https://de.wikipedia.org/wiki/Alpensteinbock"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"232-258": [[-547, 784], [-554, 778], [-541, 764], [-551, 755], [-547, 751], [-529, 756], [-529, 762], [-535, 772], [-538, 781], [-548, 784]]}, "center": {"232-258": [-543, 775]}}, -{"id": 2548, "name": "Helsinki Cathedral", "description": "Helsinki Cathedral is a church located in the center of Helsinki, at the Senate Square. It is a distinctive landmark of Helsinki, the capital of Finland. It is also a popular tourist destination.", "links": {"website": ["https://www.helsinginseurakunnat.fi/en/index/helsingintuomiokirkko.html.stx"]}, "path": {"227-258": [[135, -309], [84, -309], [84, -310], [87, -313], [87, -323], [95, -323], [95, -324], [93, -326], [93, -327], [94, -328], [95, -329], [97, -329], [98, -330], [98, -337], [99, -337], [99, -339], [100, -339], [100, -349], [123, -349], [123, -345], [119, -345], [119, -339], [120, -339], [120, -337], [121, -337], [121, -330], [122, -329], [124, -329], [125, -328], [126, -327], [126, -326], [124, -324], [124, -323], [131, -323], [132, -322], [133, -321], [132, -320], [132, -313], [133, -312], [135, -311], [134, -311], [135, -310], [135, -309], [84, -309]]}, "center": {"227-258": [109, -322]}}, -{"id": 2550, "name": "Hunter's Mark", "description": "This pixel art features a symbol from the videogame Bloodborne, a dystopian gothic/lovecraftian action RPG developed by Fromsoftware in coalition with Japan Studio and Sony, and released in 2015 for the PlayStation 4. \n\nThe pixel art features the Hunter's Mark, a well known symbol in the game which represents the player's faction.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/03/hunter.html?m=1"], "subreddit": ["bloodborne"], "discord": ["Pfcy2mfw"]}, "path": {"227-258": [[863, 11], [860, 1], [857, 11]]}, "center": {"227-258": [860, 9]}}, -{"id": 2551, "name": "Minä", "description": "Minä is the playable character in the Finnish video game Noita. Other names for Minä are \"Noita\" and \"Knower to be\".", "links": {"website": ["https://noita.fandom.com/wiki/Minä"], "subreddit": ["noita"], "discord": ["noita"]}, "path": {"227-258": [[93, -322], [87, -322], [87, -324], [88, -324], [88, -326], [89, -326], [89, -327], [87, -327], [87, -332], [88, -332], [88, -333], [89, -333], [89, -337], [88, -337], [88, -340], [89, -340], [94, -340], [94, -337], [93, -337], [93, -334], [94, -334], [94, -328], [94, -327], [93, -327]]}, "center": {"227-258": [91, -330]}}, -{"id": 2553, "name": "johnny razor YouTube shorts clone arg creator", "description": "johnny razor is a YouTube shorts creator with 1.14M subscribers and with a few others he has created something called the \"clone vpn shorts arg", "links": {"website": ["https://www.youtube.com/@JonnyRaZeR/about"], "subreddit": ["JonnyRaZeR"]}, "path": {"227-258": [[1169, 513], [1171, 560], [1231, 530], [1230, 519], [1208, 517]]}, "center": {"227-258": [1188, 532]}}, -{"id": 2554, "name": "Laplus Darkness", "description": "A Virtual Youtuber from hololive production, belongs to hololive JP Generation 6 (holoX). Her shortened name is La", "links": {"subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"227-258": [[-586, -326], [-576, -326], [-576, -322], [-586, -322]]}, "center": {"227-258": [-581, -324]}}, +{"id": 2544, "name": "quaso", "description": "Chibi Pixel Art of the (in)famous Ganyu Cocogoat Plush, a scuffed plush that was intended to be of the character Ganyu from Genshin Impact, but instead in \"goat\" (or Qilin) form. This plush has since become a meme in the community, and was eventually named \"Quaso\" due to its frequent use in \"Quaso\" memes.\n\nIncluded here are also \"Quaso\" versions for other characters, such as Nilou (also from Genshin Impact), Yae miko (in collaboration with r/bocchitherock). There is also quasos referencing r/okbuddygenshin characters such as \"balls\" a photo realistic version of keaya and a fischl quaso which is the representation of one of the greatest okbg users \"u/Drago_288\" known for their famous \"you need kok.\" an inside joke between buddies.", "links": {"subreddit": ["okbuddygenshin"]}, "path": {"227-258, T": [[-97, 385], [-97, 365], [-89, 366], [-89, 385], [-126, 386], [-135, 397], [-135, 403], [-153, 403], [-153, 398], [-161, 397], [-161, 390], [-153, 390], [-152, 397], [-136, 396], [-136, 383], [-129, 384], [-125, 386]]}, "center": {"227-258, T": [-93, 381]}}, +{"id": 2545, "name": "Little versions of the Stegi & Papaplatte mascots", "description": "These two are the mascots of the german streamers Stegi and Papaplatte who helped defend the German flag. So that is how they earned a spot on the flag because the Germans wanted to thank them.", "links": {"website": ["https://youtube.fandom.com/de/wiki/ByStegi", "https://youtube.fandom.com/de/wiki/Papaplatte"], "subreddit": ["Stegi", "Papaplatte"]}, "path": {"166-258, T": [[-391, -939], [-391, -943], [-383, -945], [-383, -914], [-404, -912], [-398, -917], [-398, -936], [-404, -933], [-404, -944], [-400, -957], [-390, -960], [-381, -955], [-380, -950], [-376, -942], [-382, -938], [-382, -913]]}, "center": {"166-258, T": [-392, -951]}}, +{"id": 2547, "name": "Alpensteinbock", "description": "Der Alpensteinbock (Capra ibex) oder Gemeiner Steinbock – zur Abgrenzung von anderen Steinböcken – ist eine in den Alpen verbreitete Art der Ziegen.", "links": {"website": ["https://de.wikipedia.org/wiki/Alpensteinbock"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"232-258, T": [[-547, 784], [-554, 778], [-541, 764], [-551, 755], [-547, 751], [-529, 756], [-529, 762], [-535, 772], [-538, 781], [-548, 784]]}, "center": {"232-258, T": [-543, 775]}}, +{"id": 2548, "name": "Helsinki Cathedral", "description": "Helsinki Cathedral is a church located in the center of Helsinki, at the Senate Square. It is a distinctive landmark of Helsinki, the capital of Finland. It is also a popular tourist destination.", "links": {"website": ["https://www.helsinginseurakunnat.fi/en/index/helsingintuomiokirkko.html.stx"]}, "path": {"227-258, T": [[135, -309], [84, -309], [84, -310], [87, -313], [87, -323], [95, -323], [95, -324], [93, -326], [93, -327], [94, -328], [95, -329], [97, -329], [98, -330], [98, -337], [99, -337], [99, -339], [100, -339], [100, -349], [123, -349], [123, -345], [119, -345], [119, -339], [120, -339], [120, -337], [121, -337], [121, -330], [122, -329], [124, -329], [125, -328], [126, -327], [126, -326], [124, -324], [124, -323], [131, -323], [132, -322], [133, -321], [132, -320], [132, -313], [133, -312], [135, -311], [134, -311], [135, -310], [135, -309], [84, -309]]}, "center": {"227-258, T": [109, -322]}}, +{"id": 2550, "name": "Hunter's Mark", "description": "This pixel art features a symbol from the videogame Bloodborne, a dystopian gothic/lovecraftian action RPG developed by Fromsoftware in coalition with Japan Studio and Sony, and released in 2015 for the PlayStation 4. \n\nThe pixel art features the Hunter's Mark, a well known symbol in the game which represents the player's faction.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/03/hunter.html?m=1"], "subreddit": ["bloodborne"], "discord": ["Pfcy2mfw"]}, "path": {"227-258, T": [[863, 11], [860, 1], [857, 11]]}, "center": {"227-258, T": [860, 9]}}, +{"id": 2551, "name": "Minä", "description": "Minä is the playable character in the Finnish video game Noita. Other names for Minä are \"Noita\" and \"Knower to be\".", "links": {"website": ["https://noita.fandom.com/wiki/Minä"], "subreddit": ["noita"], "discord": ["noita"]}, "path": {"227-258, T": [[93, -322], [87, -322], [87, -324], [88, -324], [88, -326], [89, -326], [89, -327], [87, -327], [87, -332], [88, -332], [88, -333], [89, -333], [89, -337], [88, -337], [88, -340], [89, -340], [94, -340], [94, -337], [93, -337], [93, -334], [94, -334], [94, -328], [94, -327], [93, -327]]}, "center": {"227-258, T": [91, -330]}}, +{"id": 2553, "name": "johnny razor YouTube shorts clone arg creator", "description": "johnny razor is a YouTube shorts creator with 1.14M subscribers and with a few others he has created something called the \"clone vpn shorts arg", "links": {"website": ["https://www.youtube.com/@JonnyRaZeR/about"], "subreddit": ["JonnyRaZeR"]}, "path": {"227-258, T": [[1169, 513], [1171, 560], [1231, 530], [1230, 519], [1208, 517]]}, "center": {"227-258, T": [1188, 532]}}, +{"id": 2554, "name": "Laplus Darkness", "description": "A Virtual Youtuber from hololive production, belongs to hololive JP Generation 6 (holoX). Her shortened name is La", "links": {"subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"227-258, T": [[-586, -326], [-576, -326], [-576, -322], [-586, -322]]}, "center": {"227-258, T": [-581, -324]}}, {"id": 2555, "name": "Buff Soldier (Tick Tock)", "description": "Exaggerated pectoral muscles to accompany the Soldier above, which gained popularity in a video depicting the Team Fortress 2 classes as incredibly buff, all with Joji's \"Tick Tock\" in the background. Also done live on Chimparoncito's stream.", "links": {}, "path": {"219-244": [[-1029, -966], [-1028, -967], [-1026, -967], [-1026, -965], [-1035, -964], [-1035, -960], [-1032, -960], [-1030, -959], [-1029, -956], [-1030, -951], [-1027, -949], [-1025, -945], [-1022, -942], [-1014, -942], [-1009, -948], [-1010, -951], [-1014, -956], [-1012, -956], [-1011, -957], [-1011, -959], [-1014, -962], [-1014, -966], [-1012, -967], [-1011, -965], [-1010, -963], [-1008, -963], [-1008, -970], [-1007, -970], [-1005, -971], [-1008, -973], [-1008, -975], [-1009, -975], [-1013, -970], [-1015, -969], [-1022, -969], [-1023, -970], [-1025, -970], [-1025, -972], [-1026, -974], [-1027, -973], [-1027, -967], [-1028, -967]]}, "center": {"219-244": [-1022, -958]}}, -{"id": 2556, "name": "Omega strikers", "description": "The logo of the game Omega Strikers. The game features short, three-on-three online multiplayer matches, in which players compete to score more goals than the opposing team.", "links": {"website": ["https://www.odysseyinteractive.gg/omegastrikers"], "subreddit": ["omegastrikers"], "discord": ["omegastrikers"]}, "path": {"144-258": [[3, -611], [3, -627], [52, -627], [52, -611]]}, "center": {"144-258": [28, -619]}}, -{"id": 2557, "name": "Citrus - r/PlaceFishCult", "description": "Citrus is a yellow fish named after his colour, he can be seen here receiving a big ol' smooch from Lucy.", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"113-258": [[480, -294], [481, -293], [482, -292], [481, -291], [480, -290], [479, -291], [478, -290], [477, -291], [478, -292], [477, -293], [478, -294], [479, -293]]}, "center": {"113-258": [480, -292]}}, -{"id": 2558, "name": "Suedflagge sign", "description": "The first artwork completed by the Suedflagge team, claiming a flag previously created by the hivemind.\n\nCreated in cooperation with German streamer HeyStan.", "links": {}, "path": {"99-258": [[-640, -69], [-635, -69], [-635, -71], [-631, -71], [-628, -71], [-628, -69], [-596, -69], [-596, -61], [-640, -61]]}, "center": {"99-258": [-632, -66]}}, -{"id": 2559, "name": "MattIIIIIIIIPuu", "description": "It´s a german streamer Bee that got consigned to the care of sukidingels Panda. But whose bee is it? Here is your Q&A:\n\nIs it from Maty? - natürlich (yes); Is it from PATTIIIIIIII? - aber klar (yes); Is it from HoneyPuu? - wer denn sonst! (yes)", "links": {"website": ["https://www.twitch.tv/maty", "https://www.twitch.tv/pattiiiiiiii", "https://www.twitch.tv/honeypuu"]}, "path": {"133-258": [[219, -269], [208, -273], [204, -271], [204, -265], [206, -261], [211, -259], [216, -262], [218, -269]]}, "center": {"133-258": [210, -266]}}, -{"id": 2560, "name": "Mystakes Forever", "description": "A tribute to the graduating NIJISANJI English's Luxiem member Mysta Rias. His graduation stream is on 27 August 2023.", "links": {"subreddit": ["Nijisanji"], "discord": ["vtubersplace", "mysta"]}, "path": {"227-258": [[1114, -863], [1205, -863], [1205, -820], [1114, -821], [1114, -833], [1115, -822], [1151, -820], [1153, -837], [1152, -840], [1151, -841], [1116, -842]]}, "center": {"227-258": [1174, -842]}}, -{"id": 2561, "name": "The Scream", "description": "The Scream is a composition created by Norwegian artist Edvard Munch in 1893. The Norwegian name of the piece is Skrik (Shriek), and the German title under which it was first exhibited \"Der Schrei der Natur\" (The Scream of Nature). The agonized face in the painting has become one of the most iconic images of art, seen as symbolizing the anxiety of the human condition.\n\nCreated by /r/placeDE", "links": {"website": ["https://en.wikipedia.org/wiki/The_Scream"], "subreddit": ["placeDE"]}, "path": {"231-258": [[-661, 642], [-572, 642], [-572, 740], [-660, 740]]}, "center": {"231-258": [-616, 691]}}, -{"id": 2562, "name": "Evangelion Unit 02", "description": "The head of Unit 02 from Neon Genesis Evangelion. Built by the Place Anime Faction (PAF)", "links": {"subreddit": ["PLANFA"], "discord": ["K85uqQjUS"]}, "path": {"206-258": [[1299, -896], [1306, -902], [1312, -902], [1313, -901], [1316, -898], [1318, -898], [1318, -897], [1319, -893], [1317, -891], [1316, -888], [1315, -888], [1315, -887], [1312, -887], [1308, -886], [1307, -885], [1304, -883], [1302, -883], [1301, -885], [1303, -887], [1302, -888], [1302, -891], [1299, -893]]}, "center": {"206-258": [1309, -894]}}, -{"id": 2563, "name": "Sansão - Turma da Mônica", "description": "Sansão is a character created by Mauricio de Souza for the comic book series Turma da Mônica (Mônica's Gang).\nIt is one of the most recognizable characters in the show, a stuffed rabbit toy owned and beloved by Mônica.", "links": {"subreddit": ["brasil", "porramauricio"], "discord": ["r-br", "cellbit"]}, "path": {"163-258": [[233, 532], [236, 532], [237, 531], [237, 529], [235, 530], [234, 531], [233, 531], [233, 529], [233, 528], [236, 528], [236, 527], [237, 527], [236, 527], [236, 526], [236, 525], [237, 525], [236, 525], [236, 524], [235, 524], [235, 523], [236, 522], [236, 519], [235, 518], [234, 518], [233, 519], [233, 521], [232, 522], [231, 521], [231, 519], [230, 518], [229, 518], [228, 519], [228, 522], [229, 523], [228, 524], [227, 525], [228, 526], [227, 527], [228, 528], [227, 529], [227, 531], [228, 532], [231, 532], [232, 531]]}, "center": {"163-258": [232, 525]}}, -{"id": 2564, "name": "Ramiel", "description": "The Fifth Angel Ramiel from Neon Genesis Evangelion (aka best girl), blushing.\nCreated by Place Anime Faction (PAF)", "links": {"subreddit": ["PLANFA"], "discord": ["K85uqQjUS"]}, "path": {"211-258": [[1310, -885], [1311, -885], [1315, -881], [1316, -879], [1311, -874], [1305, -880], [1309, -884]]}, "center": {"211-258": [1311, -880]}}, -{"id": 2565, "name": "Patrouille Suisse", "description": "The Patrouille Suisse is one of two Swiss Aerobatic teams from the Swiss Air Force", "links": {"website": ["https://www.patrouillesuisse.ch/display-teams/patrouille-suisse"]}, "path": {"227-258": [[-502, 785], [-502, 786], [-533, 780], [-529, 753], [-501, 752]]}, "center": {"227-258": [-516, 768]}}, -{"id": 2566, "name": "Cha Cha Cha", "description": "Käärijä's Eurovision song's famous words and the song's name. Käärijä himself is immediately next to these words on the canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Cha_Cha_Cha_(Käärijä_song)"]}, "path": {"227-258": [[162, -341], [175, -341], [175, -326], [162, -326]]}, "center": {"227-258": [169, -333]}}, -{"id": 2567, "name": "TH Rosenheim (University of Applied Sciences Rosenheim)", "description": "The TH Rosenheim is a public university. Originally, it specialized in wood. Now represented in almost all technical fields. The students are spread over 4 campuses in the region.", "links": {"website": ["https://www.th-rosenheim.de/"]}, "path": {"210-258": [[-181, -57], [-181, -76], [-163, -76], [-163, -57]]}, "center": {"210-258": [-172, -66]}}, +{"id": 2556, "name": "Omega strikers", "description": "The logo of the game Omega Strikers. The game features short, three-on-three online multiplayer matches, in which players compete to score more goals than the opposing team.", "links": {"website": ["https://www.odysseyinteractive.gg/omegastrikers"], "subreddit": ["omegastrikers"], "discord": ["omegastrikers"]}, "path": {"144-258, T": [[3, -611], [3, -627], [52, -627], [52, -611]]}, "center": {"144-258, T": [28, -619]}}, +{"id": 2557, "name": "Citrus - r/PlaceFishCult", "description": "Citrus is a yellow fish named after his colour, he can be seen here receiving a big ol' smooch from Lucy.", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"113-258, T": [[480, -294], [481, -293], [482, -292], [481, -291], [480, -290], [479, -291], [478, -290], [477, -291], [478, -292], [477, -293], [478, -294], [479, -293]]}, "center": {"113-258, T": [480, -292]}}, +{"id": 2558, "name": "Suedflagge sign", "description": "The first artwork completed by the Suedflagge team, claiming a flag previously created by the hivemind.\n\nCreated in cooperation with German streamer HeyStan.", "links": {}, "path": {"99-258, T": [[-640, -69], [-635, -69], [-635, -71], [-631, -71], [-628, -71], [-628, -69], [-596, -69], [-596, -61], [-640, -61]]}, "center": {"99-258, T": [-632, -66]}}, +{"id": 2559, "name": "MattIIIIIIIIPuu", "description": "It´s a german streamer Bee that got consigned to the care of sukidingels Panda. But whose bee is it? Here is your Q&A:\n\nIs it from Maty? - natürlich (yes); Is it from PATTIIIIIIII? - aber klar (yes); Is it from HoneyPuu? - wer denn sonst! (yes)", "links": {"website": ["https://www.twitch.tv/maty", "https://www.twitch.tv/pattiiiiiiii", "https://www.twitch.tv/honeypuu"]}, "path": {"133-258, T": [[219, -269], [208, -273], [204, -271], [204, -265], [206, -261], [211, -259], [216, -262], [218, -269]]}, "center": {"133-258, T": [210, -266]}}, +{"id": 2560, "name": "Mystakes Forever", "description": "A tribute to the graduating NIJISANJI English's Luxiem member Mysta Rias. His graduation stream is on 27 August 2023.", "links": {"subreddit": ["Nijisanji"], "discord": ["vtubersplace", "mysta"]}, "path": {"227-258, T": [[1114, -863], [1205, -863], [1205, -820], [1114, -821], [1114, -833], [1115, -822], [1151, -820], [1153, -837], [1152, -840], [1151, -841], [1116, -842]]}, "center": {"227-258, T": [1174, -842]}}, +{"id": 2561, "name": "The Scream", "description": "The Scream is a composition created by Norwegian artist Edvard Munch in 1893. The Norwegian name of the piece is Skrik (Shriek), and the German title under which it was first exhibited \"Der Schrei der Natur\" (The Scream of Nature). The agonized face in the painting has become one of the most iconic images of art, seen as symbolizing the anxiety of the human condition.\n\nCreated by /r/placeDE", "links": {"website": ["https://en.wikipedia.org/wiki/The_Scream"], "subreddit": ["placeDE"]}, "path": {"231-258, T": [[-661, 642], [-572, 642], [-572, 740], [-660, 740]]}, "center": {"231-258, T": [-616, 691]}}, +{"id": 2562, "name": "Evangelion Unit 02", "description": "The head of Unit 02 from Neon Genesis Evangelion. Built by the Place Anime Faction (PAF)", "links": {"subreddit": ["PLANFA"], "discord": ["K85uqQjUS"]}, "path": {"206-258, T": [[1299, -896], [1306, -902], [1312, -902], [1313, -901], [1316, -898], [1318, -898], [1318, -897], [1319, -893], [1317, -891], [1316, -888], [1315, -888], [1315, -887], [1312, -887], [1308, -886], [1307, -885], [1304, -883], [1302, -883], [1301, -885], [1303, -887], [1302, -888], [1302, -891], [1299, -893]]}, "center": {"206-258, T": [1309, -894]}}, +{"id": 2563, "name": "Sansão - Turma da Mônica", "description": "Sansão is a character created by Mauricio de Souza for the comic book series Turma da Mônica (Mônica's Gang).\nIt is one of the most recognizable characters in the show, a stuffed rabbit toy owned and beloved by Mônica.", "links": {"subreddit": ["brasil", "porramauricio"], "discord": ["r-br", "cellbit"]}, "path": {"163-258, T": [[233, 532], [236, 532], [237, 531], [237, 529], [235, 530], [234, 531], [233, 531], [233, 529], [233, 528], [236, 528], [236, 527], [237, 527], [236, 527], [236, 526], [236, 525], [237, 525], [236, 525], [236, 524], [235, 524], [235, 523], [236, 522], [236, 519], [235, 518], [234, 518], [233, 519], [233, 521], [232, 522], [231, 521], [231, 519], [230, 518], [229, 518], [228, 519], [228, 522], [229, 523], [228, 524], [227, 525], [228, 526], [227, 527], [228, 528], [227, 529], [227, 531], [228, 532], [231, 532], [232, 531]]}, "center": {"163-258, T": [232, 525]}}, +{"id": 2564, "name": "Ramiel", "description": "The Fifth Angel Ramiel from Neon Genesis Evangelion (aka best girl), blushing.\nCreated by Place Anime Faction (PAF)", "links": {"subreddit": ["PLANFA"], "discord": ["K85uqQjUS"]}, "path": {"211-258, T": [[1310, -885], [1311, -885], [1315, -881], [1316, -879], [1311, -874], [1305, -880], [1309, -884]]}, "center": {"211-258, T": [1311, -880]}}, +{"id": 2565, "name": "Patrouille Suisse", "description": "The Patrouille Suisse is one of two Swiss Aerobatic teams from the Swiss Air Force", "links": {"website": ["https://www.patrouillesuisse.ch/display-teams/patrouille-suisse"]}, "path": {"227-258, T": [[-502, 785], [-502, 786], [-533, 780], [-529, 753], [-501, 752]]}, "center": {"227-258, T": [-516, 768]}}, +{"id": 2566, "name": "Cha Cha Cha", "description": "Käärijä's Eurovision song's famous words and the song's name. Käärijä himself is immediately next to these words on the canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Cha_Cha_Cha_(Käärijä_song)"]}, "path": {"227-258, T": [[162, -341], [175, -341], [175, -326], [162, -326]]}, "center": {"227-258, T": [169, -333]}}, +{"id": 2567, "name": "TH Rosenheim (University of Applied Sciences Rosenheim)", "description": "The TH Rosenheim is a public university. Originally, it specialized in wood. Now represented in almost all technical fields. The students are spread over 4 campuses in the region.", "links": {"website": ["https://www.th-rosenheim.de/"]}, "path": {"210-258, T": [[-181, -57], [-181, -76], [-163, -76], [-163, -57]]}, "center": {"210-258, T": [-172, -66]}}, {"id": 2568, "name": "Amalka the Fairy", "description": "Amalka the Fairy (Víla Amálka) is a character from animated czechoslovakian television series \"Říkání o víle Amálce\" based on books by Václav Čtvrtek.", "links": {"website": ["https://www.ceskatelevize.cz/porady/898562-rikani-o-vile-amalce/"], "subreddit": ["czech"], "discord": ["Fx2AVgUc"]}, "path": {"205-208": [[1272, 663], [1283, 664], [1300, 677], [1255, 684], [1227, 682], [1228, 655], [1234, 622], [1241, 599], [1246, 590], [1253, 590], [1290, 612], [1288, 621], [1275, 646]]}, "center": {"205-208": [1259, 623]}}, -{"id": 2569, "name": "Fishair", "description": "A combination of a fish and a Finnair plane. Fishes are a common subject of memes in Finland. Finnair is Finland's largest airline. The Finnish government owns over half of it.", "links": {"website": ["https://www.finnair.com/fi-en"]}, "path": {"227-258": [[74, -347], [71, -347], [71, -349], [70, -349], [70, -350], [69, -350], [69, -351], [68, -351], [68, -352], [67, -352], [67, -353], [66, -353], [66, -355], [65, -355], [65, -356], [64, -356], [64, -357], [62, -357], [62, -355], [61, -355], [61, -353], [60, -352], [60, -353], [57, -353], [57, -349], [43, -349], [43, -353], [44, -353], [44, -355], [45, -355], [45, -356], [46, -356], [46, -357], [47, -357], [47, -358], [48, -358], [48, -359], [49, -359], [49, -360], [51, -360], [51, -361], [53, -361], [53, -362], [55, -362], [55, -363], [58, -363], [58, -364], [63, -364], [63, -365], [66, -365], [66, -366], [72, -366], [72, -367], [74, -367], [74, -368], [79, -368], [79, -367], [78, -366], [82, -366], [82, -365], [85, -365], [85, -364], [89, -364], [89, -363], [92, -363], [92, -362], [94, -362], [94, -363], [97, -363], [97, -362], [96, -361], [100, -361], [100, -360], [108, -360], [108, -361], [112, -361], [112, -362], [115, -362], [115, -363], [117, -363], [117, -364], [119, -364], [119, -365], [123, -365], [123, -364], [124, -364], [124, -362], [122, -362], [122, -360], [122, -359], [121, -359], [121, -357], [120, -356], [121, -356], [121, -355], [122, -355], [122, -354], [123, -354], [123, -353], [124, -353], [124, -352], [124, -351], [123, -351], [123, -350], [117, -350], [117, -351], [115, -351], [115, -352], [114, -352], [114, -351], [110, -351], [110, -350], [103, -350], [103, -349], [79, -349], [79, -348], [77, -348], [77, -347], [75, -347], [75, -346], [72, -346], [72, -347], [71, -347], [71, -348]]}, "center": {"227-258": [76, -357]}}, -{"id": 2570, "name": "Patrouille Suisse", "description": "The Patrouille Suisse is an aerobatic team of the Swiss Air Force. The team flies six Northrop F-5E Tiger II fighter/bomber jets.", "links": {"website": ["https://de.wikipedia.org/wiki/Patrouille_Suisse"]}, "path": {"195-258": [[-530, 768], [-502, 785], [-502, 751], [-518, 760]]}, "center": {"195-258": [-512, 768]}}, -{"id": 2571, "name": "Pikachu", "description": "Pikachu is an Electric-type mouse Pokémon from Generation 1 of Nintendo's Pokémon franchise. It first appeared in Japan in 1996 in the Pokémon Red and Green games, created by Satoshi Tajiri.\n\nThis Pikachu and the nearby Kirby were made by a small group of friends in alliance with the JJK fandom. Thank you JJK community! <3", "links": {"website": ["https://en.wikipedia.org/wiki/Pikachu", "https://bulbapedia.bulbagarden.net/wiki/Pikachu"]}, "path": {"227-258": [[-1177, -919], [-1177, -916], [-1179, -916], [-1179, -915], [-1175, -910], [-1170, -910], [-1170, -913], [-1169, -913], [-1169, -919], [-1171, -919], [-1171, -917], [-1173, -917], [-1175, -919]]}, "center": {"227-258": [-1174, -914]}}, -{"id": 2572, "name": "Pirooz", "description": "Pirooz was one of the last Asian/Persian Cheetah and he died due to lung Failure at February 28, 2023 (aged 10 months)", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Pirouz_(cheetah)](https://en.wikipedia.org/wiki/Pirouz_(cheetah))"], "subreddit": ["place_iran"], "discord": ["GT33wcwp"]}, "path": {"227-258": [[563, -79], [562, -81], [559, -83], [559, -88], [558, -89], [558, -94], [561, -96], [563, -96], [564, -93], [572, -93], [574, -93], [576, -95], [578, -96], [580, -95], [580, -92], [578, -89], [578, -87], [577, -84], [576, -81], [576, -82], [574, -79], [578, -79], [579, -80], [580, -83], [580, -85], [582, -85], [583, -84], [584, -82], [583, -79], [583, -78], [563, -78]]}, "center": {"227-258": [569, -86]}}, -{"id": 2573, "name": "Cult of the Lamb - Lamb Card", "description": "A Card of the Lamb, with the four corners colored to represent the four Bishops of the Old Faith", "links": {"website": ["https://www.cultofthelamb.com/"], "subreddit": ["CultOfTheLamb"], "discord": ["NHmc6Jpt"]}, "path": {"227-258": [[1207, -590], [1226, -590], [1226, -551], [1207, -551]]}, "center": {"227-258": [1217, -570]}}, -{"id": 2574, "name": "She-Ra Catradora Kiss", "description": "The iconic kiss from the series finale of Netflix's 2018 \"She-Ra and the Princesses of Power\" series, shared between Adora and Catra.", "links": {"subreddit": ["princessesofpower"], "discord": ["shera"]}, "path": {"95-258": [[-670, -194], [-670, -171], [-629, -171], [-629, -194]]}, "center": {"95-258": [-649, -182]}}, +{"id": 2569, "name": "Fishair", "description": "A combination of a fish and a Finnair plane. Fishes are a common subject of memes in Finland. Finnair is Finland's largest airline. The Finnish government owns over half of it.", "links": {"website": ["https://www.finnair.com/fi-en"]}, "path": {"227-258, T": [[74, -347], [71, -347], [71, -349], [70, -349], [70, -350], [69, -350], [69, -351], [68, -351], [68, -352], [67, -352], [67, -353], [66, -353], [66, -355], [65, -355], [65, -356], [64, -356], [64, -357], [62, -357], [62, -355], [61, -355], [61, -353], [60, -352], [60, -353], [57, -353], [57, -349], [43, -349], [43, -353], [44, -353], [44, -355], [45, -355], [45, -356], [46, -356], [46, -357], [47, -357], [47, -358], [48, -358], [48, -359], [49, -359], [49, -360], [51, -360], [51, -361], [53, -361], [53, -362], [55, -362], [55, -363], [58, -363], [58, -364], [63, -364], [63, -365], [66, -365], [66, -366], [72, -366], [72, -367], [74, -367], [74, -368], [79, -368], [79, -367], [78, -366], [82, -366], [82, -365], [85, -365], [85, -364], [89, -364], [89, -363], [92, -363], [92, -362], [94, -362], [94, -363], [97, -363], [97, -362], [96, -361], [100, -361], [100, -360], [108, -360], [108, -361], [112, -361], [112, -362], [115, -362], [115, -363], [117, -363], [117, -364], [119, -364], [119, -365], [123, -365], [123, -364], [124, -364], [124, -362], [122, -362], [122, -360], [122, -359], [121, -359], [121, -357], [120, -356], [121, -356], [121, -355], [122, -355], [122, -354], [123, -354], [123, -353], [124, -353], [124, -352], [124, -351], [123, -351], [123, -350], [117, -350], [117, -351], [115, -351], [115, -352], [114, -352], [114, -351], [110, -351], [110, -350], [103, -350], [103, -349], [79, -349], [79, -348], [77, -348], [77, -347], [75, -347], [75, -346], [72, -346], [72, -347], [71, -347], [71, -348]]}, "center": {"227-258, T": [76, -357]}}, +{"id": 2570, "name": "Patrouille Suisse", "description": "The Patrouille Suisse is an aerobatic team of the Swiss Air Force. The team flies six Northrop F-5E Tiger II fighter/bomber jets.", "links": {"website": ["https://de.wikipedia.org/wiki/Patrouille_Suisse"]}, "path": {"195-258, T": [[-530, 768], [-502, 785], [-502, 751], [-518, 760]]}, "center": {"195-258, T": [-512, 768]}}, +{"id": 2571, "name": "Pikachu", "description": "Pikachu is an Electric-type mouse Pokémon from Generation 1 of Nintendo's Pokémon franchise. It first appeared in Japan in 1996 in the Pokémon Red and Green games, created by Satoshi Tajiri.\n\nThis Pikachu and the nearby Kirby were made by a small group of friends in alliance with the JJK fandom. Thank you JJK community! <3", "links": {"website": ["https://en.wikipedia.org/wiki/Pikachu", "https://bulbapedia.bulbagarden.net/wiki/Pikachu"]}, "path": {"227-258, T": [[-1177, -919], [-1177, -916], [-1179, -916], [-1179, -915], [-1175, -910], [-1170, -910], [-1170, -913], [-1169, -913], [-1169, -919], [-1171, -919], [-1171, -917], [-1173, -917], [-1175, -919]]}, "center": {"227-258, T": [-1174, -914]}}, +{"id": 2572, "name": "Pirooz", "description": "Pirooz was one of the last Asian/Persian Cheetah and he died due to lung Failure at February 28, 2023 (aged 10 months)", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Pirouz_(cheetah)](https://en.wikipedia.org/wiki/Pirouz_(cheetah))"], "subreddit": ["place_iran"], "discord": ["GT33wcwp"]}, "path": {"227-258, T": [[563, -79], [562, -81], [559, -83], [559, -88], [558, -89], [558, -94], [561, -96], [563, -96], [564, -93], [572, -93], [574, -93], [576, -95], [578, -96], [580, -95], [580, -92], [578, -89], [578, -87], [577, -84], [576, -81], [576, -82], [574, -79], [578, -79], [579, -80], [580, -83], [580, -85], [582, -85], [583, -84], [584, -82], [583, -79], [583, -78], [563, -78]]}, "center": {"227-258, T": [569, -86]}}, +{"id": 2573, "name": "Cult of the Lamb - Lamb Card", "description": "A Card of the Lamb, with the four corners colored to represent the four Bishops of the Old Faith", "links": {"website": ["https://www.cultofthelamb.com/"], "subreddit": ["CultOfTheLamb"], "discord": ["NHmc6Jpt"]}, "path": {"227-258, T": [[1207, -590], [1226, -590], [1226, -551], [1207, -551]]}, "center": {"227-258, T": [1217, -570]}}, +{"id": 2574, "name": "She-Ra Catradora Kiss", "description": "The iconic kiss from the series finale of Netflix's 2018 \"She-Ra and the Princesses of Power\" series, shared between Adora and Catra.", "links": {"subreddit": ["princessesofpower"], "discord": ["shera"]}, "path": {"95-258, T": [[-670, -194], [-670, -171], [-629, -171], [-629, -194]]}, "center": {"95-258, T": [-649, -182]}}, {"id": 2575, "name": "Tomato", "description": "An artwork created by the Suedflagge team and HeyStan to comemorate the help of HeyStan with establishing the Suedflagge flag.", "links": {}, "path": {"100-141": [[-595, -69], [-594, -69], [-594, -70], [-593, -70], [-593, -74], [-584, -74], [-584, -70], [-583, -70], [-583, -69], [-582, -69], [-582, -61], [-584, -61], [-584, -60], [-593, -60], [-593, -61], [-595, -61]]}, "center": {"100-141": [-588, -67]}}, -{"id": 2576, "name": "kay", "description": "A short pig in the german streamer community - must be Kay. Or was it Kai? xD\nHe got known as a youtube creater of PVP focused Ark survival evolved content. Most famous are the formats \"living at the limit (LAL)\" and \"Nomads Lifestile [uncut](NLU)\" and his PVP balance mod K created by ouzo1986.", "links": {"website": ["https://www.twitch.tv/kaaaay", "https://www.youtube.com/@kkplayDE/videos", "https://www.youtube.com/@FroschAim", "https://steamcommunity.com/sharedfiles/filedetails/?id=2061634564"], "discord": ["yeet"]}, "path": {"113-258": [[-764, -296], [-764, -295], [-764, -294], [-764, -291], [-761, -290], [-760, -290], [-758, -291], [-758, -296], [-759, -295], [-763, -295]]}, "center": {"113-258": [-760, -292]}}, -{"id": 2577, "name": "Edna and Harvey", "description": "Main characters from the game series with the same name. The first installment \"Edna and Harvey: The Breakout\" started as a university project from Jan \"Poki\" Müller-Michaelis in 2007 and released in 2008 by German developer Daedalic Entertainment, the game has received raving reviews, leading to a second installment - \"Harvey's New Eyes\".", "links": {"website": ["https://en.wikipedia.org/wiki/Edna_%26_Harvey:_The_Breakout"], "subreddit": ["placeDE"], "discord": ["placede"]}, "path": {"227-258": [[-1103, -581], [-1097, -586], [-1094, -586], [-1092, -583], [-1086, -584], [-1081, -576], [-1074, -586], [-1069, -572], [-1063, -586], [-1060, -585], [-1058, -577], [-1058, -576], [-1060, -576], [-1062, -580], [-1063, -575], [-1066, -572], [-1063, -567], [-1063, -562], [-1063, -557], [-1059, -551], [-1059, -550], [-1103, -550]]}, "center": {"227-258": [-1089, -564]}}, -{"id": 2578, "name": "Scaled and Icy - Twenty One Pilots", "description": "This is the cover of Scaled and Icy, Twenty One Pilots sixth studio album released on May 21, 2021; it features a scaled, teal dragon (named \"Trash\") breathing yellow fire over a pink background.", "links": {"website": ["https://www.twentyonepilots.com/", "https://open.spotify.com/album/0Q5XBpCYFgUWiG9DUWyAmJ?si=1cnR0jlOTuqcJle8Y210vQ"], "subreddit": ["twentyonepilots"]}, "path": {"227-258": [[-1233, -297], [-1233, -259], [-1195, -259], [-1195, -282], [-1190, -282], [-1190, -297]]}, "center": {"227-258": [-1214, -278]}}, -{"id": 2579, "name": "Kizuchi Kanna", "description": "Kizuchi Kanna is a second-year middle school student and one of the 20 participants forced into playing the Death Game. She is part of the game called \"Your Turn To Die\" which is a negotiation or adventure game by Nankidai about a deadly game, where the participants choose who dies.", "links": {"website": ["https://vgperson.com/games/yourturntodie.htm"], "subreddit": ["yourturntodie"]}, "path": {"227-258": [[-641, 136], [-622, 136], [-622, 157], [-624, 157], [-624, 156], [-625, 156], [-626, 156], [-626, 155], [-627, 155], [-627, 153], [-633, 153], [-633, 151], [-634, 151], [-634, 148], [-635, 148], [-635, 146], [-636, 146], [-636, 142], [-637, 142], [-637, 140], [-638, 140], [-639, 140], [-639, 139], [-640, 139], [-640, 138], [-641, 138], [-643, 138]]}, "center": {"227-258": [-629, 143]}}, -{"id": 2580, "name": "Pony Malta", "description": "Pony Malta is a malt-based non-alcoholic beverage produced in Colombia by Cervecería Bavaria since 1956. Currently the beverage is also distributed in Chile, Mexico and Ecuador. It is the best-selling malt beverage in Peru and Colombia.", "links": {"website": ["https://www.bavaria.co/marcas-bavaria/explorador-de-marcas/pony-malta"]}, "path": {"227-258": [[-901, 848], [-894, 848], [-894, 852], [-895, 853], [-895, 855], [-891, 859], [-893, 862], [-893, 865], [-890, 870], [-891, 884], [-901, 884], [-902, 874], [-904, 873], [-902, 871], [-902, 862], [-904, 859], [-900, 854], [-900, 853]]}, "center": {"227-258": [-896, 872]}}, -{"id": 2581, "name": "Generation loss", "description": "Generation loss is a short horror series made by \"ranboo\". Generation loss is avaliable on the twitch channel, ranboolive, as this series was almost fully filmed with a live audience and audience interaction. This series includes charecters/creators such as Charlie Slimecicle, SneegSnag, Niki Nihachu, AustinShow, Ethan, Vinny, Frank the skeleton, two rats played by sykkuno and valkrae, The puzzler played by Jerma, and Hetch played by Keenan.", "links": {"website": ["https://www.twitch.tv/ranboolive/videos?filter=highlights&sort=time", "https://www.youtube.com/playlist?list=PL752reW0lx-BLTOeK7RtzK0IexKGx0w4F"], "subreddit": ["ranboo"], "discord": ["ranboo", "FmVxjeMb", "kAdg7HaU"]}, "path": {"227-258": [[381, 501], [438, 500], [438, 554], [381, 554], [381, 499], [437, 501]]}, "center": {"227-258": [410, 528]}}, -{"id": 2582, "name": "Alfonse", "description": "Alfonse is a main character and protagonist in Fire Emblem Heroes. He is a prince of the Askran Kingdom and a member of the Order of Heroes. Fire Emblem Heroes is a free-to-play tactical role-playing game developed by Intelligent Systems and published by Nintendo for Android and iOS. The game is a mobile spin-off of the Fire Emblem series featuring its characters.", "links": {"website": ["https://fire-emblem-heroes.com/"], "subreddit": ["FireEmblemHeroes"], "discord": ["fireemblemheroes"]}, "path": {"227-258": [[-725, 175], [-731, 175], [-731, 178], [-732, 178], [-732, 180], [-733, 180], [-733, 187], [-734, 187], [-734, 189], [-721, 189], [-721, 175]]}, "center": {"227-258": [-727, 182]}}, -{"id": 2583, "name": "Hunter's Mark", "description": "This pixel art features a symbol from the videogame Bloodborne, a dystopian gothic/lovecraftian action RPG developed by Fromsoftware in coalition with Japan Studio and Sony, and released in 2015 for the PlayStation 4. \n\nThe pixel art features the Hunter's Mark, a well known symbol in the game which represents the player's faction.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/03/hunter.html?m=1"], "subreddit": ["bloodborne"], "discord": ["Pfcy2mfw"]}, "path": {"227-258": [[863, 11], [860, 1], [857, 11]]}, "center": {"227-258": [860, 9]}}, -{"id": 2584, "name": "Captain P33N", "description": "Captain Sparklez, X33N and PeteZahHutt", "links": {"subreddit": ["CaptainSparklez"]}, "path": {"162-258": [[-604, -368], [-586, -368], [-586, -360], [-595, -360], [-595, -352], [-604, -352]]}, "center": {"162-258": [-599, -363]}}, -{"id": 2586, "name": "Silent Fitz", "description": "Sylphiette (or Silent Fitz) is a fictional characters and one of the main protagonists of the Light Novel and Anime series Mushoku Tensei: Jobless Reincarnation.\n\nThis Pixel Art of Silent Fitz has been made by !tsabrody on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, the Mushoku Tensei Discord Server and and the sixfacedworld subreddit.\n\nWhite hair explanation S2E0: During the displacement incident, people were teleported randomly across the world, Sylphiette was teleported to the sky, close to Ars, the capital of the Asuran Kingdom, in an attempt to survive, Sylphiette exhausts all of her mana using wind magic, with white hair being one of the main indicatives of mana exhaustion, although her hair turned white permanently. (S3 Content)", "links": {"website": ["https://mushokutensei.fandom.com/wiki/Sylphiette"], "subreddit": ["sixfacedworld", "Isekai_Coalition"], "discord": ["mushokutensei", "wdWC6KYB"]}, "path": {"174-258": [[468, -935], [454, -935], [447, -949], [452, -950], [451, -955], [449, -957], [457, -965], [458, -970], [463, -971], [464, -965], [471, -964], [478, -958], [478, -955], [469, -949], [470, -935]]}, "center": {"174-258": [461, -955]}}, -{"id": 2587, "name": "Falklands War peace memorial", "description": "This peace memorial honours the lives lost on both sides of the 1982 Falklands War between Argentina and the United Kingdom over territorial control of the Falkland (Malvinas) Islands.\n\nThe initial sketch of the memorial was proposed by r/PlaceArg, which had the rifle with the helmet to represent the fallen, and the Falkland Islands behind this. Later on, it was proposed by r/UKOnPlace to add a flower. For the final design, a circle was placed behind the islands to prevent either flag from touching the territory.\n\nThis art piece serves as a sign of a peace agreement between the UK and Argentina, who had numerous conflicts throughout r/place 2023. The memorial was originally proposed to r/PlaceArg by an offshoot of users from r/ukplace, and then brought up again by r/ukplace during formal negotiations with r/PlaceArg. However, negotiations fell through; r/ukplace requested that r/PlaceArg remove the islands from their flag, but r/PlaceArg did not agree with this. This led to a series of conflicts in which r/ukplace removed the islands by force. A day later, a splinter group broke off from r/ukplace after being unsatisfied with their leadership, and formed a new server called r/UKOnPlace. r/PlaceArg approached r/UKOnPlace to restart negotiations, and the memorial was brought up once again. The two parties agreed to build the memorial as the only reference to the islands on either flag. They negotiated the design of the memorial and decided to draw it half in each flag, with r/ukplace pitching in later on as well.", "links": {"website": ["https://en.wikipedia.org/wiki/Falklands_War"], "subreddit": ["UKOnPlace", "PlaceArg", "ukplace"], "discord": ["ukonplace", "PlaceArg", "ukplace"]}, "path": {"229-258": [[1142, 877], [1141, 878], [1137, 878], [1137, 879], [1135, 879], [1135, 880], [1134, 880], [1134, 881], [1133, 881], [1133, 882], [1132, 882], [1132, 883], [1130, 883], [1130, 884], [1129, 884], [1129, 886], [1128, 886], [1128, 887], [1127, 887], [1127, 888], [1126, 888], [1126, 890], [1125, 890], [1125, 894], [1124, 894], [1124, 901], [1125, 901], [1125, 905], [1126, 905], [1126, 906], [1127, 906], [1127, 909], [1128, 909], [1128, 911], [1129, 911], [1129, 912], [1130, 912], [1130, 913], [1131, 913], [1131, 914], [1132, 914], [1132, 915], [1134, 915], [1134, 916], [1137, 916], [1137, 917], [1138, 917], [1138, 918], [1152, 918], [1152, 917], [1154, 917], [1154, 916], [1155, 916], [1156, 916], [1156, 915], [1157, 915], [1157, 914], [1159, 914], [1159, 913], [1160, 913], [1160, 912], [1162, 912], [1162, 911], [1163, 911], [1163, 910], [1164, 910], [1164, 908], [1165, 908], [1165, 905], [1166, 905], [1166, 903], [1167, 903], [1167, 893], [1166, 893], [1166, 890], [1165, 890], [1165, 889], [1164, 889], [1164, 888], [1163, 888], [1163, 887], [1163, 886], [1162, 886], [1162, 885], [1161, 885], [1161, 883], [1159, 883], [1159, 882], [1158, 882], [1158, 881], [1157, 881], [1157, 880], [1156, 880], [1155, 880], [1155, 879], [1153, 879], [1153, 878], [1150, 878], [1150, 877], [1147, 878], [1150, 877]]}, "center": {"229-258": [1145, 898]}}, -{"id": 2588, "name": "Bora (itally hall)", "description": "Bora, or \"Orange Tie\" is the honorary sixth member of the American five-member band, \"Tally Hall\". Bora's face is in the colours of the Italy flag as part of an alliance with Italy.", "links": {"subreddit": ["tallyhall"], "discord": ["jZjmeq86tV"]}, "path": {"227-258": [[80, 90], [80, 91], [79, 91], [79, 95], [80, 95], [80, 96], [80, 97], [79, 97], [79, 101], [84, 101], [84, 98], [83, 98], [83, 97], [82, 97], [82, 96], [82, 95], [83, 95], [83, 94], [84, 94], [84, 92], [83, 92], [83, 91], [82, 91], [82, 90]]}, "center": {"227-258": [81, 93]}}, -{"id": 2589, "name": "Omutatsu Cat,Shark Artwork", "description": "おむたつ (Omutatsu) Is written, as it's the name of the previous artist for TUYU to it's left.\nThe shark and cats are extra artwork that the TUYU community helped and kept in their area.", "links": {"subreddit": ["TUYU_official"], "discord": ["tuyu"]}, "path": {"227-258": [[-1076, 13], [-1076, -6], [-1110, -6], [-1110, 13]]}, "center": {"227-258": [-1093, 4]}}, -{"id": 2590, "name": "Hawaii: Part II", "description": "Hawaii: Part II is an album by \"Miracle Musical\", a project by Tally Hall member, Joe Hawley.", "links": {"website": ["http://www.hawaiipartii.com", "https://www.tallyhall.com"], "subreddit": ["miraclemusical"], "discord": ["jZjmeq86tV"]}, "path": {"227-258": [[-1373, 382], [-1349, 382], [-1349, 403], [-1373, 403]]}, "center": {"227-258": [-1361, 393]}}, -{"id": 2592, "name": "Ludwig, the Holy Blade", "description": "This pixel art features a character from the videogame Bloodborne, a dystopian gothic/lovecraftian action RPG developed by Fromsoftware in coalition with Japan Studio and Sony, and released in 2015 for the PlayStation 4. \n\nIt recreates the iconic shot of the boss Ludwig holding his weapon, the Holy Moonlight Sword, in front of him, covering half of his face during the cutscene transition that introduces the 2nd phase of the fight. \n\nA memorable moment in the game for it introduces a recurrent weapon that appears in several Fromsoftware games, being the Moonlight Greatsword, only in its Bloodborne iteration.\nThe artwork also features the Guidance Rune to the right, a symbol related to Ludwig the player obtains after defeating him.\n\nWe were able to place this piece thanks to the generous assistance of the Netherlands, Hollow Knight, Rain World and other r/place communities.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/10/ludwig.html?m=1", "https://www.bloodborne-wiki.com/2015/11/holy-moonlight-sword.html?m=1", "https://www.bloodborne-wiki.com/2015/11/guidance.html?m=1"], "subreddit": ["bloodborne"], "discord": ["Pfcy2mfw"]}, "path": {"227-258": [[-1300, -512], [-1262, -512], [-1262, -483], [-1300, -483]]}, "center": {"227-258": [-1281, -497]}}, -{"id": 2593, "name": "Romanian Trollface", "description": "The Romanian version of the Trollface meme. It is the symbol of r/okprietenretardat, the Romanian version of the meme subreddit r/okbuddyretard.", "links": {"subreddit": ["okprietenretardat"]}, "path": {"232-258": [[-293, 87], [-285, 86], [-279, 80], [-279, 79], [-282, 75], [-292, 75], [-294, 79], [-293, 82], [-294, 85]]}, "center": {"232-258": [-287, 80]}}, +{"id": 2576, "name": "kay", "description": "A short pig in the german streamer community - must be Kay. Or was it Kai? xD\nHe got known as a youtube creater of PVP focused Ark survival evolved content. Most famous are the formats \"living at the limit (LAL)\" and \"Nomads Lifestile [uncut](NLU)\" and his PVP balance mod K created by ouzo1986.", "links": {"website": ["https://www.twitch.tv/kaaaay", "https://www.youtube.com/@kkplayDE/videos", "https://www.youtube.com/@FroschAim", "https://steamcommunity.com/sharedfiles/filedetails/?id=2061634564"], "discord": ["yeet"]}, "path": {"113-258, T": [[-764, -296], [-764, -295], [-764, -294], [-764, -291], [-761, -290], [-760, -290], [-758, -291], [-758, -296], [-759, -295], [-763, -295]]}, "center": {"113-258, T": [-760, -292]}}, +{"id": 2577, "name": "Edna and Harvey", "description": "Main characters from the game series with the same name. The first installment \"Edna and Harvey: The Breakout\" started as a university project from Jan \"Poki\" Müller-Michaelis in 2007 and released in 2008 by German developer Daedalic Entertainment, the game has received raving reviews, leading to a second installment - \"Harvey's New Eyes\".", "links": {"website": ["https://en.wikipedia.org/wiki/Edna_%26_Harvey:_The_Breakout"], "subreddit": ["placeDE"], "discord": ["placede"]}, "path": {"227-258, T": [[-1103, -581], [-1097, -586], [-1094, -586], [-1092, -583], [-1086, -584], [-1081, -576], [-1074, -586], [-1069, -572], [-1063, -586], [-1060, -585], [-1058, -577], [-1058, -576], [-1060, -576], [-1062, -580], [-1063, -575], [-1066, -572], [-1063, -567], [-1063, -562], [-1063, -557], [-1059, -551], [-1059, -550], [-1103, -550]]}, "center": {"227-258, T": [-1089, -564]}}, +{"id": 2578, "name": "Scaled and Icy - Twenty One Pilots", "description": "This is the cover of Scaled and Icy, Twenty One Pilots sixth studio album released on May 21, 2021; it features a scaled, teal dragon (named \"Trash\") breathing yellow fire over a pink background.", "links": {"website": ["https://www.twentyonepilots.com/", "https://open.spotify.com/album/0Q5XBpCYFgUWiG9DUWyAmJ?si=1cnR0jlOTuqcJle8Y210vQ"], "subreddit": ["twentyonepilots"]}, "path": {"227-258, T": [[-1233, -297], [-1233, -259], [-1195, -259], [-1195, -282], [-1190, -282], [-1190, -297]]}, "center": {"227-258, T": [-1214, -278]}}, +{"id": 2579, "name": "Kizuchi Kanna", "description": "Kizuchi Kanna is a second-year middle school student and one of the 20 participants forced into playing the Death Game. She is part of the game called \"Your Turn To Die\" which is a negotiation or adventure game by Nankidai about a deadly game, where the participants choose who dies.", "links": {"website": ["https://vgperson.com/games/yourturntodie.htm"], "subreddit": ["yourturntodie"]}, "path": {"227-258, T": [[-641, 136], [-622, 136], [-622, 157], [-624, 157], [-624, 156], [-625, 156], [-626, 156], [-626, 155], [-627, 155], [-627, 153], [-633, 153], [-633, 151], [-634, 151], [-634, 148], [-635, 148], [-635, 146], [-636, 146], [-636, 142], [-637, 142], [-637, 140], [-638, 140], [-639, 140], [-639, 139], [-640, 139], [-640, 138], [-641, 138], [-643, 138]]}, "center": {"227-258, T": [-629, 143]}}, +{"id": 2580, "name": "Pony Malta", "description": "Pony Malta is a malt-based non-alcoholic beverage produced in Colombia by Cervecería Bavaria since 1956. Currently the beverage is also distributed in Chile, Mexico and Ecuador. It is the best-selling malt beverage in Peru and Colombia.", "links": {"website": ["https://www.bavaria.co/marcas-bavaria/explorador-de-marcas/pony-malta"]}, "path": {"227-258, T": [[-901, 848], [-894, 848], [-894, 852], [-895, 853], [-895, 855], [-891, 859], [-893, 862], [-893, 865], [-890, 870], [-891, 884], [-901, 884], [-902, 874], [-904, 873], [-902, 871], [-902, 862], [-904, 859], [-900, 854], [-900, 853]]}, "center": {"227-258, T": [-896, 872]}}, +{"id": 2581, "name": "Generation loss", "description": "Generation loss is a short horror series made by \"ranboo\". Generation loss is avaliable on the twitch channel, ranboolive, as this series was almost fully filmed with a live audience and audience interaction. This series includes charecters/creators such as Charlie Slimecicle, SneegSnag, Niki Nihachu, AustinShow, Ethan, Vinny, Frank the skeleton, two rats played by sykkuno and valkrae, The puzzler played by Jerma, and Hetch played by Keenan.", "links": {"website": ["https://www.twitch.tv/ranboolive/videos?filter=highlights&sort=time", "https://www.youtube.com/playlist?list=PL752reW0lx-BLTOeK7RtzK0IexKGx0w4F"], "subreddit": ["ranboo"], "discord": ["ranboo", "FmVxjeMb", "kAdg7HaU"]}, "path": {"227-258, T": [[381, 501], [438, 500], [438, 554], [381, 554], [381, 499], [437, 501]]}, "center": {"227-258, T": [410, 528]}}, +{"id": 2582, "name": "Alfonse", "description": "Alfonse is a main character and protagonist in Fire Emblem Heroes. He is a prince of the Askran Kingdom and a member of the Order of Heroes. Fire Emblem Heroes is a free-to-play tactical role-playing game developed by Intelligent Systems and published by Nintendo for Android and iOS. The game is a mobile spin-off of the Fire Emblem series featuring its characters.", "links": {"website": ["https://fire-emblem-heroes.com/"], "subreddit": ["FireEmblemHeroes"], "discord": ["fireemblemheroes"]}, "path": {"227-258, T": [[-725, 175], [-731, 175], [-731, 178], [-732, 178], [-732, 180], [-733, 180], [-733, 187], [-734, 187], [-734, 189], [-721, 189], [-721, 175]]}, "center": {"227-258, T": [-727, 182]}}, +{"id": 2583, "name": "Hunter's Mark", "description": "This pixel art features a symbol from the videogame Bloodborne, a dystopian gothic/lovecraftian action RPG developed by Fromsoftware in coalition with Japan Studio and Sony, and released in 2015 for the PlayStation 4. \n\nThe pixel art features the Hunter's Mark, a well known symbol in the game which represents the player's faction.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/03/hunter.html?m=1"], "subreddit": ["bloodborne"], "discord": ["Pfcy2mfw"]}, "path": {"227-258, T": [[863, 11], [860, 1], [857, 11]]}, "center": {"227-258, T": [860, 9]}}, +{"id": 2584, "name": "Captain P33N", "description": "Captain Sparklez, X33N and PeteZahHutt", "links": {"subreddit": ["CaptainSparklez"]}, "path": {"162-258, T": [[-604, -368], [-586, -368], [-586, -360], [-595, -360], [-595, -352], [-604, -352]]}, "center": {"162-258, T": [-599, -363]}}, +{"id": 2586, "name": "Silent Fitz", "description": "Sylphiette (or Silent Fitz) is a fictional characters and one of the main protagonists of the Light Novel and Anime series Mushoku Tensei: Jobless Reincarnation.\n\nThis Pixel Art of Silent Fitz has been made by !tsabrody on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, the Mushoku Tensei Discord Server and and the sixfacedworld subreddit.\n\nWhite hair explanation S2E0: During the displacement incident, people were teleported randomly across the world, Sylphiette was teleported to the sky, close to Ars, the capital of the Asuran Kingdom, in an attempt to survive, Sylphiette exhausts all of her mana using wind magic, with white hair being one of the main indicatives of mana exhaustion, although her hair turned white permanently. (S3 Content)", "links": {"website": ["https://mushokutensei.fandom.com/wiki/Sylphiette"], "subreddit": ["sixfacedworld", "Isekai_Coalition"], "discord": ["mushokutensei", "wdWC6KYB"]}, "path": {"174-258, T": [[468, -935], [454, -935], [447, -949], [452, -950], [451, -955], [449, -957], [457, -965], [458, -970], [463, -971], [464, -965], [471, -964], [478, -958], [478, -955], [469, -949], [470, -935]]}, "center": {"174-258, T": [461, -955]}}, +{"id": 2587, "name": "Falklands War peace memorial", "description": "This peace memorial honours the lives lost on both sides of the 1982 Falklands War between Argentina and the United Kingdom over territorial control of the Falkland (Malvinas) Islands.\n\nThe initial sketch of the memorial was proposed by r/PlaceArg, which had the rifle with the helmet to represent the fallen, and the Falkland Islands behind this. Later on, it was proposed by r/UKOnPlace to add a flower. For the final design, a circle was placed behind the islands to prevent either flag from touching the territory.\n\nThis art piece serves as a sign of a peace agreement between the UK and Argentina, who had numerous conflicts throughout r/place 2023. The memorial was originally proposed to r/PlaceArg by an offshoot of users from r/ukplace, and then brought up again by r/ukplace during formal negotiations with r/PlaceArg. However, negotiations fell through; r/ukplace requested that r/PlaceArg remove the islands from their flag, but r/PlaceArg did not agree with this. This led to a series of conflicts in which r/ukplace removed the islands by force. A day later, a splinter group broke off from r/ukplace after being unsatisfied with their leadership, and formed a new server called r/UKOnPlace. r/PlaceArg approached r/UKOnPlace to restart negotiations, and the memorial was brought up once again. The two parties agreed to build the memorial as the only reference to the islands on either flag. They negotiated the design of the memorial and decided to draw it half in each flag, with r/ukplace pitching in later on as well.", "links": {"website": ["https://en.wikipedia.org/wiki/Falklands_War"], "subreddit": ["UKOnPlace", "PlaceArg", "ukplace"], "discord": ["ukonplace", "PlaceArg", "ukplace"]}, "path": {"229-258, T": [[1142, 877], [1141, 878], [1137, 878], [1137, 879], [1135, 879], [1135, 880], [1134, 880], [1134, 881], [1133, 881], [1133, 882], [1132, 882], [1132, 883], [1130, 883], [1130, 884], [1129, 884], [1129, 886], [1128, 886], [1128, 887], [1127, 887], [1127, 888], [1126, 888], [1126, 890], [1125, 890], [1125, 894], [1124, 894], [1124, 901], [1125, 901], [1125, 905], [1126, 905], [1126, 906], [1127, 906], [1127, 909], [1128, 909], [1128, 911], [1129, 911], [1129, 912], [1130, 912], [1130, 913], [1131, 913], [1131, 914], [1132, 914], [1132, 915], [1134, 915], [1134, 916], [1137, 916], [1137, 917], [1138, 917], [1138, 918], [1152, 918], [1152, 917], [1154, 917], [1154, 916], [1155, 916], [1156, 916], [1156, 915], [1157, 915], [1157, 914], [1159, 914], [1159, 913], [1160, 913], [1160, 912], [1162, 912], [1162, 911], [1163, 911], [1163, 910], [1164, 910], [1164, 908], [1165, 908], [1165, 905], [1166, 905], [1166, 903], [1167, 903], [1167, 893], [1166, 893], [1166, 890], [1165, 890], [1165, 889], [1164, 889], [1164, 888], [1163, 888], [1163, 887], [1163, 886], [1162, 886], [1162, 885], [1161, 885], [1161, 883], [1159, 883], [1159, 882], [1158, 882], [1158, 881], [1157, 881], [1157, 880], [1156, 880], [1155, 880], [1155, 879], [1153, 879], [1153, 878], [1150, 878], [1150, 877], [1147, 878], [1150, 877]]}, "center": {"229-258, T": [1145, 898]}}, +{"id": 2588, "name": "Bora (itally hall)", "description": "Bora, or \"Orange Tie\" is the honorary sixth member of the American five-member band, \"Tally Hall\". Bora's face is in the colours of the Italy flag as part of an alliance with Italy.", "links": {"subreddit": ["tallyhall"], "discord": ["jZjmeq86tV"]}, "path": {"227-258, T": [[80, 90], [80, 91], [79, 91], [79, 95], [80, 95], [80, 96], [80, 97], [79, 97], [79, 101], [84, 101], [84, 98], [83, 98], [83, 97], [82, 97], [82, 96], [82, 95], [83, 95], [83, 94], [84, 94], [84, 92], [83, 92], [83, 91], [82, 91], [82, 90]]}, "center": {"227-258, T": [81, 93]}}, +{"id": 2589, "name": "Omutatsu Cat,Shark Artwork", "description": "おむたつ (Omutatsu) Is written, as it's the name of the previous artist for TUYU to it's left.\nThe shark and cats are extra artwork that the TUYU community helped and kept in their area.", "links": {"subreddit": ["TUYU_official"], "discord": ["tuyu"]}, "path": {"227-258, T": [[-1076, 13], [-1076, -6], [-1110, -6], [-1110, 13]]}, "center": {"227-258, T": [-1093, 4]}}, +{"id": 2590, "name": "Hawaii: Part II", "description": "Hawaii: Part II is an album by \"Miracle Musical\", a project by Tally Hall member, Joe Hawley.", "links": {"website": ["http://www.hawaiipartii.com", "https://www.tallyhall.com"], "subreddit": ["miraclemusical"], "discord": ["jZjmeq86tV"]}, "path": {"227-258, T": [[-1373, 382], [-1349, 382], [-1349, 403], [-1373, 403]]}, "center": {"227-258, T": [-1361, 393]}}, +{"id": 2592, "name": "Ludwig, the Holy Blade", "description": "This pixel art features a character from the videogame Bloodborne, a dystopian gothic/lovecraftian action RPG developed by Fromsoftware in coalition with Japan Studio and Sony, and released in 2015 for the PlayStation 4. \n\nIt recreates the iconic shot of the boss Ludwig holding his weapon, the Holy Moonlight Sword, in front of him, covering half of his face during the cutscene transition that introduces the 2nd phase of the fight. \n\nA memorable moment in the game for it introduces a recurrent weapon that appears in several Fromsoftware games, being the Moonlight Greatsword, only in its Bloodborne iteration.\nThe artwork also features the Guidance Rune to the right, a symbol related to Ludwig the player obtains after defeating him.\n\nWe were able to place this piece thanks to the generous assistance of the Netherlands, Hollow Knight, Rain World and other r/place communities.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/10/ludwig.html?m=1", "https://www.bloodborne-wiki.com/2015/11/holy-moonlight-sword.html?m=1", "https://www.bloodborne-wiki.com/2015/11/guidance.html?m=1"], "subreddit": ["bloodborne"], "discord": ["Pfcy2mfw"]}, "path": {"227-258, T": [[-1300, -512], [-1262, -512], [-1262, -483], [-1300, -483]]}, "center": {"227-258, T": [-1281, -497]}}, +{"id": 2593, "name": "Romanian Trollface", "description": "The Romanian version of the Trollface meme. It is the symbol of r/okprietenretardat, the Romanian version of the meme subreddit r/okbuddyretard.", "links": {"subreddit": ["okprietenretardat"]}, "path": {"232-258, T": [[-293, 87], [-285, 86], [-279, 80], [-279, 79], [-282, 75], [-292, 75], [-294, 79], [-293, 82], [-294, 85]]}, "center": {"232-258, T": [-287, 80]}}, {"id": 2594, "name": "Vahnillys Pigeon", "description": "This Pigeon was made by Vahnilly, a german Twitch Streamer and Cosplayer together with her Community.\nThe Pigeon is also an established insider to whom emotes have been dedicated.", "links": {"website": ["https://twitch.tv/vahnilly"], "subreddit": ["vahnilly"], "discord": ["WsYthqS"]}, "path": {"217": [[1493, 9], [1493, 15], [1500, 15], [1500, 9], [1499, 9], [1495, 9], [1493, 9], [1497, 10], [1495, 9]]}, "center": {"217": [1496, 13]}}, -{"id": 2595, "name": "John Capcom", "description": "John Capcom is a representative of Monster Hunter. In the Bronies' Place Discord Server, he was very well beloved due to his energetic personality and has become an inside meme in the Bronies' Server. \n\nDue to his popularity in the server, the Bronies decided to make this art for him, as well as a subreddit dedicated to him.", "links": {"subreddit": ["johncapcom"]}, "path": {"227-258": [[-1252, 27], [-1252, 24], [-1252, 21], [-1252, 20], [-1247, 19], [-1246, 10], [-1218, 10], [-1217, 27]]}, "center": {"227-258": [-1234, 19]}}, -{"id": 2596, "name": "Moominhouse", "description": "Moominhouse is the house of the Moomin family in the Finnish series Moomins.", "links": {"website": ["https://www.moomin.com/fi/tutustu-muumilaaksoon/muumitalo/"]}, "path": {"227-258": [[84, -322], [56, -322], [56, -324], [58, -324], [57, -344], [56, -344], [56, -345], [55, -345], [55, -346], [55, -347], [56, -347], [56, -349], [57, -349], [57, -353], [60, -353], [63, -357], [64, -356], [70, -349], [71, -349], [71, -347], [72, -347], [72, -345], [71, -345], [71, -344], [70, -344], [70, -333], [71, -333], [75, -330], [76, -330], [76, -335], [77, -335], [77, -336], [79, -336], [79, -337], [82, -337], [82, -336], [84, -336], [84, -335], [85, -335], [85, -322], [56, -322]]}, "center": {"227-258": [65, -329]}}, -{"id": 2597, "name": "Mini Pepe", "description": "Mini Pepe a comic strip from the r/place MCR discord server who is the kidrobot plushie of him. Pepe is the skeleton featured on My Chemical Romance's album \"The Black Parade.\"", "links": {"subreddit": ["mychemicalromance"], "discord": ["VJKghe9e"]}, "path": {"227-258": [[-71, -983], [-77, -983], [-77, -995], [-71, -995], [-71, -984]]}, "center": {"227-258": [-74, -989]}}, -{"id": 2598, "name": "Gigachad Yagoo", "description": "A depiction of Motoaki Tanigo, (affectionately known as Yagoo by the fanbase), the CEO of cover corp, the company behind the VTuber agency hololive production as the gigachad meme.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"227-258": [[-106, -863], [-65, -863], [-65, -816], [-65, -817], [-68, -817], [-68, -816], [-69, -816], [-69, -812], [-68, -812], [-68, -811], [-67, -811], [-67, -810], [-66, -810], [-66, -809], [-65, -809], [-65, -805], [-75, -805], [-76, -805], [-76, -804], [-77, -804], [-77, -802], [-78, -802], [-78, -801], [-79, -801], [-79, -794], [-85, -794], [-85, -795], [-84, -795], [-84, -801], [-85, -801], [-85, -804], [-83, -804], [-83, -806], [-84, -806], [-84, -807], [-83, -807], [-82, -807], [-82, -808], [-80, -808], [-80, -809], [-80, -810], [-89, -810], [-89, -811], [-90, -811], [-90, -812], [-93, -812], [-93, -813], [-102, -813], [-102, -812], [-104, -812], [-104, -811], [-105, -811], [-107, -811], [-107, -810], [-108, -810], [-108, -809], [-109, -809], [-109, -808], [-110, -808], [-110, -802], [-111, -802], [-111, -797], [-112, -797], [-112, -807], [-116, -807], [-117, -807], [-117, -821], [-119, -821], [-119, -829], [-112, -836], [-110, -836], [-110, -837], [-106, -837], [-106, -859], [-106, -862]]}, "center": {"227-258": [-86, -832]}}, -{"id": 2599, "name": "Pikachu", "description": "Pikachu is an Electric-type mouse Pokemon from the Pokemon franchise. \n\nThe drawing was incorporated into the Romanian flag during its expansion, being placed on top of the ROM chocolate bar.", "links": {}, "path": {"232-258": [[-1499, 439], [-1497, 441], [-1494, 440], [-1489, 440], [-1488, 441], [-1484, 439], [-1481, 440], [-1479, 441], [-1480, 436], [-1477, 434], [-1472, 433], [-1470, 430], [-1471, 428], [-1474, 428], [-1475, 430], [-1480, 431], [-1485, 432], [-1484, 427], [-1489, 430], [-1494, 430], [-1498, 432], [-1500, 433], [-1498, 434], [-1498, 437]]}, "center": {"232-258": [-1489, 435]}}, -{"id": 2600, "name": "Flag of the Karelians", "description": "Karelians are a Finnic ethnic group who are indigenous to the historical region of Karelia.", "links": {"website": ["https://fennougria.ee/en/peoples/baltic-finnic-peoples/karelians/"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"160-258": [[131, -337], [137, -337], [137, -330], [136, -330], [136, -329], [135, -329], [135, -328], [134, -328], [133, -328], [133, -329], [132, -329], [132, -330], [131, -330]]}, "center": {"160-258": [134, -333]}}, -{"id": 2601, "name": "2B", "description": "2B from the famous game NieR: Automata", "links": {"subreddit": ["nier"]}, "path": {"227-258": [[-252, 829], [-244, 851], [-253, 901], [-281, 901], [-285, 847], [-283, 829], [-279, 829], [-276, 855], [-269, 847], [-268, 843], [-261, 842], [-261, 835], [-256, 832], [-255, 829]]}, "center": {"227-258": [-265, 870]}}, -{"id": 2603, "name": "Flag of Corsica", "description": "The flag of Corsica (in Corsican \"Bandera Corsa\") is the flag of the island of Corsica located in the mediterranean sea, the flag represents a Moor's head (in Corsican \"Testa Mora\") wich is the symbole of Corsica and was adopted in 1755 by Pasquale Paoli when Corsica became an independent state the same year.", "links": {"subreddit": ["placeCorse"], "discord": ["5zBBNrAJbN"]}, "path": {"138-258": [[-131, 480], [-98, 480], [-98, 498], [-131, 498]]}, "center": {"138-258": [-114, 489]}}, -{"id": 2604, "name": "BLACKPINK", "description": "A popular girl K-pop group. The members are, Jisoo, Jennie, Rosé and, Lisa. BLACKPINK debuted in 2016 with the album, Square One.", "links": {"website": ["https://www.blackpinkmusic.com/", "https://www.blackpinklive.com/"], "subreddit": ["BlackPink", "BeulPing"], "discord": ["qmGHwGq"]}, "path": {"170-258": [[658, 935], [704, 935], [704, 945], [658, 945]]}, "center": {"170-258": [681, 940]}}, -{"id": 2605, "name": "Article 5 [Freedom of expression, arts and sciences] of the German Grundgesetz", "description": "The Article 5 of the German ''Basic Law for the Federal Republic of Germany'' was voted on by the German South Flags Community. This is another allusion (reference to the Ban hammer) to the r/placeDE Administration Team, which threatens very strongly with timeouts/bans when people express their opinion on why there shouldn't be politics on the flag. People are also not allowed to express their opinion on who to attack or defend; it will be timed out. Since the foundation of the South Flags Community people in the r/placeDE Discord Server are not allowed to express their opinion on the South Flag.\n\nArticle 5\n[Freedom of expression, arts and sciences]\n\n(1) Every person shall have the right freely to express and disseminate his opinions in speech, writing and pictures and to inform himself without hindrance from generally accessible sources. Freedom of the press and freedom of reporting by means of broadcasts and films shall be guaranteed. There shall be no censorship.\n\n(2) These rights shall find their limits in the provisions of general laws, in provisions for the protection of young persons and in the right to personal honour.\n\n(3) Arts and sciences, research and teaching shall be free. The freedom of teaching shall not release any person \nfrom allegiance to the constitution.\n--\nr/placeDE has already apologized for exactly this topic in a statement.", "links": {"website": ["https://www.gesetze-im-internet.de/englisch_gg/englisch_gg.html#p0030"], "subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"227-258": [[-634, -72], [-634, -79], [-606, -79], [-606, -72]]}, "center": {"227-258": [-620, -75]}}, -{"id": 2606, "name": "Romanian MIG-21", "description": "A romanian MIG-21 NATO fighter plane.", "links": {"website": ["https://en.wikipedia.org/wiki/Mikoyan-Gurevich_MiG-21"], "discord": ["kFmemc52"]}, "path": {"207-258": [[-1485, 463], [-1485, 453], [-1483, 453], [-1470, 463], [-1455, 463], [-1455, 464], [-1451, 465], [-1445, 465], [-1453, 466], [-1455, 467], [-1470, 467], [-1483, 477], [-1485, 477], [-1485, 467], [-1490, 467], [-1494, 471], [-1492, 472], [-1496, 472], [-1496, 470], [-1495, 468], [-1498, 467], [-1500, 465], [-1497, 462], [-1497, 458], [-1492, 458], [-1494, 459], [-1491, 463]]}, "center": {"207-258": [-1478, 465]}}, -{"id": 2607, "name": "Youmu Konpaku", "description": "Youmu Konpaku is a half-phantom who first appeared as the Stage 5 Boss of the 7th installment of the Touhou Project series of games, Touhou Youyoumu ~ Perfect Cherry Blossom. She is available as a playable character in some of the later games in the series.", "links": {"website": ["https://en.touhouwiki.net/wiki/Youmu_Konpaku"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"190-258": [[204, 195], [204, 193], [205, 193], [205, 192], [208, 192], [208, 193], [209, 193], [209, 195], [208, 195], [208, 196], [207, 196], [207, 197], [205, 197], [205, 196], [205, 195]]}, "center": {"190-258": [206, 194]}}, -{"id": 2608, "name": "Tetris - Puyo Puyo alliance (Placetris)", "description": "Tetris is a puzzle video game created in 1985 by Alexey Pajitnov.\nPuyo Puyo is an action puzzle game series first released in 1991 by Compile.\nThis year, the Tetris and Puyo Puyo communities on discord came together to show their love for competitive puzzle gaming in pixel-art form. Among the game elements portrayed are a \"T-spin-double\", an \"Imperial Cross\" and a red and green Puyo.", "links": {"discord": ["c23tGEH9"]}, "path": {"227-258": [[-1256, -629], [-1226, -629], [-1226, -610], [-1259, -611], [-1258, -620], [-1255, -624]]}, "center": {"227-258": [-1241, -620]}}, -{"id": 2609, "name": "MiG-21 LanceR", "description": "Romanian version of the MiG-21M and MF/MF-75 upgraded to NATO standards in cooperation with Israeli company Elbit. The first aircraft flew in 1995.\n\nThe LanceRs were retired on 15 May 2023.", "links": {}, "path": {"227-258": [[-1484, 477], [-1470, 468], [-1455, 467], [-1451, 465], [-1469, 463], [-1483, 453], [-1485, 454], [-1485, 463], [-1491, 463], [-1492, 458], [-1497, 458], [-1497, 471], [-1492, 472], [-1490, 467], [-1485, 468]]}, "center": {"227-258": [-1478, 465]}}, -{"id": 2610, "name": "Xbox Logo", "description": "This is the Xbox Logo. The Xbox is a home video game console manufactured by Microsoft.", "links": {"website": ["https://www.xbox.com"], "subreddit": ["xbox", "xboxone"], "discord": ["xbox"]}, "path": {"219-258": [[-1252, 428], [-1253, 428], [-1260, 432], [-1263, 440], [-1259, 451], [-1250, 454], [-1242, 451], [-1238, 446], [-1238, 438], [-1241, 433], [-1248, 428]]}, "center": {"219-258": [-1250, 441]}}, -{"id": 2611, "name": "Girls' Frontline: Neural Cloud", "description": "Girls' Frontline: Neural Cloud or Neural Cloud, known as 少女前线:云图计划 or 云图计划 in Simplified Chinese, 雲圖計劃 in Traditional Chinese, 뉴럴 클라우드 in Korean, and ニューラルクラウド in Japanese, is a roguelike strategy game from Sunborn and a spin-off to Girls' Frontline. The player, as the Professor, must lead a group of Dolls called the Exiled in a digital world called Magrasea and save them from deletion by the Sanctifiers. Each Doll has their own abilities, upgrade them and build their base. Certain Dolls in Neural Cloud share their identity with characters from Girls' Frontline.", "links": {"website": ["https://42lab-us.sunborngame.com/"], "subreddit": ["GFLNeuralCloud"], "discord": ["3r5USfV"]}, "path": {"227-258": [[-110, 937], [-73, 937], [-73, 953], [-110, 953], [-110, 938]]}, "center": {"227-258": [-91, 945]}}, -{"id": 2612, "name": "Archimedes", "description": "Medic's pet bird from Team Fortress 2.", "links": {}, "path": {"227-258": [[-960, -955], [-957, -958], [-955, -958], [-952, -951], [-957, -949]]}, "center": {"227-258": [-956, -954]}}, -{"id": 2613, "name": "A bottle of Ace", "description": "Ace is a turkish bleach brand. Also its the logo and the name of a small streamer called NaClO.\nNaClO is the formula of bleach", "links": {"website": ["https://www.twitch.tv/naclo_00"]}, "path": {"250-258": [[1342, 31], [1346, 31], [1346, 42], [1342, 42]]}, "center": {"250-258": [1344, 37]}}, -{"id": 2614, "name": "Postauto", "description": "Postauto is a public transportation service in Switzerland. It comprises buses operated by the Swiss Post to transport passengers across various regions of the country. Postauto provides a reliable and convenient way to travel in both urban areas and remote regions. With a well-developed network of routes, Postauto offers an easy and affordable means of transportation for commuters, tourists, and locals alike.", "links": {"website": ["https://en.wikipedia.org/wiki/PostBus_Switzerland"], "subreddit": ["placeCH", "Switzerland"], "discord": ["vQ3P3DXf"]}, "path": {"229-258": [[1499, -719], [1446, -719], [1446, -718], [1445, -718], [1445, -717], [1444, -716], [1444, -715], [1443, -715], [1443, -696], [1444, -696], [1444, -695], [1462, -695], [1463, -695], [1463, -694], [1467, -694], [1467, -695], [1499, -695]]}, "center": {"229-258": [1465, -707]}}, -{"id": 2615, "name": "ROM chocolate bar", "description": "ROM is a Romanian rum chocolate brand owned by the Kandia Dulce company. From 1964, the ROM chocolate bar remained a well-known Romanian brand, incorporating the Romanian flag on its packaging, while its name refers to both Romania and its rum (\"rom\" in Romanian) taste.", "links": {}, "path": {"232-258": [[-1474, 451], [-1475, 439], [-1500, 440], [-1500, 451]]}, "center": {"232-258": [-1487, 445]}}, -{"id": 2616, "name": "r/IndiaPlace", "description": "Official Subreddit based on r/IndiaPlace", "links": {"subreddit": ["IndiaPlace"]}, "path": {"227-258": [[747, -271], [747, -255], [805, -254], [804, -271], [747, -273], [747, -272]]}, "center": {"227-258": [756, -264]}}, -{"id": 2617, "name": "Holy Moonlight Sword/Moonlight Greatsword", "description": "This pixel art features a weapon from the video games Bloodborne, Elden Ring and Dark Souls, a series of action RPGs developed by FromSoftware. \n\nThe artwork features the same sword divided in half. The left half having a cyan hue on the blade representing the Holy Moonlight Sword from Bloodborne. The right half presents a blue hue like the Moonlight Greatsword from Dark Souls and Elden Ring.\n\nThis artwork was made in coalition with the Berserk, Bloodborne, Elden Ring, Dark Souls, and several other r/place communities as part of the Hill of Swords project.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/11/holy-moonlight-sword.html?m=1", "https://eldenring.wiki.fextralife.com/Dark+Moon+Greatsword", "https://darksouls3.wiki.fextralife.com/Moonlight+Greatsword"], "subreddit": ["bloodborne", "darksouls", "eldenring", "Berserk"], "discord": ["Pfcy2mfw", "M699v8xSqz"]}, "path": {"166-195": [[601, 924], [601, 925], [602, 932], [598, 932], [598, 933], [600, 935], [600, 946], [604, 946], [608, 943], [608, 935], [610, 933], [610, 932], [606, 932], [606, 926], [607, 925], [607, 924]], "196-258": [[602, 923], [601, 924], [599, 924], [599, 925], [601, 927], [601, 929], [600, 930], [600, 932], [597, 935], [597, 936], [599, 936], [599, 946], [602, 946], [603, 945], [605, 945], [605, 936], [607, 936], [607, 935], [604, 932], [604, 926], [605, 925], [604, 924], [603, 924]]}, "center": {"166-195": [604, 936], "196-258": [602, 935]}}, -{"id": 2618, "name": "Art. 5 GG", "description": "Article 5 of the Grundgesetz (German constitution), guaranteeing free speech.\n\nThis artwork was created as a jab against mod conduct on r/placeDE, which was seen as overly restrictive by many Suedflagge members, many of which were banned for reasons not mentioned in the rules of r/placeDE.\n\nThe r/placeDE mod team put out a statement apologizing for this bans, stating their moderation team was unprepared for the rapid growth of the server, which led to moderation quality falling off.", "links": {"website": ["https://www.gesetze-im-internet.de/gg/BJNR000010949.html"]}, "path": {"227-258": [[-634, -79], [-634, -72], [-607, -72], [-607, -79]]}, "center": {"227-258": [-620, -75]}}, -{"id": 2619, "name": "The Threatened Swan", "description": "The Threatened Swan (Dutch: De bedreigde zwaan) is an oil painting of a mute swan made around 1650 by Dutch Golden Age painter Jan Asselijn. \n\nThe work is in the collection of the Rijksmuseum in Amsterdam in the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Threatened_Swan"]}, "path": {"227-258": [[-807, -497], [-807, -495], [-796, -503], [-789, -503], [-808, -501], [-808, -498], [-807, -503], [-806, -506], [-800, -510], [-793, -512], [-787, -514], [-777, -513], [-771, -510], [-767, -513], [-766, -515], [-761, -514], [-758, -517], [-754, -517], [-752, -516], [-741, -516], [-726, -527], [-726, -525], [-727, -523], [-725, -521], [-726, -519], [-731, -518], [-728, -515], [-730, -514], [-748, -510], [-749, -509], [-747, -505], [-745, -500], [-744, -500], [-744, -495], [-745, -493], [-750, -489], [-751, -483], [-752, -479], [-751, -478], [-743, -475], [-739, -472], [-743, -472], [-752, -477], [-754, -477], [-754, -478], [-756, -480], [-757, -480], [-758, -482], [-761, -482], [-761, -481], [-772, -479], [-775, -480], [-777, -476], [-778, -473], [-779, -471], [-785, -471], [-788, -472], [-784, -473], [-780, -475], [-776, -481], [-780, -481], [-782, -483], [-783, -485], [-782, -489], [-780, -489], [-776, -487], [-773, -488], [-772, -489], [-772, -491], [-774, -490], [-776, -491], [-774, -497], [-778, -494], [-782, -494], [-783, -494], [-787, -498], [-787, -499], [-789, -501], [-789, -502], [-795, -502], [-796, -501], [-798, -501], [-799, -500]]}, "center": {"227-258": [-760, -499]}}, -{"id": 2621, "name": "Silksong", "description": "An in-development title by Team Cherry as part of the Hollow Knight franchise. Set to release at some-point, some-time, somewhere.", "links": {"website": ["https://hollowknightsilksong.com/"], "subreddit": ["Silksong"], "discord": ["hollowknight"]}, "path": {"227-258": [[-1243, 464], [-1178, 464], [-1178, 487], [-1243, 487]]}, "center": {"227-258": [-1210, 476]}}, +{"id": 2595, "name": "John Capcom", "description": "John Capcom is a representative of Monster Hunter. In the Bronies' Place Discord Server, he was very well beloved due to his energetic personality and has become an inside meme in the Bronies' Server. \n\nDue to his popularity in the server, the Bronies decided to make this art for him, as well as a subreddit dedicated to him.", "links": {"subreddit": ["johncapcom"]}, "path": {"227-258, T": [[-1252, 27], [-1252, 24], [-1252, 21], [-1252, 20], [-1247, 19], [-1246, 10], [-1218, 10], [-1217, 27]]}, "center": {"227-258, T": [-1234, 19]}}, +{"id": 2596, "name": "Moominhouse", "description": "Moominhouse is the house of the Moomin family in the Finnish series Moomins.", "links": {"website": ["https://www.moomin.com/fi/tutustu-muumilaaksoon/muumitalo/"]}, "path": {"227-258, T": [[84, -322], [56, -322], [56, -324], [58, -324], [57, -344], [56, -344], [56, -345], [55, -345], [55, -346], [55, -347], [56, -347], [56, -349], [57, -349], [57, -353], [60, -353], [63, -357], [64, -356], [70, -349], [71, -349], [71, -347], [72, -347], [72, -345], [71, -345], [71, -344], [70, -344], [70, -333], [71, -333], [75, -330], [76, -330], [76, -335], [77, -335], [77, -336], [79, -336], [79, -337], [82, -337], [82, -336], [84, -336], [84, -335], [85, -335], [85, -322], [56, -322]]}, "center": {"227-258, T": [65, -329]}}, +{"id": 2597, "name": "Mini Pepe", "description": "Mini Pepe a comic strip from the r/place MCR discord server who is the kidrobot plushie of him. Pepe is the skeleton featured on My Chemical Romance's album \"The Black Parade.\"", "links": {"subreddit": ["mychemicalromance"], "discord": ["VJKghe9e"]}, "path": {"227-258, T": [[-71, -983], [-77, -983], [-77, -995], [-71, -995], [-71, -984]]}, "center": {"227-258, T": [-74, -989]}}, +{"id": 2598, "name": "Gigachad Yagoo", "description": "A depiction of Motoaki Tanigo, (affectionately known as Yagoo by the fanbase), the CEO of cover corp, the company behind the VTuber agency hololive production as the gigachad meme.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"227-258, T": [[-106, -863], [-65, -863], [-65, -816], [-65, -817], [-68, -817], [-68, -816], [-69, -816], [-69, -812], [-68, -812], [-68, -811], [-67, -811], [-67, -810], [-66, -810], [-66, -809], [-65, -809], [-65, -805], [-75, -805], [-76, -805], [-76, -804], [-77, -804], [-77, -802], [-78, -802], [-78, -801], [-79, -801], [-79, -794], [-85, -794], [-85, -795], [-84, -795], [-84, -801], [-85, -801], [-85, -804], [-83, -804], [-83, -806], [-84, -806], [-84, -807], [-83, -807], [-82, -807], [-82, -808], [-80, -808], [-80, -809], [-80, -810], [-89, -810], [-89, -811], [-90, -811], [-90, -812], [-93, -812], [-93, -813], [-102, -813], [-102, -812], [-104, -812], [-104, -811], [-105, -811], [-107, -811], [-107, -810], [-108, -810], [-108, -809], [-109, -809], [-109, -808], [-110, -808], [-110, -802], [-111, -802], [-111, -797], [-112, -797], [-112, -807], [-116, -807], [-117, -807], [-117, -821], [-119, -821], [-119, -829], [-112, -836], [-110, -836], [-110, -837], [-106, -837], [-106, -859], [-106, -862]]}, "center": {"227-258, T": [-86, -832]}}, +{"id": 2599, "name": "Pikachu", "description": "Pikachu is an Electric-type mouse Pokemon from the Pokemon franchise. \n\nThe drawing was incorporated into the Romanian flag during its expansion, being placed on top of the ROM chocolate bar.", "links": {}, "path": {"232-258, T": [[-1499, 439], [-1497, 441], [-1494, 440], [-1489, 440], [-1488, 441], [-1484, 439], [-1481, 440], [-1479, 441], [-1480, 436], [-1477, 434], [-1472, 433], [-1470, 430], [-1471, 428], [-1474, 428], [-1475, 430], [-1480, 431], [-1485, 432], [-1484, 427], [-1489, 430], [-1494, 430], [-1498, 432], [-1500, 433], [-1498, 434], [-1498, 437]]}, "center": {"232-258, T": [-1489, 435]}}, +{"id": 2600, "name": "Flag of the Karelians", "description": "Karelians are a Finnic ethnic group who are indigenous to the historical region of Karelia.", "links": {"website": ["https://fennougria.ee/en/peoples/baltic-finnic-peoples/karelians/"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"160-258, T": [[131, -337], [137, -337], [137, -330], [136, -330], [136, -329], [135, -329], [135, -328], [134, -328], [133, -328], [133, -329], [132, -329], [132, -330], [131, -330]]}, "center": {"160-258, T": [134, -333]}}, +{"id": 2601, "name": "2B", "description": "2B from the famous game NieR: Automata", "links": {"subreddit": ["nier"]}, "path": {"227-258, T": [[-252, 829], [-244, 851], [-253, 901], [-281, 901], [-285, 847], [-283, 829], [-279, 829], [-276, 855], [-269, 847], [-268, 843], [-261, 842], [-261, 835], [-256, 832], [-255, 829]]}, "center": {"227-258, T": [-265, 870]}}, +{"id": 2603, "name": "Flag of Corsica", "description": "The flag of Corsica (in Corsican \"Bandera Corsa\") is the flag of the island of Corsica located in the mediterranean sea, the flag represents a Moor's head (in Corsican \"Testa Mora\") wich is the symbole of Corsica and was adopted in 1755 by Pasquale Paoli when Corsica became an independent state the same year.", "links": {"subreddit": ["placeCorse"], "discord": ["5zBBNrAJbN"]}, "path": {"138-258, T": [[-131, 480], [-98, 480], [-98, 498], [-131, 498]]}, "center": {"138-258, T": [-114, 489]}}, +{"id": 2604, "name": "BLACKPINK", "description": "A popular girl K-pop group. The members are, Jisoo, Jennie, Rosé and, Lisa. BLACKPINK debuted in 2016 with the album, Square One.", "links": {"website": ["https://www.blackpinkmusic.com/", "https://www.blackpinklive.com/"], "subreddit": ["BlackPink", "BeulPing"], "discord": ["qmGHwGq"]}, "path": {"170-258, T": [[658, 935], [704, 935], [704, 945], [658, 945]]}, "center": {"170-258, T": [681, 940]}}, +{"id": 2605, "name": "Article 5 [Freedom of expression, arts and sciences] of the German Grundgesetz", "description": "The Article 5 of the German ''Basic Law for the Federal Republic of Germany'' was voted on by the German South Flags Community. This is another allusion (reference to the Ban hammer) to the r/placeDE Administration Team, which threatens very strongly with timeouts/bans when people express their opinion on why there shouldn't be politics on the flag. People are also not allowed to express their opinion on who to attack or defend; it will be timed out. Since the foundation of the South Flags Community people in the r/placeDE Discord Server are not allowed to express their opinion on the South Flag.\n\nArticle 5\n[Freedom of expression, arts and sciences]\n\n(1) Every person shall have the right freely to express and disseminate his opinions in speech, writing and pictures and to inform himself without hindrance from generally accessible sources. Freedom of the press and freedom of reporting by means of broadcasts and films shall be guaranteed. There shall be no censorship.\n\n(2) These rights shall find their limits in the provisions of general laws, in provisions for the protection of young persons and in the right to personal honour.\n\n(3) Arts and sciences, research and teaching shall be free. The freedom of teaching shall not release any person \nfrom allegiance to the constitution.\n--\nr/placeDE has already apologized for exactly this topic in a statement.", "links": {"website": ["https://www.gesetze-im-internet.de/englisch_gg/englisch_gg.html#p0030"], "subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"227-258, T": [[-634, -72], [-634, -79], [-606, -79], [-606, -72]]}, "center": {"227-258, T": [-620, -75]}}, +{"id": 2606, "name": "Romanian MIG-21", "description": "A romanian MIG-21 NATO fighter plane.", "links": {"website": ["https://en.wikipedia.org/wiki/Mikoyan-Gurevich_MiG-21"], "discord": ["kFmemc52"]}, "path": {"207-258, T": [[-1485, 463], [-1485, 453], [-1483, 453], [-1470, 463], [-1455, 463], [-1455, 464], [-1451, 465], [-1445, 465], [-1453, 466], [-1455, 467], [-1470, 467], [-1483, 477], [-1485, 477], [-1485, 467], [-1490, 467], [-1494, 471], [-1492, 472], [-1496, 472], [-1496, 470], [-1495, 468], [-1498, 467], [-1500, 465], [-1497, 462], [-1497, 458], [-1492, 458], [-1494, 459], [-1491, 463]]}, "center": {"207-258, T": [-1478, 465]}}, +{"id": 2607, "name": "Youmu Konpaku", "description": "Youmu Konpaku is a half-phantom who first appeared as the Stage 5 Boss of the 7th installment of the Touhou Project series of games, Touhou Youyoumu ~ Perfect Cherry Blossom. She is available as a playable character in some of the later games in the series.", "links": {"website": ["https://en.touhouwiki.net/wiki/Youmu_Konpaku"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"190-258, T": [[204, 195], [204, 193], [205, 193], [205, 192], [208, 192], [208, 193], [209, 193], [209, 195], [208, 195], [208, 196], [207, 196], [207, 197], [205, 197], [205, 196], [205, 195]]}, "center": {"190-258, T": [206, 194]}}, +{"id": 2608, "name": "Tetris - Puyo Puyo alliance (Placetris)", "description": "Tetris is a puzzle video game created in 1985 by Alexey Pajitnov.\nPuyo Puyo is an action puzzle game series first released in 1991 by Compile.\nThis year, the Tetris and Puyo Puyo communities on discord came together to show their love for competitive puzzle gaming in pixel-art form. Among the game elements portrayed are a \"T-spin-double\", an \"Imperial Cross\" and a red and green Puyo.", "links": {"discord": ["c23tGEH9"]}, "path": {"227-258, T": [[-1256, -629], [-1226, -629], [-1226, -610], [-1259, -611], [-1258, -620], [-1255, -624]]}, "center": {"227-258, T": [-1241, -620]}}, +{"id": 2609, "name": "MiG-21 LanceR", "description": "Romanian version of the MiG-21M and MF/MF-75 upgraded to NATO standards in cooperation with Israeli company Elbit. The first aircraft flew in 1995.\n\nThe LanceRs were retired on 15 May 2023.", "links": {}, "path": {"227-258, T": [[-1484, 477], [-1470, 468], [-1455, 467], [-1451, 465], [-1469, 463], [-1483, 453], [-1485, 454], [-1485, 463], [-1491, 463], [-1492, 458], [-1497, 458], [-1497, 471], [-1492, 472], [-1490, 467], [-1485, 468]]}, "center": {"227-258, T": [-1478, 465]}}, +{"id": 2610, "name": "Xbox Logo", "description": "This is the Xbox Logo. The Xbox is a home video game console manufactured by Microsoft.", "links": {"website": ["https://www.xbox.com"], "subreddit": ["xbox", "xboxone"], "discord": ["xbox"]}, "path": {"219-258, T": [[-1252, 428], [-1253, 428], [-1260, 432], [-1263, 440], [-1259, 451], [-1250, 454], [-1242, 451], [-1238, 446], [-1238, 438], [-1241, 433], [-1248, 428]]}, "center": {"219-258, T": [-1250, 441]}}, +{"id": 2611, "name": "Girls' Frontline: Neural Cloud", "description": "Girls' Frontline: Neural Cloud or Neural Cloud, known as 少女前线:云图计划 or 云图计划 in Simplified Chinese, 雲圖計劃 in Traditional Chinese, 뉴럴 클라우드 in Korean, and ニューラルクラウド in Japanese, is a roguelike strategy game from Sunborn and a spin-off to Girls' Frontline. The player, as the Professor, must lead a group of Dolls called the Exiled in a digital world called Magrasea and save them from deletion by the Sanctifiers. Each Doll has their own abilities, upgrade them and build their base. Certain Dolls in Neural Cloud share their identity with characters from Girls' Frontline.", "links": {"website": ["https://42lab-us.sunborngame.com/"], "subreddit": ["GFLNeuralCloud"], "discord": ["3r5USfV"]}, "path": {"227-258, T": [[-110, 937], [-73, 937], [-73, 953], [-110, 953], [-110, 938]]}, "center": {"227-258, T": [-91, 945]}}, +{"id": 2612, "name": "Archimedes", "description": "Medic's pet bird from Team Fortress 2.", "links": {}, "path": {"227-258, T": [[-960, -955], [-957, -958], [-955, -958], [-952, -951], [-957, -949]]}, "center": {"227-258, T": [-956, -954]}}, +{"id": 2613, "name": "A bottle of Ace", "description": "Ace is a turkish bleach brand. Also its the logo and the name of a small streamer called NaClO.\nNaClO is the formula of bleach", "links": {"website": ["https://www.twitch.tv/naclo_00"]}, "path": {"250-258, T": [[1342, 31], [1346, 31], [1346, 42], [1342, 42]]}, "center": {"250-258, T": [1344, 37]}}, +{"id": 2614, "name": "Postauto", "description": "Postauto is a public transportation service in Switzerland. It comprises buses operated by the Swiss Post to transport passengers across various regions of the country. Postauto provides a reliable and convenient way to travel in both urban areas and remote regions. With a well-developed network of routes, Postauto offers an easy and affordable means of transportation for commuters, tourists, and locals alike.", "links": {"website": ["https://en.wikipedia.org/wiki/PostBus_Switzerland"], "subreddit": ["placeCH", "Switzerland"], "discord": ["vQ3P3DXf"]}, "path": {"229-258, T": [[1499, -719], [1446, -719], [1446, -718], [1445, -718], [1445, -717], [1444, -716], [1444, -715], [1443, -715], [1443, -696], [1444, -696], [1444, -695], [1462, -695], [1463, -695], [1463, -694], [1467, -694], [1467, -695], [1499, -695]]}, "center": {"229-258, T": [1465, -707]}}, +{"id": 2615, "name": "ROM chocolate bar", "description": "ROM is a Romanian rum chocolate brand owned by the Kandia Dulce company. From 1964, the ROM chocolate bar remained a well-known Romanian brand, incorporating the Romanian flag on its packaging, while its name refers to both Romania and its rum (\"rom\" in Romanian) taste.", "links": {}, "path": {"232-258, T": [[-1474, 451], [-1475, 439], [-1500, 440], [-1500, 451]]}, "center": {"232-258, T": [-1487, 445]}}, +{"id": 2616, "name": "r/IndiaPlace", "description": "Official Subreddit based on r/IndiaPlace", "links": {"subreddit": ["IndiaPlace"]}, "path": {"227-258, T": [[747, -271], [747, -255], [805, -254], [804, -271], [747, -273], [747, -272]]}, "center": {"227-258, T": [756, -264]}}, +{"id": 2617, "name": "Holy Moonlight Sword/Moonlight Greatsword", "description": "This pixel art features a weapon from the video games Bloodborne, Elden Ring and Dark Souls, a series of action RPGs developed by FromSoftware. \n\nThe artwork features the same sword divided in half. The left half having a cyan hue on the blade representing the Holy Moonlight Sword from Bloodborne. The right half presents a blue hue like the Moonlight Greatsword from Dark Souls and Elden Ring.\n\nThis artwork was made in coalition with the Berserk, Bloodborne, Elden Ring, Dark Souls, and several other r/place communities as part of the Hill of Swords project.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/11/holy-moonlight-sword.html?m=1", "https://eldenring.wiki.fextralife.com/Dark+Moon+Greatsword", "https://darksouls3.wiki.fextralife.com/Moonlight+Greatsword"], "subreddit": ["bloodborne", "darksouls", "eldenring", "Berserk"], "discord": ["Pfcy2mfw", "M699v8xSqz"]}, "path": {"166-195": [[601, 924], [601, 925], [602, 932], [598, 932], [598, 933], [600, 935], [600, 946], [604, 946], [608, 943], [608, 935], [610, 933], [610, 932], [606, 932], [606, 926], [607, 925], [607, 924]], "196-258, T": [[602, 923], [601, 924], [599, 924], [599, 925], [601, 927], [601, 929], [600, 930], [600, 932], [597, 935], [597, 936], [599, 936], [599, 946], [602, 946], [603, 945], [605, 945], [605, 936], [607, 936], [607, 935], [604, 932], [604, 926], [605, 925], [604, 924], [603, 924]]}, "center": {"166-195": [604, 936], "196-258, T": [602, 935]}}, +{"id": 2618, "name": "Art. 5 GG", "description": "Article 5 of the Grundgesetz (German constitution), guaranteeing free speech.\n\nThis artwork was created as a jab against mod conduct on r/placeDE, which was seen as overly restrictive by many Suedflagge members, many of which were banned for reasons not mentioned in the rules of r/placeDE.\n\nThe r/placeDE mod team put out a statement apologizing for this bans, stating their moderation team was unprepared for the rapid growth of the server, which led to moderation quality falling off.", "links": {"website": ["https://www.gesetze-im-internet.de/gg/BJNR000010949.html"]}, "path": {"227-258, T": [[-634, -79], [-634, -72], [-607, -72], [-607, -79]]}, "center": {"227-258, T": [-620, -75]}}, +{"id": 2619, "name": "The Threatened Swan", "description": "The Threatened Swan (Dutch: De bedreigde zwaan) is an oil painting of a mute swan made around 1650 by Dutch Golden Age painter Jan Asselijn. \n\nThe work is in the collection of the Rijksmuseum in Amsterdam in the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Threatened_Swan"]}, "path": {"227-258, T": [[-807, -497], [-807, -495], [-796, -503], [-789, -503], [-808, -501], [-808, -498], [-807, -503], [-806, -506], [-800, -510], [-793, -512], [-787, -514], [-777, -513], [-771, -510], [-767, -513], [-766, -515], [-761, -514], [-758, -517], [-754, -517], [-752, -516], [-741, -516], [-726, -527], [-726, -525], [-727, -523], [-725, -521], [-726, -519], [-731, -518], [-728, -515], [-730, -514], [-748, -510], [-749, -509], [-747, -505], [-745, -500], [-744, -500], [-744, -495], [-745, -493], [-750, -489], [-751, -483], [-752, -479], [-751, -478], [-743, -475], [-739, -472], [-743, -472], [-752, -477], [-754, -477], [-754, -478], [-756, -480], [-757, -480], [-758, -482], [-761, -482], [-761, -481], [-772, -479], [-775, -480], [-777, -476], [-778, -473], [-779, -471], [-785, -471], [-788, -472], [-784, -473], [-780, -475], [-776, -481], [-780, -481], [-782, -483], [-783, -485], [-782, -489], [-780, -489], [-776, -487], [-773, -488], [-772, -489], [-772, -491], [-774, -490], [-776, -491], [-774, -497], [-778, -494], [-782, -494], [-783, -494], [-787, -498], [-787, -499], [-789, -501], [-789, -502], [-795, -502], [-796, -501], [-798, -501], [-799, -500]]}, "center": {"227-258, T": [-760, -499]}}, +{"id": 2621, "name": "Silksong", "description": "An in-development title by Team Cherry as part of the Hollow Knight franchise. Set to release at some-point, some-time, somewhere.", "links": {"website": ["https://hollowknightsilksong.com/"], "subreddit": ["Silksong"], "discord": ["hollowknight"]}, "path": {"227-258, T": [[-1243, 464], [-1178, 464], [-1178, 487], [-1243, 487]]}, "center": {"227-258, T": [-1210, 476]}}, {"id": 2622, "name": "HSV Logo", "description": "This Logo was Made by the HSV Discord Community. The HSV, also called Hamburger Sport Verein, is a football club in the German second division. The logo was made by \"Janosaft\" (HSV fan and tiktoker with mainly Hamburg content), the logo is guarded and maintained by a few people from the HSV Discord Community. NUR DER HSV!", "links": {"website": ["https://www.tiktok.com/@janosaft", "https://linktr.ee/janosaft"], "discord": ["hsv"]}, "path": {"227-247": [[-711, 864], [-711, 888], [-677, 888], [-677, 864]]}, "center": {"227-247": [-694, 876]}}, -{"id": 2623, "name": "Long Starlight", "description": "Long Starlight is a My Little Pony meme that includes the character of Starlight Glimmer with a long body.", "links": {"subreddit": ["mylittlepony"]}, "path": {"227-258": [[-1254, 24], [-1258, 26], [-1259, 24], [-1260, 17], [-1261, 3], [-1249, 2], [-1249, 5], [-1213, 6], [-1212, 18], [-1208, 21], [-1209, 28], [-1215, 28], [-1217, 20], [-1217, 10], [-1246, 10], [-1246, 18], [-1252, 18], [-1253, 24]]}, "center": {"227-258": [-1253, 11]}}, -{"id": 2624, "name": "Migo", "description": "A depiction of Hololive Talent Sakura Miko, affectionately nicknamed \"Migo\" by the VTubers Place discord. It was their biggest goal of this year's place as the same art was destroyed on the closing stages of Place 2022.\n\nPrior to its final placement, Migo was destroyed multiple times until the art was finally anchored down and protected until the end.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"227-258": [[-557, -316], [-530, -316], [-530, -335], [-531, -335], [-531, -337], [-532, -337], [-532, -340], [-533, -340], [-533, -343], [-534, -343], [-534, -344], [-535, -344], [-557, -344]]}, "center": {"227-258": [-543, -330]}}, -{"id": 2625, "name": "Bocchi the Rock! Logo", "description": "Bocchi the Rock! is a manga and anime by the same name.", "links": {"subreddit": ["BocchiTheRock", "Kessokuband"], "discord": ["9pMt5H2rs5", "kessokuband"]}, "path": {"148-258": [[281, -803], [281, -853], [272, -853], [272, -803]]}, "center": {"148-258": [277, -828]}}, -{"id": 2626, "name": "Bloodborne Card", "description": "This pixel art features several elements from the videogame Bloodborne, a dystopian gothic/lovecraftian action RPG developed by Fromsoftware in coalition with Japan Studio and Sony, and released in 2015 for the PlayStation 4. \n\nFrom left to right the following elements are depicted: The Hunter's Pistol as one of the most popular firearms in the game, the capital Bs of \"Blood\" and \"Borne\", the Hunter's Mark, a rune that represents the faction the player belongs to, and lastly the Saw Cleaver, one of the most iconic weapons in the game due to being one of the first weapons you can acquire and because of its efficiency, thus earning its massive popularity.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/03/hunter-pistol.html?m=1", "https://www.bloodborne-wiki.com/2015/03/hunter.html?m=1", "https://www.bloodborne-wiki.com/2015/03/saw-cleaver.html?m=1"], "subreddit": ["bloodborne"], "discord": ["Pfcy2mfw"]}, "path": {"227-258": [[73, -628], [131, -628], [131, -611], [73, -611]]}, "center": {"227-258": [102, -619]}}, -{"id": 2627, "name": "Chloe and Gura Vtubers Place Mural", "description": "A depiction of Hololive English -Myth- talent Gawr Gura (right) and Hololive 6th Generation Talent Sakamata Chloe (left) holding a banner between their mouths with the writing VTPL (standing for Vtubers Place).", "links": {"website": ["https://www.youtube.com/channel/UCIBY1ollUsauvVi4hW4cumw", "https://www.youtube.com/channel/UCoSrY_IQQVpmIRZ9Xf-y93g"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"142-258": [[-285, -911], [-226, -911], [-226, -856], [-285, -856]]}, "center": {"142-258": [-255, -883]}}, -{"id": 2628, "name": "sukiiXD", "description": "sukiiXD is a Twitch emote from German streamer sukidingels, who had a lot of fun on r/place 2023. For her \"Hold the line\" mentality ending in 24h and 32h non-stop streams to support German r/place communities and artworks, she was rewarded with her emote on the German flag.", "links": {"website": ["https://www.twitch.tv/sukidingels", "https://twitchemotes.com/channels/43872967"], "subreddit": ["placeDE"], "discord": ["DTXx8FTsKS"]}, "path": {"208-258": [[-1137, -941], [-1137, -938], [-1139, -936], [-1139, -927], [-1137, -923], [-1137, -922], [-1140, -919], [-1140, -910], [-1107, -910], [-1107, -925], [-1106, -926], [-1106, -929], [-1109, -934], [-1116, -941], [-1116, -944], [-1123, -944], [-1125, -942], [-1132, -942], [-1132, -941]]}, "center": {"208-258": [-1122, -926]}}, -{"id": 2629, "name": "Het Klokhuis", "description": "Het Klokhuis is a popular educational show covering a wide range of subjects, mainly things around science and such. It is usually presented on the Tv-channel \"Zapp\".", "links": {"website": ["https://hetklokhuis.nl/", "https://www.zapp.nl/"]}, "path": {"227-258": [[-1479, -533], [-1476, -533], [-1476, -527], [-1475, -528], [-1471, -528], [-1470, -527], [-1469, -527], [-1468, -526], [-1467, -525], [-1466, -524], [-1465, -523], [-1464, -522], [-1464, -520], [-1465, -519], [-1466, -518], [-1467, -517], [-1468, -517], [-1469, -516], [-1470, -515], [-1470, -514], [-1469, -513], [-1469, -509], [-1468, -508], [-1468, -504], [-1467, -503], [-1467, -502], [-1468, -512], [-1466, -501], [-1466, -500], [-1467, -499], [-1468, -498], [-1470, -498], [-1471, -497], [-1484, -497], [-1485, -498], [-1486, -498], [-1487, -499], [-1488, -500], [-1489, -501], [-1489, -503], [-1488, -504], [-1488, -506], [-1487, -507], [-1487, -509], [-1486, -510], [-1486, -511], [-1485, -512], [-1485, -516], [-1486, -517], [-1487, -518], [-1486, -519], [-1490, -519], [-1491, -520], [-1491, -522], [-1490, -523], [-1489, -524], [-1488, -525], [-1487, -526], [-1486, -527], [-1485, -528], [-1480, -528], [-1479, -527]]}, "center": {"227-258": [-1478, -506]}}, -{"id": 2630, "name": "Choualbox", "description": "French community where memes and funny pictures are created and shared.", "links": {"website": ["https://www.choualbox.com"]}, "path": {"200-258": [[-1009, -281], [-1025, -281], [-1025, -272], [-1009, -272]]}, "center": {"200-258": [-1017, -276]}}, -{"id": 2631, "name": "Noblezito's Crown", "description": "Noblezito's Crown made by his community and allies! 👑 ❤", "links": {"website": ["https://twitch.tv/noblezito"], "subreddit": ["Noblezito"], "discord": ["XcaUEgN"]}, "path": {"149-258": [[811, 416], [814, 421], [819, 416], [820, 432], [817, 435], [804, 435], [800, 431], [800, 416], [805, 421], [806, 421], [809, 416]]}, "center": {"149-258": [810, 428]}}, -{"id": 2632, "name": "\"Gay Furbies\"", "description": "Emotional Support Demon is a mascot of Swedish YouTuber \"The Click\".\n\nProud to be cringe.\n\nSaltytheAlien is a Streamer friend of The Click. His mascot is an alien.", "links": {"website": ["https://www.youtube.com/@TheClick"], "subreddit": ["TheClickOwO"], "discord": ["theclick"]}, "path": {"61-71": [[617, 245], [710, 245], [711, 249], [713, 255], [716, 258], [720, 261], [720, 262], [617, 262]], "86-259": [[617, 245], [709, 245], [710, 250], [714, 256], [718, 261], [719, 262], [616, 262], [616, 245]]}, "center": {"61-71": [669, 254], "86-259": [668, 254]}}, -{"id": 2633, "name": "r/Peru", "description": "The website to the r/Peru Discord Server. And three bottles of Inca Kola, a soft drink that was created in Peru in 1935. The soda has a sweet, fruity flavor that resembles its main ingredient, lemon verbena.", "links": {"subreddit": ["peru"], "discord": ["rperu"]}, "path": {"97-258": [[-141, 87], [-49, 87], [-49, 96], [-141, 96]]}, "center": {"97-258": [-95, 92]}}, -{"id": 2634, "name": "YNWA", "description": "A mural linking to the lines from a famous Liverpool FC anthem called You'll Never Walk Alone which is sung at the beginning of every Liverpool FC home game.", "links": {"website": ["https://www.youtube.com/watch?v=Go-jJlGd1so"], "subreddit": ["LiverpoolFC"], "discord": ["Jg3sAmU9G"]}, "path": {"202-258": [[1414, -6], [1414, 7], [1454, 7], [1454, -1], [1453, -2], [1452, -3], [1451, -4], [1450, -5], [1450, -6]]}, "center": {"202-258": [1434, 1]}}, -{"id": 2635, "name": "The Isekai Coalition", "description": "A group of allied isekai anime characters in close proximity to one another including: \n-Aqua: Konosuba \n-Emilia: Re:Zero \n-Albedo: Overlord\n-Raphtalia: The Rising of the Shield Hero \n-Fitz: Mushoku Tensei\n-Tanya: Saga of Tanya the Evil\n-Milim: Tensei Slime\n-Myne: Ascendance of a Bookworm\n-Kumoko: Kumo Desu Ga, Nani Ka?\n-Bocchi: Bocchi the Rock (despite not being an isekai anime)", "links": {"subreddit": ["Isekai_Coalition"], "discord": ["nDpYmqrM"]}, "path": {"191-258": [[472, -1000], [467, -994], [461, -998], [459, -1000], [433, -1000], [430, -998], [422, -1000], [414, -994], [414, -984], [416, -978], [415, -974], [419, -973], [418, -970], [415, -965], [416, -961], [419, -959], [418, -954], [419, -952], [418, -948], [414, -943], [413, -941], [426, -940], [428, -936], [468, -935], [470, -941], [469, -948], [474, -955], [483, -958], [485, -966], [487, -973], [488, -993], [485, -1000]]}, "center": {"191-258": [448, -970]}}, -{"id": 2636, "name": "Apple Sidra (蘋果西打)", "description": "A popular apple-flavoured Taiwanese soft drink.", "links": {"website": ["https://en.wikipedia.org/wiki/Apple_Sidra"], "subreddit": ["placeTW"], "discord": ["8xSQKCHSnT"]}, "path": {"227-258": [[-63, 574], [-71, 574], [-70, 585], [-63, 586]]}, "center": {"227-258": [-67, 579]}}, -{"id": 2637, "name": "Grateful Dead Logo", "description": "The logo of the popular psychedelic rock band.", "links": {"subreddit": ["gratefuldead"]}, "path": {"156-258": [[373, 35], [367, 40], [367, 50], [374, 56], [384, 56], [391, 49], [391, 40], [386, 34], [374, 34]]}, "center": {"156-258": [379, 45]}}, -{"id": 2638, "name": "Community (TV Show)", "description": "2009 TV show about ex lawyer Jeff Winger having to enroll into Greendale Community College", "links": {"subreddit": ["community"]}, "path": {"227-251": [[-710, 801], [-694, 801], [-694, 813], [-710, 813]]}, "center": {"227-251": [-702, 807]}}, -{"id": 2639, "name": "Bran Castle", "description": "Bran (Slavonic name meaning \"gate\") is a castle in Bran village, Brașov county, Romania. It was built by the Teutonic knights in the 13th century and later passed to the Saxons of Kronstadt (the modern-day city of Brașov). Historically it was the point where the border with Wallachia was kept.\n\nThe castle became famous for its association with \"Dracula's castle\" though there is no connection between Bran and Stoker's novel, nor with the Wallachian Voivode Vlad III Dracula.", "links": {"website": ["https://bran-castle.com/"]}, "path": {"232-258": [[-311, 91], [-311, 98], [-319, 107], [-317, 109], [-317, 115], [-324, 107], [-330, 114], [-335, 109], [-343, 117], [-340, 118], [-340, 128], [-340, 131], [-323, 135], [-302, 136], [-304, 108], [-301, 106], [-310, 98], [-309, 96], [-305, 96], [-305, 91]]}, "center": {"232-258": [-324, 123]}}, -{"id": 2640, "name": "BaeRyS", "description": "One of the well-known dynamic duos in the Hololive community. They started this dynamic roleplaying as a married couple in one of their Minecraft streams back in 2021 and since then they've became quite the comedy duo with all their antics and their never ending marriage-divorce gimmick. Even with their comedic moments together, these two are great friends and can be very wholesome together, so far as to gift themselves on their birthdays! If you see them in a stream together, or chatting in their streams or even interacting in Twitter, you're in for a ride!", "links": {"website": ["https://shipping.fandom.com/wiki/BaeRyS"], "subreddit": ["Hololive"], "discord": ["irystocrats"]}, "path": {"227-258": [[-582, -250], [-582, -253], [-578, -256], [-579, -257], [-578, -260], [-578, -262], [-576, -263], [-574, -266], [-571, -266], [-570, -266], [-570, -268], [-569, -269], [-568, -270], [-567, -270], [-566, -270], [-564, -270], [-563, -264], [-560, -264], [-559, -269], [-552, -270], [-546, -270], [-542, -265], [-533, -264], [-529, -261], [-529, -258], [-529, -257], [-536, -257], [-537, -257], [-537, -250]]}, "center": {"227-258": [-551, -260]}}, -{"id": 2641, "name": "My Chemical Romance, Ghost, and Mindless Self Indulgence", "description": "Another sect of the Music Union, these plots contain murals dedicated to My Chemical Romance, Ghost, and Mindless Self Indulgence.", "links": {"subreddit": ["mychemicalromance", "ghostband", "msi"], "discord": ["VJKghe9e"]}, "path": {"227-258": [[1341, 4], [1342, -5], [1390, -5], [1389, 6], [1377, 6], [1378, 27], [1357, 27], [1357, 6], [1356, 6], [1352, 6]]}, "center": {"227-258": [1367, 17]}}, -{"id": 2642, "name": "Pizza Tower", "description": "This is the Pizza Tower from the game Pizza Tower, it is a tall purple building of which the events of Pizza Tower take place.", "links": {"website": ["https://pizzatower.fandom.com"], "subreddit": ["PizzaTower"]}, "path": {"164-258": [[-864, -227], [-890, -227], [-890, -228], [-889, -228], [-889, -231], [-890, -231], [-891, -232], [-891, -233], [-890, -234], [-889, -234], [-889, -239], [-890, -240], [-890, -242], [-889, -242], [-889, -243], [-885, -243], [-885, -249], [-883, -249], [-883, -248], [-864, -248]]}, "center": {"164-258": [-876, -238]}}, -{"id": 2643, "name": "Snufkin", "description": "Snufkin is a character in the Finnish Moomin series. He is the best friend of Moomintroll, the series' main protagonist. He lives a nomadic lifestyle.", "links": {"website": ["https://www.moomin.com/fi/hahmot/nuuskamuikkunen/"]}, "path": {"227-258": [[97, -279], [89, -279], [89, -280], [90, -281], [88, -281], [88, -282], [87, -282], [87, -286], [88, -286], [88, -288], [87, -288], [87, -290], [86, -290], [86, -293], [83, -293], [83, -296], [84, -296], [84, -297], [87, -297], [88, -298], [87, -300], [86, -301], [86, -303], [87, -304], [89, -304], [89, -303], [90, -301], [91, -303], [92, -304], [95, -305], [95, -304], [96, -303], [97, -300], [98, -298], [100, -297], [103, -296], [104, -294], [102, -293], [101, -292], [100, -291], [100, -289], [102, -288], [102, -284], [100, -281], [99, -281], [99, -280], [99, -279], [89, -279]]}, "center": {"227-258": [93, -293]}}, -{"id": 2644, "name": "GNU Terry", "description": "Sir Terry Pratchett is the author of the Discworld series of fantasy novels.\n\nGNU is a code used by a communication system (called \"Clacks\") in the books and means that the message will be transmitted forever. The people on the Clacks honor their deceased by sending their names with this code around their system. Because so stated in the book: \"A man is not dead while his name is still spoken.\" Thus, \"GNU Terry\" means the name of the author (which is deceased) should be forever transmitted.\n\nThe image also depicts a recurring Discworld character, the Death of Rats (aka the Grim Squeaker), a skeletal rat wearing a dark robe and carrying a tiny scythe.", "links": {"subreddit": ["discworld"]}, "path": {"180-258": [[-1137, 334], [-1137, 370], [-1106, 370], [-1106, 334], [-1107, 334]]}, "center": {"180-258": [-1121, 352]}}, -{"id": 2645, "name": "LuckyV GTA Roleplay Server", "description": "The Logo of the German LuckyV Roleplay Server", "links": {"website": ["https://luckyv.de/"], "subreddit": ["luckyvde"], "discord": ["3nDEVdG"]}, "path": {"227-258": [[-1354, 805], [-1354, 815], [-1355, 815], [-1355, 819], [-1354, 819], [-1353, 827], [-1343, 831], [-1335, 843], [-1333, 844], [-1330, 844], [-1326, 832], [-1321, 832], [-1311, 822], [-1311, 817], [-1316, 816], [-1312, 804], [-1354, 804]]}, "center": {"227-258": [-1333, 819]}}, -{"id": 2646, "name": "Austrian and German Countryballs", "description": "Countryballs are a popular internet meme, depicting nearly all nations in a spherical shape. The phenomenon was created in 2009 by a British user on the German website https://Krautchan.net\n\n The stories featuring the Countryballs ironize national stereotypes , international relations, current national or international situations and various historical conflicts.\n\nThe two countryballs symbolize the friendship of Germany and Austria during r/place 2023\n\nidea: @ das_lenny\ndesign: @ kay, @Bebedi\nImplemented by: abteilung südflagge and r/place Austria", "links": {"website": ["https://knowyourmeme.com/memes/polandball", "https://en.wikipedia.org/wiki/Countryballs"], "subreddit": ["placeAustria", "placesuedflagge"], "discord": ["GYFJWyuy", "xHww3sEk"]}, "path": {"205-258": [[-1025, -37], [-987, -37], [-984, -39], [-982, -40], [-973, -40], [-973, -49], [-975, -51], [-976, -51], [-981, -46], [-981, -48], [-985, -53], [-988, -55], [-995, -55], [-999, -52], [-1003, -56], [-1007, -72], [-1010, -72], [-1010, -70], [-1015, -70], [-1024, -65], [-1021, -56], [-1010, -60], [-1009, -60], [-1006, -49], [-1006, -47], [-1009, -47], [-1010, -49], [-1014, -54], [-1024, -54], [-1030, -46], [-1031, -46], [-1031, -48], [-1034, -51], [-1036, -51], [-1039, -48], [-1038, -47], [-1038, -40], [-1031, -40], [-1032, -42], [-1031, -43], [-1027, -37]]}, "center": {"205-258": [-992, -46]}}, +{"id": 2623, "name": "Long Starlight", "description": "Long Starlight is a My Little Pony meme that includes the character of Starlight Glimmer with a long body.", "links": {"subreddit": ["mylittlepony"]}, "path": {"227-258, T": [[-1254, 24], [-1258, 26], [-1259, 24], [-1260, 17], [-1261, 3], [-1249, 2], [-1249, 5], [-1213, 6], [-1212, 18], [-1208, 21], [-1209, 28], [-1215, 28], [-1217, 20], [-1217, 10], [-1246, 10], [-1246, 18], [-1252, 18], [-1253, 24]]}, "center": {"227-258, T": [-1253, 11]}}, +{"id": 2624, "name": "Migo", "description": "A depiction of Hololive Talent Sakura Miko, affectionately nicknamed \"Migo\" by the VTubers Place discord. It was their biggest goal of this year's place as the same art was destroyed on the closing stages of Place 2022.\n\nPrior to its final placement, Migo was destroyed multiple times until the art was finally anchored down and protected until the end.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"227-258, T": [[-557, -316], [-530, -316], [-530, -335], [-531, -335], [-531, -337], [-532, -337], [-532, -340], [-533, -340], [-533, -343], [-534, -343], [-534, -344], [-535, -344], [-557, -344]]}, "center": {"227-258, T": [-543, -330]}}, +{"id": 2625, "name": "Bocchi the Rock! Logo", "description": "Bocchi the Rock! is a manga and anime by the same name.", "links": {"subreddit": ["BocchiTheRock", "Kessokuband"], "discord": ["9pMt5H2rs5", "kessokuband"]}, "path": {"148-258, T": [[281, -803], [281, -853], [272, -853], [272, -803]]}, "center": {"148-258, T": [277, -828]}}, +{"id": 2626, "name": "Bloodborne Card", "description": "This pixel art features several elements from the videogame Bloodborne, a dystopian gothic/lovecraftian action RPG developed by Fromsoftware in coalition with Japan Studio and Sony, and released in 2015 for the PlayStation 4. \n\nFrom left to right the following elements are depicted: The Hunter's Pistol as one of the most popular firearms in the game, the capital Bs of \"Blood\" and \"Borne\", the Hunter's Mark, a rune that represents the faction the player belongs to, and lastly the Saw Cleaver, one of the most iconic weapons in the game due to being one of the first weapons you can acquire and because of its efficiency, thus earning its massive popularity.", "links": {"website": ["https://www.bloodborne-wiki.com/2015/03/hunter-pistol.html?m=1", "https://www.bloodborne-wiki.com/2015/03/hunter.html?m=1", "https://www.bloodborne-wiki.com/2015/03/saw-cleaver.html?m=1"], "subreddit": ["bloodborne"], "discord": ["Pfcy2mfw"]}, "path": {"227-258, T": [[73, -628], [131, -628], [131, -611], [73, -611]]}, "center": {"227-258, T": [102, -619]}}, +{"id": 2627, "name": "Chloe and Gura Vtubers Place Mural", "description": "A depiction of Hololive English -Myth- talent Gawr Gura (right) and Hololive 6th Generation Talent Sakamata Chloe (left) holding a banner between their mouths with the writing VTPL (standing for Vtubers Place).", "links": {"website": ["https://www.youtube.com/channel/UCIBY1ollUsauvVi4hW4cumw", "https://www.youtube.com/channel/UCoSrY_IQQVpmIRZ9Xf-y93g"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"142-258, T": [[-285, -911], [-226, -911], [-226, -856], [-285, -856]]}, "center": {"142-258, T": [-255, -883]}}, +{"id": 2628, "name": "sukiiXD", "description": "sukiiXD is a Twitch emote from German streamer sukidingels, who had a lot of fun on r/place 2023. For her \"Hold the line\" mentality ending in 24h and 32h non-stop streams to support German r/place communities and artworks, she was rewarded with her emote on the German flag.", "links": {"website": ["https://www.twitch.tv/sukidingels", "https://twitchemotes.com/channels/43872967"], "subreddit": ["placeDE"], "discord": ["DTXx8FTsKS"]}, "path": {"208-258, T": [[-1137, -941], [-1137, -938], [-1139, -936], [-1139, -927], [-1137, -923], [-1137, -922], [-1140, -919], [-1140, -910], [-1107, -910], [-1107, -925], [-1106, -926], [-1106, -929], [-1109, -934], [-1116, -941], [-1116, -944], [-1123, -944], [-1125, -942], [-1132, -942], [-1132, -941]]}, "center": {"208-258, T": [-1122, -926]}}, +{"id": 2629, "name": "Het Klokhuis", "description": "Het Klokhuis is a popular educational show covering a wide range of subjects, mainly things around science and such. It is usually presented on the Tv-channel \"Zapp\".", "links": {"website": ["https://hetklokhuis.nl/", "https://www.zapp.nl/"]}, "path": {"227-258, T": [[-1479, -533], [-1476, -533], [-1476, -527], [-1475, -528], [-1471, -528], [-1470, -527], [-1469, -527], [-1468, -526], [-1467, -525], [-1466, -524], [-1465, -523], [-1464, -522], [-1464, -520], [-1465, -519], [-1466, -518], [-1467, -517], [-1468, -517], [-1469, -516], [-1470, -515], [-1470, -514], [-1469, -513], [-1469, -509], [-1468, -508], [-1468, -504], [-1467, -503], [-1467, -502], [-1468, -512], [-1466, -501], [-1466, -500], [-1467, -499], [-1468, -498], [-1470, -498], [-1471, -497], [-1484, -497], [-1485, -498], [-1486, -498], [-1487, -499], [-1488, -500], [-1489, -501], [-1489, -503], [-1488, -504], [-1488, -506], [-1487, -507], [-1487, -509], [-1486, -510], [-1486, -511], [-1485, -512], [-1485, -516], [-1486, -517], [-1487, -518], [-1486, -519], [-1490, -519], [-1491, -520], [-1491, -522], [-1490, -523], [-1489, -524], [-1488, -525], [-1487, -526], [-1486, -527], [-1485, -528], [-1480, -528], [-1479, -527]]}, "center": {"227-258, T": [-1478, -506]}}, +{"id": 2630, "name": "Choualbox", "description": "French community where memes and funny pictures are created and shared.", "links": {"website": ["https://www.choualbox.com"]}, "path": {"200-258, T": [[-1009, -281], [-1025, -281], [-1025, -272], [-1009, -272]]}, "center": {"200-258, T": [-1017, -276]}}, +{"id": 2631, "name": "Noblezito's Crown", "description": "Noblezito's Crown made by his community and allies! 👑 ❤", "links": {"website": ["https://twitch.tv/noblezito"], "subreddit": ["Noblezito"], "discord": ["XcaUEgN"]}, "path": {"149-258, T": [[811, 416], [814, 421], [819, 416], [820, 432], [817, 435], [804, 435], [800, 431], [800, 416], [805, 421], [806, 421], [809, 416]]}, "center": {"149-258, T": [810, 428]}}, +{"id": 2632, "name": "\"Gay Furbies\"", "description": "Emotional Support Demon is a mascot of Swedish YouTuber \"The Click\".\n\nProud to be cringe.\n\nSaltytheAlien is a Streamer friend of The Click. His mascot is an alien.", "links": {"website": ["https://www.youtube.com/@TheClick"], "subreddit": ["TheClickOwO"], "discord": ["theclick"]}, "path": {"61-71": [[617, 245], [710, 245], [711, 249], [713, 255], [716, 258], [720, 261], [720, 262], [617, 262]], "86-259, T": [[617, 245], [709, 245], [710, 250], [714, 256], [718, 261], [719, 262], [616, 262], [616, 245]]}, "center": {"61-71": [669, 254], "86-259, T": [668, 254]}}, +{"id": 2633, "name": "r/Peru", "description": "The website to the r/Peru Discord Server. And three bottles of Inca Kola, a soft drink that was created in Peru in 1935. The soda has a sweet, fruity flavor that resembles its main ingredient, lemon verbena.", "links": {"subreddit": ["peru"], "discord": ["rperu"]}, "path": {"97-258, T": [[-141, 87], [-49, 87], [-49, 96], [-141, 96]]}, "center": {"97-258, T": [-95, 92]}}, +{"id": 2634, "name": "YNWA", "description": "A mural linking to the lines from a famous Liverpool FC anthem called You'll Never Walk Alone which is sung at the beginning of every Liverpool FC home game.", "links": {"website": ["https://www.youtube.com/watch?v=Go-jJlGd1so"], "subreddit": ["LiverpoolFC"], "discord": ["Jg3sAmU9G"]}, "path": {"202-258, T": [[1414, -6], [1414, 7], [1454, 7], [1454, -1], [1453, -2], [1452, -3], [1451, -4], [1450, -5], [1450, -6]]}, "center": {"202-258, T": [1434, 1]}}, +{"id": 2635, "name": "The Isekai Coalition", "description": "A group of allied isekai anime characters in close proximity to one another including: \n-Aqua: Konosuba \n-Emilia: Re:Zero \n-Albedo: Overlord\n-Raphtalia: The Rising of the Shield Hero \n-Fitz: Mushoku Tensei\n-Tanya: Saga of Tanya the Evil\n-Milim: Tensei Slime\n-Myne: Ascendance of a Bookworm\n-Kumoko: Kumo Desu Ga, Nani Ka?\n-Bocchi: Bocchi the Rock (despite not being an isekai anime)", "links": {"subreddit": ["Isekai_Coalition"], "discord": ["nDpYmqrM"]}, "path": {"191-258, T": [[472, -1000], [467, -994], [461, -998], [459, -1000], [433, -1000], [430, -998], [422, -1000], [414, -994], [414, -984], [416, -978], [415, -974], [419, -973], [418, -970], [415, -965], [416, -961], [419, -959], [418, -954], [419, -952], [418, -948], [414, -943], [413, -941], [426, -940], [428, -936], [468, -935], [470, -941], [469, -948], [474, -955], [483, -958], [485, -966], [487, -973], [488, -993], [485, -1000]]}, "center": {"191-258, T": [448, -970]}}, +{"id": 2636, "name": "Apple Sidra (蘋果西打)", "description": "A popular apple-flavoured Taiwanese soft drink.", "links": {"website": ["https://en.wikipedia.org/wiki/Apple_Sidra"], "subreddit": ["placeTW"], "discord": ["8xSQKCHSnT"]}, "path": {"227-258, T": [[-63, 574], [-71, 574], [-70, 585], [-63, 586]]}, "center": {"227-258, T": [-67, 579]}}, +{"id": 2637, "name": "Grateful Dead Logo", "description": "The logo of the popular psychedelic rock band.", "links": {"subreddit": ["gratefuldead"]}, "path": {"156-258, T": [[373, 35], [367, 40], [367, 50], [374, 56], [384, 56], [391, 49], [391, 40], [386, 34], [374, 34]]}, "center": {"156-258, T": [379, 45]}}, +{"id": 2638, "name": "Community (TV Show)", "description": "2009 TV show about ex lawyer Jeff Winger having to enroll into Greendale Community College", "links": {"subreddit": ["community"]}, "path": {"227-251, T": [[-710, 801], [-694, 801], [-694, 813], [-710, 813]]}, "center": {"227-251, T": [-702, 807]}}, +{"id": 2639, "name": "Bran Castle", "description": "Bran (Slavonic name meaning \"gate\") is a castle in Bran village, Brașov county, Romania. It was built by the Teutonic knights in the 13th century and later passed to the Saxons of Kronstadt (the modern-day city of Brașov). Historically it was the point where the border with Wallachia was kept.\n\nThe castle became famous for its association with \"Dracula's castle\" though there is no connection between Bran and Stoker's novel, nor with the Wallachian Voivode Vlad III Dracula.", "links": {"website": ["https://bran-castle.com/"]}, "path": {"232-258, T": [[-311, 91], [-311, 98], [-319, 107], [-317, 109], [-317, 115], [-324, 107], [-330, 114], [-335, 109], [-343, 117], [-340, 118], [-340, 128], [-340, 131], [-323, 135], [-302, 136], [-304, 108], [-301, 106], [-310, 98], [-309, 96], [-305, 96], [-305, 91]]}, "center": {"232-258, T": [-324, 123]}}, +{"id": 2640, "name": "BaeRyS", "description": "One of the well-known dynamic duos in the Hololive community. They started this dynamic roleplaying as a married couple in one of their Minecraft streams back in 2021 and since then they've became quite the comedy duo with all their antics and their never ending marriage-divorce gimmick. Even with their comedic moments together, these two are great friends and can be very wholesome together, so far as to gift themselves on their birthdays! If you see them in a stream together, or chatting in their streams or even interacting in Twitter, you're in for a ride!", "links": {"website": ["https://shipping.fandom.com/wiki/BaeRyS"], "subreddit": ["Hololive"], "discord": ["irystocrats"]}, "path": {"227-258, T": [[-582, -250], [-582, -253], [-578, -256], [-579, -257], [-578, -260], [-578, -262], [-576, -263], [-574, -266], [-571, -266], [-570, -266], [-570, -268], [-569, -269], [-568, -270], [-567, -270], [-566, -270], [-564, -270], [-563, -264], [-560, -264], [-559, -269], [-552, -270], [-546, -270], [-542, -265], [-533, -264], [-529, -261], [-529, -258], [-529, -257], [-536, -257], [-537, -257], [-537, -250]]}, "center": {"227-258, T": [-551, -260]}}, +{"id": 2641, "name": "My Chemical Romance, Ghost, and Mindless Self Indulgence", "description": "Another sect of the Music Union, these plots contain murals dedicated to My Chemical Romance, Ghost, and Mindless Self Indulgence.", "links": {"subreddit": ["mychemicalromance", "ghostband", "msi"], "discord": ["VJKghe9e"]}, "path": {"227-258, T": [[1341, 4], [1342, -5], [1390, -5], [1389, 6], [1377, 6], [1378, 27], [1357, 27], [1357, 6], [1356, 6], [1352, 6]]}, "center": {"227-258, T": [1367, 17]}}, +{"id": 2642, "name": "Pizza Tower", "description": "This is the Pizza Tower from the game Pizza Tower, it is a tall purple building of which the events of Pizza Tower take place.", "links": {"website": ["https://pizzatower.fandom.com"], "subreddit": ["PizzaTower"]}, "path": {"164-258, T": [[-864, -227], [-890, -227], [-890, -228], [-889, -228], [-889, -231], [-890, -231], [-891, -232], [-891, -233], [-890, -234], [-889, -234], [-889, -239], [-890, -240], [-890, -242], [-889, -242], [-889, -243], [-885, -243], [-885, -249], [-883, -249], [-883, -248], [-864, -248]]}, "center": {"164-258, T": [-876, -238]}}, +{"id": 2643, "name": "Snufkin", "description": "Snufkin is a character in the Finnish Moomin series. He is the best friend of Moomintroll, the series' main protagonist. He lives a nomadic lifestyle.", "links": {"website": ["https://www.moomin.com/fi/hahmot/nuuskamuikkunen/"]}, "path": {"227-258, T": [[97, -279], [89, -279], [89, -280], [90, -281], [88, -281], [88, -282], [87, -282], [87, -286], [88, -286], [88, -288], [87, -288], [87, -290], [86, -290], [86, -293], [83, -293], [83, -296], [84, -296], [84, -297], [87, -297], [88, -298], [87, -300], [86, -301], [86, -303], [87, -304], [89, -304], [89, -303], [90, -301], [91, -303], [92, -304], [95, -305], [95, -304], [96, -303], [97, -300], [98, -298], [100, -297], [103, -296], [104, -294], [102, -293], [101, -292], [100, -291], [100, -289], [102, -288], [102, -284], [100, -281], [99, -281], [99, -280], [99, -279], [89, -279]]}, "center": {"227-258, T": [93, -293]}}, +{"id": 2644, "name": "GNU Terry", "description": "Sir Terry Pratchett is the author of the Discworld series of fantasy novels.\n\nGNU is a code used by a communication system (called \"Clacks\") in the books and means that the message will be transmitted forever. The people on the Clacks honor their deceased by sending their names with this code around their system. Because so stated in the book: \"A man is not dead while his name is still spoken.\" Thus, \"GNU Terry\" means the name of the author (which is deceased) should be forever transmitted.\n\nThe image also depicts a recurring Discworld character, the Death of Rats (aka the Grim Squeaker), a skeletal rat wearing a dark robe and carrying a tiny scythe.", "links": {"subreddit": ["discworld"]}, "path": {"180-258, T": [[-1137, 334], [-1137, 370], [-1106, 370], [-1106, 334], [-1107, 334]]}, "center": {"180-258, T": [-1121, 352]}}, +{"id": 2645, "name": "LuckyV GTA Roleplay Server", "description": "The Logo of the German LuckyV Roleplay Server", "links": {"website": ["https://luckyv.de/"], "subreddit": ["luckyvde"], "discord": ["3nDEVdG"]}, "path": {"227-258, T": [[-1354, 805], [-1354, 815], [-1355, 815], [-1355, 819], [-1354, 819], [-1353, 827], [-1343, 831], [-1335, 843], [-1333, 844], [-1330, 844], [-1326, 832], [-1321, 832], [-1311, 822], [-1311, 817], [-1316, 816], [-1312, 804], [-1354, 804]]}, "center": {"227-258, T": [-1333, 819]}}, +{"id": 2646, "name": "Austrian and German Countryballs", "description": "Countryballs are a popular internet meme, depicting nearly all nations in a spherical shape. The phenomenon was created in 2009 by a British user on the German website https://Krautchan.net\n\n The stories featuring the Countryballs ironize national stereotypes , international relations, current national or international situations and various historical conflicts.\n\nThe two countryballs symbolize the friendship of Germany and Austria during r/place 2023\n\nidea: @ das_lenny\ndesign: @ kay, @Bebedi\nImplemented by: abteilung südflagge and r/place Austria", "links": {"website": ["https://knowyourmeme.com/memes/polandball", "https://en.wikipedia.org/wiki/Countryballs"], "subreddit": ["placeAustria", "placesuedflagge"], "discord": ["GYFJWyuy", "xHww3sEk"]}, "path": {"205-258, T": [[-1025, -37], [-987, -37], [-984, -39], [-982, -40], [-973, -40], [-973, -49], [-975, -51], [-976, -51], [-981, -46], [-981, -48], [-985, -53], [-988, -55], [-995, -55], [-999, -52], [-1003, -56], [-1007, -72], [-1010, -72], [-1010, -70], [-1015, -70], [-1024, -65], [-1021, -56], [-1010, -60], [-1009, -60], [-1006, -49], [-1006, -47], [-1009, -47], [-1010, -49], [-1014, -54], [-1024, -54], [-1030, -46], [-1031, -46], [-1031, -48], [-1034, -51], [-1036, -51], [-1039, -48], [-1038, -47], [-1038, -40], [-1031, -40], [-1032, -42], [-1031, -43], [-1027, -37]]}, "center": {"205-258, T": [-992, -46]}}, {"id": 2647, "name": "St. Louis Cardinals", "description": "The St. Louis Cardinals are an MLB baseball team based in St. Louis, Missouri, United States.", "links": {"website": ["https://www.mlb.com/cardinals"], "subreddit": ["Cardinals"]}, "path": {"176-231": [[-600, 714], [-587, 714], [-587, 730], [-600, 730]]}, "center": {"176-231": [-593, 722]}}, -{"id": 2648, "name": "ULTRAKILL Logo", "description": "The logo of ULTRAKILL, a fast-paced ultra-violent retro first-person shooter combining the skill-based-style scoring from character action games with unadulterated carnage inspired by the best shooters of the '90s.", "links": {"website": ["https://devilmayquake.com"], "subreddit": ["ultrakill"]}, "path": {"227-258": [[-261, -775], [-192, -775], [-192, -753], [-195, -753], [-195, -758], [-201, -753], [-206, -753], [-208, -758], [-220, -757], [-220, -753], [-256, -753], [-258, -758], [-261, -760]]}, "center": {"227-258": [-228, -764]}}, -{"id": 2649, "name": "Aqua", "description": "Aqua is a character from Konosuba!\nnamed \"useless goddess\"", "links": {"website": ["https://konosuba.fandom.com/wiki/Aqua"], "subreddit": ["Konosuba"]}, "path": {"161-258": [[280, -852], [274, -852], [274, -863], [280, -863]]}, "center": {"161-258": [277, -857]}}, -{"id": 2650, "name": "Gerome", "description": "Gerome is a magenta pillar creature, wearing blue overalls, faded orange shoes and gloves, and a blue cap. He sometimes appears to be either in a lunch break, mopping the floor, or taking a nap. He is Pillar John's brother.\n\nGerome is implied to be the Tower's one and only Janitor, cleaning up many levels on the tower, with his janitor closet having a Tower Secret Treasure. He is one of the few pillar creatures that will never attack the Player and is passive to them, the other being Pillar John.", "links": {"website": ["https://pizzatower.fandom.com/wiki/Gerome"], "subreddit": ["PizzaTower"]}, "path": {"219-258": [[-862, -268], [-861, -267], [-860, -266], [-859, -267], [-858, -266], [-857, -267], [-856, -268], [-856, -272], [-857, -273], [-858, -274], [-860, -274], [-861, -273], [-862, -272]]}, "center": {"219-258": [-859, -270]}}, -{"id": 2651, "name": "Bad Dragon", "description": "Bad Dragon is a company that sells fantasy-themed sex toys, primarily targeted at members of the furry fandom.", "links": {"subreddit": ["baddragon", "furry_irl", "furry"]}, "path": {"227-258": [[-206, -748], [-206, -745], [-200, -745], [-194, -747], [-186, -746], [-185, -751], [-187, -752], [-193, -752], [-195, -757], [-197, -757]]}, "center": {"227-258": [-197, -750]}}, -{"id": 2652, "name": "Lyney", "description": "Lyney is an upcoming character for the game Genshin Impact. The art depicts his iconic hat.", "links": {"subreddit": ["lyney", "Genshin_Impact"], "discord": ["sumeru", "lyney"]}, "path": {"227-258": [[-13, 400], [-1, 400], [-1, 415], [-13, 415]]}, "center": {"227-258": [-7, 408]}}, -{"id": 2654, "name": "Pecorine", "description": "Pecorine is the main heroine of Princess Connect! Re:Dive. She is the Guild Master of the Gourmet Guild. and also the Crown Princess of the humanfolk-ruled nation Landosol.", "links": {"website": ["https://priconne-redive.jp/"], "subreddit": ["Priconne"], "discord": ["ds8MrefSeb"]}, "path": {"227-258": [[-589, 193], [-589, 183], [-596, 183], [-597, 193]]}, "center": {"227-258": [-593, 188]}}, -{"id": 2655, "name": "Torres Strait Islanders Flag", "description": "A flag of the indigenous people of Torres Strait Islands in Queensland, Australia. They are ethnically and culturally distinct from the Aboriginal peoples of Australia, whose flag is to their left", "links": {}, "path": {"134-258": [[-884, 74], [-869, 74], [-869, 86], [-884, 86]]}, "center": {"134-258": [-876, 80]}}, -{"id": 2656, "name": "Cookie⭐ NYN", "description": "Cookie☆ is a series of memes and internet subculture that was born out of a failed Touhou voice drama.\nThe portrayed character is Nyon, based on but distinguished from her Touhou origin Nazrin.", "links": {"website": ["https://cookiewiki.org/index.php/Main_Page", "https://thessacookie.wordpress.com/2023/05/23/what-the-fuck-is-cookie%e2%98%86-and-why-is-nyn-not-nazrin/"], "discord": ["sVrJuu3ewe"]}, "path": {"89-258": [[-525, 90], [-502, 90], [-502, 123], [-544, 123], [-544, 90], [-534, 90], [-532, 92], [-527, 92], [-526, 90], [-543, 90], [-539, 91]]}, "center": {"89-258": [-520, 107]}}, +{"id": 2648, "name": "ULTRAKILL Logo", "description": "The logo of ULTRAKILL, a fast-paced ultra-violent retro first-person shooter combining the skill-based-style scoring from character action games with unadulterated carnage inspired by the best shooters of the '90s.", "links": {"website": ["https://devilmayquake.com"], "subreddit": ["ultrakill"]}, "path": {"227-258, T": [[-261, -775], [-192, -775], [-192, -753], [-195, -753], [-195, -758], [-201, -753], [-206, -753], [-208, -758], [-220, -757], [-220, -753], [-256, -753], [-258, -758], [-261, -760]]}, "center": {"227-258, T": [-228, -764]}}, +{"id": 2649, "name": "Aqua", "description": "Aqua is a character from Konosuba!\nnamed \"useless goddess\"", "links": {"website": ["https://konosuba.fandom.com/wiki/Aqua"], "subreddit": ["Konosuba"]}, "path": {"161-258, T": [[280, -852], [274, -852], [274, -863], [280, -863]]}, "center": {"161-258, T": [277, -857]}}, +{"id": 2650, "name": "Gerome", "description": "Gerome is a magenta pillar creature, wearing blue overalls, faded orange shoes and gloves, and a blue cap. He sometimes appears to be either in a lunch break, mopping the floor, or taking a nap. He is Pillar John's brother.\n\nGerome is implied to be the Tower's one and only Janitor, cleaning up many levels on the tower, with his janitor closet having a Tower Secret Treasure. He is one of the few pillar creatures that will never attack the Player and is passive to them, the other being Pillar John.", "links": {"website": ["https://pizzatower.fandom.com/wiki/Gerome"], "subreddit": ["PizzaTower"]}, "path": {"219-258, T": [[-862, -268], [-861, -267], [-860, -266], [-859, -267], [-858, -266], [-857, -267], [-856, -268], [-856, -272], [-857, -273], [-858, -274], [-860, -274], [-861, -273], [-862, -272]]}, "center": {"219-258, T": [-859, -270]}}, +{"id": 2651, "name": "Bad Dragon", "description": "Bad Dragon is a company that sells fantasy-themed sex toys, primarily targeted at members of the furry fandom.", "links": {"subreddit": ["baddragon", "furry_irl", "furry"]}, "path": {"227-258, T": [[-206, -748], [-206, -745], [-200, -745], [-194, -747], [-186, -746], [-185, -751], [-187, -752], [-193, -752], [-195, -757], [-197, -757]]}, "center": {"227-258, T": [-197, -750]}}, +{"id": 2652, "name": "Lyney", "description": "Lyney is an upcoming character for the game Genshin Impact. The art depicts his iconic hat.", "links": {"subreddit": ["lyney", "Genshin_Impact"], "discord": ["sumeru", "lyney"]}, "path": {"227-258, T": [[-13, 400], [-1, 400], [-1, 415], [-13, 415]]}, "center": {"227-258, T": [-7, 408]}}, +{"id": 2654, "name": "Pecorine", "description": "Pecorine is the main heroine of Princess Connect! Re:Dive. She is the Guild Master of the Gourmet Guild. and also the Crown Princess of the humanfolk-ruled nation Landosol.", "links": {"website": ["https://priconne-redive.jp/"], "subreddit": ["Priconne"], "discord": ["ds8MrefSeb"]}, "path": {"227-258, T": [[-589, 193], [-589, 183], [-596, 183], [-597, 193]]}, "center": {"227-258, T": [-593, 188]}}, +{"id": 2655, "name": "Torres Strait Islanders Flag", "description": "A flag of the indigenous people of Torres Strait Islands in Queensland, Australia. They are ethnically and culturally distinct from the Aboriginal peoples of Australia, whose flag is to their left", "links": {}, "path": {"134-258, T": [[-884, 74], [-869, 74], [-869, 86], [-884, 86]]}, "center": {"134-258, T": [-876, 80]}}, +{"id": 2656, "name": "Cookie⭐ NYN", "description": "Cookie☆ is a series of memes and internet subculture that was born out of a failed Touhou voice drama.\nThe portrayed character is Nyon, based on but distinguished from her Touhou origin Nazrin.", "links": {"website": ["https://cookiewiki.org/index.php/Main_Page", "https://thessacookie.wordpress.com/2023/05/23/what-the-fuck-is-cookie%e2%98%86-and-why-is-nyn-not-nazrin/"], "discord": ["sVrJuu3ewe"]}, "path": {"89-258, T": [[-525, 90], [-502, 90], [-502, 123], [-544, 123], [-544, 90], [-534, 90], [-532, 92], [-527, 92], [-526, 90], [-543, 90], [-539, 91]]}, "center": {"89-258, T": [-520, 107]}}, {"id": 2657, "name": "Aphex Twin Logo", "description": "Aphex Twin also known as Richard David James or AFX is an Irish-born British musician, composer and DJ. He is known for his idiosyncratic work in electronic styles such as techno, ambient, and jungle. is considered a so-called one of the most influential and important artists in contemporary electronic music. 7\\", "links": {"website": ["https://aphextwin.warp.net"], "subreddit": ["aphextwin"]}, "path": {"210-234": [[-591, 815], [-572, 815], [-572, 831], [-591, 831]]}, "center": {"210-234": [-581, 823]}}, -{"id": 2658, "name": "<2 Purple Wax", "description": "This is the <2 Crew's Purple Wax (Candle). In remembrance of <2's mod Daq who has passed. You can find Pooya's <2 and Goose nearby.", "links": {"website": ["http://www.twitch.tv/pooya"], "subreddit": ["pooya"]}, "path": {"227-258": [[524, 969], [546, 969], [546, 999], [524, 999]]}, "center": {"227-258": [535, 984]}}, -{"id": 2659, "name": "ROM", "description": "A romanian chocolate bar with rum chocolate filling.", "links": {"discord": ["kFmemc52"]}, "path": {"227-258": [[-1475, 439], [-1500, 439], [-1500, 451], [-1474, 451]]}, "center": {"227-258": [-1487, 445]}}, -{"id": 2660, "name": "Dan the hater", "description": "Dan is the producer of the popular H3H3 podcast. Dan often gives contradictory statements and opinions to Ethan and the crew, so they jokingly called him 'Dan the hater'.", "links": {"website": ["https://en.wikipedia.org/wiki/H3_Podcast", "https://www.youtube.com/user/h3h3Productions"], "subreddit": ["h3h3productions"]}, "path": {"185-258": [[-1500, 678], [-1500, 745], [-1445, 745], [-1445, 678]]}, "center": {"185-258": [-1472, 712]}}, -{"id": 2661, "name": "Omega Strikers Emotes", "description": "Emotes from the game Omega Strikers", "links": {"website": ["https://www.odysseyinteractive.gg/omegastrikers"], "subreddit": ["OmegaStrikers"], "discord": ["omegastrikers"]}, "path": {"227-258": [[-69, -773], [-53, -773], [-53, -746], [-69, -746]]}, "center": {"227-258": [-61, -759]}}, -{"id": 2662, "name": "Choualbox", "description": "French community where memes and funny pictures and videos are shared/created.", "links": {"website": ["https://www.choualbox.com"]}, "path": {"227-258": [[1128, -14], [1137, -14], [1137, -13], [1173, -13], [1173, -5], [1138, -5], [1138, -4], [1128, -4], [1127, -4], [1127, -15], [1138, -15], [1138, -13]]}, "center": {"227-258": [1132, -8]}}, -{"id": 2663, "name": "The Karlsruhe Institute of Technology", "description": "The Karlsruhe Institute of Technology (KIT; German: Karlsruher Institut für Technologie) is a public research university in Karlsruhe, Germany. The institute is a national research center of the Helmholtz Association.", "links": {"website": ["https://www.kit.edu/"], "subreddit": ["KaIT"]}, "path": {"227-258": [[-119, -57], [-119, -76], [-80, -76], [-80, -57]]}, "center": {"227-258": [-99, -66]}}, -{"id": 2664, "name": "Emmo", "description": "Bop. the mascot of the German Streamer Brok3ndollz", "links": {"website": ["https://www.twitch.tv/brok3ndollz"]}, "path": {"64-258": [[240, -244], [240, -234], [248, -234], [248, -244]]}, "center": {"64-258": [244, -239]}}, -{"id": 2665, "name": "Spider-Man (Miles Morales)", "description": "Spider-Man / Miles Morales is a superhero from Marvel Comics, co-protagonist in Insomniac's Spider-Man Video Game Series and the protagonist of the \"Spider-Verse\" film series. This art was made completely independently by Spider-Man Place.", "links": {"discord": ["cQZQDYsB"]}, "path": {"215-258": [[-1203, 420], [-1208, 420], [-1206, 423], [-1206, 425], [-1208, 427], [-1213, 430], [-1214, 433], [-1211, 434], [-1209, 437], [-1210, 439], [-1211, 444], [-1207, 447], [-1203, 448], [-1203, 447], [-1199, 444], [-1199, 439], [-1200, 439], [-1201, 437], [-1200, 436], [-1199, 434], [-1197, 433], [-1196, 430], [-1197, 430], [-1198, 429], [-1200, 428], [-1201, 427], [-1202, 427], [-1204, 423], [-1202, 420]]}, "center": {"215-258": [-1205, 433]}}, -{"id": 2666, "name": "Käärijä", "description": "Käärijä represented Finland in the Eurovision Song Contest 2023. Käärijä easily won the televote, but Sweden's Loreen won the jury vote by a larger margin, and therefore Käärijä placed 2nd in the contest overall, much to the annoyance of many. Käärijä gained much popularity after his second place in Eurovision 2023.", "links": {"website": ["https://warnermusiclive.fi/artistit/kaarija", "https://en.wikipedia.org/wiki/K%C3%A4%C3%A4rij%C3%A4"], "subreddit": ["Kaarija"]}, "path": {"227-258": [[162, -309], [141, -309], [141, -310], [137, -314], [137, -318], [138, -318], [138, -321], [139, -321], [139, -323], [141, -323], [141, -325], [142, -325], [142, -326], [144, -326], [144, -327], [149, -327], [149, -329], [148, -329], [148, -336], [149, -336], [149, -337], [151, -337], [151, -338], [153, -338], [157, -338], [159, -338], [159, -337], [161, -337], [161, -336], [162, -336], [162, -329], [161, -329], [162, -329], [161, -329], [161, -326], [165, -326], [165, -325], [167, -325], [167, -324], [168, -324], [168, -322], [169, -318], [169, -317], [168, -317], [168, -316], [168, -315], [167, -315], [167, -314], [166, -314], [166, -313], [165, -313], [165, -312], [164, -312], [164, -311], [163, -311], [163, -310], [162, -310], [162, -309], [141, -309]]}, "center": {"227-258": [154, -319]}}, +{"id": 2658, "name": "<2 Purple Wax", "description": "This is the <2 Crew's Purple Wax (Candle). In remembrance of <2's mod Daq who has passed. You can find Pooya's <2 and Goose nearby.", "links": {"website": ["http://www.twitch.tv/pooya"], "subreddit": ["pooya"]}, "path": {"227-258, T": [[524, 969], [546, 969], [546, 999], [524, 999]]}, "center": {"227-258, T": [535, 984]}}, +{"id": 2659, "name": "ROM", "description": "A romanian chocolate bar with rum chocolate filling.", "links": {"discord": ["kFmemc52"]}, "path": {"227-258, T": [[-1475, 439], [-1500, 439], [-1500, 451], [-1474, 451]]}, "center": {"227-258, T": [-1487, 445]}}, +{"id": 2660, "name": "Dan the hater", "description": "Dan is the producer of the popular H3H3 podcast. Dan often gives contradictory statements and opinions to Ethan and the crew, so they jokingly called him 'Dan the hater'.", "links": {"website": ["https://en.wikipedia.org/wiki/H3_Podcast", "https://www.youtube.com/user/h3h3Productions"], "subreddit": ["h3h3productions"]}, "path": {"185-258, T": [[-1500, 678], [-1500, 745], [-1445, 745], [-1445, 678]]}, "center": {"185-258, T": [-1472, 712]}}, +{"id": 2661, "name": "Omega Strikers Emotes", "description": "Emotes from the game Omega Strikers", "links": {"website": ["https://www.odysseyinteractive.gg/omegastrikers"], "subreddit": ["OmegaStrikers"], "discord": ["omegastrikers"]}, "path": {"227-258, T": [[-69, -773], [-53, -773], [-53, -746], [-69, -746]]}, "center": {"227-258, T": [-61, -759]}}, +{"id": 2662, "name": "Choualbox", "description": "French community where memes and funny pictures and videos are shared/created.", "links": {"website": ["https://www.choualbox.com"]}, "path": {"227-258, T": [[1128, -14], [1137, -14], [1137, -13], [1173, -13], [1173, -5], [1138, -5], [1138, -4], [1128, -4], [1127, -4], [1127, -15], [1138, -15], [1138, -13]]}, "center": {"227-258, T": [1132, -8]}}, +{"id": 2663, "name": "The Karlsruhe Institute of Technology", "description": "The Karlsruhe Institute of Technology (KIT; German: Karlsruher Institut für Technologie) is a public research university in Karlsruhe, Germany. The institute is a national research center of the Helmholtz Association.", "links": {"website": ["https://www.kit.edu/"], "subreddit": ["KaIT"]}, "path": {"227-258, T": [[-119, -57], [-119, -76], [-80, -76], [-80, -57]]}, "center": {"227-258, T": [-99, -66]}}, +{"id": 2664, "name": "Emmo", "description": "Bop. the mascot of the German Streamer Brok3ndollz", "links": {"website": ["https://www.twitch.tv/brok3ndollz"]}, "path": {"64-258, T": [[240, -244], [240, -234], [248, -234], [248, -244]]}, "center": {"64-258, T": [244, -239]}}, +{"id": 2665, "name": "Spider-Man (Miles Morales)", "description": "Spider-Man / Miles Morales is a superhero from Marvel Comics, co-protagonist in Insomniac's Spider-Man Video Game Series and the protagonist of the \"Spider-Verse\" film series. This art was made completely independently by Spider-Man Place.", "links": {"discord": ["cQZQDYsB"]}, "path": {"215-258, T": [[-1203, 420], [-1208, 420], [-1206, 423], [-1206, 425], [-1208, 427], [-1213, 430], [-1214, 433], [-1211, 434], [-1209, 437], [-1210, 439], [-1211, 444], [-1207, 447], [-1203, 448], [-1203, 447], [-1199, 444], [-1199, 439], [-1200, 439], [-1201, 437], [-1200, 436], [-1199, 434], [-1197, 433], [-1196, 430], [-1197, 430], [-1198, 429], [-1200, 428], [-1201, 427], [-1202, 427], [-1204, 423], [-1202, 420]]}, "center": {"215-258, T": [-1205, 433]}}, +{"id": 2666, "name": "Käärijä", "description": "Käärijä represented Finland in the Eurovision Song Contest 2023. Käärijä easily won the televote, but Sweden's Loreen won the jury vote by a larger margin, and therefore Käärijä placed 2nd in the contest overall, much to the annoyance of many. Käärijä gained much popularity after his second place in Eurovision 2023.", "links": {"website": ["https://warnermusiclive.fi/artistit/kaarija", "https://en.wikipedia.org/wiki/K%C3%A4%C3%A4rij%C3%A4"], "subreddit": ["Kaarija"]}, "path": {"227-258, T": [[162, -309], [141, -309], [141, -310], [137, -314], [137, -318], [138, -318], [138, -321], [139, -321], [139, -323], [141, -323], [141, -325], [142, -325], [142, -326], [144, -326], [144, -327], [149, -327], [149, -329], [148, -329], [148, -336], [149, -336], [149, -337], [151, -337], [151, -338], [153, -338], [157, -338], [159, -338], [159, -337], [161, -337], [161, -336], [162, -336], [162, -329], [161, -329], [162, -329], [161, -329], [161, -326], [165, -326], [165, -325], [167, -325], [167, -324], [168, -324], [168, -322], [169, -318], [169, -317], [168, -317], [168, -316], [168, -315], [167, -315], [167, -314], [166, -314], [166, -313], [165, -313], [165, -312], [164, -312], [164, -311], [163, -311], [163, -310], [162, -310], [162, -309], [141, -309]]}, "center": {"227-258, T": [154, -319]}}, {"id": 2675, "name": "115th Infantry Regiment", "description": "The 115th Infantry Regiment is a gaming regiment in the game Mount and Blade: Warband. They fought during Christopher Lannes's stream to preserve the French Napoleonic flag, the Russian empire flag, and the tribute to Lola.", "links": {}, "path": {"213-228": [[-315, 549], [-317, 551], [-317, 555], [-306, 555], [-306, 549]]}, "center": {"213-228": [-311, 552]}}, -{"id": 2668, "name": "Swiss Postal Bus", "description": "The yellow and red colors are the colors of the Swiss Postal service which operates these busses through an extensive network all over switzerland.", "links": {"website": ["https://www.postauto.ch/en"]}, "path": {"227-258": [[1500, -695], [1443, -695], [1443, -715], [1444, -716], [1445, -718], [1446, -719], [1499, -719]]}, "center": {"227-258": [1472, -707]}}, -{"id": 2669, "name": "Tomb of Cyrus the Great", "description": "The Tomb of Cyrus the Great the Founder of the Persian Empire and the Vater of all Iranians (Built 6th century BC)", "links": {"website": ["https://en.wikipedia.org/wiki/Tomb_of_Cyrus"], "subreddit": ["place_iran"], "discord": ["GT33wcwp"]}, "path": {"227-258": [[603, -78], [607, -83], [611, -86], [611, -90], [614, -93], [623, -92], [625, -90], [625, -85], [627, -84], [630, -80], [631, -78]]}, "center": {"227-258": [618, -85]}}, -{"id": 2671, "name": "Sky: Children of the Light", "description": "Sky: Children of the Light is a MMO Indie game that features a lot of exploration around the Kingdom of Sky. In this pixel art features the main character and the Little Prince from the French Novel \"Le Petit Prince\" or also known as The Little Prince, riding a manta; one of the many creatures found in the game.", "links": {"website": ["https://thatgamecompany.com/sky/"], "subreddit": ["SkyGame", "SkyChildrenOfLight"], "discord": ["thatskygame"]}, "path": {"48-258": [[-500, 346], [-500, 383], [-495, 383], [-495, 366], [-491, 366], [-489, 365], [-488, 364], [-475, 364], [-475, 370], [-465, 371], [-465, 373], [-460, 373], [-458, 374], [-457, 374], [-455, 374], [-454, 342], [-465, 343], [-466, 347], [-484, 346], [-486, 345], [-486, 346], [-487, 346]]}, "center": {"48-258": [-466, 358]}}, -{"id": 2672, "name": "Lucy - r/PlaceFishCult", "description": "Lucy is a pink fish named after babyluci's 2022 fish and is seen here giving Citrus a big ol smooch", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"111-258": [[482, -291], [481, -292], [482, -293], [483, -294], [484, -293], [485, -294], [486, -293], [485, -292], [486, -291], [485, -290], [484, -291], [483, -290]]}, "center": {"111-258": [483, -292]}}, +{"id": 2668, "name": "Swiss Postal Bus", "description": "The yellow and red colors are the colors of the Swiss Postal service which operates these busses through an extensive network all over switzerland.", "links": {"website": ["https://www.postauto.ch/en"]}, "path": {"227-258, T": [[1500, -695], [1443, -695], [1443, -715], [1444, -716], [1445, -718], [1446, -719], [1499, -719]]}, "center": {"227-258, T": [1472, -707]}}, +{"id": 2669, "name": "Tomb of Cyrus the Great", "description": "The Tomb of Cyrus the Great the Founder of the Persian Empire and the Vater of all Iranians (Built 6th century BC)", "links": {"website": ["https://en.wikipedia.org/wiki/Tomb_of_Cyrus"], "subreddit": ["place_iran"], "discord": ["GT33wcwp"]}, "path": {"227-258, T": [[603, -78], [607, -83], [611, -86], [611, -90], [614, -93], [623, -92], [625, -90], [625, -85], [627, -84], [630, -80], [631, -78]]}, "center": {"227-258, T": [618, -85]}}, +{"id": 2671, "name": "Sky: Children of the Light", "description": "Sky: Children of the Light is a MMO Indie game that features a lot of exploration around the Kingdom of Sky. In this pixel art features the main character and the Little Prince from the French Novel \"Le Petit Prince\" or also known as The Little Prince, riding a manta; one of the many creatures found in the game.", "links": {"website": ["https://thatgamecompany.com/sky/"], "subreddit": ["SkyGame", "SkyChildrenOfLight"], "discord": ["thatskygame"]}, "path": {"48-258, T": [[-500, 346], [-500, 383], [-495, 383], [-495, 366], [-491, 366], [-489, 365], [-488, 364], [-475, 364], [-475, 370], [-465, 371], [-465, 373], [-460, 373], [-458, 374], [-457, 374], [-455, 374], [-454, 342], [-465, 343], [-466, 347], [-484, 346], [-486, 345], [-486, 346], [-487, 346]]}, "center": {"48-258, T": [-466, 358]}}, +{"id": 2672, "name": "Lucy - r/PlaceFishCult", "description": "Lucy is a pink fish named after babyluci's 2022 fish and is seen here giving Citrus a big ol smooch", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"111-258, T": [[482, -291], [481, -292], [482, -293], [483, -294], [484, -293], [485, -294], [486, -293], [485, -292], [486, -291], [485, -290], [484, -291], [483, -290]]}, "center": {"111-258, T": [483, -292]}}, {"id": 2673, "name": "Blush", "description": "A nice random guy from Bavaria!", "links": {"website": ["https://www.twitch.tv/blushttv"]}, "path": {"225-236": [[-647, -970], [-625, -970], [-625, -964], [-647, -964]]}, "center": {"225-236": [-636, -967]}}, {"id": 2674, "name": "Unofficial expansion of Vietnamese flag", "description": "A TikToker decided to expand Vietnamese flag, going against other Reddit communities and r/mixifa themselves. In the aftermath, the community cooperated with artists to restore the destroyed artwork. Some were not restored, as the Void also grew to claim what remained.", "links": {"website": ["https://www.reddit.com/r/mixifa/comments/15920ln/apologize/"]}, "path": {"227-241": [[1112, 444], [1112, 780], [1499, 779], [1498, 444]]}, "center": {"227-241": [1305, 612]}}, -{"id": 2676, "name": "Firey", "description": "Firey is a character in Battle for Dream Island.", "links": {}, "path": {"231-258": [[-1401, 139], [-1401, 147], [-1400, 148], [-1398, 148], [-1398, 150], [-1394, 150], [-1394, 148], [-1392, 148], [-1391, 147], [-1391, 140], [-1393, 139], [-1394, 140], [-1395, 139], [-1396, 140], [-1397, 139], [-1398, 140], [-1399, 139], [-1400, 140]]}, "center": {"231-258": [-1396, 144]}}, -{"id": 2678, "name": "Progressbar95", "description": "Progressbar95 is a video game designed to resemble Microsoft Windows. It's main premise is to fill up the progressbar with blue segments while avoiding other harmful segments.", "links": {"website": ["https://store.steampowered.com/app/1304550/Progressbar95/", "https://play.google.com/store/apps/details?id=com.spookyhousestudios.progressbar95&hl=en_US", "https://apps.apple.com/app/progressbar95-retro-arcade/id1474374114"], "subreddit": ["progressbar95"], "discord": ["pcGE32TDsw"]}, "path": {"227-258": [[-649, 973], [-649, 996], [-627, 996], [-627, 973]]}, "center": {"227-258": [-638, 985]}}, -{"id": 2679, "name": "Pepper - r/PlaceFishCult", "description": "Pepper is a red and white fish designed by Aster and named by Marko", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"115-258": [[487, -288], [488, -289], [489, -290], [490, -289], [491, -290], [492, -289], [491, -288], [492, -287], [491, -286], [490, -287], [489, -286], [488, -287]]}, "center": {"115-258": [489, -288]}}, -{"id": 2680, "name": "Toeddchen", "description": "Toeddchen is a small german streamer. HE IS THE BEST STREAMER", "links": {"website": ["https://www.twitch.tv/toeddchen"], "discord": ["Ua7jab5c"]}, "path": {"227-258": [[1499, -609], [1484, -609], [1484, -622], [1499, -622], [1499, -620]]}, "center": {"221-258": [1492, -615]}}, -{"id": 2681, "name": "Crimean Tatar", "description": "Crimean Tatars are the indigenous people of the Autonomous Republic of Crimea, Ukraine. They faced oppression and mass deportation under the Russian Empire and the Soviet Union. This symbol (Tamga) represents their people and can be found on their flag (Kökbayraq), which Russia banned in occupied Crimea.", "links": {"website": ["https://ua.rocks/", "https://en.wikipedia.org/wiki/Crimean_Tatars"], "subreddit": ["placeukraine", "ukraine"], "discord": ["D4kNdnS8pF"]}, "path": {"248-258": [[-184, -143], [-178, -143], [-177, -142], [-175, -142], [-174, -141], [-173, -141], [-172, -140], [-171, -139], [-170, -138], [-170, -137], [-169, -136], [-169, -134], [-168, -133], [-168, -127], [-169, -126], [-169, -124], [-170, -123], [-170, -122], [-171, -121], [-172, -120], [-173, -119], [-174, -119], [-176, -118], [-177, -118], [-178, -117], [-184, -117], [-185, -118], [-187, -118], [-188, -119], [-189, -119], [-190, -120], [-191, -121], [-192, -121], [-192, -122], [-192, -123], [-193, -124], [-193, -126], [-194, -127], [-194, -133], [-193, -134], [-193, -136], [-192, -137], [-192, -138], [-191, -139], [-190, -140], [-189, -141], [-188, -141], [-187, -142], [-185, -142]]}, "center": {"248-258": [-181, -130]}}, -{"id": 2682, "name": "Rin Tohsaka", "description": "Rin Tohsaka (遠坂 凛, Tōsaka Rin) is one of the three main heroines of the visual novel Fate/stay night who acts as the Master of Archer in the Fifth Holy Grail War introduced in the 2004 by Type-Moon.", "links": {"subreddit": ["fatestaynightplace"], "discord": ["RRAjUqwXm9"]}, "path": {"225-258": [[-1147, -545], [-1112, -545], [-1112, -510], [-1147, -510], [-1147, -528]]}, "center": {"225-258": [-1129, -527]}}, -{"id": 2683, "name": "Puschel", "description": "\"Puschel\"-Artwork by Sukidingels representing the german Twitch Streamer JenNyan", "links": {"website": ["https://www.twitch.tv/jennyan"]}, "path": {"227-258": [[-733, -288], [-714, -288], [-717, -282], [-720, -273], [-723, -268], [-729, -264], [-737, -266], [-744, -272], [-748, -275], [-747, -280], [-738, -286], [-731, -281], [-729, -282], [-724, -288], [-718, -290], [-714, -289], [-714, -284]]}, "center": {"227-258": [-733, -273]}}, -{"id": 2684, "name": "Perxitaa", "description": "Perxitaa is a spanish streamer dedicated mainly to GTA Roleplay in InfamesRp. He's also the president of a football club called Los Troncos FC.", "links": {"website": ["https://www.twitch.tv/perxitaa?sr=a", "https://twitter.com/Perxitaa"]}, "path": {"121-159": [[-984, 59], [-984, 69], [-975, 69], [-975, 59]], "160-258": [[-984, 70], [-984, 61], [-975, 61], [-975, 70]]}, "center": {"121-159": [-979, 64], "160-258": [-979, 66]}}, -{"id": 2685, "name": "Mysta Rias", "description": "Mysta Rias is a virtual YouTuber affiliated with Nijisanji's English branch, debuting as part of its fourth wave \"Luxiem\" on December 21, 2021. As of July 2023, he has amassed over 1.1 million subscribers\n\nHe is possibly most well known for his highly questionable cooking experiences, which included leaving rice in a cooker until it was teeming with maggots.\n\n\"Mystakes\" is the nickname given to his fans, an obvious pun on the word \"mistakes\".\n\nOn July 23, 2023, he announced that he would be retiring from the persona due to burnout, and announced his final stream on August 27. All of his content will be made private after (except for the final stream).", "links": {"website": ["https://www.youtube.com/channel/UCIM92Ok_spNKLVB5TsgwseQ"]}, "path": {"218-258": [[1114, -863], [1115, -820], [1204, -820], [1205, -863]]}, "center": {"218-258": [1160, -841]}}, -{"id": 2687, "name": "Rimi Sakihata (咲畑梨深)", "description": "Rimi is one of the main characters in ChaoS;HEAd and is the main female protaganist.", "links": {"website": ["https://en.wikipedia.org/wiki/Chaos;Head", "https://store.steampowered.com/app/1961950/CHAOSHEAD_NOAH/", "https://myanimelist.net/character/12801/Rimi_Sakihata"], "subreddit": ["steinsplace"], "discord": ["elpsykongroo"]}, "path": {"115-258": [[-695, 337], [-695, 336], [-694, 336], [-693, 333], [-693, 329], [-693, 328], [-692, 328], [-692, 326], [-691, 326], [-689, 324], [-688, 324], [-687, 323], [-681, 323], [-680, 324], [-677, 324], [-676, 325], [-677, 326], [-676, 327], [-674, 329], [-673, 330], [-673, 334], [-675, 336], [-673, 338], [-673, 340], [-674, 341], [-672, 343], [-672, 346], [-673, 346], [-677, 345], [-682, 345], [-683, 344], [-686, 344], [-687, 345], [-689, 345], [-689, 343], [-690, 342], [-690, 341], [-691, 340], [-692, 339]]}, "center": {"115-258": [-684, 333]}}, -{"id": 2688, "name": "Hitori Gotō aka Bocchi", "description": "The protagonist of Manga: Bocchi the Rock!", "links": {"website": ["https://bocchi-the-rock.fandom.com/wiki/Hitori_Gotoh"]}, "path": {"227-258": [[428, -998], [423, -998], [423, -997], [421, -997], [421, -996], [419, -996], [419, -995], [418, -995], [418, -994], [417, -994], [417, -993], [417, -992], [416, -992], [417, -992], [416, -991], [415, -991], [415, -990], [413, -990], [412, -989], [414, -990], [415, -990], [416, -990], [415, -989], [415, -986], [416, -986], [416, -985], [417, -985], [417, -975], [417, -976], [419, -976], [419, -975], [420, -975], [420, -972], [420, -973], [421, -973], [421, -974], [421, -975], [422, -975], [422, -976], [423, -976], [423, -977], [424, -977], [424, -978], [425, -978], [426, -978], [426, -979], [431, -979], [432, -979], [432, -978], [433, -978], [433, -979], [433, -978], [432, -978], [433, -978], [434, -977], [434, -978], [433, -978], [433, -979], [433, -981], [434, -981], [434, -982], [434, -983], [433, -983], [433, -986], [432, -986], [432, -987], [431, -987], [430, -987], [429, -987], [429, -993], [429, -994], [429, -995], [430, -995], [430, -996], [430, -997], [431, -997], [429, -997], [429, -998]]}, "center": {"227-258": [423, -988]}}, -{"id": 2689, "name": "Loritta", "description": "Loritta is a general purpose brazilian Discord bot created by MrPowerGamerBR in 2017.", "links": {"website": ["https://loritta.website"], "subreddit": ["Loritta"], "discord": ["lori"]}, "path": {"227-258": [[163, 326], [164, 324], [169, 324], [170, 326], [170, 330], [168, 332], [165, 332], [163, 330]]}, "center": {"227-258": [167, 328]}}, -{"id": 2690, "name": "Honkai Star Rail Collage", "description": "Honkai: Star Rail is a role-playing gacha video game developed by miHoYo and first published in 2023. It follows the gameplay style of turn-based combat with elements of open-world and dungeon exploration. The game is set in a science-fantasy universe in which humanity follows the paths of beings called Aeons.\n\nThe collage features (from left-to-right, top-to-bottom):\n• Dan Heng's orb that is shown during his ultimate move.\n• Sushang's chicken that is summoned in her ultimate move.\n• Pom-Pom, the conductor of the Astral Express coming out of a beloved trash can.\n• Qingque's mahjong fish tile.\n• The Aeon of Nihility, IX.\n• The playable character Fu Xuan.", "links": {"website": ["https://hsr.hoyoverse.com/en-us/"], "subreddit": ["HonkaiStarRail", "FuXuan_Mains", "LiSushang", "DanhengMains", "Qingquemains"], "discord": ["B5S5tDSduZ"]}, "path": {"190-258": [[-89, 901], [-89, 928], [-74, 928], [-74, 937], [-73, 937], [-73, 940], [-63, 940], [-63, 926], [-46, 926], [-46, 909], [-50, 904], [-50, 900], [-56, 894], [-64, 894], [-64, 901]]}, "center": {"190-258": [-71, 914]}}, -{"id": 2691, "name": "Calcifer - r/PlaceFishCult", "description": "Calcifer is a betta fish based on TmickyD's real fish by the same name, this fish was originally added to and transferred from 2022's r/place", "links": {"website": ["https://media.discordapp.net/attachments/959466095620812821/959588341681098842/redditsave.com_big_yawn-yeomftw4beq81.mp4"], "subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"118-258": [[493, -291], [494, -292], [495, -293], [496, -292], [497, -293], [498, -292], [497, -291], [498, -290], [497, -289], [496, -290], [495, -289], [494, -290]]}, "center": {"118-258": [495, -291]}}, -{"id": 2692, "name": "Minecraft Steve", "description": "Player character from Minecraft. Because of simple design is griefed into Herobrine (Minecraft creepypasta, without pupils), but is supposed to be Steve. At some point the eyes were edited to look at boykisser, and r/furry_irl members added a heart between them. Because of this, some think Steve and r/furry_irl are allies, but it was never confirmed or denied.", "links": {"website": ["https://www.minecraft.net/"], "subreddit": ["minecraft"]}, "path": {"227-258": [[-1125, 187], [-1118, 187], [-1118, 199], [-1120, 199], [-1120, 204], [-1123, 204], [-1123, 199], [-1125, 199]]}, "center": {"227-258": [-1121, 194]}}, -{"id": 2693, "name": "Flag of Israel", "description": "The national flag of the State of Israel was adopted on 28 October 1948, five months after the establishment of the state.", "links": {"subreddit": ["israel"]}, "path": {"227-258": [[340, -192], [377, -192], [377, -177], [340, -177]]}, "center": {"227-258": [359, -184]}}, -{"id": 2695, "name": "Noblezito's Crown", "description": "Noblezito's Crown made by his community and allies! 👑 ❤", "links": {"website": ["https://twitch.tv/noblezito"], "subreddit": ["Noblezito"], "discord": ["XcaUEgN"]}, "path": {"241-258": [[811, 416], [814, 421], [819, 416], [820, 432], [817, 435], [804, 435], [800, 431], [800, 416], [805, 421], [806, 421], [809, 416]]}, "center": {"241-258": [810, 428]}}, -{"id": 2696, "name": "Streamer: JudgeMental und Dhalucard", "description": "Collaborative piece of two German streamers: JudgeMental from Bonjwa and Dhalucard.", "links": {}, "path": {"241-258": [[-1284, -390], [-1256, -390], [-1257, -393], [-1262, -400], [-1262, -402], [-1257, -404], [-1257, -400], [-1254, -396], [-1245, -398], [-1243, -399], [-1242, -398], [-1238, -400], [-1239, -403], [-1237, -405], [-1233, -404], [-1234, -401], [-1235, -401], [-1231, -398], [-1226, -400], [-1223, -397], [-1216, -397], [-1218, -391], [-1188, -390], [-1189, -408], [-1195, -421], [-1208, -434], [-1220, -439], [-1231, -438], [-1236, -434], [-1239, -432], [-1241, -434], [-1241, -439], [-1253, -436], [-1257, -440], [-1258, -440], [-1259, -436], [-1260, -435], [-1267, -437], [-1267, -434], [-1264, -433], [-1272, -425], [-1277, -413], [-1277, -409], [-1278, -408], [-1284, -408]]}, "center": {"241-258": [-1220, -418]}}, -{"id": 2697, "name": "Akiho Senomiya (瀬乃宮 あき穂)", "description": "Akiho Senomiya (瀬乃宮 あき穂) is the main female protagonist of the series. She is the President of the Robotics Research Club and Kaito Yashio's childhood best friend. Her dream is to complete the giant robot Gan-tsuku.", "links": {"website": ["https://myanimelist.net/character/60153/Akiho_Senomiya", "https://en.wikipedia.org/wiki/Robotics;Notes", "https://store.steampowered.com/app/1111380/ROBOTICSNOTES_ELITE/"], "subreddit": ["steinsplace"], "discord": ["elpsykongroo"]}, "path": {"242-258": [[-689, 355], [-690, 354], [-690, 353], [-691, 352], [-692, 351], [-692, 349], [-691, 348], [-690, 348], [-689, 347], [-689, 345], [-687, 345], [-686, 344], [-683, 344], [-682, 345], [-679, 345], [-677, 345], [-676, 347], [-676, 349], [-673, 352], [-673, 355], [-675, 358], [-675, 360], [-675, 363], [-673, 366], [-684, 366], [-691, 366], [-691, 364], [-687, 360], [-688, 357]]}, "center": {"242-258": [-682, 353]}}, -{"id": 2698, "name": "Rainbow - r/PlaceFishCult", "description": "Rainbow is a rainbow coloured fish owned, named, and designed by Sir Strawb", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"195-258": [[-128, 722], [-129, 721], [-128, 720], [-127, 721], [-126, 720], [-125, 721], [-124, 722], [-125, 723], [-126, 724], [-127, 723], [-128, 724], [-129, 723]]}, "center": {"195-258": [-126, 722]}}, -{"id": 2699, "name": "Tubbo", "description": "Tubbo is a British streamer most known for his Minecraft contents and multiplayer server TubNet. His mascot shown here, Benson, is based off of his duck shaped nightlight, surrounded by bees as a reference to Tubbo's nickname 'beeboy'.\nThe design is inspired by the streamer's merch.", "links": {"website": ["https://m.twitch.tv/tubbo/home"], "subreddit": ["Tubbo_"]}, "path": {"242-258": [[580, 499], [580, 548], [624, 548], [624, 499]]}, "center": {"242-258": [602, 524]}}, -{"id": 2700, "name": "r/PlaceFishCult tank", "description": "A gathering of little friends by a small group dedicated to making fish in Reddit's r/place", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"190-202": [[-113, 716], [-113, 725], [-130, 725], [-130, 716]], "203-258": [[-137, 716], [-137, 717], [-136, 717], [-136, 723], [-136, 724], [-113, 724], [-113, 716]]}, "center": {"190-202": [-121, 721], "203-258": [-125, 720]}}, -{"id": 2701, "name": "Justice", "description": "Justice is a French electronic music duo consisting of Gaspard Augé and Xavier de Rosnay. \n\nKnown for their vibrant blend of electronic, house, and rock influences, they rose to prominence in the mid-2000s with hit singles like \"D.A.N.C.E\" and their Grammy-winning remix of \"We Are Your Friends.\" \n\nTheir visually striking live performances and distinctive cross logo, shown here in the style of their first album '†', have become signatures of their genre-defining style.", "links": {"website": ["https://justice.church"], "subreddit": ["placeFR", "JusticeMusic", "france"], "discord": ["placeFR"]}, "path": {"191-258": [[-459, 629], [-458, 630], [-448, 630], [-447, 629], [-446, 628], [-446, 627], [-445, 626], [-445, 621], [-446, 620], [-446, 618], [-447, 617], [-447, 614], [-444, 614], [-443, 613], [-442, 612], [-442, 608], [-443, 607], [-443, 606], [-445, 604], [-450, 604], [-450, 603], [-451, 602], [-452, 601], [-454, 601], [-455, 602], [-456, 603], [-456, 604], [-461, 604], [-462, 605], [-463, 606], [-463, 607], [-464, 608], [-464, 612], [-462, 614], [-459, 614], [-459, 617], [-460, 618], [-460, 620], [-461, 621], [-461, 626], [-460, 627], [-460, 628]]}, "center": {"191-258": [-453, 623]}}, -{"id": 2703, "name": "Hungary-Austria-Poland heart and peace sign", "description": "This heart and peace sign was drawn after Argentine streamer ElSpreen raided and destroyed the flag of Poland. Hungary gave their newly conquered land to Poland, and Austria helped and cooperated with the process. Poland managed to reconquer their lost flag on the canvas, so they gave their new land back to Hungary shortly after.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Poland"], "subreddit": ["hungary", "placeAustria", "Austria", "Polska", "poland"], "discord": ["pixelhu", "f5ky84vGku", "39J5zwpfha"]}, "path": {"218-258": [[-321, -35], [-324, -37], [-325, -37], [-327, -34], [-327, -32], [-321, -26], [-315, -32], [-315, -35], [-316, -36], [-317, -37], [-319, -37], [-320, -36], [-321, -35], [-325, -36], [-324, -31]]}, "center": {"218-258": [-320, -30]}}, +{"id": 2676, "name": "Firey", "description": "Firey is a character in Battle for Dream Island.", "links": {}, "path": {"231-258, T": [[-1401, 139], [-1401, 147], [-1400, 148], [-1398, 148], [-1398, 150], [-1394, 150], [-1394, 148], [-1392, 148], [-1391, 147], [-1391, 140], [-1393, 139], [-1394, 140], [-1395, 139], [-1396, 140], [-1397, 139], [-1398, 140], [-1399, 139], [-1400, 140]]}, "center": {"231-258, T": [-1396, 144]}}, +{"id": 2678, "name": "Progressbar95", "description": "Progressbar95 is a video game designed to resemble Microsoft Windows. It's main premise is to fill up the progressbar with blue segments while avoiding other harmful segments.", "links": {"website": ["https://store.steampowered.com/app/1304550/Progressbar95/", "https://play.google.com/store/apps/details?id=com.spookyhousestudios.progressbar95&hl=en_US", "https://apps.apple.com/app/progressbar95-retro-arcade/id1474374114"], "subreddit": ["progressbar95"], "discord": ["pcGE32TDsw"]}, "path": {"227-258, T": [[-649, 973], [-649, 996], [-627, 996], [-627, 973]]}, "center": {"227-258, T": [-638, 985]}}, +{"id": 2679, "name": "Pepper - r/PlaceFishCult", "description": "Pepper is a red and white fish designed by Aster and named by Marko", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"115-258, T": [[487, -288], [488, -289], [489, -290], [490, -289], [491, -290], [492, -289], [491, -288], [492, -287], [491, -286], [490, -287], [489, -286], [488, -287]]}, "center": {"115-258, T": [489, -288]}}, +{"id": 2680, "name": "Toeddchen", "description": "Toeddchen is a small german streamer. HE IS THE BEST STREAMER", "links": {"website": ["https://www.twitch.tv/toeddchen"], "discord": ["Ua7jab5c"]}, "path": {"227-258, T": [[1499, -609], [1484, -609], [1484, -622], [1499, -622], [1499, -620]]}, "center": {"221-258, T": [1492, -615]}}, +{"id": 2681, "name": "Crimean Tatar", "description": "Crimean Tatars are the indigenous people of the Autonomous Republic of Crimea, Ukraine. They faced oppression and mass deportation under the Russian Empire and the Soviet Union. This symbol (Tamga) represents their people and can be found on their flag (Kökbayraq), which Russia banned in occupied Crimea.", "links": {"website": ["https://ua.rocks/", "https://en.wikipedia.org/wiki/Crimean_Tatars"], "subreddit": ["placeukraine", "ukraine"], "discord": ["D4kNdnS8pF"]}, "path": {"248-258, T": [[-184, -143], [-178, -143], [-177, -142], [-175, -142], [-174, -141], [-173, -141], [-172, -140], [-171, -139], [-170, -138], [-170, -137], [-169, -136], [-169, -134], [-168, -133], [-168, -127], [-169, -126], [-169, -124], [-170, -123], [-170, -122], [-171, -121], [-172, -120], [-173, -119], [-174, -119], [-176, -118], [-177, -118], [-178, -117], [-184, -117], [-185, -118], [-187, -118], [-188, -119], [-189, -119], [-190, -120], [-191, -121], [-192, -121], [-192, -122], [-192, -123], [-193, -124], [-193, -126], [-194, -127], [-194, -133], [-193, -134], [-193, -136], [-192, -137], [-192, -138], [-191, -139], [-190, -140], [-189, -141], [-188, -141], [-187, -142], [-185, -142]]}, "center": {"248-258, T": [-181, -130]}}, +{"id": 2682, "name": "Rin Tohsaka", "description": "Rin Tohsaka (遠坂 凛, Tōsaka Rin) is one of the three main heroines of the visual novel Fate/stay night who acts as the Master of Archer in the Fifth Holy Grail War introduced in the 2004 by Type-Moon.", "links": {"subreddit": ["fatestaynightplace"], "discord": ["RRAjUqwXm9"]}, "path": {"225-258, T": [[-1147, -545], [-1112, -545], [-1112, -510], [-1147, -510], [-1147, -528]]}, "center": {"225-258, T": [-1129, -527]}}, +{"id": 2683, "name": "Puschel", "description": "\"Puschel\"-Artwork by Sukidingels representing the german Twitch Streamer JenNyan", "links": {"website": ["https://www.twitch.tv/jennyan"]}, "path": {"227-258, T": [[-733, -288], [-714, -288], [-717, -282], [-720, -273], [-723, -268], [-729, -264], [-737, -266], [-744, -272], [-748, -275], [-747, -280], [-738, -286], [-731, -281], [-729, -282], [-724, -288], [-718, -290], [-714, -289], [-714, -284]]}, "center": {"227-258, T": [-733, -273]}}, +{"id": 2684, "name": "Perxitaa", "description": "Perxitaa is a spanish streamer dedicated mainly to GTA Roleplay in InfamesRp. He's also the president of a football club called Los Troncos FC.", "links": {"website": ["https://www.twitch.tv/perxitaa?sr=a", "https://twitter.com/Perxitaa"]}, "path": {"121-159": [[-984, 59], [-984, 69], [-975, 69], [-975, 59]], "160-258, T": [[-984, 70], [-984, 61], [-975, 61], [-975, 70]]}, "center": {"121-159": [-979, 64], "160-258, T": [-979, 66]}}, +{"id": 2685, "name": "Mysta Rias", "description": "Mysta Rias is a virtual YouTuber affiliated with Nijisanji's English branch, debuting as part of its fourth wave \"Luxiem\" on December 21, 2021. As of July 2023, he has amassed over 1.1 million subscribers\n\nHe is possibly most well known for his highly questionable cooking experiences, which included leaving rice in a cooker until it was teeming with maggots.\n\n\"Mystakes\" is the nickname given to his fans, an obvious pun on the word \"mistakes\".\n\nOn July 23, 2023, he announced that he would be retiring from the persona due to burnout, and announced his final stream on August 27. All of his content will be made private after (except for the final stream).", "links": {"website": ["https://www.youtube.com/channel/UCIM92Ok_spNKLVB5TsgwseQ"]}, "path": {"218-258, T": [[1114, -863], [1115, -820], [1204, -820], [1205, -863]]}, "center": {"218-258, T": [1160, -841]}}, +{"id": 2687, "name": "Rimi Sakihata (咲畑梨深)", "description": "Rimi is one of the main characters in ChaoS;HEAd and is the main female protaganist.", "links": {"website": ["https://en.wikipedia.org/wiki/Chaos;Head", "https://store.steampowered.com/app/1961950/CHAOSHEAD_NOAH/", "https://myanimelist.net/character/12801/Rimi_Sakihata"], "subreddit": ["steinsplace"], "discord": ["elpsykongroo"]}, "path": {"115-258, T": [[-695, 337], [-695, 336], [-694, 336], [-693, 333], [-693, 329], [-693, 328], [-692, 328], [-692, 326], [-691, 326], [-689, 324], [-688, 324], [-687, 323], [-681, 323], [-680, 324], [-677, 324], [-676, 325], [-677, 326], [-676, 327], [-674, 329], [-673, 330], [-673, 334], [-675, 336], [-673, 338], [-673, 340], [-674, 341], [-672, 343], [-672, 346], [-673, 346], [-677, 345], [-682, 345], [-683, 344], [-686, 344], [-687, 345], [-689, 345], [-689, 343], [-690, 342], [-690, 341], [-691, 340], [-692, 339]]}, "center": {"115-258, T": [-684, 333]}}, +{"id": 2688, "name": "Hitori Gotō aka Bocchi", "description": "The protagonist of Manga: Bocchi the Rock!", "links": {"website": ["https://bocchi-the-rock.fandom.com/wiki/Hitori_Gotoh"]}, "path": {"227-258, T": [[428, -998], [423, -998], [423, -997], [421, -997], [421, -996], [419, -996], [419, -995], [418, -995], [418, -994], [417, -994], [417, -993], [417, -992], [416, -992], [417, -992], [416, -991], [415, -991], [415, -990], [413, -990], [412, -989], [414, -990], [415, -990], [416, -990], [415, -989], [415, -986], [416, -986], [416, -985], [417, -985], [417, -975], [417, -976], [419, -976], [419, -975], [420, -975], [420, -972], [420, -973], [421, -973], [421, -974], [421, -975], [422, -975], [422, -976], [423, -976], [423, -977], [424, -977], [424, -978], [425, -978], [426, -978], [426, -979], [431, -979], [432, -979], [432, -978], [433, -978], [433, -979], [433, -978], [432, -978], [433, -978], [434, -977], [434, -978], [433, -978], [433, -979], [433, -981], [434, -981], [434, -982], [434, -983], [433, -983], [433, -986], [432, -986], [432, -987], [431, -987], [430, -987], [429, -987], [429, -993], [429, -994], [429, -995], [430, -995], [430, -996], [430, -997], [431, -997], [429, -997], [429, -998]]}, "center": {"227-258, T": [423, -988]}}, +{"id": 2689, "name": "Loritta", "description": "Loritta is a general purpose brazilian Discord bot created by MrPowerGamerBR in 2017.", "links": {"website": ["https://loritta.website"], "subreddit": ["Loritta"], "discord": ["lori"]}, "path": {"227-258, T": [[163, 326], [164, 324], [169, 324], [170, 326], [170, 330], [168, 332], [165, 332], [163, 330]]}, "center": {"227-258, T": [167, 328]}}, +{"id": 2690, "name": "Honkai Star Rail Collage", "description": "Honkai: Star Rail is a role-playing gacha video game developed by miHoYo and first published in 2023. It follows the gameplay style of turn-based combat with elements of open-world and dungeon exploration. The game is set in a science-fantasy universe in which humanity follows the paths of beings called Aeons.\n\nThe collage features (from left-to-right, top-to-bottom):\n• Dan Heng's orb that is shown during his ultimate move.\n• Sushang's chicken that is summoned in her ultimate move.\n• Pom-Pom, the conductor of the Astral Express coming out of a beloved trash can.\n• Qingque's mahjong fish tile.\n• The Aeon of Nihility, IX.\n• The playable character Fu Xuan.", "links": {"website": ["https://hsr.hoyoverse.com/en-us/"], "subreddit": ["HonkaiStarRail", "FuXuan_Mains", "LiSushang", "DanhengMains", "Qingquemains"], "discord": ["B5S5tDSduZ"]}, "path": {"190-258, T": [[-89, 901], [-89, 928], [-74, 928], [-74, 937], [-73, 937], [-73, 940], [-63, 940], [-63, 926], [-46, 926], [-46, 909], [-50, 904], [-50, 900], [-56, 894], [-64, 894], [-64, 901]]}, "center": {"190-258, T": [-71, 914]}}, +{"id": 2691, "name": "Calcifer - r/PlaceFishCult", "description": "Calcifer is a betta fish based on TmickyD's real fish by the same name, this fish was originally added to and transferred from 2022's r/place", "links": {"website": ["https://media.discordapp.net/attachments/959466095620812821/959588341681098842/redditsave.com_big_yawn-yeomftw4beq81.mp4"], "subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"118-258, T": [[493, -291], [494, -292], [495, -293], [496, -292], [497, -293], [498, -292], [497, -291], [498, -290], [497, -289], [496, -290], [495, -289], [494, -290]]}, "center": {"118-258, T": [495, -291]}}, +{"id": 2692, "name": "Minecraft Steve", "description": "Player character from Minecraft. Because of simple design is griefed into Herobrine (Minecraft creepypasta, without pupils), but is supposed to be Steve. At some point the eyes were edited to look at boykisser, and r/furry_irl members added a heart between them. Because of this, some think Steve and r/furry_irl are allies, but it was never confirmed or denied.", "links": {"website": ["https://www.minecraft.net/"], "subreddit": ["minecraft"]}, "path": {"227-258, T": [[-1125, 187], [-1118, 187], [-1118, 199], [-1120, 199], [-1120, 204], [-1123, 204], [-1123, 199], [-1125, 199]]}, "center": {"227-258, T": [-1121, 194]}}, +{"id": 2693, "name": "Flag of Israel", "description": "The national flag of the State of Israel was adopted on 28 October 1948, five months after the establishment of the state.", "links": {"subreddit": ["israel"]}, "path": {"227-258, T": [[340, -192], [377, -192], [377, -177], [340, -177]]}, "center": {"227-258, T": [359, -184]}}, +{"id": 2695, "name": "Noblezito's Crown", "description": "Noblezito's Crown made by his community and allies! 👑 ❤", "links": {"website": ["https://twitch.tv/noblezito"], "subreddit": ["Noblezito"], "discord": ["XcaUEgN"]}, "path": {"241-258, T": [[811, 416], [814, 421], [819, 416], [820, 432], [817, 435], [804, 435], [800, 431], [800, 416], [805, 421], [806, 421], [809, 416]]}, "center": {"241-258, T": [810, 428]}}, +{"id": 2696, "name": "Streamer: JudgeMental und Dhalucard", "description": "Collaborative piece of two German streamers: JudgeMental from Bonjwa and Dhalucard.", "links": {}, "path": {"241-258, T": [[-1284, -390], [-1256, -390], [-1257, -393], [-1262, -400], [-1262, -402], [-1257, -404], [-1257, -400], [-1254, -396], [-1245, -398], [-1243, -399], [-1242, -398], [-1238, -400], [-1239, -403], [-1237, -405], [-1233, -404], [-1234, -401], [-1235, -401], [-1231, -398], [-1226, -400], [-1223, -397], [-1216, -397], [-1218, -391], [-1188, -390], [-1189, -408], [-1195, -421], [-1208, -434], [-1220, -439], [-1231, -438], [-1236, -434], [-1239, -432], [-1241, -434], [-1241, -439], [-1253, -436], [-1257, -440], [-1258, -440], [-1259, -436], [-1260, -435], [-1267, -437], [-1267, -434], [-1264, -433], [-1272, -425], [-1277, -413], [-1277, -409], [-1278, -408], [-1284, -408]]}, "center": {"241-258, T": [-1220, -418]}}, +{"id": 2697, "name": "Akiho Senomiya (瀬乃宮 あき穂)", "description": "Akiho Senomiya (瀬乃宮 あき穂) is the main female protagonist of the series. She is the President of the Robotics Research Club and Kaito Yashio's childhood best friend. Her dream is to complete the giant robot Gan-tsuku.", "links": {"website": ["https://myanimelist.net/character/60153/Akiho_Senomiya", "https://en.wikipedia.org/wiki/Robotics;Notes", "https://store.steampowered.com/app/1111380/ROBOTICSNOTES_ELITE/"], "subreddit": ["steinsplace"], "discord": ["elpsykongroo"]}, "path": {"242-258, T": [[-689, 355], [-690, 354], [-690, 353], [-691, 352], [-692, 351], [-692, 349], [-691, 348], [-690, 348], [-689, 347], [-689, 345], [-687, 345], [-686, 344], [-683, 344], [-682, 345], [-679, 345], [-677, 345], [-676, 347], [-676, 349], [-673, 352], [-673, 355], [-675, 358], [-675, 360], [-675, 363], [-673, 366], [-684, 366], [-691, 366], [-691, 364], [-687, 360], [-688, 357]]}, "center": {"242-258, T": [-682, 353]}}, +{"id": 2698, "name": "Rainbow - r/PlaceFishCult", "description": "Rainbow is a rainbow coloured fish owned, named, and designed by Sir Strawb", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"195-258, T": [[-128, 722], [-129, 721], [-128, 720], [-127, 721], [-126, 720], [-125, 721], [-124, 722], [-125, 723], [-126, 724], [-127, 723], [-128, 724], [-129, 723]]}, "center": {"195-258, T": [-126, 722]}}, +{"id": 2699, "name": "Tubbo", "description": "Tubbo is a British streamer most known for his Minecraft contents and multiplayer server TubNet. His mascot shown here, Benson, is based off of his duck shaped nightlight, surrounded by bees as a reference to Tubbo's nickname 'beeboy'.\nThe design is inspired by the streamer's merch.", "links": {"website": ["https://m.twitch.tv/tubbo/home"], "subreddit": ["Tubbo_"]}, "path": {"242-258, T": [[580, 499], [580, 548], [624, 548], [624, 499]]}, "center": {"242-258, T": [602, 524]}}, +{"id": 2700, "name": "r/PlaceFishCult tank", "description": "A gathering of little friends by a small group dedicated to making fish in Reddit's r/place", "links": {"subreddit": ["PlaceFishCult"], "discord": ["XdMxvvcP"]}, "path": {"190-202": [[-113, 716], [-113, 725], [-130, 725], [-130, 716]], "203-258, T": [[-137, 716], [-137, 717], [-136, 717], [-136, 723], [-136, 724], [-113, 724], [-113, 716]]}, "center": {"190-202": [-121, 721], "203-258, T": [-125, 720]}}, +{"id": 2701, "name": "Justice", "description": "Justice is a French electronic music duo consisting of Gaspard Augé and Xavier de Rosnay. \n\nKnown for their vibrant blend of electronic, house, and rock influences, they rose to prominence in the mid-2000s with hit singles like \"D.A.N.C.E\" and their Grammy-winning remix of \"We Are Your Friends.\" \n\nTheir visually striking live performances and distinctive cross logo, shown here in the style of their first album '†', have become signatures of their genre-defining style.", "links": {"website": ["https://justice.church"], "subreddit": ["placeFR", "JusticeMusic", "france"], "discord": ["placeFR"]}, "path": {"191-258, T": [[-459, 629], [-458, 630], [-448, 630], [-447, 629], [-446, 628], [-446, 627], [-445, 626], [-445, 621], [-446, 620], [-446, 618], [-447, 617], [-447, 614], [-444, 614], [-443, 613], [-442, 612], [-442, 608], [-443, 607], [-443, 606], [-445, 604], [-450, 604], [-450, 603], [-451, 602], [-452, 601], [-454, 601], [-455, 602], [-456, 603], [-456, 604], [-461, 604], [-462, 605], [-463, 606], [-463, 607], [-464, 608], [-464, 612], [-462, 614], [-459, 614], [-459, 617], [-460, 618], [-460, 620], [-461, 621], [-461, 626], [-460, 627], [-460, 628]]}, "center": {"191-258, T": [-453, 623]}}, +{"id": 2703, "name": "Hungary-Austria-Poland heart and peace sign", "description": "This heart and peace sign was drawn after Argentine streamer ElSpreen raided and destroyed the flag of Poland. Hungary gave their newly conquered land to Poland, and Austria helped and cooperated with the process. Poland managed to reconquer their lost flag on the canvas, so they gave their new land back to Hungary shortly after.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Poland"], "subreddit": ["hungary", "placeAustria", "Austria", "Polska", "poland"], "discord": ["pixelhu", "f5ky84vGku", "39J5zwpfha"]}, "path": {"218-258, T": [[-321, -35], [-324, -37], [-325, -37], [-327, -34], [-327, -32], [-321, -26], [-315, -32], [-315, -35], [-316, -36], [-317, -37], [-319, -37], [-320, -36], [-321, -35], [-325, -36], [-324, -31]]}, "center": {"218-258, T": [-320, -30]}}, {"id": 2704, "name": "Girls und Panzer", "description": "Logo of Ooarai Girls' Academy from the tank warfare anime Girls und Panzer.", "links": {"subreddit": ["girlsundpanzer"]}, "path": {"227-241": [[-1181, 14], [-1181, 41], [-1208, 41], [-1208, 14]]}, "center": {"227-241": [-1194, 28]}}, -{"id": 2705, "name": "The Worldbox Logo", "description": "was created through a cooperation between the Germans and the Worldbox-Godsimulaton communities", "links": {"subreddit": ["Worldbox", "placeDE"]}, "path": {"193-258": [[-564, -999], [-565, -974], [-527, -976], [-527, -998], [-555, -999], [-561, -999], [-563, -999]]}, "center": {"193-258": [-552, -987]}}, -{"id": 2706, "name": "Amelia Watson", "description": "Watson Amelia (ワトソン・アメリア) is a female English-speaking Virtual YouTuber associated with hololive, debuting in 2020 as part of hololive English first generation \"-Myth-\" alongside Ninomae Ina'nis, Takanashi Kiara, Mori Calliope and Gawr Gura.\nAme is a time traveler", "links": {"website": ["https://hololive.hololivepro.com/en/talents/watson-amelia/", "https://www.youtube.com/channel/UCyl1z3jo3XHR1riLFKG5UAg", "https://twitter.com/watsonameliaEN"], "subreddit": ["Hololive"]}, "path": {"242-258": [[-261, -850], [-261, -837], [-260, -837], [-260, -836], [-259, -836], [-259, -829], [-257, -829], [-257, -825], [-256, -825], [-256, -824], [-248, -824], [-248, -825], [-247, -825], [-247, -829], [-245, -829], [-245, -837], [-243, -837], [-243, -850], [-244, -850], [-244, -851], [-245, -851], [-245, -852], [-246, -852], [-246, -853], [-247, -853], [-247, -854], [-256, -854], [-257, -854], [-257, -853], [-258, -853], [-258, -852], [-259, -852], [-259, -851], [-260, -851], [-260, -850]]}, "center": {"242-258": [-252, -845]}}, -{"id": 2707, "name": "Papaver flowers", "description": "The Papaver flower pattern is perhaps the most popular and well-known pattern of Finnish clothing company Marimekko's clothes.", "links": {"website": ["https://www.marimekko.com/fi_fi/maripedia/kuviot/unikko"]}, "path": {"242-258": [[54, -329], [38, -329], [38, -336], [37, -336], [37, -337], [36, -337], [36, -345], [36, -346], [54, -346]]}, "center": {"242-258": [46, -338]}}, -{"id": 2708, "name": "Adventure Time", "description": "The main characteres of the show, Finn and Jake", "links": {"subreddit": ["adventuretime"]}, "path": {"242-258": [[653, 792], [656, 792], [656, 793], [657, 793], [657, 796], [658, 796], [658, 797], [657, 797], [657, 804], [653, 804], [652, 794], [652, 793], [651, 793], [653, 793]]}, "center": {"242-258": [655, 798]}}, -{"id": 2709, "name": "Greggs Logo and Sausage Roll", "description": "Greggs is a popular baked goods/cafe chain in the UK famous for its sausage rolls (depicted). This symbol has great significance to r/UKOnPlace as it was involved in the Perrababy/Greggs war. This symbol resisted a large, rouge Swedish streamer called Perrababy who insisted on expanding over the Greggs logo as well as a memorial by the destiny comunity to the actor Lance Reddick, and the flag of South Korea, who the UK formed a strong alliance with. The UK cemented its position by telling Perrababy that he can \"Honestly go suck a sausage roll\".", "links": {"website": ["https://www.greggs.co.uk"], "subreddit": ["Greggs", "ukplace", "UKOnPlace"], "discord": ["ukplace", "ukonplace"]}, "path": {"242-258": [[1099, 805], [1099, 794], [1082, 794], [1082, 805]]}, "center": {"242-258": [1091, 800]}}, -{"id": 2710, "name": "Alive 2007", "description": "\"Alive 2007\" is a Grammy Award-winning live album by the French electronic music duo Daft Punk. The album, recorded during their 2006-2007 world tour, captures the energy and innovation of Daft Punk's live performances. \n\nThe album includes extended versions and mash-ups of hit tracks from the entirety of the pair's discography up to that point. Notable for its audible crowd energy and the distinct pyramid-style stage setup, \"Alive 2007\" is considered a milestone in live electronic music and is commonplace in discussions of the greatest live albums of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Alive_2007"], "subreddit": ["placeFR", "DaftPunk", "france"], "discord": ["placeFR"]}, "path": {"160": [[-434, 776], [-407, 756], [-417, 739], [-428, 739], [-434, 734], [-440, 739], [-451, 739], [-460, 757], [-450, 764], [-450, 766], [-451, 767], [-451, 768], [-452, 769], [-452, 770], [-453, 771], [-453, 772], [-454, 772], [-455, 773], [-454, 774], [-454, 776], [-453, 777], [-452, 776], [-451, 775], [-451, 774], [-450, 774], [-449, 773], [-448, 773], [-449, 774], [-449, 775], [-448, 776], [-447, 777], [-446, 776], [-446, 772], [-444, 771], [-443, 772], [-440, 772], [-439, 773], [-438, 774]], "163-258": [[-452, 710], [-450, 708], [-450, 707], [-449, 706], [-447, 706], [-448, 707], [-448, 708], [-446, 710], [-445, 709], [-445, 705], [-441, 705], [-440, 704], [-440, 705], [-439, 706], [-438, 706], [-437, 707], [-436, 707], [-435, 708], [-434, 708], [-433, 709], [-432, 708], [-431, 708], [-430, 707], [-429, 707], [-428, 706], [-427, 705], [-426, 705], [-422, 701], [-420, 701], [-418, 699], [-417, 699], [-416, 698], [-414, 696], [-412, 696], [-411, 695], [-410, 694], [-410, 693], [-409, 692], [-409, 691], [-408, 691], [-407, 690], [-407, 687], [-408, 686], [-409, 686], [-410, 685], [-410, 683], [-412, 681], [-412, 680], [-413, 679], [-414, 677], [-414, 676], [-415, 675], [-415, 674], [-417, 672], [-427, 672], [-428, 671], [-429, 671], [-429, 670], [-432, 667], [-434, 667], [-435, 668], [-438, 671], [-438, 672], [-449, 672], [-450, 673], [-451, 674], [-451, 675], [-452, 676], [-452, 678], [-453, 679], [-454, 680], [-454, 681], [-455, 682], [-455, 683], [-456, 684], [-456, 686], [-458, 688], [-458, 689], [-459, 690], [-458, 691], [-457, 691], [-457, 692], [-456, 693], [-456, 694], [-455, 695], [-454, 695], [-452, 697], [-451, 697], [-450, 698], [-449, 699], [-450, 700], [-450, 702], [-451, 703], [-452, 704], [-451, 705], [-452, 705], [-453, 706], [-452, 707], [-453, 708], [-453, 709]]}, "center": {"160": [-435, 755], "163-258": [-433, 688]}}, -{"id": 2711, "name": "Faust (Limbus Company) (Johann Georg Faust)", "description": "Faust is a character of a legend based on the real world Johann Georg Faust. The erudite Faust is highly successful yet dissatisfied with his life, which leads him to make a pact with Mephistophiles at a crossroad, giving up his soul for unlimited knowledge and worldly pleasures. The Faust in this artwork is the character from Limbus Company who is one of the 12 sinners that Dante manages. This art was created by members of the Moonframe discord server.", "links": {"subreddit": ["Project_Moon", "germany", "limbuscompany"]}, "path": {"239-241": [[-1419, 39], [-1419, 46], [-1401, 46], [-1401, 42], [-1400, 41], [-1402, 40], [-1402, 39], [-1403, 40], [-1407, 40], [-1408, 41], [-1413, 41], [-1416, 39]], "242-258": [[-1416, 18], [-1418, 19], [-1421, 19], [-1420, 21], [-1420, 26], [-1419, 32], [-1415, 35], [-1419, 38], [-1420, 44], [-1419, 46], [-1401, 46], [-1401, 42], [-1400, 40], [-1402, 36], [-1404, 33], [-1401, 32], [-1400, 25], [-1400, 21], [-1404, 17]]}, "center": {"239-241": [-1405, 43], "242-258": [-1411, 27]}}, -{"id": 2712, "name": "Alcryst and Sommie - Fire Emblem Engage", "description": "Alcryst is the second prince of Brodia, the Kingdom of Might from Fire Emblem Engage. While he may physically look like the traditional blue-haired FE lord, he's not the protagonist (he is even wielding a bow instead of a sword *le gasp!*)\nWhile having an extremely low self-esteem, he is kind and supportive of his friends and allies, while merciless towards his enemies.\nStarted by a tiny friend group, with user wiggle doing the first design, user hopewish told a Discord server centered on him, who then joined in the construction then defense effort. Users Kayarine and herbification from the FE Discord provided the updated sprite after the color palette expansion, based on his in-game sprite. \nSommie is the guardian of the Somniel, a holy island in the sky that the Divine Dragon and their allies can access. His pixel design was created by user Ilu_Icey.\nWith a surprisingly fierce protector and the guardian of a holy place, no wonder they decided to protect a large spectrum of the LGBTQ community as represented by their flags around!", "links": {"subreddit": ["fireemblem"], "discord": ["N36qqxPD2p"]}, "path": {"187-258": [[-999, -176], [-999, -213], [-979, -213], [-979, -199], [-973, -191], [-973, -176]]}, "center": {"187-258": [-987, -188]}}, -{"id": 2713, "name": "Logo Hochschule Hof, University of Applied Sciences", "description": "Is a german University of Applied Sciences in the North of Bavaria \n\nThanks to all the Universities Left to us, making this Possible <3", "links": {"website": ["https://www.hof-university.com/", "https://www.hof-university.de/"]}, "path": {"242-252": [[-16, -76], [-10, -76], [-10, -70], [-16, -70]], "253-258": [[-18, -65], [-14, -65], [-14, -61], [-18, -61]]}, "center": {"242-252": [-13, -73], "253-258": [-16, -63]}}, -{"id": 2714, "name": "żubrówka", "description": "is a flavored Polish vodka, which contains a bison grass blade (Hierochloe odorata) in every bottle. The Żubrówka brand name is also used on bottles of conventional vodka, labeled as Żubrówka Biała. An easy way to tell the difference is to look for the blade of grass in the bottle. The grass is sourced from the Białowieża Forest, hand-picked and dried under natural conditions.", "links": {"website": ["https://en.wikipedia.org/wiki/%C5%BBubr%C3%B3wka"]}, "path": {"242-258": [[704, -88], [770, -87], [770, -70], [705, -70], [705, -88]]}, "center": {"242-258": [737, -79]}}, -{"id": 2715, "name": "Skeppy", "description": "An American YouTuber known for his Minecraft challenge videos involving numerous contestants, and for being fellow Minecrafter Badboyhalo's platonic boyfriend.", "links": {"website": ["https://youtube.fandom.com/wiki/Skeppy"], "subreddit": ["skeppy"]}, "path": {"190-258": [[569, 511], [569, 520], [579, 520], [579, 511]]}, "center": {"190-258": [574, 516]}}, -{"id": 2716, "name": "Houshou Marine", "description": "Houshou Marine is a VTuber from the 3rd Generation of Hololive. She is depicted here in a chibi Touhou style.\n\nThis art was drawn as collaboration artwork between vtubersplace and Touhou.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Houshou_Marine"], "subreddit": ["Hololive", "touhou"], "discord": ["vtubersplace", "apl"]}, "path": {"205-258": [[1317, 394], [1348, 394], [1348, 370], [1346, 370], [1343, 367], [1343, 365], [1322, 365], [1322, 367], [1319, 370], [1317, 370]]}, "center": {"205-258": [1333, 380]}}, -{"id": 2717, "name": "Arona (blue archive)", "description": "Arona (アロナ, Arona), stylized as A.R.O.N.A, is a non-playable character in Blue Archive that resides in the mysterious Shittim Chest. She accompanies Sensei throughout their adventure in Kivotos as a guide.\n\nShe is the main mascot of Blue Archive, appearing as the figurehead on its website and social media. In addition to providing information and updates to Sensei, she also runs a series of videos called Arona Channel.", "links": {"website": ["https://bluearchive.fandom.com/wiki/Arona"], "subreddit": ["bluearchive"], "discord": ["bluearchiveglobal"]}, "path": {"242-258": [[1329, -1000], [1361, -999], [1360, -970], [1331, -968]]}, "center": {"242-258": [1345, -984]}}, -{"id": 2718, "name": "Domtoren", "description": "The Domtoren (Dom Tower) is an iconic landmark in Utrecht, Netherlands. Completed in 1382, it stands at 112 meters tall and is the tallest church tower in the country. Visitors can climb its 465 steps for stunning city views and explore its rich history and bells that chime beautifully across Utrecht.", "links": {"website": ["https://en.wikipedia.org/wiki/Dom_Tower_of_Utrecht", "https://www.domtoren.nl/"], "subreddit": ["PlaceNL"], "discord": ["PlaceNL"], "wiki": ["Dom_Tower"]}, "path": {"242-258": [[-1419, -459], [-1419, -481], [-1418, -481], [-1418, -494], [-1417, -494], [-1417, -504], [-1416, -505], [-1416, -511], [-1412, -511], [-1412, -505], [-1412, -504], [-1411, -504], [-1411, -494], [-1410, -494], [-1410, -481], [-1409, -481], [-1409, -480], [-1410, -480], [-1411, -480], [-1411, -477], [-1413, -477], [-1413, -462]]}, "center": {"242-258": [-1414, -485]}}, -{"id": 2719, "name": "Devon Flag", "description": "Devon historically known as Devonshire is a ceremonial county in South West England. The county borders the Bristol Channel to the north, Somerset and Dorset to the east, the English Channel to the south, and Cornwall to the west. Plymouth is the largest settlement.", "links": {"website": ["https://en.wikipedia.org/wiki/Devon"], "subreddit": ["ukplace", "UKOnPlace", "devonUK"], "discord": ["ukplace", "ukonplace"]}, "path": {"242-258": [[-333, -290], [-321, -290], [-321, -284], [-333, -284], [-333, -287]]}, "center": {"242-258": [-327, -287]}}, -{"id": 2720, "name": "Blood Blockade Battlefront / Kekkai Sensen", "description": "Blood Blockade Battlefront (Japanese: 血界戦線, Hepburn: Kekkai Sensen, lit. \"Bloodline Battlefront\") is a Japanese manga series written and illustrated by Yasuhiro Nightow. It revolves around a young photographer named Leonardo Watch, who obtains 'the All Seeing Eyes of the Gods' at the cost of his sister's eyesight. After the incident, Leonardo moves to the city of Hellsalem's Lot to join an organization known as Libra to fight several monsters as well as terrorists. \n\nTwo direct sequel are made afterwards, titled Blood Blockade Battlefront: Back 2 Back and Blood Blockade Battlefront: Beat 3 Peat.\n\nOn October 26, 2022. The manga was adapted into an anime television series produced by studio Bones and directed by Rie Matsumoto as first announced in May 2014. A 25-minute original video animation titled \"King of the Restaurant of Kings\" was bundled with the official Blood Blockade Battlefront guidebook that was released on June 3, 2016.\n\nA second season was announced in December 2016, running for 12 episodes. With Shigehito Takayanagi and Bones returning from the second season of the anime series to direct and animate the OAD, respectively.", "links": {"website": ["http://kekkaisensen.com/"], "subreddit": ["KekkaiSensen"], "discord": ["7m5MNmM"]}, "path": {"42-49": [[209, -47], [209, -35], [221, -35], [221, -47]], "89-99": [[-811, 116], [-796, 116], [-796, 128], [-811, 128]], "124-258": [[53, -628], [73, -628], [73, -610], [53, -610]]}, "center": {"42-49": [215, -41], "89-99": [-803, 122], "124-258": [63, -619]}}, -{"id": 2721, "name": "Blink BP-Hammer Logo", "description": "BLINK is the official fandom name for BLACKPINK. The word BLINK is a combination of the words \"bl\"ack and \"p\"ink, meaning the fans start with Blackpink and end with Blackpink.\n\nThe Hammer is the shape of the official Blackpink Lightstick.", "links": {"website": ["https://www.blackpinkmusic.com/", "https://www.blackpinklive.com/"], "subreddit": ["BlackPink", "BeulPing"], "discord": ["qmGHwGq"]}, "path": {"245-258": [[648, 945], [676, 945], [676, 953], [648, 953]]}, "center": {"245-258": [662, 949]}}, -{"id": 2722, "name": "Lion Monument", "description": "The Lion Monument (German: Löwendenkmal), or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820–21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris. It is one of the most famous monuments in Switzerland, visited annually by about 1.4 million tourists. In 2006, it was placed under Swiss monument protection.\n\nAmerican humorist and author Samuel Clemens (Mark Twain) praised the sculpture of a mortally wounded lion as \"the most mournful and moving piece of stone in the world.\"", "links": {"website": ["https://en.wikipedia.org/wiki/Lion_Monument", "https://www.luzern.com/en/highlights/sights/lion-monument/"]}, "path": {"240-258": [[1416, -764], [1416, -769], [1414, -771], [1414, -772], [1410, -776], [1409, -776], [1408, -777], [1407, -777], [1406, -778], [1405, -777], [1404, -777], [1403, -776], [1402, -776], [1398, -772], [1398, -771], [1397, -770], [1397, -763], [1398, -762], [1398, -761], [1399, -760], [1399, -759], [1403, -755], [1404, -755], [1406, -753], [1412, -753], [1414, -755], [1415, -755], [1416, -754], [1417, -754], [1418, -753], [1419, -753], [1420, -752], [1425, -752], [1426, -751], [1428, -751], [1429, -750], [1427, -748], [1426, -746], [1426, -744], [1427, -743], [1428, -743], [1429, -742], [1432, -742], [1434, -744], [1434, -745], [1435, -746], [1435, -747], [1436, -748], [1436, -749], [1437, -750], [1438, -750], [1441, -753], [1442, -753], [1444, -755], [1445, -755], [1446, -756], [1447, -756], [1448, -757], [1450, -757], [1451, -758], [1457, -758], [1458, -757], [1456, -755], [1455, -755], [1454, -754], [1453, -754], [1452, -753], [1452, -752], [1451, -751], [1451, -748], [1452, -747], [1453, -747], [1458, -752], [1458, -753], [1459, -754], [1466, -754], [1467, -753], [1468, -753], [1470, -751], [1471, -751], [1472, -750], [1473, -750], [1475, -748], [1476, -748], [1477, -747], [1480, -747], [1481, -746], [1487, -746], [1488, -747], [1490, -747], [1491, -748], [1492, -748], [1493, -749], [1494, -749], [1496, -751], [1496, -753], [1495, -754], [1495, -755], [1494, -756], [1494, -757], [1492, -759], [1492, -761], [1490, -763], [1490, -764], [1488, -766], [1488, -767], [1487, -768], [1486, -768], [1484, -770], [1483, -770], [1482, -771], [1480, -771], [1479, -772], [1471, -772], [1470, -771], [1465, -771], [1464, -772], [1462, -772], [1461, -773], [1460, -773], [1459, -774], [1458, -774], [1457, -775], [1456, -775], [1455, -776], [1454, -776], [1453, -777], [1452, -777], [1450, -779], [1449, -779], [1448, -780], [1447, -780], [1445, -782], [1443, -782], [1442, -783], [1441, -783], [1440, -784], [1428, -784], [1427, -783], [1426, -783], [1425, -782], [1424, -782], [1422, -780], [1421, -780], [1418, -777], [1418, -776], [1417, -775], [1417, -772], [1418, -771], [1418, -768], [1419, -767], [1419, -766], [1420, -765], [1420, -764], [1418, -764], [1417, -763]]}, "center": {"240-258": [1435, -768]}}, -{"id": 2723, "name": "Slimecicle", "description": "Charles Dalgleish, better known online as Charlie Slimecicle is an American YouTuber and Twitch streamer. He is known for playing Minecraft and being involved in various multiplayer servers with other well known YouTubers/streamers.", "links": {"website": ["https://youtube.fandom.com/wiki/Slimecicle"], "subreddit": ["placecicle", "slimecicle"], "discord": ["U8HfQb5KYz"]}, "path": {"242-258": [[501, 501], [501, 500], [500, 501], [500, 505], [500, 535], [529, 535], [529, 533], [530, 532], [531, 531], [532, 530], [533, 530], [534, 529], [535, 529], [535, 500]]}, "center": {"242-258": [517, 518]}}, -{"id": 2724, "name": "Skulette crest", "description": "the skullette is a spooktacular symbol from mattel's doll/ show line monster high. She appears in the logo.", "links": {"subreddit": ["MonsterHigh"]}, "path": {"178-258": [[-1376, 538], [-1360, 538], [-1353, 544], [-1353, 563], [-1368, 578], [-1383, 563], [-1383, 543]]}, "center": {"178-258": [-1368, 553]}}, -{"id": 2725, "name": "Idolcorp Logo", "description": "Idolcorp is a VTuber agency founded by Aviel Basin and based in Israel. Its first line of talents debuted in 2022.", "links": {"website": ["https://idol-company.com"], "subreddit": ["idolcorp"], "discord": ["idolcorp"]}, "path": {"242-258": [[-342, -911], [-342, -891], [-326, -891], [-324, -893], [-322, -893], [-322, -911]]}, "center": {"242-258": [-332, -901]}}, -{"id": 2726, "name": "Menorah", "description": "Religious symbol for Judaism.", "links": {"website": ["https://en.wikipedia.org/wiki/Temple_menorah"], "subreddit": ["Israel"], "discord": ["israel"]}, "path": {"227-258": [[378, -193], [398, -193], [399, -175], [396, -175], [396, -174], [395, -174], [394, -174], [394, -173], [382, -173], [382, -174], [380, -174], [380, -175], [379, -175], [379, -176], [378, -176]]}, "center": {"227-258": [389, -183]}}, -{"id": 2727, "name": "Ruhr Universität Bochum", "description": "Located in the heart of Europe in the dynamic metropolitan region of the Ruhrgebiet, RUB with its 21 faculties is home to 42,600 students from over 130 countries", "links": {"website": ["https://www.ruhr-uni-bochum.de/de", "https://de.wikipedia.org/wiki/Ruhr-Universit%C3%A4t_Bochum"], "subreddit": ["RuhrUniBochum"]}, "path": {"242-258": [[-145, -76], [-145, -56], [-127, -57], [-127, -69], [-141, -69], [-141, -76]]}, "center": {"242-258": [-137, -63]}}, -{"id": 2728, "name": "Moon from \"Le Voyage dans la Lune\" (Movie)", "description": "\"Le Voyage dans la Lune\" (A Trip to the Moon) is a renowned French silent film directed by Georges Méliès in 1902. This pioneering work, famous for its iconic shot of a capsule landing in the eye of the moon's face, is often credited as the first science fiction film. Its innovative use of special effects, storytelling, and fantastical elements represent a significant milestone in the history of cinema. Méliès' inventive spirit and cinematic artistry firmly root \"Le Voyage dans la Lune\" as a treasure of French cultural and artistic heritage.\n\nThe moon in \"Le Voyage dans la Lune\" has been paired with the beloved character of \"Le Petit Prince\" (The Little Prince), a nod to the ethereal lunar landscapes that the Prince visits on his journey. \"Le Petit Prince,\" written by Antoine de Saint-Exupéry in 1943, is one of the most translated and best-selling books in the world. This French novella tells the story of a young prince who travels through the universe, encountering various inhabitants of other planets, and shares profound and philosophical observations on life and human nature. The pairing of these two symbols of French cultural heritage emphasizes the nation's longstanding contributions to world literature and cinema.", "links": {"website": ["https://en.wikipedia.org/wiki/A_Trip_to_the_Moon"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"99-111": [[969, 250], [954, 262], [955, 269], [959, 272], [960, 284], [977, 292], [994, 288], [999, 281], [999, 257], [987, 249], [970, 249]], "116-258": [[925, -247], [932, -249], [936, -253], [938, -258], [938, -263], [933, -270], [927, -273], [922, -273], [917, -271], [913, -268], [910, -266], [910, -262], [911, -260], [912, -260], [913, -255], [915, -251], [918, -249]]}, "center": {"99-111": [979, 269], "116-258": [925, -260]}}, -{"id": 2729, "name": "VLC Media Player (Software)", "description": "VLC Media Player (VideoLAN Client) is a free and open-source, cross-platform multimedia player developed by the French non-profit organization VideoLAN Project. This widely-used software, renowned for its ability to play almost any multimedia file format, including DVDs, audio CDs, VCDs, and various streaming protocols, was initially released by students of the École Centrale Paris in France. It's not only a significant contribution from France to the global software community but also a testament to the nation's robust technical and engineering capabilities.", "links": {"website": ["https://www.videolan.org/"], "subreddit": ["placeFR", "VLC", "france"], "discord": ["placeFR"]}, "path": {"129-258": [[888, -23], [889, -28], [895, -43], [900, -43], [905, -28], [906, -27], [907, -22], [888, -22]]}, "center": {"129-258": [897, -29]}}, +{"id": 2705, "name": "The Worldbox Logo", "description": "was created through a cooperation between the Germans and the Worldbox-Godsimulaton communities", "links": {"subreddit": ["Worldbox", "placeDE"]}, "path": {"193-258, T": [[-564, -999], [-565, -974], [-527, -976], [-527, -998], [-555, -999], [-561, -999], [-563, -999]]}, "center": {"193-258, T": [-552, -987]}}, +{"id": 2706, "name": "Amelia Watson", "description": "Watson Amelia (ワトソン・アメリア) is a female English-speaking Virtual YouTuber associated with hololive, debuting in 2020 as part of hololive English first generation \"-Myth-\" alongside Ninomae Ina'nis, Takanashi Kiara, Mori Calliope and Gawr Gura.\nAme is a time traveler", "links": {"website": ["https://hololive.hololivepro.com/en/talents/watson-amelia/", "https://www.youtube.com/channel/UCyl1z3jo3XHR1riLFKG5UAg", "https://twitter.com/watsonameliaEN"], "subreddit": ["Hololive"]}, "path": {"242-258, T": [[-261, -850], [-261, -837], [-260, -837], [-260, -836], [-259, -836], [-259, -829], [-257, -829], [-257, -825], [-256, -825], [-256, -824], [-248, -824], [-248, -825], [-247, -825], [-247, -829], [-245, -829], [-245, -837], [-243, -837], [-243, -850], [-244, -850], [-244, -851], [-245, -851], [-245, -852], [-246, -852], [-246, -853], [-247, -853], [-247, -854], [-256, -854], [-257, -854], [-257, -853], [-258, -853], [-258, -852], [-259, -852], [-259, -851], [-260, -851], [-260, -850]]}, "center": {"242-258, T": [-252, -845]}}, +{"id": 2707, "name": "Papaver flowers", "description": "The Papaver flower pattern is perhaps the most popular and well-known pattern of Finnish clothing company Marimekko's clothes.", "links": {"website": ["https://www.marimekko.com/fi_fi/maripedia/kuviot/unikko"]}, "path": {"242-258, T": [[54, -329], [38, -329], [38, -336], [37, -336], [37, -337], [36, -337], [36, -345], [36, -346], [54, -346]]}, "center": {"242-258, T": [46, -338]}}, +{"id": 2708, "name": "Adventure Time", "description": "The main characteres of the show, Finn and Jake", "links": {"subreddit": ["adventuretime"]}, "path": {"242-258, T": [[653, 792], [656, 792], [656, 793], [657, 793], [657, 796], [658, 796], [658, 797], [657, 797], [657, 804], [653, 804], [652, 794], [652, 793], [651, 793], [653, 793]]}, "center": {"242-258, T": [655, 798]}}, +{"id": 2709, "name": "Greggs Logo and Sausage Roll", "description": "Greggs is a popular baked goods/cafe chain in the UK famous for its sausage rolls (depicted). This symbol has great significance to r/UKOnPlace as it was involved in the Perrababy/Greggs war. This symbol resisted a large, rouge Swedish streamer called Perrababy who insisted on expanding over the Greggs logo as well as a memorial by the destiny comunity to the actor Lance Reddick, and the flag of South Korea, who the UK formed a strong alliance with. The UK cemented its position by telling Perrababy that he can \"Honestly go suck a sausage roll\".", "links": {"website": ["https://www.greggs.co.uk"], "subreddit": ["Greggs", "ukplace", "UKOnPlace"], "discord": ["ukplace", "ukonplace"]}, "path": {"242-258, T": [[1099, 805], [1099, 794], [1082, 794], [1082, 805]]}, "center": {"242-258, T": [1091, 800]}}, +{"id": 2710, "name": "Alive 2007", "description": "\"Alive 2007\" is a Grammy Award-winning live album by the French electronic music duo Daft Punk. The album, recorded during their 2006-2007 world tour, captures the energy and innovation of Daft Punk's live performances. \n\nThe album includes extended versions and mash-ups of hit tracks from the entirety of the pair's discography up to that point. Notable for its audible crowd energy and the distinct pyramid-style stage setup, \"Alive 2007\" is considered a milestone in live electronic music and is commonplace in discussions of the greatest live albums of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Alive_2007"], "subreddit": ["placeFR", "DaftPunk", "france"], "discord": ["placeFR"]}, "path": {"160": [[-434, 776], [-407, 756], [-417, 739], [-428, 739], [-434, 734], [-440, 739], [-451, 739], [-460, 757], [-450, 764], [-450, 766], [-451, 767], [-451, 768], [-452, 769], [-452, 770], [-453, 771], [-453, 772], [-454, 772], [-455, 773], [-454, 774], [-454, 776], [-453, 777], [-452, 776], [-451, 775], [-451, 774], [-450, 774], [-449, 773], [-448, 773], [-449, 774], [-449, 775], [-448, 776], [-447, 777], [-446, 776], [-446, 772], [-444, 771], [-443, 772], [-440, 772], [-439, 773], [-438, 774]], "163-258, T": [[-452, 710], [-450, 708], [-450, 707], [-449, 706], [-447, 706], [-448, 707], [-448, 708], [-446, 710], [-445, 709], [-445, 705], [-441, 705], [-440, 704], [-440, 705], [-439, 706], [-438, 706], [-437, 707], [-436, 707], [-435, 708], [-434, 708], [-433, 709], [-432, 708], [-431, 708], [-430, 707], [-429, 707], [-428, 706], [-427, 705], [-426, 705], [-422, 701], [-420, 701], [-418, 699], [-417, 699], [-416, 698], [-414, 696], [-412, 696], [-411, 695], [-410, 694], [-410, 693], [-409, 692], [-409, 691], [-408, 691], [-407, 690], [-407, 687], [-408, 686], [-409, 686], [-410, 685], [-410, 683], [-412, 681], [-412, 680], [-413, 679], [-414, 677], [-414, 676], [-415, 675], [-415, 674], [-417, 672], [-427, 672], [-428, 671], [-429, 671], [-429, 670], [-432, 667], [-434, 667], [-435, 668], [-438, 671], [-438, 672], [-449, 672], [-450, 673], [-451, 674], [-451, 675], [-452, 676], [-452, 678], [-453, 679], [-454, 680], [-454, 681], [-455, 682], [-455, 683], [-456, 684], [-456, 686], [-458, 688], [-458, 689], [-459, 690], [-458, 691], [-457, 691], [-457, 692], [-456, 693], [-456, 694], [-455, 695], [-454, 695], [-452, 697], [-451, 697], [-450, 698], [-449, 699], [-450, 700], [-450, 702], [-451, 703], [-452, 704], [-451, 705], [-452, 705], [-453, 706], [-452, 707], [-453, 708], [-453, 709]]}, "center": {"160": [-435, 755], "163-258, T": [-433, 688]}}, +{"id": 2711, "name": "Faust (Limbus Company) (Johann Georg Faust)", "description": "Faust is a character of a legend based on the real world Johann Georg Faust. The erudite Faust is highly successful yet dissatisfied with his life, which leads him to make a pact with Mephistophiles at a crossroad, giving up his soul for unlimited knowledge and worldly pleasures. The Faust in this artwork is the character from Limbus Company who is one of the 12 sinners that Dante manages. This art was created by members of the Moonframe discord server.", "links": {"subreddit": ["Project_Moon", "germany", "limbuscompany"]}, "path": {"239-241": [[-1419, 39], [-1419, 46], [-1401, 46], [-1401, 42], [-1400, 41], [-1402, 40], [-1402, 39], [-1403, 40], [-1407, 40], [-1408, 41], [-1413, 41], [-1416, 39]], "242-258, T": [[-1416, 18], [-1418, 19], [-1421, 19], [-1420, 21], [-1420, 26], [-1419, 32], [-1415, 35], [-1419, 38], [-1420, 44], [-1419, 46], [-1401, 46], [-1401, 42], [-1400, 40], [-1402, 36], [-1404, 33], [-1401, 32], [-1400, 25], [-1400, 21], [-1404, 17]]}, "center": {"239-241": [-1405, 43], "242-258, T": [-1411, 27]}}, +{"id": 2712, "name": "Alcryst and Sommie - Fire Emblem Engage", "description": "Alcryst is the second prince of Brodia, the Kingdom of Might from Fire Emblem Engage. While he may physically look like the traditional blue-haired FE lord, he's not the protagonist (he is even wielding a bow instead of a sword *le gasp!*)\nWhile having an extremely low self-esteem, he is kind and supportive of his friends and allies, while merciless towards his enemies.\nStarted by a tiny friend group, with user wiggle doing the first design, user hopewish told a Discord server centered on him, who then joined in the construction then defense effort. Users Kayarine and herbification from the FE Discord provided the updated sprite after the color palette expansion, based on his in-game sprite. \nSommie is the guardian of the Somniel, a holy island in the sky that the Divine Dragon and their allies can access. His pixel design was created by user Ilu_Icey.\nWith a surprisingly fierce protector and the guardian of a holy place, no wonder they decided to protect a large spectrum of the LGBTQ community as represented by their flags around!", "links": {"subreddit": ["fireemblem"], "discord": ["N36qqxPD2p"]}, "path": {"187-258, T": [[-999, -176], [-999, -213], [-979, -213], [-979, -199], [-973, -191], [-973, -176]]}, "center": {"187-258, T": [-987, -188]}}, +{"id": 2713, "name": "Logo Hochschule Hof, University of Applied Sciences", "description": "Is a german University of Applied Sciences in the North of Bavaria \n\nThanks to all the Universities Left to us, making this Possible <3", "links": {"website": ["https://www.hof-university.com/", "https://www.hof-university.de/"]}, "path": {"253-258": [[-18, -65], [-14, -65], [-14, -61], [-18, -61]], "242-252, T": [[-16, -76], [-10, -76], [-10, -70], [-16, -70]]}, "center": {"253-258": [-16, -63], "242-252, T": [-13, -73]}}, +{"id": 2714, "name": "żubrówka", "description": "is a flavored Polish vodka, which contains a bison grass blade (Hierochloe odorata) in every bottle. The Żubrówka brand name is also used on bottles of conventional vodka, labeled as Żubrówka Biała. An easy way to tell the difference is to look for the blade of grass in the bottle. The grass is sourced from the Białowieża Forest, hand-picked and dried under natural conditions.", "links": {"website": ["https://en.wikipedia.org/wiki/%C5%BBubr%C3%B3wka"]}, "path": {"242-258, T": [[704, -88], [770, -87], [770, -70], [705, -70], [705, -88]]}, "center": {"242-258, T": [737, -79]}}, +{"id": 2715, "name": "Skeppy", "description": "An American YouTuber known for his Minecraft challenge videos involving numerous contestants, and for being fellow Minecrafter Badboyhalo's platonic boyfriend.", "links": {"website": ["https://youtube.fandom.com/wiki/Skeppy"], "subreddit": ["skeppy"]}, "path": {"190-258, T": [[569, 511], [569, 520], [579, 520], [579, 511]]}, "center": {"190-258, T": [574, 516]}}, +{"id": 2716, "name": "Houshou Marine", "description": "Houshou Marine is a VTuber from the 3rd Generation of Hololive. She is depicted here in a chibi Touhou style.\n\nThis art was drawn as collaboration artwork between vtubersplace and Touhou.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Houshou_Marine"], "subreddit": ["Hololive", "touhou"], "discord": ["vtubersplace", "apl"]}, "path": {"205-258, T": [[1317, 394], [1348, 394], [1348, 370], [1346, 370], [1343, 367], [1343, 365], [1322, 365], [1322, 367], [1319, 370], [1317, 370]]}, "center": {"205-258, T": [1333, 380]}}, +{"id": 2717, "name": "Arona (blue archive)", "description": "Arona (アロナ, Arona), stylized as A.R.O.N.A, is a non-playable character in Blue Archive that resides in the mysterious Shittim Chest. She accompanies Sensei throughout their adventure in Kivotos as a guide.\n\nShe is the main mascot of Blue Archive, appearing as the figurehead on its website and social media. In addition to providing information and updates to Sensei, she also runs a series of videos called Arona Channel.", "links": {"website": ["https://bluearchive.fandom.com/wiki/Arona"], "subreddit": ["bluearchive"], "discord": ["bluearchiveglobal"]}, "path": {"242-258, T": [[1329, -1000], [1361, -999], [1360, -970], [1331, -968]]}, "center": {"242-258, T": [1345, -984]}}, +{"id": 2718, "name": "Domtoren", "description": "The Domtoren (Dom Tower) is an iconic landmark in Utrecht, Netherlands. Completed in 1382, it stands at 112 meters tall and is the tallest church tower in the country. Visitors can climb its 465 steps for stunning city views and explore its rich history and bells that chime beautifully across Utrecht.", "links": {"website": ["https://en.wikipedia.org/wiki/Dom_Tower_of_Utrecht", "https://www.domtoren.nl/"], "subreddit": ["PlaceNL"], "discord": ["PlaceNL"], "wiki": ["Dom_Tower"]}, "path": {"242-258, T": [[-1419, -459], [-1419, -481], [-1418, -481], [-1418, -494], [-1417, -494], [-1417, -504], [-1416, -505], [-1416, -511], [-1412, -511], [-1412, -505], [-1412, -504], [-1411, -504], [-1411, -494], [-1410, -494], [-1410, -481], [-1409, -481], [-1409, -480], [-1410, -480], [-1411, -480], [-1411, -477], [-1413, -477], [-1413, -462]]}, "center": {"242-258, T": [-1414, -485]}}, +{"id": 2719, "name": "Devon Flag", "description": "Devon historically known as Devonshire is a ceremonial county in South West England. The county borders the Bristol Channel to the north, Somerset and Dorset to the east, the English Channel to the south, and Cornwall to the west. Plymouth is the largest settlement.", "links": {"website": ["https://en.wikipedia.org/wiki/Devon"], "subreddit": ["ukplace", "UKOnPlace", "devonUK"], "discord": ["ukplace", "ukonplace"]}, "path": {"242-258, T": [[-333, -290], [-321, -290], [-321, -284], [-333, -284], [-333, -287]]}, "center": {"242-258, T": [-327, -287]}}, +{"id": 2720, "name": "Blood Blockade Battlefront / Kekkai Sensen", "description": "Blood Blockade Battlefront (Japanese: 血界戦線, Hepburn: Kekkai Sensen, lit. \"Bloodline Battlefront\") is a Japanese manga series written and illustrated by Yasuhiro Nightow. It revolves around a young photographer named Leonardo Watch, who obtains 'the All Seeing Eyes of the Gods' at the cost of his sister's eyesight. After the incident, Leonardo moves to the city of Hellsalem's Lot to join an organization known as Libra to fight several monsters as well as terrorists. \n\nTwo direct sequel are made afterwards, titled Blood Blockade Battlefront: Back 2 Back and Blood Blockade Battlefront: Beat 3 Peat.\n\nOn October 26, 2022. The manga was adapted into an anime television series produced by studio Bones and directed by Rie Matsumoto as first announced in May 2014. A 25-minute original video animation titled \"King of the Restaurant of Kings\" was bundled with the official Blood Blockade Battlefront guidebook that was released on June 3, 2016.\n\nA second season was announced in December 2016, running for 12 episodes. With Shigehito Takayanagi and Bones returning from the second season of the anime series to direct and animate the OAD, respectively.", "links": {"website": ["http://kekkaisensen.com/"], "subreddit": ["KekkaiSensen"], "discord": ["7m5MNmM"]}, "path": {"42-49": [[209, -47], [209, -35], [221, -35], [221, -47]], "89-99": [[-811, 116], [-796, 116], [-796, 128], [-811, 128]], "124-258, T": [[53, -628], [73, -628], [73, -610], [53, -610]]}, "center": {"42-49": [215, -41], "89-99": [-803, 122], "124-258, T": [63, -619]}}, +{"id": 2721, "name": "Blink BP-Hammer Logo", "description": "BLINK is the official fandom name for BLACKPINK. The word BLINK is a combination of the words \"bl\"ack and \"p\"ink, meaning the fans start with Blackpink and end with Blackpink.\n\nThe Hammer is the shape of the official Blackpink Lightstick.", "links": {"website": ["https://www.blackpinkmusic.com/", "https://www.blackpinklive.com/"], "subreddit": ["BlackPink", "BeulPing"], "discord": ["qmGHwGq"]}, "path": {"245-258, T": [[648, 945], [676, 945], [676, 953], [648, 953]]}, "center": {"245-258, T": [662, 949]}}, +{"id": 2722, "name": "Lion Monument", "description": "The Lion Monument (German: Löwendenkmal), or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820–21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris. It is one of the most famous monuments in Switzerland, visited annually by about 1.4 million tourists. In 2006, it was placed under Swiss monument protection.\n\nAmerican humorist and author Samuel Clemens (Mark Twain) praised the sculpture of a mortally wounded lion as \"the most mournful and moving piece of stone in the world.\"", "links": {"website": ["https://en.wikipedia.org/wiki/Lion_Monument", "https://www.luzern.com/en/highlights/sights/lion-monument/"]}, "path": {"240-258, T": [[1416, -764], [1416, -769], [1414, -771], [1414, -772], [1410, -776], [1409, -776], [1408, -777], [1407, -777], [1406, -778], [1405, -777], [1404, -777], [1403, -776], [1402, -776], [1398, -772], [1398, -771], [1397, -770], [1397, -763], [1398, -762], [1398, -761], [1399, -760], [1399, -759], [1403, -755], [1404, -755], [1406, -753], [1412, -753], [1414, -755], [1415, -755], [1416, -754], [1417, -754], [1418, -753], [1419, -753], [1420, -752], [1425, -752], [1426, -751], [1428, -751], [1429, -750], [1427, -748], [1426, -746], [1426, -744], [1427, -743], [1428, -743], [1429, -742], [1432, -742], [1434, -744], [1434, -745], [1435, -746], [1435, -747], [1436, -748], [1436, -749], [1437, -750], [1438, -750], [1441, -753], [1442, -753], [1444, -755], [1445, -755], [1446, -756], [1447, -756], [1448, -757], [1450, -757], [1451, -758], [1457, -758], [1458, -757], [1456, -755], [1455, -755], [1454, -754], [1453, -754], [1452, -753], [1452, -752], [1451, -751], [1451, -748], [1452, -747], [1453, -747], [1458, -752], [1458, -753], [1459, -754], [1466, -754], [1467, -753], [1468, -753], [1470, -751], [1471, -751], [1472, -750], [1473, -750], [1475, -748], [1476, -748], [1477, -747], [1480, -747], [1481, -746], [1487, -746], [1488, -747], [1490, -747], [1491, -748], [1492, -748], [1493, -749], [1494, -749], [1496, -751], [1496, -753], [1495, -754], [1495, -755], [1494, -756], [1494, -757], [1492, -759], [1492, -761], [1490, -763], [1490, -764], [1488, -766], [1488, -767], [1487, -768], [1486, -768], [1484, -770], [1483, -770], [1482, -771], [1480, -771], [1479, -772], [1471, -772], [1470, -771], [1465, -771], [1464, -772], [1462, -772], [1461, -773], [1460, -773], [1459, -774], [1458, -774], [1457, -775], [1456, -775], [1455, -776], [1454, -776], [1453, -777], [1452, -777], [1450, -779], [1449, -779], [1448, -780], [1447, -780], [1445, -782], [1443, -782], [1442, -783], [1441, -783], [1440, -784], [1428, -784], [1427, -783], [1426, -783], [1425, -782], [1424, -782], [1422, -780], [1421, -780], [1418, -777], [1418, -776], [1417, -775], [1417, -772], [1418, -771], [1418, -768], [1419, -767], [1419, -766], [1420, -765], [1420, -764], [1418, -764], [1417, -763]]}, "center": {"240-258, T": [1435, -768]}}, +{"id": 2723, "name": "Slimecicle", "description": "Charles Dalgleish, better known online as Charlie Slimecicle is an American YouTuber and Twitch streamer. He is known for playing Minecraft and being involved in various multiplayer servers with other well known YouTubers/streamers.", "links": {"website": ["https://youtube.fandom.com/wiki/Slimecicle"], "subreddit": ["placecicle", "slimecicle"], "discord": ["U8HfQb5KYz"]}, "path": {"242-258, T": [[501, 501], [501, 500], [500, 501], [500, 505], [500, 535], [529, 535], [529, 533], [530, 532], [531, 531], [532, 530], [533, 530], [534, 529], [535, 529], [535, 500]]}, "center": {"242-258, T": [517, 518]}}, +{"id": 2724, "name": "Skulette crest", "description": "the skullette is a spooktacular symbol from mattel's doll/ show line monster high. She appears in the logo.", "links": {"subreddit": ["MonsterHigh"]}, "path": {"178-258, T": [[-1376, 538], [-1360, 538], [-1353, 544], [-1353, 563], [-1368, 578], [-1383, 563], [-1383, 543]]}, "center": {"178-258, T": [-1368, 553]}}, +{"id": 2725, "name": "Idolcorp Logo", "description": "Idolcorp is a VTuber agency founded by Aviel Basin and based in Israel. Its first line of talents debuted in 2022.", "links": {"website": ["https://idol-company.com"], "subreddit": ["idolcorp"], "discord": ["idolcorp"]}, "path": {"242-258, T": [[-342, -911], [-342, -891], [-326, -891], [-324, -893], [-322, -893], [-322, -911]]}, "center": {"242-258, T": [-332, -901]}}, +{"id": 2726, "name": "Menorah", "description": "Religious symbol for Judaism.", "links": {"website": ["https://en.wikipedia.org/wiki/Temple_menorah"], "subreddit": ["Israel"], "discord": ["israel"]}, "path": {"227-258, T": [[378, -193], [398, -193], [399, -175], [396, -175], [396, -174], [395, -174], [394, -174], [394, -173], [382, -173], [382, -174], [380, -174], [380, -175], [379, -175], [379, -176], [378, -176]]}, "center": {"227-258, T": [389, -183]}}, +{"id": 2727, "name": "Ruhr Universität Bochum", "description": "Located in the heart of Europe in the dynamic metropolitan region of the Ruhrgebiet, RUB with its 21 faculties is home to 42,600 students from over 130 countries", "links": {"website": ["https://www.ruhr-uni-bochum.de/de", "https://de.wikipedia.org/wiki/Ruhr-Universit%C3%A4t_Bochum"], "subreddit": ["RuhrUniBochum"]}, "path": {"242-258, T": [[-145, -76], [-145, -56], [-127, -57], [-127, -69], [-141, -69], [-141, -76]]}, "center": {"242-258, T": [-137, -63]}}, +{"id": 2728, "name": "Moon from \"Le Voyage dans la Lune\" (Movie)", "description": "\"Le Voyage dans la Lune\" (A Trip to the Moon) is a renowned French silent film directed by Georges Méliès in 1902. This pioneering work, famous for its iconic shot of a capsule landing in the eye of the moon's face, is often credited as the first science fiction film. Its innovative use of special effects, storytelling, and fantastical elements represent a significant milestone in the history of cinema. Méliès' inventive spirit and cinematic artistry firmly root \"Le Voyage dans la Lune\" as a treasure of French cultural and artistic heritage.\n\nThe moon in \"Le Voyage dans la Lune\" has been paired with the beloved character of \"Le Petit Prince\" (The Little Prince), a nod to the ethereal lunar landscapes that the Prince visits on his journey. \"Le Petit Prince,\" written by Antoine de Saint-Exupéry in 1943, is one of the most translated and best-selling books in the world. This French novella tells the story of a young prince who travels through the universe, encountering various inhabitants of other planets, and shares profound and philosophical observations on life and human nature. The pairing of these two symbols of French cultural heritage emphasizes the nation's longstanding contributions to world literature and cinema.", "links": {"website": ["https://en.wikipedia.org/wiki/A_Trip_to_the_Moon"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"99-111": [[969, 250], [954, 262], [955, 269], [959, 272], [960, 284], [977, 292], [994, 288], [999, 281], [999, 257], [987, 249], [970, 249]], "116-258, T": [[925, -247], [932, -249], [936, -253], [938, -258], [938, -263], [933, -270], [927, -273], [922, -273], [917, -271], [913, -268], [910, -266], [910, -262], [911, -260], [912, -260], [913, -255], [915, -251], [918, -249]]}, "center": {"99-111": [979, 269], "116-258, T": [925, -260]}}, +{"id": 2729, "name": "VLC Media Player (Software)", "description": "VLC Media Player (VideoLAN Client) is a free and open-source, cross-platform multimedia player developed by the French non-profit organization VideoLAN Project. This widely-used software, renowned for its ability to play almost any multimedia file format, including DVDs, audio CDs, VCDs, and various streaming protocols, was initially released by students of the École Centrale Paris in France. It's not only a significant contribution from France to the global software community but also a testament to the nation's robust technical and engineering capabilities.", "links": {"website": ["https://www.videolan.org/"], "subreddit": ["placeFR", "VLC", "france"], "discord": ["placeFR"]}, "path": {"129-258, T": [[888, -23], [889, -28], [895, -43], [900, -43], [905, -28], [906, -27], [907, -22], [888, -22]]}, "center": {"129-258, T": [897, -29]}}, {"id": 2730, "name": "Kijk-kubus", "description": "Kijk-kubus, or \"Show Cube,\" is an innovative architectural project in Rotterdam, Netherlands. Designed by Piet Blom, it comprises tilted cube-shaped houses, allowing visitors to experience unconventional living spaces.", "links": {"website": ["https://www.kubuswoning.nl/"]}, "path": {"242": [[-1493, -458], [-1493, -459], [-1494, -459], [-1494, -460], [-1495, -460], [-1495, -461], [-1496, -461], [-1497, -462], [-1498, -463], [-1498, -468], [-1497, -469], [-1496, -470], [-1495, -470], [-1495, -471], [-1494, -471], [-1494, -472], [-1493, -472], [-1493, -473], [-1492, -473], [-1492, -474], [-1491, -474], [-1491, -475], [-1490, -475], [-1490, -474], [-1489, -474], [-1489, -473], [-1488, -473], [-1488, -472], [-1487, -472], [-1487, -471], [-1486, -471], [-1486, -470], [-1484, -470], [-1484, -471], [-1482, -471], [-1482, -472], [-1481, -472], [-1481, -473], [-1480, -473], [-1480, -474], [-1479, -474], [-1479, -475], [-1478, -475], [-1478, -474], [-1477, -474], [-1477, -473], [-1476, -473], [-1476, -472], [-1475, -472], [-1475, -471], [-1474, -471], [-1474, -470], [-1471, -470], [-1471, -471], [-1470, -471], [-1470, -472], [-1469, -472], [-1469, -473], [-1468, -473], [-1468, -474], [-1467, -474], [-1467, -475], [-1466, -475], [-1466, -474], [-1465, -474], [-1465, -473], [-1464, -473], [-1464, -472], [-1463, -472], [-1463, -471], [-1462, -471], [-1462, -470], [-1460, -470], [-1460, -471], [-1459, -471], [-1458, -471], [-1458, -472], [-1457, -472], [-1457, -473], [-1456, -473], [-1456, -474], [-1455, -474], [-1455, -475], [-1454, -475], [-1453, -475], [-1453, -474], [-1453, -473], [-1451, -473], [-1451, -472], [-1451, -471], [-1450, -471], [-1450, -470], [-1449, -470], [-1449, -469], [-1448, -469], [-1448, -468], [-1447, -467], [-1447, -463], [-1448, -463], [-1448, -462], [-1449, -462], [-1449, -461], [-1450, -461], [-1450, -460], [-1451, -460], [-1451, -459], [-1452, -459], [-1452, -458], [-1458, -458], [-1458, -457]]}, "center": {"242": [-1466, -465]}}, {"id": 2731, "name": "Luca Kaneshiro", "description": "Luca Kaneshiro (ルカ・カネシロ) is an English male VTuber affiliated with VTuber agency NIJISANJI English, amassing over 1.03M subscribers. Luca is part of their fourth wave - Luxiem - along with Shu Yamino, Ike Eveland, Mysta Rias, and Vox Akuma. He says POG a lot! Next to him is his fans' mascot, who are called Lucubs, with a flower behind their ear.", "links": {"website": ["https://www.youtube.com/@LucaKaneshiro/", "https://twitter.com/luca_kaneshiro", "https://www.nijisanji.jp/en/talents/l/luca-kaneshiro"], "subreddit": ["Nijisanji"], "discord": ["vtubersplace", "luca"]}, "path": {"242": [[-670, -306], [-670, -300], [-669, -300], [-669, -292], [-656, -292], [-653, -295], [-655, -297], [-658, -297], [-658, -306]]}, "center": {"242": [-664, -301]}}, {"id": 2732, "name": "Sistema Único de Saúde (SUS)", "description": "The Sistema Único de Saúde (Unified Health System), better known by the acronym SUS, is Brazil's publicly funded health care system. Created in 1989, the SUS is the largest government-run public health care system in the world, by number of beneficiaries/users (virtually 100% of the Brazilian population; 220 million people), land area coverage (3.3 million square miles), and affiliated network/number of treatment centers (over 50,000 clinics). The system is entirely free of any cost at the point of service for any person, including foreigners. Defenda o sus!\n\n\"Health is a right of all and a duty of the State and shall be guaranteed by means of\nsocial and economic policies aimed at reducing the risk of illness and other hazards and at the\nuniversal and equal access to actions and services for its promotion, protection and recovery.\"\n\n-Article 196. of Brazil´s 1988 Constitution", "links": {"website": ["https://en.wikipedia.org/wiki/Sistema_Único_de_Saúde"], "subreddit": ["brasil"]}, "path": {"242": [[160, 493], [178, 494], [178, 501], [159, 501], [159, 493]]}, "center": {"242": [163, 497]}}, -{"id": 2733, "name": "Senko x Special Week (French Flag)", "description": "A collab with r/placeFR of Senko and Special Week holding glasses of red wine.\n\nThe art piece was initially located at the bottom of the flag but was relocated to allow the windows bar through.\n\nThese 2 characters can be found on the German and Dutch flags around the canvas, holding various beverages.", "links": {"website": ["https://en.wikipedia.org/wiki/Uma_Musume_Pretty_Derby", "https://en.wikipedia.org/wiki/The_Helpful_Fox_Senko-san"], "subreddit": ["senkoplace", "SewayakiKitsune", "placeFR", "UmaMusume", "france"], "discord": ["placeFR"]}, "path": {"155-160": [[-456, 950], [-459, 957], [-468, 957], [-469, 954], [-472, 955], [-473, 961], [-478, 969], [-477, 988], [-475, 990], [-476, 996], [-476, 999], [-433, 999], [-432, 994], [-425, 988], [-425, 979], [-427, 976], [-422, 976], [-417, 979], [-414, 979], [-416, 983], [-416, 989], [-409, 997], [-409, 999], [-369, 999], [-368, 956], [-373, 952], [-376, 957], [-387, 956], [-396, 952], [-397, 958], [-393, 965], [-396, 972], [-398, 974], [-396, 976], [-399, 979], [-395, 983], [-395, 986], [-399, 995], [-400, 998], [-402, 998], [-403, 987], [-410, 979], [-411, 979], [-411, 978], [-409, 975], [-410, 970], [-414, 968], [-417, 968], [-413, 965], [-415, 957], [-424, 956], [-427, 965], [-427, 966], [-432, 970], [-429, 975], [-429, 978], [-431, 978], [-439, 987], [-441, 996], [-443, 997], [-445, 989], [-449, 984], [-445, 978], [-448, 974], [-447, 970], [-449, 965], [-452, 960], [-454, 953], [-455, 950]], "163-258": [[-482, 857], [-486, 863], [-489, 870], [-487, 884], [-484, 889], [-485, 897], [-481, 899], [-445, 899], [-436, 886], [-439, 885], [-436, 882], [-438, 877], [-431, 876], [-424, 877], [-421, 883], [-426, 889], [-420, 895], [-420, 899], [-380, 898], [-380, 885], [-376, 881], [-374, 875], [-375, 867], [-381, 854], [-386, 854], [-387, 857], [-392, 856], [-402, 854], [-406, 852], [-408, 853], [-407, 858], [-404, 865], [-407, 870], [-410, 872], [-407, 875], [-407, 871], [-409, 872], [-410, 872], [-407, 875], [-409, 872], [-406, 874], [-410, 878], [-407, 881], [-406, 885], [-409, 890], [-411, 898], [-412, 897], [-413, 892], [-414, 887], [-418, 881], [-423, 876], [-423, 875], [-422, 871], [-425, 870], [-429, 871], [-431, 872], [-437, 868], [-441, 871], [-440, 876], [-441, 877], [-444, 878], [-449, 884], [-450, 892], [-452, 896], [-453, 896], [-459, 884], [-457, 877], [-459, 872], [-458, 868], [-464, 860], [-467, 856], [-473, 856], [-476, 857]]}, "center": {"155-160": [-463, 978], "163-258": [-390, 873]}}, +{"id": 2733, "name": "Senko x Special Week (French Flag)", "description": "A collab with r/placeFR of Senko and Special Week holding glasses of red wine.\n\nThe art piece was initially located at the bottom of the flag but was relocated to allow the windows bar through.\n\nThese 2 characters can be found on the German and Dutch flags around the canvas, holding various beverages.", "links": {"website": ["https://en.wikipedia.org/wiki/Uma_Musume_Pretty_Derby", "https://en.wikipedia.org/wiki/The_Helpful_Fox_Senko-san"], "subreddit": ["senkoplace", "SewayakiKitsune", "placeFR", "UmaMusume", "france"], "discord": ["placeFR"]}, "path": {"155-160": [[-456, 950], [-459, 957], [-468, 957], [-469, 954], [-472, 955], [-473, 961], [-478, 969], [-477, 988], [-475, 990], [-476, 996], [-476, 999], [-433, 999], [-432, 994], [-425, 988], [-425, 979], [-427, 976], [-422, 976], [-417, 979], [-414, 979], [-416, 983], [-416, 989], [-409, 997], [-409, 999], [-369, 999], [-368, 956], [-373, 952], [-376, 957], [-387, 956], [-396, 952], [-397, 958], [-393, 965], [-396, 972], [-398, 974], [-396, 976], [-399, 979], [-395, 983], [-395, 986], [-399, 995], [-400, 998], [-402, 998], [-403, 987], [-410, 979], [-411, 979], [-411, 978], [-409, 975], [-410, 970], [-414, 968], [-417, 968], [-413, 965], [-415, 957], [-424, 956], [-427, 965], [-427, 966], [-432, 970], [-429, 975], [-429, 978], [-431, 978], [-439, 987], [-441, 996], [-443, 997], [-445, 989], [-449, 984], [-445, 978], [-448, 974], [-447, 970], [-449, 965], [-452, 960], [-454, 953], [-455, 950]], "163-258, T": [[-482, 857], [-486, 863], [-489, 870], [-487, 884], [-484, 889], [-485, 897], [-481, 899], [-445, 899], [-436, 886], [-439, 885], [-436, 882], [-438, 877], [-431, 876], [-424, 877], [-421, 883], [-426, 889], [-420, 895], [-420, 899], [-380, 898], [-380, 885], [-376, 881], [-374, 875], [-375, 867], [-381, 854], [-386, 854], [-387, 857], [-392, 856], [-402, 854], [-406, 852], [-408, 853], [-407, 858], [-404, 865], [-407, 870], [-410, 872], [-407, 875], [-407, 871], [-409, 872], [-410, 872], [-407, 875], [-409, 872], [-406, 874], [-410, 878], [-407, 881], [-406, 885], [-409, 890], [-411, 898], [-412, 897], [-413, 892], [-414, 887], [-418, 881], [-423, 876], [-423, 875], [-422, 871], [-425, 870], [-429, 871], [-431, 872], [-437, 868], [-441, 871], [-440, 876], [-441, 877], [-444, 878], [-449, 884], [-450, 892], [-452, 896], [-453, 896], [-459, 884], [-457, 877], [-459, 872], [-458, 868], [-464, 860], [-467, 856], [-473, 856], [-476, 857]]}, "center": {"155-160": [-463, 978], "163-258, T": [-390, 873]}}, {"id": 2734, "name": "Skrunkly", "description": "The \"Skrunkly\" is the mascot of Idolcorp VTuber Rin Penrose. It was unveiled on March 2nd 2023 and even recieved it's own plushie.\n\nThis Artwork was thought out by the Rin Penrose Fanserver, and made possible by the VTubers place Discord, who after struggling to place it, negotiated so it could stay near the Idolcorp logo on the ecuadorian flag.", "links": {"website": ["https://www.youtube.com/@rinpenrose"], "discord": ["U5qZmtAU"]}, "path": {"242": [[-339, -891], [-342, -888], [-342, -885], [-339, -882], [-336, -882], [-333, -885], [-333, -888], [-336, -891]]}, "center": {"242": [-337, -886]}}, {"id": 2735, "name": "Spider-Punk", "description": "Spider-Punk is a superhero appearing in American comic books published by Marvel Comics since 2015. He is an alternate version of Hobie Brown (who was \"The Prowler\" in the Main comics) and Spider-Man who opposes President Norman Osborn, V.E.N.O.M., and the Inheritors.", "links": {"website": ["https://en.wikipedia.org/wiki/Spider-Punk"]}, "path": {"242": [[1218, -177], [1218, -166], [1209, -159], [1210, -157], [1212, -156], [1211, -155], [1212, -153], [1210, -150], [1212, -149], [1213, -149], [1212, -148], [1212, -141], [1216, -137], [1219, -133], [1220, -134], [1226, -141], [1226, -148], [1223, -151], [1228, -149], [1228, -152], [1226, -153], [1227, -155], [1226, -156], [1229, -158], [1228, -160], [1225, -163], [1224, -163], [1220, -167], [1220, -177]]}, "center": {"242": [1219, -157]}}, {"id": 2736, "name": "Kobo Kaneru", "description": "Kobo Kanaeru (こぼ・かなえる) is a female Indonesian Virtual YouTuber associated with hololive, debuting as part of its Indonesian (ID) branch third generation of VTubers alongside Vestia Zeta and Kaela Kovalskia.", "links": {"website": ["https://hololive.hololivepro.com/en/talents/kobo-kanaeru/", "https://www.youtube.com/channel/UCjLEmnpCNeisMxy134KPwWw", "https://twitter.com/kobokanaeru"], "subreddit": ["Hololive"]}, "path": {"242": [[-199, -824], [-199, -828], [-198, -828], [-197, -828], [-197, -832], [-196, -833], [-198, -831], [-198, -830], [-198, -829], [-195, -832], [-199, -831], [-199, -832], [-198, -832], [-198, -833], [-197, -832], [-196, -834], [-196, -835], [-196, -836], [-197, -836], [-195, -836], [-195, -837], [-197, -837], [-194, -836], [-194, -835], [-194, -834], [-194, -825], [-199, -824], [-163, -824], [-163, -827], [-163, -828], [-160, -828], [-160, -835], [-160, -844], [-161, -845], [-161, -847], [-162, -847], [-162, -850], [-163, -850], [-163, -852], [-164, -852], [-164, -854], [-165, -854], [-166, -854], [-167, -854], [-167, -853], [-169, -853], [-172, -853], [-173, -853], [-173, -854], [-176, -854], [-176, -855], [-181, -855], [-182, -854], [-183, -854], [-184, -854], [-185, -852], [-186, -852], [-187, -850], [-188, -849], [-189, -850], [-189, -849], [-187, -851], [-186, -852], [-186, -853], [-184, -853], [-184, -854], [-185, -854], [-184, -854], [-183, -855], [-184, -855], [-187, -849], [-188, -848], [-189, -848], [-190, -849], [-189, -848], [-191, -848], [-193, -848], [-193, -844], [-192, -846], [-193, -844], [-194, -844], [-195, -843], [-195, -842], [-195, -841], [-192, -841], [-192, -839], [-191, -839], [-192, -837], [-194, -838], [-197, -837], [-198, -836], [-197, -835], [-196, -834]]}, "center": {"242": [-176, -839]}}, {"id": 2737, "name": "Charly García", "description": "Carlos Alberto García Moreno is an Argentine singer-songwriter, multi-instrumentalist, composer and record producer, considered one of the most important and avant-garde figures of Argentine and Latin American music.Named the father of rock nacional, García is widely acclaimed for his recording work, both in his multiple groups and as a soloist, due to his complex compositions, addressing multiple genres, such as pop rock, funk rock, folk rock, jazz, synth-pop and progressive rock, and for his transgressive and critical statements towards modern Argentine society, especially during the era of the military dictatorship", "links": {}, "path": {"242": [[1326, 909], [1321, 916], [1323, 928], [1331, 931], [1339, 929], [1342, 919], [1337, 909], [1347, 898], [1315, 898], [1326, 907]]}, "center": {"242": [1332, 920]}}, {"id": 2738, "name": "Moon from \"Le Voyage dans la Lune\" (Movie)", "description": "\"Le Voyage dans la Lune\" (A Trip to the Moon) is a renowned French silent film directed by Georges Méliès in 1902. This pioneering work, famous for its iconic shot of a capsule landing in the eye of the moon's face, is often credited as the first science fiction film. Its innovative use of special effects, storytelling, and fantastical elements represent a significant milestone in the history of cinema. Méliès' inventive spirit and cinematic artistry firmly root \"Le Voyage dans la Lune\" as a treasure of French cultural and artistic heritage.\n\nThe moon in \"Le Voyage dans la Lune\" has been paired with the beloved character of \"Le Petit Prince\" (The Little Prince), a nod to the ethereal lunar landscapes that the Prince visits on his journey. \"Le Petit Prince,\" written by Antoine de Saint-Exupéry in 1943, is one of the most translated and best-selling books in the world. This French novella tells the story of a young prince who travels through the universe, encountering various inhabitants of other planets, and shares profound and philosophical observations on life and human nature. The pairing of these two symbols of French cultural heritage emphasizes the nation's longstanding contributions to world literature and cinema.", "links": {"website": ["https://en.wikipedia.org/wiki/A_Trip_to_the_Moon"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"242": [[925, -247], [932, -249], [936, -253], [938, -258], [938, -263], [933, -270], [927, -273], [922, -273], [917, -271], [913, -268], [910, -266], [910, -262], [911, -260], [912, -260], [913, -255], [915, -251], [918, -249]]}, "center": {"242": [925, -260]}}, {"id": 2739, "name": "VLC Media Player (Software)", "description": "VLC Media Player (VideoLAN Client) is a free and open-source, cross-platform multimedia player developed by the French non-profit organization VideoLAN Project. This widely-used software, renowned for its ability to play almost any multimedia file format, including DVDs, audio CDs, VCDs, and various streaming protocols, was initially released by students of the École Centrale Paris in France. It's not only a significant contribution from France to the global software community but also a testament to the nation's robust technical and engineering capabilities.", "links": {"website": ["https://www.videolan.org/"], "subreddit": ["placeFR", "VLC", "france"], "discord": ["placeFR"]}, "path": {"129-242": [[888, -23], [889, -28], [895, -43], [900, -43], [905, -28], [906, -27], [907, -22], [888, -22]]}, "center": {"129-242": [897, -29]}}, -{"id": 2740, "name": "Hololive English -Advent- Logo", "description": "This is the logo that appeared at the end of the short teaser first shown at the Hololive Connect the World concert in June of 2023, then released by the Hololive English youtube channel on July 23rd, 2023. The talents of Advent were announced on the 25 of July 2023.\n\nThe talents are as follows:\nShiori Novella\nKoseki Bijou\nNerissa Ravencroft\nFuwawa Abyssgard\nMococo Abyssgard\n\nAll have their own channels, with the exception of the Abyssgard twins, who will be sharing one account under the name 'FUWAMOCO'", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"226-258": [[-159, -824], [-158, -806], [-133, -806], [-133, -824]]}, "center": {"226-258": [-146, -815]}}, +{"id": 2740, "name": "Hololive English -Advent- Logo", "description": "This is the logo that appeared at the end of the short teaser first shown at the Hololive Connect the World concert in June of 2023, then released by the Hololive English youtube channel on July 23rd, 2023. The talents of Advent were announced on the 25 of July 2023.\n\nThe talents are as follows:\nShiori Novella\nKoseki Bijou\nNerissa Ravencroft\nFuwawa Abyssgard\nMococo Abyssgard\n\nAll have their own channels, with the exception of the Abyssgard twins, who will be sharing one account under the name 'FUWAMOCO'", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"226-258, T": [[-159, -824], [-158, -806], [-133, -806], [-133, -824]]}, "center": {"226-258, T": [-146, -815]}}, {"id": 2741, "name": "A piece of Cheese", "description": "In the 2017 and 2022 r/place events, there were no signs of the cheese communities creating a monumental piece. So in 2023 u/Cheesus_Cakus decided to draw a piece of cheese despite having a small community and a newly created subreddit dedicated to this. This piece signifies that when necessary, Cheesers can accomplish this challenging task through collaboration. This artwork was achieved through diplomatic negotiations with PlaceDE.", "links": {"subreddit": ["CheesePlace", "Cheesiarium"], "discord": ["xnFsEvt8Xg"]}, "path": {"242": [[-1396, -917], [-1350, -911], [-1348, -912], [-1348, -915], [-1352, -918], [-1348, -922], [-1348, -928], [-1356, -935], [-1357, -934], [-1359, -934], [-1360, -935], [-1361, -936], [-1361, -937], [-1360, -938], [-1371, -946], [-1375, -950], [-1382, -950], [-1382, -949], [-1385, -949], [-1386, -948], [-1388, -948], [-1388, -947], [-1389, -946], [-1390, -946], [-1391, -945], [-1392, -944], [-1393, -943], [-1393, -942], [-1394, -941], [-1394, -940], [-1395, -939], [-1395, -937], [-1396, -937], [-1396, -928], [-1396, -923]]}, "center": {"242": [-1379, -931]}}, -{"id": 2742, "name": "Willis Tower", "description": "The Willis Tower (originally Sears Tower) is a skyscraper located in Chicago, Illinois. When the tower was completed in 1974, it became the tallest building in the world, a title it held until 1998 when it was surpassed by the Petronas Towers in Kuala Lumpur, Malaysia. To this day, the Willis Tower remains the tallest building in Chicago, and the 3rd tallest in the United States.", "links": {}, "path": {"192-258": [[866, 842], [866, 850], [864, 850], [864, 870], [862, 870], [862, 874], [863, 875], [864, 880], [865, 884], [866, 886], [866, 887], [863, 887], [863, 897], [873, 897], [873, 888], [874, 888], [874, 886], [875, 886], [875, 885], [876, 885], [876, 876], [875, 871], [874, 860], [873, 859], [872, 859], [872, 850], [870, 850], [870, 843]]}, "center": {"192-258": [869, 874]}}, -{"id": 2743, "name": "Donkey Licking Shrek's Feet", "description": "A fetishistic Donkey licks his buddy Shrek's Feet. It was created by Papaplatte and his community.", "links": {"website": ["https://www.twitch.tv/papaplatte"], "subreddit": ["Papaplatte"]}, "path": {"203-258": [[448, -713], [452, -718], [457, -720], [460, -725], [458, -725], [457, -730], [459, -732], [461, -733], [444, -747], [442, -752], [442, -755], [442, -757], [467, -743], [472, -746], [469, -751], [468, -755], [467, -758], [468, -762], [470, -765], [471, -768], [474, -766], [477, -757], [479, -752], [479, -750], [480, -748], [481, -746], [481, -734], [482, -733], [486, -733], [486, -734], [494, -732], [500, -732], [506, -736], [515, -736], [529, -722], [534, -721], [535, -703], [532, -704], [529, -707], [529, -708], [528, -704], [526, -702], [520, -699], [514, -695], [514, -702], [512, -703], [511, -701], [508, -703], [504, -702], [499, -704], [495, -701], [494, -698], [492, -696], [495, -695], [496, -693], [489, -691], [482, -690], [476, -690], [467, -686], [463, -688], [455, -687], [447, -684], [446, -689], [448, -690], [446, -692], [448, -694], [451, -695], [450, -699], [446, -699], [447, -700], [450, -702], [450, -707], [449, -708], [449, -713], [450, -716], [449, -714]]}, "center": {"203-258": [476, -711]}}, -{"id": 2744, "name": "Borussia Mönchengladbach", "description": "The community of Buschi's Borussia has painted this rhombus of Borussia Mönchengladbach. The 1900 hundred stands for the founding year of the Fußball club. The writing \"BMG\" means Borussia Mönchengladbach", "links": {"website": ["https://de.wikipedia.org/wiki/Borussia_Mönchengladbach", "https://www.youtube.com/@BuschisBorussia", "https://twitter.com/buschisborussia"], "discord": ["5KgzQtTE9G"]}, "path": {"240-258": [[1180, -912], [1205, -912], [1205, -864], [1179, -864], [1179, -912]]}, "center": {"240-258": [1192, -888]}}, -{"id": 2745, "name": "Holostars EN Tempus Logo", "description": "The logo of the VTuber group Tempus, the first generation of the English-speaking branch of Holostars. It also features the first artwork of the first four members of Tempus, collectively known as HQ. They are Magni Dezmond, Vesper Noir, Axel Syrios, and Regis Altare. At the bottom center is Yukoku Roberu, a member of Holostars JP. Both Roberu and Altare have bunny ears as a reference to the HoloMeet Taipei event artwork.", "links": {"website": ["https://www.youtube.com/@HOLOSTARSenglish"], "subreddit": ["holostars"]}, "path": {"213-258": [[1299, -864], [1299, -834], [1299, -833], [1327, -833], [1327, -864], [1309, -864]]}, "center": {"213-258": [1313, -848]}}, -{"id": 2746, "name": "Flag of the Sweden Finns", "description": "Sweden Finns are a Finnish-speaking national minority in Sweden.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden_Finns"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"159-258": [[124, -337], [130, -337], [130, -330], [129, -330], [129, -329], [128, -329], [128, -328], [126, -328], [126, -329], [125, -329], [125, -330], [124, -330]]}, "center": {"159-258": [127, -333]}}, -{"id": 2747, "name": "Bobi", "description": "A stray dog that was adopted by the azulejo builders due to its resemblance to the \"mutt of Alentejo\" breed. Its original owners are yet to be found.", "links": {"subreddit": ["TugasPlaceOG"]}, "path": {"125-258": [[-949, -241], [-949, -243], [-947, -245], [-946, -245], [-945, -246], [-939, -246], [-938, -245], [-937, -245], [-935, -243], [-935, -241], [-936, -240], [-937, -239], [-938, -240], [-939, -239], [-939, -238], [-938, -237], [-937, -237], [-936, -236], [-930, -236], [-929, -235], [-928, -233], [-931, -230], [-945, -230], [-945, -239], [-946, -240], [-947, -241]]}, "center": {"125-258": [-941, -235]}}, -{"id": 2748, "name": "Flag of the Swedish-speaking Finns", "description": "The flag of the Swedish-speaking Finns is an unofficial flag used in the Swedish-speaking parts of Finland to represent the Finland-Swedes. This flag is unfamiliar to many in Finland but there have been attempts to introduce it again to a broader audience as what is known as \"household pennants\" demonstrating one's identity as Swedish-speaking, are more common and can be seen on many flagpoles in areas where there live many Swedish-speaking Finns, especially in countryside.", "links": {"website": ["https://en.wikipedia.org/wiki/Swedish-speaking_population_of_Finland"]}, "path": {"147-258": [[72, -323], [72, -344], [74, -344], [74, -343], [81, -343], [81, -342], [82, -342], [82, -341], [83, -341], [83, -339], [82, -339], [82, -338], [81, -338], [81, -337], [74, -337], [74, -323]]}, "center": {"147-258": [76, -340]}}, -{"id": 2749, "name": "Flag of the Canary Islands", "description": "The 7 Canary Islands are located northwest of the African coast in the Atlantic Ocean. Created by MarieMoone Twitch Streamer.\nPower by Los Carlitos", "links": {}, "path": {"245-258": [[688, -113], [704, -113], [703, -47], [688, -47], [688, -112], [688, -113], [704, -112], [703, -47], [688, -47], [688, -113], [697, -65], [688, -97], [692, -71]]}, "center": {"245-258": [691, -90]}}, -{"id": 2750, "name": "ImportGenius LightBulb", "description": "A small lightbulb representing ImportGenius an OSINT tool for finding shipping records", "links": {"website": ["https://importgenius.com"]}, "path": {"197-258": [[-1372, -659], [-1372, -650], [-1366, -650], [-1366, -659]]}, "center": {"197-258": [-1369, -654]}}, -{"id": 2751, "name": "Rayman (Game)", "description": "Rayman is a charismatic video game character created by French video game designer Michel Ancel and developed by the French company Ubisoft. First introduced in 1995, Rayman is a limbless protagonist known for his ability to throw his fists and use helicopter-like hair to float in the air. The innovative design and gameplay of the Rayman series have made it a cornerstone in the platforming genre and a significant contribution to global video gaming from France. The enduring popularity of Rayman demonstrates France's creative capacities and substantial influence in the video game industry.", "links": {"website": ["https://en.wikipedia.org/wiki/Rayman_(video_game)"], "subreddit": ["placeFR", "Rayman", "france"], "discord": ["placeFR"]}, "path": {"135-258": [[982, -501], [999, -501], [999, -504], [997, -506], [994, -506], [994, -508], [997, -509], [997, -510], [996, -512], [994, -514], [993, -516], [992, -517], [994, -518], [996, -519], [997, -520], [996, -522], [997, -524], [998, -525], [998, -527], [998, -528], [996, -528], [995, -528], [995, -529], [993, -529], [992, -528], [991, -527], [990, -528], [987, -528], [986, -528], [986, -527], [985, -526], [985, -524], [984, -524], [983, -526], [982, -525], [980, -524], [979, -523], [979, -521], [979, -520], [981, -519], [982, -518], [983, -517], [984, -516], [985, -516], [984, -515], [984, -513], [985, -512], [986, -510], [986, -509], [988, -508], [986, -506], [985, -506], [984, -505], [982, -505], [982, -504]]}, "center": {"135-258": [990, -522]}}, -{"id": 2752, "name": "CHAINAVT COMMUNITY (CHAICHAI)", "description": "It is a pixel art of the vtuber / streamer ChainaVt (he is not a big streamer but he has had contact with big ones like rubius) made in his extensible turning 2 years old on twitch,the community was day and night protecting him together with the pokemon community fulfilling one of his dreams of having his little piece in the r/place <3", "links": {"website": ["https://www.twitch.tv/chainavt"], "discord": ["WDm7XWC"]}, "path": {"245-252": [[1000, 250], [1054, 249], [1053, 256], [1049, 257], [1049, 282], [1001, 283], [1011, 278], [1012, 274], [1005, 270], [1000, 269]]}, "center": {"245-252": [1027, 266]}}, -{"id": 2753, "name": "Bocchi Mendako", "description": "This is a miniature form of Hitori \"Bocchi\" Gotoh from the anime \"Bocchi the Rock!\", 4 panel manga (yonkoma) series by Aki Hamaji.", "links": {"website": ["https://bocchi-the-rock.fandom.com/wiki/Hitori_Gotoh"], "subreddit": ["BocchiTheRock"], "discord": ["bocchi"]}, "path": {"243-258": [[-523, 56], [-523, 54], [-521, 54], [-521, 55], [-521, 54], [-520, 54], [-520, 53], [-519, 53], [-519, 52], [-518, 52], [-518, 49], [-521, 49], [-523, 51], [-523, 54], [-523, 55]]}, "center": {"243-258": [-521, 51]}}, -{"id": 2754, "name": "Vezalius Bandage", "description": "Vezalius Bandage (ヴェザリウス バンデージ) is a French male Virtual YouTuber affiliated with NIJISANJI EN's 8th wave \"Krisis\".\n\nThis is the a collaboration with the VtubersPlace Discord.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Vezalius_Bandage"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"165-258": [[-466, 732], [-461, 738], [-465, 744], [-467, 752], [-469, 759], [-471, 769], [-490, 770], [-490, 764], [-489, 757], [-496, 749], [-497, 742], [-495, 737], [-491, 739], [-481, 740], [-472, 736]]}, "center": {"165-258": [-479, 751]}}, -{"id": 2755, "name": "Fusca Azul (Blue VW Beetle)", "description": "The VW Beetle has become an automotive icon in Brazil,where it is known as the \"Fusca\". Every Brazilian has ridden in one, or at least seen one on the streets. The blue Beetle, more specifically, has a peculiarity: when you see a car of this color and model on the street, you should immediately punch or slap the friend who is next to you. If the Beetle in question is not blue, the friend who got hit can hit back double.", "links": {"website": ["https://www.uol.com.br/carros/noticias/redacao/2022/11/24/fusca-azul-por-que-as-pessoas-batem-no-braco-da-outra-quando-veem-o-carro.htm#:~:text=Regras%20da%20brincadeira,apanhou%20pode%20revidar%20em%20dobro."], "subreddit": ["brasil"]}, "path": {"245-258": [[-689, -722], [-703, -710], [-700, -704], [-669, -704], [-665, -713], [-674, -723]]}, "center": {"245-258": [-683, -713]}}, -{"id": 2756, "name": "Willis Tower", "description": "The Willis Tower (originally Sears Tower) is a skyscraper located in Chicago, Illinois. When the tower was completed in 1974, it became the tallest building in the world, a title it held until 1998 when it was surpassed by the Petronas Towers in Kuala Lumpur, Malaysia. To this day, the Willis Tower remains the tallest building in Chicago, and the 3rd tallest in the United States.", "links": {}, "path": {"192-258": [[866, 842], [866, 850], [864, 850], [864, 870], [862, 870], [862, 874], [863, 875], [864, 880], [865, 884], [866, 886], [866, 887], [863, 887], [863, 897], [873, 897], [873, 888], [874, 888], [874, 886], [875, 886], [875, 885], [876, 885], [876, 876], [875, 871], [874, 860], [873, 859], [872, 859], [872, 850], [870, 850], [870, 843]]}, "center": {"192-258": [869, 874]}}, -{"id": 2757, "name": "Conterstine Logo", "description": "Conterstine is a Mexican streamer with 1.2M followers.\nThe image is Conterstine's profile picture on Twitch. It has been since his channel's creation.\nHis community prevented him from switching his profile picture.\nIt represents a cat with bunny ears.", "links": {"website": ["https://www.twitch.tv/conterstine"]}, "path": {"118-123": [[204, -675], [285, -675], [285, -594], [204, -594]], "124-258": [[204, -675], [285, -675], [285, -591], [204, -591], [203, -675]]}, "center": {"118-123": [245, -634], "124-258": [244, -633]}}, +{"id": 2742, "name": "Willis Tower", "description": "The Willis Tower (originally Sears Tower) is a skyscraper located in Chicago, Illinois. When the tower was completed in 1974, it became the tallest building in the world, a title it held until 1998 when it was surpassed by the Petronas Towers in Kuala Lumpur, Malaysia. To this day, the Willis Tower remains the tallest building in Chicago, and the 3rd tallest in the United States.", "links": {}, "path": {"192-258, T": [[866, 842], [866, 850], [864, 850], [864, 870], [862, 870], [862, 874], [863, 875], [864, 880], [865, 884], [866, 886], [866, 887], [863, 887], [863, 897], [873, 897], [873, 888], [874, 888], [874, 886], [875, 886], [875, 885], [876, 885], [876, 876], [875, 871], [874, 860], [873, 859], [872, 859], [872, 850], [870, 850], [870, 843]]}, "center": {"192-258, T": [869, 874]}}, +{"id": 2743, "name": "Donkey Licking Shrek's Feet", "description": "A fetishistic Donkey licks his buddy Shrek's Feet. It was created by Papaplatte and his community.", "links": {"website": ["https://www.twitch.tv/papaplatte"], "subreddit": ["Papaplatte"]}, "path": {"203-258, T": [[448, -713], [452, -718], [457, -720], [460, -725], [458, -725], [457, -730], [459, -732], [461, -733], [444, -747], [442, -752], [442, -755], [442, -757], [467, -743], [472, -746], [469, -751], [468, -755], [467, -758], [468, -762], [470, -765], [471, -768], [474, -766], [477, -757], [479, -752], [479, -750], [480, -748], [481, -746], [481, -734], [482, -733], [486, -733], [486, -734], [494, -732], [500, -732], [506, -736], [515, -736], [529, -722], [534, -721], [535, -703], [532, -704], [529, -707], [529, -708], [528, -704], [526, -702], [520, -699], [514, -695], [514, -702], [512, -703], [511, -701], [508, -703], [504, -702], [499, -704], [495, -701], [494, -698], [492, -696], [495, -695], [496, -693], [489, -691], [482, -690], [476, -690], [467, -686], [463, -688], [455, -687], [447, -684], [446, -689], [448, -690], [446, -692], [448, -694], [451, -695], [450, -699], [446, -699], [447, -700], [450, -702], [450, -707], [449, -708], [449, -713], [450, -716], [449, -714]]}, "center": {"203-258, T": [476, -711]}}, +{"id": 2744, "name": "Borussia Mönchengladbach", "description": "The community of Buschi's Borussia has painted this rhombus of Borussia Mönchengladbach. The 1900 hundred stands for the founding year of the Fußball club. The writing \"BMG\" means Borussia Mönchengladbach", "links": {"website": ["https://de.wikipedia.org/wiki/Borussia_Mönchengladbach", "https://www.youtube.com/@BuschisBorussia", "https://twitter.com/buschisborussia"], "discord": ["5KgzQtTE9G"]}, "path": {"240-258, T": [[1180, -912], [1205, -912], [1205, -864], [1179, -864], [1179, -912]]}, "center": {"240-258, T": [1192, -888]}}, +{"id": 2745, "name": "Holostars EN Tempus Logo", "description": "The logo of the VTuber group Tempus, the first generation of the English-speaking branch of Holostars. It also features the first artwork of the first four members of Tempus, collectively known as HQ. They are Magni Dezmond, Vesper Noir, Axel Syrios, and Regis Altare. At the bottom center is Yukoku Roberu, a member of Holostars JP. Both Roberu and Altare have bunny ears as a reference to the HoloMeet Taipei event artwork.", "links": {"website": ["https://www.youtube.com/@HOLOSTARSenglish"], "subreddit": ["holostars"]}, "path": {"213-258, T": [[1299, -864], [1299, -834], [1299, -833], [1327, -833], [1327, -864], [1309, -864]]}, "center": {"213-258, T": [1313, -848]}}, +{"id": 2746, "name": "Flag of the Sweden Finns", "description": "Sweden Finns are a Finnish-speaking national minority in Sweden.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden_Finns"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"159-258, T": [[124, -337], [130, -337], [130, -330], [129, -330], [129, -329], [128, -329], [128, -328], [126, -328], [126, -329], [125, -329], [125, -330], [124, -330]]}, "center": {"159-258, T": [127, -333]}}, +{"id": 2747, "name": "Bobi", "description": "A stray dog that was adopted by the azulejo builders due to its resemblance to the \"mutt of Alentejo\" breed. Its original owners are yet to be found.", "links": {"subreddit": ["TugasPlaceOG"]}, "path": {"125-258, T": [[-949, -241], [-949, -243], [-947, -245], [-946, -245], [-945, -246], [-939, -246], [-938, -245], [-937, -245], [-935, -243], [-935, -241], [-936, -240], [-937, -239], [-938, -240], [-939, -239], [-939, -238], [-938, -237], [-937, -237], [-936, -236], [-930, -236], [-929, -235], [-928, -233], [-931, -230], [-945, -230], [-945, -239], [-946, -240], [-947, -241]]}, "center": {"125-258, T": [-941, -235]}}, +{"id": 2748, "name": "Flag of the Swedish-speaking Finns", "description": "The flag of the Swedish-speaking Finns is an unofficial flag used in the Swedish-speaking parts of Finland to represent the Finland-Swedes. This flag is unfamiliar to many in Finland but there have been attempts to introduce it again to a broader audience as what is known as \"household pennants\" demonstrating one's identity as Swedish-speaking, are more common and can be seen on many flagpoles in areas where there live many Swedish-speaking Finns, especially in countryside.", "links": {"website": ["https://en.wikipedia.org/wiki/Swedish-speaking_population_of_Finland"]}, "path": {"147-258, T": [[72, -323], [72, -344], [74, -344], [74, -343], [81, -343], [81, -342], [82, -342], [82, -341], [83, -341], [83, -339], [82, -339], [82, -338], [81, -338], [81, -337], [74, -337], [74, -323]]}, "center": {"147-258, T": [76, -340]}}, +{"id": 2749, "name": "Flag of the Canary Islands", "description": "The 7 Canary Islands are located northwest of the African coast in the Atlantic Ocean. Created by MarieMoone Twitch Streamer.\nPower by Los Carlitos", "links": {}, "path": {"245-258, T": [[688, -113], [704, -113], [703, -47], [688, -47], [688, -112], [688, -113], [704, -112], [703, -47], [688, -47], [688, -113], [697, -65], [688, -97], [692, -71]]}, "center": {"245-258, T": [691, -90]}}, +{"id": 2750, "name": "ImportGenius LightBulb", "description": "A small lightbulb representing ImportGenius an OSINT tool for finding shipping records", "links": {"website": ["https://importgenius.com"]}, "path": {"197-258, T": [[-1372, -659], [-1372, -650], [-1366, -650], [-1366, -659]]}, "center": {"197-258, T": [-1369, -654]}}, +{"id": 2751, "name": "Rayman (Game)", "description": "Rayman is a charismatic video game character created by French video game designer Michel Ancel and developed by the French company Ubisoft. First introduced in 1995, Rayman is a limbless protagonist known for his ability to throw his fists and use helicopter-like hair to float in the air. The innovative design and gameplay of the Rayman series have made it a cornerstone in the platforming genre and a significant contribution to global video gaming from France. The enduring popularity of Rayman demonstrates France's creative capacities and substantial influence in the video game industry.", "links": {"website": ["https://en.wikipedia.org/wiki/Rayman_(video_game)"], "subreddit": ["placeFR", "Rayman", "france"], "discord": ["placeFR"]}, "path": {"135-258, T": [[982, -501], [999, -501], [999, -504], [997, -506], [994, -506], [994, -508], [997, -509], [997, -510], [996, -512], [994, -514], [993, -516], [992, -517], [994, -518], [996, -519], [997, -520], [996, -522], [997, -524], [998, -525], [998, -527], [998, -528], [996, -528], [995, -528], [995, -529], [993, -529], [992, -528], [991, -527], [990, -528], [987, -528], [986, -528], [986, -527], [985, -526], [985, -524], [984, -524], [983, -526], [982, -525], [980, -524], [979, -523], [979, -521], [979, -520], [981, -519], [982, -518], [983, -517], [984, -516], [985, -516], [984, -515], [984, -513], [985, -512], [986, -510], [986, -509], [988, -508], [986, -506], [985, -506], [984, -505], [982, -505], [982, -504]]}, "center": {"135-258, T": [990, -522]}}, +{"id": 2752, "name": "CHAINAVT COMMUNITY (CHAICHAI)", "description": "It is a pixel art of the vtuber / streamer ChainaVt (he is not a big streamer but he has had contact with big ones like rubius) made in his extensible turning 2 years old on twitch,the community was day and night protecting him together with the pokemon community fulfilling one of his dreams of having his little piece in the r/place <3", "links": {"website": ["https://www.twitch.tv/chainavt"], "discord": ["WDm7XWC"]}, "path": {"245-252, T": [[1000, 250], [1054, 249], [1053, 256], [1049, 257], [1049, 282], [1001, 283], [1011, 278], [1012, 274], [1005, 270], [1000, 269]]}, "center": {"245-252, T": [1027, 266]}}, +{"id": 2753, "name": "Bocchi Mendako", "description": "This is a miniature form of Hitori \"Bocchi\" Gotoh from the anime \"Bocchi the Rock!\", 4 panel manga (yonkoma) series by Aki Hamaji.", "links": {"website": ["https://bocchi-the-rock.fandom.com/wiki/Hitori_Gotoh"], "subreddit": ["BocchiTheRock"], "discord": ["bocchi"]}, "path": {"243-258, T": [[-523, 56], [-523, 54], [-521, 54], [-521, 55], [-521, 54], [-520, 54], [-520, 53], [-519, 53], [-519, 52], [-518, 52], [-518, 49], [-521, 49], [-523, 51], [-523, 54], [-523, 55]]}, "center": {"243-258, T": [-521, 51]}}, +{"id": 2754, "name": "Vezalius Bandage", "description": "Vezalius Bandage (ヴェザリウス バンデージ) is a French male Virtual YouTuber affiliated with NIJISANJI EN's 8th wave \"Krisis\".\n\nThis is the a collaboration with the VtubersPlace Discord.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Vezalius_Bandage"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"165-258, T": [[-466, 732], [-461, 738], [-465, 744], [-467, 752], [-469, 759], [-471, 769], [-490, 770], [-490, 764], [-489, 757], [-496, 749], [-497, 742], [-495, 737], [-491, 739], [-481, 740], [-472, 736]]}, "center": {"165-258, T": [-479, 751]}}, +{"id": 2755, "name": "Fusca Azul (Blue VW Beetle)", "description": "The VW Beetle has become an automotive icon in Brazil,where it is known as the \"Fusca\". Every Brazilian has ridden in one, or at least seen one on the streets. The blue Beetle, more specifically, has a peculiarity: when you see a car of this color and model on the street, you should immediately punch or slap the friend who is next to you. If the Beetle in question is not blue, the friend who got hit can hit back double.", "links": {"website": ["https://www.uol.com.br/carros/noticias/redacao/2022/11/24/fusca-azul-por-que-as-pessoas-batem-no-braco-da-outra-quando-veem-o-carro.htm#:~:text=Regras%20da%20brincadeira,apanhou%20pode%20revidar%20em%20dobro."], "subreddit": ["brasil"]}, "path": {"245-258, T": [[-689, -722], [-703, -710], [-700, -704], [-669, -704], [-665, -713], [-674, -723]]}, "center": {"245-258, T": [-683, -713]}}, +{"id": 2756, "name": "Willis Tower", "description": "The Willis Tower (originally Sears Tower) is a skyscraper located in Chicago, Illinois. When the tower was completed in 1974, it became the tallest building in the world, a title it held until 1998 when it was surpassed by the Petronas Towers in Kuala Lumpur, Malaysia. To this day, the Willis Tower remains the tallest building in Chicago, and the 3rd tallest in the United States.", "links": {}, "path": {"192-258, T": [[866, 842], [866, 850], [864, 850], [864, 870], [862, 870], [862, 874], [863, 875], [864, 880], [865, 884], [866, 886], [866, 887], [863, 887], [863, 897], [873, 897], [873, 888], [874, 888], [874, 886], [875, 886], [875, 885], [876, 885], [876, 876], [875, 871], [874, 860], [873, 859], [872, 859], [872, 850], [870, 850], [870, 843]]}, "center": {"192-258, T": [869, 874]}}, +{"id": 2757, "name": "Conterstine Logo", "description": "Conterstine is a Mexican streamer with 1.2M followers.\nThe image is Conterstine's profile picture on Twitch. It has been since his channel's creation.\nHis community prevented him from switching his profile picture.\nIt represents a cat with bunny ears.", "links": {"website": ["https://www.twitch.tv/conterstine"]}, "path": {"118-123": [[204, -675], [285, -675], [285, -594], [204, -594]], "124-258, T": [[204, -675], [285, -675], [285, -591], [204, -591], [203, -675]]}, "center": {"118-123": [245, -634], "124-258, T": [244, -633]}}, {"id": 2758, "name": "Windows Control", "description": "The window controls were built to match the Windows Vista taskbar, which is located in the lower left corner. The window controls are filled with the German flag. It is there to minimize, maximaze and close the current window.", "links": {"website": ["https://en.wikipedia.org/wiki/Windows_Vista"], "subreddit": ["placeDE"], "discord": ["placeDE"]}, "path": {"213-231": [[1427, -1000], [1426, -1001], [1498, -1000], [1498, -984], [1496, -983], [1495, -981], [1428, -981]]}, "center": {"213-231": [1463, -991]}}, -{"id": 2759, "name": "Burning PS5 controller", "description": "A burning PS5 controller to represent the reason the houseki no kuni manga is always on hiatus", "links": {}, "path": {"218-258": [[-1217, -550], [-1197, -550], [-1197, -530], [-1217, -530]]}, "center": {"218-258": [-1207, -540]}}, -{"id": 2760, "name": "Lance Reddick memorial and destiny art", "description": "The main part of this image showcases the memorial made for Lance Reddick,which was defaced 2 times by streamer perrababy, as well as the art made by the Destiny community (not the streamer) community", "links": {"subreddit": ["DestinyTheGame", "destiny2", "DestinyTechSupport", "HorizonZeroDawn", "destinylegacy", "DestinySherpa", "squeaksqueak"]}, "path": {"119-163": [[-805, 481], [-805, 499], [-709, 499], [-709, 481]], "114-118": [[-803, 481], [-803, 499], [-730, 499], [-730, 481]], "164-258": [[-805, 481], [-709, 481], [-709, 519], [-791, 520], [-791, 500], [-805, 500]]}, "center": {"119-163": [-757, 490], "114-118": [-766, 490], "164-258": [-754, 500]}}, -{"id": 2761, "name": "The Declaration of the Rights of Man and of the Citizen", "description": "The Declaration of the Rights of Man and of the Citizen (Déclaration des droits de l'homme et du citoyen) is a fundamental document of the French Revolution, adopted on August 26, 1789. It represents a significant milestone in human history, enshrining the principles of liberty, equality, and fraternity. The opening article of the declaration, \"Men are born and remain free and equal in rights...\" (Les hommes naissent et demeurent libres et égaux en droits...), lays the foundation for these ideals, advocating for the natural, inalienable rights of all individuals. This groundbreaking French document has had a profound influence on the development of human rights and constitutional law globally.", "links": {"website": ["https://en.wikipedia.org/wiki/Declaration_of_the_Rights_of_Man_and_of_the_Citizen"], "subreddit": ["placeFR", "France"], "discord": ["placeFR"]}, "path": {"159-166": [[-500, 770], [-370, 770], [-370, 802], [-500, 803]], "177-258": [[-500, 950], [-457, 950], [-457, 956], [-387, 957], [-387, 962], [-415, 963], [-414, 970], [-500, 970]]}, "center": {"159-166": [-467, 786], "177-258": [-470, 960]}}, -{"id": 2762, "name": "El Teide", "description": "Volcano on the island of Tenerife (3.718m over sea level) highest Peak of Spain , and 8th of Europe.", "links": {}, "path": {"245-258": [[688, -57], [696, -64], [704, -57], [704, -47], [689, -47], [688, -58]]}, "center": {"245-258": [696, -54]}}, +{"id": 2759, "name": "Burning PS5 controller", "description": "A burning PS5 controller to represent the reason the houseki no kuni manga is always on hiatus", "links": {}, "path": {"218-258, T": [[-1217, -550], [-1197, -550], [-1197, -530], [-1217, -530]]}, "center": {"218-258, T": [-1207, -540]}}, +{"id": 2760, "name": "Lance Reddick memorial and destiny art", "description": "The main part of this image showcases the memorial made for Lance Reddick,which was defaced 2 times by streamer perrababy, as well as the art made by the Destiny community (not the streamer) community", "links": {"subreddit": ["DestinyTheGame", "destiny2", "DestinyTechSupport", "HorizonZeroDawn", "destinylegacy", "DestinySherpa", "squeaksqueak"]}, "path": {"119-163": [[-805, 481], [-805, 499], [-709, 499], [-709, 481]], "114-118": [[-803, 481], [-803, 499], [-730, 499], [-730, 481]], "164-258, T": [[-805, 481], [-709, 481], [-709, 519], [-791, 520], [-791, 500], [-805, 500]]}, "center": {"119-163": [-757, 490], "114-118": [-766, 490], "164-258, T": [-754, 500]}}, +{"id": 2761, "name": "The Declaration of the Rights of Man and of the Citizen", "description": "The Declaration of the Rights of Man and of the Citizen (Déclaration des droits de l'homme et du citoyen) is a fundamental document of the French Revolution, adopted on August 26, 1789. It represents a significant milestone in human history, enshrining the principles of liberty, equality, and fraternity. The opening article of the declaration, \"Men are born and remain free and equal in rights...\" (Les hommes naissent et demeurent libres et égaux en droits...), lays the foundation for these ideals, advocating for the natural, inalienable rights of all individuals. This groundbreaking French document has had a profound influence on the development of human rights and constitutional law globally.", "links": {"website": ["https://en.wikipedia.org/wiki/Declaration_of_the_Rights_of_Man_and_of_the_Citizen"], "subreddit": ["placeFR", "France"], "discord": ["placeFR"]}, "path": {"159-166": [[-500, 770], [-370, 770], [-370, 802], [-500, 803]], "177-258, T": [[-500, 950], [-457, 950], [-457, 956], [-387, 957], [-387, 962], [-415, 963], [-414, 970], [-500, 970]]}, "center": {"159-166": [-467, 786], "177-258, T": [-470, 960]}}, +{"id": 2762, "name": "El Teide", "description": "Volcano on the island of Tenerife (3.718m over sea level) highest Peak of Spain , and 8th of Europe.", "links": {}, "path": {"245-258, T": [[688, -57], [696, -64], [704, -57], [704, -47], [689, -47], [688, -58]]}, "center": {"245-258, T": [696, -54]}}, {"id": 2763, "name": "Beat Banger Logo", "description": "Beat Banger is an adult furry rhythm game created by BunFan Games, where you join a pornographic studio as a production assistant, but end up in a position you never imagined.", "links": {"website": ["https://bunfan.com/"], "subreddit": ["BunFan"], "discord": ["bunfan"]}, "path": {"184": [[797, 466], [811, 466], [811, 487], [797, 487]]}, "center": {"184": [804, 477]}}, -{"id": 2764, "name": "Flag of the Ingrians", "description": "Ingrians, or Ingrian Finns, are the Finnish population of the historial region of Ingria.", "links": {"website": ["https://nordics.info/show/artikel/ingria-and-the-ingrian-finns"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"160-258": [[144, -336], [144, -337], [144, -330], [143, -330], [143, -329], [142, -329], [142, -328], [140, -328], [140, -329], [139, -329], [139, -330], [138, -330], [138, -337], [144, -337]]}, "center": {"160-258": [141, -333]}}, -{"id": 2765, "name": "French Lattice", "description": "The French Lattice is an initiative inspired by the Green Lattice, in which r/placeFR offered smaller communities to submit arts to be hosted and protected by the french. The project was carried by BlueBeeries, a PlaceFR admin. Even though the flag didn't display a lattice pattern like the Green Lattice, the primary goal was to carry the spirit of the Green Lattice. While not mandatory, it was preferred if the art was adjusted to be french themed.\n\nIn a surprising turn of events, the \"French Lattice\" found a new, unexpected meaning when the \"Island of France\" project was fused with the French Lattice - creating a massive \"pun not intended\" situation where the Eiffel Tower spawned at the center of it, which is the most famous lattice tower on Earth.\n\nSo in the end, the French Lattice designates both the space given to small communities and collabs by France, and the Eiffel Tower itself.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"165-258": [[-501, 501], [-367, 500], [-368, 971], [-501, 971]]}, "center": {"165-258": [-434, 735]}}, -{"id": 2766, "name": "Irish harp", "description": "The Irish harp, as shown on the Irish coat of arms, is a cherished symbol of Ireland. Characterized by its graceful design and mesmerizing sound, it holds cultural significance and is associated with traditional music. From medieval courts to modern performances, the Irish harp continues to captivate audiences with its timeless charm.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Coat_of_arms_of_Ireland"]}, "path": {"166-258": [[656, 863], [656, 864], [655, 864], [655, 865], [656, 865], [656, 868], [655, 868], [655, 869], [654, 869], [654, 871], [653, 871], [653, 873], [652, 873], [652, 877], [651, 877], [651, 883], [652, 883], [652, 886], [653, 886], [653, 888], [654, 888], [654, 890], [655, 890], [655, 891], [656, 891], [656, 893], [657, 893], [657, 894], [658, 894], [658, 895], [661, 895], [661, 894], [663, 894], [663, 893], [664, 893], [664, 892], [665, 892], [665, 891], [666, 891], [666, 890], [667, 890], [667, 888], [668, 888], [668, 886], [669, 886], [669, 884], [670, 884], [670, 882], [671, 882], [671, 880], [672, 880], [672, 879], [673, 879], [673, 878], [674, 878], [674, 872], [675, 872], [675, 870], [674, 870], [674, 868], [673, 868], [673, 867], [672, 867], [672, 866], [670, 866], [670, 865], [668, 865], [668, 866], [662, 866], [662, 865], [661, 865], [661, 864], [660, 864], [660, 862], [659, 862], [659, 861], [658, 861], [658, 862]]}, "center": {"166-258": [662, 876]}}, -{"id": 2767, "name": "Platano Canario, la fruta del amor.", "description": "Very sweet medium sized bananas cultivated on the canary islands characterized by its small brown spots.", "links": {}, "path": {"245-258": [[696, -75], [695, -75], [695, -73], [694, -72], [693, -71], [693, -68], [696, -66], [700, -65], [701, -65], [702, -66], [702, -67], [703, -68], [703, -69], [702, -70], [699, -70], [698, -71], [698, -72], [697, -73], [697, -75]]}, "center": {"245-258": [696, -70]}}, -{"id": 2768, "name": "Bill from Le Bigdil (TV Show)", "description": "Bill is a memorable character from \"Le Bigdil,\" a popular French television game show. This friendly blue extraterrestrial, with his unique appearance and lovable personality, has become an iconic figure in French television. \"Le Bigdil,\" aired on TF1 from 1998 to 2004, charmed audiences with its engaging challenges and charismatic host, Vincent Lagaf'. The enduring popularity of Bill underscores the show's cultural impact and the creative vitality of French television.", "links": {"website": ["https://fr.wikipedia.org/wiki/Le_Bigdil"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"196-258": [[929, -196], [964, -196], [964, -172], [929, -172]]}, "center": {"196-258": [947, -184]}}, +{"id": 2764, "name": "Flag of the Ingrians", "description": "Ingrians, or Ingrian Finns, are the Finnish population of the historial region of Ingria.", "links": {"website": ["https://nordics.info/show/artikel/ingria-and-the-ingrian-finns"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"160-258, T": [[144, -336], [144, -337], [144, -330], [143, -330], [143, -329], [142, -329], [142, -328], [140, -328], [140, -329], [139, -329], [139, -330], [138, -330], [138, -337], [144, -337]]}, "center": {"160-258, T": [141, -333]}}, +{"id": 2765, "name": "French Lattice", "description": "The French Lattice is an initiative inspired by the Green Lattice, in which r/placeFR offered smaller communities to submit arts to be hosted and protected by the french. The project was carried by BlueBeeries, a PlaceFR admin. Even though the flag didn't display a lattice pattern like the Green Lattice, the primary goal was to carry the spirit of the Green Lattice. While not mandatory, it was preferred if the art was adjusted to be french themed.\n\nIn a surprising turn of events, the \"French Lattice\" found a new, unexpected meaning when the \"Island of France\" project was fused with the French Lattice - creating a massive \"pun not intended\" situation where the Eiffel Tower spawned at the center of it, which is the most famous lattice tower on Earth.\n\nSo in the end, the French Lattice designates both the space given to small communities and collabs by France, and the Eiffel Tower itself.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"165-258, T": [[-501, 501], [-367, 500], [-368, 971], [-501, 971]]}, "center": {"165-258, T": [-434, 735]}}, +{"id": 2766, "name": "Irish harp", "description": "The Irish harp, as shown on the Irish coat of arms, is a cherished symbol of Ireland. Characterized by its graceful design and mesmerizing sound, it holds cultural significance and is associated with traditional music. From medieval courts to modern performances, the Irish harp continues to captivate audiences with its timeless charm.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Coat_of_arms_of_Ireland"]}, "path": {"166-258, T": [[656, 863], [656, 864], [655, 864], [655, 865], [656, 865], [656, 868], [655, 868], [655, 869], [654, 869], [654, 871], [653, 871], [653, 873], [652, 873], [652, 877], [651, 877], [651, 883], [652, 883], [652, 886], [653, 886], [653, 888], [654, 888], [654, 890], [655, 890], [655, 891], [656, 891], [656, 893], [657, 893], [657, 894], [658, 894], [658, 895], [661, 895], [661, 894], [663, 894], [663, 893], [664, 893], [664, 892], [665, 892], [665, 891], [666, 891], [666, 890], [667, 890], [667, 888], [668, 888], [668, 886], [669, 886], [669, 884], [670, 884], [670, 882], [671, 882], [671, 880], [672, 880], [672, 879], [673, 879], [673, 878], [674, 878], [674, 872], [675, 872], [675, 870], [674, 870], [674, 868], [673, 868], [673, 867], [672, 867], [672, 866], [670, 866], [670, 865], [668, 865], [668, 866], [662, 866], [662, 865], [661, 865], [661, 864], [660, 864], [660, 862], [659, 862], [659, 861], [658, 861], [658, 862]]}, "center": {"166-258, T": [662, 876]}}, +{"id": 2767, "name": "Platano Canario, la fruta del amor.", "description": "Very sweet medium sized bananas cultivated on the canary islands characterized by its small brown spots.", "links": {}, "path": {"245-258, T": [[696, -75], [695, -75], [695, -73], [694, -72], [693, -71], [693, -68], [696, -66], [700, -65], [701, -65], [702, -66], [702, -67], [703, -68], [703, -69], [702, -70], [699, -70], [698, -71], [698, -72], [697, -73], [697, -75]]}, "center": {"245-258, T": [696, -70]}}, +{"id": 2768, "name": "Bill from Le Bigdil (TV Show)", "description": "Bill is a memorable character from \"Le Bigdil,\" a popular French television game show. This friendly blue extraterrestrial, with his unique appearance and lovable personality, has become an iconic figure in French television. \"Le Bigdil,\" aired on TF1 from 1998 to 2004, charmed audiences with its engaging challenges and charismatic host, Vincent Lagaf'. The enduring popularity of Bill underscores the show's cultural impact and the creative vitality of French television.", "links": {"website": ["https://fr.wikipedia.org/wiki/Le_Bigdil"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"196-258, T": [[929, -196], [964, -196], [964, -172], [929, -172]]}, "center": {"196-258, T": [947, -184]}}, {"id": 2769, "name": "Blackpink Logo", "description": "Blackpink is a South Korean girl group formed by YG Entertainment, consisting of members Jisoo, Jennie, Rosé, and Lisa.", "links": {"website": ["https://www.blackpinkmusic.com/", "https://www.blackpinklive.com/"], "subreddit": ["BlackPink", "BeulPing"], "discord": ["qmGHwGq"]}, "path": {"242": [[659, 936], [703, 936], [703, 944], [659, 944]]}, "center": {"242": [681, 940]}}, {"id": 2770, "name": "Vicanistán", "description": "Vicanistán is a fictional country organized by the city of Ramos Mejía, Argentina. The nation is hosted on a discord server of the same name.\n\nThe Vikanniskaya Nation is governed under an Absolute Darwinist Monarchy, a system of government that consists of attributing all power to a \"Gran Líder\". The leader is elected through a competition system that confronts the heads of the Vicanistan \"Casas\", who dispute the throne in a game tournament called The Leader's Cup.", "links": {"discord": ["hWB3kbgZEA"]}, "path": {"225": [[1469, 204], [1469, 209], [1478, 209], [1478, 204]]}, "center": {"225": [1474, 207]}}, -{"id": 2771, "name": "Rolace Place 2 - Layton and Truttle1", "description": "The 2nd Place of the Rolace Alliance.\nThis time it has a Professor Layton Image with a turtle.", "links": {"website": ["https://www.youtube.com/c/truttle1"], "subreddit": ["ProfessorLayton", "AceAttorney"], "discord": ["5krwbfRrve"]}, "path": {"168-258": [[-589, 970], [-589, 953], [-581, 953], [-578, 956], [-573, 956], [-570, 953], [-567, 957], [-532, 957], [-531, 971], [-590, 971]]}, "center": {"168-258": [-571, 963]}}, -{"id": 2772, "name": "Borussia Mönchengladbach", "description": "Borussia Mönchengladbach (BMG) is a professional football club based in Mönchengladbach, North Rhine-Westphalia, Germany that plays in the Bundesliga, the top flight of German football. Founded in 1900, the club has a rich history and a large fan base. The team plays its home matches at the Borussia-Park in Mönchengladbach. The colors associated with BMG are black, white, and green. The pixelart was created by the Discord members of Buschi's Borussia (who is a YouTuber creating content about BMG).", "links": {"website": ["https://www.borussia.de/de/"], "discord": ["5KgzQtTE9G"]}, "path": {"245-258": [[1180, -911], [1204, -911], [1204, -865], [1180, -865]]}, "center": {"245-258": [1192, -888]}}, -{"id": 2773, "name": "Saci-pererê", "description": "The Saci-Pererê is a mythical being that inhabits the forests and has as its main characteristic the fact that it is mischievous and plays tricks on people. \nSaci is a young black man and has only one leg, with which he moves quickly. He is also known for having no hair or body hair, wearing a red cap on his head and practicing the habit of smoking a pipe. He is a small being, about half a meter tall, although there are versions of the legend that say he can grow to be three meters tall if he wants to.\n\nThe Saci is playful and mischievous and plays tricks, which is why many mentions of the past refer to it as \"devilish\". Because he is agitated, saci is usually performing pranks wherever he goes. There is not only one saci, there may be several performing their shenanigans at the same time.\n\nOne of the most common practices carried out by the saci is the act of disturbing the horses, especially at night. It is said that the saci used to suck the blood of the horses, in addition to frightening them at night, so whenever the horses are agitated at night, it is because a saci was there. A sign that in fact a saci has played pranks with horses are the knots and braids that can be found in their manes.\n\nSaci also tends to annoy travelers he meets on the road. He whistles a very strident sound that torments them and makes them uncomfortable for not knowing where and who such a sound comes from. In addition, he tends to knock down the hats worn by travelers, damage the brakes of wagons, among other pranks.\n\nSaci also invade houses to play their games. He can burn the food that is being made, turn it sour if it is already ready, in addition to disappearing objects, turning off the light of lamps, etc. The whirlpool has already been seen by many as the work of the saci to lift the foliage and spread dirt.\n\nDuring this phenomenon, it is possible to capture the saci. To do this, just throw a certain type of sieve in the middle of the whirlpool. Whoever captures the saci must remove the cap from its head so that it loses its supernatural powers. The last act is to imprison him in a bottle with a cross drawn on it. The purpose of this one is to prevent your escape. In exchange for its freedom, the Saci will offer a wish to the one who imprisoned it. Once a Saci-Pererê has granted this wish, it cannot grant another wish again until 1 year and 1 day has passed, and cosmic law dictates that the same Saci-Pererê can only grant a wish to a specific creature only once in that creature's existence.\n\n \nTo have a wish granted, a creature within 60 feet of the saci-pererê declares a desired effect. The Saci-Pererê can then cast the wish spell on the creature's behalf to produce that effect. Given the nature of the saci-pererê, it can try to pervert the intention of the desire, exploring a dubious formulation. The perversion of the formulation is normally done to benefit the saci-pererê itself. For example: if you say to Saci \"I want to have a lot of money\", he will grant the wish, but he will give you several fake toy money bills.\n\nin addition, Saci-Pererê is also known for being the mascot of Sport Club Internacional from Porto Alegre, the club joined him in 1950 for portraying a happy boy who mocked his opponents with pranks.\n\nIt is said that the saci lives for 77 years, and after that period it can transform itself into a poisonous mushroom or into those mushrooms that are found on the trunks of trees, the \"wooden ear\".", "links": {"website": ["https://https"], "subreddit": ["brasil"]}, "path": {"245-258": [[-709, -735], [-714, -725], [-708, -723], [-707, -718], [-694, -718], [-692, -722], [-689, -725], [-687, -730], [-694, -735], [-691, -739], [-689, -748], [-698, -751], [-706, -752], [-714, -749], [-715, -742], [-712, -735], [-711, -731]]}, "center": {"245-258": [-702, -741]}}, -{"id": 2774, "name": "Bangladesh and Argentina", "description": "A united flag of Bangladesh with Argentina to symbolize the love between both countries, since both went through similar things, and despite being so far away their celebrations for the 2022 world cup were almost as big as those of the Argentines themselves", "links": {}, "path": {"230-258": [[1203, 900], [1244, 900], [1244, 915], [1203, 915], [1203, 906]]}, "center": {"230-258": [1224, 908]}}, +{"id": 2771, "name": "Rolace Place 2 - Layton and Truttle1", "description": "The 2nd Place of the Rolace Alliance.\nThis time it has a Professor Layton Image with a turtle.", "links": {"website": ["https://www.youtube.com/c/truttle1"], "subreddit": ["ProfessorLayton", "AceAttorney"], "discord": ["5krwbfRrve"]}, "path": {"168-258, T": [[-589, 970], [-589, 953], [-581, 953], [-578, 956], [-573, 956], [-570, 953], [-567, 957], [-532, 957], [-531, 971], [-590, 971]]}, "center": {"168-258, T": [-571, 963]}}, +{"id": 2772, "name": "Borussia Mönchengladbach", "description": "Borussia Mönchengladbach (BMG) is a professional football club based in Mönchengladbach, North Rhine-Westphalia, Germany that plays in the Bundesliga, the top flight of German football. Founded in 1900, the club has a rich history and a large fan base. The team plays its home matches at the Borussia-Park in Mönchengladbach. The colors associated with BMG are black, white, and green. The pixelart was created by the Discord members of Buschi's Borussia (who is a YouTuber creating content about BMG).", "links": {"website": ["https://www.borussia.de/de/"], "discord": ["5KgzQtTE9G"]}, "path": {"245-258, T": [[1180, -911], [1204, -911], [1204, -865], [1180, -865]]}, "center": {"245-258, T": [1192, -888]}}, +{"id": 2773, "name": "Saci-pererê", "description": "The Saci-Pererê is a mythical being that inhabits the forests and has as its main characteristic the fact that it is mischievous and plays tricks on people. \nSaci is a young black man and has only one leg, with which he moves quickly. He is also known for having no hair or body hair, wearing a red cap on his head and practicing the habit of smoking a pipe. He is a small being, about half a meter tall, although there are versions of the legend that say he can grow to be three meters tall if he wants to.\n\nThe Saci is playful and mischievous and plays tricks, which is why many mentions of the past refer to it as \"devilish\". Because he is agitated, saci is usually performing pranks wherever he goes. There is not only one saci, there may be several performing their shenanigans at the same time.\n\nOne of the most common practices carried out by the saci is the act of disturbing the horses, especially at night. It is said that the saci used to suck the blood of the horses, in addition to frightening them at night, so whenever the horses are agitated at night, it is because a saci was there. A sign that in fact a saci has played pranks with horses are the knots and braids that can be found in their manes.\n\nSaci also tends to annoy travelers he meets on the road. He whistles a very strident sound that torments them and makes them uncomfortable for not knowing where and who such a sound comes from. In addition, he tends to knock down the hats worn by travelers, damage the brakes of wagons, among other pranks.\n\nSaci also invade houses to play their games. He can burn the food that is being made, turn it sour if it is already ready, in addition to disappearing objects, turning off the light of lamps, etc. The whirlpool has already been seen by many as the work of the saci to lift the foliage and spread dirt.\n\nDuring this phenomenon, it is possible to capture the saci. To do this, just throw a certain type of sieve in the middle of the whirlpool. Whoever captures the saci must remove the cap from its head so that it loses its supernatural powers. The last act is to imprison him in a bottle with a cross drawn on it. The purpose of this one is to prevent your escape. In exchange for its freedom, the Saci will offer a wish to the one who imprisoned it. Once a Saci-Pererê has granted this wish, it cannot grant another wish again until 1 year and 1 day has passed, and cosmic law dictates that the same Saci-Pererê can only grant a wish to a specific creature only once in that creature's existence.\n\n \nTo have a wish granted, a creature within 60 feet of the saci-pererê declares a desired effect. The Saci-Pererê can then cast the wish spell on the creature's behalf to produce that effect. Given the nature of the saci-pererê, it can try to pervert the intention of the desire, exploring a dubious formulation. The perversion of the formulation is normally done to benefit the saci-pererê itself. For example: if you say to Saci \"I want to have a lot of money\", he will grant the wish, but he will give you several fake toy money bills.\n\nin addition, Saci-Pererê is also known for being the mascot of Sport Club Internacional from Porto Alegre, the club joined him in 1950 for portraying a happy boy who mocked his opponents with pranks.\n\nIt is said that the saci lives for 77 years, and after that period it can transform itself into a poisonous mushroom or into those mushrooms that are found on the trunks of trees, the \"wooden ear\".", "links": {"website": ["https://https"], "subreddit": ["brasil"]}, "path": {"245-258, T": [[-709, -735], [-714, -725], [-708, -723], [-707, -718], [-694, -718], [-692, -722], [-689, -725], [-687, -730], [-694, -735], [-691, -739], [-689, -748], [-698, -751], [-706, -752], [-714, -749], [-715, -742], [-712, -735], [-711, -731]]}, "center": {"245-258, T": [-702, -741]}}, +{"id": 2774, "name": "Bangladesh and Argentina", "description": "A united flag of Bangladesh with Argentina to symbolize the love between both countries, since both went through similar things, and despite being so far away their celebrations for the 2022 world cup were almost as big as those of the Argentines themselves", "links": {}, "path": {"230-258, T": [[1203, 900], [1244, 900], [1244, 915], [1203, 915], [1203, 906]]}, "center": {"230-258, T": [1224, 908]}}, {"id": 2775, "name": "PermadeaZ", "description": "\"Permdeaz\" is a series from the video game \"Project Zomboid,\" created by the Spanish streamer \"Silithur.\" This series followed a \"permadeath\" format, where a player's death meant expulsion from the game.", "links": {"website": ["https://www.twitch.tv/silithur"]}, "path": {"239": [[117, -96], [116, -78], [199, -77], [199, -96]]}, "center": {"239": [173, -87]}}, -{"id": 2776, "name": "Komodo Eating Indomie", "description": "Komodo is exotic animal from Indonesia. Indomie is famous instant noodle brand from Indonesia.", "links": {"subreddit": ["indonesia"], "discord": ["redditindo"]}, "path": {"235-258": [[-1355, 190], [-1355, 216], [-1314, 216], [-1314, 190]]}, "center": {"235-258": [-1334, 203]}}, -{"id": 2777, "name": "Destiny", "description": "Destiny is a free-to-play online-only multiplayer first-person shooter video game franchise developed by Bungie. At the top is a memorial site for Lance Reddick, the voice of Commander Zavala, a major character in the game. At the bottom is the Traveler, floating up to Earth's outer atmosphere, as seen in the cover art of the first game, and the finale of the Witch Queen's final Season, Season of the Seraph.", "links": {"subreddit": ["DestinyTheGame", "Destiny2"], "discord": ["DestinyReddit", "d2"]}, "path": {"245-258": [[-791, 500], [-791, 519], [-709, 519], [-709, 481], [-805, 481], [-805, 500]]}, "center": {"245-258": [-757, 500]}}, +{"id": 2776, "name": "Komodo Eating Indomie", "description": "Komodo is exotic animal from Indonesia. Indomie is famous instant noodle brand from Indonesia.", "links": {"subreddit": ["indonesia"], "discord": ["redditindo"]}, "path": {"235-258, T": [[-1355, 190], [-1355, 216], [-1314, 216], [-1314, 190]]}, "center": {"235-258, T": [-1334, 203]}}, +{"id": 2777, "name": "Destiny", "description": "Destiny is a free-to-play online-only multiplayer first-person shooter video game franchise developed by Bungie. At the top is a memorial site for Lance Reddick, the voice of Commander Zavala, a major character in the game. At the bottom is the Traveler, floating up to Earth's outer atmosphere, as seen in the cover art of the first game, and the finale of the Witch Queen's final Season, Season of the Seraph.", "links": {"subreddit": ["DestinyTheGame", "Destiny2"], "discord": ["DestinyReddit", "d2"]}, "path": {"245-258, T": [[-791, 500], [-791, 519], [-709, 519], [-709, 481], [-805, 481], [-805, 500]]}, "center": {"245-258, T": [-757, 500]}}, {"id": 2778, "name": "Sonic the Hedgehog", "description": "Sonic the Hedgehog is a video game series published by Japanese company Sega. This art features the titular Sonic the Hedgehog and his sidekick Tails.\n\nThis art was later destroyed by the Void. The shipping community at r/SonTails stepped in and resurrected Sonic and Tails to keep them alive for a little while longer before the end.", "links": {"website": ["https://en.wikipedia.org/wiki/Sonic_the_Hedgehog"], "subreddit": ["SonicTheHedgehog", "SonTails"]}, "path": {"204-219": [[1212, 302], [1212, 316], [1235, 316], [1235, 302]]}, "center": {"204-219": [1224, 309]}}, -{"id": 2779, "name": "nonifespada", "description": "This emoticon is the Hispanic streamer named Noni. He was in big series like dedsafio 1 and 2, tortillaland 2 and winner of the Saw Games Minecraft.\nHe is one of the best streamer of various content and games with a great community.", "links": {"website": ["https://www.twitch.tv/noni"], "subreddit": ["nonigamer"]}, "path": {"212-258": [[55, 627], [95, 627], [95, 663], [55, 663], [55, 648]]}, "center": {"212-258": [75, 645]}}, +{"id": 2779, "name": "nonifespada", "description": "This emoticon is the Hispanic streamer named Noni. He was in big series like dedsafio 1 and 2, tortillaland 2 and winner of the Saw Games Minecraft.\nHe is one of the best streamer of various content and games with a great community.", "links": {"website": ["https://www.twitch.tv/noni"], "subreddit": ["nonigamer"]}, "path": {"212-258, T": [[55, 627], [95, 627], [95, 663], [55, 663], [55, 648]]}, "center": {"212-258, T": [75, 645]}}, {"id": 2780, "name": "AlkoholW", "description": "This is the Pixel Art of the BetterTTV Emote \"AlkoholW\" in HuebiTV's Chat. Its was founded by Chatuser MichaelNr3 on September 4th 2022. There is also HolzW founded on September 3rd 2022 from an other Chatuser named kontinuumshypothese", "links": {"website": ["https://youtube.com/@Huebi.", "https://youtube.com/@Huebschrauber"], "subreddit": ["Huebi", "HuebiOhneKontext"], "discord": ["huebi"]}, "path": {"12-13": [[64, 309], [77, 309], [77, 321], [64, 321], [77, 309], [77, 321], [64, 321], [77, 309], [77, 321], [64, 321]]}, "center": {"12-13": [73, 317]}}, -{"id": 2781, "name": "Goku Mondongo", "description": "This artwork depicts the Spanish meme \"Goku Mondongo\" which features a bald version of Goku from the popular anime/manga series Dragon Ball, with the word Mondongo which is a Latin American slow-cooked soup.\nThe artwork has been created by the Spanish community of the streamer Silithur. It has been created to be sent to another streamer called Knekro who is usually trolled by sending him a lot of memes related to mondongo.", "links": {"website": ["https://knowyourmeme.com/memes/goku-mondongo", "https://www.twitch.tv/silithur"], "subreddit": ["dbz"]}, "path": {"157-258": [[55, 736], [60, 726], [60, 709], [81, 690], [88, 690], [91, 687], [87, 680], [87, 672], [90, 663], [111, 662], [117, 671], [117, 674], [119, 678], [119, 687], [117, 690], [119, 692], [128, 695], [132, 701], [135, 705], [133, 708], [132, 714], [131, 718], [131, 725], [135, 726], [136, 728], [137, 736], [55, 737]]}, "center": {"157-258": [102, 711]}}, -{"id": 2782, "name": "Regional Express", "description": "A regional express train with the iconic double decker wagons found all around Germany", "links": {"website": ["https://en.wikipedia.org/wiki/Bombardier_Double-deck_Coach"]}, "path": {"247-258": [[-1148, -371], [-1149, -372], [-1150, -372], [-1151, -373], [-1150, -374], [-1149, -375], [-1149, -378], [-1148, -379], [-1148, -381], [-1147, -382], [-1146, -383], [-1145, -383], [-1144, -384], [-1138, -384], [-1138, -385], [-1114, -385], [-1114, -384], [-1108, -384], [-1107, -383], [-1106, -383], [-1105, -382], [-1104, -381], [-1104, -379], [-1103, -378], [-1102, -378], [-1102, -385], [-1101, -386], [-971, -386], [-970, -385], [-969, -385], [-968, -384], [-967, -383], [-967, -382], [-966, -381], [-966, -380], [-965, -379], [-965, -373], [-964, -372], [-965, -371]]}, "center": {"247-258": [-1053, -378]}}, +{"id": 2781, "name": "Goku Mondongo", "description": "This artwork depicts the Spanish meme \"Goku Mondongo\" which features a bald version of Goku from the popular anime/manga series Dragon Ball, with the word Mondongo which is a Latin American slow-cooked soup.\nThe artwork has been created by the Spanish community of the streamer Silithur. It has been created to be sent to another streamer called Knekro who is usually trolled by sending him a lot of memes related to mondongo.", "links": {"website": ["https://knowyourmeme.com/memes/goku-mondongo", "https://www.twitch.tv/silithur"], "subreddit": ["dbz"]}, "path": {"157-258, T": [[55, 736], [60, 726], [60, 709], [81, 690], [88, 690], [91, 687], [87, 680], [87, 672], [90, 663], [111, 662], [117, 671], [117, 674], [119, 678], [119, 687], [117, 690], [119, 692], [128, 695], [132, 701], [135, 705], [133, 708], [132, 714], [131, 718], [131, 725], [135, 726], [136, 728], [137, 736], [55, 737]]}, "center": {"157-258, T": [102, 711]}}, +{"id": 2782, "name": "Regional Express", "description": "A regional express train with the iconic double decker wagons found all around Germany", "links": {"website": ["https://en.wikipedia.org/wiki/Bombardier_Double-deck_Coach"]}, "path": {"247-258, T": [[-1148, -371], [-1149, -372], [-1150, -372], [-1151, -373], [-1150, -374], [-1149, -375], [-1149, -378], [-1148, -379], [-1148, -381], [-1147, -382], [-1146, -383], [-1145, -383], [-1144, -384], [-1138, -384], [-1138, -385], [-1114, -385], [-1114, -384], [-1108, -384], [-1107, -383], [-1106, -383], [-1105, -382], [-1104, -381], [-1104, -379], [-1103, -378], [-1102, -378], [-1102, -385], [-1101, -386], [-971, -386], [-970, -385], [-969, -385], [-968, -384], [-967, -383], [-967, -382], [-966, -381], [-966, -380], [-965, -379], [-965, -373], [-964, -372], [-965, -371]]}, "center": {"247-258, T": [-1053, -378]}}, {"id": 2783, "name": "Krikonin (CrystalMolly)", "description": "Krikonin is an emote widely used by the crystalmolly community, a clear reference to the Kappa emote. Used to make jokes. Also a trans flag as Molly is trans, a heart with the lgbtiq+ flag representing her whole \"crystals\" community.", "links": {"website": ["https://twitch.tv/crystalmolly"]}, "path": {"223-243": [[-1079, -698], [-1083, -692], [-1083, -693], [-1078, -699], [-1071, -705], [-1064, -709], [-1063, -710], [-1047, -710], [-1041, -707], [-1030, -707], [-1023, -706], [-1022, -707], [-1022, -704], [-1025, -702], [-1029, -702], [-1034, -703], [-1036, -703], [-1036, -701], [-1034, -698], [-1032, -697], [-1030, -695], [-1029, -692], [-1029, -686], [-1029, -682], [-1028, -680], [-1027, -678], [-1027, -675], [-1027, -673], [-1027, -672], [-1027, -665], [-1024, -661], [-1020, -657], [-1013, -650], [-1011, -649], [-1011, -651], [-1011, -654], [-1015, -655], [-1015, -657], [-1015, -658], [-1012, -659], [-1014, -661], [-1015, -663], [-1015, -668], [-1012, -669], [-1011, -670], [-1008, -672], [-1006, -669], [-1004, -668], [-1004, -666], [-1004, -664], [-1004, -662], [-1007, -659], [-1003, -658], [-1004, -656], [-1008, -652], [-1009, -648], [-1009, -646], [-1007, -646], [-1008, -644], [-1012, -641], [-1016, -642], [-1019, -643], [-1015, -640], [-1013, -637], [-1012, -634], [-1009, -635], [-1005, -637], [-1004, -636], [-1003, -633], [-1005, -631], [-1008, -630], [-1009, -631], [-1011, -632], [-1013, -633], [-1013, -631], [-1015, -629], [-1019, -626], [-1023, -622], [-1024, -621], [-1024, -616], [-1024, -613], [-1027, -612], [-1032, -612], [-1035, -614], [-1038, -616], [-1043, -616], [-1046, -613], [-1048, -612], [-1053, -612], [-1056, -615], [-1060, -621], [-1063, -623], [-1065, -624], [-1070, -628], [-1067, -616], [-1074, -614], [-1088, -614], [-1095, -614], [-1096, -621], [-1094, -627], [-1090, -632], [-1088, -635], [-1087, -638], [-1088, -639], [-1089, -642], [-1092, -644], [-1101, -653], [-1123, -633], [-1138, -646], [-1117, -670], [-1114, -672], [-1104, -660], [-1088, -646], [-1089, -645], [-1088, -645], [-1085, -650], [-1082, -654], [-1083, -655], [-1086, -661], [-1087, -663], [-1086, -678], [-1084, -684], [-1082, -693], [-1080, -696]]}, "center": {"223-243": [-1057, -669]}}, -{"id": 2784, "name": "Liero worm", "description": "Player sprite from the Finnish 1998 game Liero.", "links": {"website": ["https://www.liero.be/"]}, "path": {"247-258": [[1307, 192], [1310, 184], [1317, 185], [1318, 189], [1313, 193], [1307, 193]]}, "center": {"247-258": [1313, 188]}}, -{"id": 2785, "name": "Rozemyne praying to the gods", "description": "Ascendance of a Bookworm: Rozemyne praying to the gods", "links": {"subreddit": ["HonzukiNoGekokujou"], "discord": ["fGefmzu"]}, "path": {"99-258": [[-559, 294], [-559, 316], [-541, 316], [-541, 294]]}, "center": {"99-258": [-550, 305]}}, -{"id": 2786, "name": "<3 Papaplatte", "description": "A sign of approval toward the german Streamer \"Papaplatte\" for helping Austria out in the fight against XQC.", "links": {"website": ["https://www.twitch.tv/papaplatte"], "subreddit": ["placeaustria"], "discord": ["placeaustria"]}, "path": {"247-258": [[-784, -54], [-725, -53], [-725, -47], [-784, -47]]}, "center": {"247-258": [-780, -50]}}, -{"id": 2787, "name": "Weisse Rose (German: White Rose)", "description": "The White Rose was a non-violent resistance movement primarily composed of students and led by siblings Hans Scholl and Sophie Scholl, along with their friend Christoph Probst, among others. They were part of a circle of like-minded students at the University of Munich, which also included Alexander Schmorell, Willi Graf, and Kurt Huber, among others. The Suedflagge community in r/place paid tribute to the White Rose by building a white rose on their Germany flag symbol, representing the courageous spirit of the resistance and its dedication to moral integrity, bravery, and sacrifice in the pursuit of democratic ideals. The group was founded in June 1942 in Munich, and they distributed leaflets that exposed the crimes of the Nazi regime, called for active opposition to Hitler and his government, and advocated for humanist-democratic ideals. The core members of the White Rose, Hans Scholl, Sophie Scholl, and Christoph Probst, were arrested by the Gestapo in February 1943 after distributing their sixth leaflet. They were brought to trial before the People's Court, where they were found guilty of treason and sentenced to death. Their execution took place on the same day of their sentencing, on February 22, 1943. Hans and Sophie Scholl, along with Christoph Probst, are among the most well-known members of the White Rose due to their prominent roles in the group's activities and their ultimate sacrifice in the struggle against the Nazi regime. They have become symbols of courage and resistance during one of the darkest periods in German history.\n\nThis description might include wrong information, feel free to edit.", "links": {"website": ["https://de.wikipedia.org/wiki/Wei%C3%9Fe_Rose", "https://en.wikipedia.org/wiki/White_Rose"]}, "path": {"247-258": [[-596, -57], [-596, -78], [-584, -78], [-584, -57]]}, "center": {"247-258": [-590, -67]}}, -{"id": 2788, "name": "NS Intercity Nieuwe Generatie", "description": "The Intercity Nieuwe Generatie (Intercity New Generation), or ICNG is an electric trainset of the Dutch Railways.\nThe trains arrived in the Netherlands starting in 2020, and after a period of testing, entered passenger service in April 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/NS_Intercity_Nieuwe_Generatie"]}, "path": {"247-258": [[413, -372], [412, -373], [411, -374], [411, -377], [412, -378], [413, -379], [414, -380], [415, -381], [416, -382], [417, -383], [418, -384], [419, -385], [420, -386], [421, -387], [553, -387], [554, -386], [555, -385], [556, -384], [558, -382], [560, -380], [561, -379], [562, -378], [563, -377], [563, -374], [562, -373], [561, -372], [556, -372], [556, -371], [547, -371], [547, -372], [522, -372], [522, -371], [513, -371], [513, -372], [509, -372], [509, -371], [500, -371], [500, -372], [474, -372], [474, -371], [465, -371], [465, -372], [461, -372], [461, -371], [452, -371], [452, -372], [427, -372], [427, -371], [418, -371], [418, -372]]}, "center": {"247-258": [471, -379]}}, -{"id": 2789, "name": "3615 Beep Boop", "description": "\"3615 Beep Boop\" is a whimsical rallying phrase developed and amplified by the French Discord community of r/placeFR, an initiative originally launched by the French Twitch streamer, AzylHOME. This phrase was used as a humorous response to accusations of bot use by Twitch streamers. By filling streamers' chats with the phrase \"beep boop,\" the community playfully denied cheating allegations and embraced the amusing idea of being robots. This jest eventually evolved into a parody website that featured a \"shop\" for essential robot items such as bolts and oil.\n\nThe \"3615\" in \"3615 Beep Boop\" is a particularly French reference, hearkening back to the Minitel era. Minitel, a French precursor to the internet, used \"3615\" followed by a code as a dial-up service for various online resources. Although Minitel services have been obsolete for many years, the \"3615\" code persists in French popular culture as a humorous nod to a bygone era of technology.\n\nIn this context, the use of \"3615 Beep Boop\" not only encapsulates the camaraderie and humor of the French community but also showcases a distinctly French reference. It underscores their cultural heritage in the field of early digital communication, reinforcing the strength and unity of the r/placeFR community.", "links": {"website": ["https://www.rplacefr.laxe4k.com/", "https://web.archive.org/web/20230724191457/https://www.beep-boop.laxe4k.com/", "https://twitch.tv/AzylHOME"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"159-163": [[-499, 531], [-441, 531], [-441, 540], [-439, 542], [-440, 549], [-479, 549], [-480, 541], [-484, 541], [-485, 543], [-488, 543], [-488, 546], [-489, 547], [-489, 550], [-495, 550], [-496, 546], [-497, 542], [-499, 541], [-500, 536]], "164-258": [[-432, 804], [-369, 805], [-367, 808], [-368, 823], [-411, 823], [-412, 822], [-413, 814], [-416, 814], [-417, 817], [-421, 816], [-421, 820], [-421, 821], [-422, 823], [-425, 823], [-427, 823], [-428, 821], [-430, 818], [-432, 815], [-434, 810]]}, "center": {"159-163": [-451, 540], "164-258": [-399, 814]}}, -{"id": 2790, "name": "Touhou Ships Mural", "description": "The bigger artwork on the left is Maribel Hearn and Renko Usami. The 2nd biggest artwork is Marisa Kirisame and Alice Margatroid. The smallest artwork is a smaller Maribel and Renko.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"233-258": [[-1427, -640], [-1427, -623], [-1388, -623], [-1388, -640]]}, "center": {"233-258": [-1407, -631]}}, -{"id": 2791, "name": "PermadeaZ", "description": "A Proyect Zomboid Spanish server made by the streamer \"Silithur\" with the best wall", "links": {"website": ["https://www.twitch.tv/silithur"]}, "path": {"4-258": [[115, -98], [115, -76], [201, -76], [201, -98]]}, "center": {"4-258": [158, -87]}}, -{"id": 2792, "name": "José de San Martín", "description": "José Francisco de San Martín y Matorras , known simply as José de San Martín or the Liberator of Argentina, Chile and Peru, was an Argentine general and the primary leader of the southern and central parts of South America's successful struggle for independence from the Spanish Empire", "links": {}, "path": {"223-258": [[1107, 951], [1104, 954], [1101, 959], [1100, 949], [1103, 944], [1109, 943], [1109, 937], [1115, 935], [1117, 936], [1118, 943], [1124, 944], [1124, 925], [1125, 924], [1130, 925], [1138, 929], [1142, 930], [1149, 929], [1155, 931], [1153, 937], [1152, 944], [1134, 945], [1126, 942], [1127, 947], [1125, 950], [1124, 973], [1123, 973], [1123, 951], [1118, 954], [1117, 967], [1119, 971], [1105, 972], [1107, 966], [1108, 960]]}, "center": {"223-258": [1133, 936]}}, -{"id": 2793, "name": "Hardcore TANO*C", "description": "Hardcore TANO*C is a Japanese indie EDM label. Founded in 2003 by REDALiCE, they are celebrating their 20th anniversary this month. They provide music for many, many rhythm games.", "links": {"website": ["https://www.tano-c.net/", "https://www.youtube.com/@tanoc_official", "https://twitter.com/tanoc_official"]}, "path": {"247-258": [[1480, 86], [1481, 98], [1499, 96], [1499, 86], [1481, 86]]}, "center": {"247-258": [1486, 92]}}, -{"id": 2794, "name": "Tiny Cherry Blossom", "description": "A small Cherry blossom created by r/zo8\nworked on by u/zo8_, u/starAshley and u/no_experience_82 to put their mark on the map. \nDiscord Contact was connected through the r/touhou discord while they were working on their touhou builds and while zo8 was working with r/placecanada>\n\nThis was worked on to combine all the work done through all the alliance discords to create a small artwork that would last on the canvas.", "links": {"subreddit": ["placeblossom"], "discord": ["apl"]}, "path": {"246-258": [[1333, 201], [1334, 204], [1332, 206], [1335, 206], [1337, 206], [1336, 204], [1339, 201], [1336, 198], [1334, 199], [1331, 201], [1333, 204], [1332, 206]]}, "center": {"246-258": [1335, 201]}}, -{"id": 2795, "name": "No it's Becky", "description": "A joke within the swiftie community.\n\nSomeone posted a picture of their alleged friend and captioned it 'this is my late friend becky. She died of doing crack at a party. Don't do crack.' But the picture of her friend was actually of taylor swift.'\n\nThen a fan commented 'pretty sure that's Taylor swift' and the person replied 'no its becky.'\nA few days later, Taylor Swift was spotted wearing a t-shirt with the phrase 'no its becky' on it!", "links": {"website": ["https://www.urbandictionary.com/define.php?term=No%20it%E2%80%99s%20becky"], "subreddit": ["TaylorSwift", "Youbelongwithmemes"]}, "path": {"246-258": [[-1444, 704], [-1444, 718], [-1422, 718], [-1422, 704]]}, "center": {"246-258": [-1433, 711]}}, -{"id": 2796, "name": "ZIB", "description": "ZIB (Zeit im Bild) is an austrian News Program that runs on ORF1 and ORF2 (The Austrian National TV)", "links": {"website": ["https://de.wikipedia.org/wiki/Zeit_im_Bild", "https://tv.orf.at/zeitimbild/"], "subreddit": ["placeaustria"], "discord": ["placeaustria"]}, "path": {"247-258": [[-1298, -36], [-1299, -35], [-1299, -34], [-1300, -33], [-1300, -21], [-1299, -20], [-1297, -18], [-1295, -16], [-1295, -15], [-1294, -14], [-1293, -13], [-1292, -13], [-1291, -12], [-1289, -12], [-1288, -11], [-1279, -11], [-1278, -12], [-1271, -17], [-1268, -20], [-1267, -22], [-1267, -34], [-1268, -34], [-1268, -37], [-1271, -39], [-1273, -41], [-1275, -42], [-1277, -43], [-1278, -44], [-1290, -44]]}, "center": {"247-258": [-1283, -28]}}, -{"id": 2797, "name": "Soupkisser", "description": "Boykisser with soup by dubbed soup kisser by the furry irl discord, it was initially destroyed by the xqc in the building of the charizard Pokémon card, the furry community eventually managed to rebuild him in roughly the same spot after xqc lost control of the pokemon card and it was overrun by smaller communities. built by r/furry_irl and r/littleboykisser.", "links": {"subreddit": ["furry_irl", "littleboykisser"]}, "path": {"247-258": [[-1494, 163], [-1493, 163], [-1492, 164], [-1491, 165], [-1490, 166], [-1489, 167], [-1487, 167], [-1487, 165], [-1486, 165], [-1485, 166], [-1484, 166], [-1483, 167], [-1482, 166], [-1482, 165], [-1479, 168], [-1479, 170], [-1478, 170], [-1473, 165], [-1472, 165], [-1471, 164], [-1469, 164], [-1469, 167], [-1468, 168], [-1469, 169], [-1469, 173], [-1470, 174], [-1469, 175], [-1469, 176], [-1470, 176], [-1471, 177], [-1471, 178], [-1469, 178], [-1468, 179], [-1469, 180], [-1472, 180], [-1472, 181], [-1471, 182], [-1470, 182], [-1470, 185], [-1474, 185], [-1475, 186], [-1476, 186], [-1477, 187], [-1478, 188], [-1477, 189], [-1476, 190], [-1475, 191], [-1475, 192], [-1474, 193], [-1473, 193], [-1473, 194], [-1472, 195], [-1472, 196], [-1471, 197], [-1470, 198], [-1470, 200], [-1471, 201], [-1472, 202], [-1472, 205], [-1494, 205], [-1495, 204], [-1496, 204], [-1496, 202], [-1497, 201], [-1497, 196], [-1496, 195], [-1495, 194], [-1495, 192], [-1496, 191], [-1497, 191], [-1498, 190], [-1499, 189], [-1500, 188], [-1500, 185], [-1499, 184], [-1498, 185], [-1499, 184], [-1498, 185], [-1498, 188], [-1497, 189], [-1496, 189], [-1495, 190], [-1494, 189], [-1493, 189], [-1492, 188], [-1492, 186], [-1493, 185], [-1497, 185], [-1497, 183], [-1496, 182], [-1496, 181], [-1498, 179], [-1496, 177], [-1497, 176], [-1497, 173], [-1496, 172], [-1496, 166], [-1495, 165]]}, "center": {"247-258": [-1484, 179]}}, -{"id": 2798, "name": "[KŒRI]WERK", "description": "[KŒRI]WERK\nMildly sweet or rather fiery hot?\nAt [kœri]werk®, the choice is yours! Make a fantastic currywurst your (fantastic) currywurst. You'll get a currywurst made especially for us from 100% veal and a spicy curry sauce developed in-house from the finest ingredients. Then it's your turn. Choose your favorite from 6 different curry spices and complete the curry sausage to your taste.\nThe best: If you want to do without meat, we have an excellent vegan currywurst for you. Try your perfect currywurst now at [kœri]werk®. Your move.", "links": {"website": ["https://www.sw-ka.de/en/hochschulgastronomie/eigenmarken/koeriwerk/"], "subreddit": ["KaIT"]}, "path": {"245-258": [[-80, -76], [-80, -57], [-49, -57], [-49, -76]]}, "center": {"245-258": [-64, -66]}}, -{"id": 2799, "name": "Regionalbahn", "description": "A typical train that is used for regional lines in germany. It has a second floor for more capacity. It is mainly used for highly occupied lines.", "links": {"subreddit": ["placede"], "discord": ["placede"]}, "path": {"247-258": [[-1151, -371], [-1149, -386], [-966, -386], [-964, -371], [-1151, -370]]}, "center": {"247-258": [-1119, -378]}}, +{"id": 2784, "name": "Liero worm", "description": "Player sprite from the Finnish 1998 game Liero.", "links": {"website": ["https://www.liero.be/"]}, "path": {"247-258, T": [[1307, 192], [1310, 184], [1317, 185], [1318, 189], [1313, 193], [1307, 193]]}, "center": {"247-258, T": [1313, 188]}}, +{"id": 2785, "name": "Rozemyne praying to the gods", "description": "Ascendance of a Bookworm: Rozemyne praying to the gods", "links": {"subreddit": ["HonzukiNoGekokujou"], "discord": ["fGefmzu"]}, "path": {"99-258, T": [[-559, 294], [-559, 316], [-541, 316], [-541, 294]]}, "center": {"99-258, T": [-550, 305]}}, +{"id": 2786, "name": "<3 Papaplatte", "description": "A sign of approval toward the german Streamer \"Papaplatte\" for helping Austria out in the fight against XQC.", "links": {"website": ["https://www.twitch.tv/papaplatte"], "subreddit": ["placeaustria"], "discord": ["placeaustria"]}, "path": {"247-258, T": [[-784, -54], [-725, -53], [-725, -47], [-784, -47]]}, "center": {"247-258, T": [-780, -50]}}, +{"id": 2787, "name": "Weisse Rose (German: White Rose)", "description": "The White Rose was a non-violent resistance movement primarily composed of students and led by siblings Hans Scholl and Sophie Scholl, along with their friend Christoph Probst, among others. They were part of a circle of like-minded students at the University of Munich, which also included Alexander Schmorell, Willi Graf, and Kurt Huber, among others. The Suedflagge community in r/place paid tribute to the White Rose by building a white rose on their Germany flag symbol, representing the courageous spirit of the resistance and its dedication to moral integrity, bravery, and sacrifice in the pursuit of democratic ideals. The group was founded in June 1942 in Munich, and they distributed leaflets that exposed the crimes of the Nazi regime, called for active opposition to Hitler and his government, and advocated for humanist-democratic ideals. The core members of the White Rose, Hans Scholl, Sophie Scholl, and Christoph Probst, were arrested by the Gestapo in February 1943 after distributing their sixth leaflet. They were brought to trial before the People's Court, where they were found guilty of treason and sentenced to death. Their execution took place on the same day of their sentencing, on February 22, 1943. Hans and Sophie Scholl, along with Christoph Probst, are among the most well-known members of the White Rose due to their prominent roles in the group's activities and their ultimate sacrifice in the struggle against the Nazi regime. They have become symbols of courage and resistance during one of the darkest periods in German history.\n\nThis description might include wrong information, feel free to edit.", "links": {"website": ["https://de.wikipedia.org/wiki/Wei%C3%9Fe_Rose", "https://en.wikipedia.org/wiki/White_Rose"]}, "path": {"247-258, T": [[-596, -57], [-596, -78], [-584, -78], [-584, -57]]}, "center": {"247-258, T": [-590, -67]}}, +{"id": 2788, "name": "NS Intercity Nieuwe Generatie", "description": "The Intercity Nieuwe Generatie (Intercity New Generation), or ICNG is an electric trainset of the Dutch Railways.\nThe trains arrived in the Netherlands starting in 2020, and after a period of testing, entered passenger service in April 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/NS_Intercity_Nieuwe_Generatie"]}, "path": {"247-258, T": [[413, -372], [412, -373], [411, -374], [411, -377], [412, -378], [413, -379], [414, -380], [415, -381], [416, -382], [417, -383], [418, -384], [419, -385], [420, -386], [421, -387], [553, -387], [554, -386], [555, -385], [556, -384], [558, -382], [560, -380], [561, -379], [562, -378], [563, -377], [563, -374], [562, -373], [561, -372], [556, -372], [556, -371], [547, -371], [547, -372], [522, -372], [522, -371], [513, -371], [513, -372], [509, -372], [509, -371], [500, -371], [500, -372], [474, -372], [474, -371], [465, -371], [465, -372], [461, -372], [461, -371], [452, -371], [452, -372], [427, -372], [427, -371], [418, -371], [418, -372]]}, "center": {"247-258, T": [471, -379]}}, +{"id": 2789, "name": "3615 Beep Boop", "description": "\"3615 Beep Boop\" is a whimsical rallying phrase developed and amplified by the French Discord community of r/placeFR, an initiative originally launched by the French Twitch streamer, AzylHOME. This phrase was used as a humorous response to accusations of bot use by Twitch streamers. By filling streamers' chats with the phrase \"beep boop,\" the community playfully denied cheating allegations and embraced the amusing idea of being robots. This jest eventually evolved into a parody website that featured a \"shop\" for essential robot items such as bolts and oil.\n\nThe \"3615\" in \"3615 Beep Boop\" is a particularly French reference, hearkening back to the Minitel era. Minitel, a French precursor to the internet, used \"3615\" followed by a code as a dial-up service for various online resources. Although Minitel services have been obsolete for many years, the \"3615\" code persists in French popular culture as a humorous nod to a bygone era of technology.\n\nIn this context, the use of \"3615 Beep Boop\" not only encapsulates the camaraderie and humor of the French community but also showcases a distinctly French reference. It underscores their cultural heritage in the field of early digital communication, reinforcing the strength and unity of the r/placeFR community.", "links": {"website": ["https://www.rplacefr.laxe4k.com/", "https://web.archive.org/web/20230724191457/https://www.beep-boop.laxe4k.com/", "https://twitch.tv/AzylHOME"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"159-163": [[-499, 531], [-441, 531], [-441, 540], [-439, 542], [-440, 549], [-479, 549], [-480, 541], [-484, 541], [-485, 543], [-488, 543], [-488, 546], [-489, 547], [-489, 550], [-495, 550], [-496, 546], [-497, 542], [-499, 541], [-500, 536]], "164-258, T": [[-432, 804], [-369, 805], [-367, 808], [-368, 823], [-411, 823], [-412, 822], [-413, 814], [-416, 814], [-417, 817], [-421, 816], [-421, 820], [-421, 821], [-422, 823], [-425, 823], [-427, 823], [-428, 821], [-430, 818], [-432, 815], [-434, 810]]}, "center": {"159-163": [-451, 540], "164-258, T": [-399, 814]}}, +{"id": 2790, "name": "Touhou Ships Mural", "description": "The bigger artwork on the left is Maribel Hearn and Renko Usami. The 2nd biggest artwork is Marisa Kirisame and Alice Margatroid. The smallest artwork is a smaller Maribel and Renko.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"233-258, T": [[-1427, -640], [-1427, -623], [-1388, -623], [-1388, -640]]}, "center": {"233-258, T": [-1407, -631]}}, +{"id": 2791, "name": "PermadeaZ", "description": "A Proyect Zomboid Spanish server made by the streamer \"Silithur\" with the best wall", "links": {"website": ["https://www.twitch.tv/silithur"]}, "path": {"4-258, T": [[115, -98], [115, -76], [201, -76], [201, -98]]}, "center": {"4-258, T": [158, -87]}}, +{"id": 2792, "name": "José de San Martín", "description": "José Francisco de San Martín y Matorras , known simply as José de San Martín or the Liberator of Argentina, Chile and Peru, was an Argentine general and the primary leader of the southern and central parts of South America's successful struggle for independence from the Spanish Empire", "links": {}, "path": {"223-258, T": [[1107, 951], [1104, 954], [1101, 959], [1100, 949], [1103, 944], [1109, 943], [1109, 937], [1115, 935], [1117, 936], [1118, 943], [1124, 944], [1124, 925], [1125, 924], [1130, 925], [1138, 929], [1142, 930], [1149, 929], [1155, 931], [1153, 937], [1152, 944], [1134, 945], [1126, 942], [1127, 947], [1125, 950], [1124, 973], [1123, 973], [1123, 951], [1118, 954], [1117, 967], [1119, 971], [1105, 972], [1107, 966], [1108, 960]]}, "center": {"223-258, T": [1133, 936]}}, +{"id": 2793, "name": "Hardcore TANO*C", "description": "Hardcore TANO*C is a Japanese indie EDM label. Founded in 2003 by REDALiCE, they are celebrating their 20th anniversary this month. They provide music for many, many rhythm games.", "links": {"website": ["https://www.tano-c.net/", "https://www.youtube.com/@tanoc_official", "https://twitter.com/tanoc_official"]}, "path": {"247-258, T": [[1480, 86], [1481, 98], [1499, 96], [1499, 86], [1481, 86]]}, "center": {"247-258, T": [1486, 92]}}, +{"id": 2794, "name": "Tiny Cherry Blossom", "description": "A small Cherry blossom created by r/zo8\nworked on by u/zo8_, u/starAshley and u/no_experience_82 to put their mark on the map. \nDiscord Contact was connected through the r/touhou discord while they were working on their touhou builds and while zo8 was working with r/placecanada>\n\nThis was worked on to combine all the work done through all the alliance discords to create a small artwork that would last on the canvas.", "links": {"subreddit": ["placeblossom"], "discord": ["apl"]}, "path": {"246-258, T": [[1333, 201], [1334, 204], [1332, 206], [1335, 206], [1337, 206], [1336, 204], [1339, 201], [1336, 198], [1334, 199], [1331, 201], [1333, 204], [1332, 206]]}, "center": {"246-258, T": [1335, 201]}}, +{"id": 2795, "name": "No it's Becky", "description": "A joke within the swiftie community.\n\nSomeone posted a picture of their alleged friend and captioned it 'this is my late friend becky. She died of doing crack at a party. Don't do crack.' But the picture of her friend was actually of taylor swift.'\n\nThen a fan commented 'pretty sure that's Taylor swift' and the person replied 'no its becky.'\nA few days later, Taylor Swift was spotted wearing a t-shirt with the phrase 'no its becky' on it!", "links": {"website": ["https://www.urbandictionary.com/define.php?term=No%20it%E2%80%99s%20becky"], "subreddit": ["TaylorSwift", "Youbelongwithmemes"]}, "path": {"246-258, T": [[-1444, 704], [-1444, 718], [-1422, 718], [-1422, 704]]}, "center": {"246-258, T": [-1433, 711]}}, +{"id": 2796, "name": "ZIB", "description": "ZIB (Zeit im Bild) is an austrian News Program that runs on ORF1 and ORF2 (The Austrian National TV)", "links": {"website": ["https://de.wikipedia.org/wiki/Zeit_im_Bild", "https://tv.orf.at/zeitimbild/"], "subreddit": ["placeaustria"], "discord": ["placeaustria"]}, "path": {"247-258, T": [[-1298, -36], [-1299, -35], [-1299, -34], [-1300, -33], [-1300, -21], [-1299, -20], [-1297, -18], [-1295, -16], [-1295, -15], [-1294, -14], [-1293, -13], [-1292, -13], [-1291, -12], [-1289, -12], [-1288, -11], [-1279, -11], [-1278, -12], [-1271, -17], [-1268, -20], [-1267, -22], [-1267, -34], [-1268, -34], [-1268, -37], [-1271, -39], [-1273, -41], [-1275, -42], [-1277, -43], [-1278, -44], [-1290, -44]]}, "center": {"247-258, T": [-1283, -28]}}, +{"id": 2797, "name": "Soupkisser", "description": "Boykisser with soup by dubbed soup kisser by the furry irl discord, it was initially destroyed by the xqc in the building of the charizard Pokémon card, the furry community eventually managed to rebuild him in roughly the same spot after xqc lost control of the pokemon card and it was overrun by smaller communities. built by r/furry_irl and r/littleboykisser.", "links": {"subreddit": ["furry_irl", "littleboykisser"]}, "path": {"247-258, T": [[-1494, 163], [-1493, 163], [-1492, 164], [-1491, 165], [-1490, 166], [-1489, 167], [-1487, 167], [-1487, 165], [-1486, 165], [-1485, 166], [-1484, 166], [-1483, 167], [-1482, 166], [-1482, 165], [-1479, 168], [-1479, 170], [-1478, 170], [-1473, 165], [-1472, 165], [-1471, 164], [-1469, 164], [-1469, 167], [-1468, 168], [-1469, 169], [-1469, 173], [-1470, 174], [-1469, 175], [-1469, 176], [-1470, 176], [-1471, 177], [-1471, 178], [-1469, 178], [-1468, 179], [-1469, 180], [-1472, 180], [-1472, 181], [-1471, 182], [-1470, 182], [-1470, 185], [-1474, 185], [-1475, 186], [-1476, 186], [-1477, 187], [-1478, 188], [-1477, 189], [-1476, 190], [-1475, 191], [-1475, 192], [-1474, 193], [-1473, 193], [-1473, 194], [-1472, 195], [-1472, 196], [-1471, 197], [-1470, 198], [-1470, 200], [-1471, 201], [-1472, 202], [-1472, 205], [-1494, 205], [-1495, 204], [-1496, 204], [-1496, 202], [-1497, 201], [-1497, 196], [-1496, 195], [-1495, 194], [-1495, 192], [-1496, 191], [-1497, 191], [-1498, 190], [-1499, 189], [-1500, 188], [-1500, 185], [-1499, 184], [-1498, 185], [-1499, 184], [-1498, 185], [-1498, 188], [-1497, 189], [-1496, 189], [-1495, 190], [-1494, 189], [-1493, 189], [-1492, 188], [-1492, 186], [-1493, 185], [-1497, 185], [-1497, 183], [-1496, 182], [-1496, 181], [-1498, 179], [-1496, 177], [-1497, 176], [-1497, 173], [-1496, 172], [-1496, 166], [-1495, 165]]}, "center": {"247-258, T": [-1484, 179]}}, +{"id": 2798, "name": "[KŒRI]WERK", "description": "[KŒRI]WERK\nMildly sweet or rather fiery hot?\nAt [kœri]werk®, the choice is yours! Make a fantastic currywurst your (fantastic) currywurst. You'll get a currywurst made especially for us from 100% veal and a spicy curry sauce developed in-house from the finest ingredients. Then it's your turn. Choose your favorite from 6 different curry spices and complete the curry sausage to your taste.\nThe best: If you want to do without meat, we have an excellent vegan currywurst for you. Try your perfect currywurst now at [kœri]werk®. Your move.", "links": {"website": ["https://www.sw-ka.de/en/hochschulgastronomie/eigenmarken/koeriwerk/"], "subreddit": ["KaIT"]}, "path": {"245-258, T": [[-80, -76], [-80, -57], [-49, -57], [-49, -76]]}, "center": {"245-258, T": [-64, -66]}}, +{"id": 2799, "name": "Regionalbahn", "description": "A typical train that is used for regional lines in germany. It has a second floor for more capacity. It is mainly used for highly occupied lines.", "links": {"subreddit": ["placede"], "discord": ["placede"]}, "path": {"247-258, T": [[-1151, -371], [-1149, -386], [-966, -386], [-964, -371], [-1151, -370]]}, "center": {"247-258, T": [-1119, -378]}}, {"id": 2800, "name": "435", "description": "435 - comedically used as a \"gang sign\" by young people from Schkeuditz, Germany. There is a locally well known group, the \"435er\", whose name derives directly from it.", "links": {"website": ["https://www.schkeuditz.de"], "subreddit": ["Sachsen"]}, "path": {"168-173": [[-847, -258], [-835, -258], [-835, -252], [-847, -252]]}, "center": {"168-173": [-841, -255]}}, -{"id": 2801, "name": "Suavementedorf", "description": "Gannondorf, as seen in terminalmontage's \"something about\" series, is depicted multiple times singing the song \"suavemente\", he both speaks and sings in a TTS voice. The art was first petitioned by r/zeldamemes but has sense been added onto by both the Zelda and TM communities", "links": {"subreddit": ["zeldamemes"]}, "path": {"247-258": [[-1246, 503], [-1287, 503], [-1296, 503], [-1296, 500], [-1295, 495], [-1291, 495], [-1290, 491], [-1291, 487], [-1291, 482], [-1300, 482], [-1303, 481], [-1291, 483], [-1290, 481], [-1293, 481], [-1298, 481], [-1302, 480], [-1297, 479], [-1295, 477], [-1291, 474], [-1290, 471], [-1289, 465], [-1287, 459], [-1282, 457], [-1281, 455], [-1277, 455], [-1274, 454], [-1270, 454], [-1265, 455], [-1261, 454]]}, "center": {"247-258": [-1271, 484]}}, -{"id": 2802, "name": "VR Class Sm3 (Pendolino)", "description": "The Class Sm3 is a class of high speed train, that tilts to enable higher operating speeds.\nIt is a member of the Pendolino train family, based on the Italian ETR460, which was the first train to use the tilting technology.", "links": {"website": ["https://en.wikipedia.org/wiki/VR_Class_Sm3"]}, "path": {"247-258": [[-389, -372], [-390, -373], [-390, -377], [-389, -378], [-388, -379], [-387, -380], [-386, -381], [-385, -382], [-384, -383], [-383, -384], [-382, -385], [-381, -385], [-380, -386], [-377, -386], [-376, -387], [-363, -387], [-362, -387], [-362, -388], [-339, -388], [-339, -387], [-311, -387], [-281, -387], [-280, -387], [-280, -388], [-257, -388], [-257, -387], [-243, -387], [-243, -386], [-239, -386], [-239, -385], [-237, -385], [-237, -384], [-236, -384], [-236, -383], [-235, -383], [-235, -382], [-234, -382], [-234, -381], [-233, -381], [-233, -380], [-232, -380], [-232, -379], [-231, -379], [-231, -378], [-230, -377], [-229, -377], [-229, -373], [-230, -373], [-230, -372], [-231, -372], [-231, -371], [-234, -371], [-234, -372], [-233, -372], [-233, -373], [-233, -378], [-234, -378], [-234, -379], [-235, -379], [-235, -381], [-236, -381], [-236, -382], [-237, -382], [-237, -383], [-239, -383], [-239, -384], [-243, -384], [-243, -385], [-255, -385], [-255, -384], [-256, -384], [-257, -384], [-257, -383], [-258, -383], [-258, -382], [-259, -382], [-261, -382], [-261, -381], [-261, -378], [-262, -378], [-262, -376], [-264, -376], [-264, -378], [-265, -378], [-265, -379], [-266, -379], [-266, -380], [-267, -380], [-267, -381], [-268, -381], [-268, -382], [-269, -382], [-269, -383], [-272, -383], [-272, -384], [-277, -384], [-277, -383], [-281, -383], [-281, -382], [-284, -382], [-284, -381], [-285, -381], [-285, -380], [-286, -380], [-286, -378], [-287, -378], [-287, -371], [-388, -371]]}, "center": {"247-258": [-347, -379]}}, -{"id": 2803, "name": "TGM - Technologisches Gewerbemuseum", "description": "The TGM is a technical school, located in Vienna, Austria. \n\nIt is the biggest school in Vienna and one of the best choices to learn a variety of things, including Computer Science, Electrical Engineering, Mechanical Engineering and a lot more!", "links": {"website": ["https://www.tgm.ac.at/"], "subreddit": ["tgmmemes"]}, "path": {"247-258": [[-1500, -368], [-1479, -368], [-1479, -355], [-1500, -355]]}, "center": {"247-258": [-1489, -361]}}, -{"id": 2804, "name": "DLRG", "description": "The German Life Saving Association (German: Deutsche Lebens-Rettungs-Gesellschaft or DLRG) is a relief organization for life saving in Germany. The DLRG is the largest voluntary lifesaving organization in the world.\n\nThe most urgent goal of the DLRG is the creation and promotion of all activities used to fight drowning.", "links": {"website": ["https://www.dlrg.de/"], "subreddit": ["placede"]}, "path": {"246-258": [[1016, -429], [1016, -425], [1017, -425], [1017, -424], [1018, -424], [1018, -423], [1019, -423], [1019, -422], [1020, -422], [1020, -421], [1021, -421], [1021, -420], [1024, -420], [1024, -419], [1025, -419], [1025, -418], [1026, -418], [1026, -417], [1027, -417], [1028, -417], [1028, -416], [1031, -416], [1031, -415], [1033, -415], [1033, -414], [1058, -414], [1058, -415], [1060, -415], [1060, -416], [1062, -416], [1062, -417], [1063, -417], [1063, -418], [1064, -418], [1064, -419], [1065, -419], [1065, -420], [1066, -420], [1066, -422], [1067, -422], [1067, -423], [1069, -423], [1070, -423], [1070, -422], [1071, -422], [1071, -421], [1072, -421], [1072, -420], [1073, -420], [1073, -419], [1073, -418], [1072, -418], [1072, -417], [1071, -417], [1071, -416], [1071, -417], [1072, -417], [1072, -418], [1073, -418], [1073, -419], [1074, -419], [1074, -420], [1075, -420], [1075, -421], [1076, -421], [1076, -422], [1077, -422], [1077, -423], [1078, -423], [1077, -423], [1077, -422], [1076, -422], [1076, -421], [1075, -421], [1074, -421], [1074, -422], [1073, -422], [1073, -423], [1072, -423], [1072, -424], [1071, -424], [1071, -425], [1071, -426], [1071, -427], [1072, -427], [1071, -427], [1071, -428], [1070, -428], [1070, -429], [1069, -429], [1069, -430], [1065, -430], [1065, -429], [1064, -429], [1064, -428], [1063, -428], [1063, -427], [1062, -427], [1061, -427], [1061, -428], [1058, -428], [1058, -436], [1057, -436], [1057, -445], [1056, -446], [1056, -450], [1054, -450], [1054, -445], [1053, -445], [1053, -436], [1052, -436], [1052, -428], [1041, -428], [1040, -428], [1040, -429], [1039, -429], [1039, -430], [1039, -431], [1039, -432], [1038, -432], [1038, -433], [1037, -433], [1037, -434], [1036, -434], [1036, -435], [1035, -435], [1035, -436], [1034, -436], [1033, -436], [1033, -435], [1032, -435], [1032, -433], [1031, -433], [1031, -429], [1022, -429], [1022, -430], [1022, -429], [1019, -429], [1019, -428], [1018, -428], [1018, -427], [1017, -427], [1017, -430], [1017, -429]]}, "center": {"246-258": [1035, -422]}}, -{"id": 2805, "name": "She-ra Sword of Protection / Cat <3 sign", "description": "Sword of protection from the 2018 Netflix series She-ra and the Princesses of power. \nUnder it sign reading Cat <3 in appreciation of our community leader Catshilags, who has helped the She-ra community get many allies and coordinated all of the r/place efforts this year.", "links": {"subreddit": ["PrincessesOfPower"], "discord": ["shera"]}, "path": {"247-258": [[-634, -150], [-634, -101], [-630, -101], [-630, -121], [-631, -121], [-631, -124], [-630, -124], [-630, -126], [-629, -127], [-629, -129], [-628, -131], [-628, -150]]}, "center": {"247-258": [-631, -135]}}, -{"id": 2806, "name": "Reddark", "description": "Reddark is a project that was tracking the protests against Reddit's API changes, places where they operated include: a 24/7 Twitch stream, website, Twitter account and a Discord server.", "links": {"website": ["https://reddark.untone.uk"], "discord": ["eHJNTFrkkS"]}, "path": {"248-258": [[167, 971], [167, 998], [193, 999], [193, 971]]}, "center": {"248-258": [180, 985]}}, -{"id": 2807, "name": "Amalka the Fairy", "description": "Amalka the Fairy (Víla Amálka) is a character from animated czechoslovakian television series \"Říkání o víle Amálce\" based on books by Václav Čtvrtek.", "links": {"website": ["https://www.ceskatelevize.cz/porady/898562-rikani-o-vile-amalce/"], "subreddit": ["czech"], "discord": ["Fx2AVgUc"]}, "path": {"241-258": [[-149, 553], [-131, 553], [-131, 579], [-149, 579]]}, "center": {"241-258": [-140, 566]}}, -{"id": 2808, "name": "Cheese", "description": "In the 2017 and 2022 r/place events, there were no signs of the cheese communities creating a monumental piece, so in 2023, u/Cheesus_Cakus decided to draw a piece of cheese with a small community and a newly created subreddit dedicated to this. Collaboration among cheese communities helped Cheesers complete this challenging task, represented in this piece.", "links": {"website": ["https://en.wikipedia.org/wiki/Cheese"], "subreddit": ["CheesePlace", "Cheesiarium"], "discord": ["xnFsEvt8Xg"]}, "path": {"207-258": [[-1396, -936], [-1396, -917], [-1392, -917], [-1392, -916], [-1384, -916], [-1383, -915], [-1376, -915], [-1375, -914], [-1368, -914], [-1367, -913], [-1360, -913], [-1359, -912], [-1352, -912], [-1351, -911], [-1348, -911], [-1348, -915], [-1349, -915], [-1349, -916], [-1350, -916], [-1350, -917], [-1351, -917], [-1351, -919], [-1350, -920], [-1349, -921], [-1348, -921], [-1348, -929], [-1349, -929], [-1350, -930], [-1351, -931], [-1352, -932], [-1353, -933], [-1354, -933], [-1355, -934], [-1356, -935], [-1357, -934], [-1359, -934], [-1360, -935], [-1361, -936], [-1361, -937], [-1360, -938], [-1361, -939], [-1362, -940], [-1363, -940], [-1364, -941], [-1365, -942], [-1366, -943], [-1367, -943], [-1368, -944], [-1369, -945], [-1370, -946], [-1371, -947], [-1372, -947], [-1373, -948], [-1374, -949], [-1375, -950], [-1382, -950], [-1382, -949], [-1385, -949], [-1386, -948], [-1388, -948], [-1388, -947], [-1389, -946], [-1390, -946], [-1391, -945], [-1392, -944], [-1393, -943], [-1393, -942], [-1394, -941], [-1394, -940], [-1395, -939], [-1395, -937], [-1396, -937]]}, "center": {"207-258": [-1379, -932]}}, -{"id": 2809, "name": "Kapellbrücke (Lucerne)", "description": "The Kapellbrücke (literally, Chapel Bridge) is a covered wooden footbridge spanning the river Reuss diagonally in the city of Lucerne in central Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Kapellbr%C3%BCcke"]}, "path": {"248-258": [[1448, -719], [1499, -719], [1499, -753], [1497, -753], [1496, -751], [1486, -745], [1479, -747], [1474, -749], [1467, -752], [1464, -753], [1460, -752], [1455, -748], [1450, -746], [1448, -745]]}, "center": {"248-258": [1465, -735]}}, -{"id": 2810, "name": "Schloss Sanssouci", "description": "Sanssouci (German pronunciation: [ˈsãːsusi]) is a historical building in Potsdam, near Berlin. Built by Prussian King Frederick the Great as his summer palace, it is often counted among the German rivals of Versailles.", "links": {"subreddit": ["placede"], "discord": ["placede"]}, "path": {"247-258": [[-1184, -391], [-1184, -393], [-1181, -405], [-1155, -405], [-1150, -408], [-1145, -408], [-1140, -405], [-1112, -405], [-1110, -391]]}, "center": {"247-258": [-1147, -399]}}, -{"id": 2811, "name": "comfymiku", "description": "An emote from the r/hatsune Discord Server. The 39, while not part of the actual emote, means \"Miku\" because in Japanese, the number 3 can be read as \"mi\", and the number 9 can be read as \"ku\", making 39 mean Miku.", "links": {"subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"248-258": [[-1338, 102], [-1321, 102], [-1321, 119], [-1338, 119], [-1338, 96], [-1330, 96], [-1330, 102]]}, "center": {"248-258": [-1330, 111]}}, -{"id": 2812, "name": "Garnet and Diamond Authority Logo", "description": "Garnet, one of the main characters of the Steven Universe TV Show. The 4 + shapes to the left are the Diamond Authority logo from the show.", "links": {"subreddit": ["StevenUniverse"]}, "path": {"250-258": [[707, 809], [714, 804], [717, 804], [721, 808], [725, 808], [725, 813], [722, 815], [723, 821], [711, 822], [705, 824], [702, 819], [706, 812]]}, "center": {"250-258": [714, 814]}}, -{"id": 2813, "name": "Rotkäppchen", "description": "Rotkäppchen (Little Red Riding Hood) is a European fairy tale about a young girl and a sly wolf. Its origins can be traced back to several pre-17th century European folk tales. \n\nThe two best known versions were written by Charles Perrault and the Brothers Grimm.", "links": {"subreddit": ["placede"], "discord": ["placede"]}, "path": {"245-258": [[1101, -551], [1085, -551], [1085, -552], [1084, -553], [1079, -553], [1078, -554], [1075, -554], [1073, -556], [1073, -558], [1074, -559], [1075, -559], [1076, -560], [1076, -562], [1075, -563], [1075, -564], [1074, -565], [1074, -570], [1077, -573], [1077, -574], [1078, -575], [1078, -577], [1079, -578], [1079, -582], [1080, -583], [1080, -587], [1081, -588], [1082, -587], [1082, -586], [1083, -585], [1083, -583], [1085, -583], [1086, -584], [1086, -585], [1087, -586], [1087, -587], [1088, -588], [1089, -588], [1089, -583], [1090, -582], [1090, -581], [1091, -580], [1092, -580], [1094, -578], [1094, -576], [1093, -576], [1091, -574], [1090, -574], [1089, -573], [1089, -572], [1088, -571], [1090, -569], [1091, -569], [1094, -566], [1095, -566], [1096, -567], [1096, -568], [1099, -571], [1099, -572], [1096, -575], [1096, -578], [1095, -579], [1095, -585], [1096, -586], [1096, -587], [1100, -591], [1101, -591], [1102, -592], [1103, -592], [1104, -593], [1109, -593], [1114, -588], [1114, -587], [1116, -585], [1116, -583], [1118, -581], [1118, -580], [1119, -579], [1119, -577], [1117, -575], [1116, -575], [1115, -574], [1113, -574], [1112, -573], [1112, -571], [1114, -569], [1115, -569], [1116, -568], [1118, -568], [1120, -570], [1121, -569], [1121, -565], [1120, -564], [1120, -563], [1118, -561], [1117, -561], [1116, -560], [1116, -559], [1115, -558], [1115, -557], [1113, -555], [1112, -555], [1111, -554], [1108, -554], [1107, -553], [1106, -553], [1105, -552], [1102, -552]]}, "center": {"245-258": [1105, -582]}}, -{"id": 2814, "name": "CANSERBERO", "description": "Tirone José González Orama (March 11, 1988 – January 20, 2015), known by his stage name Canserbero, was a Venezuelan hip hop singer and songwriter. He is widely regarded as one of the best rappers in Latin America, even to this very day. RIP Legend.", "links": {"website": ["https://es.wikipedia.org/wiki/Canserbero"], "subreddit": ["vzla"], "discord": ["c2GTNR5NxK"]}, "path": {"248-258": [[-971, 364], [-930, 364], [-930, 321], [-964, 321]]}, "center": {"248-258": [-949, 345]}}, -{"id": 2815, "name": "World of Tanks Emblem", "description": "A pixelated emblem of the MMO World of Tanks by Wargaming. Thanks to one good Samaritan who collaborated with the r/GreenLattice group, the icon was represented after last year's r/place failed. o7 to you Tankers", "links": {"website": ["https://worldoftanks.com/", "https://en.wikipedia.org/wiki/World_of_Tanks"], "subreddit": ["WorldOfTanks", "WorldOfTanksBlitz"]}, "path": {"248-258": [[1162, -770], [1159, -767], [1159, -762], [1164, -757], [1169, -762], [1168, -769], [1165, -770]]}, "center": {"248-258": [1164, -764]}}, -{"id": 2816, "name": "Suedbrot - Germany's Daily Dough Delight", "description": "Behold, the bread that defies all stereotypes and unites Deutschland like never before! The Suedbrot, lovingly crafted by the Suedflagge (German Flag) Community on r/place, is not your ordinary loaf – it's the secret ingredient to Germany's unstoppable efficiency!\n\nLegend has it that every German, from Berlin to Bavaria, munches on not one, but TWO slices of Suedbrot every day. It's their super-powered fuel, granting them the ability to punctually arrive at meetings, design cars faster than lightning, and organize queues with military precision!\n\nBut what makes the Suedbrot so special? Is it infused with the essence of German engineering, or perhaps sprinkled with comedic timing? Well, no one knows for sure, but some say it's made with flour milled from Das Brandenburger Tor and water sourced from the crystal-clear springs of the Black Forest.\n\nThe Suedbrot is more than just bread – it's a symbol of unity, reminding Germans that they can accomplish anything when they come together. A bite of this delectable delight, and you'll suddenly find yourself capable of yodeling at Oktoberfest, mastering the art of small talk about the weather, and even wielding a lederhosen with enviable flair!\n\nSo next time you're in Germany, keep an eye out for the Suedbrot. But beware, it's said that if you eat three slices in a day, you'll spontaneously start waltzing with the nearest Bavarian folk dancer. Stay deliciously efficient, my friends! Prost! 🍞🥨", "links": {"website": ["https://en.wikipedia.org/wiki/Bread", "https://de.wikipedia.org/wiki/Brot"], "subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"195-258": [[-833, -62], [-833, -69], [-833, -70], [-831, -70], [-831, -71], [-830, -71], [-830, -72], [-824, -72], [-823, -72], [-823, -71], [-822, -71], [-822, -70], [-821, -70], [-821, -68], [-821, -67], [-822, -67], [-822, -65], [-822, -64], [-823, -64], [-823, -63], [-824, -63], [-824, -62], [-825, -62], [-825, -61], [-833, -61]], "251-258": [[-832, -62], [-832, -64], [-833, -64], [-833, -68], [-833, -69], [-832, -69], [-832, -70], [-831, -70], [-831, -71], [-830, -71], [-830, -72], [-824, -72], [-823, -72], [-823, -71], [-822, -71], [-822, -70], [-821, -70], [-821, -68], [-821, -67], [-822, -67], [-822, -66], [-822, -65], [-822, -64], [-823, -64], [-823, -63], [-824, -63], [-824, -62], [-825, -62], [-825, -61], [-832, -61]]}, "center": {"195-258": [-827, -67], "251-258": [-827, -67]}}, -{"id": 2817, "name": "H wallpaper", "description": "A repeating pattern of coloured Hs.", "links": {"subreddit": ["TheLetterH"], "discord": ["efKCpuA"]}, "path": {"250-258": [[-1412, 202], [-1408, 202], [-1406, 205], [-1399, 206], [-1397, 209], [-1406, 216], [-1407, 221], [-1408, 223], [-1426, 223], [-1429, 219], [-1425, 220], [-1424, 221], [-1422, 220], [-1420, 217], [-1420, 212], [-1418, 215], [-1418, 217], [-1415, 216], [-1414, 214], [-1412, 212], [-1415, 210], [-1416, 206]]}, "center": {"250-258": [-1407, 210]}}, -{"id": 2818, "name": "Morbius poster", "description": "A small recreation of the poster of the Morbius (2022) movie made by the Morbheads from subreddit and Morbius place discord server. As you can see it's the best art here #MorbiusSweep", "links": {"subreddit": ["Morbius"], "discord": ["RKQEsMhD"]}, "path": {"249-258": [[-970, -970], [-970, -984], [-980, -984], [-979, -968], [-969, -968]]}, "center": {"249-258": [-975, -979]}}, -{"id": 2819, "name": "Vips Community Aquino", "description": "a small aquino vip community on twitch on our non-public discord server, they did this as a tribute to their server representation", "links": {}, "path": {"223-258": [[-1153, 311], [-1153, 319], [-1156, 322], [-1147, 331], [-1139, 322], [-1132, 322], [-1123, 331], [-1114, 322], [-1118, 317], [-1118, 316], [-1120, 316], [-1120, 309], [-1153, 309], [-1153, 313], [-1153, 319]]}, "center": {"223-258": [-1145, 318]}}, -{"id": 2820, "name": "Teminite", "description": "Teminite is a British musical artist who primarily makes dubstep music, but might sometimes delve into different genres as well. He's a taught jazz musician and plays his saxophone and keyboard in many of his songs.\n\nThis artwork was made by the community of Teminite, primarily members of his Discord server.", "links": {"website": ["https://www.youtube.com/@TeminiteMusic"], "subreddit": ["Teminite"], "discord": ["Ht5VT4s"]}, "path": {"230-258": [[-1208, 167], [-1183, 167], [-1183, 169], [-1184, 169], [-1184, 170], [-1185, 170], [-1185, 171], [-1186, 171], [-1186, 172], [-1193, 172], [-1193, 186], [-1194, 186], [-1194, 187], [-1195, 187], [-1195, 188], [-1196, 188], [-1196, 189], [-1198, 189], [-1198, 172], [-1205, 172], [-1205, 171], [-1206, 171], [-1206, 170], [-1207, 170], [-1207, 169], [-1208, 169]]}, "center": {"230-258": [-1195, 170]}}, -{"id": 2821, "name": "Azulejos", "description": "A background pattern of azulejo (typical Portuguese tiles). It was created as a mark of self-determination by a rebel faction from Portugal, composed mostly of veteran artists from previous years of r/place who were unsatisfied by edits to their artworks by the Discord mods and Twitch streamers leading the main Portuguese art. This project was done in a collaboration effort with r/hatsune, r/metallica and r/pizzatower.", "links": {"subreddit": ["Place_PT"], "discord": ["NcbkxWmUAy"]}, "path": {"248-258": [[-927, -235], [-930, -235], [-930, -236], [-937, -236], [-937, -237], [-939, -237], [-939, -240], [-936, -240], [-935, -241], [-935, -243], [-937, -245], [-939, -246], [-941, -246], [-941, -249], [-927, -249], [-924, -253], [-905, -253], [-902, -250], [-902, -249], [-885, -249], [-885, -243], [-889, -243], [-890, -241], [-890, -240], [-889, -239], [-889, -234], [-890, -234], [-891, -233], [-891, -232], [-890, -231], [-889, -231], [-889, -227], [-897, -227], [-893, -231], [-892, -231], [-892, -233], [-891, -234], [-890, -235], [-890, -237], [-891, -238], [-895, -242], [-897, -242], [-899, -240], [-901, -242], [-902, -242], [-902, -250], [-905, -253], [-924, -253], [-927, -250]]}, "center": {"248-258": [-931, -244]}}, -{"id": 2822, "name": "Fearless (TV)", "description": "Fearless (Taylor's Version) is the first re-recorded album by American singer-songwriter Taylor Swift, released on April 9th, 2021.", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"221-258": [[1301, -622], [1301, -610], [1326, -610], [1326, -622]]}, "center": {"221-258": [1314, -616]}}, -{"id": 2823, "name": "Girls' Last Tour Chito and Yuuri", "description": "The two main characters from the anime Girls' Last Tour", "links": {"subreddit": ["GirlsLastTour"]}, "path": {"220-258": [[1448, -958], [1473, -958], [1473, -944], [1447, -941]]}, "center": {"220-258": [1456, -950]}}, -{"id": 2824, "name": "JulietteHeart", "description": "Julietteheart is an emote from a game called omega strikers. The emote is one of the first emotes you obtain in the game and is used regularly to be friendly to teammates.", "links": {"website": ["https://omegastrikers.fandom.com/wiki/Emoticons"], "subreddit": ["OmegaStrikers"], "discord": ["omegastrikers"]}, "path": {"249-258": [[-69, -762], [-53, -762], [-53, -773], [-69, -773]]}, "center": {"249-258": [-61, -767]}}, -{"id": 2825, "name": "Ooarai Girls' Academy emblem", "description": "emblem of the ooarai Sensha-dō team from the anime girls und panzer", "links": {"website": ["https://gup.fandom.com/wiki/Girls_und_Panzer_Wiki", "https://girls-und-panzer.jp"], "subreddit": ["GIRLSundPANZER"], "discord": ["NznfP5B"]}, "path": {"248-258": [[-1207, 19], [-1208, 41], [-1181, 41], [-1181, 19], [-1187, 19], [-1187, 15], [-1202, 14], [-1202, 19]]}, "center": {"248-258": [-1194, 29]}}, -{"id": 2826, "name": "SoniiSalute", "description": "SoniiSalute is an emote from a game called Omega Strikers. This emote is of the vTuber of the developer Sonii, who does videos announcing the game's patches on their YouTube channel. This emote is only given to significant players, such as those who win art contests, tournaments, or are overall friendly and active in the community.", "links": {"website": ["https://omegastrikers.fandom.com/wiki/Emoticons"], "subreddit": ["OmegaStrikers"], "discord": ["omegastrikers"]}, "path": {"248-258": [[-69, -746], [-53, -746], [-53, -761], [-69, -761]]}, "center": {"248-258": [-61, -753]}}, -{"id": 2827, "name": "Arzach, Jean Giraud", "description": "Arzach is a science fiction comic book by French author Mœbius dated 1975 and 1976 in the magazine Métal hurlant, before appearing in Humanoides Associés in 1976. The character made his comeback in 2009 with Arzak, l'Arpenteur (Destination Tassili).\n\nArzach is a hero riding a \"Pteroid\" on a planet where an endless desert stretches.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"216-258": [[1025, -289], [1044, -293], [1057, -296], [1070, -296], [1071, -300], [1072, -300], [1076, -293], [1079, -280], [1090, -276], [1095, -277], [1105, -277], [1117, -273], [1133, -264], [1132, -262], [1106, -272], [1100, -271], [1109, -264], [1109, -260], [1108, -257], [1094, -247], [1074, -250], [1063, -252], [1054, -258], [1050, -256], [1050, -259], [1047, -260], [1046, -263], [1045, -269], [1049, -270], [1046, -278], [1038, -284], [1037, -287]]}, "center": {"216-258": [1066, -270]}}, -{"id": 2828, "name": "Genderqueer Flag", "description": "Genderqueer and non-binary pride flag by Marilyn Roxie from 2011.\n\nThe meaning of each stripe: lavender = androgyny & queerness, white = agender, green = outside the gender binary", "links": {"website": ["https://genderqueerid.com/about-flag"], "subreddit": ["genderqueer"]}, "path": {"249-258": [[276, 33], [280, 33], [280, 35], [276, 35]]}, "center": {"249-258": [278, 34]}}, -{"id": 2829, "name": "French Cleaning Team", "description": "Mr Clean (Monsieur Propre in French) is the symbol of the French Cleaning Team, a group dedicated to safeguarding the first flag and its diverse artworks from any potential attacks.\n\nMr. Clean is a fictional character, recurring hero of a series of cleaning products from the company Procter & Gamble.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"248-258": [[-401, 122], [-400, 132], [-398, 138], [-369, 130], [-369, 117], [-375, 114], [-379, 114], [-379, 106], [-377, 103], [-378, 97], [-382, 92], [-390, 92], [-393, 97], [-394, 102], [-392, 108], [-393, 114], [-398, 117], [-400, 119]]}, "center": {"248-258": [-386, 123]}}, -{"id": 2830, "name": "Lascaux", "description": "The Lascaux cave, located in the commune of Montignac-Lascaux, in the French department of Dordogne in the Nouvelle-Aquitaine region, in the Vézère valley, is one of the most important decorated caves of the Upper Paleolithic by the number and aesthetic quality of its works. It is sometimes nicknamed \"the Sistine Chapel of parietal art\".\n\nThe paintings and engravings that it contains could not be the subject of precise direct dating: their age is estimated between approximately 19,000 and 17,000 years from dating and studies carried out on the objects discovered in the cave. Most prehistorians attribute them to the Early Magdalenian, except for a few who lean more towards the Solutrean which precedes it, or even the Gravettian4. A 2019 study reveals that measurements made on numerous bone fragments scattered in the cave would indicate that they date from 21,000 to 21,500 cal years AP, which corresponds to the transition from Badegoulian to Magdalenian.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"210-258": [[1002, -342], [1029, -344], [1036, -359], [1043, -366], [1011, -366], [1001, -362], [1001, -350], [1004, -346]]}, "center": {"210-258": [1014, -355]}}, -{"id": 2831, "name": "Nimona", "description": "Nimona is a fantasy graphic novel by ND Stevenson and animated film released by Netflix. It follows a shapeshifting teen who teams up with a knight framed for the murder of the queen. The franchise has a strong LGBTQ+ influence and following.", "links": {"subreddit": ["nimona"]}, "path": {"249-258": [[1468, 55], [1467, 56], [1466, 57], [1465, 58], [1464, 59], [1463, 60], [1462, 61], [1461, 62], [1459, 63], [1459, 69], [1462, 71], [1462, 74], [1464, 77], [1464, 85], [1496, 85], [1496, 77], [1499, 76], [1499, 61], [1498, 60], [1497, 59], [1496, 58], [1494, 56], [1492, 57], [1490, 58], [1489, 59], [1488, 60], [1487, 62], [1486, 63], [1485, 63], [1485, 59], [1486, 59], [1486, 58], [1485, 57], [1485, 56], [1483, 55], [1477, 55], [1476, 56], [1476, 57], [1475, 58], [1475, 59], [1476, 60], [1476, 62], [1475, 62], [1474, 62], [1473, 61], [1472, 60], [1471, 59], [1470, 58], [1469, 57]]}, "center": {"249-258": [1479, 73]}}, -{"id": 2832, "name": "BagheraJones and Pomme", "description": "From the QSMP Minecraft Serveur featuring the streameur BagheraJones with Pomme", "links": {"subreddit": ["placeFR", "Bagherajones", "Qsmp", "placeCH", "france"], "discord": ["placeFR"]}, "path": {"209-258": [[1139, -181], [1203, -181], [1203, -234], [1139, -234]]}, "center": {"209-258": [1171, -207]}}, -{"id": 2833, "name": "white Vaporeon", "description": "It is a Vaporeon CopyPasta where reference is made to having sexual fantasies with said pokemon until it turns white for the act.\n\nOn April 4, 2019, Reddit user SmootheKettle posted a screenshot of the copypasta to the /r/unwholesomememes subreddit.\n\n\"Hey guys, did you know that in terms of male human and female Pokémon breeding, Vaporeon is the most compatible Pokémon for humans? Not only are they in the field egg group, which is mostly comprised of mammals, Vaporeon are an average of 3\"03' tall and 63.9 pounds. this means they're large enough to be able to handle human dicks, and with their impressive Base Stats for HP and access to Acid Armor, you can be rough with one. Due to their mostly water based biology, there's no doubt in my mind that an aroused Vaporeon would be incredibly wet, so wet that you could easily have sex with one for hours without getting sore. They can also learn the moves Attract, Baby-Doll Eyes, Captivate, Charm, and Tail Whip, along with not having fur to hide nipples, so it'd be incredibly easy for one to get you in the mood. With their abilities Water Absorb and Hydration, they can easily recover from fatigue with enough water. No other Pokémon comes close to this level of compatibility. Also, fun fact, if you pull out enough, you can make your Vaporeon turn white\".", "links": {}, "path": {"249-258": [[-1198, 348], [-1195, 352], [-1189, 355], [-1187, 355], [-1187, 351], [-1190, 346], [-1187, 337], [-1189, 336], [-1195, 340], [-1199, 343], [-1201, 339], [-1194, 334], [-1191, 329], [-1194, 324], [-1192, 319], [-1198, 319], [-1200, 315], [-1203, 314], [-1204, 311], [-1209, 314], [-1211, 320], [-1213, 320], [-1216, 318], [-1219, 319], [-1218, 325], [-1217, 326], [-1219, 327], [-1219, 331], [-1218, 333], [-1216, 333], [-1216, 337], [-1222, 340], [-1230, 346], [-1231, 349], [-1231, 357], [-1227, 360], [-1221, 362], [-1215, 361], [-1209, 359], [-1202, 352], [-1198, 347]]}, "center": {"249-258": [-1215, 349]}}, -{"id": 2834, "name": "Titanic & Titan submersible", "description": "Titanic, a luxurious British passenger liner that tragically sank in 1912 after colliding with an iceberg, claiming over 1,500 lives. It lies till this day at the bottom of the North Atlantic Ocean with its new companion Titan, a submersible created by OceanGate, after an incident which caused its implosion on 18 June 2023, killing all 5 passengers on board.", "links": {"subreddit": ["titanic"]}, "path": {"200-253": [[750, 971], [750, 974], [743, 974], [743, 975], [744, 975], [744, 976], [745, 977], [747, 977], [747, 978], [750, 978], [750, 980], [749, 980], [758, 980], [758, 981], [757, 981], [757, 982], [756, 982], [756, 983], [755, 983], [755, 984], [754, 984], [754, 985], [746, 985], [745, 985], [745, 983], [744, 983], [743, 985], [744, 985], [744, 986], [744, 987], [745, 987], [745, 988], [746, 988], [746, 989], [747, 989], [747, 990], [748, 990], [748, 991], [750, 991], [750, 992], [756, 992], [756, 993], [762, 993], [762, 994], [785, 994], [785, 993], [791, 993], [791, 992], [799, 992], [799, 991], [801, 991], [801, 990], [802, 990], [802, 989], [803, 989], [803, 988], [804, 988], [804, 987], [805, 987], [805, 985], [798, 985], [797, 984], [796, 984], [796, 983], [795, 983], [795, 982], [794, 982], [794, 981], [794, 980], [795, 980], [795, 978], [791, 978], [791, 977], [790, 978], [784, 978], [784, 974], [773, 974], [773, 975], [772, 975], [772, 976], [771, 976], [771, 977], [770, 977], [770, 978], [759, 978], [759, 977], [758, 977], [758, 975], [757, 975], [757, 974], [750, 974], [750, 971], [751, 971]]}, "center": {"200-253": [777, 984]}}, -{"id": 2835, "name": "Ooarai Girl's Academy Logo", "description": "Ooarai school logo from the anime: Girls Und Panzers.", "links": {"subreddit": ["GIRLSundPANZER"]}, "path": {"249-258": [[-1202, 14], [-1187, 14], [-1187, 19], [-1181, 19], [-1181, 41], [-1208, 41], [-1208, 19], [-1202, 19]]}, "center": {"249-258": [-1194, 28]}}, -{"id": 2836, "name": "Choncc", "description": "The famous Twitch Cat of the German Streamer Feedeline and the owner of his own compilation", "links": {"website": ["https://www.twitch.tv/feedeline"]}, "path": {"243-258": [[-716, -283], [-722, -278], [-720, -275], [-720, -271], [-723, -270], [-719, -270], [-719, -266], [-717, -263], [-713, -259], [-703, -259], [-703, -267], [-705, -267], [-705, -275], [-706, -284], [-709, -286], [-712, -285]]}, "center": {"243-258": [-713, -276]}}, -{"id": 2837, "name": "Aguardiente Antioqueño", "description": "Aguardiente Antioqueño is a dry brandy produced by the Fábrica de Licores de Antioquia (FLA) with three variants: blue lid, red lid and green lid. It has an aniseed aroma, transparent color and can be taken mixed or alone. It is distilled from molasses, honey and cane sugar.1\n\nIt is one of the liquors with the greatest international projection in Colombia. It is exported to Canada, Spain, the United States, Mexico or the United Kingdom, among others, in glass or plastic bottle format, or in tetrabrick.", "links": {}, "path": {"248-258": [[-912, 864], [-906, 864], [-906, 872], [-902, 874], [-902, 879], [-903, 882], [-902, 886], [-904, 890], [-916, 890], [-917, 888], [-916, 884], [-916, 882], [-917, 879], [-917, 875], [-911, 872]]}, "center": {"248-258": [-909, 879]}}, -{"id": 2838, "name": "Elaina The Wandering Witch", "description": "The protagonist of Majo no tabitabi, a Japanese light novel written by Shiraishi Jōgi. \nShe is a young witch wandering around the world.", "links": {"website": ["https://ga.sbcr.jp/sp/tabitabi/index.html"], "subreddit": ["majonotabitabi"], "discord": ["majotabi", "QZ8HWfvp"]}, "path": {"249-258": [[-1466, 170], [-1441, 170], [-1441, 198], [-1466, 198]]}, "center": {"249-258": [-1453, 184]}}, -{"id": 2839, "name": "EineLotta", "description": "EineLotta, short Lotta is a German VTuber and Voice Actor. \nShe is a 21 year old Hylian streaming on Twitch in German and English.\nShe was added close to the end destroying other people's art. Lotta is shedding a single tear out of guilt.", "links": {"website": ["https://www.twitch.tv/einelotta", "https://www.youtube.com/@EineLotta", "https://www.tiktok.com/@einelotta", "https://twitter.com/EineLotta", "https://www.instagram.com/einelotta"], "discord": ["rChqnpM"]}, "path": {"245-258": [[-774, -286], [-779, -286], [-779, -284], [-781, -284], [-781, -285], [-787, -285], [-787, -284], [-789, -284], [-789, -286], [-794, -286], [-794, -281], [-792, -281], [-792, -280], [-793, -280], [-793, -270], [-792, -270], [-792, -269], [-775, -269], [-775, -270], [-774, -270], [-774, -280], [-775, -280], [-775, -281], [-776, -281], [-774, -281]]}, "center": {"245-258": [-784, -277]}}, -{"id": 2840, "name": "AAALSOB", "description": "Emote from famous German GTA RP Twitch streamer", "links": {}, "path": {"244-245": [[155, -734], [155, -715], [170, -715], [173, -718], [185, -721], [187, -724], [178, -724], [177, -727], [185, -734], [183, -735], [183, -737], [185, -737], [186, -739], [186, -741], [183, -747], [178, -743], [176, -741], [176, -747], [173, -747], [173, -741], [169, -747], [168, -747], [164, -739], [160, -747], [159, -747], [155, -739], [155, -736], [179, -736], [179, -734]], "246-258": [[170, -714], [173, -718], [182, -720], [186, -723], [186, -724], [176, -724], [176, -725], [184, -734], [183, -735], [183, -737], [186, -739], [186, -741], [183, -747], [178, -743], [178, -741], [179, -740], [176, -739], [176, -747], [174, -747], [172, -742], [169, -747], [168, -747], [164, -739], [160, -747], [159, -747], [155, -739], [151, -747], [150, -747], [146, -739], [142, -747], [141, -747], [137, -739], [137, -737], [138, -736], [179, -736], [179, -734], [134, -734], [134, -714]]}, "center": {"244-245": [165, -725], "246-258": [158, -724]}}, -{"id": 2841, "name": "Owl City", "description": "Owl City is one of the several music projects created by singer, songwriter and multi-instrumentalist Adam Young. The artwork shown is based on the official Owl City emblem revealed by Adam in 2022, preceding the announcement of his latest comeback after 5 years. The color scheme is based on the cover art for the Ultraviolet EP released in 2014.", "links": {"website": ["https://owlcitymusic.com"], "subreddit": ["OWLCITY"], "discord": ["owlcity"]}, "path": {"249-258": [[1465, 97], [1479, 97], [1479, 112], [1465, 112]]}, "center": {"249-258": [1472, 105]}}, -{"id": 2842, "name": "Magpie", "description": "Magpie from the \"C'est une pie, enculé\" french meme.", "links": {"subreddit": ["cestunepieencule", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"249-258": [[-411, 415], [-406, 411], [-401, 411], [-400, 413], [-400, 418], [-403, 419], [-411, 419]]}, "center": {"249-258": [-405, 415]}}, -{"id": 2843, "name": "Protogen", "description": "A protogen from r/protogen, in alliance with the boykisser.", "links": {"subreddit": ["protogen"]}, "path": {"210-258": [[-1081, 232], [-1076, 228], [-1080, 227], [-1082, 225], [-1081, 224], [-1073, 217], [-1076, 214], [-1079, 217], [-1080, 216], [-1076, 213], [-1072, 216], [-1070, 216], [-1066, 214], [-1066, 218], [-1065, 223], [-1064, 225], [-1062, 227], [-1069, 227], [-1077, 232], [-1080, 237], [-1082, 233]]}, "center": {"210-258": [-1070, 222]}}, -{"id": 2844, "name": "AlzheimersGroup comic strip", "description": "Running joke in r/alzheimersgroup is to post the same Garfield comic, repeatedly. This is a simple representation of the original comic.", "links": {"subreddit": ["AlzheimersGroupBackup", "AlzheimersGroup"]}, "path": {"249-258": [[1469, -20], [1480, -20], [1480, -18], [1479, -17], [1478, -16], [1478, -14], [1469, -14]]}, "center": {"249-258": [1475, -17]}}, -{"id": 2845, "name": "Circuit Bugatti", "description": "Built in 1965, the Circuit Bugatti is a race track located in Le Mans, and hosts the 24 hours of Le Mans every year. It's also the host track of the GP Explorer. \n\nThe art shows the layout of the track.", "links": {"website": ["https://www.lemansdriver.fr/circuits/circuit-bugatti/"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"16-60": [[-470, 49], [-470, 61], [-447, 61], [-447, 49], [-469, 49]], "61-258": [[-470, 61], [-470, 73], [-447, 73], [-447, 61]]}, "center": {"16-60": [-458, 55], "61-258": [-458, 67]}}, -{"id": 2846, "name": "Gurki", "description": "Gurki is a smoking and beer drinking cucumber, which was adopted by the streamer Staiy, the Sidekick of Dekarldent", "links": {}, "path": {"249-258": [[308, -630], [308, -611], [321, -611], [322, -623], [314, -630]]}, "center": {"249-258": [315, -620]}}, -{"id": 2847, "name": "Puffle", "description": "Puffles were creatures from the Club Penguin virtual world, which was shut down in 2017. Players could adopt and take care of them.", "links": {"website": ["https://clubpenguin.fandom.com/wiki/Puffle"], "subreddit": ["clubpenguin"], "discord": ["E2CqWpyTrk"]}, "path": {"210-258": [[-487, 863], [-497, 863], [-498, 861], [-498, 859], [-499, 857], [-498, 852], [-496, 852], [-495, 851], [-492, 851], [-490, 852], [-489, 853], [-488, 854], [-487, 856], [-486, 857], [-486, 856], [-486, 858], [-486, 859], [-486, 860], [-486, 861]]}, "center": {"210-258": [-493, 857]}}, -{"id": 2848, "name": "Diego Armando Maradona", "description": "Diego Armando Maradona (1960–2020) was an Argentine professional footballer who is widely regarded as one of the greatest football players of all time. He was famous for his technical skills, creativity, and dribbling ability, as well as his ability to create scoring opportunities for himself and others.", "links": {}, "path": {"249-258": [[1062, 985], [1062, 983], [1063, 983], [1063, 979], [1062, 978], [1061, 977], [1060, 976], [1056, 977], [1053, 975], [1052, 972], [1053, 969], [1058, 967], [1060, 967], [1062, 969], [1064, 968], [1065, 967], [1065, 965], [1061, 965], [1057, 965], [1057, 961], [1057, 958], [1056, 955], [1058, 954], [1060, 954], [1064, 957], [1065, 956], [1063, 955], [1063, 953], [1063, 950], [1064, 947], [1074, 947], [1074, 948], [1075, 949], [1075, 951], [1075, 954], [1076, 954], [1076, 955], [1076, 956], [1074, 956], [1077, 957], [1081, 957], [1082, 957], [1082, 958], [1083, 959], [1083, 961], [1082, 961], [1082, 962], [1081, 962], [1080, 962], [1080, 961], [1077, 961], [1077, 969], [1078, 969], [1078, 975], [1079, 975], [1079, 976], [1080, 976], [1081, 976], [1081, 977], [1083, 977], [1083, 978], [1084, 978], [1084, 979], [1085, 979], [1086, 980], [1086, 985], [1083, 985], [1083, 983], [1082, 983], [1082, 982], [1080, 982], [1074, 977], [1071, 977], [1068, 974], [1066, 975], [1069, 978], [1070, 979], [1070, 981], [1070, 982], [1069, 983], [1068, 984], [1065, 985]]}, "center": {"249-258": [1070, 962]}}, -{"id": 2849, "name": "Paramore Band", "description": "Paramore is an American rock band from Franklin, Tennessee, formed in 2004", "links": {"website": ["https://www.paramore.net/"], "subreddit": ["Paramore"]}, "path": {"249-258": [[1229, -798], [1269, -798], [1269, -793], [1264, -793], [1264, -790], [1228, -790], [1228, -798], [1230, -798]]}, "center": {"249-258": [1248, -794]}}, -{"id": 2850, "name": "Kaamelott logo", "description": "Kaamelott is a French comedy medieval fantasy television series based on the Arthurian legends. It is widely regarded as one of the best, most iconic, and most popular French TV series of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Kaamelott"]}, "path": {"72-258": [[-425, 192], [-430, 195], [-433, 197], [-433, 207], [-428, 214], [-421, 216], [-413, 214], [-409, 208], [-408, 200], [-411, 194], [-415, 191], [-421, 190], [-428, 193], [-433, 196]]}, "center": {"72-258": [-421, 203]}}, +{"id": 2801, "name": "Suavementedorf", "description": "Gannondorf, as seen in terminalmontage's \"something about\" series, is depicted multiple times singing the song \"suavemente\", he both speaks and sings in a TTS voice. The art was first petitioned by r/zeldamemes but has sense been added onto by both the Zelda and TM communities", "links": {"subreddit": ["zeldamemes"]}, "path": {"247-258, T": [[-1246, 503], [-1287, 503], [-1296, 503], [-1296, 500], [-1295, 495], [-1291, 495], [-1290, 491], [-1291, 487], [-1291, 482], [-1300, 482], [-1303, 481], [-1291, 483], [-1290, 481], [-1293, 481], [-1298, 481], [-1302, 480], [-1297, 479], [-1295, 477], [-1291, 474], [-1290, 471], [-1289, 465], [-1287, 459], [-1282, 457], [-1281, 455], [-1277, 455], [-1274, 454], [-1270, 454], [-1265, 455], [-1261, 454]]}, "center": {"247-258, T": [-1271, 484]}}, +{"id": 2802, "name": "VR Class Sm3 (Pendolino)", "description": "The Class Sm3 is a class of high speed train, that tilts to enable higher operating speeds.\nIt is a member of the Pendolino train family, based on the Italian ETR460, which was the first train to use the tilting technology.", "links": {"website": ["https://en.wikipedia.org/wiki/VR_Class_Sm3"]}, "path": {"247-258, T": [[-389, -372], [-390, -373], [-390, -377], [-389, -378], [-388, -379], [-387, -380], [-386, -381], [-385, -382], [-384, -383], [-383, -384], [-382, -385], [-381, -385], [-380, -386], [-377, -386], [-376, -387], [-363, -387], [-362, -387], [-362, -388], [-339, -388], [-339, -387], [-311, -387], [-281, -387], [-280, -387], [-280, -388], [-257, -388], [-257, -387], [-243, -387], [-243, -386], [-239, -386], [-239, -385], [-237, -385], [-237, -384], [-236, -384], [-236, -383], [-235, -383], [-235, -382], [-234, -382], [-234, -381], [-233, -381], [-233, -380], [-232, -380], [-232, -379], [-231, -379], [-231, -378], [-230, -377], [-229, -377], [-229, -373], [-230, -373], [-230, -372], [-231, -372], [-231, -371], [-234, -371], [-234, -372], [-233, -372], [-233, -373], [-233, -378], [-234, -378], [-234, -379], [-235, -379], [-235, -381], [-236, -381], [-236, -382], [-237, -382], [-237, -383], [-239, -383], [-239, -384], [-243, -384], [-243, -385], [-255, -385], [-255, -384], [-256, -384], [-257, -384], [-257, -383], [-258, -383], [-258, -382], [-259, -382], [-261, -382], [-261, -381], [-261, -378], [-262, -378], [-262, -376], [-264, -376], [-264, -378], [-265, -378], [-265, -379], [-266, -379], [-266, -380], [-267, -380], [-267, -381], [-268, -381], [-268, -382], [-269, -382], [-269, -383], [-272, -383], [-272, -384], [-277, -384], [-277, -383], [-281, -383], [-281, -382], [-284, -382], [-284, -381], [-285, -381], [-285, -380], [-286, -380], [-286, -378], [-287, -378], [-287, -371], [-388, -371]]}, "center": {"247-258, T": [-347, -379]}}, +{"id": 2803, "name": "TGM - Technologisches Gewerbemuseum", "description": "The TGM is a technical school, located in Vienna, Austria. \n\nIt is the biggest school in Vienna and one of the best choices to learn a variety of things, including Computer Science, Electrical Engineering, Mechanical Engineering and a lot more!", "links": {"website": ["https://www.tgm.ac.at/"], "subreddit": ["tgmmemes"]}, "path": {"247-258, T": [[-1500, -368], [-1479, -368], [-1479, -355], [-1500, -355]]}, "center": {"247-258, T": [-1489, -361]}}, +{"id": 2804, "name": "DLRG", "description": "The German Life Saving Association (German: Deutsche Lebens-Rettungs-Gesellschaft or DLRG) is a relief organization for life saving in Germany. The DLRG is the largest voluntary lifesaving organization in the world.\n\nThe most urgent goal of the DLRG is the creation and promotion of all activities used to fight drowning.", "links": {"website": ["https://www.dlrg.de/"], "subreddit": ["placede"]}, "path": {"246-258, T": [[1016, -429], [1016, -425], [1017, -425], [1017, -424], [1018, -424], [1018, -423], [1019, -423], [1019, -422], [1020, -422], [1020, -421], [1021, -421], [1021, -420], [1024, -420], [1024, -419], [1025, -419], [1025, -418], [1026, -418], [1026, -417], [1027, -417], [1028, -417], [1028, -416], [1031, -416], [1031, -415], [1033, -415], [1033, -414], [1058, -414], [1058, -415], [1060, -415], [1060, -416], [1062, -416], [1062, -417], [1063, -417], [1063, -418], [1064, -418], [1064, -419], [1065, -419], [1065, -420], [1066, -420], [1066, -422], [1067, -422], [1067, -423], [1069, -423], [1070, -423], [1070, -422], [1071, -422], [1071, -421], [1072, -421], [1072, -420], [1073, -420], [1073, -419], [1073, -418], [1072, -418], [1072, -417], [1071, -417], [1071, -416], [1071, -417], [1072, -417], [1072, -418], [1073, -418], [1073, -419], [1074, -419], [1074, -420], [1075, -420], [1075, -421], [1076, -421], [1076, -422], [1077, -422], [1077, -423], [1078, -423], [1077, -423], [1077, -422], [1076, -422], [1076, -421], [1075, -421], [1074, -421], [1074, -422], [1073, -422], [1073, -423], [1072, -423], [1072, -424], [1071, -424], [1071, -425], [1071, -426], [1071, -427], [1072, -427], [1071, -427], [1071, -428], [1070, -428], [1070, -429], [1069, -429], [1069, -430], [1065, -430], [1065, -429], [1064, -429], [1064, -428], [1063, -428], [1063, -427], [1062, -427], [1061, -427], [1061, -428], [1058, -428], [1058, -436], [1057, -436], [1057, -445], [1056, -446], [1056, -450], [1054, -450], [1054, -445], [1053, -445], [1053, -436], [1052, -436], [1052, -428], [1041, -428], [1040, -428], [1040, -429], [1039, -429], [1039, -430], [1039, -431], [1039, -432], [1038, -432], [1038, -433], [1037, -433], [1037, -434], [1036, -434], [1036, -435], [1035, -435], [1035, -436], [1034, -436], [1033, -436], [1033, -435], [1032, -435], [1032, -433], [1031, -433], [1031, -429], [1022, -429], [1022, -430], [1022, -429], [1019, -429], [1019, -428], [1018, -428], [1018, -427], [1017, -427], [1017, -430], [1017, -429]]}, "center": {"246-258, T": [1035, -422]}}, +{"id": 2805, "name": "She-ra Sword of Protection / Cat <3 sign", "description": "Sword of protection from the 2018 Netflix series She-ra and the Princesses of power. \nUnder it sign reading Cat <3 in appreciation of our community leader Catshilags, who has helped the She-ra community get many allies and coordinated all of the r/place efforts this year.", "links": {"subreddit": ["PrincessesOfPower"], "discord": ["shera"]}, "path": {"247-258, T": [[-634, -150], [-634, -101], [-630, -101], [-630, -121], [-631, -121], [-631, -124], [-630, -124], [-630, -126], [-629, -127], [-629, -129], [-628, -131], [-628, -150]]}, "center": {"247-258, T": [-631, -135]}}, +{"id": 2806, "name": "Reddark", "description": "Reddark is a project that was tracking the protests against Reddit's API changes, places where they operated include: a 24/7 Twitch stream, website, Twitter account and a Discord server.", "links": {"website": ["https://reddark.untone.uk"], "discord": ["eHJNTFrkkS"]}, "path": {"248-258, T": [[167, 971], [167, 998], [193, 999], [193, 971]]}, "center": {"248-258, T": [180, 985]}}, +{"id": 2807, "name": "Amalka the Fairy", "description": "Amalka the Fairy (Víla Amálka) is a character from animated czechoslovakian television series \"Říkání o víle Amálce\" based on books by Václav Čtvrtek.", "links": {"website": ["https://www.ceskatelevize.cz/porady/898562-rikani-o-vile-amalce/"], "subreddit": ["czech"], "discord": ["Fx2AVgUc"]}, "path": {"241-258, T": [[-149, 553], [-131, 553], [-131, 579], [-149, 579]]}, "center": {"241-258, T": [-140, 566]}}, +{"id": 2808, "name": "Cheese", "description": "In the 2017 and 2022 r/place events, there were no signs of the cheese communities creating a monumental piece, so in 2023, u/Cheesus_Cakus decided to draw a piece of cheese with a small community and a newly created subreddit dedicated to this. Collaboration among cheese communities helped Cheesers complete this challenging task, represented in this piece.", "links": {"website": ["https://en.wikipedia.org/wiki/Cheese"], "subreddit": ["CheesePlace", "Cheesiarium"], "discord": ["xnFsEvt8Xg"]}, "path": {"207-258, T": [[-1396, -936], [-1396, -917], [-1392, -917], [-1392, -916], [-1384, -916], [-1383, -915], [-1376, -915], [-1375, -914], [-1368, -914], [-1367, -913], [-1360, -913], [-1359, -912], [-1352, -912], [-1351, -911], [-1348, -911], [-1348, -915], [-1349, -915], [-1349, -916], [-1350, -916], [-1350, -917], [-1351, -917], [-1351, -919], [-1350, -920], [-1349, -921], [-1348, -921], [-1348, -929], [-1349, -929], [-1350, -930], [-1351, -931], [-1352, -932], [-1353, -933], [-1354, -933], [-1355, -934], [-1356, -935], [-1357, -934], [-1359, -934], [-1360, -935], [-1361, -936], [-1361, -937], [-1360, -938], [-1361, -939], [-1362, -940], [-1363, -940], [-1364, -941], [-1365, -942], [-1366, -943], [-1367, -943], [-1368, -944], [-1369, -945], [-1370, -946], [-1371, -947], [-1372, -947], [-1373, -948], [-1374, -949], [-1375, -950], [-1382, -950], [-1382, -949], [-1385, -949], [-1386, -948], [-1388, -948], [-1388, -947], [-1389, -946], [-1390, -946], [-1391, -945], [-1392, -944], [-1393, -943], [-1393, -942], [-1394, -941], [-1394, -940], [-1395, -939], [-1395, -937], [-1396, -937]]}, "center": {"207-258, T": [-1379, -932]}}, +{"id": 2809, "name": "Kapellbrücke (Lucerne)", "description": "The Kapellbrücke (literally, Chapel Bridge) is a covered wooden footbridge spanning the river Reuss diagonally in the city of Lucerne in central Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/Kapellbr%C3%BCcke"]}, "path": {"248-258, T": [[1448, -719], [1499, -719], [1499, -753], [1497, -753], [1496, -751], [1486, -745], [1479, -747], [1474, -749], [1467, -752], [1464, -753], [1460, -752], [1455, -748], [1450, -746], [1448, -745]]}, "center": {"248-258, T": [1465, -735]}}, +{"id": 2810, "name": "Schloss Sanssouci", "description": "Sanssouci (German pronunciation: [ˈsãːsusi]) is a historical building in Potsdam, near Berlin. Built by Prussian King Frederick the Great as his summer palace, it is often counted among the German rivals of Versailles.", "links": {"subreddit": ["placede"], "discord": ["placede"]}, "path": {"247-258, T": [[-1184, -391], [-1184, -393], [-1181, -405], [-1155, -405], [-1150, -408], [-1145, -408], [-1140, -405], [-1112, -405], [-1110, -391]]}, "center": {"247-258, T": [-1147, -399]}}, +{"id": 2811, "name": "comfymiku", "description": "An emote from the r/hatsune Discord Server. The 39, while not part of the actual emote, means \"Miku\" because in Japanese, the number 3 can be read as \"mi\", and the number 9 can be read as \"ku\", making 39 mean Miku.", "links": {"subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"248-258, T": [[-1338, 102], [-1321, 102], [-1321, 119], [-1338, 119], [-1338, 96], [-1330, 96], [-1330, 102]]}, "center": {"248-258, T": [-1330, 111]}}, +{"id": 2812, "name": "Garnet and Diamond Authority Logo", "description": "Garnet, one of the main characters of the Steven Universe TV Show. The 4 + shapes to the left are the Diamond Authority logo from the show.", "links": {"subreddit": ["StevenUniverse"]}, "path": {"250-258, T": [[707, 809], [714, 804], [717, 804], [721, 808], [725, 808], [725, 813], [722, 815], [723, 821], [711, 822], [705, 824], [702, 819], [706, 812]]}, "center": {"250-258, T": [714, 814]}}, +{"id": 2813, "name": "Rotkäppchen", "description": "Rotkäppchen (Little Red Riding Hood) is a European fairy tale about a young girl and a sly wolf. Its origins can be traced back to several pre-17th century European folk tales. \n\nThe two best known versions were written by Charles Perrault and the Brothers Grimm.", "links": {"subreddit": ["placede"], "discord": ["placede"]}, "path": {"245-258, T": [[1101, -551], [1085, -551], [1085, -552], [1084, -553], [1079, -553], [1078, -554], [1075, -554], [1073, -556], [1073, -558], [1074, -559], [1075, -559], [1076, -560], [1076, -562], [1075, -563], [1075, -564], [1074, -565], [1074, -570], [1077, -573], [1077, -574], [1078, -575], [1078, -577], [1079, -578], [1079, -582], [1080, -583], [1080, -587], [1081, -588], [1082, -587], [1082, -586], [1083, -585], [1083, -583], [1085, -583], [1086, -584], [1086, -585], [1087, -586], [1087, -587], [1088, -588], [1089, -588], [1089, -583], [1090, -582], [1090, -581], [1091, -580], [1092, -580], [1094, -578], [1094, -576], [1093, -576], [1091, -574], [1090, -574], [1089, -573], [1089, -572], [1088, -571], [1090, -569], [1091, -569], [1094, -566], [1095, -566], [1096, -567], [1096, -568], [1099, -571], [1099, -572], [1096, -575], [1096, -578], [1095, -579], [1095, -585], [1096, -586], [1096, -587], [1100, -591], [1101, -591], [1102, -592], [1103, -592], [1104, -593], [1109, -593], [1114, -588], [1114, -587], [1116, -585], [1116, -583], [1118, -581], [1118, -580], [1119, -579], [1119, -577], [1117, -575], [1116, -575], [1115, -574], [1113, -574], [1112, -573], [1112, -571], [1114, -569], [1115, -569], [1116, -568], [1118, -568], [1120, -570], [1121, -569], [1121, -565], [1120, -564], [1120, -563], [1118, -561], [1117, -561], [1116, -560], [1116, -559], [1115, -558], [1115, -557], [1113, -555], [1112, -555], [1111, -554], [1108, -554], [1107, -553], [1106, -553], [1105, -552], [1102, -552]]}, "center": {"245-258, T": [1105, -582]}}, +{"id": 2814, "name": "CANSERBERO", "description": "Tirone José González Orama (March 11, 1988 – January 20, 2015), known by his stage name Canserbero, was a Venezuelan hip hop singer and songwriter. He is widely regarded as one of the best rappers in Latin America, even to this very day. RIP Legend.", "links": {"website": ["https://es.wikipedia.org/wiki/Canserbero"], "subreddit": ["vzla"], "discord": ["c2GTNR5NxK"]}, "path": {"248-258, T": [[-971, 364], [-930, 364], [-930, 321], [-964, 321]]}, "center": {"248-258, T": [-949, 345]}}, +{"id": 2815, "name": "World of Tanks Emblem", "description": "A pixelated emblem of the MMO World of Tanks by Wargaming. Thanks to one good Samaritan who collaborated with the r/GreenLattice group, the icon was represented after last year's r/place failed. o7 to you Tankers", "links": {"website": ["https://worldoftanks.com/", "https://en.wikipedia.org/wiki/World_of_Tanks"], "subreddit": ["WorldOfTanks", "WorldOfTanksBlitz"]}, "path": {"248-258, T": [[1162, -770], [1159, -767], [1159, -762], [1164, -757], [1169, -762], [1168, -769], [1165, -770]]}, "center": {"248-258, T": [1164, -764]}}, +{"id": 2816, "name": "Suedbrot - Germany's Daily Dough Delight", "description": "Behold, the bread that defies all stereotypes and unites Deutschland like never before! The Suedbrot, lovingly crafted by the Suedflagge (German Flag) Community on r/place, is not your ordinary loaf – it's the secret ingredient to Germany's unstoppable efficiency!\n\nLegend has it that every German, from Berlin to Bavaria, munches on not one, but TWO slices of Suedbrot every day. It's their super-powered fuel, granting them the ability to punctually arrive at meetings, design cars faster than lightning, and organize queues with military precision!\n\nBut what makes the Suedbrot so special? Is it infused with the essence of German engineering, or perhaps sprinkled with comedic timing? Well, no one knows for sure, but some say it's made with flour milled from Das Brandenburger Tor and water sourced from the crystal-clear springs of the Black Forest.\n\nThe Suedbrot is more than just bread – it's a symbol of unity, reminding Germans that they can accomplish anything when they come together. A bite of this delectable delight, and you'll suddenly find yourself capable of yodeling at Oktoberfest, mastering the art of small talk about the weather, and even wielding a lederhosen with enviable flair!\n\nSo next time you're in Germany, keep an eye out for the Suedbrot. But beware, it's said that if you eat three slices in a day, you'll spontaneously start waltzing with the nearest Bavarian folk dancer. Stay deliciously efficient, my friends! Prost! 🍞🥨", "links": {"website": ["https://en.wikipedia.org/wiki/Bread", "https://de.wikipedia.org/wiki/Brot"], "subreddit": ["placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"251-258": [[-832, -62], [-832, -64], [-833, -64], [-833, -68], [-833, -69], [-832, -69], [-832, -70], [-831, -70], [-831, -71], [-830, -71], [-830, -72], [-824, -72], [-823, -72], [-823, -71], [-822, -71], [-822, -70], [-821, -70], [-821, -68], [-821, -67], [-822, -67], [-822, -66], [-822, -65], [-822, -64], [-823, -64], [-823, -63], [-824, -63], [-824, -62], [-825, -62], [-825, -61], [-832, -61]], "195-258, T": [[-833, -62], [-833, -69], [-833, -70], [-831, -70], [-831, -71], [-830, -71], [-830, -72], [-824, -72], [-823, -72], [-823, -71], [-822, -71], [-822, -70], [-821, -70], [-821, -68], [-821, -67], [-822, -67], [-822, -65], [-822, -64], [-823, -64], [-823, -63], [-824, -63], [-824, -62], [-825, -62], [-825, -61], [-833, -61]]}, "center": {"251-258": [-827, -67], "195-258, T": [-827, -67]}}, +{"id": 2817, "name": "H wallpaper", "description": "A repeating pattern of coloured Hs.", "links": {"subreddit": ["TheLetterH"], "discord": ["efKCpuA"]}, "path": {"250-258, T": [[-1412, 202], [-1408, 202], [-1406, 205], [-1399, 206], [-1397, 209], [-1406, 216], [-1407, 221], [-1408, 223], [-1426, 223], [-1429, 219], [-1425, 220], [-1424, 221], [-1422, 220], [-1420, 217], [-1420, 212], [-1418, 215], [-1418, 217], [-1415, 216], [-1414, 214], [-1412, 212], [-1415, 210], [-1416, 206]]}, "center": {"250-258, T": [-1407, 210]}}, +{"id": 2818, "name": "Morbius poster", "description": "A small recreation of the poster of the Morbius (2022) movie made by the Morbheads from subreddit and Morbius place discord server. As you can see it's the best art here #MorbiusSweep", "links": {"subreddit": ["Morbius"], "discord": ["RKQEsMhD"]}, "path": {"249-258, T": [[-970, -970], [-970, -984], [-980, -984], [-979, -968], [-969, -968]]}, "center": {"249-258, T": [-975, -979]}}, +{"id": 2819, "name": "Vips Community Aquino", "description": "a small aquino vip community on twitch on our non-public discord server, they did this as a tribute to their server representation", "links": {}, "path": {"223-258, T": [[-1153, 311], [-1153, 319], [-1156, 322], [-1147, 331], [-1139, 322], [-1132, 322], [-1123, 331], [-1114, 322], [-1118, 317], [-1118, 316], [-1120, 316], [-1120, 309], [-1153, 309], [-1153, 313], [-1153, 319]]}, "center": {"223-258, T": [-1145, 318]}}, +{"id": 2820, "name": "Teminite", "description": "Teminite is a British musical artist who primarily makes dubstep music, but might sometimes delve into different genres as well. He's a taught jazz musician and plays his saxophone and keyboard in many of his songs.\n\nThis artwork was made by the community of Teminite, primarily members of his Discord server.", "links": {"website": ["https://www.youtube.com/@TeminiteMusic"], "subreddit": ["Teminite"], "discord": ["Ht5VT4s"]}, "path": {"230-258, T": [[-1208, 167], [-1183, 167], [-1183, 169], [-1184, 169], [-1184, 170], [-1185, 170], [-1185, 171], [-1186, 171], [-1186, 172], [-1193, 172], [-1193, 186], [-1194, 186], [-1194, 187], [-1195, 187], [-1195, 188], [-1196, 188], [-1196, 189], [-1198, 189], [-1198, 172], [-1205, 172], [-1205, 171], [-1206, 171], [-1206, 170], [-1207, 170], [-1207, 169], [-1208, 169]]}, "center": {"230-258, T": [-1195, 170]}}, +{"id": 2821, "name": "Azulejos", "description": "A background pattern of azulejo (typical Portuguese tiles). It was created as a mark of self-determination by a rebel faction from Portugal, composed mostly of veteran artists from previous years of r/place who were unsatisfied by edits to their artworks by the Discord mods and Twitch streamers leading the main Portuguese art. This project was done in a collaboration effort with r/hatsune, r/metallica and r/pizzatower.", "links": {"subreddit": ["Place_PT"], "discord": ["NcbkxWmUAy"]}, "path": {"248-258, T": [[-927, -235], [-930, -235], [-930, -236], [-937, -236], [-937, -237], [-939, -237], [-939, -240], [-936, -240], [-935, -241], [-935, -243], [-937, -245], [-939, -246], [-941, -246], [-941, -249], [-927, -249], [-924, -253], [-905, -253], [-902, -250], [-902, -249], [-885, -249], [-885, -243], [-889, -243], [-890, -241], [-890, -240], [-889, -239], [-889, -234], [-890, -234], [-891, -233], [-891, -232], [-890, -231], [-889, -231], [-889, -227], [-897, -227], [-893, -231], [-892, -231], [-892, -233], [-891, -234], [-890, -235], [-890, -237], [-891, -238], [-895, -242], [-897, -242], [-899, -240], [-901, -242], [-902, -242], [-902, -250], [-905, -253], [-924, -253], [-927, -250]]}, "center": {"248-258, T": [-931, -244]}}, +{"id": 2822, "name": "Fearless (TV)", "description": "Fearless (Taylor's Version) is the first re-recorded album by American singer-songwriter Taylor Swift, released on April 9th, 2021.", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"221-258, T": [[1301, -622], [1301, -610], [1326, -610], [1326, -622]]}, "center": {"221-258, T": [1314, -616]}}, +{"id": 2823, "name": "Girls' Last Tour Chito and Yuuri", "description": "The two main characters from the anime Girls' Last Tour", "links": {"subreddit": ["GirlsLastTour"]}, "path": {"220-258, T": [[1448, -958], [1473, -958], [1473, -944], [1447, -941]]}, "center": {"220-258, T": [1456, -950]}}, +{"id": 2824, "name": "JulietteHeart", "description": "Julietteheart is an emote from a game called omega strikers. The emote is one of the first emotes you obtain in the game and is used regularly to be friendly to teammates.", "links": {"website": ["https://omegastrikers.fandom.com/wiki/Emoticons"], "subreddit": ["OmegaStrikers"], "discord": ["omegastrikers"]}, "path": {"249-258, T": [[-69, -762], [-53, -762], [-53, -773], [-69, -773]]}, "center": {"249-258, T": [-61, -767]}}, +{"id": 2825, "name": "Ooarai Girls' Academy emblem", "description": "emblem of the ooarai Sensha-dō team from the anime girls und panzer", "links": {"website": ["https://gup.fandom.com/wiki/Girls_und_Panzer_Wiki", "https://girls-und-panzer.jp"], "subreddit": ["GIRLSundPANZER"], "discord": ["NznfP5B"]}, "path": {"248-258, T": [[-1207, 19], [-1208, 41], [-1181, 41], [-1181, 19], [-1187, 19], [-1187, 15], [-1202, 14], [-1202, 19]]}, "center": {"248-258, T": [-1194, 29]}}, +{"id": 2826, "name": "SoniiSalute", "description": "SoniiSalute is an emote from a game called Omega Strikers. This emote is of the vTuber of the developer Sonii, who does videos announcing the game's patches on their YouTube channel. This emote is only given to significant players, such as those who win art contests, tournaments, or are overall friendly and active in the community.", "links": {"website": ["https://omegastrikers.fandom.com/wiki/Emoticons"], "subreddit": ["OmegaStrikers"], "discord": ["omegastrikers"]}, "path": {"248-258, T": [[-69, -746], [-53, -746], [-53, -761], [-69, -761]]}, "center": {"248-258, T": [-61, -753]}}, +{"id": 2827, "name": "Arzach, Jean Giraud", "description": "Arzach is a science fiction comic book by French author Mœbius dated 1975 and 1976 in the magazine Métal hurlant, before appearing in Humanoides Associés in 1976. The character made his comeback in 2009 with Arzak, l'Arpenteur (Destination Tassili).\n\nArzach is a hero riding a \"Pteroid\" on a planet where an endless desert stretches.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"216-258, T": [[1025, -289], [1044, -293], [1057, -296], [1070, -296], [1071, -300], [1072, -300], [1076, -293], [1079, -280], [1090, -276], [1095, -277], [1105, -277], [1117, -273], [1133, -264], [1132, -262], [1106, -272], [1100, -271], [1109, -264], [1109, -260], [1108, -257], [1094, -247], [1074, -250], [1063, -252], [1054, -258], [1050, -256], [1050, -259], [1047, -260], [1046, -263], [1045, -269], [1049, -270], [1046, -278], [1038, -284], [1037, -287]]}, "center": {"216-258, T": [1066, -270]}}, +{"id": 2828, "name": "Genderqueer Flag", "description": "Genderqueer and non-binary pride flag by Marilyn Roxie from 2011.\n\nThe meaning of each stripe: lavender = androgyny & queerness, white = agender, green = outside the gender binary", "links": {"website": ["https://genderqueerid.com/about-flag"], "subreddit": ["genderqueer"]}, "path": {"249-258, T": [[276, 33], [280, 33], [280, 35], [276, 35]]}, "center": {"249-258, T": [278, 34]}}, +{"id": 2829, "name": "French Cleaning Team", "description": "Mr Clean (Monsieur Propre in French) is the symbol of the French Cleaning Team, a group dedicated to safeguarding the first flag and its diverse artworks from any potential attacks.\n\nMr. Clean is a fictional character, recurring hero of a series of cleaning products from the company Procter & Gamble.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"248-258, T": [[-401, 122], [-400, 132], [-398, 138], [-369, 130], [-369, 117], [-375, 114], [-379, 114], [-379, 106], [-377, 103], [-378, 97], [-382, 92], [-390, 92], [-393, 97], [-394, 102], [-392, 108], [-393, 114], [-398, 117], [-400, 119]]}, "center": {"248-258, T": [-386, 123]}}, +{"id": 2830, "name": "Lascaux", "description": "The Lascaux cave, located in the commune of Montignac-Lascaux, in the French department of Dordogne in the Nouvelle-Aquitaine region, in the Vézère valley, is one of the most important decorated caves of the Upper Paleolithic by the number and aesthetic quality of its works. It is sometimes nicknamed \"the Sistine Chapel of parietal art\".\n\nThe paintings and engravings that it contains could not be the subject of precise direct dating: their age is estimated between approximately 19,000 and 17,000 years from dating and studies carried out on the objects discovered in the cave. Most prehistorians attribute them to the Early Magdalenian, except for a few who lean more towards the Solutrean which precedes it, or even the Gravettian4. A 2019 study reveals that measurements made on numerous bone fragments scattered in the cave would indicate that they date from 21,000 to 21,500 cal years AP, which corresponds to the transition from Badegoulian to Magdalenian.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"210-258, T": [[1002, -342], [1029, -344], [1036, -359], [1043, -366], [1011, -366], [1001, -362], [1001, -350], [1004, -346]]}, "center": {"210-258, T": [1014, -355]}}, +{"id": 2831, "name": "Nimona", "description": "Nimona is a fantasy graphic novel by ND Stevenson and animated film released by Netflix. It follows a shapeshifting teen who teams up with a knight framed for the murder of the queen. The franchise has a strong LGBTQ+ influence and following.", "links": {"subreddit": ["nimona"]}, "path": {"249-258, T": [[1468, 55], [1467, 56], [1466, 57], [1465, 58], [1464, 59], [1463, 60], [1462, 61], [1461, 62], [1459, 63], [1459, 69], [1462, 71], [1462, 74], [1464, 77], [1464, 85], [1496, 85], [1496, 77], [1499, 76], [1499, 61], [1498, 60], [1497, 59], [1496, 58], [1494, 56], [1492, 57], [1490, 58], [1489, 59], [1488, 60], [1487, 62], [1486, 63], [1485, 63], [1485, 59], [1486, 59], [1486, 58], [1485, 57], [1485, 56], [1483, 55], [1477, 55], [1476, 56], [1476, 57], [1475, 58], [1475, 59], [1476, 60], [1476, 62], [1475, 62], [1474, 62], [1473, 61], [1472, 60], [1471, 59], [1470, 58], [1469, 57]]}, "center": {"249-258, T": [1479, 73]}}, +{"id": 2832, "name": "BagheraJones and Pomme", "description": "From the QSMP Minecraft Serveur featuring the streameur BagheraJones with Pomme", "links": {"subreddit": ["placeFR", "Bagherajones", "Qsmp", "placeCH", "france"], "discord": ["placeFR"]}, "path": {"209-258, T": [[1139, -181], [1203, -181], [1203, -234], [1139, -234]]}, "center": {"209-258, T": [1171, -207]}}, +{"id": 2833, "name": "white Vaporeon", "description": "It is a Vaporeon CopyPasta where reference is made to having sexual fantasies with said pokemon until it turns white for the act.\n\nOn April 4, 2019, Reddit user SmootheKettle posted a screenshot of the copypasta to the /r/unwholesomememes subreddit.\n\n\"Hey guys, did you know that in terms of male human and female Pokémon breeding, Vaporeon is the most compatible Pokémon for humans? Not only are they in the field egg group, which is mostly comprised of mammals, Vaporeon are an average of 3\"03' tall and 63.9 pounds. this means they're large enough to be able to handle human dicks, and with their impressive Base Stats for HP and access to Acid Armor, you can be rough with one. Due to their mostly water based biology, there's no doubt in my mind that an aroused Vaporeon would be incredibly wet, so wet that you could easily have sex with one for hours without getting sore. They can also learn the moves Attract, Baby-Doll Eyes, Captivate, Charm, and Tail Whip, along with not having fur to hide nipples, so it'd be incredibly easy for one to get you in the mood. With their abilities Water Absorb and Hydration, they can easily recover from fatigue with enough water. No other Pokémon comes close to this level of compatibility. Also, fun fact, if you pull out enough, you can make your Vaporeon turn white\".", "links": {}, "path": {"249-258, T": [[-1198, 348], [-1195, 352], [-1189, 355], [-1187, 355], [-1187, 351], [-1190, 346], [-1187, 337], [-1189, 336], [-1195, 340], [-1199, 343], [-1201, 339], [-1194, 334], [-1191, 329], [-1194, 324], [-1192, 319], [-1198, 319], [-1200, 315], [-1203, 314], [-1204, 311], [-1209, 314], [-1211, 320], [-1213, 320], [-1216, 318], [-1219, 319], [-1218, 325], [-1217, 326], [-1219, 327], [-1219, 331], [-1218, 333], [-1216, 333], [-1216, 337], [-1222, 340], [-1230, 346], [-1231, 349], [-1231, 357], [-1227, 360], [-1221, 362], [-1215, 361], [-1209, 359], [-1202, 352], [-1198, 347]]}, "center": {"249-258, T": [-1215, 349]}}, +{"id": 2834, "name": "Titanic & Titan submersible", "description": "Titanic, a luxurious British passenger liner that tragically sank in 1912 after colliding with an iceberg, claiming over 1,500 lives. It lies till this day at the bottom of the North Atlantic Ocean with its new companion Titan, a submersible created by OceanGate, after an incident which caused its implosion on 18 June 2023, killing all 5 passengers on board.", "links": {"subreddit": ["titanic"]}, "path": {"200-253, T": [[750, 971], [750, 974], [743, 974], [743, 975], [744, 975], [744, 976], [745, 977], [747, 977], [747, 978], [750, 978], [750, 980], [749, 980], [758, 980], [758, 981], [757, 981], [757, 982], [756, 982], [756, 983], [755, 983], [755, 984], [754, 984], [754, 985], [746, 985], [745, 985], [745, 983], [744, 983], [743, 985], [744, 985], [744, 986], [744, 987], [745, 987], [745, 988], [746, 988], [746, 989], [747, 989], [747, 990], [748, 990], [748, 991], [750, 991], [750, 992], [756, 992], [756, 993], [762, 993], [762, 994], [785, 994], [785, 993], [791, 993], [791, 992], [799, 992], [799, 991], [801, 991], [801, 990], [802, 990], [802, 989], [803, 989], [803, 988], [804, 988], [804, 987], [805, 987], [805, 985], [798, 985], [797, 984], [796, 984], [796, 983], [795, 983], [795, 982], [794, 982], [794, 981], [794, 980], [795, 980], [795, 978], [791, 978], [791, 977], [790, 978], [784, 978], [784, 974], [773, 974], [773, 975], [772, 975], [772, 976], [771, 976], [771, 977], [770, 977], [770, 978], [759, 978], [759, 977], [758, 977], [758, 975], [757, 975], [757, 974], [750, 974], [750, 971], [751, 971]]}, "center": {"200-253, T": [777, 984]}}, +{"id": 2835, "name": "Ooarai Girl's Academy Logo", "description": "Ooarai school logo from the anime: Girls Und Panzers.", "links": {"subreddit": ["GIRLSundPANZER"]}, "path": {"249-258, T": [[-1202, 14], [-1187, 14], [-1187, 19], [-1181, 19], [-1181, 41], [-1208, 41], [-1208, 19], [-1202, 19]]}, "center": {"249-258, T": [-1194, 28]}}, +{"id": 2836, "name": "Choncc", "description": "The famous Twitch Cat of the German Streamer Feedeline and the owner of his own compilation", "links": {"website": ["https://www.twitch.tv/feedeline"]}, "path": {"243-258, T": [[-716, -283], [-722, -278], [-720, -275], [-720, -271], [-723, -270], [-719, -270], [-719, -266], [-717, -263], [-713, -259], [-703, -259], [-703, -267], [-705, -267], [-705, -275], [-706, -284], [-709, -286], [-712, -285]]}, "center": {"243-258, T": [-713, -276]}}, +{"id": 2837, "name": "Aguardiente Antioqueño", "description": "Aguardiente Antioqueño is a dry brandy produced by the Fábrica de Licores de Antioquia (FLA) with three variants: blue lid, red lid and green lid. It has an aniseed aroma, transparent color and can be taken mixed or alone. It is distilled from molasses, honey and cane sugar.1\n\nIt is one of the liquors with the greatest international projection in Colombia. It is exported to Canada, Spain, the United States, Mexico or the United Kingdom, among others, in glass or plastic bottle format, or in tetrabrick.", "links": {}, "path": {"248-258, T": [[-912, 864], [-906, 864], [-906, 872], [-902, 874], [-902, 879], [-903, 882], [-902, 886], [-904, 890], [-916, 890], [-917, 888], [-916, 884], [-916, 882], [-917, 879], [-917, 875], [-911, 872]]}, "center": {"248-258, T": [-909, 879]}}, +{"id": 2838, "name": "Elaina The Wandering Witch", "description": "The protagonist of Majo no tabitabi, a Japanese light novel written by Shiraishi Jōgi. \nShe is a young witch wandering around the world.", "links": {"website": ["https://ga.sbcr.jp/sp/tabitabi/index.html"], "subreddit": ["majonotabitabi"], "discord": ["majotabi", "QZ8HWfvp"]}, "path": {"249-258, T": [[-1466, 170], [-1441, 170], [-1441, 198], [-1466, 198]]}, "center": {"249-258, T": [-1453, 184]}}, +{"id": 2839, "name": "EineLotta", "description": "EineLotta, short Lotta is a German VTuber and Voice Actor. \nShe is a 21 year old Hylian streaming on Twitch in German and English.\nShe was added close to the end destroying other people's art. Lotta is shedding a single tear out of guilt.", "links": {"website": ["https://www.twitch.tv/einelotta", "https://www.youtube.com/@EineLotta", "https://www.tiktok.com/@einelotta", "https://twitter.com/EineLotta", "https://www.instagram.com/einelotta"], "discord": ["rChqnpM"]}, "path": {"245-258, T": [[-774, -286], [-779, -286], [-779, -284], [-781, -284], [-781, -285], [-787, -285], [-787, -284], [-789, -284], [-789, -286], [-794, -286], [-794, -281], [-792, -281], [-792, -280], [-793, -280], [-793, -270], [-792, -270], [-792, -269], [-775, -269], [-775, -270], [-774, -270], [-774, -280], [-775, -280], [-775, -281], [-776, -281], [-774, -281]]}, "center": {"245-258, T": [-784, -277]}}, +{"id": 2840, "name": "AAALSOB", "description": "Emote from famous German GTA RP Twitch streamer", "links": {}, "path": {"244-245": [[155, -734], [155, -715], [170, -715], [173, -718], [185, -721], [187, -724], [178, -724], [177, -727], [185, -734], [183, -735], [183, -737], [185, -737], [186, -739], [186, -741], [183, -747], [178, -743], [176, -741], [176, -747], [173, -747], [173, -741], [169, -747], [168, -747], [164, -739], [160, -747], [159, -747], [155, -739], [155, -736], [179, -736], [179, -734]], "246-258, T": [[170, -714], [173, -718], [182, -720], [186, -723], [186, -724], [176, -724], [176, -725], [184, -734], [183, -735], [183, -737], [186, -739], [186, -741], [183, -747], [178, -743], [178, -741], [179, -740], [176, -739], [176, -747], [174, -747], [172, -742], [169, -747], [168, -747], [164, -739], [160, -747], [159, -747], [155, -739], [151, -747], [150, -747], [146, -739], [142, -747], [141, -747], [137, -739], [137, -737], [138, -736], [179, -736], [179, -734], [134, -734], [134, -714]]}, "center": {"244-245": [165, -725], "246-258, T": [158, -724]}}, +{"id": 2841, "name": "Owl City", "description": "Owl City is one of the several music projects created by singer, songwriter and multi-instrumentalist Adam Young. The artwork shown is based on the official Owl City emblem revealed by Adam in 2022, preceding the announcement of his latest comeback after 5 years. The color scheme is based on the cover art for the Ultraviolet EP released in 2014.", "links": {"website": ["https://owlcitymusic.com"], "subreddit": ["OWLCITY"], "discord": ["owlcity"]}, "path": {"249-258, T": [[1465, 97], [1479, 97], [1479, 112], [1465, 112]]}, "center": {"249-258, T": [1472, 105]}}, +{"id": 2842, "name": "Magpie", "description": "Magpie from the \"C'est une pie, enculé\" french meme.", "links": {"subreddit": ["cestunepieencule", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"249-258, T": [[-411, 415], [-406, 411], [-401, 411], [-400, 413], [-400, 418], [-403, 419], [-411, 419]]}, "center": {"249-258, T": [-405, 415]}}, +{"id": 2843, "name": "Protogen", "description": "A protogen from r/protogen, in alliance with the boykisser.", "links": {"subreddit": ["protogen"]}, "path": {"210-258, T": [[-1081, 232], [-1076, 228], [-1080, 227], [-1082, 225], [-1081, 224], [-1073, 217], [-1076, 214], [-1079, 217], [-1080, 216], [-1076, 213], [-1072, 216], [-1070, 216], [-1066, 214], [-1066, 218], [-1065, 223], [-1064, 225], [-1062, 227], [-1069, 227], [-1077, 232], [-1080, 237], [-1082, 233]]}, "center": {"210-258, T": [-1070, 222]}}, +{"id": 2844, "name": "AlzheimersGroup comic strip", "description": "Running joke in r/alzheimersgroup is to post the same Garfield comic, repeatedly. This is a simple representation of the original comic.", "links": {"subreddit": ["AlzheimersGroupBackup", "AlzheimersGroup"]}, "path": {"249-258, T": [[1469, -20], [1480, -20], [1480, -18], [1479, -17], [1478, -16], [1478, -14], [1469, -14]]}, "center": {"249-258, T": [1475, -17]}}, +{"id": 2845, "name": "Circuit Bugatti", "description": "Built in 1965, the Circuit Bugatti is a race track located in Le Mans, and hosts the 24 hours of Le Mans every year. It's also the host track of the GP Explorer. \n\nThe art shows the layout of the track.", "links": {"website": ["https://www.lemansdriver.fr/circuits/circuit-bugatti/"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"16-60": [[-470, 49], [-470, 61], [-447, 61], [-447, 49], [-469, 49]], "61-258, T": [[-470, 61], [-470, 73], [-447, 73], [-447, 61]]}, "center": {"16-60": [-458, 55], "61-258, T": [-458, 67]}}, +{"id": 2846, "name": "Gurki", "description": "Gurki is a smoking and beer drinking cucumber, which was adopted by the streamer Staiy, the Sidekick of Dekarldent", "links": {}, "path": {"249-258, T": [[308, -630], [308, -611], [321, -611], [322, -623], [314, -630]]}, "center": {"249-258, T": [315, -620]}}, +{"id": 2847, "name": "Puffle", "description": "Puffles were creatures from the Club Penguin virtual world, which was shut down in 2017. Players could adopt and take care of them.", "links": {"website": ["https://clubpenguin.fandom.com/wiki/Puffle"], "subreddit": ["clubpenguin"], "discord": ["E2CqWpyTrk"]}, "path": {"210-258, T": [[-487, 863], [-497, 863], [-498, 861], [-498, 859], [-499, 857], [-498, 852], [-496, 852], [-495, 851], [-492, 851], [-490, 852], [-489, 853], [-488, 854], [-487, 856], [-486, 857], [-486, 856], [-486, 858], [-486, 859], [-486, 860], [-486, 861]]}, "center": {"210-258, T": [-493, 857]}}, +{"id": 2848, "name": "Diego Armando Maradona", "description": "Diego Armando Maradona (1960–2020) was an Argentine professional footballer who is widely regarded as one of the greatest football players of all time. He was famous for his technical skills, creativity, and dribbling ability, as well as his ability to create scoring opportunities for himself and others.", "links": {}, "path": {"249-258, T": [[1062, 985], [1062, 983], [1063, 983], [1063, 979], [1062, 978], [1061, 977], [1060, 976], [1056, 977], [1053, 975], [1052, 972], [1053, 969], [1058, 967], [1060, 967], [1062, 969], [1064, 968], [1065, 967], [1065, 965], [1061, 965], [1057, 965], [1057, 961], [1057, 958], [1056, 955], [1058, 954], [1060, 954], [1064, 957], [1065, 956], [1063, 955], [1063, 953], [1063, 950], [1064, 947], [1074, 947], [1074, 948], [1075, 949], [1075, 951], [1075, 954], [1076, 954], [1076, 955], [1076, 956], [1074, 956], [1077, 957], [1081, 957], [1082, 957], [1082, 958], [1083, 959], [1083, 961], [1082, 961], [1082, 962], [1081, 962], [1080, 962], [1080, 961], [1077, 961], [1077, 969], [1078, 969], [1078, 975], [1079, 975], [1079, 976], [1080, 976], [1081, 976], [1081, 977], [1083, 977], [1083, 978], [1084, 978], [1084, 979], [1085, 979], [1086, 980], [1086, 985], [1083, 985], [1083, 983], [1082, 983], [1082, 982], [1080, 982], [1074, 977], [1071, 977], [1068, 974], [1066, 975], [1069, 978], [1070, 979], [1070, 981], [1070, 982], [1069, 983], [1068, 984], [1065, 985]]}, "center": {"249-258, T": [1070, 962]}}, +{"id": 2849, "name": "Paramore Band", "description": "Paramore is an American rock band from Franklin, Tennessee, formed in 2004", "links": {"website": ["https://www.paramore.net/"], "subreddit": ["Paramore"]}, "path": {"249-258, T": [[1229, -798], [1269, -798], [1269, -793], [1264, -793], [1264, -790], [1228, -790], [1228, -798], [1230, -798]]}, "center": {"249-258, T": [1248, -794]}}, +{"id": 2850, "name": "Kaamelott logo", "description": "Kaamelott is a French comedy medieval fantasy television series based on the Arthurian legends. It is widely regarded as one of the best, most iconic, and most popular French TV series of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Kaamelott"]}, "path": {"72-258, T": [[-425, 192], [-430, 195], [-433, 197], [-433, 207], [-428, 214], [-421, 216], [-413, 214], [-409, 208], [-408, 200], [-411, 194], [-415, 191], [-421, 190], [-428, 193], [-433, 196]]}, "center": {"72-258, T": [-421, 203]}}, {"id": 2851, "name": "TOP", "description": "Used to be \"Tape\" by a small community that took the chance to pixel on the Südflagge while they were afk.\n\nAfter the Austria Flag removed the \"E\", the Südflagge changed the \"A\" to an \"O\" to create \"TOP\"", "links": {"subreddit": ["placesuedflagge"], "discord": ["3CjBW3JSrM"]}, "path": {"213-239": [[-818, -79], [-818, -57], [-810, -57], [-810, -79]]}, "center": {"213-239": [-814, -68]}}, -{"id": 2852, "name": "Barotrauma", "description": "An artwork of the game Barotrauma with an eldritch horror dragging a Dugong submarine into the depths.", "links": {"website": ["https://barotraumagame.com/"], "subreddit": ["barotrauma"], "discord": ["kuZ6EfeSSt"]}, "path": {"203-258": [[-337, 614], [-299, 614], [-299, 633], [-337, 633]]}, "center": {"203-258": [-318, 624]}}, -{"id": 2853, "name": "Charly Garcia", "description": "A tribute from the argentinian community to Charly Garcia, an Argentine singer-songwriter, multi-instrumentalist, composer and record producer, considered one of the most important and avant-garde figures of Argentine and Latin American popular music.", "links": {"subreddit": ["placearg"], "discord": ["placearg"]}, "path": {"249-258": [[1341, 925], [1336, 932], [1322, 930], [1321, 923], [1323, 912], [1326, 910], [1325, 904], [1320, 902], [1318, 900], [1349, 899], [1345, 905], [1341, 906], [1338, 907], [1337, 908], [1340, 912], [1341, 914], [1343, 917], [1342, 922], [1337, 932], [1337, 931]]}, "center": {"249-258": [1332, 920]}}, -{"id": 2854, "name": "Clemente", "description": "Clemente is a classic fictional character from the Argentine comic strip. He was created by Caloi, one of the most important cartoonists in the history of Argentina in 1973, which was canceled in 2012. He is a caricatured platypus without arms and covered in vertical stripes that surround his body in circles.", "links": {"subreddit": ["argentina", "PlaceArg"]}, "path": {"219-258": [[1184, 999], [1183, 998], [1183, 996], [1184, 996], [1184, 995], [1185, 995], [1185, 994], [1189, 994], [1189, 995], [1190, 995], [1190, 994], [1192, 994], [1192, 988], [1190, 988], [1190, 987], [1189, 986], [1188, 985], [1188, 984], [1187, 982], [1186, 981], [1185, 982], [1184, 982], [1183, 983], [1182, 983], [1181, 983], [1180, 983], [1178, 983], [1177, 982], [1176, 982], [1175, 982], [1175, 981], [1174, 980], [1173, 974], [1174, 973], [1175, 972], [1176, 971], [1178, 970], [1181, 970], [1182, 971], [1183, 971], [1181, 969], [1181, 965], [1184, 963], [1185, 962], [1194, 962], [1194, 964], [1196, 964], [1196, 973], [1194, 973], [1193, 975], [1191, 978], [1201, 978], [1202, 984], [1202, 985], [1200, 987], [1200, 995], [1201, 998], [1201, 999]]}, "center": {"219-258": [1189, 969]}}, -{"id": 2855, "name": "Stolas Head", "description": "Stolas is a Goetic Prince of Hell and a major supporting character in Helluva Boss.", "links": {"subreddit": ["PlaceStolas"], "discord": ["zbrP6msjT5"]}, "path": {"176-258": [[-1419, 500], [-1419, 496], [-1418, 494], [-1415, 493], [-1411, 487], [-1410, 484], [-1411, 481], [-1410, 476], [-1412, 474], [-1412, 470], [-1414, 468], [-1417, 471], [-1421, 467], [-1423, 469], [-1431, 469], [-1432, 470], [-1436, 470], [-1437, 470], [-1437, 472], [-1436, 472], [-1436, 476], [-1435, 476], [-1437, 476], [-1437, 477], [-1439, 477], [-1440, 478], [-1440, 480], [-1439, 481], [-1438, 483], [-1437, 484], [-1437, 487], [-1437, 490], [-1436, 491], [-1434, 491], [-1434, 492], [-1431, 492], [-1430, 493], [-1429, 494], [-1428, 494], [-1426, 496], [-1426, 500]]}, "center": {"176-258": [-1424, 482]}}, +{"id": 2852, "name": "Barotrauma", "description": "An artwork of the game Barotrauma with an eldritch horror dragging a Dugong submarine into the depths.", "links": {"website": ["https://barotraumagame.com/"], "subreddit": ["barotrauma"], "discord": ["kuZ6EfeSSt"]}, "path": {"203-258, T": [[-337, 614], [-299, 614], [-299, 633], [-337, 633]]}, "center": {"203-258, T": [-318, 624]}}, +{"id": 2853, "name": "Charly Garcia", "description": "A tribute from the argentinian community to Charly Garcia, an Argentine singer-songwriter, multi-instrumentalist, composer and record producer, considered one of the most important and avant-garde figures of Argentine and Latin American popular music.", "links": {"subreddit": ["placearg"], "discord": ["placearg"]}, "path": {"249-258, T": [[1341, 925], [1336, 932], [1322, 930], [1321, 923], [1323, 912], [1326, 910], [1325, 904], [1320, 902], [1318, 900], [1349, 899], [1345, 905], [1341, 906], [1338, 907], [1337, 908], [1340, 912], [1341, 914], [1343, 917], [1342, 922], [1337, 932], [1337, 931]]}, "center": {"249-258, T": [1332, 920]}}, +{"id": 2854, "name": "Clemente", "description": "Clemente is a classic fictional character from the Argentine comic strip. He was created by Caloi, one of the most important cartoonists in the history of Argentina in 1973, which was canceled in 2012. He is a caricatured platypus without arms and covered in vertical stripes that surround his body in circles.", "links": {"subreddit": ["argentina", "PlaceArg"]}, "path": {"219-258, T": [[1184, 999], [1183, 998], [1183, 996], [1184, 996], [1184, 995], [1185, 995], [1185, 994], [1189, 994], [1189, 995], [1190, 995], [1190, 994], [1192, 994], [1192, 988], [1190, 988], [1190, 987], [1189, 986], [1188, 985], [1188, 984], [1187, 982], [1186, 981], [1185, 982], [1184, 982], [1183, 983], [1182, 983], [1181, 983], [1180, 983], [1178, 983], [1177, 982], [1176, 982], [1175, 982], [1175, 981], [1174, 980], [1173, 974], [1174, 973], [1175, 972], [1176, 971], [1178, 970], [1181, 970], [1182, 971], [1183, 971], [1181, 969], [1181, 965], [1184, 963], [1185, 962], [1194, 962], [1194, 964], [1196, 964], [1196, 973], [1194, 973], [1193, 975], [1191, 978], [1201, 978], [1202, 984], [1202, 985], [1200, 987], [1200, 995], [1201, 998], [1201, 999]]}, "center": {"219-258, T": [1189, 969]}}, +{"id": 2855, "name": "Stolas Head", "description": "Stolas is a Goetic Prince of Hell and a major supporting character in Helluva Boss.", "links": {"subreddit": ["PlaceStolas"], "discord": ["zbrP6msjT5"]}, "path": {"176-258, T": [[-1419, 500], [-1419, 496], [-1418, 494], [-1415, 493], [-1411, 487], [-1410, 484], [-1411, 481], [-1410, 476], [-1412, 474], [-1412, 470], [-1414, 468], [-1417, 471], [-1421, 467], [-1423, 469], [-1431, 469], [-1432, 470], [-1436, 470], [-1437, 470], [-1437, 472], [-1436, 472], [-1436, 476], [-1435, 476], [-1437, 476], [-1437, 477], [-1439, 477], [-1440, 478], [-1440, 480], [-1439, 481], [-1438, 483], [-1437, 484], [-1437, 487], [-1437, 490], [-1436, 491], [-1434, 491], [-1434, 492], [-1431, 492], [-1430, 493], [-1429, 494], [-1428, 494], [-1426, 496], [-1426, 500]]}, "center": {"176-258, T": [-1424, 482]}}, {"id": 2856, "name": "CitiesWar", "description": "A browser game based on conquering cities on Google Maps.", "links": {"website": ["https://www.citieswar.com/"], "subreddit": ["citieswar"], "discord": ["GaqU6FQ8Yp"]}, "path": {"212-215": [[1480, -797], [1480, -786], [1499, -786], [1499, -797]]}, "center": {"212-215": [1490, -791]}}, -{"id": 2857, "name": "French Loona", "description": "Loona is a character from Helluva boss. She is represented on the French Lattice because it allows small communities if they have french accessories.", "links": {"subreddit": ["PlaceLoona"], "discord": ["HWBZWsfd"]}, "path": {"249-258": [[-446, 957], [-459, 944], [-457, 939], [-461, 916], [-456, 915], [-449, 905], [-442, 898], [-426, 899], [-429, 903], [-425, 913], [-425, 916], [-425, 927], [-417, 926], [-416, 935], [-427, 948], [-436, 952], [-446, 956], [-454, 948], [-456, 942]]}, "center": {"249-258": [-440, 935]}}, -{"id": 2858, "name": "Emote of Shlorox", "description": "A demonstration of the community from shlorox defending the mexicans", "links": {}, "path": {"249-258": [[170, -715], [150, -716], [132, -714], [135, -751], [189, -748], [187, -722], [177, -714]]}, "center": {"249-258": [166, -732]}}, -{"id": 2859, "name": "Gustave from r/canardcompetitif", "description": "Gustave is the mascotte and the logo of the sub r/canardcompetitif a sub created by the famous french youtubeur TheGreatReview as an example of how reddit work for a vidéo about r/place and a bit of reddit april's fools.\nThe sub is about competition duck and duck in general and even if it have less connection with TheGreatReview it still has links with it because most of people are fan of him", "links": {"website": ["https://www.youtube.com/@TheGreatReview", "https://www.twitch.tv/thegreatreview"], "subreddit": ["canardcompetitif"], "discord": ["658NaYE8JJ"]}, "path": {"248-258": [[964, -165], [964, -137], [993, -138], [991, -166], [977, -166]]}, "center": {"248-258": [978, -151]}}, -{"id": 2860, "name": "Octavia", "description": "Octavia is a character of the Show \"Helluva Boss\". She is the daughter of \"Stolas\" which is represented nearby.", "links": {"subreddit": ["PlaceStolas"], "discord": ["jamURuJ4"]}, "path": {"249-258": [[-1105, 131], [-1105, 113], [-1113, 113], [-1114, 113], [-1114, 106], [-1113, 106], [-1113, 104], [-1112, 104], [-1112, 100], [-1111, 100], [-1111, 99], [-1110, 99], [-1110, 98], [-1109, 98], [-1109, 97], [-1107, 97], [-1107, 96], [-1104, 96], [-1104, 95], [-1103, 95], [-1103, 94], [-1102, 94], [-1102, 93], [-1098, 93], [-1097, 92], [-1092, 92], [-1092, 93], [-1089, 93], [-1089, 94], [-1088, 94], [-1087, 94], [-1087, 95], [-1086, 95], [-1086, 96], [-1085, 97], [-1084, 98], [-1083, 99], [-1084, 100], [-1084, 101], [-1083, 101], [-1083, 105], [-1080, 106], [-1081, 107], [-1082, 108], [-1083, 109], [-1084, 110], [-1085, 110], [-1086, 111], [-1086, 112], [-1085, 113], [-1085, 116], [-1091, 116], [-1091, 117], [-1091, 118], [-1093, 118], [-1094, 119], [-1095, 120], [-1096, 121], [-1098, 122], [-1098, 125], [-1099, 126], [-1099, 131]]}, "center": {"249-258": [-1096, 105]}}, -{"id": 2861, "name": "Argentina", "description": "The territory of the Argentine Republic", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"219-258": [[1047, 988], [1052, 988], [1052, 987], [1053, 987], [1053, 985], [1054, 985], [1054, 984], [1055, 984], [1058, 984], [1058, 982], [1059, 982], [1059, 981], [1060, 981], [1060, 980], [1061, 980], [1062, 979], [1098, 946], [1102, 945], [1106, 939], [1107, 939], [1108, 938], [1115, 933], [1123, 928], [1126, 927], [1135, 917], [1154, 899], [1160, 899], [1158, 902], [1178, 918], [1179, 918], [1188, 926], [1189, 932], [1186, 935], [1191, 940], [1193, 940], [1194, 942], [1202, 942], [1209, 937], [1211, 936], [1215, 939], [1212, 950], [1183, 949], [1180, 950], [1178, 953], [1177, 955], [1175, 956], [1173, 959], [1173, 967], [1166, 976], [1165, 980], [1158, 986], [1150, 986], [1136, 981], [1128, 981], [1127, 980], [1122, 980], [1114, 982], [1113, 985], [1111, 984], [1108, 985], [1103, 985], [1102, 992], [1105, 994], [1097, 994], [1096, 993], [1089, 993], [1083, 996], [1080, 999], [1047, 1000], [1047, 999]]}, "center": {"219-258": [1143, 952]}}, -{"id": 2862, "name": "ENS Bocchinoko", "description": "a collaborative Bocchi blob with ENS", "links": {"website": ["https://bocchi.rocks/"], "subreddit": ["BocchiTheRock"], "discord": ["rdf5sdyz"]}, "path": {"227-258": [[1458, 10], [1452, 12], [1452, 10], [1448, 9], [1447, 8], [1447, 22], [1466, 22], [1460, 16], [1461, 15], [1462, 14], [1463, 11], [1461, 8], [1453, 10], [1449, 11], [1451, 12], [1461, 17], [1463, 10]]}, "center": {"227-258": [1452, 17]}}, +{"id": 2857, "name": "French Loona", "description": "Loona is a character from Helluva boss. She is represented on the French Lattice because it allows small communities if they have french accessories.", "links": {"subreddit": ["PlaceLoona"], "discord": ["HWBZWsfd"]}, "path": {"249-258, T": [[-446, 957], [-459, 944], [-457, 939], [-461, 916], [-456, 915], [-449, 905], [-442, 898], [-426, 899], [-429, 903], [-425, 913], [-425, 916], [-425, 927], [-417, 926], [-416, 935], [-427, 948], [-436, 952], [-446, 956], [-454, 948], [-456, 942]]}, "center": {"249-258, T": [-440, 935]}}, +{"id": 2858, "name": "Emote of Shlorox", "description": "A demonstration of the community from shlorox defending the mexicans", "links": {}, "path": {"249-258, T": [[170, -715], [150, -716], [132, -714], [135, -751], [189, -748], [187, -722], [177, -714]]}, "center": {"249-258, T": [166, -732]}}, +{"id": 2859, "name": "Gustave from r/canardcompetitif", "description": "Gustave is the mascotte and the logo of the sub r/canardcompetitif a sub created by the famous french youtubeur TheGreatReview as an example of how reddit work for a vidéo about r/place and a bit of reddit april's fools.\nThe sub is about competition duck and duck in general and even if it have less connection with TheGreatReview it still has links with it because most of people are fan of him", "links": {"website": ["https://www.youtube.com/@TheGreatReview", "https://www.twitch.tv/thegreatreview"], "subreddit": ["canardcompetitif"], "discord": ["658NaYE8JJ"]}, "path": {"248-258, T": [[964, -165], [964, -137], [993, -138], [991, -166], [977, -166]]}, "center": {"248-258, T": [978, -151]}}, +{"id": 2860, "name": "Octavia", "description": "Octavia is a character of the Show \"Helluva Boss\". She is the daughter of \"Stolas\" which is represented nearby.", "links": {"subreddit": ["PlaceStolas"], "discord": ["jamURuJ4"]}, "path": {"249-258, T": [[-1105, 131], [-1105, 113], [-1113, 113], [-1114, 113], [-1114, 106], [-1113, 106], [-1113, 104], [-1112, 104], [-1112, 100], [-1111, 100], [-1111, 99], [-1110, 99], [-1110, 98], [-1109, 98], [-1109, 97], [-1107, 97], [-1107, 96], [-1104, 96], [-1104, 95], [-1103, 95], [-1103, 94], [-1102, 94], [-1102, 93], [-1098, 93], [-1097, 92], [-1092, 92], [-1092, 93], [-1089, 93], [-1089, 94], [-1088, 94], [-1087, 94], [-1087, 95], [-1086, 95], [-1086, 96], [-1085, 97], [-1084, 98], [-1083, 99], [-1084, 100], [-1084, 101], [-1083, 101], [-1083, 105], [-1080, 106], [-1081, 107], [-1082, 108], [-1083, 109], [-1084, 110], [-1085, 110], [-1086, 111], [-1086, 112], [-1085, 113], [-1085, 116], [-1091, 116], [-1091, 117], [-1091, 118], [-1093, 118], [-1094, 119], [-1095, 120], [-1096, 121], [-1098, 122], [-1098, 125], [-1099, 126], [-1099, 131]]}, "center": {"249-258, T": [-1096, 105]}}, +{"id": 2861, "name": "Argentina", "description": "The territory of the Argentine Republic", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"219-258, T": [[1047, 988], [1052, 988], [1052, 987], [1053, 987], [1053, 985], [1054, 985], [1054, 984], [1055, 984], [1058, 984], [1058, 982], [1059, 982], [1059, 981], [1060, 981], [1060, 980], [1061, 980], [1062, 979], [1098, 946], [1102, 945], [1106, 939], [1107, 939], [1108, 938], [1115, 933], [1123, 928], [1126, 927], [1135, 917], [1154, 899], [1160, 899], [1158, 902], [1178, 918], [1179, 918], [1188, 926], [1189, 932], [1186, 935], [1191, 940], [1193, 940], [1194, 942], [1202, 942], [1209, 937], [1211, 936], [1215, 939], [1212, 950], [1183, 949], [1180, 950], [1178, 953], [1177, 955], [1175, 956], [1173, 959], [1173, 967], [1166, 976], [1165, 980], [1158, 986], [1150, 986], [1136, 981], [1128, 981], [1127, 980], [1122, 980], [1114, 982], [1113, 985], [1111, 984], [1108, 985], [1103, 985], [1102, 992], [1105, 994], [1097, 994], [1096, 993], [1089, 993], [1083, 996], [1080, 999], [1047, 1000], [1047, 999]]}, "center": {"219-258, T": [1143, 952]}}, +{"id": 2862, "name": "ENS Bocchinoko", "description": "a collaborative Bocchi blob with ENS", "links": {"website": ["https://bocchi.rocks/"], "subreddit": ["BocchiTheRock"], "discord": ["rdf5sdyz"]}, "path": {"227-258, T": [[1458, 10], [1452, 12], [1452, 10], [1448, 9], [1447, 8], [1447, 22], [1466, 22], [1460, 16], [1461, 15], [1462, 14], [1463, 11], [1461, 8], [1453, 10], [1449, 11], [1451, 12], [1461, 17], [1463, 10]]}, "center": {"227-258, T": [1452, 17]}}, {"id": 2863, "name": "twenty one pilots", "description": "From left to right: Ned, a fictional character created by band member Tyler Joseph who first appeared in the music video for Chlorine; a simplified version of the cover art for Blurryface, the fourth studio album and the duo's most successful album to date; logo used during the era of the fifth studio album Trench.", "links": {"website": ["https://twentyonepilots.com"], "subreddit": ["twentyonepilots"], "discord": ["twentyonepilots"]}, "path": {"249": [[-1236, -256], [-1201, -256], [-1201, -249], [-1236, -249], [-1236, -256], [-1201, -256], [-1201, -249]]}, "center": {"249": [-1233, -252]}}, -{"id": 2864, "name": "Capitan gato", "description": "Youtuber/Streamer Peruano muy querido por toda la comunidad Latinoamericana con muy sentido del humor y videos con muy buena edicion (no como los de JustNova)\n\nHa participado en muchos eventos de Minecraft y demas, el nos recuerda también que debemos lavarnos el poto <3\n\n-English:\nPeruvian Youtuber/Streamer very loved by all the Latin American community with a great sense of humor and videos with very good editing (not like JustNova's)\n\nHe has participated in many Minecraft events and others, he also reminds us that we should wash our butts <3\n\nSome french people protected this cat until the end, they tried to make the beanie have a french flag insted of a colored one. TheSwitcher was the french leader of the french group that protected him.", "links": {"website": ["https://www.youtube.com/@CapitanGato/featured", "https://twitter.com/CapitanGatoYT", "https://www.twitch.tv/capitangatoo"]}, "path": {"168-259": [[-435, -865], [-432, -853], [-431, -842], [-431, -816], [-390, -816], [-391, -825], [-398, -837], [-397, -854], [-396, -864]], "129-167": [[-435, -865], [-435, -816], [-389, -816], [-390, -865]]}, "center": {"168-259": [-414, -847], "129-167": [-412, -840]}}, +{"id": 2864, "name": "Capitan gato", "description": "Youtuber/Streamer Peruano muy querido por toda la comunidad Latinoamericana con muy sentido del humor y videos con muy buena edicion (no como los de JustNova)\n\nHa participado en muchos eventos de Minecraft y demas, el nos recuerda también que debemos lavarnos el poto <3\n\n-English:\nPeruvian Youtuber/Streamer very loved by all the Latin American community with a great sense of humor and videos with very good editing (not like JustNova's)\n\nHe has participated in many Minecraft events and others, he also reminds us that we should wash our butts <3\n\nSome french people protected this cat until the end, they tried to make the beanie have a french flag insted of a colored one. TheSwitcher was the french leader of the french group that protected him.", "links": {"website": ["https://www.youtube.com/@CapitanGato/featured", "https://twitter.com/CapitanGatoYT", "https://www.twitch.tv/capitangatoo"]}, "path": {"129-167": [[-435, -865], [-435, -816], [-389, -816], [-390, -865]], "168-259, T": [[-435, -865], [-432, -853], [-431, -842], [-431, -816], [-390, -816], [-391, -825], [-398, -837], [-397, -854], [-396, -864]]}, "center": {"129-167": [-412, -840], "168-259, T": [-414, -847]}}, {"id": 2865, "name": "Puffle", "description": "Puffles were creatures from the Club Penguin virtual world, which was shut down in 2017. Players could adopt and take care of them.", "links": {"website": ["https://clubpenguin.fandom.com/wiki/Puffle"], "subreddit": ["clubpenguin"], "discord": ["E2CqWpyTrk"]}, "path": {"210-249": [[-498, 859], [-499, 854], [-497, 852], [-495, 852], [-494, 851], [-492, 851], [-491, 850], [-490, 853], [-489, 853], [-488, 855], [-487, 855], [-486, 856], [-485, 857], [-487, 860], [-488, 861], [-495, 862], [-497, 862], [-498, 862], [-496, 863], [-495, 863], [-494, 863], [-492, 863], [-490, 863], [-489, 862], [-488, 863], [-487, 862], [-496, 861], [-499, 855], [-498, 860], [-498, 863], [-495, 859], [-496, 860], [-497, 860], [-499, 855], [-500, 855], [-486, 858], [-486, 859]]}, "center": {"210-249": [-492, 854]}}, {"id": 2866, "name": "Papitas VT", "description": "Pixel art hecho por la comunidad de la streamer PapitasVT.", "links": {"website": ["https://www.twitch.tv/papitasvt"]}, "path": {"249": [[-422, -801], [-423, -809], [-424, -808], [-440, -808], [-440, -796], [-425, -796], [-410, -797], [-409, -815], [-421, -816], [-431, -816], [-438, -816], [-439, -813], [-440, -813], [-440, -803], [-440, -800], [-440, -801], [-440, -797], [-428, -801]]}, "center": {"249": [-416, -809]}}, {"id": 2867, "name": "Fearless", "description": "Fearless (Taylor's Version) is the first re-recorded album by American singer-songwriter Taylor Swift,", "links": {"website": ["https://www.taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"249": [[1302, -621], [1302, -611], [1325, -611], [1325, -621]]}, "center": {"249": [1314, -616]}}, {"id": 2868, "name": "Blink-182 Logo", "description": "Blink-182 is an American rock band formed in Poway, California, in 1992", "links": {"subreddit": ["blink182"]}, "path": {"249": [[-1403, 2], [-1373, 2], [-1372, 3], [-1371, 4], [-1371, 9], [-1372, 10], [-1373, 11], [-1403, 11], [-1404, 10], [-1405, 8], [-1405, 4], [-1404, 3]]}, "center": {"249": [-1388, 7]}}, -{"id": 2869, "name": "Mariya Takeuchi", "description": "The iconic picture of city pop artist Mariya Takeuchi associated with the YouTube upload of her song \"Plastic Love.\"", "links": {"website": ["https://en.wikipedia.org/wiki/Mariya_Takeuchi"], "subreddit": ["citypop"], "discord": ["pN2fST6"]}, "path": {"116-258": [[892, -247], [936, -247], [936, -197], [892, -197]]}, "center": {"116-258": [914, -222]}}, +{"id": 2869, "name": "Mariya Takeuchi", "description": "The iconic picture of city pop artist Mariya Takeuchi associated with the YouTube upload of her song \"Plastic Love.\"", "links": {"website": ["https://en.wikipedia.org/wiki/Mariya_Takeuchi"], "subreddit": ["citypop"], "discord": ["pN2fST6"]}, "path": {"116-258, T": [[892, -247], [936, -247], [936, -197], [892, -197]]}, "center": {"116-258, T": [914, -222]}}, {"id": 2870, "name": "Inabakumori", "description": "inabakumori (稲葉曇), also stylized as INABAKUMORI, is a VOCALOID producer who primarily uses Kaai Yuki. He made his debut under this alias in February 2016, with the song \"Himitsu Ongaku\".\n\nOn December 2017, he indirectly confirmed that his former producer alias was MichouP (視長P), also known as PUKARI or 因幡プカリ (Inaba Pukari).[1] MichouP was active from December 2011 until October 2014.", "links": {}, "path": {"249": [[841, -124], [885, -124], [883, -72], [840, -72], [841, -124], [858, -103], [854, -93]]}, "center": {"249": [868, -88]}}, -{"id": 2871, "name": "Schkreckl", "description": "Logo of the subreddit r/schkreckl, the German equivilant to r/sbubby", "links": {"subreddit": ["schkreckl"]}, "path": {"250-258": [[-112, -459], [-106, -459], [-106, -456], [-105, -457], [-104, -458], [-103, -458], [-102, -456], [-103, -455], [-104, -455], [-106, -451], [-111, -451], [-114, -453], [-114, -455], [-115, -455], [-116, -456], [-116, -457], [-115, -458], [-114, -458], [-112, -456]]}, "center": {"250-258": [-109, -455]}}, -{"id": 2872, "name": "Meiko Nakahara - Friday Magic", "description": "The cover artwork for Meiko Nakahara's 1982 city pop album \"Niji Made no Cinderella -Friday Magic-.\"", "links": {"website": ["https://en.wikipedia.org/wiki/Meiko_Nakahara"], "subreddit": ["citypop"], "discord": ["pN2fST6"]}, "path": {"214-258": [[1001, -209], [1028, -209], [1028, -179], [1001, -179]]}, "center": {"214-258": [1015, -194]}}, +{"id": 2871, "name": "Schkreckl", "description": "Logo of the subreddit r/schkreckl, the German equivilant to r/sbubby", "links": {"subreddit": ["schkreckl"]}, "path": {"250-258, T": [[-112, -459], [-106, -459], [-106, -456], [-105, -457], [-104, -458], [-103, -458], [-102, -456], [-103, -455], [-104, -455], [-106, -451], [-111, -451], [-114, -453], [-114, -455], [-115, -455], [-116, -456], [-116, -457], [-115, -458], [-114, -458], [-112, -456]]}, "center": {"250-258, T": [-109, -455]}}, +{"id": 2872, "name": "Meiko Nakahara - Friday Magic", "description": "The cover artwork for Meiko Nakahara's 1982 city pop album \"Niji Made no Cinderella -Friday Magic-.\"", "links": {"website": ["https://en.wikipedia.org/wiki/Meiko_Nakahara"], "subreddit": ["citypop"], "discord": ["pN2fST6"]}, "path": {"214-258, T": [[1001, -209], [1028, -209], [1028, -179], [1001, -179]]}, "center": {"214-258, T": [1015, -194]}}, {"id": 2873, "name": "Universidad Nacional de Colombia (Unal)", "description": "The National University of Colombia (Spanish: Universidad Nacional de Colombia) is a national public research university in Colombia, with general campuses in Bogotá, Medellín, Manizales and Palmira, and satellite campuses in Leticia, San Andrés, Arauca, Tumaco, and La Paz, Cesar. Established in 1867 by an act of the Congress of Colombia,[5] it is one of the largest universities in the country, with more than 53,000 students.[6] The university grants academic degrees and offers 450 academic programmes, including 95 undergraduate degrees, 83 academic specializations, 40 medical specialties, 167 master's degrees, and 65 doctorates. Approximately 44,000 students are enrolled for an undergraduate degree and 8,000 for a postgraduate degree.[7] It is also one of the few universities that employs postdoctorate fellows in the country.\n\nThe university is a member of the Association of Colombian Universities (ASCUN),[8] the Iberoamerican Association of Postgraduate Universities (AUIP),[9] and the Iberoamerican University Network Universia. Along with Antioquia and Valle universities, it is part of what is known as the Golden Triangle of higher education in Colombia,[10] being among the most selective and competitive universities in the country. The SCImago Institutions Rankings Iber by SCImago Research Group found that the National University of Colombia produced the largest number of scientific papers published in peer-refereed publications in the country, and was the 17th[11] (14th[12] in 2018) most prolific in Latin America. Furthermore, according to the Latin-American Web Ranking of Universities, the National University of Colombia ranks first place in internet presence in the country. It is also among the first universities in the region.[13] Among the universities of CIVETS countries, the National University occupied second place.[14] Globally, the university was ranked #243, and #10 in Latin America by the QS World University Rankings in 2023, placing #2 in Colombia.[15]\n\nThe institution offers a wide selection of programmes in both undergraduate and graduate levels, such as medicine, nursing, dentistry, engineering, chemistry, pharmacy, mathematics, physics, geology, biology, psychology, social sciences, arts (music, fine arts), languages, philosophy, and law. It was the first university in Colombia to open a computer science postgraduate program in 1967", "links": {"website": ["https://unal.edu.co/"], "subreddit": ["colombia"]}, "path": {"249": [[-884, 959], [-871, 959], [-871, 967], [-884, 967]]}, "center": {"249": [-877, 963]}}, -{"id": 2874, "name": "Chocoramo", "description": "Español:\n\nChocoramo es una conocida marca de productos de panadería y confitería de Colombia. Su producto estrella es un delicioso pastelito redondo relleno de dulce de leche y cubierto con una capa de chocolate. Este popular snack ha sido parte de la cultura colombiana por varias generaciones y es ampliamente consumido como merienda o acompañante del café. Chocoramo es reconocido por su sabor único y su empaque icónico, lo que lo convierte en una de las marcas más queridas y reconocidas del país.\n\nEnglish:\n\nChocoramo is a well-known bakery and confectionery brand from Colombia. Its flagship product is a delicious round cake filled with dulce de leche (sweet milk caramel) and covered with a layer of chocolate. This popular snack has been part of Colombian culture for several generations and is widely enjoyed as a snack or with coffee. Chocoramo is recognized for its unique flavor and iconic packaging, making it one of the most beloved and recognized brands in the country.", "links": {"subreddit": ["Colombia"]}, "path": {"171-258": [[-985, 870], [-978, 877], [-976, 877], [-967, 867], [-964, 865], [-964, 863], [-971, 856], [-972, 856], [-984, 868]]}, "center": {"171-258": [-974, 867]}}, +{"id": 2874, "name": "Chocoramo", "description": "Español:\n\nChocoramo es una conocida marca de productos de panadería y confitería de Colombia. Su producto estrella es un delicioso pastelito redondo relleno de dulce de leche y cubierto con una capa de chocolate. Este popular snack ha sido parte de la cultura colombiana por varias generaciones y es ampliamente consumido como merienda o acompañante del café. Chocoramo es reconocido por su sabor único y su empaque icónico, lo que lo convierte en una de las marcas más queridas y reconocidas del país.\n\nEnglish:\n\nChocoramo is a well-known bakery and confectionery brand from Colombia. Its flagship product is a delicious round cake filled with dulce de leche (sweet milk caramel) and covered with a layer of chocolate. This popular snack has been part of Colombian culture for several generations and is widely enjoyed as a snack or with coffee. Chocoramo is recognized for its unique flavor and iconic packaging, making it one of the most beloved and recognized brands in the country.", "links": {"subreddit": ["Colombia"]}, "path": {"171-258, T": [[-985, 870], [-978, 877], [-976, 877], [-967, 867], [-964, 865], [-964, 863], [-971, 856], [-972, 856], [-984, 868]]}, "center": {"171-258, T": [-974, 867]}}, {"id": 2875, "name": "Calcetín con Rombos Man", "description": "Calcetín con Rombos Man is a popular character belonging to the Chilean television program 31 minutos.", "links": {"website": ["https://31minutos.fandom.com/wiki/Calcet%C3%ADn_con_Rombos_Man"]}, "path": {"251-258": [[-1066, -809], [-1104, -810], [-1109, -792], [-1107, -755], [-1073, -756], [-1078, -786], [-1063, -795], [-1064, -804]]}, "center": {"251-258": [-1092, -793]}}, -{"id": 2876, "name": "Hamburg University of Technology", "description": "University of Technology located in Hamburg, Germany.", "links": {"website": ["https://de.wikipedia.org/wiki/Technische_Universit%C3%A4t_Hamburg", "https://www.tuhh.de/tuhh/startseite"]}, "path": {"248-258": [[-49, -68], [-49, -76], [-20, -76], [-20, -68]]}, "center": {"248-258": [-34, -72]}}, +{"id": 2876, "name": "Hamburg University of Technology", "description": "University of Technology located in Hamburg, Germany.", "links": {"website": ["https://de.wikipedia.org/wiki/Technische_Universit%C3%A4t_Hamburg", "https://www.tuhh.de/tuhh/startseite"]}, "path": {"248-258, T": [[-49, -68], [-49, -76], [-20, -76], [-20, -68]]}, "center": {"248-258, T": [-34, -72]}}, {"id": 2877, "name": "Juan Valdez", "description": "Juan Valdez is a fictional character who has appeared in advertisements for the National Federation of Coffee Growers of Colombia since 1958, representing a Colombian coffee farmer. He typically appears with his donkey Conchita, carrying sacks of harvested coffee beans. He has become an icon for Colombia as well as coffee in general, and Juan Valdez's iconic appearance is frequently mimicked or parodied in television and other media.", "links": {"website": ["https://en.wikipedia.org/wiki/Juan_Valdez"], "subreddit": ["Colombia"]}, "path": {"251-258": [[-386, -824], [-359, -857], [-332, -820], [-387, -819]]}, "center": {"251-258": [-360, -834]}}, {"id": 2878, "name": "Spacecat", "description": "Spacecat is the official mascot of Nimu Spacecat, a relevant Argentinian vtuber. Spacecat is a parasite that hosts the body of Centi, the girl that we can usually see on her streams.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Nimu_Spacecat", "https://www.twitch.tv/nimuvt"], "discord": ["nimuvt"]}, "path": {"251-258": [[1485, 333], [1496, 333], [1496, 343], [1485, 343]]}, "center": {"251-258": [1491, 338]}}, {"id": 2879, "name": "Jabón Rey", "description": "Jabón Rey is a Colombian brand of toilet soap that was first produced in 1955. It is made with a mixture of vegetable oil, glycerin, and sodium hydroxide. Jabón Rey is known for its strong cleaning power and its ability to remove tough stains. It is also a popular choice for personal hygiene, as it is gentle on the skin.", "links": {"subreddit": ["Colombia"], "discord": ["fsUjmEry"]}, "path": {"207-249": [[-1020, 915], [-1010, 909], [-991, 919], [-991, 937], [-1003, 943], [-1019, 935]]}, "center": {"207-249": [-1006, 926]}}, {"id": 2880, "name": "VC3 Revolution", "description": "VC3 is a community-driven platform passionately owned and managed by a group of users who hold diverse perspectives on r/placeDE's moderation team. The revolution is considered a ban-worthy topic in r/placede's server due to its controversial nature. Embracing a spirit of independence and a desire for constructive dialogue, this community welcomes users who have experienced difficulties in r/placeDE's discord server or VC3, fostering an inclusive environment for open discussions.\nWe also have an alliance with the German south flag.", "links": {"subreddit": ["sprachkanal3"], "discord": ["RRXccGRncM"]}, "path": {"251-258": [[-309, -458], [-309, -451], [-280, -452], [-280, -461], [-310, -461], [-310, -451], [-303, -451], [-280, -451], [-280, -460], [-309, -461]]}, "center": {"251-258": [-281, -461]}}, {"id": 2881, "name": "Aguardiente Antioqueño", "description": "Aguardiente Antioqueño is a dry brandy made by the Antioquia Liquor Factory (FLA) in three variants: blue lid, red lid and green lid. It asks for an anise aroma, a transparent color and it can be taken mixed or alone. Distilled from molasses, honey and cane sugar.​\n\nIt is one of the liquors with the greatest international projection in Colombia. It is exported to Canada, Spain, the United States, Mexico or the United Kingdom, among others, in glass or plastic bottle format, or in tetrabrick. The FLA, formerly called Sacatín, also manufactures other products, such as comon, vodka, gin, coffee cream and mint cream, although its flagship product is brandy. At present, to economize on its production, the FLA will transfer the manufacture of brandy to Bolivia.\n\nAguardiente Antioqueño is strongly linked to the paisa (Colombian peasant) culture, and can be found in regional festivals in Antioquia and throughout the country.", "links": {"subreddit": ["Colombia"]}, "path": {"186-249": [[-898, 890], [-914, 890], [-918, 888], [-916, 884], [-916, 879], [-917, 879], [-917, 875], [-912, 872], [-912, 864], [-906, 864], [-906, 872], [-901, 875], [-901, 880], [-901, 884], [-897, 885], [-897, 887], [-898, 888]]}, "center": {"186-249": [-908, 880]}}, {"id": 2882, "name": "Esix", "description": "Esix is a mascot of e621.net. Painted by r/furry_irl.", "links": {"website": ["https://e621.net"], "subreddit": ["furry_irl"]}, "path": {"251-258": [[-1451, 28], [-1450, 29], [-1450, 30], [-1449, 31], [-1449, 32], [-1446, 32], [-1446, 31], [-1445, 30], [-1445, 29], [-1444, 28], [-1441, 31], [-1441, 35], [-1442, 36], [-1442, 37], [-1441, 38], [-1441, 41], [-1442, 41], [-1443, 42], [-1443, 44], [-1442, 45], [-1441, 45], [-1439, 47], [-1439, 53], [-1438, 54], [-1438, 58], [-1439, 59], [-1440, 59], [-1440, 71], [-1441, 72], [-1441, 76], [-1443, 77], [-1444, 76], [-1445, 75], [-1445, 73], [-1446, 72], [-1446, 66], [-1447, 65], [-1448, 65], [-1449, 66], [-1449, 72], [-1450, 73], [-1450, 75], [-1451, 76], [-1452, 77], [-1453, 77], [-1454, 76], [-1454, 72], [-1455, 71], [-1455, 60], [-1457, 58], [-1457, 54], [-1456, 53], [-1456, 47], [-1455, 46], [-1454, 45], [-1453, 45], [-1452, 44], [-1452, 42], [-1453, 41], [-1454, 40], [-1454, 38], [-1453, 37], [-1453, 36], [-1454, 35], [-1454, 31]]}, "center": {"251-258": [-1447, 53]}}, -{"id": 2883, "name": "Leipzig University of Applied Sciences", "description": "University of Applied Sciences located in Leipzig, Germany.", "links": {"website": ["https://de.wikipedia.org/wiki/Hochschule_f%C3%BCr_Technik,_Wirtschaft_und_Kultur_Leipzig"]}, "path": {"231-258": [[-141, -69], [-141, -76], [-119, -76], [-119, -70], [-130, -70], [-130, -69]]}, "center": {"231-258": [-137, -72]}}, +{"id": 2883, "name": "Leipzig University of Applied Sciences", "description": "University of Applied Sciences located in Leipzig, Germany.", "links": {"website": ["https://de.wikipedia.org/wiki/Hochschule_f%C3%BCr_Technik,_Wirtschaft_und_Kultur_Leipzig"]}, "path": {"231-258, T": [[-141, -69], [-141, -76], [-119, -76], [-119, -70], [-130, -70], [-130, -69]]}, "center": {"231-258, T": [-137, -72]}}, {"id": 2884, "name": "ENHYPEN", "description": "Enhypen (Korean: 엔하이픈; RR: Enhaipeun) is a South Korean boy band formed by Belift Lab, a joint venture between CJ ENM and Hybe Corporation, through the 2020 survival competition show I-Land. The group is composed of seven members: Heeseung, Jay, Jake, Sunghoon, Sunoo, Jungwon, and Ni-ki. They debuted on November 30, 2020, with the extended play (EP) Border: Day One. Their fandom has the name Engene.", "links": {"website": ["https://beliftlab.com/", "https://en.wikipedia.org/wiki/Enhypen"], "subreddit": ["enhypen"]}, "path": {"251-258": [[375, -838], [392, -839], [392, -832], [375, -832]]}, "center": {"251-258": [384, -835]}}, -{"id": 2885, "name": "ENHYPEN", "description": "Enhypen (Korean: 엔하이픈; RR: Enhaipeun) is a South Korean boy band formed by Belift Lab, a joint venture between CJ ENM and Hybe Corporation, through the 2020 survival competition show I-Land. The group is composed of seven members: Heeseung, Jay, Jake, Sunghoon, Sunoo, Jungwon, and Ni-ki. They debuted on November 30, 2020, with the extended play (EP) Border: Day One. Their fandom name is Engene.", "links": {"website": ["https://beliftlab.com/", "https://en.wikipedia.org/wiki/Enhypen"], "subreddit": ["enhypen"]}, "path": {"224-258": [[-1255, 404], [-1255, 411], [-1238, 411], [-1238, 404]]}, "center": {"224-258": [-1246, 408]}}, -{"id": 2886, "name": "AnarchyChess", "description": "The main area of r/AnarchyChess, featuring a chessboard background, some jokes from the subreddit, and other small art pieces done by small communities.", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"207-258": [[-1217, 531], [-1217, 530], [-1208, 531], [-1200, 536], [-1200, 537], [-1195, 534], [-1195, 535], [-1190, 537], [-1183, 538], [-1183, 553], [-1191, 564], [-1206, 567], [-1220, 560], [-1227, 563], [-1238, 563], [-1237, 563], [-1237, 548], [-1230, 547], [-1225, 538], [-1224, 537], [-1217, 530]]}, "center": {"207-258": [-1212, 547]}}, +{"id": 2885, "name": "ENHYPEN", "description": "Enhypen (Korean: 엔하이픈; RR: Enhaipeun) is a South Korean boy band formed by Belift Lab, a joint venture between CJ ENM and Hybe Corporation, through the 2020 survival competition show I-Land. The group is composed of seven members: Heeseung, Jay, Jake, Sunghoon, Sunoo, Jungwon, and Ni-ki. They debuted on November 30, 2020, with the extended play (EP) Border: Day One. Their fandom name is Engene.", "links": {"website": ["https://beliftlab.com/", "https://en.wikipedia.org/wiki/Enhypen"], "subreddit": ["enhypen"]}, "path": {"224-258, T": [[-1255, 404], [-1255, 411], [-1238, 411], [-1238, 404]]}, "center": {"224-258, T": [-1246, 408]}}, +{"id": 2886, "name": "AnarchyChess", "description": "The main area of r/AnarchyChess, featuring a chessboard background, some jokes from the subreddit, and other small art pieces done by small communities.", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"207-258, T": [[-1217, 531], [-1217, 530], [-1208, 531], [-1200, 536], [-1200, 537], [-1195, 534], [-1195, 535], [-1190, 537], [-1183, 538], [-1183, 553], [-1191, 564], [-1206, 567], [-1220, 560], [-1227, 563], [-1238, 563], [-1237, 563], [-1237, 548], [-1230, 547], [-1225, 538], [-1224, 537], [-1217, 530]]}, "center": {"207-258, T": [-1212, 547]}}, {"id": 2887, "name": "Vtuber eru ∇", "description": "Eru nabura is a Colombian vtuber addicted to Milo.\nAn android angel who wants to save the lambs, but these lambs are already far from salvation.", "links": {"website": ["https://www.youtube.com/@EruNabura/channels"]}, "path": {"122-249": [[-660, 303], [-630, 303], [-630, 278], [-661, 279], [-661, 280]]}, "center": {"122-249": [-645, 291]}}, {"id": 2888, "name": "Cheesy", "description": "Otters are the mascots of the German Streamer CheesecakeTree.", "links": {"website": ["https://www.twitch.tv/cheesecaketree"], "discord": ["2THeyXx9Cq"]}, "path": {"251-258": [[254, -238], [257, -238], [257, -235], [254, -235]]}, "center": {"251-258": [256, -236]}}, -{"id": 2889, "name": "FH Aachen – University of Applied Sciences", "description": "University of Applied Sciences located in Aachen, Germany", "links": {"website": ["https://de.wikipedia.org/wiki/FH_Aachen"]}, "path": {"242-258": [[-163, -57], [-163, -76], [-146, -76], [-146, -57]]}, "center": {"242-258": [-154, -66]}}, +{"id": 2889, "name": "FH Aachen – University of Applied Sciences", "description": "University of Applied Sciences located in Aachen, Germany", "links": {"website": ["https://de.wikipedia.org/wiki/FH_Aachen"]}, "path": {"242-258, T": [[-163, -57], [-163, -76], [-146, -76], [-146, -57]]}, "center": {"242-258, T": [-154, -66]}}, {"id": 2890, "name": "Gingerbrave cookie", "description": "Gingerbrave is a character in the mobile games cookie run", "links": {}, "path": {"166-249": [[708, 914], [708, 912], [708, 905], [710, 907], [711, 912], [713, 913], [715, 912], [716, 911], [716, 902], [718, 903], [719, 902], [719, 894], [718, 894], [717, 893], [710, 893], [710, 901], [709, 900], [709, 879], [703, 874], [700, 874], [694, 880], [695, 888], [694, 894], [692, 892], [692, 891], [693, 891], [693, 889], [692, 888], [691, 887], [690, 888], [689, 887], [688, 888], [687, 889], [688, 892], [688, 895], [689, 895], [691, 898], [692, 898], [693, 899], [695, 902], [696, 906], [696, 915], [708, 915]]}, "center": {"166-249": [701, 897]}}, {"id": 2891, "name": "99 Luftballons", "description": "\"99 Luftballons\" (engl. \"99 Red Balloons\") is a famous German song made by Nena. It is part of the \"Neue Deutsche Welle\" (engl. \"New German Wave\").", "links": {"website": ["https://en.wikipedia.org/wiki/99_Luftballons"]}, "path": {"251-258": [[1136, -393], [1276, -394], [1276, -450], [1136, -450], [1135, -450], [1132, -432]]}, "center": {"251-258": [1204, -422]}}, -{"id": 2892, "name": "Pan", "description": "Frying pan representing Pan's (streamer's) community.", "links": {"website": ["https://www.twitch.tv/pan05_"], "subreddit": ["pan05"], "discord": ["aqUSXGWx5q"]}, "path": {"250-258": [[-1483, -29], [-1483, -48], [-1500, -48], [-1500, -29]]}, "center": {"250-258": [-1491, -38]}}, -{"id": 2893, "name": "c!TNTDUO", "description": "This is a drawing depicting the fictional characters roleplayed by streamers Quackity and Wilbur Soot in the minecraft series DSMP. It's believed that their relationship was a romantic one which was supported by Quackity", "links": {"website": ["https://www.youtube.com/watch?v=hglvexYhXeA&t=78s"]}, "path": {"165-258": [[605, 569], [624, 569], [624, 583], [605, 583]]}, "center": {"165-258": [615, 576]}}, -{"id": 2894, "name": "Spamton", "description": "Deltarune Chapter 2's very own Spamton.", "links": {}, "path": {"233-258": [[437, 931], [448, 939], [451, 939], [447, 945], [442, 950], [441, 952], [437, 952], [441, 958], [437, 958], [434, 967], [431, 967], [426, 958], [423, 961], [421, 961], [420, 960], [427, 952], [428, 951], [430, 941], [430, 939], [429, 933], [431, 933], [432, 936]]}, "center": {"233-258": [438, 942]}}, -{"id": 2895, "name": "University of Karlsruhe", "description": "University located in Karlsruhe, Germany.", "links": {"website": ["https://www.h-ka.de/", "https://de.wikipedia.org/wiki/Hochschule_Karlsruhe"]}, "path": {"238-258": [[-127, -57], [-127, -70], [-119, -70], [-119, -57]]}, "center": {"238-258": [-123, -63]}}, +{"id": 2892, "name": "Pan", "description": "Frying pan representing Pan's (streamer's) community.", "links": {"website": ["https://www.twitch.tv/pan05_"], "subreddit": ["pan05"], "discord": ["aqUSXGWx5q"]}, "path": {"250-258, T": [[-1483, -29], [-1483, -48], [-1500, -48], [-1500, -29]]}, "center": {"250-258, T": [-1491, -38]}}, +{"id": 2893, "name": "c!TNTDUO", "description": "This is a drawing depicting the fictional characters roleplayed by streamers Quackity and Wilbur Soot in the minecraft series DSMP. It's believed that their relationship was a romantic one which was supported by Quackity", "links": {"website": ["https://www.youtube.com/watch?v=hglvexYhXeA&t=78s"]}, "path": {"165-258, T": [[605, 569], [624, 569], [624, 583], [605, 583]]}, "center": {"165-258, T": [615, 576]}}, +{"id": 2894, "name": "Spamton", "description": "Deltarune Chapter 2's very own Spamton.", "links": {}, "path": {"233-258, T": [[437, 931], [448, 939], [451, 939], [447, 945], [442, 950], [441, 952], [437, 952], [441, 958], [437, 958], [434, 967], [431, 967], [426, 958], [423, 961], [421, 961], [420, 960], [427, 952], [428, 951], [430, 941], [430, 939], [429, 933], [431, 933], [432, 936]]}, "center": {"233-258, T": [438, 942]}}, +{"id": 2895, "name": "University of Karlsruhe", "description": "University located in Karlsruhe, Germany.", "links": {"website": ["https://www.h-ka.de/", "https://de.wikipedia.org/wiki/Hochschule_Karlsruhe"]}, "path": {"238-258, T": [[-127, -57], [-127, -70], [-119, -70], [-119, -57]]}, "center": {"238-258, T": [-123, -63]}}, {"id": 2896, "name": "IKA-Renault Torino 380w (84 hours of Nürburgring wrap)", "description": "r/PlaceArg tribute to the Torino, car of national manufacture based on the Rambler American, designed by Pininfarina and manufactured in the country by IKA (Industrias Kaiser Argentina) from 1966 to 1975, and from 1975 to 1981 by the Argentine subdivision of Renault. Specifically, the drawing is of one of the three units that competed in the 1969 84 hours of Nurburgring, specifically, the unit #3, driven by Eduardo Copello, Oscar Franco and \"Larry\" Rodriguez Larreta, who won the first place in their category. It also pays tribute to Juan Manuel Fangio, legendary F1 driver, who chaired the delegation; also for Oreste Berta, historic local designer, engineer and car builder; to Turismo Carretera (TC), the country's premier motor racing competition; and to the Argentine industry.", "links": {"website": ["https://en.wikipedia.org/wiki/IKA-Renault_Torino"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"251-258": [[1037, 923], [1073, 923], [1079, 932], [1107, 935], [1103, 946], [1097, 947], [1094, 950], [1086, 950], [1084, 946], [1039, 946], [1036, 950], [1029, 950], [1025, 946], [1011, 945], [1010, 939], [1014, 933], [1032, 932]]}, "center": {"251-258": [1057, 935]}}, -{"id": 2897, "name": "French yellow vests", "description": "Protests in France against Macron's government", "links": {"website": ["https://en.wikipedia.org/wiki/Yellow_vests_protests"]}, "path": {"240-258": [[1128, -209], [1136, -209], [1136, -189], [1128, -189]]}, "center": {"240-258": [1132, -199]}}, +{"id": 2897, "name": "French yellow vests", "description": "Protests in France against Macron's government", "links": {"website": ["https://en.wikipedia.org/wiki/Yellow_vests_protests"]}, "path": {"240-258, T": [[1128, -209], [1136, -209], [1136, -189], [1128, -189]]}, "center": {"240-258, T": [1132, -199]}}, {"id": 2899, "name": "I.M.P. Logo", "description": "The Immediate Murder Professionals, abbreviated as I.M.P, is a startup assassination business within Hell seen in Helluva Boss.", "links": {"subreddit": ["PlaceStolas", "PlaceLoona"], "discord": ["zbrP6msjT5", "7wJ5EWzTAV"]}, "path": {"252-258": [[1283, 5], [1283, 17], [1297, 17], [1297, 5]]}, "center": {"252-258": [1290, 11]}}, {"id": 2900, "name": "YEEZY Bear & r/GoodAssSub", "description": "r/Kanye, r/GoodAssSub, r/ThroughTheWire, and r/WestSubEver created this snippet of the r/GoodAssSub banner in partnership with the One Piece community.\nThe Dropout bear was originally designed by graphic designer Sam Hansen. Its first commercial appearance was on the cover art for West's debut single \"Through the Wire\" in September 2003, and it's likeness was changed and used for some of Kanye West's singles and starring on the covers of his first three albums: The College Dropout, Late Registration, and Graduation. The bear's likeness was used during the promotion of 2018's Kids See Ghosts, and was planned to star in a 2020 animated series with a fox mascot for Kid Cudi. The Dropout Bear has not been very relevant in modern promotion for Kanye West's work, but it has served as an icon for Kanye West and his community.\nThe GoodAssSub banner was created by /u/MonochromaticMan and this r/place piece was created by /u/TheSunniest.", "links": {"subreddit": ["GoodAssSub"]}, "path": {"251-258": [[1445, 700], [1446, 743], [1481, 743], [1481, 700]]}, "center": {"251-258": [1463, 721]}}, {"id": 2901, "name": "Bandeja paisa", "description": "Is one of the most representative meals in Colombian cuisine, especially of the Antioquia department and the Paisa Region, as well as with the Colombian Coffee-Growers Axis (the departments of Caldas, Quindío and Risaralda), and part of Valle del Cauca and the northwest of Tolima.\n\nThe main characteristic of this dish is the generous amount and variety of food in a traditional bandeja paisa: red beans cooked with pork, white rice, carne molida (ground meat), chicharrón, fried egg, plantain (plátano maduro), chorizo, arepa, hogao sauce, black pudding (morcilla), avocado and lemon. It is served in a platter or a tray.", "links": {"website": ["https://en.wikipedia.org/wiki/Bandeja_paisa"], "subreddit": ["Colombia"]}, "path": {"251-258": [[-709, 310], [-735, 322], [-763, 308], [-757, 297], [-725, 294]]}, "center": {"251-258": [-735, 308]}}, @@ -2763,3269 +2763,3269 @@ {"id": 2905, "name": "Ado", "description": "Ado is a Japanese singer who rose to fame in 2020 with her hit song \"Usseewa\". Ado's distinctive vocal style, which combines powerful high notes, rapid-fire rap, and expressive vibrato, has earned her praise from fans and fellow musicians alike. Ado's music is often described as energetic, emotional, and catchy, appealing to a wide audience of listeners. She has also collaborated with several popular musicians such as Mrs.GREENAPPLE, Kanaria, syudou, and Vaundy, showcasing her versatility and range.\n\nAdo was born on October 24, 2002, in Tokyo, Japan, currently belongs to the artist management company Cloud Nine.", "links": {"website": ["https://www.universal-music.co.jp/ado/"], "subreddit": ["ADO"], "discord": ["ado1024"]}, "path": {"251-258": [[-307, 901], [-253, 902], [-253, 929], [-308, 930], [-307, 902]]}, "center": {"251-258": [-280, 916]}}, {"id": 2906, "name": "Takusi", "description": "Takusi is a very very small content creator from Germany that makes story videos and vlogs\n\nThe artwork shows a deer with a joint and the number 420", "links": {"website": ["https://www.youtube.com/@Takusi420", "https://www.instagram.com/trenbolon.only/", "https://twitter.com/_Takusi_"], "subreddit": ["Takusi"]}, "path": {"252-258": [[1000, 157], [1000, 170], [1023, 170], [1023, 157]]}, "center": {"252-258": [1012, 164]}}, {"id": 2907, "name": "Emo and Elycius flag", "description": "a flag created by u/Popcornchen and u/elycius_rem (two friends) and representing them. Thank you u/Rich_SeaCat for helping", "links": {}, "path": {"242-248": [[-1320, 217], [-1320, 221], [-1314, 221], [-1314, 217]], "252-258": [[-1323, 217], [-1323, 221], [-1317, 221], [-1317, 217]]}, "center": {"242-248": [-1317, 219], "252-258": [-1320, 219]}}, -{"id": 2908, "name": "EPITA (School)", "description": "EPITA, short for \"Ecole pour l'Informatique et les Techniques Avancées\" (School for Computer Science and Advanced Techniques), is a prestigious French engineering school specializing in computer science. Established in 1984 and based in Le Kremlin-Bicêtre, near Paris, with a second campus in Lyon, EPITA has become a pillar of the French digital landscape.\n\nKnown for its rigorous curriculum that emphasizes applied knowledge and practical skills, EPITA has made significant contributions to the fields of software engineering, data science, artificial intelligence, and cybersecurity. The school's project-based learning approach nurtures innovation and entrepreneurship among its students.\n\nOn the r/placeFR canvas, EPITA is depicted by its distinctive logo, a testament to its integral role in French technological advancement. The institute is a symbol of French prowess in computer science education and its commitment to shaping the future of technology and digital society.", "links": {"website": ["https://www.epita.fr"], "subreddit": ["placeFR", "epita", "france"], "discord": ["placeFR"]}, "path": {"194-258": [[-1037, 100], [-1020, 88], [-1018, 91], [-1017, 90], [-1015, 92], [-1010, 89], [-1007, 96], [-1006, 100], [-1001, 103], [-1003, 105], [-1002, 108], [-1015, 108], [-1018, 110], [-1018, 117], [-1024, 111], [-1029, 112], [-1028, 110], [-1029, 108], [-1034, 107], [-1033, 104]]}, "center": {"194-258": [-1022, 101]}}, +{"id": 2908, "name": "EPITA (School)", "description": "EPITA, short for \"Ecole pour l'Informatique et les Techniques Avancées\" (School for Computer Science and Advanced Techniques), is a prestigious French engineering school specializing in computer science. Established in 1984 and based in Le Kremlin-Bicêtre, near Paris, with a second campus in Lyon, EPITA has become a pillar of the French digital landscape.\n\nKnown for its rigorous curriculum that emphasizes applied knowledge and practical skills, EPITA has made significant contributions to the fields of software engineering, data science, artificial intelligence, and cybersecurity. The school's project-based learning approach nurtures innovation and entrepreneurship among its students.\n\nOn the r/placeFR canvas, EPITA is depicted by its distinctive logo, a testament to its integral role in French technological advancement. The institute is a symbol of French prowess in computer science education and its commitment to shaping the future of technology and digital society.", "links": {"website": ["https://www.epita.fr"], "subreddit": ["placeFR", "epita", "france"], "discord": ["placeFR"]}, "path": {"194-258, T": [[-1037, 100], [-1020, 88], [-1018, 91], [-1017, 90], [-1015, 92], [-1010, 89], [-1007, 96], [-1006, 100], [-1001, 103], [-1003, 105], [-1002, 108], [-1015, 108], [-1018, 110], [-1018, 117], [-1024, 111], [-1029, 112], [-1028, 110], [-1029, 108], [-1034, 107], [-1033, 104]]}, "center": {"194-258, T": [-1022, 101]}}, {"id": 2909, "name": "Gingerbrave cookie", "description": "Gingerbrave is a character in the mobile games cookie run", "links": {}, "path": {"166-249": [[708, 914], [708, 912], [708, 905], [710, 907], [711, 912], [713, 913], [715, 912], [716, 911], [716, 902], [718, 903], [719, 902], [719, 894], [718, 894], [717, 893], [710, 893], [710, 901], [709, 900], [709, 879], [703, 874], [700, 874], [694, 880], [695, 888], [694, 894], [692, 892], [692, 891], [693, 891], [693, 889], [692, 888], [691, 887], [690, 888], [689, 887], [688, 888], [687, 889], [688, 892], [688, 895], [689, 895], [691, 898], [692, 898], [693, 899], [695, 902], [696, 906], [696, 915], [708, 915]]}, "center": {"166-249": [701, 897]}}, -{"id": 2910, "name": "Pixel 69, 420", "description": "Nice.", "links": {}, "path": {"1-258": [[68, 421], [70, 421], [70, 419], [68, 419]]}, "center": {"1-258": [69, 420]}}, -{"id": 2911, "name": "Furret 2023", "description": "A small community made furret, lead by DAF_Pvnk and eros. He is waving a transpride flag and shows a red heart by the same group.\n\nThe community that made this year's furret also made a shiny furret in 2022's r/place event.", "links": {"website": ["https://2022.place-atlas.stefanocoding.me/#twxcq1"], "discord": ["xF29kPca"]}, "path": {"248-258": [[-1307, 253], [-1305, 255], [-1308, 255], [-1316, 261], [-1318, 257], [-1313, 253], [-1314, 249], [-1318, 245], [-1318, 242], [-1311, 242], [-1299, 243], [-1298, 248], [-1290, 248], [-1290, 252], [-1291, 253], [-1292, 257], [-1295, 263], [-1299, 266], [-1302, 266], [-1302, 265], [-1304, 265], [-1305, 264], [-1307, 264], [-1308, 263], [-1309, 262], [-1309, 260], [-1311, 257]]}, "center": {"248-258": [-1298, 256]}}, -{"id": 2912, "name": "Andreh", "description": "Content creator from Peru on Youtube and twitch.", "links": {"website": ["https://youtube.com/@ANDREHH", "https://www.twitch.tv/andreh"]}, "path": {"71-258": [[453, -328], [453, -327], [453, -303], [474, -303], [474, -328]]}, "center": {"71-258": [464, -315]}}, +{"id": 2910, "name": "Pixel 69, 420", "description": "Nice.", "links": {}, "path": {"1-258, T": [[68, 421], [70, 421], [70, 419], [68, 419]]}, "center": {"1-258, T": [69, 420]}}, +{"id": 2911, "name": "Furret 2023", "description": "A small community made furret, lead by DAF_Pvnk and eros. He is waving a transpride flag and shows a red heart by the same group.\n\nThe community that made this year's furret also made a shiny furret in 2022's r/place event.", "links": {"website": ["https://2022.place-atlas.stefanocoding.me/#twxcq1"], "discord": ["xF29kPca"]}, "path": {"248-258, T": [[-1307, 253], [-1305, 255], [-1308, 255], [-1316, 261], [-1318, 257], [-1313, 253], [-1314, 249], [-1318, 245], [-1318, 242], [-1311, 242], [-1299, 243], [-1298, 248], [-1290, 248], [-1290, 252], [-1291, 253], [-1292, 257], [-1295, 263], [-1299, 266], [-1302, 266], [-1302, 265], [-1304, 265], [-1305, 264], [-1307, 264], [-1308, 263], [-1309, 262], [-1309, 260], [-1311, 257]]}, "center": {"248-258, T": [-1298, 256]}}, +{"id": 2912, "name": "Andreh", "description": "Content creator from Peru on Youtube and twitch.", "links": {"website": ["https://youtube.com/@ANDREHH", "https://www.twitch.tv/andreh"]}, "path": {"71-258, T": [[453, -328], [453, -327], [453, -303], [474, -303], [474, -328]]}, "center": {"71-258, T": [464, -315]}}, {"id": 2913, "name": "Madotsuki", "description": "Main character of a game called Yume Nikki.\n\nYume Nikki is a psychological horror game made by a Japanese person called Kikiyama in 2004.", "links": {"website": ["https://yumenikki.fandom.com/wiki/Yume_Nikki_Wiki"], "subreddit": ["yumenikki"]}, "path": {"252-258": [[-241, -204], [-241, -208], [-240, -210], [-239, -211], [-238, -212], [-237, -213], [-231, -213], [-230, -212], [-229, -211], [-228, -210], [-228, -209], [-227, -208], [-227, -206], [-226, -206], [-225, -205], [-225, -204], [-224, -203], [-224, -202], [-223, -201], [-224, -200], [-225, -199], [-226, -200], [-227, -200], [-227, -199], [-226, -198], [-226, -197], [-226, -196], [-225, -195], [-225, -193], [-228, -193], [-229, -192], [-235, -192], [-237, -193], [-238, -194], [-238, -195], [-237, -196], [-236, -197], [-236, -198], [-235, -199], [-235, -200], [-236, -201], [-238, -201], [-239, -202], [-240, -203]]}, "center": {"252-258": [-233, -207]}}, -{"id": 2914, "name": "aXoZer", "description": "Representation of the logo, game characters and clothing store of the streamer aXoZer", "links": {"website": ["https://snkd.es/", "https://www.twitch.tv/axozer"], "subreddit": ["aXoZer"], "discord": ["axozer", "kiroscraft"]}, "path": {"218-259": [[-217, 854], [-186, 854], [-186, 899], [-212, 899], [-212, 898], [-213, 898], [-213, 897], [-214, 897], [-214, 896], [-215, 896], [-215, 895], [-216, 895], [-216, 894], [-217, 894]]}, "center": {"218-259": [-201, 877]}}, +{"id": 2914, "name": "aXoZer", "description": "Representation of the logo, game characters and clothing store of the streamer aXoZer", "links": {"website": ["https://snkd.es/", "https://www.twitch.tv/axozer"], "subreddit": ["aXoZer"], "discord": ["axozer", "kiroscraft"]}, "path": {"218-259, T": [[-217, 854], [-186, 854], [-186, 899], [-212, 899], [-212, 898], [-213, 898], [-213, 897], [-214, 897], [-214, 896], [-215, 896], [-215, 895], [-216, 895], [-216, 894], [-217, 894]]}, "center": {"218-259, T": [-201, 877]}}, {"id": 2916, "name": "Black Amogus staring at Zuzana Čaputová", "description": "This black amogus is fascinated by the beauty of Slovak president Zuzka", "links": {}, "path": {"252-258": [[-194, 569], [-188, 569], [-188, 576], [-194, 576]]}, "center": {"252-258": [-191, 573]}}, -{"id": 2917, "name": "Jacex Felipe and Xbox Felipe", "description": "Xbox are the mercenaries of Piotr Bielansky who disturbed jacex community to build their arts, this art commemorates the conflict", "links": {"website": ["https://www.twitch.tv/jacexdowozwideo"]}, "path": {"250-258": [[1452, 381], [1452, 386], [1461, 386], [1461, 380], [1452, 380]]}, "center": {"250-258": [1457, 383]}}, -{"id": 2918, "name": "Seattle Space Needle", "description": "The Space Needle is an observation tower in Seattle, Washington, United States. Considered to be an icon of the city, it has been designated a Seattle landmark. Located in the Lower Queen Anne neighborhood, it was built in the Seattle Center for the 1962 World's Fair, which drew over 2.3 million visitors.", "links": {}, "path": {"180-258": [[810, 849], [810, 855], [809, 856], [808, 857], [808, 858], [807, 859], [806, 860], [805, 860], [804, 861], [804, 862], [803, 862], [802, 862], [803, 863], [804, 863], [805, 863], [805, 864], [806, 864], [806, 866], [807, 867], [807, 868], [808, 869], [808, 874], [809, 875], [809, 879], [808, 880], [812, 880], [811, 879], [811, 873], [812, 873], [812, 872], [812, 871], [813, 871], [813, 870], [814, 870], [814, 865], [815, 865], [815, 861], [816, 861], [816, 860], [814, 860], [814, 858], [813, 857], [812, 856], [811, 856], [811, 855], [810, 855]]}, "center": {"180-258": [810, 862]}}, +{"id": 2917, "name": "Jacex Felipe and Xbox Felipe", "description": "Xbox are the mercenaries of Piotr Bielansky who disturbed jacex community to build their arts, this art commemorates the conflict", "links": {"website": ["https://www.twitch.tv/jacexdowozwideo"]}, "path": {"250-258, T": [[1452, 381], [1452, 386], [1461, 386], [1461, 380], [1452, 380]]}, "center": {"250-258, T": [1457, 383]}}, +{"id": 2918, "name": "Seattle Space Needle", "description": "The Space Needle is an observation tower in Seattle, Washington, United States. Considered to be an icon of the city, it has been designated a Seattle landmark. Located in the Lower Queen Anne neighborhood, it was built in the Seattle Center for the 1962 World's Fair, which drew over 2.3 million visitors.", "links": {}, "path": {"180-258, T": [[810, 849], [810, 855], [809, 856], [808, 857], [808, 858], [807, 859], [806, 860], [805, 860], [804, 861], [804, 862], [803, 862], [802, 862], [803, 863], [804, 863], [805, 863], [805, 864], [806, 864], [806, 866], [807, 867], [807, 868], [808, 869], [808, 874], [809, 875], [809, 879], [808, 880], [812, 880], [811, 879], [811, 873], [812, 873], [812, 872], [812, 871], [813, 871], [813, 870], [814, 870], [814, 865], [815, 865], [815, 861], [816, 861], [816, 860], [814, 860], [814, 858], [813, 857], [812, 856], [811, 856], [811, 855], [810, 855]]}, "center": {"180-258, T": [810, 862]}}, {"id": 2919, "name": "Monument of Santiago", "description": "Emblematic monument found in the city of Santiago, Dominican Republic. It's dedicated to the heroes who fough in Independence R estauration War (1863-1865)", "links": {"website": ["https://en.wikipedia.org/wiki/Monumento_de_Santiago"], "subreddit": ["Dominicanos", "Dominican"]}, "path": {"252-258": [[-282, -762], [-267, -762], [-270, -775], [-274, -778], [-275, -789], [-274, -791], [-274, -796], [-277, -797], [-280, -796], [-280, -789], [-281, -779], [-285, -774], [-285, -761], [-284, -764], [-285, -761], [-284, -762], [-284, -761], [-283, -762]]}, "center": {"252-258": [-277, -770]}}, {"id": 2920, "name": "Tijex", "description": "Tijex is a Colombian review channel. It was created in 2018 but did not upload its first video until January 2019, a video that was titled \"First Video\". In March of that same year, Tijex uploaded its second video and began to rapidly increase in followers, gaining thousands of visits daily until reaching 1000 followers at the end of 2019.\n\nThis text was subsequently destroyed, but was revived during the whiteout.", "links": {"website": ["https://www.youtube.com/channel/UC-8Iat7gwSTFCUenMOOuufA"], "discord": ["ywWaKrguZ4"]}, "path": {"229-238": [[1173, -486], [1173, -480], [1192, -480], [1195, -483], [1193, -485], [1185, -485], [1185, -486]], "257-258": [[1169, -479], [1169, -473], [1185, -473], [1185, -478], [1181, -478], [1181, -479]]}, "center": {"229-238": [1182, -483], "257-258": [1177, -476]}}, {"id": 2921, "name": "KiwyXtreme", "description": "Kiwi drawn for German Twitch Streamer KiwyXtreme", "links": {"website": ["https://www.twitch.tv/kiwyxtreme", "https://www.instagram.com/kiwyxtreme/?hl=de", "https://www.youtube.com/c/KiwyXtremeGaming"], "discord": ["Mb5eevq"]}, "path": {"193-217": [[-637, 647], [-637, 657], [-633, 657], [-633, 654], [-624, 654], [-624, 653], [-625, 653], [-625, 650], [-624, 650], [-624, 648], [-623, 648], [-623, 647]]}, "center": {"193-217": [-631, 650]}}, -{"id": 2922, "name": "Tiny Knight", "description": "A tiny knight from the game, Hollow Knight. Created by mainly the Hollow Knight place discord on the French Flag.", "links": {"discord": ["TNNFs4T9"]}, "path": {"243-258": [[1121, -343], [1123, -344], [1123, -347], [1124, -349], [1125, -351], [1128, -349], [1126, -347], [1129, -347], [1130, -351], [1133, -350], [1130, -342], [1131, -339], [1133, -337], [1130, -335], [1124, -335], [1121, -338], [1121, -341], [1119, -343], [1120, -345], [1122, -345]]}, "center": {"243-258": [1126, -340]}}, -{"id": 2924, "name": "Snorlax & Friends", "description": "A Pokemon named Snorlax joined by a Shiny Goomy and Babousa the green slug from the streamer AgenteMaxo and assisted by the streamer Chainavt to battle off the void!", "links": {"subreddit": ["placepokemon2"], "discord": ["TZeRPaFZ"]}, "path": {"202-258": [[1082, 250], [1054, 250], [1054, 257], [1049, 257], [1049, 281], [1082, 281]]}, "center": {"202-258": [1067, 266]}}, +{"id": 2922, "name": "Tiny Knight", "description": "A tiny knight from the game, Hollow Knight. Created by mainly the Hollow Knight place discord on the French Flag.", "links": {"discord": ["TNNFs4T9"]}, "path": {"243-258, T": [[1121, -343], [1123, -344], [1123, -347], [1124, -349], [1125, -351], [1128, -349], [1126, -347], [1129, -347], [1130, -351], [1133, -350], [1130, -342], [1131, -339], [1133, -337], [1130, -335], [1124, -335], [1121, -338], [1121, -341], [1119, -343], [1120, -345], [1122, -345]]}, "center": {"243-258, T": [1126, -340]}}, +{"id": 2924, "name": "Snorlax & Friends", "description": "A Pokemon named Snorlax joined by a Shiny Goomy and Babousa the green slug from the streamer AgenteMaxo and assisted by the streamer Chainavt to battle off the void!", "links": {"subreddit": ["placepokemon2"], "discord": ["TZeRPaFZ"]}, "path": {"202-258, T": [[1082, 250], [1054, 250], [1054, 257], [1049, 257], [1049, 281], [1082, 281]]}, "center": {"202-258, T": [1067, 266]}}, {"id": 2925, "name": "KiwyXtreme", "description": "Kiwi drawn for German Twitch Streamer KiwyXtreme", "links": {"website": ["https://www.twitch.tv/kiwyxtreme", "https://www.instagram.com/kiwyxtreme/?hl=de", "https://www.youtube.com/c/KiwyXtremeGaming"], "discord": ["Mb5eevq"]}, "path": {"193-217": [[-637, 647], [-637, 657], [-633, 657], [-633, 654], [-624, 654], [-624, 653], [-625, 653], [-625, 650], [-624, 650], [-624, 648], [-623, 648], [-623, 647]]}, "center": {"193-217": [-631, 650]}}, {"id": 2926, "name": "Discord Server Azgeda", "description": "", "links": {"discord": ["azgeda"]}, "path": {"252-258": [[-942, -315], [-883, -315], [-883, -328], [-941, -328]]}, "center": {"252-258": [-912, -321]}}, {"id": 2927, "name": "Napoleon symbol", "description": "This is the emblem of the great french emperor, Napoleon Bonapart.\n\nBorn August 15, 1769 in Ajaccio and died May 5, 1821 on the island of Saint Helena, Napoleon was a French soldier and statesman, first Emperor of the French from May 18, 1804 to April 6, 1814 and from March 20 to June 22, 1815, known under the name of Napoleon Iᵉʳ.\n\nHe is famous for the invasion of a big part of Europe.", "links": {}, "path": {"253-258": [[-460, 893], [-471, 935], [-495, 904], [-461, 901], [-458, 953], [-501, 950], [-503, 898], [-461, 900], [-460, 949], [-460, 914]]}, "center": {"253-258": [-487, 937]}}, {"id": 2928, "name": "Dorset Flag", "description": "The flag of dorset, also known as Saint Wite's Cross. Represents the English county of Dorset, which borders the neighbouring counties of Devon, Somerset, Wiltshire and Hampshire.", "links": {"website": ["https://en.wikipedia.org/wiki/Dorset"], "subreddit": ["Dorset", "ukonplace", "england", "ukplace"]}, "path": {"253-258": [[-333, -298], [-333, -292], [-321, -292], [-321, -298]]}, "center": {"253-258": [-327, -295]}}, -{"id": 2929, "name": "Gojid Heart", "description": "A basic heart shape, colored blue due to that being the blood color of the Gojids - an alien species appearing in the r/HFY web serial novel The Nature of Predators - which are shown nearby on the canvas", "links": {"subreddit": ["NatureofPredators"]}, "path": {"237-258": [[-1019, 13], [-1018, 13], [-1017, 14], [-1016, 13], [-1015, 13], [-1014, 14], [-1014, 15], [-1017, 18], [-1017, 20], [-1017, 18], [-1020, 15], [-1020, 14]]}, "center": {"237-258": [-1017, 15]}}, -{"id": 2930, "name": "BABYMETAL/FOXHOLE ALLIANCE", "description": "Art made by /r/BABYMETAL\n\nMade Possible through the FoxHole Alliance who fought the Lithuanian streamer LTU as BabyMetal made their escape to Germany.", "links": {"subreddit": ["BABYMETAL", "foxholegame"], "discord": ["babymetal", "foxhole"]}, "path": {"245-258": [[-884, -1000], [-884, -969], [-820, -969], [-820, -1000], [-847, -1000]]}, "center": {"245-258": [-852, -984]}}, -{"id": 2931, "name": "ElRichMC", "description": "ElRichMC es un youtuber español que actualmente cuenta con más de 2M de suscriptores en su canal de YouTube y más de 1.4M de seguidores en Twitch. Fue quien popularizó el Minecraft Técnico entre la comunidad de habla hispana. Conocido principalmente por su mundo Survival 1.3 y su serie de UHC España, tambien por haber creado EliteCraft y PermaDeath. \n\nQue GOD.", "links": {"website": ["https://www.youtube.com/@ElRichMC"]}, "path": {"250-258": [[-1076, -215], [-1062, -215], [-1062, -200], [-1076, -200]]}, "center": {"250-258": [-1069, -207]}}, -{"id": 2932, "name": "blink-182", "description": "The logo of the popular pop punk band blink-182.", "links": {"subreddit": ["Blink182"]}, "path": {"250-258": [[-1405, 2], [-1405, 11], [-1371, 11], [-1371, 2]]}, "center": {"250-258": [-1388, 7]}}, +{"id": 2929, "name": "Gojid Heart", "description": "A basic heart shape, colored blue due to that being the blood color of the Gojids - an alien species appearing in the r/HFY web serial novel The Nature of Predators - which are shown nearby on the canvas", "links": {"subreddit": ["NatureofPredators"]}, "path": {"237-258, T": [[-1019, 13], [-1018, 13], [-1017, 14], [-1016, 13], [-1015, 13], [-1014, 14], [-1014, 15], [-1017, 18], [-1017, 20], [-1017, 18], [-1020, 15], [-1020, 14]]}, "center": {"237-258, T": [-1017, 15]}}, +{"id": 2930, "name": "BABYMETAL/FOXHOLE ALLIANCE", "description": "Art made by /r/BABYMETAL\n\nMade Possible through the FoxHole Alliance who fought the Lithuanian streamer LTU as BabyMetal made their escape to Germany.", "links": {"subreddit": ["BABYMETAL", "foxholegame"], "discord": ["babymetal", "foxhole"]}, "path": {"245-258, T": [[-884, -1000], [-884, -969], [-820, -969], [-820, -1000], [-847, -1000]]}, "center": {"245-258, T": [-852, -984]}}, +{"id": 2931, "name": "ElRichMC", "description": "ElRichMC es un youtuber español que actualmente cuenta con más de 2M de suscriptores en su canal de YouTube y más de 1.4M de seguidores en Twitch. Fue quien popularizó el Minecraft Técnico entre la comunidad de habla hispana. Conocido principalmente por su mundo Survival 1.3 y su serie de UHC España, tambien por haber creado EliteCraft y PermaDeath. \n\nQue GOD.", "links": {"website": ["https://www.youtube.com/@ElRichMC"]}, "path": {"250-258, T": [[-1076, -215], [-1062, -215], [-1062, -200], [-1076, -200]]}, "center": {"250-258, T": [-1069, -207]}}, +{"id": 2932, "name": "blink-182", "description": "The logo of the popular pop punk band blink-182.", "links": {"subreddit": ["Blink182"]}, "path": {"250-258, T": [[-1405, 2], [-1405, 11], [-1371, 11], [-1371, 2]]}, "center": {"250-258, T": [-1388, 7]}}, {"id": 2933, "name": "\"AERG-Dis-Prism\" Alliance", "description": "\"AERG-Dis-Prism\" was an alliance formed by the Octoprism, AERGXUOS, and Disprisk communities.\n\nBefore establishing the alliance, they invaded eachother throughout Days 3 and 4, until Octoprism member SailorCorgi and AERGXUOS member StraightOuttaTilted came to reasoning.\n\nAfter some time, \"United Gacha Alliance\" and r/Switzerland established official alliances with Octoprism, making \"AERG-Dis-Prism\" protected for a long time coming until the end, reaching the final canvas.", "links": {"subreddit": ["OctoprismOfficial"]}, "path": {"154-177": [[-590, 229], [-590, 248], [-610, 248], [-610, 237], [-611, 236], [-610, 235], [-611, 234], [-611, 233], [-612, 232], [-611, 231], [-610, 230], [-609, 229]]}, "center": {"154-177": [-600, 238]}}, -{"id": 2934, "name": "Yotul", "description": "A Yotul from the web serial novel The Nature of Predators. An alien species uplifted by the main galactic federation of the setting, the Yotul are derided as \"primitives\" and apparently have an obsession with steam trains, something that has allowed them to obtain meme status within the story's fanbase.", "links": {"subreddit": ["NatureofPredators"]}, "path": {"119-258": [[-978, 20], [-976, 20], [-971, 25], [-971, 27], [-969, 29], [-966, 29], [-964, 27], [-964, 25], [-959, 20], [-957, 20], [-958, 21], [-958, 28], [-959, 29], [-959, 36], [-957, 38], [-958, 39], [-957, 40], [-958, 41], [-958, 42], [-961, 45], [-961, 46], [-965, 50], [-970, 50], [-974, 46], [-974, 45], [-977, 42], [-977, 41], [-978, 40], [-977, 39], [-978, 38], [-976, 36], [-976, 29], [-977, 28], [-977, 21]]}, "center": {"119-258": [-968, 39]}}, -{"id": 2935, "name": "Mongolmar", "description": "This sprite of Magmar, a Fire-type Pokémon from the Pokémon games, is a private joke in the community of content creator Fildrong. Mongolmar was implemented a few years ago as a emote on the Team Sale Discord server to express stupidity and cluelessness, mostly to give off a lighthearted feel to a message. He comes from a Nuzlocke series based on a randomised version of Pokémon Platinum, where the sprite was taken from.\n\nThis spot was to be stolen by Opera GX, as stated by a Tweet on their official page, Friday midday, but was ultimately taken over by the Fildrong community.", "links": {"website": ["https://www.youtube.com/@Fildrong", "https://www.twitch.tv/fildrong"], "discord": ["fildrong"]}, "path": {"55-258": [[252, -133], [252, -99], [276, -99], [276, -133]]}, "center": {"55-258": [264, -116]}}, -{"id": 2937, "name": "Farfadream", "description": "El mejor shipeo del 2023, farfadream mis papis", "links": {}, "path": {"250-258": [[-1103, -294], [-1105, -295], [-1105, -282], [-1077, -282], [-1076, -296], [-1094, -296], [-1091, -296], [-1106, -295], [-1105, -296]]}, "center": {"250-258": [-1085, -289]}}, +{"id": 2934, "name": "Yotul", "description": "A Yotul from the web serial novel The Nature of Predators. An alien species uplifted by the main galactic federation of the setting, the Yotul are derided as \"primitives\" and apparently have an obsession with steam trains, something that has allowed them to obtain meme status within the story's fanbase.", "links": {"subreddit": ["NatureofPredators"]}, "path": {"119-258, T": [[-978, 20], [-976, 20], [-971, 25], [-971, 27], [-969, 29], [-966, 29], [-964, 27], [-964, 25], [-959, 20], [-957, 20], [-958, 21], [-958, 28], [-959, 29], [-959, 36], [-957, 38], [-958, 39], [-957, 40], [-958, 41], [-958, 42], [-961, 45], [-961, 46], [-965, 50], [-970, 50], [-974, 46], [-974, 45], [-977, 42], [-977, 41], [-978, 40], [-977, 39], [-978, 38], [-976, 36], [-976, 29], [-977, 28], [-977, 21]]}, "center": {"119-258, T": [-968, 39]}}, +{"id": 2935, "name": "Mongolmar", "description": "This sprite of Magmar, a Fire-type Pokémon from the Pokémon games, is a private joke in the community of content creator Fildrong. Mongolmar was implemented a few years ago as a emote on the Team Sale Discord server to express stupidity and cluelessness, mostly to give off a lighthearted feel to a message. He comes from a Nuzlocke series based on a randomised version of Pokémon Platinum, where the sprite was taken from.\n\nThis spot was to be stolen by Opera GX, as stated by a Tweet on their official page, Friday midday, but was ultimately taken over by the Fildrong community.", "links": {"website": ["https://www.youtube.com/@Fildrong", "https://www.twitch.tv/fildrong"], "discord": ["fildrong"]}, "path": {"55-258, T": [[252, -133], [252, -99], [276, -99], [276, -133]]}, "center": {"55-258, T": [264, -116]}}, +{"id": 2937, "name": "Farfadream", "description": "El mejor shipeo del 2023, farfadream mis papis", "links": {}, "path": {"250-258, T": [[-1103, -294], [-1105, -295], [-1105, -282], [-1077, -282], [-1076, -296], [-1094, -296], [-1091, -296], [-1106, -295], [-1105, -296]]}, "center": {"250-258, T": [-1085, -289]}}, {"id": 2938, "name": "Windows 96 logo", "description": "Windows 96 is a website recreating the Windows 9x experience in the browser.", "links": {"website": ["https://windows96.net"], "subreddit": ["Windows_96"], "discord": ["windows-96-619868741395546117"]}, "path": {"211": [[447, 981], [451, 981], [456, 977], [462, 980], [462, 989], [460, 991], [457, 990], [451, 991], [451, 989], [447, 989], [445, 986], [445, 980]]}, "center": {"211": [456, 984]}}, -{"id": 2940, "name": "Pinkie Pie", "description": "One of the main characters in the popular cartoon show, My Little Pony, produced by Hasbro in conjunction with DHX Studios. The pixel art was drawn by a brony faction called Secret r/place Brownies, usually shortened to Sr/pB.", "links": {"discord": ["6BPJ6xYk"]}, "path": {"218-258": [[-302, 944], [-303, 944], [-305, 942], [-311, 941], [-312, 940], [-315, 942], [-316, 945], [-318, 947], [-318, 951], [-314, 952], [-310, 954], [-311, 955], [-312, 954], [-316, 954], [-319, 958], [-319, 959], [-317, 961], [-317, 963], [-315, 965], [-314, 965], [-314, 966], [-315, 967], [-315, 968], [-314, 969], [-310, 969], [-309, 968], [-309, 967], [-310, 966], [-310, 965], [-308, 964], [-306, 964], [-305, 964], [-303, 966], [-302, 965], [-300, 964], [-302, 962], [-303, 960], [-304, 955], [-304, 953], [-302, 951], [-300, 950], [-294, 947], [-292, 945], [-289, 944], [-289, 943], [-288, 942], [-288, 938], [-289, 937], [-291, 938], [-294, 939], [-298, 939], [-301, 942]]}, "center": {"218-258": [-308, 948]}}, +{"id": 2940, "name": "Pinkie Pie", "description": "One of the main characters in the popular cartoon show, My Little Pony, produced by Hasbro in conjunction with DHX Studios. The pixel art was drawn by a brony faction called Secret r/place Brownies, usually shortened to Sr/pB.", "links": {"discord": ["6BPJ6xYk"]}, "path": {"218-258, T": [[-302, 944], [-303, 944], [-305, 942], [-311, 941], [-312, 940], [-315, 942], [-316, 945], [-318, 947], [-318, 951], [-314, 952], [-310, 954], [-311, 955], [-312, 954], [-316, 954], [-319, 958], [-319, 959], [-317, 961], [-317, 963], [-315, 965], [-314, 965], [-314, 966], [-315, 967], [-315, 968], [-314, 969], [-310, 969], [-309, 968], [-309, 967], [-310, 966], [-310, 965], [-308, 964], [-306, 964], [-305, 964], [-303, 966], [-302, 965], [-300, 964], [-302, 962], [-303, 960], [-304, 955], [-304, 953], [-302, 951], [-300, 950], [-294, 947], [-292, 945], [-289, 944], [-289, 943], [-288, 942], [-288, 938], [-289, 937], [-291, 938], [-294, 939], [-298, 939], [-301, 942]]}, "center": {"218-258, T": [-308, 948]}}, {"id": 2941, "name": "GEII", "description": "GEII is the name of a french university program.\nIt's been created by the ig account : @ge2i_meme", "links": {}, "path": {"253-258": [[-1253, -5], [-1236, -5], [-1236, 1], [-1253, 1]]}, "center": {"253-258": [-1244, -2]}}, -{"id": 2942, "name": "Farfadox", "description": "Youtuber de Minecraft Argentino, también hace streams en Twitch (cuenta con 1,5M seguidores). Es conocido como el \"Caballero de la Netherite\" en su lore, también por ser bueno en PVP y alto conocimiento tecnico de MC, forma parte del \"Team Tryhard\", cuenta con un servidor para subs: Farfania. Por último tiene una versión alterna meme de él conocida como FOFA.", "links": {"website": ["https://www.youtube.com/@Farfadox"]}, "path": {"250-258": [[-1076, -295], [-1091, -295], [-1091, -281], [-1076, -281], [-1076, -286]]}, "center": {"250-258": [-1083, -288]}}, -{"id": 2943, "name": "Vikri", "description": "Vikri is a Venlil character from the Nature of Predators fanfic \"Hunting with Predators\". He has a blue section of one of his eyes and dark fur with light dots. Over the course of the story he appears in, he attains the moniker of \"the honeybadger\"", "links": {"subreddit": ["NatureofPredators"]}, "path": {"153-258": [[-952, 20], [-955, 20], [-957, 22], [-957, 28], [-958, 29], [-958, 36], [-956, 38], [-957, 39], [-956, 40], [-957, 41], [-957, 42], [-956, 42], [-955, 43], [-948, 43], [-947, 42], [-947, 41], [-946, 40], [-946, 35], [-947, 34], [-950, 31], [-951, 31], [-952, 30], [-953, 30], [-954, 29], [-955, 28], [-954, 27], [-954, 25], [-953, 25], [-953, 22], [-952, 21]]}, "center": {"153-258": [-951, 37]}}, -{"id": 2944, "name": "Babymetal", "description": "Japanese group consisting of the members SU-METAL, MOAMETAL and MOMOMETAL. Their unique fusion with metal and j-pop gained international popularity", "links": {"website": ["https://babymetal.com/"], "subreddit": ["babymetal"]}, "path": {"250-258": [[-891, -1000], [-889, -961], [-799, -963], [-800, -999]]}, "center": {"250-258": [-871, -981]}}, -{"id": 2945, "name": "Vagos from LuckyV", "description": "Name of the latino gang living in Vespucci, Los Santos. Whole setting takes place on the german GTA roleplay server LuckyV", "links": {"website": ["https://luckyv.de/"]}, "path": {"250-258": [[-1344, 825], [-1333, 845], [-1309, 845], [-1309, 837], [-1328, 837], [-1323, 825]]}, "center": {"250-258": [-1333, 832]}}, +{"id": 2942, "name": "Farfadox", "description": "Youtuber de Minecraft Argentino, también hace streams en Twitch (cuenta con 1,5M seguidores). Es conocido como el \"Caballero de la Netherite\" en su lore, también por ser bueno en PVP y alto conocimiento tecnico de MC, forma parte del \"Team Tryhard\", cuenta con un servidor para subs: Farfania. Por último tiene una versión alterna meme de él conocida como FOFA.", "links": {"website": ["https://www.youtube.com/@Farfadox"]}, "path": {"250-258, T": [[-1076, -295], [-1091, -295], [-1091, -281], [-1076, -281], [-1076, -286]]}, "center": {"250-258, T": [-1083, -288]}}, +{"id": 2943, "name": "Vikri", "description": "Vikri is a Venlil character from the Nature of Predators fanfic \"Hunting with Predators\". He has a blue section of one of his eyes and dark fur with light dots. Over the course of the story he appears in, he attains the moniker of \"the honeybadger\"", "links": {"subreddit": ["NatureofPredators"]}, "path": {"153-258, T": [[-952, 20], [-955, 20], [-957, 22], [-957, 28], [-958, 29], [-958, 36], [-956, 38], [-957, 39], [-956, 40], [-957, 41], [-957, 42], [-956, 42], [-955, 43], [-948, 43], [-947, 42], [-947, 41], [-946, 40], [-946, 35], [-947, 34], [-950, 31], [-951, 31], [-952, 30], [-953, 30], [-954, 29], [-955, 28], [-954, 27], [-954, 25], [-953, 25], [-953, 22], [-952, 21]]}, "center": {"153-258, T": [-951, 37]}}, +{"id": 2944, "name": "Babymetal", "description": "Japanese group consisting of the members SU-METAL, MOAMETAL and MOMOMETAL. Their unique fusion with metal and j-pop gained international popularity", "links": {"website": ["https://babymetal.com/"], "subreddit": ["babymetal"]}, "path": {"250-258, T": [[-891, -1000], [-889, -961], [-799, -963], [-800, -999]]}, "center": {"250-258, T": [-871, -981]}}, +{"id": 2945, "name": "Vagos from LuckyV", "description": "Name of the latino gang living in Vespucci, Los Santos. Whole setting takes place on the german GTA roleplay server LuckyV", "links": {"website": ["https://luckyv.de/"]}, "path": {"250-258, T": [[-1344, 825], [-1333, 845], [-1309, 845], [-1309, 837], [-1328, 837], [-1323, 825]]}, "center": {"250-258, T": [-1333, 832]}}, {"id": 2946, "name": "The Muse Duck", "description": "A survivor of the Duck Swarm who was for short time protected by the Muse logo.", "links": {}, "path": {"17-34": [[-365, 36], [-364, 35], [-363, 35], [-363, 33], [-360, 33], [-360, 34], [-359, 34], [-359, 36], [-360, 36], [-360, 37], [-365, 37]]}, "center": {"17-34": [-361, 36]}}, -{"id": 2947, "name": "Furry La Plata", "description": "furry la plata is an argentinian furry community in the city of buenos aires managed by GoldenFox, DanteTheWah, NormaN and Panterix, Idea from reddit place by ReallyCrazy", "links": {"website": ["https://es.wikifur.com/wiki/Furry_La_Plata"], "subreddit": ["FurryLaPlata"]}, "path": {"229-258": [[-1086, -714], [-1086, -704], [-1103, -704], [-1103, -714]]}, "center": {"229-258": [-1094, -709]}}, -{"id": 2948, "name": "CrisGreen", "description": "Minecraft skin from the handsome, troll, funado and creative Argentinian YouTuber Crisgreen, originated by the PvP team \"Pony Swag (2014)\", aka \"CristoVerde\" \"Crigri\", composes music in his free time for his vocalist/maid ElRichMc & some trollin'", "links": {"website": ["https://www.youtube.com/@Crisgreen/videos"]}, "path": {"250-258": [[-1060, -214], [-1061, -215], [-1061, -199], [-1045, -199], [-1045, -215]]}, "center": {"250-258": [-1053, -207]}}, -{"id": 2949, "name": "Faluche", "description": "The faluche is the traditional hat of the students from France.", "links": {"website": ["https://faluche.info/"]}, "path": {"20-258": [[-398, 393], [-409, 392], [-420, 399], [-420, 408], [-415, 414], [-410, 408], [-397, 409], [-390, 399]]}, "center": {"20-258": [-406, 400]}}, -{"id": 2950, "name": "Powerwolf logo", "description": "The logo of the German power metal band Powerwolf", "links": {"website": ["https://www.powerwolf.net/"], "subreddit": ["Powerwolf"], "discord": ["kZRW7DXjne"]}, "path": {"250-258": [[1114, -28], [1122, -27], [1123, -14], [1125, -13], [1118, -3], [1114, -2], [1108, -11], [1115, -27], [1117, -28]]}, "center": {"250-258": [1116, -13]}}, -{"id": 2951, "name": "Faluche", "description": "The faluche is the traditional hat of the students from France.", "links": {"website": ["https://faluche.info/"], "subreddit": ["placeFR", "france"]}, "path": {"159-258": [[-401, 339], [-398, 341], [-398, 338], [-390, 338], [-390, 337], [-392, 334], [-399, 334]]}, "center": {"159-258": [-396, 336]}}, +{"id": 2947, "name": "Furry La Plata", "description": "furry la plata is an argentinian furry community in the city of buenos aires managed by GoldenFox, DanteTheWah, NormaN and Panterix, Idea from reddit place by ReallyCrazy", "links": {"website": ["https://es.wikifur.com/wiki/Furry_La_Plata"], "subreddit": ["FurryLaPlata"]}, "path": {"229-258, T": [[-1086, -714], [-1086, -704], [-1103, -704], [-1103, -714]]}, "center": {"229-258, T": [-1094, -709]}}, +{"id": 2948, "name": "CrisGreen", "description": "Minecraft skin from the handsome, troll, funado and creative Argentinian YouTuber Crisgreen, originated by the PvP team \"Pony Swag (2014)\", aka \"CristoVerde\" \"Crigri\", composes music in his free time for his vocalist/maid ElRichMc & some trollin'", "links": {"website": ["https://www.youtube.com/@Crisgreen/videos"]}, "path": {"250-258, T": [[-1060, -214], [-1061, -215], [-1061, -199], [-1045, -199], [-1045, -215]]}, "center": {"250-258, T": [-1053, -207]}}, +{"id": 2949, "name": "Faluche", "description": "The faluche is the traditional hat of the students from France.", "links": {"website": ["https://faluche.info/"]}, "path": {"20-258, T": [[-398, 393], [-409, 392], [-420, 399], [-420, 408], [-415, 414], [-410, 408], [-397, 409], [-390, 399]]}, "center": {"20-258, T": [-406, 400]}}, +{"id": 2950, "name": "Powerwolf logo", "description": "The logo of the German power metal band Powerwolf", "links": {"website": ["https://www.powerwolf.net/"], "subreddit": ["Powerwolf"], "discord": ["kZRW7DXjne"]}, "path": {"250-258, T": [[1114, -28], [1122, -27], [1123, -14], [1125, -13], [1118, -3], [1114, -2], [1108, -11], [1115, -27], [1117, -28]]}, "center": {"250-258, T": [1116, -13]}}, +{"id": 2951, "name": "Faluche", "description": "The faluche is the traditional hat of the students from France.", "links": {"website": ["https://faluche.info/"], "subreddit": ["placeFR", "france"]}, "path": {"159-258, T": [[-401, 339], [-398, 341], [-398, 338], [-390, 338], [-390, 337], [-392, 334], [-399, 334]]}, "center": {"159-258, T": [-396, 336]}}, {"id": 2952, "name": "Femboy flag", "description": "Unofficial flag of femboys", "links": {"website": ["https://en.wikipedia.org/wiki/File:Femboy_flag.svg#filelinks"], "subreddit": ["femboy"]}, "path": {"214-224": [[-269, 908], [-269, 914], [-259, 914], [-259, 908]]}, "center": {"214-224": [-264, 911]}}, -{"id": 2953, "name": "World War One Memorial", "description": "This is a memorial for the peace between the French and the German, with the French being in blue on the left and the Germans being on the right in green.\n\nWorld War I or the First World War (28 July 1914 – 11 November 1918), was one of the deadliest global conflicts in history. It was fought between two coalitions, the Allies and the Central Powers. Fighting took place throughout Europe, the Middle East, Africa, the Pacific, and parts of Asia. An estimated 9 million soldiers were killed in combat, plus another 23 million wounded, while 5 million civilians died as a result of military action, hunger, and disease. Millions more died as a result of genocide.", "links": {"website": ["https://en.wikipedia.org/wiki/World_War_I"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"209-258": [[1082, -251], [1082, -248], [1083, -247], [1082, -246], [1081, -246], [1080, -245], [1080, -233], [1079, -232], [1079, -229], [1080, -228], [1083, -227], [1083, -224], [1082, -223], [1082, -222], [1083, -221], [1085, -220], [1085, -216], [1084, -215], [1084, -214], [1083, -213], [1082, -212], [1082, -211], [1083, -210], [1139, -210], [1139, -212], [1138, -213], [1137, -214], [1137, -215], [1136, -216], [1136, -220], [1137, -220], [1138, -221], [1139, -222], [1139, -223], [1138, -224], [1138, -227], [1140, -227], [1141, -228], [1142, -229], [1142, -232], [1141, -233], [1141, -242], [1140, -243], [1140, -244], [1139, -245], [1139, -246], [1138, -247], [1139, -248], [1138, -249], [1139, -250], [1139, -251], [1138, -252], [1138, -253], [1137, -254], [1136, -255], [1135, -256], [1136, -257], [1135, -258], [1134, -258], [1134, -259], [1133, -260], [1132, -259], [1132, -258], [1131, -257], [1131, -256], [1130, -255], [1129, -254], [1128, -253], [1128, -252], [1127, -251], [1127, -250], [1127, -249], [1128, -248], [1128, -246], [1129, -245], [1130, -244], [1129, -243], [1129, -242], [1127, -241], [1127, -240], [1126, -239], [1126, -237], [1124, -237], [1123, -238], [1122, -238], [1118, -238], [1117, -239], [1111, -239], [1110, -238], [1111, -237], [1113, -237], [1114, -236], [1117, -236], [1119, -235], [1122, -234], [1125, -233], [1125, -232], [1124, -231], [1123, -230], [1122, -229], [1121, -228], [1121, -225], [1122, -224], [1124, -223], [1124, -219], [1123, -219], [1123, -222], [1122, -223], [1121, -224], [1120, -225], [1120, -226], [1119, -227], [1117, -228], [1115, -229], [1112, -229], [1110, -230], [1109, -229], [1105, -229], [1104, -228], [1103, -228], [1102, -227], [1101, -226], [1100, -225], [1100, -224], [1099, -223], [1098, -219], [1097, -219], [1097, -223], [1098, -223], [1099, -224], [1100, -226], [1100, -228], [1099, -229], [1098, -230], [1097, -231], [1096, -232], [1096, -233], [1098, -233], [1099, -234], [1101, -234], [1102, -235], [1103, -235], [1104, -236], [1106, -236], [1107, -236], [1108, -237], [1109, -237], [1110, -238], [1109, -239], [1104, -239], [1103, -238], [1098, -238], [1097, -237], [1095, -237], [1095, -239], [1094, -240], [1093, -241], [1093, -242], [1092, -243], [1092, -245], [1093, -246], [1093, -249], [1094, -250], [1094, -252], [1093, -253], [1092, -254], [1091, -255], [1090, -256], [1086, -256], [1085, -255], [1084, -254], [1083, -253], [1083, -252]]}, "center": {"209-258": [1110, -220]}}, +{"id": 2953, "name": "World War One Memorial", "description": "This is a memorial for the peace between the French and the German, with the French being in blue on the left and the Germans being on the right in green.\n\nWorld War I or the First World War (28 July 1914 – 11 November 1918), was one of the deadliest global conflicts in history. It was fought between two coalitions, the Allies and the Central Powers. Fighting took place throughout Europe, the Middle East, Africa, the Pacific, and parts of Asia. An estimated 9 million soldiers were killed in combat, plus another 23 million wounded, while 5 million civilians died as a result of military action, hunger, and disease. Millions more died as a result of genocide.", "links": {"website": ["https://en.wikipedia.org/wiki/World_War_I"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"209-258, T": [[1082, -251], [1082, -248], [1083, -247], [1082, -246], [1081, -246], [1080, -245], [1080, -233], [1079, -232], [1079, -229], [1080, -228], [1083, -227], [1083, -224], [1082, -223], [1082, -222], [1083, -221], [1085, -220], [1085, -216], [1084, -215], [1084, -214], [1083, -213], [1082, -212], [1082, -211], [1083, -210], [1139, -210], [1139, -212], [1138, -213], [1137, -214], [1137, -215], [1136, -216], [1136, -220], [1137, -220], [1138, -221], [1139, -222], [1139, -223], [1138, -224], [1138, -227], [1140, -227], [1141, -228], [1142, -229], [1142, -232], [1141, -233], [1141, -242], [1140, -243], [1140, -244], [1139, -245], [1139, -246], [1138, -247], [1139, -248], [1138, -249], [1139, -250], [1139, -251], [1138, -252], [1138, -253], [1137, -254], [1136, -255], [1135, -256], [1136, -257], [1135, -258], [1134, -258], [1134, -259], [1133, -260], [1132, -259], [1132, -258], [1131, -257], [1131, -256], [1130, -255], [1129, -254], [1128, -253], [1128, -252], [1127, -251], [1127, -250], [1127, -249], [1128, -248], [1128, -246], [1129, -245], [1130, -244], [1129, -243], [1129, -242], [1127, -241], [1127, -240], [1126, -239], [1126, -237], [1124, -237], [1123, -238], [1122, -238], [1118, -238], [1117, -239], [1111, -239], [1110, -238], [1111, -237], [1113, -237], [1114, -236], [1117, -236], [1119, -235], [1122, -234], [1125, -233], [1125, -232], [1124, -231], [1123, -230], [1122, -229], [1121, -228], [1121, -225], [1122, -224], [1124, -223], [1124, -219], [1123, -219], [1123, -222], [1122, -223], [1121, -224], [1120, -225], [1120, -226], [1119, -227], [1117, -228], [1115, -229], [1112, -229], [1110, -230], [1109, -229], [1105, -229], [1104, -228], [1103, -228], [1102, -227], [1101, -226], [1100, -225], [1100, -224], [1099, -223], [1098, -219], [1097, -219], [1097, -223], [1098, -223], [1099, -224], [1100, -226], [1100, -228], [1099, -229], [1098, -230], [1097, -231], [1096, -232], [1096, -233], [1098, -233], [1099, -234], [1101, -234], [1102, -235], [1103, -235], [1104, -236], [1106, -236], [1107, -236], [1108, -237], [1109, -237], [1110, -238], [1109, -239], [1104, -239], [1103, -238], [1098, -238], [1097, -237], [1095, -237], [1095, -239], [1094, -240], [1093, -241], [1093, -242], [1092, -243], [1092, -245], [1093, -246], [1093, -249], [1094, -250], [1094, -252], [1093, -253], [1092, -254], [1091, -255], [1090, -256], [1086, -256], [1085, -255], [1084, -254], [1083, -253], [1083, -252]]}, "center": {"209-258, T": [1110, -220]}}, {"id": 2954, "name": "Danganronpa", "description": "The mascot of the game franchise, Danganronpa.\n\nMonokuma is a stuffed robotic bear and the self-proclaimed Headmaster of Hope's Peak Academy who instigates the Killing School Life featured in Danganronpa: Trigger Happy Havoc.", "links": {"website": ["https://danganronpa.fandom.com/wiki/Monokuma#Appearance"], "subreddit": ["danganronpa"]}, "path": {"105": [[-539, 357], [-532, 357], [-532, 365], [-539, 365]]}, "center": {"105": [-535, 361]}}, -{"id": 2956, "name": "SIGNALIS LSTR", "description": "SIGNALIS is a survival horror top down shooter game inspired by Resident Evil 1, created by two German developers, the art shows the logo of the main character Elster", "links": {"website": ["https://[http://rose-engine.org](http://rose-engine.org/signalis/)"], "subreddit": ["signalis"], "discord": ["signalis"]}, "path": {"243-258": [[35, 972], [36, 972], [50, 972], [50, 992], [35, 992]]}, "center": {"243-258": [43, 982]}}, -{"id": 2957, "name": "Bring Me The Horizon", "description": "An unicursal hexagram - the well-known logo of the widely popular metalcore band Bring Me The Horizon. Made with love by the r/bringmethehorizon community.", "links": {"subreddit": ["bringmethehorizon"], "discord": ["bmthofficial"]}, "path": {"250-258": [[603, -487], [603, -535], [645, -535], [646, -487]]}, "center": {"250-258": [624, -511]}}, -{"id": 2958, "name": "Cupkuma", "description": "Also called Cuppokumma and Monocuppa is a collab between r/Cuphead and r/danganronpa including the characters Cuphead(from cuphead) and Monokuma (from danganronpa) He had a sibiling called Mugsami, but it got removed", "links": {"subreddit": ["danganronpa", "Cuphead"], "discord": ["H98J7uEb"]}, "path": {"221-258": [[1018, -811], [1019, -812], [1020, -813], [1024, -813], [1025, -812], [1026, -811], [1027, -810], [1027, -809], [1031, -809], [1032, -810], [1033, -811], [1034, -812], [1036, -812], [1037, -811], [1038, -810], [1039, -809], [1039, -808], [1038, -807], [1039, -806], [1040, -805], [1040, -798], [1039, -797], [1038, -796], [1037, -795], [1036, -794], [1025, -794], [1024, -795], [1023, -796], [1022, -797], [1021, -798], [1021, -804], [1020, -805], [1019, -806], [1018, -806], [1017, -807], [1017, -810]]}, "center": {"221-258": [1029, -801]}}, -{"id": 2959, "name": "Isaac's Bear", "description": "Teddy bear created in honor of Isaac. \nThis is for our partner, Isaac. RIP 🧸\n\nHonduras 🫱🏻‍🫲🏼 Isaac\nLizy", "links": {"subreddit": ["placehn"]}, "path": {"250-258": [[-867, 393], [-831, 392], [-829, 430], [-867, 429], [-867, 392]]}, "center": {"250-258": [-848, 411]}}, -{"id": 2960, "name": "Casa DiCenzo", "description": "Community for twitch streamer and roleplayer, Zetark.", "links": {"website": ["https://www.twitch.tv/zetark"], "subreddit": ["casadicenzo"], "discord": ["casadicenzo"]}, "path": {"168-258": [[-531, 965], [-531, 970], [-501, 970], [-501, 957], [-510, 957], [-510, 965]]}, "center": {"168-258": [-506, 962]}}, +{"id": 2956, "name": "SIGNALIS LSTR", "description": "SIGNALIS is a survival horror top down shooter game inspired by Resident Evil 1, created by two German developers, the art shows the logo of the main character Elster", "links": {"website": ["https://[http://rose-engine.org](http://rose-engine.org/signalis/)"], "subreddit": ["signalis"], "discord": ["signalis"]}, "path": {"243-258, T": [[35, 972], [36, 972], [50, 972], [50, 992], [35, 992]]}, "center": {"243-258, T": [43, 982]}}, +{"id": 2957, "name": "Bring Me The Horizon", "description": "An unicursal hexagram - the well-known logo of the widely popular metalcore band Bring Me The Horizon. Made with love by the r/bringmethehorizon community.", "links": {"subreddit": ["bringmethehorizon"], "discord": ["bmthofficial"]}, "path": {"250-258, T": [[603, -487], [603, -535], [645, -535], [646, -487]]}, "center": {"250-258, T": [624, -511]}}, +{"id": 2958, "name": "Cupkuma", "description": "Also called Cuppokumma and Monocuppa is a collab between r/Cuphead and r/danganronpa including the characters Cuphead(from cuphead) and Monokuma (from danganronpa) He had a sibiling called Mugsami, but it got removed", "links": {"subreddit": ["danganronpa", "Cuphead"], "discord": ["H98J7uEb"]}, "path": {"221-258, T": [[1018, -811], [1019, -812], [1020, -813], [1024, -813], [1025, -812], [1026, -811], [1027, -810], [1027, -809], [1031, -809], [1032, -810], [1033, -811], [1034, -812], [1036, -812], [1037, -811], [1038, -810], [1039, -809], [1039, -808], [1038, -807], [1039, -806], [1040, -805], [1040, -798], [1039, -797], [1038, -796], [1037, -795], [1036, -794], [1025, -794], [1024, -795], [1023, -796], [1022, -797], [1021, -798], [1021, -804], [1020, -805], [1019, -806], [1018, -806], [1017, -807], [1017, -810]]}, "center": {"221-258, T": [1029, -801]}}, +{"id": 2959, "name": "Isaac's Bear", "description": "Teddy bear created in honor of Isaac. \nThis is for our partner, Isaac. RIP 🧸\n\nHonduras 🫱🏻‍🫲🏼 Isaac\nLizy", "links": {"subreddit": ["placehn"]}, "path": {"250-258, T": [[-867, 393], [-831, 392], [-829, 430], [-867, 429], [-867, 392]]}, "center": {"250-258, T": [-848, 411]}}, +{"id": 2960, "name": "Casa DiCenzo", "description": "Community for twitch streamer and roleplayer, Zetark.", "links": {"website": ["https://www.twitch.tv/zetark"], "subreddit": ["casadicenzo"], "discord": ["casadicenzo"]}, "path": {"168-258, T": [[-531, 965], [-531, 970], [-501, 970], [-501, 957], [-510, 957], [-510, 965]]}, "center": {"168-258, T": [-506, 962]}}, {"id": 2961, "name": "The Red Nose", "description": "After being invaded by LTU the Foxhole group decided to place a red nose onto the duke's face as a last act of defiance. \nThought A medium sized streamer named TheXanos who was allied with LTURepublic put up a great defence and defended the nose for 3 days.", "links": {"website": ["https://www.twitch.tv/thexanos"], "subreddit": ["foxholegame", "BABYMETAL", "TheXanos", "LTURepublic"]}, "path": {"188-215, 235-249": [[-105, 60], [-107, 63], [-105, 67], [-100, 66], [-102, 61]]}, "center": {"188-215, 235-249": [-104, 63]}}, {"id": 2962, "name": "HIVEMIND", "description": "HIVEMIND, a YouTube channel based around rap music and comedy featuring Riley Savage, Graydon Weaver, DJ Grant, and Dignan Zazoomba.", "links": {"website": ["https://www.youtube.com/@HIVEMINDTV"], "subreddit": ["HivemindTV"]}, "path": {"251-258": [[1441, 19], [1446, 19], [1446, 26], [1441, 26]]}, "center": {"251-258": [1444, 23]}}, {"id": 2963, "name": "Small Argentinosaurus", "description": "Small and fast drawing of a Argentinosaurus huinculensis, a dinosaur that lived in the Cretaceous period, considered the largest land animal that ever walked the earth.", "links": {"website": ["https://es.wikipedia.org/wiki/Argentinosaurus_huinculensis"], "subreddit": ["PlaceArg"], "discord": ["PlaceArg"]}, "path": {"252": [[1092, 978], [1096, 997], [1129, 997], [1124, 977], [1101, 971]]}, "center": {"252": [1106, 985]}}, -{"id": 2964, "name": "Call Me What You Like Cover", "description": "The album cover for the band Lovejoy's single Call Me What You Like.", "links": {}, "path": {"250-258": [[500, 499], [464, 499], [464, 537], [500, 537]]}, "center": {"250-258": [482, 518]}}, -{"id": 2965, "name": "Virtuous Treaty", "description": "The Virtuous Treaty is a sword from the game NieR:Automata, wielded by protagonist 2B.", "links": {"website": ["https://nier.fandom.com/wiki/Virtuous_Treaty"], "subreddit": ["nier", "Berserk"], "discord": ["M699v8xSqz"]}, "path": {"165-258": [[502, 924], [502, 932], [501, 932], [501, 934], [502, 934], [502, 943], [505, 943], [505, 951], [509, 951], [509, 945], [510, 945], [510, 934], [506, 934], [506, 932], [505, 932], [505, 924]]}, "center": {"165-258": [506, 939]}}, +{"id": 2964, "name": "Call Me What You Like Cover", "description": "The album cover for the band Lovejoy's single Call Me What You Like.", "links": {}, "path": {"250-258, T": [[500, 499], [464, 499], [464, 537], [500, 537]]}, "center": {"250-258, T": [482, 518]}}, +{"id": 2965, "name": "Virtuous Treaty", "description": "The Virtuous Treaty is a sword from the game NieR:Automata, wielded by protagonist 2B.", "links": {"website": ["https://nier.fandom.com/wiki/Virtuous_Treaty"], "subreddit": ["nier", "Berserk"], "discord": ["M699v8xSqz"]}, "path": {"165-258, T": [[502, 924], [502, 932], [501, 932], [501, 934], [502, 934], [502, 943], [505, 943], [505, 951], [509, 951], [509, 945], [510, 945], [510, 934], [506, 934], [506, 932], [505, 932], [505, 924]]}, "center": {"165-258, T": [506, 939]}}, {"id": 2966, "name": "Zootopia", "description": "Zootopia (titled Zootropolis or Zoomania in various regions) is a 2016 American computer-animated buddy cop action comedy film produced by Walt Disney Animation Studios and released by Walt Disney Pictures\n\nIt is a film extremely appreciated by the furry community, which has decided to dedicate a place to it on the r/place", "links": {"website": ["https://en.wikipedia.org/wiki/Zootopia"], "subreddit": ["zootopia"]}, "path": {"201": [[-1143, 211], [-1143, 221], [-1149, 221], [-1149, 226], [-1119, 226], [-1119, 221], [-1128, 221], [-1128, 220], [-1128, 219], [-1127, 219], [-1127, 218], [-1126, 218], [-1126, 212], [-1127, 211], [-1127, 212], [-1128, 212], [-1128, 213], [-1129, 213], [-1129, 214], [-1131, 214], [-1132, 214], [-1132, 213], [-1133, 213], [-1133, 212], [-1134, 212], [-1134, 211]]}, "center": {"201": [-1136, 219]}}, {"id": 2967, "name": "Commu salé - Mogondrong", "description": "L'un des symboles de la Commu Salé du Youtuber Francophone Fildrong.", "links": {}, "path": {"257-258": [[252, -133], [276, -133], [276, -99], [252, -99]]}, "center": {"257-258": [264, -116]}}, -{"id": 2968, "name": "Nessie - The Loch Ness Monster", "description": "Made by r/ukOnPlace, this Loch Ness Monster was made to involve the more northern uk as most artwork did not include them. Nessie stands completely rouge and against templates, but was still pulled off and loved by many members of r/ukOnPlace.", "links": {"subreddit": ["ukOnPlace"], "discord": ["vfaqA9yr"]}, "path": {"243-252": [[1001, 886], [1001, 896], [1016, 896], [1016, 887], [1016, 886]]}, "center": {"243-252": [1009, 891]}}, -{"id": 2969, "name": "Paprika", "description": "Paprika is one of the base roster characters of Them's Fightin' Herds, an indie fighting game developed by Mane6. This art depicts her face, which wasn't able to be completed because the whiteout started as she was being built, but she is still recognizable.\n\nIt is unknown how Paprika gained the title Champion of the Highlands, as she is an outlier amongst her own people, even if she DOES travel with them... whether that's beneficiary to the other alpaca... Paprika doesn't care.\n\nHigh in the Huacaya Mountains, alpaca roam though inhospitable wilderness as their ancestors have since the dawn of time. The harsh, barren environment leaves little room for any pursuits other than raw survival.\n\nBut there is one among them who eschews their sober, serious attitude. Her name is Paprika, and she's brimming with vigorous affection. Some say she aims to fill the world with love the land never had for her, but whatever her reasons, she feels compelled to share all she has and more, whether you're willing or not.\n\nPaprika is a basket case and a whole bag of tricks, tossing a variety of gifts and zipping around the stage faster than anyone is able to keep track of. Crushing embraces and surprising kisses make for some of her deadliest techniques. Once she decides you're the love of her life, there can be no escape.", "links": {"website": ["https://www.mane6.com/characters/paprika/"], "subreddit": ["ThemsFightinHerds", "IndieAlliance"], "discord": ["tfh", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"250-258": [[-655, 389], [-655, 392], [-656, 392], [-656, 395], [-653, 395], [-650, 397], [-648, 395], [-648, 392], [-645, 389], [-645, 388], [-650, 388], [-650, 389]]}, "center": {"250-258": [-651, 392]}}, -{"id": 2970, "name": "Flag of Listenbourg", "description": "Listenbourg is a fictional country created as the subject of an internet meme in October 2022, which depicts it as an extension of the Iberian Peninsula. French Twitter user Gaspard Hoelscher shared a doctored map of Europe with a red arrow pointing to the outline of a pasted country adjacent to Portugal and Spain, and joked that Americans would not be able to name the country.", "links": {"website": ["https://listenbourg.lt/"], "subreddit": ["Listenbourg"]}, "path": {"250-258": [[-501, 900], [-500, 948], [-457, 949], [-459, 900]]}, "center": {"250-258": [-479, 922]}}, -{"id": 2972, "name": "Pirutastic", "description": "Argentinian streamer, from Venado Tuerto, aka Chototastic, Mufatastic & \"GordoPut0\", Great friend and partner of the famous and innocent YouTuber called \"la boina\" 🚬", "links": {"website": ["https://www.twitch.tv/pirutastic"]}, "path": {"250-258": [[-1090, -214], [-1077, -214], [-1077, -200], [-1090, -200]]}, "center": {"250-258": [-1083, -207]}}, -{"id": 2974, "name": "Invisible disabilities", "description": "The ribbons below represent several diseases: IBD, ankylosing spondylitis, ADHD, ASD. \n80% of people with disabilities have an invisible disability. The two creators of this project are suffering from various illnesses. We were able to achieve it with the help of the French discord #NotImaginary", "links": {"website": ["https://www.agefiph.fr/actualites-handicap/secteur-public-un-guide-pour-regarder-le-handicap-invisible", "https://www.afa.asso.fr", "https://www.spondy.fr"], "subreddit": ["handicap", "disability", "TDAH", "MICI", "ankylosingspondylitis", "adhd", "TSA", "ASD", "invisibledisability", "projetfrance", "pasimaginaire", "crohn", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"214-258": [[1001, -179], [1000, -178], [996, -178], [996, -175], [995, -174], [995, -135], [996, -134], [996, -131], [999, -131], [1000, -130], [1036, -130], [1036, -179]]}, "center": {"214-258": [1016, -154]}}, -{"id": 2975, "name": "Poubelle en feu (Trashcan on fire)", "description": "This trashcan is on fire! It's a vibrant hommage to the trashcan inventor, René Poubelle, and a playful protest against sp3z Also a taste of the many riots in France, where it was frequent to see trashcans on fire to protest against french impopular laws like pension's new retirement age and police brutality.", "links": {"website": ["http://twitch.tv/escargoog"], "subreddit": ["escargoog"]}, "path": {"250-258": [[-388, 184], [-390, 181], [-392, 167], [-390, 165], [-393, 160], [-388, 146], [-388, 137], [-382, 136], [-379, 139], [-377, 145], [-376, 148], [-373, 152], [-372, 161], [-372, 164], [-374, 166], [-371, 176], [-372, 178], [-373, 178], [-375, 176], [-375, 180], [-373, 182], [-374, 184], [-376, 185], [-379, 185], [-379, 184], [-380, 185], [-388, 185]]}, "center": {"250-258": [-382, 159]}}, -{"id": 2977, "name": "Beatrice flower from Umineko", "description": "The flower that Beatrice wears on her head.\nOriginally from the visual novel Umineko no naku koro ni.\nUnfortunately we couldn't finish her face and hair.", "links": {"discord": ["fBG3bMPT"]}, "path": {"250-258": [[-1273, 284], [-1268, 284], [-1268, 285], [-1267, 285], [-1267, 286], [-1264, 286], [-1264, 292], [-1256, 296], [-1256, 302], [-1257, 302], [-1257, 304], [-1258, 305], [-1258, 298], [-1260, 297], [-1263, 297], [-1267, 296], [-1274, 296], [-1274, 294], [-1276, 294], [-1275, 288], [-1273, 285]]}, "center": {"250-258": [-1269, 291]}}, -{"id": 2978, "name": "Very Civilized Ducks", "description": "A small image featuring four ducks each with a different hat.", "links": {}, "path": {"250-258": [[-51, 96], [-51, 86], [-17, 86], [-17, 96]]}, "center": {"250-258": [-34, 91]}}, -{"id": 2979, "name": "HibouNinja / NinjaOwl", "description": "Mascotte de la commu des hiboux ninjas. Des dessinateurs collaboratif et communautaire TOUS niveaux.\nSur la chaine twitch d'Owleeee.", "links": {"website": ["https://www.twitch.tv/owleeee", "https://www.instagram.com/owleeeo/", "https://www.youtube.com/channel/UCjN3cwoIeCAszrCgw4KI6Fg", "https://twitter.com/OwleeFu"], "subreddit": ["OWLEETWITCH"], "discord": ["679NgQEz9z"]}, "path": {"250-258": [[887, -94], [887, -88], [896, -88], [896, -94]]}, "center": {"250-258": [892, -91]}}, -{"id": 2980, "name": "Jibril from no game no life", "description": "It's jibril from no game no life made by his community and french people", "links": {"subreddit": ["FrNgnl"], "discord": ["T7VEq7675j"]}, "path": {"250-258": [[-498, 119], [-475, 119], [-477, 154], [-498, 152], [-499, 136], [-495, 120], [-495, 122], [-489, 121], [-492, 120]]}, "center": {"250-258": [-488, 137]}}, -{"id": 2981, "name": "Sakura Matou", "description": "Sakura Matou (間桐 桜, Matō Sakura) is one of the three main heroines in the visual novel Fate/stay night by Type-Moon from 2004. She is the central character for the 3rd route \"Heaven's Feel\", which has also been adapted into 3 movies by Ufotable.", "links": {"subreddit": ["fatestaynightplace"], "discord": ["RRAjUqwXm9"]}, "path": {"212-258": [[855, -224], [883, -224], [883, -194], [855, -194]]}, "center": {"212-258": [869, -209]}}, -{"id": 2982, "name": "Hyphonix", "description": "The \"Hx\" sign is depicted from the Hx logo in the Hyphonix Discord. Hyphonix is a streamer who streams on Youtube.", "links": {"website": ["https://www.youtube.com/@Hyphonix"], "subreddit": ["HyphonixYT"], "discord": ["pU5YdPwfB9"]}, "path": {"250-258": [[-1000, 814], [-1005, 819], [-1004, 822], [-990, 837], [-975, 822], [-975, 819], [-981, 814]]}, "center": {"250-258": [-990, 823]}}, -{"id": 2983, "name": "CoupCritique.fr", "description": "CoupCritique.fr is the prime french reference website in competitive Pokémon. Funded and co-created by french streamer and youtuber Redemption, the website allows users and visitors to create, submit and rent teams build for competitive play on Pokémon Showdown or VGC and BSS on consoles, as well as being informed on all the latest competitive news and meta change, all with a supportive and active french community. The logo represents a Pidgeot set up like a chess piece. The Shroomish next to it represents Maitre Armand's community, a community close to Redemption's.", "links": {"website": ["https://www.coupcritique.fr/"], "subreddit": ["coupcritique"]}, "path": {"250-258": [[-1140, -214], [-1140, -197], [-1092, -199], [-1091, -214]]}, "center": {"250-258": [-1128, -206]}}, -{"id": 2984, "name": "La Boulangerie MC", "description": "World Building french Minecraft server.\n\nServeur Minecraft de Roleplay Géopolitique.", "links": {"website": ["https://laboulangerie.net/"], "subreddit": ["laboulangeriemc"], "discord": ["vV2q2sBym5"]}, "path": {"111-258": [[-574, 107], [-544, 107], [-544, 123], [-571, 123], [-571, 114], [-574, 114]]}, "center": {"111-258": [-559, 115]}}, -{"id": 2985, "name": "Aubergine", "description": "A penis emoji added to the kukui pig to damage it.", "links": {}, "path": {"250-258": [[365, -985], [366, -985], [365, -985], [365, -984], [365, -983], [366, -983], [367, -983], [367, -984], [368, -984], [368, -985], [368, -986], [369, -986], [369, -987], [368, -987], [367, -986], [366, -985]]}, "center": {"250-258": [366, -984]}}, -{"id": 2986, "name": "Listenbourg Flag", "description": "This \"country\", located next to Portugal, was originally invented by a French to prank Americans. Expanding this around the world, Frenchies were making them believe that there was a country right there, but nobody knew its existence. It is in fact a joke about Americans who suck at geography. It is now a real French reference in the young community (14-25 yo)", "links": {"website": ["https://listenbourg.org"], "subreddit": ["listenbourg"]}, "path": {"250-258": [[-501, 900], [-460, 900], [-459, 949], [-501, 948]]}, "center": {"250-258": [-480, 925]}}, -{"id": 2987, "name": "RanbooLive crew", "description": "The pattern for the boobers - the Ranboo community - and leaders of Generation Loss r/place and PASTA alliance: DELETED, Chey, Juniper and Pixz", "links": {"subreddit": ["Ranboo"], "discord": ["cJWnUG3k"]}, "path": {"250-258": [[472, 555], [472, 546], [488, 546], [488, 537], [500, 537], [499, 555]]}, "center": {"250-258": [493, 549]}}, -{"id": 2988, "name": "(/) Gamma Incorporated", "description": "A small upcoming Roblox group about a fiction company called \"Gamma Incorporated\".\nEstablished September 11th 2021 by Retrogamer_05\n\n\"Scientia ad Optima - Science at its finest\"", "links": {"website": ["https://www.roblox.com/groups/12300484/Gamma-Incorporated"], "subreddit": ["GammaIncorporated"], "discord": ["uJptytHRGK"]}, "path": {"157-164": [[-493, 863], [-477, 863], [-472, 872], [-472, 879], [-478, 888], [-494, 888], [-499, 879], [-499, 872]], "202-258": [[-458, 569], [-442, 569], [-436, 581], [-436, 590], [-440, 595], [-458, 594], [-464, 586], [-464, 578]]}, "center": {"157-164": [-485, 876], "202-258": [-450, 582]}}, -{"id": 2989, "name": "Fernet with Coca-Cola", "description": "Traditional alcoholic beverage in Argentina but mostly consumed in the Province of Córdoba, traditionally made with 30% Fernet (Italian bitters) and 70% Coca-Cola.", "links": {"website": ["https://en.wikipedia.org/wiki/Fernet_con_coca"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"250-258": [[1008, 967], [1008, 999], [1050, 999], [1049, 968]]}, "center": {"250-258": [1028, 983]}}, +{"id": 2968, "name": "Nessie - The Loch Ness Monster", "description": "Made by r/ukOnPlace, this Loch Ness Monster was made to involve the more northern uk as most artwork did not include them. Nessie stands completely rouge and against templates, but was still pulled off and loved by many members of r/ukOnPlace.", "links": {"subreddit": ["ukOnPlace"], "discord": ["vfaqA9yr"]}, "path": {"243-252, T": [[1001, 886], [1001, 896], [1016, 896], [1016, 887], [1016, 886]]}, "center": {"243-252, T": [1009, 891]}}, +{"id": 2969, "name": "Paprika", "description": "Paprika is one of the base roster characters of Them's Fightin' Herds, an indie fighting game developed by Mane6. This art depicts her face, which wasn't able to be completed because the whiteout started as she was being built, but she is still recognizable.\n\nIt is unknown how Paprika gained the title Champion of the Highlands, as she is an outlier amongst her own people, even if she DOES travel with them... whether that's beneficiary to the other alpaca... Paprika doesn't care.\n\nHigh in the Huacaya Mountains, alpaca roam though inhospitable wilderness as their ancestors have since the dawn of time. The harsh, barren environment leaves little room for any pursuits other than raw survival.\n\nBut there is one among them who eschews their sober, serious attitude. Her name is Paprika, and she's brimming with vigorous affection. Some say she aims to fill the world with love the land never had for her, but whatever her reasons, she feels compelled to share all she has and more, whether you're willing or not.\n\nPaprika is a basket case and a whole bag of tricks, tossing a variety of gifts and zipping around the stage faster than anyone is able to keep track of. Crushing embraces and surprising kisses make for some of her deadliest techniques. Once she decides you're the love of her life, there can be no escape.", "links": {"website": ["https://www.mane6.com/characters/paprika/"], "subreddit": ["ThemsFightinHerds", "IndieAlliance"], "discord": ["tfh", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"250-258, T": [[-655, 389], [-655, 392], [-656, 392], [-656, 395], [-653, 395], [-650, 397], [-648, 395], [-648, 392], [-645, 389], [-645, 388], [-650, 388], [-650, 389]]}, "center": {"250-258, T": [-651, 392]}}, +{"id": 2970, "name": "Flag of Listenbourg", "description": "Listenbourg is a fictional country created as the subject of an internet meme in October 2022, which depicts it as an extension of the Iberian Peninsula. French Twitter user Gaspard Hoelscher shared a doctored map of Europe with a red arrow pointing to the outline of a pasted country adjacent to Portugal and Spain, and joked that Americans would not be able to name the country.", "links": {"website": ["https://listenbourg.lt/"], "subreddit": ["Listenbourg"]}, "path": {"250-258, T": [[-501, 900], [-500, 948], [-457, 949], [-459, 900]]}, "center": {"250-258, T": [-479, 922]}}, +{"id": 2972, "name": "Pirutastic", "description": "Argentinian streamer, from Venado Tuerto, aka Chototastic, Mufatastic & \"GordoPut0\", Great friend and partner of the famous and innocent YouTuber called \"la boina\" 🚬", "links": {"website": ["https://www.twitch.tv/pirutastic"]}, "path": {"250-258, T": [[-1090, -214], [-1077, -214], [-1077, -200], [-1090, -200]]}, "center": {"250-258, T": [-1083, -207]}}, +{"id": 2974, "name": "Invisible disabilities", "description": "The ribbons below represent several diseases: IBD, ankylosing spondylitis, ADHD, ASD. \n80% of people with disabilities have an invisible disability. The two creators of this project are suffering from various illnesses. We were able to achieve it with the help of the French discord #NotImaginary", "links": {"website": ["https://www.agefiph.fr/actualites-handicap/secteur-public-un-guide-pour-regarder-le-handicap-invisible", "https://www.afa.asso.fr", "https://www.spondy.fr"], "subreddit": ["handicap", "disability", "TDAH", "MICI", "ankylosingspondylitis", "adhd", "TSA", "ASD", "invisibledisability", "projetfrance", "pasimaginaire", "crohn", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"214-258, T": [[1001, -179], [1000, -178], [996, -178], [996, -175], [995, -174], [995, -135], [996, -134], [996, -131], [999, -131], [1000, -130], [1036, -130], [1036, -179]]}, "center": {"214-258, T": [1016, -154]}}, +{"id": 2975, "name": "Poubelle en feu (Trashcan on fire)", "description": "This trashcan is on fire! It's a vibrant hommage to the trashcan inventor, René Poubelle, and a playful protest against sp3z Also a taste of the many riots in France, where it was frequent to see trashcans on fire to protest against french impopular laws like pension's new retirement age and police brutality.", "links": {"website": ["http://twitch.tv/escargoog"], "subreddit": ["escargoog"]}, "path": {"250-258, T": [[-388, 184], [-390, 181], [-392, 167], [-390, 165], [-393, 160], [-388, 146], [-388, 137], [-382, 136], [-379, 139], [-377, 145], [-376, 148], [-373, 152], [-372, 161], [-372, 164], [-374, 166], [-371, 176], [-372, 178], [-373, 178], [-375, 176], [-375, 180], [-373, 182], [-374, 184], [-376, 185], [-379, 185], [-379, 184], [-380, 185], [-388, 185]]}, "center": {"250-258, T": [-382, 159]}}, +{"id": 2977, "name": "Beatrice flower from Umineko", "description": "The flower that Beatrice wears on her head.\nOriginally from the visual novel Umineko no naku koro ni.\nUnfortunately we couldn't finish her face and hair.", "links": {"discord": ["fBG3bMPT"]}, "path": {"250-258, T": [[-1273, 284], [-1268, 284], [-1268, 285], [-1267, 285], [-1267, 286], [-1264, 286], [-1264, 292], [-1256, 296], [-1256, 302], [-1257, 302], [-1257, 304], [-1258, 305], [-1258, 298], [-1260, 297], [-1263, 297], [-1267, 296], [-1274, 296], [-1274, 294], [-1276, 294], [-1275, 288], [-1273, 285]]}, "center": {"250-258, T": [-1269, 291]}}, +{"id": 2978, "name": "Very Civilized Ducks", "description": "A small image featuring four ducks each with a different hat.", "links": {}, "path": {"250-258, T": [[-51, 96], [-51, 86], [-17, 86], [-17, 96]]}, "center": {"250-258, T": [-34, 91]}}, +{"id": 2979, "name": "HibouNinja / NinjaOwl", "description": "Mascotte de la commu des hiboux ninjas. Des dessinateurs collaboratif et communautaire TOUS niveaux.\nSur la chaine twitch d'Owleeee.", "links": {"website": ["https://www.twitch.tv/owleeee", "https://www.instagram.com/owleeeo/", "https://www.youtube.com/channel/UCjN3cwoIeCAszrCgw4KI6Fg", "https://twitter.com/OwleeFu"], "subreddit": ["OWLEETWITCH"], "discord": ["679NgQEz9z"]}, "path": {"250-258, T": [[887, -94], [887, -88], [896, -88], [896, -94]]}, "center": {"250-258, T": [892, -91]}}, +{"id": 2980, "name": "Jibril from no game no life", "description": "It's jibril from no game no life made by his community and french people", "links": {"subreddit": ["FrNgnl"], "discord": ["T7VEq7675j"]}, "path": {"250-258, T": [[-498, 119], [-475, 119], [-477, 154], [-498, 152], [-499, 136], [-495, 120], [-495, 122], [-489, 121], [-492, 120]]}, "center": {"250-258, T": [-488, 137]}}, +{"id": 2981, "name": "Sakura Matou", "description": "Sakura Matou (間桐 桜, Matō Sakura) is one of the three main heroines in the visual novel Fate/stay night by Type-Moon from 2004. She is the central character for the 3rd route \"Heaven's Feel\", which has also been adapted into 3 movies by Ufotable.", "links": {"subreddit": ["fatestaynightplace"], "discord": ["RRAjUqwXm9"]}, "path": {"212-258, T": [[855, -224], [883, -224], [883, -194], [855, -194]]}, "center": {"212-258, T": [869, -209]}}, +{"id": 2982, "name": "Hyphonix", "description": "The \"Hx\" sign is depicted from the Hx logo in the Hyphonix Discord. Hyphonix is a streamer who streams on Youtube.", "links": {"website": ["https://www.youtube.com/@Hyphonix"], "subreddit": ["HyphonixYT"], "discord": ["pU5YdPwfB9"]}, "path": {"250-258, T": [[-1000, 814], [-1005, 819], [-1004, 822], [-990, 837], [-975, 822], [-975, 819], [-981, 814]]}, "center": {"250-258, T": [-990, 823]}}, +{"id": 2983, "name": "CoupCritique.fr", "description": "CoupCritique.fr is the prime french reference website in competitive Pokémon. Funded and co-created by french streamer and youtuber Redemption, the website allows users and visitors to create, submit and rent teams build for competitive play on Pokémon Showdown or VGC and BSS on consoles, as well as being informed on all the latest competitive news and meta change, all with a supportive and active french community. The logo represents a Pidgeot set up like a chess piece. The Shroomish next to it represents Maitre Armand's community, a community close to Redemption's.", "links": {"website": ["https://www.coupcritique.fr/"], "subreddit": ["coupcritique"]}, "path": {"250-258, T": [[-1140, -214], [-1140, -197], [-1092, -199], [-1091, -214]]}, "center": {"250-258, T": [-1128, -206]}}, +{"id": 2984, "name": "La Boulangerie MC", "description": "World Building french Minecraft server.\n\nServeur Minecraft de Roleplay Géopolitique.", "links": {"website": ["https://laboulangerie.net/"], "subreddit": ["laboulangeriemc"], "discord": ["vV2q2sBym5"]}, "path": {"111-258, T": [[-574, 107], [-544, 107], [-544, 123], [-571, 123], [-571, 114], [-574, 114]]}, "center": {"111-258, T": [-559, 115]}}, +{"id": 2985, "name": "Aubergine", "description": "A penis emoji added to the kukui pig to damage it.", "links": {}, "path": {"250-258, T": [[365, -985], [366, -985], [365, -985], [365, -984], [365, -983], [366, -983], [367, -983], [367, -984], [368, -984], [368, -985], [368, -986], [369, -986], [369, -987], [368, -987], [367, -986], [366, -985]]}, "center": {"250-258, T": [366, -984]}}, +{"id": 2986, "name": "Listenbourg Flag", "description": "This \"country\", located next to Portugal, was originally invented by a French to prank Americans. Expanding this around the world, Frenchies were making them believe that there was a country right there, but nobody knew its existence. It is in fact a joke about Americans who suck at geography. It is now a real French reference in the young community (14-25 yo)", "links": {"website": ["https://listenbourg.org"], "subreddit": ["listenbourg"]}, "path": {"250-258, T": [[-501, 900], [-460, 900], [-459, 949], [-501, 948]]}, "center": {"250-258, T": [-480, 925]}}, +{"id": 2987, "name": "RanbooLive crew", "description": "The pattern for the boobers - the Ranboo community - and leaders of Generation Loss r/place and PASTA alliance: DELETED, Chey, Juniper and Pixz", "links": {"subreddit": ["Ranboo"], "discord": ["cJWnUG3k"]}, "path": {"250-258, T": [[472, 555], [472, 546], [488, 546], [488, 537], [500, 537], [499, 555]]}, "center": {"250-258, T": [493, 549]}}, +{"id": 2988, "name": "(/) Gamma Incorporated", "description": "A small upcoming Roblox group about a fiction company called \"Gamma Incorporated\".\nEstablished September 11th 2021 by Retrogamer_05\n\n\"Scientia ad Optima - Science at its finest\"", "links": {"website": ["https://www.roblox.com/groups/12300484/Gamma-Incorporated"], "subreddit": ["GammaIncorporated"], "discord": ["uJptytHRGK"]}, "path": {"157-164": [[-493, 863], [-477, 863], [-472, 872], [-472, 879], [-478, 888], [-494, 888], [-499, 879], [-499, 872]], "202-258, T": [[-458, 569], [-442, 569], [-436, 581], [-436, 590], [-440, 595], [-458, 594], [-464, 586], [-464, 578]]}, "center": {"157-164": [-485, 876], "202-258, T": [-450, 582]}}, +{"id": 2989, "name": "Fernet with Coca-Cola", "description": "Traditional alcoholic beverage in Argentina but mostly consumed in the Province of Córdoba, traditionally made with 30% Fernet (Italian bitters) and 70% Coca-Cola.", "links": {"website": ["https://en.wikipedia.org/wiki/Fernet_con_coca"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"250-258, T": [[1008, 967], [1008, 999], [1050, 999], [1049, 968]]}, "center": {"250-258, T": [1028, 983]}}, {"id": 2990, "name": "Face of boyfriend's Minecraft skin", "description": "Face of a Minecraft skin made by their girlfriend (u/Rich_SeaCat) as a fun gesture. Thank you u/elycius_rem for your help.", "links": {}, "path": {"242-248": [[-1313, 226], [-1313, 218], [-1313, 217], [-1321, 217], [-1321, 226], [-1313, 226], [-1322, 217], [-1322, 226], [-1313, 226], [-1313, 217], [-1322, 217], [-1322, 226]]}, "center": {"242-248": [-1319, 223]}}, {"id": 2991, "name": "Aleksib", "description": "Aleksib is a professional CS:GO competitive player from Finland. He is famous for playing in the fully Finnish team Ence, in which he was the backbone for taking the Finnish team to second place in the Katowice Major in 2019", "links": {"website": ["https://liquipedia.net/counterstrike/Aleksib", "https://www.hltv.org/player/9816/aleksib", "https://twitter.com/AleksibCSGO"]}, "path": {"204-218": [[-14, -785], [-14, -766], [20, -766], [20, -785]]}, "center": {"204-218": [3, -775]}}, {"id": 2992, "name": "Monokuma Danganronpa", "description": "Main mascot of the game series Danganronpa flipping the middle finger to the Dutch/PlaceNL server after being deleted by them multiple times", "links": {"website": ["https://en.wikipedia.org/wiki/Monokuma"], "subreddit": ["danganronpa", "placemaeda"], "discord": ["H98J7uEb"]}, "path": {"251-258": [[67, -517], [67, -512], [65, -513], [63, -510], [62, -508], [62, -507], [66, -502], [67, -502], [67, -498], [71, -493], [73, -493], [74, -496], [78, -496], [78, -494], [80, -493], [81, -493], [83, -496], [85, -498], [85, -501], [88, -504], [88, -506], [85, -509], [85, -517], [83, -519], [84, -520], [84, -521], [82, -523], [80, -523], [77, -520], [75, -520], [72, -523], [70, -523], [68, -521], [68, -518]]}, "center": {"251-258": [76, -507]}}, -{"id": 2993, "name": "Jibril", "description": "Jibril is a character from the manga and anime No Game No Life.\nIt was made by the french NGNL subreddit.", "links": {"subreddit": ["FrNgnl"], "discord": ["T7VEq7675j"]}, "path": {"214-258": [[-492, 124], [-486, 120], [-480, 126], [-478, 137], [-478, 142], [-477, 149], [-476, 151], [-499, 150], [-498, 141], [-496, 139], [-498, 132], [-492, 123]]}, "center": {"214-258": [-487, 137]}}, -{"id": 2994, "name": "Castle Bizberg", "description": "A castle made by a small group of friends. Desperately made subreddits and negotiated for existence before finding peace.", "links": {"subreddit": ["bizberg"]}, "path": {"250-258": [[-1058, -935], [-1049, -935], [-1050, -918], [-1058, -918]]}, "center": {"250-258": [-1054, -927]}}, -{"id": 2995, "name": "8 Juillet 1943", "description": "July 8th of 1943 (French: 8 Juillet 1943) represent the date of Death of Jean moulin, French Resistant during World War II (Who is drawed on the left). Killed by the Gestapo in Lyon, this date is saved in the memory of France.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"124-258": [[-410, -228], [-410, -229], [-406, -256], [-376, -261], [-371, -249], [-376, -228], [-378, -228], [-381, -228]]}, "center": {"124-258": [-389, -243]}}, -{"id": 2996, "name": "Tampa Bay Sports", "description": "An area dedicated to the major league sports Teams of Tampa Bay, Florida. Included is (from bottom to top); the Lightning (NHL) with three Stanley cups, (to celebrate their Championship wins in 2004, 2020, and 2021) the Rays (MLB) logo with the throwback Devil Rays colors to celebrate their 25th anniversary since foundation, and the \"BucOnioneer\" which represents the Tampa Bay Buccaneers (NFL) and also signifies the alliance reached between the Tampa Bay community and German VTuber EveryLunaEver during the 2023 Place event.", "links": {"website": ["https://www.buccaneers.com/", "https://www.mlb.com/rays", "https://www.nhl.com/lightning"], "subreddit": ["TampaPlace"], "discord": ["GegV2F6k"]}, "path": {"250-258": [[1206, -913], [1220, -913], [1219, -890], [1227, -890], [1227, -867], [1221, -868], [1221, -875], [1206, -875]]}, "center": {"250-258": [1214, -883]}}, -{"id": 2997, "name": "Clockwork Relativity", "description": "Clockwork Relativity is a My Little Pony OC created by an Equestria Daily user with the same name. Both of them defended the My Little Pony artwork for the most part, but on the fifth day of r/place, him, along with his friend Illinois Mapper (Crazy Diamond) built a mini Luna (Clockwork's mother according to roleplay lore) near the bottom right, but it was overtaken by a streamer after an hour. As a consolation, Illinois Mapper went out on his own and began to build a small art of Clockwork himself, but the event ended before he could, leaving \nonly the bottom half completed.", "links": {}, "path": {"250-258": [[-442, -611], [-437, -610], [-437, -606], [-442, -606]]}, "center": {"250-258": [-440, -608]}}, -{"id": 2998, "name": "Bungou stray dogs chibis", "description": "Bungou stray dogs is a Manga series writen by Kafka Asagiri. \nIt's charackters are based on real-life author from the 20th century. \nAfter multiple failed attemps in building their characters the Bungou stray dogs community found shelter on the german flag(Mittelflagge) and the dutch flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Bungo_Stray_Dogs", "https://bungostraydogs.fandom.com/wiki/Bungo_Stray_Dogs_Wiki"], "subreddit": ["BungouStrayDogs"], "discord": ["8pUvuspX"]}, "path": {"154-258": [[-145, -501], [-117, -500], [-117, -504], [-103, -504], [-103, -521], [-102, -527], [-100, -533], [-101, -539], [-107, -541], [-116, -540], [-121, -539], [-117, -541], [-118, -550], [-95, -550], [-93, -556], [-81, -556], [-80, -561], [-79, -572], [-80, -571], [-82, -574], [-82, -579], [-78, -586], [-83, -592], [-94, -593], [-98, -589], [-106, -591], [-110, -594], [-113, -589], [-111, -586], [-115, -586], [-116, -593], [-121, -592], [-127, -588], [-131, -589], [-143, -591], [-144, -591], [-145, -568], [-147, -567], [-148, -563], [-147, -561], [-147, -558], [-147, -549], [-148, -548], [-145, -545], [-145, -539], [-145, -538], [-151, -539], [-150, -533], [-148, -532], [-147, -519], [-148, -516]]}, "center": {"154-258": [-125, -569]}}, +{"id": 2993, "name": "Jibril", "description": "Jibril is a character from the manga and anime No Game No Life.\nIt was made by the french NGNL subreddit.", "links": {"subreddit": ["FrNgnl"], "discord": ["T7VEq7675j"]}, "path": {"214-258, T": [[-492, 124], [-486, 120], [-480, 126], [-478, 137], [-478, 142], [-477, 149], [-476, 151], [-499, 150], [-498, 141], [-496, 139], [-498, 132], [-492, 123]]}, "center": {"214-258, T": [-487, 137]}}, +{"id": 2994, "name": "Castle Bizberg", "description": "A castle made by a small group of friends. Desperately made subreddits and negotiated for existence before finding peace.", "links": {"subreddit": ["bizberg"]}, "path": {"250-258, T": [[-1058, -935], [-1049, -935], [-1050, -918], [-1058, -918]]}, "center": {"250-258, T": [-1054, -927]}}, +{"id": 2995, "name": "8 Juillet 1943", "description": "July 8th of 1943 (French: 8 Juillet 1943) represent the date of Death of Jean moulin, French Resistant during World War II (Who is drawed on the left). Killed by the Gestapo in Lyon, this date is saved in the memory of France.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"124-258, T": [[-410, -228], [-410, -229], [-406, -256], [-376, -261], [-371, -249], [-376, -228], [-378, -228], [-381, -228]]}, "center": {"124-258, T": [-389, -243]}}, +{"id": 2996, "name": "Tampa Bay Sports", "description": "An area dedicated to the major league sports Teams of Tampa Bay, Florida. Included is (from bottom to top); the Lightning (NHL) with three Stanley cups, (to celebrate their Championship wins in 2004, 2020, and 2021) the Rays (MLB) logo with the throwback Devil Rays colors to celebrate their 25th anniversary since foundation, and the \"BucOnioneer\" which represents the Tampa Bay Buccaneers (NFL) and also signifies the alliance reached between the Tampa Bay community and German VTuber EveryLunaEver during the 2023 Place event.", "links": {"website": ["https://www.buccaneers.com/", "https://www.mlb.com/rays", "https://www.nhl.com/lightning"], "subreddit": ["TampaPlace"], "discord": ["GegV2F6k"]}, "path": {"250-258, T": [[1206, -913], [1220, -913], [1219, -890], [1227, -890], [1227, -867], [1221, -868], [1221, -875], [1206, -875]]}, "center": {"250-258, T": [1214, -883]}}, +{"id": 2997, "name": "Clockwork Relativity", "description": "Clockwork Relativity is a My Little Pony OC created by an Equestria Daily user with the same name. Both of them defended the My Little Pony artwork for the most part, but on the fifth day of r/place, him, along with his friend Illinois Mapper (Crazy Diamond) built a mini Luna (Clockwork's mother according to roleplay lore) near the bottom right, but it was overtaken by a streamer after an hour. As a consolation, Illinois Mapper went out on his own and began to build a small art of Clockwork himself, but the event ended before he could, leaving \nonly the bottom half completed.", "links": {}, "path": {"250-258, T": [[-442, -611], [-437, -610], [-437, -606], [-442, -606]]}, "center": {"250-258, T": [-440, -608]}}, +{"id": 2998, "name": "Bungou stray dogs chibis", "description": "Bungou stray dogs is a Manga series writen by Kafka Asagiri. \nIt's charackters are based on real-life author from the 20th century. \nAfter multiple failed attemps in building their characters the Bungou stray dogs community found shelter on the german flag(Mittelflagge) and the dutch flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Bungo_Stray_Dogs", "https://bungostraydogs.fandom.com/wiki/Bungo_Stray_Dogs_Wiki"], "subreddit": ["BungouStrayDogs"], "discord": ["8pUvuspX"]}, "path": {"154-258, T": [[-145, -501], [-117, -500], [-117, -504], [-103, -504], [-103, -521], [-102, -527], [-100, -533], [-101, -539], [-107, -541], [-116, -540], [-121, -539], [-117, -541], [-118, -550], [-95, -550], [-93, -556], [-81, -556], [-80, -561], [-79, -572], [-80, -571], [-82, -574], [-82, -579], [-78, -586], [-83, -592], [-94, -593], [-98, -589], [-106, -591], [-110, -594], [-113, -589], [-111, -586], [-115, -586], [-116, -593], [-121, -592], [-127, -588], [-131, -589], [-143, -591], [-144, -591], [-145, -568], [-147, -567], [-148, -563], [-147, -561], [-147, -558], [-147, -549], [-148, -548], [-145, -545], [-145, -539], [-145, -538], [-151, -539], [-150, -533], [-148, -532], [-147, -519], [-148, -516]]}, "center": {"154-258, T": [-125, -569]}}, {"id": 2999, "name": "ElRichMC", "description": "Youtuber de Minecraft español.", "links": {"website": ["https://www.youtube.com/@ElRichMC"]}, "path": {"230": [[-1076, -215], [-1061, -215], [-1061, -199], [-1076, -199]]}, "center": {"230": [-1068, -207]}}, -{"id": 3000, "name": "Bishop Goes on Vacation", "description": "\"Bishop goes on vacation, never comes back,\" is a meme on the r/AnarchyChess subreddit. It originated from a post on the subreddit, where a user was using ChatGPT to generate \"new responses.\"\n\nThese responses formed a chain, starting with \"Google en passant,\" the most common AnarchyChess meme.\n\nThe responses go like this:\n\"Google en passant\"\n\"Holy Hell!\"\n\"New response just dropped.\"\n\"Actual zombie\"\n(this starts the ChatGPT responses): \"Call the exorcist!\"\n\"Bishop goes on vacation, never comes back.\"", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"210-231": [[520, -679], [523, -679], [523, -680], [524, -680], [524, -681], [526, -681], [526, -680], [529, -680], [529, -681], [530, -681], [530, -683], [529, -684], [528, -684], [528, -685], [527, -685], [527, -684], [526, -684], [526, -683], [525, -683], [524, -683], [524, -684], [523, -684], [523, -686], [524, -686], [524, -687], [523, -687], [523, -689], [522, -689], [522, -690], [521, -690], [521, -689], [520, -689], [520, -688], [520, -687], [519, -687], [519, -686], [520, -686], [520, -685], [520, -684], [519, -684], [519, -682], [518, -682], [518, -681], [519, -681], [519, -680], [520, -680]], "232-258": [[517, -680], [514, -680], [514, -681], [513, -681], [513, -683], [514, -683], [514, -684], [515, -684], [515, -685], [516, -685], [516, -684], [517, -684], [517, -683], [519, -683], [519, -684], [520, -684], [520, -686], [519, -686], [519, -687], [520, -687], [520, -689], [521, -689], [521, -690], [522, -690], [522, -689], [523, -689], [523, -688], [523, -687], [524, -687], [524, -686], [523, -686], [523, -684], [524, -684], [524, -683], [525, -683], [525, -681], [524, -681], [524, -680], [523, -680], [523, -679], [520, -679], [520, -680], [519, -680], [519, -681], [517, -681]]}, "center": {"210-231": [522, -682], "232-258": [522, -682]}}, -{"id": 3001, "name": "BKDK / BakuDeku", "description": "Izuku Midoriya and Katsuki Bakugo.\nA ship from the popular anime My Hero Academia / Boku No Hero Academia.", "links": {"website": ["https://twitter.com/KOmy_0o"]}, "path": {"223-258": [[-1433, 115], [-1432, 119], [-1430, 121], [-1429, 122], [-1428, 125], [-1428, 127], [-1430, 127], [-1430, 131], [-1417, 130], [-1394, 130], [-1394, 126], [-1394, 125], [-1396, 125], [-1395, 124], [-1394, 123], [-1391, 121], [-1389, 119], [-1389, 103], [-1395, 108], [-1396, 107], [-1398, 107], [-1402, 102], [-1404, 107], [-1407, 105], [-1413, 104], [-1415, 106], [-1417, 107], [-1418, 106], [-1423, 106], [-1424, 107], [-1426, 108], [-1428, 109], [-1430, 110]]}, "center": {"223-258": [-1410, 118]}}, -{"id": 3002, "name": "OBX", "description": "A stylized shortening of: 'Outer Banks' a chain of barrier islands off the coast of North Carolina. Built by locals", "links": {"subreddit": ["obx"]}, "path": {"249-258": [[225, -981], [225, -975], [237, -975], [237, -981]]}, "center": {"249-258": [231, -978]}}, -{"id": 3003, "name": "Richarlyson (QSMP egg)", "description": "This is RIcharlyson an egg from QSMP. Son of the br streamers.", "links": {}, "path": {"250-258": [[68, 420], [69, 421], [69, 422], [68, 423], [69, 424], [69, 425], [69, 426], [70, 427], [70, 428], [69, 428], [68, 428], [68, 429], [68, 430], [67, 430], [64, 430], [64, 429], [64, 428], [62, 428], [62, 427], [63, 426], [63, 425], [63, 424], [64, 424], [64, 423], [63, 422], [64, 422], [64, 421], [65, 421], [65, 420], [68, 420], [67, 420], [66, 420], [67, 423], [67, 421], [66, 420]]}, "center": {"250-258": [66, 426]}}, -{"id": 3004, "name": "Prehistoric Kingdom - Crowny Banner", "description": "The majestic banner of the Prehistoric Kingdom community, an indie tycoon game where you can build the zoo of your paleozoological dreams. In the bottom right floating alongside her duck cousins you can catch a glimpse of the beloved sauropod mascot, Crowny. Long may she reign! \n\nAllies: Central Alliance, P.A.S.T.A., Barotrauma", "links": {"subreddit": ["pkgame"], "discord": ["pkgame"]}, "path": {"250-258": [[-294, 626], [-288, 626], [-288, 634], [-236, 633], [-236, 621], [-294, 621]]}, "center": {"250-258": [-268, 627]}}, -{"id": 3005, "name": "Holocure Roboco", "description": "Roboco from Hololive Gen 0, but in her Holocure depiction.", "links": {"website": ["https://hololive.wiki/wiki/Roboco", "https://holocure.fandom.com/wiki/Roboco-san"]}, "path": {"204-258": [[1259, -863], [1277, -863], [1278, -832], [1259, -831]]}, "center": {"204-258": [1268, -847]}}, -{"id": 3006, "name": "WBNS X MINECRAFT", "description": "Minecraft series created by DUXORETHEY, in which several famous streamers/youtubers from the Spanish-speaking community participate.", "links": {"website": ["https://youtube.com/@AQUISI_", "https://youtube.com/@DUXO", "https://youtube.com/@Mictia00", "https://youtube.com/@c3jotct", "https://youtube.com/@Soarinng", "https://youtube.com/@Mishifuu", "https://youtube.com/@Natalan", "https://youtube.com/@EstailusVR"]}, "path": {"250-258": [[-707, -793], [-707, -792], [-657, -792], [-664, -757], [-708, -756]]}, "center": {"250-258": [-690, -774]}}, -{"id": 3007, "name": "KuryKat", "description": "A small artwork that I made for myself with the help of some friends ❤\n\nUnfortunately it was never *actually* finished....\n\nThe first link shows the preview of what we wanted to create.", "links": {"website": ["https://imgur.com/a/K852o19", "https://kurykat.dev/", "https://github.com/KuryKat", "https://twitter.com/KuryKat"], "discord": ["264NBxYHAW"]}, "path": {"172-258": [[619, 676], [634, 670], [647, 659], [656, 646], [655, 627], [649, 631], [648, 630], [653, 619], [652, 619], [646, 625], [645, 624], [651, 612], [643, 621], [641, 617], [649, 607], [647, 605], [632, 620], [621, 638], [618, 648], [617, 662], [619, 660], [630, 655], [629, 657], [617, 677]]}, "center": {"172-258": [637, 641]}}, -{"id": 3008, "name": "Mindustry", "description": "Mindustry is a factory-building game with tower defense and RTS elements. Where you create elaborate supply chains to feed ammo into your turrets, produce materials to use for building, and construct units. And you need to defend your base from ennemies waves.\n\nThis art is composed of 11 holies router, a block used by all players because of his powerful ability to spread items in his axis, there is also a few mores blocks like the core (down left) and the turret (right), and a custom french flag block and colors in thanks of the art space for small communities", "links": {"website": ["https://mindustry.fandom.com/wiki/Mindustry_Wiki"], "subreddit": ["Mindustry"], "discord": ["mindustry"]}, "path": {"212-220": [[-1129, 138], [-1129, 161], [-1107, 161], [-1066, 161], [-1066, 155], [-1106, 155], [-1106, 115], [-1107, 114], [-1114, 114], [-1115, 107], [-1115, 106], [-1121, 106], [-1121, 129], [-1115, 129], [-1115, 138]], "199-208": [[-1059, 161], [-1059, 154], [-1114, 154], [-1114, 161], [-1059, 161], [-1043, 161], [-1043, 154], [-1059, 154]], "250-258": [[-1129, 138], [-1129, 161], [-1002, 161], [-1002, 154], [-1106, 154], [-1106, 114], [-1114, 114], [-1114, 107], [-1115, 107], [-1115, 104], [-1114, 104], [-1114, 99], [-1115, 99], [-1115, 98], [-1120, 98], [-1120, 99], [-1121, 99], [-1121, 104], [-1120, 104], [-1120, 106], [-1120, 107], [-1121, 107], [-1121, 112], [-1120, 112], [-1120, 113], [-1120, 114], [-1121, 114], [-1121, 128], [-1120, 128], [-1120, 129], [-1112, 129], [-1113, 138]]}, "center": {"212-220": [-1118, 150], "199-208": [-1078, 158], "250-258": [-1117, 149]}}, -{"id": 3009, "name": "Buc-ee's", "description": "Built by fans of the \"Jet Lag: The Game\" YouTube channel, this portrait of Buc-ee the Beaver was created to reference the occasions on which the American convenience store chain has appeared in the show.\n\nKnown for its absurdly large locations, clean bathrooms, and unmistakable southern charm, Buc-ee's has garnered a cult following from American road-trippers everywhere.", "links": {"website": ["https://youtube.com/jetlagthegame", "https://nebula.tv/jetla0", "https://en.wikipedia.org/wiki/Buc-ee's"], "subreddit": ["jetlagthegame"], "discord": ["jetlag"]}, "path": {"230-258": [[-1381, -508], [-1372, -508], [-1371, -507], [-1370, -507], [-1369, -506], [-1368, -506], [-1365, -503], [-1365, -502], [-1364, -501], [-1364, -500], [-1363, -499], [-1363, -490], [-1364, -489], [-1364, -488], [-1365, -487], [-1365, -486], [-1368, -483], [-1369, -483], [-1370, -482], [-1371, -482], [-1372, -481], [-1381, -481], [-1382, -482], [-1383, -482], [-1384, -483], [-1385, -483], [-1388, -486], [-1388, -487], [-1389, -488], [-1389, -489], [-1390, -490], [-1390, -499], [-1389, -500], [-1389, -501], [-1388, -502], [-1388, -503], [-1385, -506], [-1384, -506], [-1383, -507], [-1382, -507]]}, "center": {"230-258": [-1376, -494]}}, -{"id": 3010, "name": "Subnautica", "description": "On the first few days, the Subnautica community gave up hope and decided not to do anything this year. Then, a the peeper they made randomly appeared on the canvas, so they made that their territory. Then a cuddlfish randomly appeared, a second peeper, and a bladderfish. So they kept that space as their own and continues to work apon it", "links": {"website": ["https://www.subnautica.com/"], "subreddit": ["subnautica"], "discord": ["5ehHMYE5H8"]}, "path": {"250-258": [[-323, 674], [-283, 674], [-283, 665], [-287, 665], [-287, 648], [-282, 642], [-282, 634], [-288, 634], [-288, 631], [-295, 631], [-295, 632], [-296, 632], [-297, 633], [-298, 634], [-298, 636], [-301, 636], [-302, 637], [-303, 638], [-304, 638], [-306, 642], [-307, 643], [-308, 645], [-310, 645], [-310, 651], [-318, 651], [-318, 664], [-322, 664], [-323, 665]]}, "center": {"250-258": [-300, 660]}}, -{"id": 3011, "name": "Argentina's WC Titles", "description": "Three stars symbolizing Argentina's triumphs in the FIFA World Cup (1978, 1986 and 2022)", "links": {"subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"214-258": [[1309, 916], [1308, 917], [1308, 918], [1307, 919], [1307, 921], [1306, 922], [1306, 923], [1304, 925], [1298, 925], [1304, 930], [1304, 932], [1302, 934], [1302, 935], [1301, 936], [1301, 937], [1303, 937], [1304, 936], [1306, 935], [1307, 935], [1308, 934], [1309, 933], [1309, 940], [1308, 941], [1308, 943], [1307, 944], [1307, 946], [1306, 947], [1304, 949], [1299, 949], [1301, 951], [1301, 952], [1302, 952], [1304, 954], [1304, 957], [1302, 959], [1302, 960], [1301, 961], [1301, 962], [1303, 962], [1304, 961], [1305, 961], [1308, 958], [1309, 958], [1309, 967], [1307, 969], [1307, 971], [1306, 972], [1306, 974], [1305, 975], [1298, 975], [1299, 975], [1300, 976], [1300, 977], [1301, 977], [1302, 978], [1303, 978], [1304, 979], [1304, 982], [1303, 983], [1303, 985], [1302, 986], [1302, 987], [1304, 987], [1308, 983], [1309, 983], [1310, 983], [1312, 985], [1313, 985], [1315, 987], [1316, 987], [1316, 984], [1314, 982], [1314, 980], [1317, 977], [1318, 977], [1320, 975], [1314, 975], [1313, 974], [1312, 973], [1312, 972], [1311, 971], [1311, 969], [1309, 967], [1309, 958], [1310, 958], [1313, 961], [1314, 961], [1315, 962], [1317, 962], [1317, 960], [1315, 958], [1315, 953], [1316, 952], [1317, 952], [1317, 951], [1319, 949], [1314, 949], [1313, 948], [1312, 947], [1312, 946], [1311, 945], [1311, 944], [1310, 943], [1310, 941], [1309, 940], [1309, 933], [1311, 935], [1312, 935], [1313, 936], [1314, 936], [1315, 937], [1317, 937], [1317, 936], [1315, 934], [1315, 933], [1314, 932], [1314, 930], [1317, 927], [1318, 927], [1320, 925], [1314, 925], [1313, 924], [1312, 924], [1312, 922], [1311, 921], [1311, 919], [1310, 918], [1310, 917], [1309, 917]]}, "center": {"214-258": [1309, 952]}}, -{"id": 3012, "name": "Hijitus", "description": "Tribute for r/PlaceArg for Hijitus, a character created by Manuel García Ferré. He is a humble, good-hearted kid who is sometimes tricked by evildoers, but as soon as he discovers their evil intentions, he transforms himself into a superhero to stop them.", "links": {"website": ["https://en.wikipedia.org/wiki/Hijitus"], "subreddit": ["PlaceArg"], "discord": ["PlaceArg"]}, "path": {"250-258": [[1316, 969], [1329, 998], [1360, 997], [1353, 966], [1336, 953]]}, "center": {"250-258": [1338, 976]}}, -{"id": 3013, "name": "KuKa from Love Live! Superstar!!", "description": "Kanon Shibuya and Keke Tang (Kuku Tang in japanese) was the two members at the origin of Liella!, the groupe of Love Live! Superstar!!. They form KuKa. The name is form by the begining or their name (KUku and KAnon).\n\nMade by the french community of Love Live.", "links": {"website": ["https://love-live-en-francais.blogspot.com/", "https://twitter.com/lovelive_fr"], "discord": ["lovelivefrance"]}, "path": {"250-258": [[262, -911], [262, -909], [263, -908], [265, -908], [271, -908], [272, -909], [272, -911]]}, "center": {"250-258": [267, -909]}}, -{"id": 3014, "name": "Minecraft Discontinued Features Wiki Logo", "description": "Logo of Minecraft discontinued features wiki and community", "links": {"website": ["https://mcdf.wiki.gg/wiki/Main_Page"], "discord": ["FUmqS6ATry"]}, "path": {"250-258": [[-410, -972], [-400, -967], [-397, -967], [-387, -972], [-387, -986], [-395, -992], [-396, -991], [-397, -991], [-398, -991], [-398, -992], [-397, -993], [-396, -994], [-395, -995], [-394, -994], [-393, -996], [-394, -997], [-395, -995], [-398, -995], [-398, -999], [-398, -997], [-399, -997], [-399, -994], [-401, -994], [-401, -995], [-403, -995], [-401, -995], [-401, -994], [-400, -994], [-400, -993], [-401, -992], [-402, -991], [-406, -991], [-403, -991], [-403, -990], [-410, -986]]}, "center": {"250-258": [-398, -979]}}, -{"id": 3015, "name": "Red Velvet's 'ReVebot'", "description": "A robot mascot of the K-Pop group, Red Velvet, named 'ReVe'. Created by the members of the Red Velvet Discord Server.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"238-258": [[1301, 4], [1315, 4], [1315, 21], [1301, 21], [1301, 4], [1302, 4]]}, "center": {"238-258": [1308, 13]}}, -{"id": 3017, "name": "Enner Valencia", "description": "Enner Remberto Valencia Lastra is an Ecuadorian footballer who plays as a striker. He currently plays for Sport Club Internacional.", "links": {"subreddit": ["ecuador"], "discord": ["jyj9mVkgWB"]}, "path": {"167-258": [[355, 736], [356, 736], [356, 735], [357, 735], [357, 734], [358, 734], [358, 733], [359, 733], [359, 732], [360, 732], [360, 731], [361, 731], [362, 731], [363, 731], [363, 723], [372, 723], [372, 731], [376, 731], [376, 733], [377, 733], [377, 734], [378, 734], [378, 735], [379, 735], [379, 736], [380, 736], [380, 737], [379, 737], [378, 737], [378, 738], [378, 744], [377, 744], [377, 743], [376, 743], [376, 738], [375, 738], [375, 737], [374, 737], [374, 736], [373, 736], [373, 749], [362, 749], [362, 737], [360, 737], [360, 738], [359, 738], [359, 741], [358, 741], [358, 743], [356, 743], [356, 742], [355, 742]]}, "center": {"167-258": [368, 736]}}, -{"id": 3018, "name": "Beatrice the Golden Witch", "description": "Beatrice (ベアトリーチェ Beatorīche) is the mysterious Golden Witch in Rokkenjima.\nNative from Umineko When They Cry (Japanese: うみねこのなく頃に, Hepburn: Umineko no Naku Koro ni, lit. \"When the Seagulls Cry\") is a Japanese dōjin soft visual novel series produced by 07th Expansion.", "links": {"subreddit": ["umineko"]}, "path": {"250-258": [[-571, 355], [-560, 355], [-560, 366], [-571, 366]]}, "center": {"250-258": [-565, 361]}}, -{"id": 3019, "name": "Philip J. Fry", "description": "The main protagonist of Futurama. An animated, futuristic sitcom created by Matt Groening. \n\nThis specific frame of Fry comes from Season 2, Episode 6: \"The Lesser of Two Evils\", in reference to \"Not Sure If\" image macro.", "links": {"website": ["https://futurama.fandom.com/wiki/Philip_J._Fry", "https://knowyourmeme.com/memes/futurama-fry-not-sure-if"], "subreddit": ["futurama"], "discord": ["u5jVf9SX"]}, "path": {"250-258": [[-1187, -311], [-1186, -310], [-1186, -307], [-1187, -306], [-1187, -304], [-1188, -303], [-1187, -302], [-1186, -302], [-1186, -300], [-1185, -299], [-1184, -298], [-1183, -297], [-1183, -295], [-1182, -294], [-1181, -293], [-1181, -292], [-1180, -292], [-1179, -292], [-1178, -291], [-1177, -290], [-1176, -290], [-1177, -289], [-1177, -281], [-1161, -281], [-1160, -282], [-1159, -283], [-1158, -284], [-1157, -285], [-1155, -285], [-1154, -286], [-1154, -287], [-1155, -288], [-1156, -289], [-1156, -291], [-1155, -291], [-1155, -292], [-1156, -293], [-1157, -294], [-1156, -295], [-1156, -299], [-1157, -300], [-1158, -301], [-1159, -302], [-1160, -303], [-1159, -304], [-1158, -304], [-1157, -305], [-1156, -305], [-1156, -312], [-1157, -312], [-1157, -313], [-1158, -314], [-1158, -316], [-1159, -316], [-1160, -317], [-1161, -317], [-1162, -318], [-1163, -319], [-1164, -319], [-1164, -318], [-1163, -317], [-1163, -316], [-1162, -316], [-1162, -312], [-1163, -313], [-1164, -313], [-1164, -314], [-1165, -314], [-1165, -316], [-1167, -316], [-1167, -317], [-1168, -318], [-1169, -319], [-1169, -320], [-1170, -321], [-1171, -321], [-1171, -318], [-1170, -317], [-1171, -316], [-1172, -316], [-1173, -315], [-1178, -315], [-1179, -314], [-1180, -313], [-1181, -313], [-1182, -312], [-1182, -311], [-1184, -311], [-1185, -312], [-1186, -312]]}, "center": {"250-258": [-1172, -303]}}, -{"id": 3020, "name": "Ryūgū Rena (竜宮 レナ)", "description": "Ryūgū Rena is one of the main characters in the Higurashi no Naku Koro ni.\nHigurashi When They Cry (Japanese: ひぐらしのなく頃に ) is a Japanese murder mystery dōjin soft visual novel series produced by 07th Expansion that comprises the first two entries of the When They Cry franchise. The series focuses on a group of young friends living in the fictional village of Hinamizawa and the strange events that occur there in 1983.", "links": {"subreddit": ["Higurashinonakakoroni"]}, "path": {"103-258": [[-560, 355], [-548, 355], [-548, 366], [-560, 366]]}, "center": {"103-258": [-554, 361]}}, -{"id": 3021, "name": "Bloons Tower Defense 6", "description": "A popular tower defense game where players strategically place monkeys equipped with various abilities and upgrades to pop waves of colorful Bloons.", "links": {"subreddit": ["BTD6"], "discord": ["TRHTdurNPj"]}, "path": {"250-258": [[-1216, -622], [-1196, -622], [-1195, -610], [-1226, -610], [-1226, -620], [-1215, -622]]}, "center": {"250-258": [-1210, -616]}}, -{"id": 3022, "name": "Small Duck On Bottlecap", "description": "A small duck. Unknown who made it, defended by Just LEGO Things and UMICH during night hours.", "links": {}, "path": {"250-258": [[715, -333], [715, -332], [716, -332], [716, -330], [717, -330], [717, -331], [718, -331], [718, -332], [720, -332], [719, -332], [719, -334], [717, -334], [717, -332], [715, -332]]}, "center": {"250-258": [718, -333]}}, -{"id": 3023, "name": "Quilldren", "description": "Quilldren (singular and plural) is the fan mascot for Nijisanji EN's VTuber - Ike Eveland. It is a small, fluffy, ball creature with a blue feather sticking out on top. These floofs are commonly seen in Ike Eveland's live streams and Ike Eveland's twitter, which are linked below.", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/ike-eveland", "https://www.youtube.com/channel/UC4yNIKGvy-YUrwYupVdLDXA", "https://twitter.com/ike_eveland"]}, "path": {"250-258": [[-659, -254], [-657, -254], [-655, -251], [-655, -248], [-660, -248], [-660, -253], [-659, -253]]}, "center": {"250-258": [-658, -251]}}, -{"id": 3024, "name": "Luca Kaneshiro", "description": "Luca Kaneshiro (ルカ・カネシロ) is an English male VTuber affiliated with VTuber agency NIJISANJI English, amassing over 1.03M subscribers. Luca is part of their fourth wave - Luxiem - along with Shu Yamino, Ike Eveland, Mysta Rias, and Vox Akuma. He says POG a lot! Next to him is his fans' mascot, who are called Lucubs, with a flower behind their ear.", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/luca-kaneshiro", "https://www.youtube.com/channel/UC7Gb7Uawe20QyFibhLl1lzA"]}, "path": {"250-258": [[-669, -299], [-662, -299], [-661, -292], [-669, -292]]}, "center": {"250-258": [-665, -295]}}, -{"id": 3025, "name": "Flag of Honduras", "description": "Honduras is a country in Central America.\n\nAfter establishing its residence in this location, Honduras survived by establishing friendships with nearby neighbors such as Sweden, Panama, and El Salvador, and withstand an incursion by a Peruvian streamer. A teddy bear often shown above the flag is built in honor of a suicide victim named Isaac.", "links": {"website": ["https://en.wikipedia.org/wiki/Honduras", "https://en.wikipedia.org/wiki/Flag_of_Honduras", "https://www.twitch.tv/frankz7x"], "subreddit": ["placehn"], "discord": ["uckkkcY5nA"]}, "path": {"155": [[-851, 447], [-841, 447], [-841, 455], [-851, 455]], "161": [[-862, 430], [-801, 430], [-801, 456], [-821, 456], [-821, 457], [-833, 457], [-838, 452], [-843, 457], [-862, 457]], "217": [[-862, 430], [-780, 430], [-780, 457], [-797, 457], [-797, 458], [-799, 460], [-799, 461], [-801, 464], [-802, 462], [-803, 461], [-803, 460], [-804, 459], [-805, 458], [-805, 457], [-835, 457], [-835, 456], [-836, 455], [-836, 454], [-838, 452], [-840, 454], [-840, 455], [-841, 456], [-841, 457], [-862, 457]], "158-160": [[-862, 430], [-821, 430], [-821, 457], [-833, 457], [-838, 452], [-843, 457], [-862, 457]], "162-164": [[-862, 430], [-801, 430], [-801, 456], [-821, 456], [-821, 457], [-862, 457]], "165-206": [[-862, 430], [-801, 430], [-801, 457], [-862, 457]], "207-214": [[-862, 430], [-801, 430], [-801, 457], [-835, 457], [-835, 456], [-836, 455], [-836, 454], [-838, 452], [-840, 454], [-840, 455], [-841, 456], [-841, 457], [-862, 457]], "215-216": [[-862, 430], [-801, 430], [-801, 429], [-780, 429], [-780, 457], [-797, 457], [-797, 458], [-799, 460], [-799, 461], [-801, 464], [-802, 462], [-803, 461], [-803, 460], [-804, 459], [-805, 458], [-805, 457], [-835, 457], [-835, 456], [-836, 455], [-836, 454], [-838, 452], [-840, 454], [-840, 455], [-841, 456], [-841, 457], [-862, 457]], "218-258": [[-862, 430], [-791, 430], [-791, 457], [-797, 457], [-797, 458], [-799, 460], [-799, 461], [-801, 463], [-803, 461], [-803, 460], [-805, 458], [-805, 457], [-835, 457], [-835, 456], [-836, 455], [-836, 454], [-838, 452], [-840, 454], [-840, 455], [-841, 456], [-841, 457], [-862, 457]]}, "center": {"155": [-846, 451], "161": [-848, 444], "217": [-802, 444], "158-160": [-848, 444], "162-164": [-831, 444], "165-206": [-831, 444], "207-214": [-821, 444], "215-216": [-796, 443], "218-258": [-826, 443]}}, +{"id": 3000, "name": "Bishop Goes on Vacation", "description": "\"Bishop goes on vacation, never comes back,\" is a meme on the r/AnarchyChess subreddit. It originated from a post on the subreddit, where a user was using ChatGPT to generate \"new responses.\"\n\nThese responses formed a chain, starting with \"Google en passant,\" the most common AnarchyChess meme.\n\nThe responses go like this:\n\"Google en passant\"\n\"Holy Hell!\"\n\"New response just dropped.\"\n\"Actual zombie\"\n(this starts the ChatGPT responses): \"Call the exorcist!\"\n\"Bishop goes on vacation, never comes back.\"", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"210-231": [[520, -679], [523, -679], [523, -680], [524, -680], [524, -681], [526, -681], [526, -680], [529, -680], [529, -681], [530, -681], [530, -683], [529, -684], [528, -684], [528, -685], [527, -685], [527, -684], [526, -684], [526, -683], [525, -683], [524, -683], [524, -684], [523, -684], [523, -686], [524, -686], [524, -687], [523, -687], [523, -689], [522, -689], [522, -690], [521, -690], [521, -689], [520, -689], [520, -688], [520, -687], [519, -687], [519, -686], [520, -686], [520, -685], [520, -684], [519, -684], [519, -682], [518, -682], [518, -681], [519, -681], [519, -680], [520, -680]], "232-258, T": [[517, -680], [514, -680], [514, -681], [513, -681], [513, -683], [514, -683], [514, -684], [515, -684], [515, -685], [516, -685], [516, -684], [517, -684], [517, -683], [519, -683], [519, -684], [520, -684], [520, -686], [519, -686], [519, -687], [520, -687], [520, -689], [521, -689], [521, -690], [522, -690], [522, -689], [523, -689], [523, -688], [523, -687], [524, -687], [524, -686], [523, -686], [523, -684], [524, -684], [524, -683], [525, -683], [525, -681], [524, -681], [524, -680], [523, -680], [523, -679], [520, -679], [520, -680], [519, -680], [519, -681], [517, -681]]}, "center": {"210-231": [522, -682], "232-258, T": [522, -682]}}, +{"id": 3001, "name": "BKDK / BakuDeku", "description": "Izuku Midoriya and Katsuki Bakugo.\nA ship from the popular anime My Hero Academia / Boku No Hero Academia.", "links": {"website": ["https://twitter.com/KOmy_0o"]}, "path": {"223-258, T": [[-1433, 115], [-1432, 119], [-1430, 121], [-1429, 122], [-1428, 125], [-1428, 127], [-1430, 127], [-1430, 131], [-1417, 130], [-1394, 130], [-1394, 126], [-1394, 125], [-1396, 125], [-1395, 124], [-1394, 123], [-1391, 121], [-1389, 119], [-1389, 103], [-1395, 108], [-1396, 107], [-1398, 107], [-1402, 102], [-1404, 107], [-1407, 105], [-1413, 104], [-1415, 106], [-1417, 107], [-1418, 106], [-1423, 106], [-1424, 107], [-1426, 108], [-1428, 109], [-1430, 110]]}, "center": {"223-258, T": [-1410, 118]}}, +{"id": 3002, "name": "OBX", "description": "A stylized shortening of: 'Outer Banks' a chain of barrier islands off the coast of North Carolina. Built by locals", "links": {"subreddit": ["obx"]}, "path": {"249-258, T": [[225, -981], [225, -975], [237, -975], [237, -981]]}, "center": {"249-258, T": [231, -978]}}, +{"id": 3003, "name": "Richarlyson (QSMP egg)", "description": "This is RIcharlyson an egg from QSMP. Son of the br streamers.", "links": {}, "path": {"250-258, T": [[68, 420], [69, 421], [69, 422], [68, 423], [69, 424], [69, 425], [69, 426], [70, 427], [70, 428], [69, 428], [68, 428], [68, 429], [68, 430], [67, 430], [64, 430], [64, 429], [64, 428], [62, 428], [62, 427], [63, 426], [63, 425], [63, 424], [64, 424], [64, 423], [63, 422], [64, 422], [64, 421], [65, 421], [65, 420], [68, 420], [67, 420], [66, 420], [67, 423], [67, 421], [66, 420]]}, "center": {"250-258, T": [66, 426]}}, +{"id": 3004, "name": "Prehistoric Kingdom - Crowny Banner", "description": "The majestic banner of the Prehistoric Kingdom community, an indie tycoon game where you can build the zoo of your paleozoological dreams. In the bottom right floating alongside her duck cousins you can catch a glimpse of the beloved sauropod mascot, Crowny. Long may she reign! \n\nAllies: Central Alliance, P.A.S.T.A., Barotrauma", "links": {"subreddit": ["pkgame"], "discord": ["pkgame"]}, "path": {"250-258, T": [[-294, 626], [-288, 626], [-288, 634], [-236, 633], [-236, 621], [-294, 621]]}, "center": {"250-258, T": [-268, 627]}}, +{"id": 3005, "name": "Holocure Roboco", "description": "Roboco from Hololive Gen 0, but in her Holocure depiction.", "links": {"website": ["https://hololive.wiki/wiki/Roboco", "https://holocure.fandom.com/wiki/Roboco-san"]}, "path": {"204-258, T": [[1259, -863], [1277, -863], [1278, -832], [1259, -831]]}, "center": {"204-258, T": [1268, -847]}}, +{"id": 3006, "name": "WBNS X MINECRAFT", "description": "Minecraft series created by DUXORETHEY, in which several famous streamers/youtubers from the Spanish-speaking community participate.", "links": {"website": ["https://youtube.com/@AQUISI_", "https://youtube.com/@DUXO", "https://youtube.com/@Mictia00", "https://youtube.com/@c3jotct", "https://youtube.com/@Soarinng", "https://youtube.com/@Mishifuu", "https://youtube.com/@Natalan", "https://youtube.com/@EstailusVR"]}, "path": {"250-258, T": [[-707, -793], [-707, -792], [-657, -792], [-664, -757], [-708, -756]]}, "center": {"250-258, T": [-690, -774]}}, +{"id": 3007, "name": "KuryKat", "description": "A small artwork that I made for myself with the help of some friends ❤\n\nUnfortunately it was never *actually* finished....\n\nThe first link shows the preview of what we wanted to create.", "links": {"website": ["https://imgur.com/a/K852o19", "https://kurykat.dev/", "https://github.com/KuryKat", "https://twitter.com/KuryKat"], "discord": ["264NBxYHAW"]}, "path": {"172-258, T": [[619, 676], [634, 670], [647, 659], [656, 646], [655, 627], [649, 631], [648, 630], [653, 619], [652, 619], [646, 625], [645, 624], [651, 612], [643, 621], [641, 617], [649, 607], [647, 605], [632, 620], [621, 638], [618, 648], [617, 662], [619, 660], [630, 655], [629, 657], [617, 677]]}, "center": {"172-258, T": [637, 641]}}, +{"id": 3008, "name": "Mindustry", "description": "Mindustry is a factory-building game with tower defense and RTS elements. Where you create elaborate supply chains to feed ammo into your turrets, produce materials to use for building, and construct units. And you need to defend your base from ennemies waves.\n\nThis art is composed of 11 holies router, a block used by all players because of his powerful ability to spread items in his axis, there is also a few mores blocks like the core (down left) and the turret (right), and a custom french flag block and colors in thanks of the art space for small communities", "links": {"website": ["https://mindustry.fandom.com/wiki/Mindustry_Wiki"], "subreddit": ["Mindustry"], "discord": ["mindustry"]}, "path": {"212-220": [[-1129, 138], [-1129, 161], [-1107, 161], [-1066, 161], [-1066, 155], [-1106, 155], [-1106, 115], [-1107, 114], [-1114, 114], [-1115, 107], [-1115, 106], [-1121, 106], [-1121, 129], [-1115, 129], [-1115, 138]], "199-208": [[-1059, 161], [-1059, 154], [-1114, 154], [-1114, 161], [-1059, 161], [-1043, 161], [-1043, 154], [-1059, 154]], "250-258, T": [[-1129, 138], [-1129, 161], [-1002, 161], [-1002, 154], [-1106, 154], [-1106, 114], [-1114, 114], [-1114, 107], [-1115, 107], [-1115, 104], [-1114, 104], [-1114, 99], [-1115, 99], [-1115, 98], [-1120, 98], [-1120, 99], [-1121, 99], [-1121, 104], [-1120, 104], [-1120, 106], [-1120, 107], [-1121, 107], [-1121, 112], [-1120, 112], [-1120, 113], [-1120, 114], [-1121, 114], [-1121, 128], [-1120, 128], [-1120, 129], [-1112, 129], [-1113, 138]]}, "center": {"212-220": [-1118, 150], "199-208": [-1078, 158], "250-258, T": [-1117, 149]}}, +{"id": 3009, "name": "Buc-ee's", "description": "Built by fans of the \"Jet Lag: The Game\" YouTube channel, this portrait of Buc-ee the Beaver was created to reference the occasions on which the American convenience store chain has appeared in the show.\n\nKnown for its absurdly large locations, clean bathrooms, and unmistakable southern charm, Buc-ee's has garnered a cult following from American road-trippers everywhere.", "links": {"website": ["https://youtube.com/jetlagthegame", "https://nebula.tv/jetla0", "https://en.wikipedia.org/wiki/Buc-ee's"], "subreddit": ["jetlagthegame"], "discord": ["jetlag"]}, "path": {"230-258, T": [[-1381, -508], [-1372, -508], [-1371, -507], [-1370, -507], [-1369, -506], [-1368, -506], [-1365, -503], [-1365, -502], [-1364, -501], [-1364, -500], [-1363, -499], [-1363, -490], [-1364, -489], [-1364, -488], [-1365, -487], [-1365, -486], [-1368, -483], [-1369, -483], [-1370, -482], [-1371, -482], [-1372, -481], [-1381, -481], [-1382, -482], [-1383, -482], [-1384, -483], [-1385, -483], [-1388, -486], [-1388, -487], [-1389, -488], [-1389, -489], [-1390, -490], [-1390, -499], [-1389, -500], [-1389, -501], [-1388, -502], [-1388, -503], [-1385, -506], [-1384, -506], [-1383, -507], [-1382, -507]]}, "center": {"230-258, T": [-1376, -494]}}, +{"id": 3010, "name": "Subnautica", "description": "On the first few days, the Subnautica community gave up hope and decided not to do anything this year. Then, a the peeper they made randomly appeared on the canvas, so they made that their territory. Then a cuddlfish randomly appeared, a second peeper, and a bladderfish. So they kept that space as their own and continues to work apon it", "links": {"website": ["https://www.subnautica.com/"], "subreddit": ["subnautica"], "discord": ["5ehHMYE5H8"]}, "path": {"250-258, T": [[-323, 674], [-283, 674], [-283, 665], [-287, 665], [-287, 648], [-282, 642], [-282, 634], [-288, 634], [-288, 631], [-295, 631], [-295, 632], [-296, 632], [-297, 633], [-298, 634], [-298, 636], [-301, 636], [-302, 637], [-303, 638], [-304, 638], [-306, 642], [-307, 643], [-308, 645], [-310, 645], [-310, 651], [-318, 651], [-318, 664], [-322, 664], [-323, 665]]}, "center": {"250-258, T": [-300, 660]}}, +{"id": 3011, "name": "Argentina's WC Titles", "description": "Three stars symbolizing Argentina's triumphs in the FIFA World Cup (1978, 1986 and 2022)", "links": {"subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"214-258, T": [[1309, 916], [1308, 917], [1308, 918], [1307, 919], [1307, 921], [1306, 922], [1306, 923], [1304, 925], [1298, 925], [1304, 930], [1304, 932], [1302, 934], [1302, 935], [1301, 936], [1301, 937], [1303, 937], [1304, 936], [1306, 935], [1307, 935], [1308, 934], [1309, 933], [1309, 940], [1308, 941], [1308, 943], [1307, 944], [1307, 946], [1306, 947], [1304, 949], [1299, 949], [1301, 951], [1301, 952], [1302, 952], [1304, 954], [1304, 957], [1302, 959], [1302, 960], [1301, 961], [1301, 962], [1303, 962], [1304, 961], [1305, 961], [1308, 958], [1309, 958], [1309, 967], [1307, 969], [1307, 971], [1306, 972], [1306, 974], [1305, 975], [1298, 975], [1299, 975], [1300, 976], [1300, 977], [1301, 977], [1302, 978], [1303, 978], [1304, 979], [1304, 982], [1303, 983], [1303, 985], [1302, 986], [1302, 987], [1304, 987], [1308, 983], [1309, 983], [1310, 983], [1312, 985], [1313, 985], [1315, 987], [1316, 987], [1316, 984], [1314, 982], [1314, 980], [1317, 977], [1318, 977], [1320, 975], [1314, 975], [1313, 974], [1312, 973], [1312, 972], [1311, 971], [1311, 969], [1309, 967], [1309, 958], [1310, 958], [1313, 961], [1314, 961], [1315, 962], [1317, 962], [1317, 960], [1315, 958], [1315, 953], [1316, 952], [1317, 952], [1317, 951], [1319, 949], [1314, 949], [1313, 948], [1312, 947], [1312, 946], [1311, 945], [1311, 944], [1310, 943], [1310, 941], [1309, 940], [1309, 933], [1311, 935], [1312, 935], [1313, 936], [1314, 936], [1315, 937], [1317, 937], [1317, 936], [1315, 934], [1315, 933], [1314, 932], [1314, 930], [1317, 927], [1318, 927], [1320, 925], [1314, 925], [1313, 924], [1312, 924], [1312, 922], [1311, 921], [1311, 919], [1310, 918], [1310, 917], [1309, 917]]}, "center": {"214-258, T": [1309, 952]}}, +{"id": 3012, "name": "Hijitus", "description": "Tribute for r/PlaceArg for Hijitus, a character created by Manuel García Ferré. He is a humble, good-hearted kid who is sometimes tricked by evildoers, but as soon as he discovers their evil intentions, he transforms himself into a superhero to stop them.", "links": {"website": ["https://en.wikipedia.org/wiki/Hijitus"], "subreddit": ["PlaceArg"], "discord": ["PlaceArg"]}, "path": {"250-258, T": [[1316, 969], [1329, 998], [1360, 997], [1353, 966], [1336, 953]]}, "center": {"250-258, T": [1338, 976]}}, +{"id": 3013, "name": "KuKa from Love Live! Superstar!!", "description": "Kanon Shibuya and Keke Tang (Kuku Tang in japanese) was the two members at the origin of Liella!, the groupe of Love Live! Superstar!!. They form KuKa. The name is form by the begining or their name (KUku and KAnon).\n\nMade by the french community of Love Live.", "links": {"website": ["https://love-live-en-francais.blogspot.com/", "https://twitter.com/lovelive_fr"], "discord": ["lovelivefrance"]}, "path": {"250-258, T": [[262, -911], [262, -909], [263, -908], [265, -908], [271, -908], [272, -909], [272, -911]]}, "center": {"250-258, T": [267, -909]}}, +{"id": 3014, "name": "Minecraft Discontinued Features Wiki Logo", "description": "Logo of Minecraft discontinued features wiki and community", "links": {"website": ["https://mcdf.wiki.gg/wiki/Main_Page"], "discord": ["FUmqS6ATry"]}, "path": {"250-258, T": [[-410, -972], [-400, -967], [-397, -967], [-387, -972], [-387, -986], [-395, -992], [-396, -991], [-397, -991], [-398, -991], [-398, -992], [-397, -993], [-396, -994], [-395, -995], [-394, -994], [-393, -996], [-394, -997], [-395, -995], [-398, -995], [-398, -999], [-398, -997], [-399, -997], [-399, -994], [-401, -994], [-401, -995], [-403, -995], [-401, -995], [-401, -994], [-400, -994], [-400, -993], [-401, -992], [-402, -991], [-406, -991], [-403, -991], [-403, -990], [-410, -986]]}, "center": {"250-258, T": [-398, -979]}}, +{"id": 3015, "name": "Red Velvet's 'ReVebot'", "description": "A robot mascot of the K-Pop group, Red Velvet, named 'ReVe'. Created by the members of the Red Velvet Discord Server.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"238-258, T": [[1301, 4], [1315, 4], [1315, 21], [1301, 21], [1301, 4], [1302, 4]]}, "center": {"238-258, T": [1308, 13]}}, +{"id": 3017, "name": "Enner Valencia", "description": "Enner Remberto Valencia Lastra is an Ecuadorian footballer who plays as a striker. He currently plays for Sport Club Internacional.", "links": {"subreddit": ["ecuador"], "discord": ["jyj9mVkgWB"]}, "path": {"167-258, T": [[355, 736], [356, 736], [356, 735], [357, 735], [357, 734], [358, 734], [358, 733], [359, 733], [359, 732], [360, 732], [360, 731], [361, 731], [362, 731], [363, 731], [363, 723], [372, 723], [372, 731], [376, 731], [376, 733], [377, 733], [377, 734], [378, 734], [378, 735], [379, 735], [379, 736], [380, 736], [380, 737], [379, 737], [378, 737], [378, 738], [378, 744], [377, 744], [377, 743], [376, 743], [376, 738], [375, 738], [375, 737], [374, 737], [374, 736], [373, 736], [373, 749], [362, 749], [362, 737], [360, 737], [360, 738], [359, 738], [359, 741], [358, 741], [358, 743], [356, 743], [356, 742], [355, 742]]}, "center": {"167-258, T": [368, 736]}}, +{"id": 3018, "name": "Beatrice the Golden Witch", "description": "Beatrice (ベアトリーチェ Beatorīche) is the mysterious Golden Witch in Rokkenjima.\nNative from Umineko When They Cry (Japanese: うみねこのなく頃に, Hepburn: Umineko no Naku Koro ni, lit. \"When the Seagulls Cry\") is a Japanese dōjin soft visual novel series produced by 07th Expansion.", "links": {"subreddit": ["umineko"]}, "path": {"250-258, T": [[-571, 355], [-560, 355], [-560, 366], [-571, 366]]}, "center": {"250-258, T": [-565, 361]}}, +{"id": 3019, "name": "Philip J. Fry", "description": "The main protagonist of Futurama. An animated, futuristic sitcom created by Matt Groening. \n\nThis specific frame of Fry comes from Season 2, Episode 6: \"The Lesser of Two Evils\", in reference to \"Not Sure If\" image macro.", "links": {"website": ["https://futurama.fandom.com/wiki/Philip_J._Fry", "https://knowyourmeme.com/memes/futurama-fry-not-sure-if"], "subreddit": ["futurama"], "discord": ["u5jVf9SX"]}, "path": {"250-258, T": [[-1187, -311], [-1186, -310], [-1186, -307], [-1187, -306], [-1187, -304], [-1188, -303], [-1187, -302], [-1186, -302], [-1186, -300], [-1185, -299], [-1184, -298], [-1183, -297], [-1183, -295], [-1182, -294], [-1181, -293], [-1181, -292], [-1180, -292], [-1179, -292], [-1178, -291], [-1177, -290], [-1176, -290], [-1177, -289], [-1177, -281], [-1161, -281], [-1160, -282], [-1159, -283], [-1158, -284], [-1157, -285], [-1155, -285], [-1154, -286], [-1154, -287], [-1155, -288], [-1156, -289], [-1156, -291], [-1155, -291], [-1155, -292], [-1156, -293], [-1157, -294], [-1156, -295], [-1156, -299], [-1157, -300], [-1158, -301], [-1159, -302], [-1160, -303], [-1159, -304], [-1158, -304], [-1157, -305], [-1156, -305], [-1156, -312], [-1157, -312], [-1157, -313], [-1158, -314], [-1158, -316], [-1159, -316], [-1160, -317], [-1161, -317], [-1162, -318], [-1163, -319], [-1164, -319], [-1164, -318], [-1163, -317], [-1163, -316], [-1162, -316], [-1162, -312], [-1163, -313], [-1164, -313], [-1164, -314], [-1165, -314], [-1165, -316], [-1167, -316], [-1167, -317], [-1168, -318], [-1169, -319], [-1169, -320], [-1170, -321], [-1171, -321], [-1171, -318], [-1170, -317], [-1171, -316], [-1172, -316], [-1173, -315], [-1178, -315], [-1179, -314], [-1180, -313], [-1181, -313], [-1182, -312], [-1182, -311], [-1184, -311], [-1185, -312], [-1186, -312]]}, "center": {"250-258, T": [-1172, -303]}}, +{"id": 3020, "name": "Ryūgū Rena (竜宮 レナ)", "description": "Ryūgū Rena is one of the main characters in the Higurashi no Naku Koro ni.\nHigurashi When They Cry (Japanese: ひぐらしのなく頃に ) is a Japanese murder mystery dōjin soft visual novel series produced by 07th Expansion that comprises the first two entries of the When They Cry franchise. The series focuses on a group of young friends living in the fictional village of Hinamizawa and the strange events that occur there in 1983.", "links": {"subreddit": ["Higurashinonakakoroni"]}, "path": {"103-258, T": [[-560, 355], [-548, 355], [-548, 366], [-560, 366]]}, "center": {"103-258, T": [-554, 361]}}, +{"id": 3021, "name": "Bloons Tower Defense 6", "description": "A popular tower defense game where players strategically place monkeys equipped with various abilities and upgrades to pop waves of colorful Bloons.", "links": {"subreddit": ["BTD6"], "discord": ["TRHTdurNPj"]}, "path": {"250-258, T": [[-1216, -622], [-1196, -622], [-1195, -610], [-1226, -610], [-1226, -620], [-1215, -622]]}, "center": {"250-258, T": [-1210, -616]}}, +{"id": 3022, "name": "Small Duck On Bottlecap", "description": "A small duck. Unknown who made it, defended by Just LEGO Things and UMICH during night hours.", "links": {}, "path": {"250-258, T": [[715, -333], [715, -332], [716, -332], [716, -330], [717, -330], [717, -331], [718, -331], [718, -332], [720, -332], [719, -332], [719, -334], [717, -334], [717, -332], [715, -332]]}, "center": {"250-258, T": [718, -333]}}, +{"id": 3023, "name": "Quilldren", "description": "Quilldren (singular and plural) is the fan mascot for Nijisanji EN's VTuber - Ike Eveland. It is a small, fluffy, ball creature with a blue feather sticking out on top. These floofs are commonly seen in Ike Eveland's live streams and Ike Eveland's twitter, which are linked below.", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/ike-eveland", "https://www.youtube.com/channel/UC4yNIKGvy-YUrwYupVdLDXA", "https://twitter.com/ike_eveland"]}, "path": {"250-258, T": [[-659, -254], [-657, -254], [-655, -251], [-655, -248], [-660, -248], [-660, -253], [-659, -253]]}, "center": {"250-258, T": [-658, -251]}}, +{"id": 3024, "name": "Luca Kaneshiro", "description": "Luca Kaneshiro (ルカ・カネシロ) is an English male VTuber affiliated with VTuber agency NIJISANJI English, amassing over 1.03M subscribers. Luca is part of their fourth wave - Luxiem - along with Shu Yamino, Ike Eveland, Mysta Rias, and Vox Akuma. He says POG a lot! Next to him is his fans' mascot, who are called Lucubs, with a flower behind their ear.", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/luca-kaneshiro", "https://www.youtube.com/channel/UC7Gb7Uawe20QyFibhLl1lzA"]}, "path": {"250-258, T": [[-669, -299], [-662, -299], [-661, -292], [-669, -292]]}, "center": {"250-258, T": [-665, -295]}}, +{"id": 3025, "name": "Flag of Honduras", "description": "Honduras is a country in Central America.\n\nAfter establishing its residence in this location, Honduras survived by establishing friendships with nearby neighbors such as Sweden, Panama, and El Salvador, and withstand an incursion by a Peruvian streamer. A teddy bear often shown above the flag is built in honor of a suicide victim named Isaac.", "links": {"website": ["https://en.wikipedia.org/wiki/Honduras", "https://en.wikipedia.org/wiki/Flag_of_Honduras", "https://www.twitch.tv/frankz7x"], "subreddit": ["placehn"], "discord": ["uckkkcY5nA"]}, "path": {"155": [[-851, 447], [-841, 447], [-841, 455], [-851, 455]], "161": [[-862, 430], [-801, 430], [-801, 456], [-821, 456], [-821, 457], [-833, 457], [-838, 452], [-843, 457], [-862, 457]], "217": [[-862, 430], [-780, 430], [-780, 457], [-797, 457], [-797, 458], [-799, 460], [-799, 461], [-801, 464], [-802, 462], [-803, 461], [-803, 460], [-804, 459], [-805, 458], [-805, 457], [-835, 457], [-835, 456], [-836, 455], [-836, 454], [-838, 452], [-840, 454], [-840, 455], [-841, 456], [-841, 457], [-862, 457]], "158-160": [[-862, 430], [-821, 430], [-821, 457], [-833, 457], [-838, 452], [-843, 457], [-862, 457]], "162-164": [[-862, 430], [-801, 430], [-801, 456], [-821, 456], [-821, 457], [-862, 457]], "165-206": [[-862, 430], [-801, 430], [-801, 457], [-862, 457]], "207-214": [[-862, 430], [-801, 430], [-801, 457], [-835, 457], [-835, 456], [-836, 455], [-836, 454], [-838, 452], [-840, 454], [-840, 455], [-841, 456], [-841, 457], [-862, 457]], "215-216": [[-862, 430], [-801, 430], [-801, 429], [-780, 429], [-780, 457], [-797, 457], [-797, 458], [-799, 460], [-799, 461], [-801, 464], [-802, 462], [-803, 461], [-803, 460], [-804, 459], [-805, 458], [-805, 457], [-835, 457], [-835, 456], [-836, 455], [-836, 454], [-838, 452], [-840, 454], [-840, 455], [-841, 456], [-841, 457], [-862, 457]], "218-258, T": [[-862, 430], [-791, 430], [-791, 457], [-797, 457], [-797, 458], [-799, 460], [-799, 461], [-801, 463], [-803, 461], [-803, 460], [-805, 458], [-805, 457], [-835, 457], [-835, 456], [-836, 455], [-836, 454], [-838, 452], [-840, 454], [-840, 455], [-841, 456], [-841, 457], [-862, 457]]}, "center": {"155": [-846, 451], "161": [-848, 444], "217": [-802, 444], "158-160": [-848, 444], "162-164": [-831, 444], "165-206": [-831, 444], "207-214": [-821, 444], "215-216": [-796, 443], "218-258, T": [-826, 443]}}, {"id": 3026, "name": "Narrator Nexus", "description": "A text logo of the Narrator Nexus, formerly Sequence Narrators, a group formed from the 2019 r/sequence", "links": {"subreddit": ["NarraNexus"]}, "path": {"233": [[273, 265], [273, 270], [277, 270], [277, 265]]}, "center": {"233": [275, 268]}}, -{"id": 3029, "name": "Carpincho secuestrado / Seized Capybara", "description": "A carpincho/capybara drawed by the r/PlaceArg at the same time at the flag of the same country. When the UK attacked the flag, the carpincho/capybara was left in his custody, but no matter the affiliation, he still wears his Argentinean cap. Is the brother of the carpincho piola/cool capybara.", "links": {"subreddit": ["PlaceArg"], "discord": ["PlaceArg"]}, "path": {"250-258": [[556, -706], [559, -681], [574, -679], [591, -684], [594, -715], [585, -719]]}, "center": {"250-258": [574, -696]}}, +{"id": 3029, "name": "Carpincho secuestrado / Seized Capybara", "description": "A carpincho/capybara drawed by the r/PlaceArg at the same time at the flag of the same country. When the UK attacked the flag, the carpincho/capybara was left in his custody, but no matter the affiliation, he still wears his Argentinean cap. Is the brother of the carpincho piola/cool capybara.", "links": {"subreddit": ["PlaceArg"], "discord": ["PlaceArg"]}, "path": {"250-258, T": [[556, -706], [559, -681], [574, -679], [591, -684], [594, -715], [585, -719]]}, "center": {"250-258, T": [574, -696]}}, {"id": 3030, "name": "Brittany", "description": "Brittany (French: Bretagne) is a historical and cultural region in the northwest of France, and one of the six so-called Celtic nations. Depicted is the region of Brittany, with the flag of Brittany as the background.\n\nBrittany fought against the French to have their place on the map. When the gray-out began, Brittany took over the entirety of France due to its flag having only black and white colors.", "links": {"website": ["https://en.wikipedia.org/wiki/Brittany", "https://en.wikipedia.org/wiki/Flag_of_Brittany"], "subreddit": ["Bretagne"], "discord": ["cjEWR8cgxh"]}, "path": {"197-254": [[-316, 754], [-300, 755], [-302, 766], [-308, 761], [-311, 761], [-311, 765], [-327, 764], [-324, 758], [-316, 757]], "255-258": [[-318, 754], [-318, 757], [-325, 757], [-325, 765], [-311, 765], [-311, 761], [-307, 762], [-305, 765], [-305, 768], [-304, 770], [-304, 783], [-298, 788], [-289, 788], [-288, 789], [-279, 789], [-279, 786], [-266, 786], [-263, 762], [-258, 762], [-256, 755], [-256, 751], [-259, 749], [-271, 749], [-279, 742], [-282, 742], [-293, 751], [-303, 754]]}, "center": {"197-254": [-315, 761], "255-258": [-283, 768]}}, -{"id": 3033, "name": "Peeking Quilldren", "description": "Quilldren (singular and plural) is the fan mascot for Nijisanji EN's VTuber - Ike Eveland. It is a small, fluffy, ball creature with a blue feather sticking out on top. These floofs are commonly seen in Ike Eveland's live streams and Ike Eveland's twitter, which are linked below.\n\nThis Quilldren is a reference to a Peeking Ike Eveland emote which is available in his YouTube membership (a.k.a. the Penmanship).", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/ike-eveland", "https://www.youtube.com/channel/UC4yNIKGvy-YUrwYupVdLDXA", "https://twitter.com/ike_eveland"]}, "path": {"250-258": [[-668, -271], [-667, -271], [-667, -266], [-666, -266], [-666, -262], [-667, -261], [-669, -261], [-669, -271]]}, "center": {"250-258": [-667, -263]}}, -{"id": 3034, "name": "The Three Caballeros", "description": "Donald Duck, Panchito Pistoles, and José \"Zé\" Carioca, the titular Three Caballeros from the 1944 Disney animated film, 2018 television series and countless other media. Given José's Brazilian heritage and legacy in his native country, the very small bird designs found their place in the middle of Brazil's larger work with little disturbance compared to prior years. A large José design was implemented on Brazil's artwork shortly after the smaller design's first (and only) relocation slightly to the left of its original spot.", "links": {"subreddit": ["thethreecaballeros", "ducktales"]}, "path": {"164-258": [[212, 484], [218, 484], [218, 494], [233, 494], [233, 496], [231, 496], [231, 498], [230, 498], [230, 500], [225, 500], [225, 494], [212, 494]]}, "center": {"164-258": [215, 491]}}, -{"id": 3035, "name": "Carpincho piola / Cool Capybara", "description": "The brother of the Seized Capybara. he is not so worried about his brother, he knows he is somewhere else having a good time (he lies, deep down he is a bit resentful because his brother did not take him to Europe, but he still loves him and smokes a cigarette to remember him).", "links": {"subreddit": ["PlaceArg"], "discord": ["PlaceArg"]}, "path": {"250-258": [[1119, 998], [1131, 980], [1146, 974], [1156, 982], [1154, 997]]}, "center": {"250-258": [1144, 987]}}, -{"id": 3036, "name": "The Teller (O Contador)", "description": "The Teller is the main antagonist of an RPG campaing based on Ordem Paranormal system.", "links": {}, "path": {"212-258": [[-1189, 529], [-1182, 529], [-1182, 538], [-1190, 538], [-1190, 529]]}, "center": {"212-258": [-1186, 534]}}, -{"id": 3038, "name": "Lightbringer", "description": "The 6th book of the red rising series, released 25/7/2023.", "links": {"subreddit": ["redrising"], "discord": ["cuyxWpjcP9", "865AWxh"]}, "path": {"13-26": [[-364, 94], [-364, 108], [-287, 108], [-287, 93]], "180-258": [[-1500, 597], [-1437, 597], [-1437, 618], [-1500, 618]]}, "center": {"13-26": [-304, 101], "180-258": [-1468, 608]}}, -{"id": 3039, "name": "Paulo the Demon", "description": "Paulo the demon is a lovable little red and black sphere created by Arzinist to make camp entries on scratch. He was drawn on r/place by FlammableFire AKA TheFireGamer37 in honor of arzinist's triple stage 6 deluxe cancer! This was written by Arzinist himself btw. He's alive and well untill March 20th 2032.", "links": {"website": ["https://scratch.mit.edu/users/-PauloTheDemon-/", "https://www.youtube.com/@Arzinist", "https://www.youtube.com/@TheFireGamer37/featured"]}, "path": {"250-258": [[-973, -963], [-973, -959], [-970, -957], [-967, -959], [-969, -964], [-975, -963], [-976, -959], [-972, -957]]}, "center": {"250-258": [-970, -961]}}, -{"id": 3040, "name": "The Void", "description": "", "links": {"subreddit": ["theswarm"], "discord": ["circularswarm"]}, "path": {"239-258": [[1111, 596], [1174, 543], [1148, 504], [1177, 481], [1214, 518], [1229, 524], [1267, 499], [1265, 446], [1230, 444], [1231, 411], [1228, 413], [1227, 364], [1204, 372], [1203, 347], [1203, 316], [1233, 315], [1238, 225], [1273, 223], [1273, 178], [1187, 178], [1187, 193], [1135, 194], [1135, 177], [1052, 189], [1030, 218], [1029, 246], [1084, 249], [1083, 281], [1054, 281], [1000, 342], [1000, 384], [1038, 383], [1051, 418], [1049, 421], [1086, 423], [1087, 443], [1111, 443]]}, "center": {"239-258": [1122, 351]}}, -{"id": 3041, "name": "Flag of Kenya", "description": "Kenya is a country in East Africa", "links": {"website": ["https://en.wikipedia.org/wiki/Kenya"], "subreddit": ["Kenya"]}, "path": {"231-258": [[-1388, -627], [-1357, -627], [-1357, -611], [-1386, -611]]}, "center": {"231-258": [-1372, -619]}}, -{"id": 3042, "name": "Shadoune666", "description": "Born YouTuber and Streamer, Handsome, tall and red-haired, he likes to hand out some Caramelooos and drowning while having a conduit next to him 💀, he is also French and speaks Spanish, English, and some french, aka Captain Perú o7 & \"la/lo invita a un UHC\"", "links": {"website": ["https://www.youtube.com/@Shadoune666/featured", "https://www.twitch.tv/shadoune666?sr=a"], "subreddit": ["Shadoune666"]}, "path": {"250-258": [[-1106, -296], [-1106, -282], [-1121, -282], [-1121, -297]]}, "center": {"250-258": [-1114, -289]}}, -{"id": 3043, "name": "r/redrising", "description": "A community gathered around an amazing science fiction dystopian book series called \"Red Rising\"", "links": {"website": ["https://www.piercebrown.com/redrisingsaga"], "subreddit": ["redrising"], "discord": ["38h3Jtrm"]}, "path": {"161-258": [[438, 500], [463, 500], [464, 541], [438, 540]]}, "center": {"161-258": [451, 520]}}, -{"id": 3044, "name": "Tweesee", "description": "Tweesee is a character created by musician Emma Essex, and is a stylized African Wild Dog.\n\nThis art was created by r/lapfoxtrax in coordination with r/greenlattice.", "links": {"website": ["https://halleylabs.com"], "subreddit": ["LapfoxTrax", "GreenLattice"]}, "path": {"249-258": [[420, -820], [420, -823], [421, -824], [421, -827], [422, -828], [422, -830], [421, -831], [421, -832], [419, -834], [415, -830], [415, -829], [413, -829], [411, -831], [409, -829], [409, -828], [408, -827], [408, -826], [407, -825], [407, -823], [410, -820], [412, -820], [413, -819], [419, -819]]}, "center": {"249-258": [415, -824]}}, -{"id": 3045, "name": "Basic Drawing of a Fish", "description": "Created by Swike/MrCreeperPlaysGames. Basic Drawing of a Fish was going to be the host of a camp called SLAY. This camp was canceled with swike instead using her for camp entries. FlammableFire/TheFireGamer37 created the drawing with BDoaF not having the top of her head and fin because the people protecting the morbius poster wanted to keep them apart from each other.", "links": {"website": ["https://scratch.mit.edu/users/MrCreeperPlaysGames/", "https://www.youtube.com/@swiketheswiker", "https://www.youtube.com/@TheFireGamer37"]}, "path": {"250-258": [[-973, -965], [-977, -968], [-979, -964], [-976, -961], [-973, -963], [-971, -968], [-970, -964], [-973, -963], [-970, -968], [-977, -968], [-979, -968], [-979, -965], [-970, -967]]}, "center": {"250-258": [-975, -964]}}, -{"id": 3046, "name": "BoffeGP", "description": "BoffeGP community with Rossi, Yoichi y Nasita cubitos.", "links": {"website": ["https://www.youtube.com/boffegp", "https://www.twitch.tv/boffegp"]}, "path": {"250-258": [[465, 934], [465, 970], [490, 970], [490, 934]]}, "center": {"250-258": [478, 952]}}, -{"id": 3047, "name": "Red Velvet, The Last Stand", "description": "Within the last couple hours of r/place 2023, reveluvs went to battle to resurrect their banner that was wiped out by the windows taskbar drawing.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"250-258": [[-1280, 4], [-1280, -6], [-1257, -6], [-1257, 4]]}, "center": {"250-258": [-1268, -1]}}, -{"id": 3048, "name": "Logo SantyMoras", "description": "Logo of the Streamer SantyMoras and the initials of his community S A (SantyArmy)", "links": {"website": ["https://www.twitch.tv/santymoras"], "subreddit": ["santyarmy"], "discord": ["vzTTgWRNgh"]}, "path": {"250-258": [[632, 834], [632, 850], [652, 850], [652, 834]]}, "center": {"250-258": [642, 842]}}, +{"id": 3033, "name": "Peeking Quilldren", "description": "Quilldren (singular and plural) is the fan mascot for Nijisanji EN's VTuber - Ike Eveland. It is a small, fluffy, ball creature with a blue feather sticking out on top. These floofs are commonly seen in Ike Eveland's live streams and Ike Eveland's twitter, which are linked below.\n\nThis Quilldren is a reference to a Peeking Ike Eveland emote which is available in his YouTube membership (a.k.a. the Penmanship).", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/ike-eveland", "https://www.youtube.com/channel/UC4yNIKGvy-YUrwYupVdLDXA", "https://twitter.com/ike_eveland"]}, "path": {"250-258, T": [[-668, -271], [-667, -271], [-667, -266], [-666, -266], [-666, -262], [-667, -261], [-669, -261], [-669, -271]]}, "center": {"250-258, T": [-667, -263]}}, +{"id": 3034, "name": "The Three Caballeros", "description": "Donald Duck, Panchito Pistoles, and José \"Zé\" Carioca, the titular Three Caballeros from the 1944 Disney animated film, 2018 television series and countless other media. Given José's Brazilian heritage and legacy in his native country, the very small bird designs found their place in the middle of Brazil's larger work with little disturbance compared to prior years. A large José design was implemented on Brazil's artwork shortly after the smaller design's first (and only) relocation slightly to the left of its original spot.", "links": {"subreddit": ["thethreecaballeros", "ducktales"]}, "path": {"164-258, T": [[212, 484], [218, 484], [218, 494], [233, 494], [233, 496], [231, 496], [231, 498], [230, 498], [230, 500], [225, 500], [225, 494], [212, 494]]}, "center": {"164-258, T": [215, 491]}}, +{"id": 3035, "name": "Carpincho piola / Cool Capybara", "description": "The brother of the Seized Capybara. he is not so worried about his brother, he knows he is somewhere else having a good time (he lies, deep down he is a bit resentful because his brother did not take him to Europe, but he still loves him and smokes a cigarette to remember him).", "links": {"subreddit": ["PlaceArg"], "discord": ["PlaceArg"]}, "path": {"250-258, T": [[1119, 998], [1131, 980], [1146, 974], [1156, 982], [1154, 997]]}, "center": {"250-258, T": [1144, 987]}}, +{"id": 3036, "name": "The Teller (O Contador)", "description": "The Teller is the main antagonist of an RPG campaing based on Ordem Paranormal system.", "links": {}, "path": {"212-258, T": [[-1189, 529], [-1182, 529], [-1182, 538], [-1190, 538], [-1190, 529]]}, "center": {"212-258, T": [-1186, 534]}}, +{"id": 3038, "name": "Lightbringer", "description": "The 6th book of the red rising series, released 25/7/2023.", "links": {"subreddit": ["redrising"], "discord": ["cuyxWpjcP9", "865AWxh"]}, "path": {"13-26": [[-364, 94], [-364, 108], [-287, 108], [-287, 93]], "180-258, T": [[-1500, 597], [-1437, 597], [-1437, 618], [-1500, 618]]}, "center": {"13-26": [-304, 101], "180-258, T": [-1468, 608]}}, +{"id": 3039, "name": "Paulo the Demon", "description": "Paulo the demon is a lovable little red and black sphere created by Arzinist to make camp entries on scratch. He was drawn on r/place by FlammableFire AKA TheFireGamer37 in honor of arzinist's triple stage 6 deluxe cancer! This was written by Arzinist himself btw. He's alive and well untill March 20th 2032.", "links": {"website": ["https://scratch.mit.edu/users/-PauloTheDemon-/", "https://www.youtube.com/@Arzinist", "https://www.youtube.com/@TheFireGamer37/featured"]}, "path": {"250-258, T": [[-973, -963], [-973, -959], [-970, -957], [-967, -959], [-969, -964], [-975, -963], [-976, -959], [-972, -957]]}, "center": {"250-258, T": [-970, -961]}}, +{"id": 3040, "name": "The Void", "description": "", "links": {"subreddit": ["theswarm"], "discord": ["circularswarm"]}, "path": {"239-258, T": [[1111, 596], [1174, 543], [1148, 504], [1177, 481], [1214, 518], [1229, 524], [1267, 499], [1265, 446], [1230, 444], [1231, 411], [1228, 413], [1227, 364], [1204, 372], [1203, 347], [1203, 316], [1233, 315], [1238, 225], [1273, 223], [1273, 178], [1187, 178], [1187, 193], [1135, 194], [1135, 177], [1052, 189], [1030, 218], [1029, 246], [1084, 249], [1083, 281], [1054, 281], [1000, 342], [1000, 384], [1038, 383], [1051, 418], [1049, 421], [1086, 423], [1087, 443], [1111, 443]]}, "center": {"239-258, T": [1122, 351]}}, +{"id": 3041, "name": "Flag of Kenya", "description": "Kenya is a country in East Africa", "links": {"website": ["https://en.wikipedia.org/wiki/Kenya"], "subreddit": ["Kenya"]}, "path": {"231-258, T": [[-1388, -627], [-1357, -627], [-1357, -611], [-1386, -611]]}, "center": {"231-258, T": [-1372, -619]}}, +{"id": 3042, "name": "Shadoune666", "description": "Born YouTuber and Streamer, Handsome, tall and red-haired, he likes to hand out some Caramelooos and drowning while having a conduit next to him 💀, he is also French and speaks Spanish, English, and some french, aka Captain Perú o7 & \"la/lo invita a un UHC\"", "links": {"website": ["https://www.youtube.com/@Shadoune666/featured", "https://www.twitch.tv/shadoune666?sr=a"], "subreddit": ["Shadoune666"]}, "path": {"250-258, T": [[-1106, -296], [-1106, -282], [-1121, -282], [-1121, -297]]}, "center": {"250-258, T": [-1114, -289]}}, +{"id": 3043, "name": "r/redrising", "description": "A community gathered around an amazing science fiction dystopian book series called \"Red Rising\"", "links": {"website": ["https://www.piercebrown.com/redrisingsaga"], "subreddit": ["redrising"], "discord": ["38h3Jtrm"]}, "path": {"161-258, T": [[438, 500], [463, 500], [464, 541], [438, 540]]}, "center": {"161-258, T": [451, 520]}}, +{"id": 3044, "name": "Tweesee", "description": "Tweesee is a character created by musician Emma Essex, and is a stylized African Wild Dog.\n\nThis art was created by r/lapfoxtrax in coordination with r/greenlattice.", "links": {"website": ["https://halleylabs.com"], "subreddit": ["LapfoxTrax", "GreenLattice"]}, "path": {"249-258, T": [[420, -820], [420, -823], [421, -824], [421, -827], [422, -828], [422, -830], [421, -831], [421, -832], [419, -834], [415, -830], [415, -829], [413, -829], [411, -831], [409, -829], [409, -828], [408, -827], [408, -826], [407, -825], [407, -823], [410, -820], [412, -820], [413, -819], [419, -819]]}, "center": {"249-258, T": [415, -824]}}, +{"id": 3045, "name": "Basic Drawing of a Fish", "description": "Created by Swike/MrCreeperPlaysGames. Basic Drawing of a Fish was going to be the host of a camp called SLAY. This camp was canceled with swike instead using her for camp entries. FlammableFire/TheFireGamer37 created the drawing with BDoaF not having the top of her head and fin because the people protecting the morbius poster wanted to keep them apart from each other.", "links": {"website": ["https://scratch.mit.edu/users/MrCreeperPlaysGames/", "https://www.youtube.com/@swiketheswiker", "https://www.youtube.com/@TheFireGamer37"]}, "path": {"250-258, T": [[-973, -965], [-977, -968], [-979, -964], [-976, -961], [-973, -963], [-971, -968], [-970, -964], [-973, -963], [-970, -968], [-977, -968], [-979, -968], [-979, -965], [-970, -967]]}, "center": {"250-258, T": [-975, -964]}}, +{"id": 3046, "name": "BoffeGP", "description": "BoffeGP community with Rossi, Yoichi y Nasita cubitos.", "links": {"website": ["https://www.youtube.com/boffegp", "https://www.twitch.tv/boffegp"]}, "path": {"250-258, T": [[465, 934], [465, 970], [490, 970], [490, 934]]}, "center": {"250-258, T": [478, 952]}}, +{"id": 3047, "name": "Red Velvet, The Last Stand", "description": "Within the last couple hours of r/place 2023, reveluvs went to battle to resurrect their banner that was wiped out by the windows taskbar drawing.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"250-258, T": [[-1280, 4], [-1280, -6], [-1257, -6], [-1257, 4]]}, "center": {"250-258, T": [-1268, -1]}}, +{"id": 3048, "name": "Logo SantyMoras", "description": "Logo of the Streamer SantyMoras and the initials of his community S A (SantyArmy)", "links": {"website": ["https://www.twitch.tv/santymoras"], "subreddit": ["santyarmy"], "discord": ["vzTTgWRNgh"]}, "path": {"250-258, T": [[632, 834], [632, 850], [652, 850], [652, 834]]}, "center": {"250-258, T": [642, 842]}}, {"id": 3049, "name": "Furry La Plata", "description": "Furry la plata is an argentinian furry community in the city of buenos aires managed by GoldenFox, DanteTheWah, NormaN and Panterix, Idea from reddit place by ReallyCrazy", "links": {"website": ["https://es.wikifur.com/wiki/Furry_La_Plata"]}, "path": {"125-141": [[2, -617], [20, -617], [20, -628], [2, -628]]}, "center": {"125-141": [11, -622]}}, -{"id": 3050, "name": "Pony0ff pixel art", "description": "Pixel art attempt of the avatar of the mexican voice actress and streamer Pony0n popularly called \"CACHALOTA\"", "links": {"website": ["https://www.twitch.tv/pony0n"], "discord": ["SGgfUhdBzH"]}, "path": {"250-258": [[1402, -943], [1402, -946], [1406, -949], [1415, -949], [1419, -943], [1419, -941], [1416, -942], [1416, -932], [1405, -932], [1405, -935], [1403, -935], [1403, -941], [1401, -943], [1402, -944]]}, "center": {"250-258": [1410, -940]}}, -{"id": 3051, "name": "Ninja Kiwi Logo", "description": "", "links": {"subreddit": ["NinjaKiwiOfficial"], "discord": ["TRHTdurNPj"]}, "path": {"250-258": [[-1226, -626], [-1225, -625], [-1225, -626], [-1221, -626], [-1220, -626], [-1220, -625], [-1220, -622], [-1220, -621], [-1221, -620], [-1225, -620], [-1224, -621], [-1226, -621], [-1226, -625]]}, "center": {"250-258": [-1223, -623]}}, -{"id": 3052, "name": "Poland troll face", "description": "Poland troll face made for fun", "links": {}, "path": {"250-258": [[-1438, 64], [-1435, 74], [-1421, 82], [-1404, 83], [-1399, 71], [-1400, 57], [-1403, 50], [-1422, 50], [-1424, 47], [-1431, 48], [-1438, 56], [-1438, 65]]}, "center": {"250-258": [-1416, 66]}}, -{"id": 3053, "name": "Real Madrid", "description": "Real Madrid CF is the most successful football club in the world. With the most amount of Champions League and La Liga titles won.", "links": {"subreddit": ["realmadrid"], "discord": ["realmadrid"]}, "path": {"232-253": [[-1232, 437], [-1232, 463], [-1212, 463], [-1212, 437], [-1216, 437], [-1222, 434], [-1227, 437]]}, "center": {"232-253": [-1222, 449]}}, -{"id": 3054, "name": "Flag of South Africa", "description": "South Africa is the southernmost country in Africa. After being ousted from the centre of the map, a small but committed group built this mural.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa"], "subreddit": ["southafrica"]}, "path": {"181-258": [[-1357, -630], [-1357, -611], [-1282, -610], [-1283, -629], [-1288, -633], [-1289, -633], [-1289, -650], [-1344, -650], [-1347, -642], [-1357, -642]]}, "center": {"181-258": [-1320, -630]}}, -{"id": 3055, "name": "Cuphead", "description": "Cuphead is the protagonist of the Rubberhose-inspired franchise of the same name, made by Canadian independent video game company Studio MDRH, releasing originally on September 29, 2017", "links": {"website": ["https://studiomdhr.com/"], "subreddit": ["Cuphead"], "discord": ["PHmyJYvg29"]}, "path": {"218-258": [[-302, 951], [-302, 961], [-291, 961], [-291, 951]]}, "center": {"218-258": [-296, 956]}}, -{"id": 3056, "name": "WarriorCats", "description": "Warriors is a series of novels based on the adventures and drama of multiple Clans of feral cats. The series is primarily set in fictional forests. Published by HarperCollins, the series is written by authors Kate Cary and Cherith Baldry, as well as others, under the collective pseudonym Erin Hunter.", "links": {"website": ["https://warriorcats.com/"], "subreddit": ["WarriorCats"], "discord": ["warriorcats"]}, "path": {"249-258": [[-897, 685], [-897, 697], [-886, 697], [-886, 685]]}, "center": {"249-258": [-891, 691]}}, +{"id": 3050, "name": "Pony0ff pixel art", "description": "Pixel art attempt of the avatar of the mexican voice actress and streamer Pony0n popularly called \"CACHALOTA\"", "links": {"website": ["https://www.twitch.tv/pony0n"], "discord": ["SGgfUhdBzH"]}, "path": {"250-258, T": [[1402, -943], [1402, -946], [1406, -949], [1415, -949], [1419, -943], [1419, -941], [1416, -942], [1416, -932], [1405, -932], [1405, -935], [1403, -935], [1403, -941], [1401, -943], [1402, -944]]}, "center": {"250-258, T": [1410, -940]}}, +{"id": 3051, "name": "Ninja Kiwi Logo", "description": "", "links": {"subreddit": ["NinjaKiwiOfficial"], "discord": ["TRHTdurNPj"]}, "path": {"250-258, T": [[-1226, -626], [-1225, -625], [-1225, -626], [-1221, -626], [-1220, -626], [-1220, -625], [-1220, -622], [-1220, -621], [-1221, -620], [-1225, -620], [-1224, -621], [-1226, -621], [-1226, -625]]}, "center": {"250-258, T": [-1223, -623]}}, +{"id": 3052, "name": "Poland troll face", "description": "Poland troll face made for fun", "links": {}, "path": {"250-258, T": [[-1438, 64], [-1435, 74], [-1421, 82], [-1404, 83], [-1399, 71], [-1400, 57], [-1403, 50], [-1422, 50], [-1424, 47], [-1431, 48], [-1438, 56], [-1438, 65]]}, "center": {"250-258, T": [-1416, 66]}}, +{"id": 3053, "name": "Real Madrid", "description": "Real Madrid CF is the most successful football club in the world. With the most amount of Champions League and La Liga titles won.", "links": {"subreddit": ["realmadrid"], "discord": ["realmadrid"]}, "path": {"232-253, T": [[-1232, 437], [-1232, 463], [-1212, 463], [-1212, 437], [-1216, 437], [-1222, 434], [-1227, 437]]}, "center": {"232-253, T": [-1222, 449]}}, +{"id": 3054, "name": "Flag of South Africa", "description": "South Africa is the southernmost country in Africa. After being ousted from the centre of the map, a small but committed group built this mural.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa"], "subreddit": ["southafrica"]}, "path": {"181-258, T": [[-1357, -630], [-1357, -611], [-1282, -610], [-1283, -629], [-1288, -633], [-1289, -633], [-1289, -650], [-1344, -650], [-1347, -642], [-1357, -642]]}, "center": {"181-258, T": [-1320, -630]}}, +{"id": 3055, "name": "Cuphead", "description": "Cuphead is the protagonist of the Rubberhose-inspired franchise of the same name, made by Canadian independent video game company Studio MDRH, releasing originally on September 29, 2017", "links": {"website": ["https://studiomdhr.com/"], "subreddit": ["Cuphead"], "discord": ["PHmyJYvg29"]}, "path": {"218-258, T": [[-302, 951], [-302, 961], [-291, 961], [-291, 951]]}, "center": {"218-258, T": [-296, 956]}}, +{"id": 3056, "name": "WarriorCats", "description": "Warriors is a series of novels based on the adventures and drama of multiple Clans of feral cats. The series is primarily set in fictional forests. Published by HarperCollins, the series is written by authors Kate Cary and Cherith Baldry, as well as others, under the collective pseudonym Erin Hunter.", "links": {"website": ["https://warriorcats.com/"], "subreddit": ["WarriorCats"], "discord": ["warriorcats"]}, "path": {"249-258, T": [[-897, 685], [-897, 697], [-886, 697], [-886, 685]]}, "center": {"249-258, T": [-891, 691]}}, {"id": 3058, "name": "Smol Monomi/Usami", "description": "a small rendition of Monomi/Usami from Super Danganronpa 2", "links": {"subreddit": ["danganronpa"], "discord": ["7rVSJ4EWhb"]}, "path": {"217-229": [[1442, 657], [1442, 663], [1450, 663], [1449, 658]]}, "center": {"217-229": [1446, 660]}}, -{"id": 3059, "name": "Venom by ElGlogloking", "description": "Venom made by peruvian streamer ElGlogloking popularly called \"HUERFANITO\" \"GLOGLO\" \"PASS\"\nGlogloking makes some very entertaining streams in which he shows his dancing skills and his great handling of humor, he may need a psychologist.", "links": {"website": ["https://www.twitch.tv/elglogloking"], "discord": ["Qw2D3jxMm9"]}, "path": {"250-258": [[-534, -791], [-535, -748], [-497, -748], [-496, -792], [-533, -792]]}, "center": {"250-258": [-515, -770]}}, -{"id": 3060, "name": "Bloons TD Battles 2", "description": "", "links": {"subreddit": ["battles2"], "discord": ["TRHTdurNPj"]}, "path": {"250-258": [[-1226, -631], [-1222, -631], [-1222, -630], [-1220, -630], [-1221, -628], [-1221, -627], [-1225, -627]]}, "center": {"250-258": [-1224, -629]}}, -{"id": 3062, "name": "Mini P.E.K.K.A", "description": "A small P.E.K.K.A representing the Papux Klan community", "links": {"subreddit": ["Real_Papux_Kaln"]}, "path": {"250-258": [[-235, 853], [-218, 851], [-220, 869], [-233, 868], [-234, 866], [-235, 865], [-237, 863], [-235, 858], [-237, 852], [-235, 858], [-235, 852], [-239, 852], [-237, 863], [-239, 852]]}, "center": {"250-258": [-227, 860]}}, -{"id": 3063, "name": "Koalanaitor78", "description": "Koalanaitor78 is a small Spanish speaking Minecraft YouTuber", "links": {"website": ["https://www.youtube.com/@Koalanaitor78/"]}, "path": {"250-258": [[714, 797], [721, 797], [721, 804], [714, 804]]}, "center": {"250-258": [718, 801]}}, -{"id": 3064, "name": "Fish on place", "description": "A series of fish created by the r/redrising community based off of an earlier fish by u/antimattur and u/ob1zombies", "links": {"subreddit": ["fishonplace", "redrising"]}, "path": {"225-258": [[-1471, 570], [-1461, 570], [-1461, 595], [-1471, 595]]}, "center": {"225-258": [-1466, 583]}}, +{"id": 3059, "name": "Venom by ElGlogloking", "description": "Venom made by peruvian streamer ElGlogloking popularly called \"HUERFANITO\" \"GLOGLO\" \"PASS\"\nGlogloking makes some very entertaining streams in which he shows his dancing skills and his great handling of humor, he may need a psychologist.", "links": {"website": ["https://www.twitch.tv/elglogloking"], "discord": ["Qw2D3jxMm9"]}, "path": {"250-258, T": [[-534, -791], [-535, -748], [-497, -748], [-496, -792], [-533, -792]]}, "center": {"250-258, T": [-515, -770]}}, +{"id": 3060, "name": "Bloons TD Battles 2", "description": "", "links": {"subreddit": ["battles2"], "discord": ["TRHTdurNPj"]}, "path": {"250-258, T": [[-1226, -631], [-1222, -631], [-1222, -630], [-1220, -630], [-1221, -628], [-1221, -627], [-1225, -627]]}, "center": {"250-258, T": [-1224, -629]}}, +{"id": 3062, "name": "Mini P.E.K.K.A", "description": "A small P.E.K.K.A representing the Papux Klan community", "links": {"subreddit": ["Real_Papux_Kaln"]}, "path": {"250-258, T": [[-235, 853], [-218, 851], [-220, 869], [-233, 868], [-234, 866], [-235, 865], [-237, 863], [-235, 858], [-237, 852], [-235, 858], [-235, 852], [-239, 852], [-237, 863], [-239, 852]]}, "center": {"250-258, T": [-227, 860]}}, +{"id": 3063, "name": "Koalanaitor78", "description": "Koalanaitor78 is a small Spanish speaking Minecraft YouTuber", "links": {"website": ["https://www.youtube.com/@Koalanaitor78/"]}, "path": {"250-258, T": [[714, 797], [721, 797], [721, 804], [714, 804]]}, "center": {"250-258, T": [718, 801]}}, +{"id": 3064, "name": "Fish on place", "description": "A series of fish created by the r/redrising community based off of an earlier fish by u/antimattur and u/ob1zombies", "links": {"subreddit": ["fishonplace", "redrising"]}, "path": {"225-258, T": [[-1471, 570], [-1461, 570], [-1461, 595], [-1471, 595]]}, "center": {"225-258, T": [-1466, 583]}}, {"id": 3065, "name": "Slark ( dota 2 Heroe)", "description": "a fat slark \n\nmade by Maidot ( digital Artist )", "links": {"website": ["https://twitter.com/Maidot_7u7/status/1631736377694887936"]}, "path": {"242-246": [[148, -605], [148, -591], [168, -591], [168, -605]]}, "center": {"242-246": [158, -598]}}, -{"id": 3066, "name": "Red Velvet's 'R to V' Logo, Orderm Paranormal Sneak", "description": "A logo from the K-Pop group Red Velvet's 4th concert tour.\nThis logo was snuck in. The creators wonder if Orderm Paranormal RPG even know it's there.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"145-258": [[264, 460], [278, 460], [283, 460], [282, 480], [264, 479]]}, "center": {"145-258": [273, 470]}}, +{"id": 3066, "name": "Red Velvet's 'R to V' Logo, Orderm Paranormal Sneak", "description": "A logo from the K-Pop group Red Velvet's 4th concert tour.\nThis logo was snuck in. The creators wonder if Orderm Paranormal RPG even know it's there.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"145-258, T": [[264, 460], [278, 460], [283, 460], [282, 480], [264, 479]]}, "center": {"145-258, T": [273, 470]}}, {"id": 3067, "name": "TDA Group", "description": "TDA (Turminha Dos Amiguinhos, \"Little Friends' Gang\"), AKA \"Bancada da Entrosa\", is a small discord group of friends originated in the Brazilian Undertale Amino community, having its start in the year 2016 and lasting until to this day.\nThe art piece was attacked by the Yo-Kai Watch community, but reconquered and rebuilt following a difficult battle. There were also fights with a small Turkish and Argentinian flags, both of which were subjugated by TDA.\nNot everything was fought for, however. The group made alliances with nearby arts to ensure the survival of the entire quadrant, protecting each other during the final day.", "links": {"website": ["https://twitter.com/TDA_Images"], "subreddit": ["tdamiguinhos"]}, "path": {"253-258": [[583, 589], [604, 589], [604, 596], [583, 596]]}, "center": {"253-258": [594, 593]}}, -{"id": 3069, "name": "mirrorball", "description": "\"Mirrorball\" is a song by Taylor Swift on her album, Folklore.", "links": {}, "path": {"250-258": [[5, 84], [-1, 87], [0, 96], [7, 98], [12, 92], [9, 85], [4, 84]]}, "center": {"250-258": [5, 91]}}, -{"id": 3071, "name": "Peeking Quilldren", "description": "Quilldren (singular and plural) is the fan mascot for Nijisanji EN's VTuber - Ike Eveland. It is a small, fluffy, ball creature with a blue feather sticking out on top. These floofs are commonly seen in Ike Eveland's live streams and Ike Eveland's twitter, which are linked below.\n\nThis Quilldren is a reference to a Peeking Ike Eveland emote which is available in his YouTube membership (a.k.a. the Penmanship).", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/ike-eveland", "https://www.youtube.com/channel/UC4yNIKGvy-YUrwYupVdLDXA", "https://twitter.com/ike_eveland"]}, "path": {"250-258": [[-668, -271], [-667, -271], [-667, -266], [-666, -266], [-666, -262], [-667, -261], [-669, -261], [-669, -271]]}, "center": {"250-258": [-667, -263]}}, -{"id": 3073, "name": "Red Velvet's Member Heart", "description": "A small logo and heart designed in the representative colours of K-Pop group, Red Velvet's members.\nPink = Irene\nYellow = Seulgi\nBlue = Wendy\nGreen = Joy\nPurple = Yeri", "links": {"discord": ["redvelvet"]}, "path": {"250-258": [[-1280, -6], [-1260, -6], [-1260, 3], [-1280, 3]]}, "center": {"250-258": [-1270, -1]}}, -{"id": 3074, "name": "Melody", "description": "Melody Nosurname is a Ohioan youtuber who is a part of the furry community released a video documenting a Chilean show called 31 Minutos, this video quickly gained popularity from the Latin America community because it exposed the English speaking world to the show.", "links": {"website": ["https://www.youtube.com/watch?v=UCVAGumsmHY&t=1s", "https://www.youtube.com/@MelodyNosurname", "https://twitter.com/MelodyNosurname"], "subreddit": ["MelodyNosurname"], "discord": ["bDkXwTG8dZ"]}, "path": {"250-258": [[-913, -759], [-907, -759], [-908, -762], [-908, -767], [-907, -767], [-904, -770], [-906, -770], [-905, -773], [-907, -776], [-911, -776], [-913, -773], [-913, -770], [-911, -768], [-913, -768], [-913, -766], [-912, -763], [-911, -761]]}, "center": {"250-258": [-909, -772]}}, -{"id": 3075, "name": "Patty Meza - Corazón", "description": "Patty Meza is a Mexican content creator known by her funny attitude and her special kindness, extremely loved by her community \"Los Pattytos\".She is also known by being a great ally towards the LGBTQ community and having a Podcast \"TRANSNOCHANDO\" with her best friends, also streamers: Crystal Molly, Nezumivy and Caprimint.", "links": {"website": ["https://www.twitch.tv/pattymeza"]}, "path": {"250-258": [[-1194, -612], [-1194, -618], [-1193, -618], [-1193, -619], [-1192, -619], [-1192, -624], [-1191, -624], [-1191, -625], [-1190, -625], [-1190, -626], [-1189, -626], [-1189, -627], [-1188, -627], [-1188, -628], [-1187, -628], [-1187, -629], [-1186, -629], [-1186, -632], [-1188, -632], [-1188, -633], [-1189, -633], [-1189, -634], [-1190, -634], [-1190, -636], [-1191, -636], [-1191, -637], [-1192, -637], [-1192, -647], [-1191, -647], [-1191, -648], [-1190, -647], [-1190, -649], [-1190, -650], [-1189, -650], [-1189, -652], [-1188, -652], [-1188, -653], [-1187, -653], [-1187, -654], [-1186, -654], [-1186, -655], [-1184, -655], [-1184, -656], [-1182, -656], [-1182, -657], [-1180, -657], [-1180, -658], [-1178, -658], [-1178, -659], [-1176, -659], [-1176, -660], [-1158, -660], [-1158, -659], [-1155, -659], [-1155, -658], [-1152, -658], [-1152, -657], [-1151, -657], [-1151, -656], [-1150, -656], [-1150, -655], [-1149, -655], [-1149, -654], [-1148, -654], [-1148, -653], [-1147, -653], [-1147, -651], [-1146, -651], [-1146, -650], [-1145, -650], [-1145, -649], [-1144, -649], [-1144, -647], [-1143, -647], [-1143, -644], [-1142, -644], [-1142, -637], [-1143, -637], [-1143, -634], [-1144, -634], [-1144, -633], [-1145, -633], [-1145, -631], [-1146, -631], [-1146, -629], [-1147, -629], [-1147, -628], [-1148, -628], [-1148, -626], [-1147, -626], [-1147, -625], [-1146, -625], [-1146, -620], [-1147, -620], [-1147, -619], [-1148, -619], [-1148, -617], [-1146, -617], [-1146, -614], [-1145, -614], [-1145, -612]]}, "center": {"250-258": [-1166, -639]}}, -{"id": 3076, "name": "Medusa and Shadow Shaman (Dota 2 Heroes)", "description": "a dota 2 ship (because *snakes*)\nmade by : Maidot (digital artist)", "links": {"website": ["https://twitter.com/Maidot_7u7/status/1683300063215251457"]}, "path": {"247-258": [[203, -591], [203, -603], [174, -603], [174, -591], [175, -591]]}, "center": {"247-258": [189, -597]}}, -{"id": 3077, "name": "Flag of Listenbourg", "description": "Listenbourg is a country invented by the French to make fun of the level of geography of Americans in November 2022. Today, this country continues to live thanks to a band of enthusiasts.\n\nThe Listenbourg is located west of the iberic peninsula, and oddly looks like France but turned upside down. Its capital is Lurenberg and the country is populated by 61 million inhabitants in 2022.\n\nThe four official languages are French, German, Spanish, and Portuguese. A local language, Listenbourguese, is spoken in the countryside but is not recognized as an official language. However, it is advisable to learn it before going to Listenbourg.\n\nListenbourg is a unitary constitutional republic with a semi-presidential system. Its motto is \"Liberty, Honor, Radiance\".", "links": {"website": ["https://listenbourg.gouv.repl.co/discordslist.html"], "discord": ["rBgKcQcgFH"]}, "path": {"156-258": [[-495, 900], [-496, 900], [-496, 901], [-497, 901], [-498, 901], [-498, 902], [-499, 902], [-499, 904], [-500, 904], [-500, 945], [-499, 946], [-498, 947], [-495, 948], [-494, 949], [-466, 949], [-464, 948], [-464, 946], [-461, 946], [-460, 944], [-459, 937], [-459, 902], [-461, 900]]}, "center": {"156-258": [-479, 925]}}, -{"id": 3078, "name": "A Tribute to Daniil", "description": "A memorial to Daniil, a cat who passed away who was owned by leftist streamer Vaush. Included is a transgender flag and a Vaush TV on top.", "links": {"website": ["https://www.vaush.gg"], "subreddit": ["VaushV", "okbuddyvowsh"]}, "path": {"250-258": [[705, 951], [705, 970], [718, 970], [718, 951], [718, 943], [710, 943], [710, 950]]}, "center": {"250-258": [712, 957]}}, -{"id": 3079, "name": "German Twitch Streamer Pacohontaz", "description": "One of two eyes, a signature emote from Pacohontaz.\nIt is surrounded by a trans and nonbinary flag.\n\nThe spot has been provided by fellow streamer Hoppii.", "links": {"website": ["https://www.twitch.tv/pacohontaz"], "subreddit": ["pacohontaz"]}, "path": {"250-258": [[-1072, -754], [-1072, -746], [-1064, -746], [-1064, -754]]}, "center": {"250-258": [-1068, -750]}}, -{"id": 3080, "name": "Chiaki Nanami", "description": "The Ultimate Gamer from Super Danganronpa 2, she fought many battles.", "links": {"subreddit": ["danganronpa"], "discord": ["7rVSJ4EWhb"]}, "path": {"171-198": [[-1195, 62], [-1195, 87], [-1165, 86], [-1165, 61]], "211-219": [[1443, 657], [1442, 685], [1473, 683], [1475, 657], [1447, 657]], "228-258": [[-1175, 65], [-1174, 87], [-1195, 87], [-1195, 64], [-1195, 63], [-1188, 64]]}, "center": {"171-198": [-1180, 74], "211-219": [1457, 670], "228-258": [-1185, 76]}}, -{"id": 3081, "name": "Loona", "description": "Loona is a main character in the popular show 'Helluva Boss'", "links": {"website": ["https://en.wikipedia.org/wiki/Helluva_Boss"], "subreddit": ["HelluvaBoss"]}, "path": {"156-258": [[-456, 956], [-423, 957], [-416, 933], [-418, 925], [-425, 925], [-427, 905], [-434, 902], [-433, 899], [-455, 910], [-455, 916], [-459, 918], [-452, 929], [-453, 932], [-459, 927], [-463, 930], [-463, 933], [-462, 935], [-459, 934], [-457, 934], [-456, 935], [-456, 941], [-455, 943], [-456, 955]]}, "center": {"156-258": [-437, 939]}}, +{"id": 3069, "name": "mirrorball", "description": "\"Mirrorball\" is a song by Taylor Swift on her album, Folklore.", "links": {}, "path": {"250-258, T": [[5, 84], [-1, 87], [0, 96], [7, 98], [12, 92], [9, 85], [4, 84]]}, "center": {"250-258, T": [5, 91]}}, +{"id": 3071, "name": "Peeking Quilldren", "description": "Quilldren (singular and plural) is the fan mascot for Nijisanji EN's VTuber - Ike Eveland. It is a small, fluffy, ball creature with a blue feather sticking out on top. These floofs are commonly seen in Ike Eveland's live streams and Ike Eveland's twitter, which are linked below.\n\nThis Quilldren is a reference to a Peeking Ike Eveland emote which is available in his YouTube membership (a.k.a. the Penmanship).", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/ike-eveland", "https://www.youtube.com/channel/UC4yNIKGvy-YUrwYupVdLDXA", "https://twitter.com/ike_eveland"]}, "path": {"250-258, T": [[-668, -271], [-667, -271], [-667, -266], [-666, -266], [-666, -262], [-667, -261], [-669, -261], [-669, -271]]}, "center": {"250-258, T": [-667, -263]}}, +{"id": 3073, "name": "Red Velvet's Member Heart", "description": "A small logo and heart designed in the representative colours of K-Pop group, Red Velvet's members.\nPink = Irene\nYellow = Seulgi\nBlue = Wendy\nGreen = Joy\nPurple = Yeri", "links": {"discord": ["redvelvet"]}, "path": {"250-258, T": [[-1280, -6], [-1260, -6], [-1260, 3], [-1280, 3]]}, "center": {"250-258, T": [-1270, -1]}}, +{"id": 3074, "name": "Melody", "description": "Melody Nosurname is a Ohioan youtuber who is a part of the furry community released a video documenting a Chilean show called 31 Minutos, this video quickly gained popularity from the Latin America community because it exposed the English speaking world to the show.", "links": {"website": ["https://www.youtube.com/watch?v=UCVAGumsmHY&t=1s", "https://www.youtube.com/@MelodyNosurname", "https://twitter.com/MelodyNosurname"], "subreddit": ["MelodyNosurname"], "discord": ["bDkXwTG8dZ"]}, "path": {"250-258, T": [[-913, -759], [-907, -759], [-908, -762], [-908, -767], [-907, -767], [-904, -770], [-906, -770], [-905, -773], [-907, -776], [-911, -776], [-913, -773], [-913, -770], [-911, -768], [-913, -768], [-913, -766], [-912, -763], [-911, -761]]}, "center": {"250-258, T": [-909, -772]}}, +{"id": 3075, "name": "Patty Meza - Corazón", "description": "Patty Meza is a Mexican content creator known by her funny attitude and her special kindness, extremely loved by her community \"Los Pattytos\".She is also known by being a great ally towards the LGBTQ community and having a Podcast \"TRANSNOCHANDO\" with her best friends, also streamers: Crystal Molly, Nezumivy and Caprimint.", "links": {"website": ["https://www.twitch.tv/pattymeza"]}, "path": {"250-258, T": [[-1194, -612], [-1194, -618], [-1193, -618], [-1193, -619], [-1192, -619], [-1192, -624], [-1191, -624], [-1191, -625], [-1190, -625], [-1190, -626], [-1189, -626], [-1189, -627], [-1188, -627], [-1188, -628], [-1187, -628], [-1187, -629], [-1186, -629], [-1186, -632], [-1188, -632], [-1188, -633], [-1189, -633], [-1189, -634], [-1190, -634], [-1190, -636], [-1191, -636], [-1191, -637], [-1192, -637], [-1192, -647], [-1191, -647], [-1191, -648], [-1190, -647], [-1190, -649], [-1190, -650], [-1189, -650], [-1189, -652], [-1188, -652], [-1188, -653], [-1187, -653], [-1187, -654], [-1186, -654], [-1186, -655], [-1184, -655], [-1184, -656], [-1182, -656], [-1182, -657], [-1180, -657], [-1180, -658], [-1178, -658], [-1178, -659], [-1176, -659], [-1176, -660], [-1158, -660], [-1158, -659], [-1155, -659], [-1155, -658], [-1152, -658], [-1152, -657], [-1151, -657], [-1151, -656], [-1150, -656], [-1150, -655], [-1149, -655], [-1149, -654], [-1148, -654], [-1148, -653], [-1147, -653], [-1147, -651], [-1146, -651], [-1146, -650], [-1145, -650], [-1145, -649], [-1144, -649], [-1144, -647], [-1143, -647], [-1143, -644], [-1142, -644], [-1142, -637], [-1143, -637], [-1143, -634], [-1144, -634], [-1144, -633], [-1145, -633], [-1145, -631], [-1146, -631], [-1146, -629], [-1147, -629], [-1147, -628], [-1148, -628], [-1148, -626], [-1147, -626], [-1147, -625], [-1146, -625], [-1146, -620], [-1147, -620], [-1147, -619], [-1148, -619], [-1148, -617], [-1146, -617], [-1146, -614], [-1145, -614], [-1145, -612]]}, "center": {"250-258, T": [-1166, -639]}}, +{"id": 3076, "name": "Medusa and Shadow Shaman (Dota 2 Heroes)", "description": "a dota 2 ship (because *snakes*)\nmade by : Maidot (digital artist)", "links": {"website": ["https://twitter.com/Maidot_7u7/status/1683300063215251457"]}, "path": {"247-258, T": [[203, -591], [203, -603], [174, -603], [174, -591], [175, -591]]}, "center": {"247-258, T": [189, -597]}}, +{"id": 3077, "name": "Flag of Listenbourg", "description": "Listenbourg is a country invented by the French to make fun of the level of geography of Americans in November 2022. Today, this country continues to live thanks to a band of enthusiasts.\n\nThe Listenbourg is located west of the iberic peninsula, and oddly looks like France but turned upside down. Its capital is Lurenberg and the country is populated by 61 million inhabitants in 2022.\n\nThe four official languages are French, German, Spanish, and Portuguese. A local language, Listenbourguese, is spoken in the countryside but is not recognized as an official language. However, it is advisable to learn it before going to Listenbourg.\n\nListenbourg is a unitary constitutional republic with a semi-presidential system. Its motto is \"Liberty, Honor, Radiance\".", "links": {"website": ["https://listenbourg.gouv.repl.co/discordslist.html"], "discord": ["rBgKcQcgFH"]}, "path": {"156-258, T": [[-495, 900], [-496, 900], [-496, 901], [-497, 901], [-498, 901], [-498, 902], [-499, 902], [-499, 904], [-500, 904], [-500, 945], [-499, 946], [-498, 947], [-495, 948], [-494, 949], [-466, 949], [-464, 948], [-464, 946], [-461, 946], [-460, 944], [-459, 937], [-459, 902], [-461, 900]]}, "center": {"156-258, T": [-479, 925]}}, +{"id": 3078, "name": "A Tribute to Daniil", "description": "A memorial to Daniil, a cat who passed away who was owned by leftist streamer Vaush. Included is a transgender flag and a Vaush TV on top.", "links": {"website": ["https://www.vaush.gg"], "subreddit": ["VaushV", "okbuddyvowsh"]}, "path": {"250-258, T": [[705, 951], [705, 970], [718, 970], [718, 951], [718, 943], [710, 943], [710, 950]]}, "center": {"250-258, T": [712, 957]}}, +{"id": 3079, "name": "German Twitch Streamer Pacohontaz", "description": "One of two eyes, a signature emote from Pacohontaz.\nIt is surrounded by a trans and nonbinary flag.\n\nThe spot has been provided by fellow streamer Hoppii.", "links": {"website": ["https://www.twitch.tv/pacohontaz"], "subreddit": ["pacohontaz"]}, "path": {"250-258, T": [[-1072, -754], [-1072, -746], [-1064, -746], [-1064, -754]]}, "center": {"250-258, T": [-1068, -750]}}, +{"id": 3080, "name": "Chiaki Nanami", "description": "The Ultimate Gamer from Super Danganronpa 2, she fought many battles.", "links": {"subreddit": ["danganronpa"], "discord": ["7rVSJ4EWhb"]}, "path": {"171-198": [[-1195, 62], [-1195, 87], [-1165, 86], [-1165, 61]], "211-219": [[1443, 657], [1442, 685], [1473, 683], [1475, 657], [1447, 657]], "228-258, T": [[-1175, 65], [-1174, 87], [-1195, 87], [-1195, 64], [-1195, 63], [-1188, 64]]}, "center": {"171-198": [-1180, 74], "211-219": [1457, 670], "228-258, T": [-1185, 76]}}, +{"id": 3081, "name": "Loona", "description": "Loona is a main character in the popular show 'Helluva Boss'", "links": {"website": ["https://en.wikipedia.org/wiki/Helluva_Boss"], "subreddit": ["HelluvaBoss"]}, "path": {"156-258, T": [[-456, 956], [-423, 957], [-416, 933], [-418, 925], [-425, 925], [-427, 905], [-434, 902], [-433, 899], [-455, 910], [-455, 916], [-459, 918], [-452, 929], [-453, 932], [-459, 927], [-463, 930], [-463, 933], [-462, 935], [-459, 934], [-457, 934], [-456, 935], [-456, 941], [-455, 943], [-456, 955]]}, "center": {"156-258, T": [-437, 939]}}, {"id": 3082, "name": "Blender", "description": "Blender is a free and open source 3D creation suite. It supports the entirety of the 3D pipeline—modeling, rigging, animation, simulation, rendering, compositing and motion tracking, even video editing and game creation.", "links": {"website": ["https://www.blender.org/"], "subreddit": ["Blender"], "discord": ["blender", "7R7rNqP"]}, "path": {"253": [[-422, -548], [-420, -548], [-420, -547], [-419, -547], [-419, -546], [-418, -546], [-418, -545], [-417, -545], [-417, -544], [-416, -544], [-416, -543], [-415, -543], [-415, -542], [-414, -542], [-413, -541], [-412, -540], [-411, -539], [-410, -538], [-409, -537], [-409, -536], [-408, -536], [-408, -535], [-408, -534], [-408, -533], [-408, -532], [-408, -531], [-408, -530], [-409, -529], [-409, -528], [-410, -527], [-411, -526], [-412, -525], [-413, -524], [-414, -524], [-415, -523], [-416, -523], [-422, -523], [-423, -524], [-424, -524], [-425, -525], [-426, -526], [-427, -527], [-428, -528], [-428, -529], [-429, -530], [-430, -529], [-431, -528], [-432, -527], [-434, -527], [-435, -528], [-436, -529], [-436, -530], [-429, -537], [-432, -537], [-433, -538], [-434, -539], [-434, -540], [-432, -542], [-421, -542], [-424, -545], [-424, -546], [-423, -547]]}, "center": {"253": [-419, -533]}}, -{"id": 3083, "name": "r/BTD6", "description": "The iconic Dart Monkey throwing a dart at a red bloon from the game Bloons Tower Defence 6. Made with love by the BTD6 community.", "links": {"subreddit": ["btd6"]}, "path": {"250-258": [[-1195, -622], [-1215, -622], [-1215, -621], [-1220, -621], [-1220, -620], [-1226, -620], [-1226, -610], [-1195, -610]]}, "center": {"250-258": [-1210, -616]}}, -{"id": 3084, "name": "Sabaton S", "description": "The stylistic S from the Swedish metal band Sabaton, who write songs about history and the past", "links": {"subreddit": ["sabaton"]}, "path": {"212-259": [[1263, 18], [1265, 16], [1269, 20], [1269, 17], [1264, 12], [1267, 9], [1271, 9], [1274, 12], [1274, 14], [1272, 14], [1269, 11], [1268, 12], [1274, 18], [1274, 21], [1272, 21], [1269, 24]]}, "center": {"212-259": [1272, 19]}}, -{"id": 3085, "name": "Hololive council", "description": "A depiction of Hololive en Generation two (council) talents within the Vtubers Place mural, unfortunately missing Hakos Baelz and Tsukumo Sana as there wasn't enough room. The Talents that are included is Ceres Fauna (left), Nanashi Mumei (middle) and Ouro Kronii (right). Built by the hololive community.", "links": {"website": ["https://www.youtube.com/@CeresFauna", "https://www.youtube.com/@NanashiMumei", "https://www.youtube.com/@OuroKronii"]}, "path": {"250-258": [[-225, -912], [-225, -900], [-226, -900], [-226, -901], [-227, -901], [-227, -902], [-228, -902], [-228, -903], [-231, -903], [-232, -903], [-232, -902], [-233, -903], [-233, -901], [-235, -901], [-234, -902], [-233, -902], [-233, -903], [-232, -903], [-231, -904], [-231, -905], [-231, -906], [-232, -906], [-231, -907], [-233, -907], [-234, -907], [-234, -906], [-235, -906], [-235, -905], [-236, -905], [-236, -903], [-236, -902], [-237, -903], [-237, -901], [-238, -902], [-239, -902], [-239, -901], [-240, -902], [-240, -904], [-243, -907], [-245, -905], [-250, -905], [-252, -906], [-252, -911], [-252, -912]]}, "center": {"250-258": [-238, -908]}}, -{"id": 3086, "name": "Bloons from BTD6", "description": "From left to right: MOAB, followed by the Rainbow Bloon, and finally the Camo Regrow Ceramic.", "links": {"subreddit": ["BTD6"], "discord": ["TRHTdurNPj"]}, "path": {"250-258": [[-1281, -628], [-1261, -628], [-1261, -624], [-1281, -624]]}, "center": {"250-258": [-1271, -626]}}, +{"id": 3083, "name": "r/BTD6", "description": "The iconic Dart Monkey throwing a dart at a red bloon from the game Bloons Tower Defence 6. Made with love by the BTD6 community.", "links": {"subreddit": ["btd6"]}, "path": {"250-258, T": [[-1195, -622], [-1215, -622], [-1215, -621], [-1220, -621], [-1220, -620], [-1226, -620], [-1226, -610], [-1195, -610]]}, "center": {"250-258, T": [-1210, -616]}}, +{"id": 3084, "name": "Sabaton S", "description": "The stylistic S from the Swedish metal band Sabaton, who write songs about history and the past", "links": {"subreddit": ["sabaton"]}, "path": {"212-259, T": [[1263, 18], [1265, 16], [1269, 20], [1269, 17], [1264, 12], [1267, 9], [1271, 9], [1274, 12], [1274, 14], [1272, 14], [1269, 11], [1268, 12], [1274, 18], [1274, 21], [1272, 21], [1269, 24]]}, "center": {"212-259, T": [1272, 19]}}, +{"id": 3085, "name": "Hololive council", "description": "A depiction of Hololive en Generation two (council) talents within the Vtubers Place mural, unfortunately missing Hakos Baelz and Tsukumo Sana as there wasn't enough room. The Talents that are included is Ceres Fauna (left), Nanashi Mumei (middle) and Ouro Kronii (right). Built by the hololive community.", "links": {"website": ["https://www.youtube.com/@CeresFauna", "https://www.youtube.com/@NanashiMumei", "https://www.youtube.com/@OuroKronii"]}, "path": {"250-258, T": [[-225, -912], [-225, -900], [-226, -900], [-226, -901], [-227, -901], [-227, -902], [-228, -902], [-228, -903], [-231, -903], [-232, -903], [-232, -902], [-233, -903], [-233, -901], [-235, -901], [-234, -902], [-233, -902], [-233, -903], [-232, -903], [-231, -904], [-231, -905], [-231, -906], [-232, -906], [-231, -907], [-233, -907], [-234, -907], [-234, -906], [-235, -906], [-235, -905], [-236, -905], [-236, -903], [-236, -902], [-237, -903], [-237, -901], [-238, -902], [-239, -902], [-239, -901], [-240, -902], [-240, -904], [-243, -907], [-245, -905], [-250, -905], [-252, -906], [-252, -911], [-252, -912]]}, "center": {"250-258, T": [-238, -908]}}, +{"id": 3086, "name": "Bloons from BTD6", "description": "From left to right: MOAB, followed by the Rainbow Bloon, and finally the Camo Regrow Ceramic.", "links": {"subreddit": ["BTD6"], "discord": ["TRHTdurNPj"]}, "path": {"250-258, T": [[-1281, -628], [-1261, -628], [-1261, -624], [-1281, -624]]}, "center": {"250-258, T": [-1271, -626]}}, {"id": 3087, "name": "The Place Squad battle 2023", "description": "", "links": {"subreddit": ["placesquad"], "discord": ["Pk586W2aTA"]}, "path": {"171": [[-998, -118], [-998, -115], [-996, -115], [-996, -118]]}, "center": {"171": [-997, -116]}}, {"id": 3088, "name": "Hidden Nooberhood", "description": "The hidden neighbourhood of the little noob chicks, represented by Hidencio The Chick, with their eggshell helmet, sword and shield. Hidencio fought bravely for the second time in the pixel wars of Reddit, with help of our friendly neighbours from this small group of friends' private Discord server.", "links": {"website": ["https://shadowro.es/"]}, "path": {"45": [[348, 80], [348, 85], [354, 85], [354, 80], [351, 80]]}, "center": {"45": [351, 83]}}, {"id": 3089, "name": "DAN THE HATER r/h3h3productions", "description": "Dan (aka Dan the Hater) is the producer of the #1 podcast in the world, the H3 Podcast.", "links": {"website": ["https://www.youtube.com/@H3Podcast"], "subreddit": ["h3h3productions"]}, "path": {"210": [[-1500, 678], [-1445, 678], [-1445, 745], [-1500, 745], [-1500, 714]]}, "center": {"210": [-1472, 712]}}, -{"id": 3091, "name": "RaptorLove", "description": "The drawing was rallied by a small twitch streamer Askar_an to make his boyfriends emote of a Raptor holding a heart. \nThe drawing had huge support from the r/e_ve community (-351, 974) and Dark and Darker alliance (-270, 515)", "links": {"website": ["https://www.twitch.tv/askar_an"]}, "path": {"250-258": [[-324, 937], [-315, 937], [-315, 932], [-313, 929], [-312, 925], [-312, 919], [-328, 919], [-327, 933]]}, "center": {"250-258": [-320, 926]}}, -{"id": 3092, "name": "Liga Deportiva Alajuelense", "description": "A small flag with the initials L.D.A and a 12, next to the Costa Rican flag of \"Fuck Spez\".\nRepresenting Liga Deportiva Alajuelense and their fans, a football team from Costa Rica.", "links": {"website": ["https://lda.cr/"], "subreddit": ["Alajuelense"]}, "path": {"250-258": [[1185, -107], [1186, -109], [1187, -107], [1189, -107], [1192, -107], [1194, -107], [1195, -107], [1197, -107], [1197, -109], [1197, -112], [1197, -115], [1197, -118], [1197, -121], [1197, -123], [1195, -123], [1193, -123], [1191, -123], [1186, -123], [1185, -123], [1184, -123], [1184, -107], [1184, -106]]}, "center": {"250-258": [1191, -114]}}, +{"id": 3091, "name": "RaptorLove", "description": "The drawing was rallied by a small twitch streamer Askar_an to make his boyfriends emote of a Raptor holding a heart. \nThe drawing had huge support from the r/e_ve community (-351, 974) and Dark and Darker alliance (-270, 515)", "links": {"website": ["https://www.twitch.tv/askar_an"]}, "path": {"250-258, T": [[-324, 937], [-315, 937], [-315, 932], [-313, 929], [-312, 925], [-312, 919], [-328, 919], [-327, 933]]}, "center": {"250-258, T": [-320, 926]}}, +{"id": 3092, "name": "Liga Deportiva Alajuelense", "description": "A small flag with the initials L.D.A and a 12, next to the Costa Rican flag of \"Fuck Spez\".\nRepresenting Liga Deportiva Alajuelense and their fans, a football team from Costa Rica.", "links": {"website": ["https://lda.cr/"], "subreddit": ["Alajuelense"]}, "path": {"250-258, T": [[1185, -107], [1186, -109], [1187, -107], [1189, -107], [1192, -107], [1194, -107], [1195, -107], [1197, -107], [1197, -109], [1197, -112], [1197, -115], [1197, -118], [1197, -121], [1197, -123], [1195, -123], [1193, -123], [1191, -123], [1186, -123], [1185, -123], [1184, -123], [1184, -107], [1184, -106]]}, "center": {"250-258, T": [1191, -114]}}, {"id": 3093, "name": "BMW ///M Badge", "description": "The logo/badge of BMW M. The BMW M GmbH, formerly known as BMW Motorsport GmbH, is a subsidiary of BMW AG that manufactures high-performance cars.\n\nBMW M (\"M\" for \"motorsport\") was initially created to facilitate BMW's racing program, which was very successful in the 1960s and 1970s. As time passed, BMW M began to supplement BMW's vehicle portfolio with specially modified higher trim models, for which they are now most known by the general public. These M-badged cars traditionally include modified engines, transmissions, suspensions, interior trims, aerodynamics, and exterior modifications to set them apart from their counterparts. All M models are tested and tuned at BMW's private facility at the Nürburgring racing circuit in Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/BMW_M"]}, "path": {"171-223": [[-701, -596], [-697, -603], [-681, -603], [-681, -596]]}, "center": {"171-223": [-690, -599]}}, {"id": 3094, "name": "Slark (dota 2 heroe)", "description": "Pouncing into danger then slipping back out is what Slark does best. He rushes at the chance to pin or corner a lone foe, steals their essence with each cut from his dagger, and is always ready to vanish should the tables turn.", "links": {"website": ["https://twitter.com/Maidot_7u7/status/1631736377694887936"]}, "path": {"239": [[154, -605], [154, -594], [165, -605], [165, -590], [149, -591], [149, -605], [165, -605], [164, -590], [148, -590], [147, -605], [167, -605], [167, -590], [147, -590], [147, -604]]}, "center": {"239": [160, -595]}}, -{"id": 3096, "name": "Mae", "description": "\"Mae\" is a very common word in Costa Rica to refer to any person, like \"Man\" or \"Bro\".\n\nIt is the deformation of the word \"Maje\", used in the rest of Central American countries.", "links": {"website": ["https://es.wikipedia.org/wiki/Mae"], "subreddit": ["Ticos", "costarica"]}, "path": {"167-258": [[-559, 664], [-522, 664], [-522, 656], [-502, 656], [-502, 695], [-560, 695]]}, "center": {"167-258": [-520, 679]}}, +{"id": 3096, "name": "Mae", "description": "\"Mae\" is a very common word in Costa Rica to refer to any person, like \"Man\" or \"Bro\".\n\nIt is the deformation of the word \"Maje\", used in the rest of Central American countries.", "links": {"website": ["https://es.wikipedia.org/wiki/Mae"], "subreddit": ["Ticos", "costarica"]}, "path": {"167-258, T": [[-559, 664], [-522, 664], [-522, 656], [-502, 656], [-502, 695], [-560, 695]]}, "center": {"167-258, T": [-520, 679]}}, {"id": 3097, "name": "Die Geschwister Scholl (\"The Scholl Siblings\")", "description": "Hans and Sophie Scholl were members of the resistance group \"Weiße Rose\" (the White Rose) that fought against the Nazis by authoring and distributing flyers against the war and against the Nazi regime. https://en.wikipedia.org/wiki/Hans_and_Sophie_Scholl", "links": {}, "path": {"253-258": [[-1088, -391], [-1088, -398], [-1084, -401], [-1083, -405], [-1079, -409], [-1077, -419], [-1080, -424], [-1080, -430], [-1078, -434], [-1076, -440], [-1073, -445], [-1070, -450], [-1063, -450], [-1058, -450], [-1054, -448], [-1053, -447], [-1048, -445], [-1043, -443], [-1038, -439], [-1037, -434], [-1041, -428], [-1041, -421], [-1039, -420], [-1038, -425], [-1036, -428], [-1035, -435], [-1031, -440], [-1028, -445], [-1022, -449], [-1017, -449], [-1009, -450], [-1002, -448], [-997, -444], [-993, -437], [-991, -429], [-989, -419], [-988, -415], [-988, -404], [-990, -402], [-992, -402], [-994, -398], [-989, -394], [-988, -391], [-988, -390], [-1032, -389], [-1033, -394], [-1028, -399], [-1032, -405], [-1036, -405], [-1037, -407], [-1038, -411], [-1037, -413], [-1038, -417], [-1039, -420], [-1041, -420], [-1043, -416], [-1041, -411], [-1041, -408], [-1042, -407], [-1045, -407], [-1046, -403], [-1047, -402], [-1047, -399], [-1050, -395], [-1046, -391], [-1045, -390], [-1087, -390]]}, "center": {"253-258": [-1013, -420]}}, -{"id": 3098, "name": "GianTv", "description": "Youtuber y streamer argentino\nEs conocido tambien como el \"El posho\" \"Mono\" el super heroe apodado \"Bee movie man la pelicula\" y fundador de monokistan", "links": {}, "path": {"250-258": [[-1059, -294], [-1060, -295], [-1061, -296], [-1059, -295], [-1058, -295], [-1061, -294], [-1060, -292], [-1061, -281], [-1046, -281], [-1045, -295], [-1046, -296], [-1048, -295], [-1059, -296], [-1048, -296], [-1047, -289], [-1046, -295], [-1054, -294]]}, "center": {"250-258": [-1053, -287]}}, -{"id": 3100, "name": "PierreShow", "description": "This is the logo of the streamer PierreShow.\n\nPrior instances of this art were destroyed by Morocco and then Bolivian streamers. This latest iteration of PierreShow was ultimately absorbed into Singapore's artwork.\n\nTo Singapore and other allies who helped us, love you mates!", "links": {"website": ["https://www.twitch.tv/pierreshow"]}, "path": {"2-6": [[383, 5], [393, 5], [393, 16], [383, 16]], "7-45": [[374, 6], [374, -4], [390, -4], [390, 6]], "47-77": [[362, -48], [362, -36], [380, -36], [380, -48]], "80-258": [[357, -18], [357, -21], [358, -21], [358, -22], [359, -22], [359, -23], [360, -23], [360, -24], [362, -24], [363, -24], [363, -25], [367, -25], [367, -24], [368, -24], [368, -25], [370, -25], [370, -24], [371, -24], [371, -22], [370, -22], [370, -18], [370, -16], [367, -16], [367, -17], [366, -17], [365, -17], [365, -18], [362, -18], [362, -15], [359, -15], [359, -16], [356, -16], [356, -18]]}, "center": {"2-6": [388, 11], "7-45": [382, 1], "47-77": [371, -42], "80-258": [365, -21]}}, -{"id": 3101, "name": "MissaSinfonia", "description": "A Mexican youtuber with 17 million subscribers on his main channel. Also known as \"el vato de la rosa\"", "links": {"website": ["https://www.youtube.com/@MissaSinfonia"]}, "path": {"250-258": [[441, 542], [464, 542], [464, 555], [439, 555], [439, 542], [464, 542]]}, "center": {"250-258": [452, 549]}}, -{"id": 3102, "name": "Realm of the Mad God", "description": "Realm of the Mad God (RotMG) is a free-to-play, massively multiplayer, \"bullet hell,\" roguelike RPG. This art features a late game boss 'Bridge Sentinel', a playable class called Knight, and two well known players \"BuddingRomance\" and \"SamRiddeli\" standing beside the 'Flaming Heart' pet/logo of the guild '50' ; against a backdrop of whitebags; an item which contains rare loot.", "links": {"website": ["https://www.realmeye.com/wiki/realm-of-the-mad-god"], "subreddit": ["RotMG"], "discord": ["creatures"]}, "path": {"250-258": [[-501, -12], [-502, -40], [-489, -51], [-489, -45], [-482, -38], [-473, -38], [-473, -28], [-464, -27], [-464, -11], [-464, -28], [-501, -29]]}, "center": {"250-258": [-493, -37]}}, -{"id": 3103, "name": "Minecraft skin for The DcopnW2809", "description": "Player of Minecraft", "links": {}, "path": {"250-258": [[-665, -889], [-666, -889], [-659, -889], [-658, -881], [-666, -881]]}, "center": {"250-258": [-662, -885]}}, -{"id": 3104, "name": "Top Hat Duck x UwU Bird x Birds Aren't Real", "description": "An independent French group created the Top Hat Duck. After it was overwritten by Bolivian streamers, the Top Hat Duck revived in Singapore's artwork, and the Top Hat expanded during the Greyout. To partner Top Hat Duck, Singapore drew a koel bird (which makes the UwU sound) with a tin foil hat in a tribute to 2022 allies Birds Aren't Real.", "links": {"subreddit": ["birdsarentreal", "placeSG", "singapore"]}, "path": {"96-178": [[344, -18], [344, -26], [350, -26], [349, -18]], "48-52": [[356, -37], [363, -37], [363, -47], [356, -47]], "53-76": [[356, -37], [356, -26], [363, -26], [363, -37]], "179-253": [[341, -28], [341, -19], [341, -18], [350, -18], [350, -28]], "250-258": [[341, -18], [350, -18], [350, -21], [349, -21], [349, -25], [345, -25], [345, -103], [342, -103]]}, "center": {"96-178": [347, -22], "48-52": [360, -42], "53-76": [360, -31], "179-253": [346, -23], "250-258": [345, -22]}}, -{"id": 3105, "name": "Appa", "description": "Avatar Aang's flying bison from the Nickelodeon TV Series, Avatar: The Last Airbender.", "links": {"website": ["https://avatar.fandom.com/wiki/Appa"], "subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["5FSXqzJkQ5"]}, "path": {"172-258": [[-1072, -324], [-1031, -324], [-1031, -296], [-1072, -296]]}, "center": {"172-258": [-1051, -310]}}, -{"id": 3106, "name": "Abigail Williams, FGO", "description": "A small pixel portrait of Abigail from Fate/Grand Order, appropriately placed in a corner of the Void. Built by u/_JO3Y\n\nYgnaiih... ygnaiih... thflthkh'ngha!\nI hold the silver key. Come forth from nothingness, open the lock... Oh Father, my God. I will become an incarnation of its essence. Moving beyond the sleep of roses, the realm of dreams, we arrive at the final gate!\nQliphoth Rhizome!", "links": {}, "path": {"242-258, 255-258": [[1005, 385], [1005, 395], [999, 395], [999, 385]]}, "center": {"242-258, 255-258": [1002, 390]}}, -{"id": 3107, "name": "Nia Skin y Sirena", "description": "Este arte representa el aspecto de Minecraft (cara/skin Nia) y una Sirena donde es basada dicha skin, Fue creado por la comunidad de Nia \"Niaters\". LakshartNia más conocida como Nia, es una streamer española de Twitch que juega principalmente a Minecraft, Phasmophobia, Rust, ark, gtav y cualquier juego de supervivencia entre otros. es creadora de contenido para KOI (@Koi) y es miembro de #GGHouse", "links": {"website": ["https://www.twitch.tv/lakshartnia"], "subreddit": ["Nyasuu"]}, "path": {"222-258": [[286, -624], [307, -624], [307, -610], [301, -610], [301, -591], [286, -591]]}, "center": {"222-258": [294, -615]}}, -{"id": 3108, "name": "Taymalito", "description": "This tamale, affectionately known as Taymalito, originates from Costa Rica and was created by omarexcc, a Twitch streamer. Swifties quickly adopted it inside their artwork and protected him ever since. It later grew to symbolize the alliance between r/TaylorSwift and another Costa Rican streamer, Ticos.", "links": {"website": ["https://en.wikipedia.org/wiki/Tamale"], "subreddit": ["TaylorSwift", "ticos"], "discord": ["swifties"]}, "path": {"14-44": [[45, 82], [45, 96], [58, 96], [58, 82]], "48-258": [[2, 127], [8, 123], [13, 125], [20, 136], [13, 141], [1, 131]]}, "center": {"14-44": [52, 89], "48-258": [9, 130]}}, -{"id": 3109, "name": "tizx and tomato friend", "description": "1 câu chuyện ngắn về mình và bạn cà chua này r/zuravn , mình bắt đầu viết chữ của mình trên art của vn và có lấn sang hình của bạn đó và bạn đó đã sửa lại cho mình rất gọn cám ơn bro nhe peace \\n\\nshort story when i start begin override on pixel of this potato and him r/zuravn fix my text , i feelling good to be that \\nthen that i dont see him defende to him art i was try to help but , my pixel not overwrited", "links": {"website": ["https://www.facebook.com/tizx.unity/"], "subreddit": ["tizx"]}, "path": {"250-258": [[963, 439], [977, 439], [977, 435], [987, 435], [986, 444], [963, 444]]}, "center": {"250-258": [981, 440]}}, -{"id": 3110, "name": "tizx and tomato friend", "description": "1 câu chuyện ngắn về mình và bạn cà chua này r/zuravn , mình bắt đầu viết chữ của mình trên art của vn và có lấn sang hình của bạn đó và bạn đó đã sửa lại cho mình rất gọn cám ơn bro nhe peace \\n\\nshort story when i start begin override on pixel of this potato and him r/zuravn fix my text , i feelling good to be that \\nthen that i dont see him defende to him art i was try to help but , my pixel not overwrited", "links": {"website": ["https://www.facebook.com/tizx.unity/"], "subreddit": ["tizx"]}, "path": {"250-258": [[963, 439], [977, 439], [977, 435], [987, 435], [986, 444], [963, 444]]}, "center": {"250-258": [981, 440]}}, +{"id": 3098, "name": "GianTv", "description": "Youtuber y streamer argentino\nEs conocido tambien como el \"El posho\" \"Mono\" el super heroe apodado \"Bee movie man la pelicula\" y fundador de monokistan", "links": {}, "path": {"250-258, T": [[-1059, -294], [-1060, -295], [-1061, -296], [-1059, -295], [-1058, -295], [-1061, -294], [-1060, -292], [-1061, -281], [-1046, -281], [-1045, -295], [-1046, -296], [-1048, -295], [-1059, -296], [-1048, -296], [-1047, -289], [-1046, -295], [-1054, -294]]}, "center": {"250-258, T": [-1053, -287]}}, +{"id": 3100, "name": "PierreShow", "description": "This is the logo of the streamer PierreShow.\n\nPrior instances of this art were destroyed by Morocco and then Bolivian streamers. This latest iteration of PierreShow was ultimately absorbed into Singapore's artwork.\n\nTo Singapore and other allies who helped us, love you mates!", "links": {"website": ["https://www.twitch.tv/pierreshow"]}, "path": {"2-6": [[383, 5], [393, 5], [393, 16], [383, 16]], "7-45": [[374, 6], [374, -4], [390, -4], [390, 6]], "47-77": [[362, -48], [362, -36], [380, -36], [380, -48]], "80-258, T": [[357, -18], [357, -21], [358, -21], [358, -22], [359, -22], [359, -23], [360, -23], [360, -24], [362, -24], [363, -24], [363, -25], [367, -25], [367, -24], [368, -24], [368, -25], [370, -25], [370, -24], [371, -24], [371, -22], [370, -22], [370, -18], [370, -16], [367, -16], [367, -17], [366, -17], [365, -17], [365, -18], [362, -18], [362, -15], [359, -15], [359, -16], [356, -16], [356, -18]]}, "center": {"2-6": [388, 11], "7-45": [382, 1], "47-77": [371, -42], "80-258, T": [365, -21]}}, +{"id": 3101, "name": "MissaSinfonia", "description": "A Mexican youtuber with 17 million subscribers on his main channel. Also known as \"el vato de la rosa\"", "links": {"website": ["https://www.youtube.com/@MissaSinfonia"]}, "path": {"250-258, T": [[441, 542], [464, 542], [464, 555], [439, 555], [439, 542], [464, 542]]}, "center": {"250-258, T": [452, 549]}}, +{"id": 3102, "name": "Realm of the Mad God", "description": "Realm of the Mad God (RotMG) is a free-to-play, massively multiplayer, \"bullet hell,\" roguelike RPG. This art features a late game boss 'Bridge Sentinel', a playable class called Knight, and two well known players \"BuddingRomance\" and \"SamRiddeli\" standing beside the 'Flaming Heart' pet/logo of the guild '50' ; against a backdrop of whitebags; an item which contains rare loot.", "links": {"website": ["https://www.realmeye.com/wiki/realm-of-the-mad-god"], "subreddit": ["RotMG"], "discord": ["creatures"]}, "path": {"250-258, T": [[-501, -12], [-502, -40], [-489, -51], [-489, -45], [-482, -38], [-473, -38], [-473, -28], [-464, -27], [-464, -11], [-464, -28], [-501, -29]]}, "center": {"250-258, T": [-493, -37]}}, +{"id": 3103, "name": "Minecraft skin for The DcopnW2809", "description": "Player of Minecraft", "links": {}, "path": {"250-258, T": [[-665, -889], [-666, -889], [-659, -889], [-658, -881], [-666, -881]]}, "center": {"250-258, T": [-662, -885]}}, +{"id": 3104, "name": "Top Hat Duck x UwU Bird x Birds Aren't Real", "description": "An independent French group created the Top Hat Duck. After it was overwritten by Bolivian streamers, the Top Hat Duck revived in Singapore's artwork, and the Top Hat expanded during the Greyout. To partner Top Hat Duck, Singapore drew a koel bird (which makes the UwU sound) with a tin foil hat in a tribute to 2022 allies Birds Aren't Real.", "links": {"subreddit": ["birdsarentreal", "placeSG", "singapore"]}, "path": {"96-178": [[344, -18], [344, -26], [350, -26], [349, -18]], "48-52": [[356, -37], [363, -37], [363, -47], [356, -47]], "53-76": [[356, -37], [356, -26], [363, -26], [363, -37]], "179-253, T": [[341, -28], [341, -19], [341, -18], [350, -18], [350, -28]], "250-258, T": [[341, -18], [350, -18], [350, -21], [349, -21], [349, -25], [345, -25], [345, -103], [342, -103]]}, "center": {"96-178": [347, -22], "48-52": [360, -42], "53-76": [360, -31], "179-253, T": [346, -23], "250-258, T": [345, -22]}}, +{"id": 3105, "name": "Appa", "description": "Avatar Aang's flying bison from the Nickelodeon TV Series, Avatar: The Last Airbender.", "links": {"website": ["https://avatar.fandom.com/wiki/Appa"], "subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["5FSXqzJkQ5"]}, "path": {"172-258, T": [[-1072, -324], [-1031, -324], [-1031, -296], [-1072, -296]]}, "center": {"172-258, T": [-1051, -310]}}, +{"id": 3106, "name": "Abigail Williams, FGO", "description": "A small pixel portrait of Abigail from Fate/Grand Order, appropriately placed in a corner of the Void. Built by u/_JO3Y\n\nYgnaiih... ygnaiih... thflthkh'ngha!\nI hold the silver key. Come forth from nothingness, open the lock... Oh Father, my God. I will become an incarnation of its essence. Moving beyond the sleep of roses, the realm of dreams, we arrive at the final gate!\nQliphoth Rhizome!", "links": {}, "path": {"242-258, 255-258, T": [[1005, 385], [1005, 395], [999, 395], [999, 385]]}, "center": {"242-258, 255-258, T": [1002, 390]}}, +{"id": 3107, "name": "Nia Skin y Sirena", "description": "Este arte representa el aspecto de Minecraft (cara/skin Nia) y una Sirena donde es basada dicha skin, Fue creado por la comunidad de Nia \"Niaters\". LakshartNia más conocida como Nia, es una streamer española de Twitch que juega principalmente a Minecraft, Phasmophobia, Rust, ark, gtav y cualquier juego de supervivencia entre otros. es creadora de contenido para KOI (@Koi) y es miembro de #GGHouse", "links": {"website": ["https://www.twitch.tv/lakshartnia"], "subreddit": ["Nyasuu"]}, "path": {"222-258, T": [[286, -624], [307, -624], [307, -610], [301, -610], [301, -591], [286, -591]]}, "center": {"222-258, T": [294, -615]}}, +{"id": 3108, "name": "Taymalito", "description": "This tamale, affectionately known as Taymalito, originates from Costa Rica and was created by omarexcc, a Twitch streamer. Swifties quickly adopted it inside their artwork and protected him ever since. It later grew to symbolize the alliance between r/TaylorSwift and another Costa Rican streamer, Ticos.", "links": {"website": ["https://en.wikipedia.org/wiki/Tamale"], "subreddit": ["TaylorSwift", "ticos"], "discord": ["swifties"]}, "path": {"14-44": [[45, 82], [45, 96], [58, 96], [58, 82]], "48-258, T": [[2, 127], [8, 123], [13, 125], [20, 136], [13, 141], [1, 131]]}, "center": {"14-44": [52, 89], "48-258, T": [9, 130]}}, +{"id": 3109, "name": "tizx and tomato friend", "description": "1 câu chuyện ngắn về mình và bạn cà chua này r/zuravn , mình bắt đầu viết chữ của mình trên art của vn và có lấn sang hình của bạn đó và bạn đó đã sửa lại cho mình rất gọn cám ơn bro nhe peace \\n\\nshort story when i start begin override on pixel of this potato and him r/zuravn fix my text , i feelling good to be that \\nthen that i dont see him defende to him art i was try to help but , my pixel not overwrited", "links": {"website": ["https://www.facebook.com/tizx.unity/"], "subreddit": ["tizx"]}, "path": {"250-258, T": [[963, 439], [977, 439], [977, 435], [987, 435], [986, 444], [963, 444]]}, "center": {"250-258, T": [981, 440]}}, +{"id": 3110, "name": "tizx and tomato friend", "description": "1 câu chuyện ngắn về mình và bạn cà chua này r/zuravn , mình bắt đầu viết chữ của mình trên art của vn và có lấn sang hình của bạn đó và bạn đó đã sửa lại cho mình rất gọn cám ơn bro nhe peace \\n\\nshort story when i start begin override on pixel of this potato and him r/zuravn fix my text , i feelling good to be that \\nthen that i dont see him defende to him art i was try to help but , my pixel not overwrited", "links": {"website": ["https://www.facebook.com/tizx.unity/"], "subreddit": ["tizx"]}, "path": {"250-258, T": [[963, 439], [977, 439], [977, 435], [987, 435], [986, 444], [963, 444]]}, "center": {"250-258, T": [981, 440]}}, {"id": 3112, "name": "Nia Pijama y Capibara", "description": "LakshartNia amante de los pijamas y capibaras \nPixelart hecho por un meme entre la comunidad Niaters (Nianos)\n\n- PepoPijama por que a Nia le gusta usar pijamas en los Directos que hace en Twitch y en su vida diaria\n- Capibara por que le gustan muchísimo esos animales y mucho mas el sonido que hacen los capibaras de Minecraft \" Fi Fi Fi \"", "links": {"website": ["https://www.twitch.tv/lakshartnia"], "subreddit": ["Nyasuu"]}, "path": {"245": [[-1025, -233], [-1008, -233], [-1008, -232], [-1007, -232], [-1007, -226], [-1010, -226], [-1010, -216], [-1000, -216], [-1000, -204], [-1025, -204]]}, "center": {"245": [-1017, -213]}}, -{"id": 3114, "name": "André Raimbourg", "description": "André Robert Raimbourg (27 July 1917 – 23 September 1970) better known as André Bourvil, was a French actor and singer best known for his roles in comedy films, most notably in his collaboration with Louis de Funès in the films Le Corniaud (1965) and La Grande Vadrouille (1966). For his performance in Le Corniaud, he won a Special Diploma at the 4th Moscow International Film Festival.", "links": {"website": ["https://en.wikipedia.org/wiki/Bourvil"]}, "path": {"103-251": [[-440, 269], [-429, 263], [-439, 248], [-431, 231], [-432, 217], [-443, 208], [-457, 208], [-466, 216], [-467, 225], [-470, 231], [-466, 240], [-478, 251], [-478, 260], [-476, 264], [-469, 267], [-467, 269]]}, "center": {"103-251": [-449, 227]}}, -{"id": 3115, "name": "Tango dancers", "description": "Tango is a musical genre and social dance originated at the end of the 19th century in the suburbs of Buenos Aires.", "links": {"subreddit": ["PlaceArg"], "discord": ["PnW36FSJ"]}, "path": {"250-258": [[1132, 976], [1136, 975], [1137, 972], [1137, 971], [1139, 970], [1143, 971], [1145, 970], [1147, 972], [1146, 976], [1148, 977], [1150, 977], [1153, 977], [1154, 976], [1153, 974], [1152, 974], [1152, 972], [1152, 969], [1152, 967], [1150, 965], [1149, 963], [1149, 957], [1154, 957], [1154, 953], [1153, 953], [1152, 952], [1151, 952], [1151, 954], [1149, 954], [1148, 952], [1148, 948], [1149, 948], [1148, 947], [1146, 945], [1143, 946], [1142, 946], [1142, 948], [1140, 948], [1139, 947], [1138, 948], [1138, 949], [1138, 950], [1137, 952], [1137, 953], [1135, 954], [1134, 952], [1134, 951], [1134, 949], [1133, 949], [1131, 950], [1131, 952], [1132, 954], [1133, 955], [1135, 956], [1137, 956], [1138, 956], [1140, 955], [1137, 958], [1138, 958], [1140, 958], [1140, 960], [1138, 964], [1137, 965], [1134, 968], [1133, 971], [1130, 971], [1131, 974], [1132, 976], [1135, 976]]}, "center": {"250-258": [1144, 965]}}, -{"id": 3116, "name": "SimRC.de", "description": "Im Jahr 2012 bildete eine kleine Gruppe von Rennsportbegeisterten die Homepage für eine virtuelle Formel 1 Liga. 11 Jahre später besteht unsere Community aus ca. 200 Mitgliedern und bietet eine Plattform für Spiele wie F1 23, Assetto Corsa und iRacing. Hiermit bieten wir das gesamte Paket von Arcade bis High-End Simulation an. Mit mehr als 50.000 Klicks pro Tag ist unsere Community eine der aktivsten in Deutschland, welche gleichgesinnte Fahrer mit der Leidenschaft Rennsport verbindet.\n\nDu bist ebenfalls Rennsport-Begeistert und fühlst dich unter anderen PS-Verrückten erst so richtig wohl? Dann bist du bei uns genau richtig. Egal ob Profi oder Anfänger, bei uns ist für Jeden was dabei.", "links": {"website": ["https://simrc.de/"]}, "path": {"202-258": [[383, -1000], [406, -1000], [406, -991], [383, -992], [382, -1000], [382, -991], [406, -991], [406, -1000], [382, -1000], [382, -990], [407, -990], [407, -1000], [382, -1000]]}, "center": {"202-258": [387, -996]}}, -{"id": 3117, "name": "Soft sign (Ь)", "description": "Ь or Мягкий Знак is the 30th letter of the Russian alphabet", "links": {"subreddit": ["alphabetfriends"]}, "path": {"250-258": [[-321, 953], [-321, 957], [-320, 957], [-319, 956], [-319, 955], [-321, 955]]}, "center": {"250-258": [-320, 956]}}, -{"id": 3119, "name": "Mash Kyrielight", "description": "One of the main characters of a mobile game Fate/Grand Order", "links": {"subreddit": ["grandorder"]}, "path": {"237-258": [[-1193, 67], [-1193, 63], [-1194, 61], [-1195, 60], [-1196, 59], [-1197, 59], [-1198, 58], [-1202, 58], [-1203, 59], [-1204, 59], [-1205, 60], [-1206, 61], [-1206, 62], [-1207, 63], [-1207, 68], [-1206, 69], [-1206, 71], [-1205, 71], [-1204, 71], [-1204, 72], [-1205, 73], [-1205, 74], [-1207, 74], [-1208, 75], [-1208, 77], [-1209, 77], [-1209, 80], [-1210, 81], [-1210, 83], [-1211, 83], [-1211, 89], [-1210, 90], [-1206, 90], [-1205, 91], [-1204, 91], [-1201, 87], [-1196, 87], [-1196, 89], [-1195, 90], [-1194, 91], [-1193, 91], [-1192, 90], [-1192, 89], [-1193, 88], [-1193, 86], [-1192, 85], [-1192, 74], [-1193, 73], [-1197, 73], [-1194, 71]]}, "center": {"237-258": [-1200, 80]}}, +{"id": 3114, "name": "André Raimbourg", "description": "André Robert Raimbourg (27 July 1917 – 23 September 1970) better known as André Bourvil, was a French actor and singer best known for his roles in comedy films, most notably in his collaboration with Louis de Funès in the films Le Corniaud (1965) and La Grande Vadrouille (1966). For his performance in Le Corniaud, he won a Special Diploma at the 4th Moscow International Film Festival.", "links": {"website": ["https://en.wikipedia.org/wiki/Bourvil"]}, "path": {"103-251, T": [[-440, 269], [-429, 263], [-439, 248], [-431, 231], [-432, 217], [-443, 208], [-457, 208], [-466, 216], [-467, 225], [-470, 231], [-466, 240], [-478, 251], [-478, 260], [-476, 264], [-469, 267], [-467, 269]]}, "center": {"103-251, T": [-449, 227]}}, +{"id": 3115, "name": "Tango dancers", "description": "Tango is a musical genre and social dance originated at the end of the 19th century in the suburbs of Buenos Aires.", "links": {"subreddit": ["PlaceArg"], "discord": ["PnW36FSJ"]}, "path": {"250-258, T": [[1132, 976], [1136, 975], [1137, 972], [1137, 971], [1139, 970], [1143, 971], [1145, 970], [1147, 972], [1146, 976], [1148, 977], [1150, 977], [1153, 977], [1154, 976], [1153, 974], [1152, 974], [1152, 972], [1152, 969], [1152, 967], [1150, 965], [1149, 963], [1149, 957], [1154, 957], [1154, 953], [1153, 953], [1152, 952], [1151, 952], [1151, 954], [1149, 954], [1148, 952], [1148, 948], [1149, 948], [1148, 947], [1146, 945], [1143, 946], [1142, 946], [1142, 948], [1140, 948], [1139, 947], [1138, 948], [1138, 949], [1138, 950], [1137, 952], [1137, 953], [1135, 954], [1134, 952], [1134, 951], [1134, 949], [1133, 949], [1131, 950], [1131, 952], [1132, 954], [1133, 955], [1135, 956], [1137, 956], [1138, 956], [1140, 955], [1137, 958], [1138, 958], [1140, 958], [1140, 960], [1138, 964], [1137, 965], [1134, 968], [1133, 971], [1130, 971], [1131, 974], [1132, 976], [1135, 976]]}, "center": {"250-258, T": [1144, 965]}}, +{"id": 3116, "name": "SimRC.de", "description": "Im Jahr 2012 bildete eine kleine Gruppe von Rennsportbegeisterten die Homepage für eine virtuelle Formel 1 Liga. 11 Jahre später besteht unsere Community aus ca. 200 Mitgliedern und bietet eine Plattform für Spiele wie F1 23, Assetto Corsa und iRacing. Hiermit bieten wir das gesamte Paket von Arcade bis High-End Simulation an. Mit mehr als 50.000 Klicks pro Tag ist unsere Community eine der aktivsten in Deutschland, welche gleichgesinnte Fahrer mit der Leidenschaft Rennsport verbindet.\n\nDu bist ebenfalls Rennsport-Begeistert und fühlst dich unter anderen PS-Verrückten erst so richtig wohl? Dann bist du bei uns genau richtig. Egal ob Profi oder Anfänger, bei uns ist für Jeden was dabei.", "links": {"website": ["https://simrc.de/"]}, "path": {"202-258, T": [[383, -1000], [406, -1000], [406, -991], [383, -992], [382, -1000], [382, -991], [406, -991], [406, -1000], [382, -1000], [382, -990], [407, -990], [407, -1000], [382, -1000]]}, "center": {"202-258, T": [387, -996]}}, +{"id": 3117, "name": "Soft sign (Ь)", "description": "Ь or Мягкий Знак is the 30th letter of the Russian alphabet", "links": {"subreddit": ["alphabetfriends"]}, "path": {"250-258, T": [[-321, 953], [-321, 957], [-320, 957], [-319, 956], [-319, 955], [-321, 955]]}, "center": {"250-258, T": [-320, 956]}}, +{"id": 3119, "name": "Mash Kyrielight", "description": "One of the main characters of a mobile game Fate/Grand Order", "links": {"subreddit": ["grandorder"]}, "path": {"237-258, T": [[-1193, 67], [-1193, 63], [-1194, 61], [-1195, 60], [-1196, 59], [-1197, 59], [-1198, 58], [-1202, 58], [-1203, 59], [-1204, 59], [-1205, 60], [-1206, 61], [-1206, 62], [-1207, 63], [-1207, 68], [-1206, 69], [-1206, 71], [-1205, 71], [-1204, 71], [-1204, 72], [-1205, 73], [-1205, 74], [-1207, 74], [-1208, 75], [-1208, 77], [-1209, 77], [-1209, 80], [-1210, 81], [-1210, 83], [-1211, 83], [-1211, 89], [-1210, 90], [-1206, 90], [-1205, 91], [-1204, 91], [-1201, 87], [-1196, 87], [-1196, 89], [-1195, 90], [-1194, 91], [-1193, 91], [-1192, 90], [-1192, 89], [-1193, 88], [-1193, 86], [-1192, 85], [-1192, 74], [-1193, 73], [-1197, 73], [-1194, 71]]}, "center": {"237-258, T": [-1200, 80]}}, {"id": 3120, "name": "Aphex Twin", "description": "Aphex Twin also known as Richard David James or AFX is an Irish-born British musician, composer and DJ. He is known for his idiosyncratic work in electronic styles such as techno, ambient, and jungle. is considered a so-called one of the most influential and important artists in contemporary electronic music. 7\\", "links": {"website": ["https://aphextwin.warp.net"], "subreddit": ["aphextwin"]}, "path": {"222": [[1460, 112], [1460, 104], [1464, 104], [1464, 92], [1444, 92], [1443, 101], [1431, 101], [1431, 107], [1439, 107], [1439, 109], [1443, 109], [1443, 112]]}, "center": {"222": [1452, 101]}}, -{"id": 3123, "name": "Ori", "description": "Ori is the titular player character in the game Ori and the Blind Forest and its sequel Ori and the Will of the Wisps, both made by Moon Studios.", "links": {"website": ["https://oriandtheblindforest.fandom.com/wiki/Ori"], "subreddit": ["OriAndTheBlindForest", "IndieAlliance"], "discord": ["orithegame", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-258": [[-754, 408], [-753, 403], [-752, 402], [-751, 401], [-750, 400], [-750, 399], [-749, 398], [-749, 399], [-745, 399], [-744, 398], [-743, 397], [-743, 396], [-742, 394], [-748, 393], [-748, 392], [-747, 390], [-746, 388], [-745, 386], [-744, 384], [-745, 383], [-747, 383], [-748, 384], [-749, 384], [-750, 385], [-751, 383], [-752, 382], [-752, 378], [-756, 377], [-756, 384], [-755, 385], [-756, 386], [-756, 387], [-757, 386], [-758, 385], [-759, 384], [-761, 383], [-762, 382], [-764, 381], [-765, 382], [-766, 383], [-765, 384], [-764, 385], [-763, 386], [-761, 387], [-761, 388], [-760, 389], [-759, 390], [-762, 390], [-763, 389], [-766, 388], [-767, 389], [-768, 392], [-767, 393], [-765, 394], [-764, 395], [-763, 396], [-764, 399], [-763, 399], [-759, 400], [-758, 401], [-758, 402], [-759, 403], [-759, 408], [-759, 409]]}, "center": {"164-258": [-755, 395]}}, -{"id": 3124, "name": "Boyfriend (Friday Night Funkin')", "description": "Friday Night Funkin' is an open-source rhythm game for Newgrounds, created by ninjamuffin99, PhantomArcade, Kawai Sprite and evilsk8r. Boyfriend is the main character of this game, who has to defeat several opponents in rap battles.\n\nThis image shows a small version of Boyfriend's head, as well as a background with 4 stripes, each matching the colours of the 4 notes of the game.", "links": {"website": ["https://www.newgrounds.com/portal/view/770371"], "subreddit": ["fridaynightfunkin"]}, "path": {"250-258": [[-582, 316], [-582, 326], [-566, 326], [-566, 316]]}, "center": {"250-258": [-574, 321]}}, -{"id": 3125, "name": "Guapoduo", "description": "Dibujo de la pareja de personajes ficticios del servidor de minecraft QSMP: q!Roier y q!Cellbit\nDrawing of the couple of fictional characters from the minecraft server QSMP: q!Roier and q!Cellbit", "links": {}, "path": {"250-258": [[624, 520], [673, 520], [673, 548], [624, 548]]}, "center": {"250-258": [649, 534]}}, -{"id": 3127, "name": "MCTRIO", "description": "Arte creado por la comunidad de ElMariana, Roier y Aldogeo, streamers que conforman el grupo MCTRIO.", "links": {"subreddit": ["Roier", "ElMariana", "Aldogeo"]}, "path": {"143-258": [[-630, 411], [-630, 446], [-570, 446], [-570, 411]]}, "center": {"143-258": [-600, 429]}}, -{"id": 3130, "name": "Angry Bird Roier 777", "description": "Un arte hecho por la comunidad del streamer Roier, se trata de un angrybird personalizado. Ademas de un 777 a referencia de Vegetta777", "links": {"subreddit": ["Roier"]}, "path": {"18-259": [[368, 362], [400, 362], [400, 413], [368, 413]]}, "center": {"18-259": [384, 388]}}, -{"id": 3131, "name": "LUCKITY ✨", "description": "The ship of Luzu an Quackity in karmaland 5(minecraft series) went from being lovers to enemies, oh, the love...", "links": {}, "path": {"250-258": [[537, 575], [537, 590], [557, 590], [557, 575]]}, "center": {"250-258": [547, 583]}}, -{"id": 3132, "name": "Flaming Moai", "description": "Flaming Moai is a secret drink from the indie game VA-11 HALL-A, named from a play on words, and a reference to the Flaming Moe drink from The Simpsons.", "links": {"website": ["https://waifubartending.com/"], "subreddit": ["waifubartending"]}, "path": {"250-258": [[-117, 945], [-117, 940], [-116, 938], [-115, 936], [-113, 935], [-112, 934], [-110, 935], [-110, 943], [-110, 946]]}, "center": {"250-258": [-113, 940]}}, -{"id": 3133, "name": "Joakim and his Tonk (Aka his Metal Machine)", "description": "A small but quaint drawing of Joakim Broden of Sabaton riding a Battlefield 1 Renault-FT, accompanied by the War Thunder logo (which sports three dots in honor of fallen comrade BMG). The three communities came together after all of them had failure in building stuff alone. The alliance would later be joined by Powerwolf, and would achieve great success for the rest of\u0001r/Place thanks to help from its many allies, including the likes of Hololive, CFC, Captain Sparklez, and a small but valiant French Flag. Though succesful in most regards, the group failed in one thing, being that of the ressurection of fallen comrade dubbed \"Killer Duck\" by the community. Through the 4 generations of killer duck, none of them would survive to see the end. RIP", "links": {"subreddit": ["Warthunder", "battlefield_one", "Sabaton"]}, "path": {"250-258": [[-617, -367], [-617, -344], [-600, -344], [-600, -352], [-604, -352], [-604, -367]]}, "center": {"250-258": [-610, -351]}}, -{"id": 3134, "name": "Gustave from r/canardcompetitif", "description": "Gustave is the mascotte and the logo of the sub r/canardcompetitif a sub created by the famous french youtubeur TheGreatReview as an example of how reddit work for a vidéo about r/place and a bit of reddit april's fools.\nThe sub is about competition duck and duck in general and even if it have less connection with TheGreatReview it still has links with it because most of people are fan of him", "links": {"website": ["https://www.youtube.com/@TheGreatReview", "https://www.twitch.tv/thegreatreview"], "subreddit": ["canardcompetitif", "thegreatreview"], "discord": ["658NaYE8JJ"]}, "path": {"119-258": [[962, -168], [962, -165], [963, -165], [963, -137], [991, -137], [991, -136], [994, -136], [994, -139], [993, -139], [993, -164], [994, -165], [994, -164], [994, -166], [994, -168], [993, -168], [993, -169], [990, -169], [990, -168], [988, -168], [988, -167], [965, -167], [965, -168]]}, "center": {"119-258": [978, -152]}}, -{"id": 3135, "name": "Koiarch", "description": "Twitch streamer, gamer and content creator.", "links": {"website": ["https://koiarch.com/"], "subreddit": ["Koiarch"], "discord": ["X6UuAThg"]}, "path": {"1-29": [[295, 9], [295, 19], [326, 19], [326, 9]], "51-75": [[330, 11], [330, 24], [296, 24], [296, 11]], "95-101": [[327, 31], [327, 25], [302, 25], [302, 31]], "102-158": [[282, 31], [282, 21], [327, 21], [327, 31]], "159-258": [[281, 31], [281, 21], [328, 21], [328, 31]]}, "center": {"1-29": [311, 14], "51-75": [313, 18], "95-101": [315, 28], "102-158": [305, 26], "159-258": [305, 26]}}, -{"id": 3136, "name": "DON'T PANIC", "description": "The words \"DON'T PANIC\", written in large friendly letters, are supposed to be written on the in-universe version of the book The Hitchhiker's Guide to the Galaxy.", "links": {"website": ["https://en.wikipedia.org/wiki/Phrases_from_The_Hitchhiker%27s_Guide_to_the_Galaxy#Don't_Panic"], "subreddit": ["douglasadams"]}, "path": {"250-258": [[-1116, -476], [-1074, -476], [-1074, -471], [-1116, -471]]}, "center": {"250-258": [-1095, -473]}}, -{"id": 3137, "name": "4 languages", "description": "Project 4 languages is an artwork representing the 4 officials languages of Switzerland (German, French, Italian and Romansh) with 4 words in each language to say \"Hello\".\n\nDesigned by WeevX5", "links": {"subreddit": ["placech"]}, "path": {"209-258": [[1395, -709], [1392, -701], [1393, -691], [1395, -685], [1400, -683], [1407, -675], [1413, -673], [1420, -673], [1426, -674], [1436, -682], [1439, -686], [1441, -691], [1441, -696], [1439, -705], [1436, -710], [1428, -717], [1422, -719], [1416, -722], [1412, -722], [1405, -716], [1396, -710]]}, "center": {"209-258": [1418, -696]}}, +{"id": 3123, "name": "Ori", "description": "Ori is the titular player character in the game Ori and the Blind Forest and its sequel Ori and the Will of the Wisps, both made by Moon Studios.", "links": {"website": ["https://oriandtheblindforest.fandom.com/wiki/Ori"], "subreddit": ["OriAndTheBlindForest", "IndieAlliance"], "discord": ["orithegame", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-258, T": [[-754, 408], [-753, 403], [-752, 402], [-751, 401], [-750, 400], [-750, 399], [-749, 398], [-749, 399], [-745, 399], [-744, 398], [-743, 397], [-743, 396], [-742, 394], [-748, 393], [-748, 392], [-747, 390], [-746, 388], [-745, 386], [-744, 384], [-745, 383], [-747, 383], [-748, 384], [-749, 384], [-750, 385], [-751, 383], [-752, 382], [-752, 378], [-756, 377], [-756, 384], [-755, 385], [-756, 386], [-756, 387], [-757, 386], [-758, 385], [-759, 384], [-761, 383], [-762, 382], [-764, 381], [-765, 382], [-766, 383], [-765, 384], [-764, 385], [-763, 386], [-761, 387], [-761, 388], [-760, 389], [-759, 390], [-762, 390], [-763, 389], [-766, 388], [-767, 389], [-768, 392], [-767, 393], [-765, 394], [-764, 395], [-763, 396], [-764, 399], [-763, 399], [-759, 400], [-758, 401], [-758, 402], [-759, 403], [-759, 408], [-759, 409]]}, "center": {"164-258, T": [-755, 395]}}, +{"id": 3124, "name": "Boyfriend (Friday Night Funkin')", "description": "Friday Night Funkin' is an open-source rhythm game for Newgrounds, created by ninjamuffin99, PhantomArcade, Kawai Sprite and evilsk8r. Boyfriend is the main character of this game, who has to defeat several opponents in rap battles.\n\nThis image shows a small version of Boyfriend's head, as well as a background with 4 stripes, each matching the colours of the 4 notes of the game.", "links": {"website": ["https://www.newgrounds.com/portal/view/770371"], "subreddit": ["fridaynightfunkin"]}, "path": {"250-258, T": [[-582, 316], [-582, 326], [-566, 326], [-566, 316]]}, "center": {"250-258, T": [-574, 321]}}, +{"id": 3125, "name": "Guapoduo", "description": "Dibujo de la pareja de personajes ficticios del servidor de minecraft QSMP: q!Roier y q!Cellbit\nDrawing of the couple of fictional characters from the minecraft server QSMP: q!Roier and q!Cellbit", "links": {}, "path": {"250-258, T": [[624, 520], [673, 520], [673, 548], [624, 548]]}, "center": {"250-258, T": [649, 534]}}, +{"id": 3127, "name": "MCTRIO", "description": "Arte creado por la comunidad de ElMariana, Roier y Aldogeo, streamers que conforman el grupo MCTRIO.", "links": {"subreddit": ["Roier", "ElMariana", "Aldogeo"]}, "path": {"143-258, T": [[-630, 411], [-630, 446], [-570, 446], [-570, 411]]}, "center": {"143-258, T": [-600, 429]}}, +{"id": 3130, "name": "Angry Bird Roier 777", "description": "Un arte hecho por la comunidad del streamer Roier, se trata de un angrybird personalizado. Ademas de un 777 a referencia de Vegetta777", "links": {"subreddit": ["Roier"]}, "path": {"18-259, T": [[368, 362], [400, 362], [400, 413], [368, 413]]}, "center": {"18-259, T": [384, 388]}}, +{"id": 3131, "name": "LUCKITY ✨", "description": "The ship of Luzu an Quackity in karmaland 5(minecraft series) went from being lovers to enemies, oh, the love...", "links": {}, "path": {"250-258, T": [[537, 575], [537, 590], [557, 590], [557, 575]]}, "center": {"250-258, T": [547, 583]}}, +{"id": 3132, "name": "Flaming Moai", "description": "Flaming Moai is a secret drink from the indie game VA-11 HALL-A, named from a play on words, and a reference to the Flaming Moe drink from The Simpsons.", "links": {"website": ["https://waifubartending.com/"], "subreddit": ["waifubartending"]}, "path": {"250-258, T": [[-117, 945], [-117, 940], [-116, 938], [-115, 936], [-113, 935], [-112, 934], [-110, 935], [-110, 943], [-110, 946]]}, "center": {"250-258, T": [-113, 940]}}, +{"id": 3133, "name": "Joakim and his Tonk (Aka his Metal Machine)", "description": "A small but quaint drawing of Joakim Broden of Sabaton riding a Battlefield 1 Renault-FT, accompanied by the War Thunder logo (which sports three dots in honor of fallen comrade BMG). The three communities came together after all of them had failure in building stuff alone. The alliance would later be joined by Powerwolf, and would achieve great success for the rest of\u0001r/Place thanks to help from its many allies, including the likes of Hololive, CFC, Captain Sparklez, and a small but valiant French Flag. Though succesful in most regards, the group failed in one thing, being that of the ressurection of fallen comrade dubbed \"Killer Duck\" by the community. Through the 4 generations of killer duck, none of them would survive to see the end. RIP", "links": {"subreddit": ["Warthunder", "battlefield_one", "Sabaton"]}, "path": {"250-258, T": [[-617, -367], [-617, -344], [-600, -344], [-600, -352], [-604, -352], [-604, -367]]}, "center": {"250-258, T": [-610, -351]}}, +{"id": 3134, "name": "Gustave from r/canardcompetitif", "description": "Gustave is the mascotte and the logo of the sub r/canardcompetitif a sub created by the famous french youtubeur TheGreatReview as an example of how reddit work for a vidéo about r/place and a bit of reddit april's fools.\nThe sub is about competition duck and duck in general and even if it have less connection with TheGreatReview it still has links with it because most of people are fan of him", "links": {"website": ["https://www.youtube.com/@TheGreatReview", "https://www.twitch.tv/thegreatreview"], "subreddit": ["canardcompetitif", "thegreatreview"], "discord": ["658NaYE8JJ"]}, "path": {"119-258, T": [[962, -168], [962, -165], [963, -165], [963, -137], [991, -137], [991, -136], [994, -136], [994, -139], [993, -139], [993, -164], [994, -165], [994, -164], [994, -166], [994, -168], [993, -168], [993, -169], [990, -169], [990, -168], [988, -168], [988, -167], [965, -167], [965, -168]]}, "center": {"119-258, T": [978, -152]}}, +{"id": 3135, "name": "Koiarch", "description": "Twitch streamer, gamer and content creator.", "links": {"website": ["https://koiarch.com/"], "subreddit": ["Koiarch"], "discord": ["X6UuAThg"]}, "path": {"1-29": [[295, 9], [295, 19], [326, 19], [326, 9]], "51-75": [[330, 11], [330, 24], [296, 24], [296, 11]], "95-101": [[327, 31], [327, 25], [302, 25], [302, 31]], "102-158": [[282, 31], [282, 21], [327, 21], [327, 31]], "159-258, T": [[281, 31], [281, 21], [328, 21], [328, 31]]}, "center": {"1-29": [311, 14], "51-75": [313, 18], "95-101": [315, 28], "102-158": [305, 26], "159-258, T": [305, 26]}}, +{"id": 3136, "name": "DON'T PANIC", "description": "The words \"DON'T PANIC\", written in large friendly letters, are supposed to be written on the in-universe version of the book The Hitchhiker's Guide to the Galaxy.", "links": {"website": ["https://en.wikipedia.org/wiki/Phrases_from_The_Hitchhiker%27s_Guide_to_the_Galaxy#Don't_Panic"], "subreddit": ["douglasadams"]}, "path": {"250-258, T": [[-1116, -476], [-1074, -476], [-1074, -471], [-1116, -471]]}, "center": {"250-258, T": [-1095, -473]}}, +{"id": 3137, "name": "4 languages", "description": "Project 4 languages is an artwork representing the 4 officials languages of Switzerland (German, French, Italian and Romansh) with 4 words in each language to say \"Hello\".\n\nDesigned by WeevX5", "links": {"subreddit": ["placech"]}, "path": {"209-258, T": [[1395, -709], [1392, -701], [1393, -691], [1395, -685], [1400, -683], [1407, -675], [1413, -673], [1420, -673], [1426, -674], [1436, -682], [1439, -686], [1441, -691], [1441, -696], [1439, -705], [1436, -710], [1428, -717], [1422, -719], [1416, -722], [1412, -722], [1405, -716], [1396, -710]]}, "center": {"209-258, T": [1418, -696]}}, {"id": 3138, "name": "Llanero Pun Pun", "description": "A Pun Pun that was drawn by the Oyasumi Pun Pun community and later adopted by Venezuela, who drew a strawhat, characteristic of the farmers of the east of Venezuela, better known as Llaneros", "links": {"subreddit": ["OyasumiPunPun", "vzla"]}, "path": {"252-258": [[-932, 293], [-932, 320], [-914, 320], [-914, 293]]}, "center": {"252-258": [-923, 307]}}, -{"id": 3139, "name": "The Swarm/One Piece Alliance Cat (Pusheen)", "description": "For the first time in the history of The Void, The Swarm made an alliance with One Piece. The Void Cat (A.K.A. Pusheen) was the mascot of this alliance, and stood until the end of r/place 2023", "links": {"subreddit": ["PusheenPlace"]}, "path": {"186-258": [[-280, 970], [-257, 950], [-254, 954], [-248, 949], [-227, 970]]}, "center": {"186-258": [-249, 961]}}, -{"id": 3140, "name": "Polish Cow", "description": "(Dancing) Polish Cow is 3D animated cow who dances to the song \"Gdzie jest biały węgorz\" by the Polish Artist Cypis Solo.\nCypis Solo is aware of this meme and even uploaded a remix of his song with the dancing cow video.", "links": {"website": ["https://www.youtube.com/watch?v=peznO5c3HNI"]}, "path": {"250-258": [[777, -98], [781, -99], [779, -102], [779, -106], [774, -106], [770, -106], [767, -102], [762, -101], [759, -97], [758, -93], [759, -81], [762, -86], [765, -87], [766, -81], [770, -88], [773, -91], [779, -86], [780, -87], [776, -91], [776, -98]]}, "center": {"250-258": [766, -94]}}, -{"id": 3141, "name": "Will You Snail - French", "description": "Shelly and Squid from the indie game Will You Snail above the letters representing the game in the french colors. Done in collaboration with the loona it is placed on.", "links": {"subreddit": ["willyousnail", "placeloona"]}, "path": {"157-258": [[-425, 899], [-411, 899], [-411, 925], [-425, 925]]}, "center": {"157-258": [-418, 912]}}, -{"id": 3142, "name": "Cozy Glow's Cutie Mark", "description": "A secondary rook established by the Cozy Glow Faction, in the seemingly inevitable destruction of their original. However, despite attempts to remove it, the original stood firm in its position, and this secondary rook was never needed", "links": {}, "path": {"250-258": [[716, 840], [722, 840], [722, 843], [721, 844], [721, 846], [722, 847], [723, 848], [723, 849], [723, 850], [715, 850], [715, 847], [716, 847], [717, 846], [717, 844], [716, 844]]}, "center": {"250-258": [719, 848]}}, +{"id": 3139, "name": "The Swarm/One Piece Alliance Cat (Pusheen)", "description": "For the first time in the history of The Void, The Swarm made an alliance with One Piece. The Void Cat (A.K.A. Pusheen) was the mascot of this alliance, and stood until the end of r/place 2023", "links": {"subreddit": ["PusheenPlace"]}, "path": {"186-258, T": [[-280, 970], [-257, 950], [-254, 954], [-248, 949], [-227, 970]]}, "center": {"186-258, T": [-249, 961]}}, +{"id": 3140, "name": "Polish Cow", "description": "(Dancing) Polish Cow is 3D animated cow who dances to the song \"Gdzie jest biały węgorz\" by the Polish Artist Cypis Solo.\nCypis Solo is aware of this meme and even uploaded a remix of his song with the dancing cow video.", "links": {"website": ["https://www.youtube.com/watch?v=peznO5c3HNI"]}, "path": {"250-258, T": [[777, -98], [781, -99], [779, -102], [779, -106], [774, -106], [770, -106], [767, -102], [762, -101], [759, -97], [758, -93], [759, -81], [762, -86], [765, -87], [766, -81], [770, -88], [773, -91], [779, -86], [780, -87], [776, -91], [776, -98]]}, "center": {"250-258, T": [766, -94]}}, +{"id": 3141, "name": "Will You Snail - French", "description": "Shelly and Squid from the indie game Will You Snail above the letters representing the game in the french colors. Done in collaboration with the loona it is placed on.", "links": {"subreddit": ["willyousnail", "placeloona"]}, "path": {"157-258, T": [[-425, 899], [-411, 899], [-411, 925], [-425, 925]]}, "center": {"157-258, T": [-418, 912]}}, +{"id": 3142, "name": "Cozy Glow's Cutie Mark", "description": "A secondary rook established by the Cozy Glow Faction, in the seemingly inevitable destruction of their original. However, despite attempts to remove it, the original stood firm in its position, and this secondary rook was never needed", "links": {}, "path": {"250-258, T": [[716, 840], [722, 840], [722, 843], [721, 844], [721, 846], [722, 847], [723, 848], [723, 849], [723, 850], [715, 850], [715, 847], [716, 847], [717, 846], [717, 844], [716, 844]]}, "center": {"250-258, T": [719, 848]}}, {"id": 3143, "name": "Gitanas Nausėda", "description": "Gitanas Nausėda (born 19 May 1964) is a Lithuanian politician, economist and banker who is serving as the ninth and current president of Lithuania since 2019.", "links": {}, "path": {"248": [[-142, -26], [-142, 84], [-218, 86], [-218, -27]]}, "center": {"248": [-180, 30]}}, -{"id": 3144, "name": "Studio AFK", "description": "Studio AFK is a studio run by Merel van den Broek and Nicole Derksen, two Dutch animators. Creating high quality animations gaining over 30 million views on youtube.", "links": {"website": ["https://studioafk.com/"]}, "path": {"230-258": [[-1017, -475], [-1010, -475], [-1007, -473], [-1004, -469], [-1004, -462], [-1006, -459], [-1010, -456], [-1017, -456], [-1021, -459], [-1021, -462], [-1023, -464], [-1023, -469], [-1020, -473]]}, "center": {"230-258": [-1013, -466]}}, -{"id": 3145, "name": "ToastieLabs", "description": "A small, independent game development studio. Proud of their flagship game, Coloring Pixels", "links": {"website": ["https://www.toastielabs.co.uk"], "subreddit": ["ToastieLabs"], "discord": ["wwXVWvA"]}, "path": {"168-258": [[464, 537], [485, 537], [485, 544], [484, 546], [464, 546], [464, 542], [464, 539]]}, "center": {"168-258": [475, 542]}}, -{"id": 3146, "name": "Captain Marvel Emblem", "description": "Captain Marvel emblem made by MarvelPlace", "links": {"subreddit": ["Marvel_Place"], "discord": ["wpAs32st"]}, "path": {"250-258": [[-1170, -321], [-1164, -317], [-1164, -319], [-1160, -317], [-1159, -324], [-1170, -324], [-1170, -321], [-1164, -317]]}, "center": {"250-258": [-1166, -321]}}, -{"id": 3147, "name": "Nexxuz HD logo", "description": "Nexxuz HD is the main channel from the spanish youtuber and streamer Nexxuz or also called jefecito, but this channel is inactive, now he make videos on his second channel call Nexxuz World. Nexxuz is member of a big group called Arkeanos and have a big dick. ''Siempre con el Jefecito''", "links": {"website": ["https://www.youtube.com/@NexxuzHD", "https://www.youtube.com/@NexxuzWorld"]}, "path": {"171-258": [[-551, 591], [-524, 591], [-525, 613], [-549, 614]]}, "center": {"171-258": [-538, 602]}}, -{"id": 3148, "name": "Angel Falls", "description": "Angel Falls (Spanish: Salto Ángel; Pemon language: Kerepakupai Merú meaning \"waterfall of the deepest place\", or Parakupá Vená, meaning \"the fall from the highest point\") is a waterfall in Venezuela. It is the world's tallest uninterrupted waterfall, with a height of 979 metres (3,212 ft) and a plunge of 807 m (2,648 ft).", "links": {"website": ["https://en.wikipedia.org/wiki/Angel_Falls"], "subreddit": ["vzla", "placevenezuela"]}, "path": {"156-258": [[-830, 320], [-836, 314], [-843, 296], [-855, 296], [-854, 316], [-850, 320]]}, "center": {"156-258": [-846, 311]}}, -{"id": 3149, "name": "VA-11 HALL-A: Cyberpunk Bartender Action", "description": "VA-11 HALL-A: Cyberpunk Bartender Action is an indie bartender simulation game (\"booze em' up\") about waifus, technology, and post-dystopia life. It was developed by Sukeban Games", "links": {"website": ["https://waifubartending.com/"], "subreddit": ["waifubartending"]}, "path": {"250-258": [[-109, 953], [-61, 953], [-61, 961], [-109, 961]]}, "center": {"250-258": [-85, 957]}}, +{"id": 3144, "name": "Studio AFK", "description": "Studio AFK is a studio run by Merel van den Broek and Nicole Derksen, two Dutch animators. Creating high quality animations gaining over 30 million views on youtube.", "links": {"website": ["https://studioafk.com/"]}, "path": {"230-258, T": [[-1017, -475], [-1010, -475], [-1007, -473], [-1004, -469], [-1004, -462], [-1006, -459], [-1010, -456], [-1017, -456], [-1021, -459], [-1021, -462], [-1023, -464], [-1023, -469], [-1020, -473]]}, "center": {"230-258, T": [-1013, -466]}}, +{"id": 3145, "name": "ToastieLabs", "description": "A small, independent game development studio. Proud of their flagship game, Coloring Pixels", "links": {"website": ["https://www.toastielabs.co.uk"], "subreddit": ["ToastieLabs"], "discord": ["wwXVWvA"]}, "path": {"168-258, T": [[464, 537], [485, 537], [485, 544], [484, 546], [464, 546], [464, 542], [464, 539]]}, "center": {"168-258, T": [475, 542]}}, +{"id": 3146, "name": "Captain Marvel Emblem", "description": "Captain Marvel emblem made by MarvelPlace", "links": {"subreddit": ["Marvel_Place"], "discord": ["wpAs32st"]}, "path": {"250-258, T": [[-1170, -321], [-1164, -317], [-1164, -319], [-1160, -317], [-1159, -324], [-1170, -324], [-1170, -321], [-1164, -317]]}, "center": {"250-258, T": [-1166, -321]}}, +{"id": 3147, "name": "Nexxuz HD logo", "description": "Nexxuz HD is the main channel from the spanish youtuber and streamer Nexxuz or also called jefecito, but this channel is inactive, now he make videos on his second channel call Nexxuz World. Nexxuz is member of a big group called Arkeanos and have a big dick. ''Siempre con el Jefecito''", "links": {"website": ["https://www.youtube.com/@NexxuzHD", "https://www.youtube.com/@NexxuzWorld"]}, "path": {"171-258, T": [[-551, 591], [-524, 591], [-525, 613], [-549, 614]]}, "center": {"171-258, T": [-538, 602]}}, +{"id": 3148, "name": "Angel Falls", "description": "Angel Falls (Spanish: Salto Ángel; Pemon language: Kerepakupai Merú meaning \"waterfall of the deepest place\", or Parakupá Vená, meaning \"the fall from the highest point\") is a waterfall in Venezuela. It is the world's tallest uninterrupted waterfall, with a height of 979 metres (3,212 ft) and a plunge of 807 m (2,648 ft).", "links": {"website": ["https://en.wikipedia.org/wiki/Angel_Falls"], "subreddit": ["vzla", "placevenezuela"]}, "path": {"156-258, T": [[-830, 320], [-836, 314], [-843, 296], [-855, 296], [-854, 316], [-850, 320]]}, "center": {"156-258, T": [-846, 311]}}, +{"id": 3149, "name": "VA-11 HALL-A: Cyberpunk Bartender Action", "description": "VA-11 HALL-A: Cyberpunk Bartender Action is an indie bartender simulation game (\"booze em' up\") about waifus, technology, and post-dystopia life. It was developed by Sukeban Games", "links": {"website": ["https://waifubartending.com/"], "subreddit": ["waifubartending"]}, "path": {"250-258, T": [[-109, 953], [-61, 953], [-61, 961], [-109, 961]]}, "center": {"250-258, T": [-85, 957]}}, {"id": 3150, "name": "6exy Mid", "description": "3 Kilroys defending it against an country, against all odds, it was moment of beauty.\nAll of it might not feel like worth fighting for, but deep down in our hearts, we know 6 Mid means something to us.\n\nPeace,\nKrab", "links": {"subreddit": ["6mid"], "discord": ["e2vvtxDH"]}, "path": {"207": [[1346, 814], [1366, 814], [1366, 825], [1346, 825], [1346, 815]]}, "center": {"207": [1356, 820]}}, -{"id": 3151, "name": "1989", "description": "1989 is the fifth studio album by American singer-songwriter Taylor Swift, released on October 27, 2014", "links": {"subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"106-258": [[-15, 88], [0, 88], [0, 96], [-15, 96]]}, "center": {"106-258": [-7, 92]}}, -{"id": 3152, "name": "Spontaneous Crosses", "description": "Spontaneous cross next to the big Rubius demon, that waxed and waned (and burnt and got inverted!) but made it through to the final greyscaling.", "links": {"subreddit": ["placeCrossForJesus", "christianityplace"]}, "path": {"92-143": [[646, 86], [647, 28], [704, 26], [705, 90], [646, 90]], "147-258": [[664, 129], [665, 83], [718, 89], [710, 110], [714, 132], [691, 136]]}, "center": {"92-143": [676, 58], "147-258": [687, 110]}}, -{"id": 3153, "name": "Shadow Kirby", "description": "Shadow Kirby (also referred to as Mirror-world Kirby) is a naughty dark mirror image of Kirby who first appeared in Kirby & The Amazing Mirror. Shadow Kirby is the guardian of the Mirror World, and in Kirby & The Amazing Mirror is initially taken to be an enemy. He appears in various places where he will either help or attack Kirby based on the latter's actions, and tosses the pink hero the Master sword during the final battle with Dark Mind if he does not already have it.", "links": {"website": ["https://wikirby.com/wiki/Shadow_Kirby"], "subreddit": ["Kirby"]}, "path": {"250-258": [[-1397, 432], [-1396, 432], [-1396, 431], [-1395, 430], [-1395, 429], [-1396, 428], [-1397, 427], [-1397, 426], [-1398, 426], [-1399, 426], [-1400, 426], [-1401, 427], [-1401, 428], [-1402, 429], [-1402, 430], [-1401, 431], [-1401, 432], [-1400, 432], [-1399, 432]]}, "center": {"250-258": [-1399, 429]}}, +{"id": 3151, "name": "1989", "description": "1989 is the fifth studio album by American singer-songwriter Taylor Swift, released on October 27, 2014", "links": {"subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"106-258, T": [[-15, 88], [0, 88], [0, 96], [-15, 96]]}, "center": {"106-258, T": [-7, 92]}}, +{"id": 3152, "name": "Spontaneous Crosses", "description": "Spontaneous cross next to the big Rubius demon, that waxed and waned (and burnt and got inverted!) but made it through to the final greyscaling.", "links": {"subreddit": ["placeCrossForJesus", "christianityplace"]}, "path": {"92-143": [[646, 86], [647, 28], [704, 26], [705, 90], [646, 90]], "147-258, T": [[664, 129], [665, 83], [718, 89], [710, 110], [714, 132], [691, 136]]}, "center": {"92-143": [676, 58], "147-258, T": [687, 110]}}, +{"id": 3153, "name": "Shadow Kirby", "description": "Shadow Kirby (also referred to as Mirror-world Kirby) is a naughty dark mirror image of Kirby who first appeared in Kirby & The Amazing Mirror. Shadow Kirby is the guardian of the Mirror World, and in Kirby & The Amazing Mirror is initially taken to be an enemy. He appears in various places where he will either help or attack Kirby based on the latter's actions, and tosses the pink hero the Master sword during the final battle with Dark Mind if he does not already have it.", "links": {"website": ["https://wikirby.com/wiki/Shadow_Kirby"], "subreddit": ["Kirby"]}, "path": {"250-258, T": [[-1397, 432], [-1396, 432], [-1396, 431], [-1395, 430], [-1395, 429], [-1396, 428], [-1397, 427], [-1397, 426], [-1398, 426], [-1399, 426], [-1400, 426], [-1401, 427], [-1401, 428], [-1402, 429], [-1402, 430], [-1401, 431], [-1401, 432], [-1400, 432], [-1399, 432]]}, "center": {"250-258, T": [-1399, 429]}}, {"id": 3154, "name": "F society", "description": "F Society is the name of the hacker group of the T.V show Mr. Robot", "links": {"subreddit": ["MrRobot"]}, "path": {"173-226": [[-660, 697], [-614, 697], [-608, 693], [-599, 692], [-597, 679], [-620, 679], [-626, 682], [-635, 682], [-639, 680], [-659, 680]]}, "center": {"173-226": [-619, 688]}}, -{"id": 3155, "name": "Bad Touch (VA-11 HALL-A)", "description": "A drink from the video game VA-11 HALL-A, named after the song by the Bloodhound Gang. Placed here as an emblem for the Operation Bad Touch group, who coordinated the creation of the VA-11 HALL-A art on the canvas.", "links": {"subreddit": ["waifubartending"]}, "path": {"250-258": [[-73, 944], [-69, 944], [-69, 952], [-73, 952]]}, "center": {"250-258": [-71, 948]}}, +{"id": 3155, "name": "Bad Touch (VA-11 HALL-A)", "description": "A drink from the video game VA-11 HALL-A, named after the song by the Bloodhound Gang. Placed here as an emblem for the Operation Bad Touch group, who coordinated the creation of the VA-11 HALL-A art on the canvas.", "links": {"subreddit": ["waifubartending"]}, "path": {"250-258, T": [[-73, 944], [-69, 944], [-69, 952], [-73, 952]]}, "center": {"250-258, T": [-71, 948]}}, {"id": 3156, "name": "La familia Brown", "description": "Leonarda y sus padres, Foolish y Vegetta", "links": {}, "path": {"252-258": [[-1293, 640], [-1293, 679], [-1269, 679], [-1273, 639], [-1293, 639]]}, "center": {"252-258": [-1282, 667]}}, -{"id": 3157, "name": "Chicago Bears Logo", "description": "Logo of Chicago Bears football Team FTP.", "links": {"subreddit": ["CHIBears"]}, "path": {"250-258": [[1392, 518], [1406, 518], [1392, 534], [1391, 534], [1391, 517], [1406, 517], [1406, 526], [1396, 530]]}, "center": {"250-258": [1403, 525]}}, +{"id": 3157, "name": "Chicago Bears Logo", "description": "Logo of Chicago Bears football Team FTP.", "links": {"subreddit": ["CHIBears"]}, "path": {"250-258, T": [[1392, 518], [1406, 518], [1392, 534], [1391, 534], [1391, 517], [1406, 517], [1406, 526], [1396, 530]]}, "center": {"250-258, T": [1403, 525]}}, {"id": 3158, "name": "Fuck Spez!", "description": "u/spez, real name Steve Huffman, is the CEO of Reddit. This \"Fuck Spez\" message was written in protest of the recent pricing changes to the Reddit API that have killed off many third-party Reddit apps, along with Spez's controversial responses to user outcry.\n\nThe phrase \"Fuck Spez\" appearing prominently at the end of the r/place edition, just minutes before the canvas was terminated, represents a last-minute, collaborative effort by multiple communities.\n\nDespite the haste in its preparation, the phrase's appearance on the canvas attests to the power of collective action within the r/place event. Different communities came together in a swift and coordinated effort to make a statement - a testament to the bonds formed and the spirit of unity shared amongst Reddit users during this unique digital event.", "links": {}, "path": {"256-258": [[-1188, 897], [1399, 897], [1351, -910], [-1079, -913], [-1085, 21], [-1238, 193], [-1230, 582]]}, "center": {"256-258": [-107, -7]}}, -{"id": 3159, "name": "Kasane Teto", "description": "Kasane Teto (重音テト (かさねてと)) is a voicebank for the UTAU program, which is a Japanese singing voice synthesizer program similar to VOCALOID.", "links": {"website": ["https://utau.fandom.com/wiki/Teto_Kasane"], "subreddit": ["utau"]}, "path": {"250-258": [[-339, 567], [-334, 567], [-334, 573], [-340, 573]]}, "center": {"250-258": [-337, 570]}}, -{"id": 3160, "name": "New York University", "description": "A private, T25 research university based in NYC.", "links": {"website": ["https://www.nyu.edu"], "subreddit": ["nyu"], "discord": ["Nuj4m3rv"]}, "path": {"250-258": [[1209, 373], [1227, 373], [1227, 400], [1209, 400]]}, "center": {"250-258": [1218, 387]}}, +{"id": 3159, "name": "Kasane Teto", "description": "Kasane Teto (重音テト (かさねてと)) is a voicebank for the UTAU program, which is a Japanese singing voice synthesizer program similar to VOCALOID.", "links": {"website": ["https://utau.fandom.com/wiki/Teto_Kasane"], "subreddit": ["utau"]}, "path": {"250-258, T": [[-339, 567], [-334, 567], [-334, 573], [-340, 573]]}, "center": {"250-258, T": [-337, 570]}}, +{"id": 3160, "name": "New York University", "description": "A private, T25 research university based in NYC.", "links": {"website": ["https://www.nyu.edu"], "subreddit": ["nyu"], "discord": ["Nuj4m3rv"]}, "path": {"250-258, T": [[1209, 373], [1227, 373], [1227, 400], [1209, 400]]}, "center": {"250-258, T": [1218, 387]}}, {"id": 3162, "name": "Sabaton, War Thunder, Tonk, Powerwolf, Battlefield 1 community", "description": "Joakim Broden (Lead singer of Sabaton) on a Tank. Logos of Battlefield, War Thunder and Powerwolf near it.", "links": {"subreddit": ["sabaton"], "discord": ["QRYTTR2hY", "H2rHpXvxR3"]}, "path": {"158": [[-618, -368], [-618, -343], [-595, -343], [-595, -368], [-617, -368]]}, "center": {"158": [-606, -355]}}, -{"id": 3163, "name": "MissaSinfonia", "description": "Missa is a Mexican content creator with 17 million subscribers on his main Youtube channel and 3 million on Twitch.", "links": {"website": ["https://www.youtube.com/@MissaSinfonia"]}, "path": {"250-258": [[634, -37], [647, -37], [647, -24], [647, -23], [634, -23]]}, "center": {"250-258": [641, -30]}}, -{"id": 3164, "name": "Dave & Bambi Characters", "description": "Various characters from the Friday Night Funkin' mod Vs. Dave & Bambi. On the top left is Bandu from the fan mod Vs. Dave & Bambi: Golden Apple. Right of Bandu is Expunged from the original mod. On the bottom left is Bambi. Next to him is Dave, and next to Dave is Tristan. The person on the bottom right is Exbungo. They are all standing in Dave's backyard from the mod.", "links": {"website": ["https://fridaynightfunking.fandom.com/wiki/Vs._Dave_and_Bambi"], "subreddit": ["daveandbambi"]}, "path": {"250-258": [[1405, 314], [1407, 314], [1405, 313], [1423, 313], [1425, 316], [1427, 319], [1428, 320], [1429, 321], [1430, 322], [1431, 323], [1440, 323], [1440, 331], [1412, 331], [1412, 325], [1411, 324], [1410, 323], [1403, 323], [1404, 322], [1405, 321], [1405, 313]]}, "center": {"250-258": [1420, 322]}}, -{"id": 3165, "name": "Sombrero Vueltiao", "description": "A sombrero vueltiao is a traditional hat made of a type of cane native to the Caribbean region of Colombia. It has come to represent to be an important part of Colombian culture representing Colombians as a whole to the world at learge.", "links": {"website": ["https://en.wikipedia.org/wiki/Sombrero_vueltiao"], "subreddit": ["colombia"]}, "path": {"189-258": [[-1020, 889], [-1026, 887], [-1026, 884], [-1022, 880], [-1019, 880], [-1018, 881], [-1017, 881], [-1017, 877], [-1016, 876], [-1012, 876], [-1012, 875], [-1005, 875], [-1004, 880], [-999, 880], [-995, 885], [-996, 886], [-997, 887], [-1002, 887], [-1006, 886], [-1012, 885], [-1014, 886], [-1014, 887], [-1019, 888], [-1019, 889]]}, "center": {"189-258": [-1009, 880]}}, -{"id": 3166, "name": "Kenny (Children: Rekindled)", "description": "A depiction of Kenny, an AU version of Five Nights at Freddy's Bite Victim from the fan webcomic Children: Rekindled. Specifically his ghost self, with a bandaged head and a glowing pupil underneath. \n\nBeing maintained by no more than 4 people at a time, he was originally located a bit to the left, but the Sonic mural forced him to move away. After a truce with an Among Us building team, Kenny managed to survive all the way to the end and even began to be colored grey until finally being consumed by the \"S\" in the finale.", "links": {"website": ["https://www.children-rekindled.top/"], "subreddit": ["Childrenfnaf"], "discord": ["SzhQEVf"]}, "path": {"250-258": [[-1104, 397], [-1104, 396], [-1103, 396], [-1103, 395], [-1102, 395], [-1103, 394], [-1103, 390], [-1102, 390], [-1102, 389], [-1095, 389], [-1095, 390], [-1096, 391], [-1095, 392], [-1095, 393], [-1096, 394], [-1097, 395], [-1096, 396], [-1096, 398], [-1104, 398]]}, "center": {"250-258": [-1099, 393]}}, -{"id": 3167, "name": "Magrathean sperm Whale", "description": "In The Hitchhiker's Guide to the Galaxy, a sperm whale is improbably summoned many kilometers above the planet Magrathea, accompanied by a bowl of petunias. It subsequently falls to its death.", "links": {"website": ["https://hitchhikers.fandom.com/wiki/Magrathean_sperm_whale"], "subreddit": ["douglasadams"]}, "path": {"250-258": [[-1085, -486], [-1076, -486], [-1076, -487], [-1073, -487], [-1073, -486], [-1066, -486], [-1066, -487], [-1063, -487], [-1063, -485], [-1064, -485], [-1064, -484], [-1064, -483], [-1063, -483], [-1063, -481], [-1068, -481], [-1068, -480], [-1069, -480], [-1069, -479], [-1073, -479], [-1073, -478], [-1076, -478], [-1076, -479], [-1085, -479], [-1085, -480], [-1086, -480], [-1086, -485], [-1085, -485]]}, "center": {"250-258": [-1074, -482]}}, -{"id": 3168, "name": "Tribute to handicaped/disabled person from France", "description": "A bit of French community draw a tribute for all handicaped/disabled person", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"214-253": [[999, -179], [999, -130], [1036, -131], [1035, -178]]}, "center": {"214-253": [1017, -154]}}, -{"id": 3169, "name": "Logo of KaidenHD", "description": "Swiss streamer KaidenHD has been very supportive of the r/placeCH community, so they decided to put his logo on the flag. He led the negotiations with France for support and co-ordination and guided the French-speaking part of Switzerland.", "links": {"website": ["https://twitch.tv/kaidenhd"], "subreddit": ["placech"], "discord": ["hfWQRHT"]}, "path": {"170-258": [[-503, 934], [-504, 935], [-503, 934], [-503, 933], [-503, 932], [-503, 931], [-503, 930], [-504, 929], [-504, 928], [-505, 927], [-505, 926], [-506, 925], [-506, 924], [-506, 923], [-505, 922], [-504, 921], [-503, 920], [-503, 919], [-503, 918], [-504, 917], [-506, 915], [-507, 916], [-507, 918], [-508, 919], [-509, 919], [-510, 920], [-512, 920], [-513, 921], [-515, 921], [-518, 918], [-521, 921], [-523, 921], [-524, 920], [-526, 920], [-527, 919], [-528, 919], [-530, 917], [-529, 916], [-530, 915], [-531, 916], [-533, 918], [-533, 920], [-530, 923], [-530, 924], [-530, 926], [-531, 927], [-532, 928], [-532, 929], [-533, 930], [-533, 934], [-532, 935], [-532, 936], [-531, 937], [-531, 938], [-530, 939], [-529, 940], [-528, 941], [-527, 941], [-526, 942], [-525, 943], [-523, 943], [-522, 944], [-520, 944], [-519, 945], [-517, 945], [-516, 944], [-514, 943], [-511, 943], [-508, 940], [-506, 938], [-504, 936], [-503, 935]]}, "center": {"170-258": [-518, 932]}}, +{"id": 3163, "name": "MissaSinfonia", "description": "Missa is a Mexican content creator with 17 million subscribers on his main Youtube channel and 3 million on Twitch.", "links": {"website": ["https://www.youtube.com/@MissaSinfonia"]}, "path": {"250-258, T": [[634, -37], [647, -37], [647, -24], [647, -23], [634, -23]]}, "center": {"250-258, T": [641, -30]}}, +{"id": 3164, "name": "Dave & Bambi Characters", "description": "Various characters from the Friday Night Funkin' mod Vs. Dave & Bambi. On the top left is Bandu from the fan mod Vs. Dave & Bambi: Golden Apple. Right of Bandu is Expunged from the original mod. On the bottom left is Bambi. Next to him is Dave, and next to Dave is Tristan. The person on the bottom right is Exbungo. They are all standing in Dave's backyard from the mod.", "links": {"website": ["https://fridaynightfunking.fandom.com/wiki/Vs._Dave_and_Bambi"], "subreddit": ["daveandbambi"]}, "path": {"250-258, T": [[1405, 314], [1407, 314], [1405, 313], [1423, 313], [1425, 316], [1427, 319], [1428, 320], [1429, 321], [1430, 322], [1431, 323], [1440, 323], [1440, 331], [1412, 331], [1412, 325], [1411, 324], [1410, 323], [1403, 323], [1404, 322], [1405, 321], [1405, 313]]}, "center": {"250-258, T": [1420, 322]}}, +{"id": 3165, "name": "Sombrero Vueltiao", "description": "A sombrero vueltiao is a traditional hat made of a type of cane native to the Caribbean region of Colombia. It has come to represent to be an important part of Colombian culture representing Colombians as a whole to the world at learge.", "links": {"website": ["https://en.wikipedia.org/wiki/Sombrero_vueltiao"], "subreddit": ["colombia"]}, "path": {"189-258, T": [[-1020, 889], [-1026, 887], [-1026, 884], [-1022, 880], [-1019, 880], [-1018, 881], [-1017, 881], [-1017, 877], [-1016, 876], [-1012, 876], [-1012, 875], [-1005, 875], [-1004, 880], [-999, 880], [-995, 885], [-996, 886], [-997, 887], [-1002, 887], [-1006, 886], [-1012, 885], [-1014, 886], [-1014, 887], [-1019, 888], [-1019, 889]]}, "center": {"189-258, T": [-1009, 880]}}, +{"id": 3166, "name": "Kenny (Children: Rekindled)", "description": "A depiction of Kenny, an AU version of Five Nights at Freddy's Bite Victim from the fan webcomic Children: Rekindled. Specifically his ghost self, with a bandaged head and a glowing pupil underneath. \n\nBeing maintained by no more than 4 people at a time, he was originally located a bit to the left, but the Sonic mural forced him to move away. After a truce with an Among Us building team, Kenny managed to survive all the way to the end and even began to be colored grey until finally being consumed by the \"S\" in the finale.", "links": {"website": ["https://www.children-rekindled.top/"], "subreddit": ["Childrenfnaf"], "discord": ["SzhQEVf"]}, "path": {"250-258, T": [[-1104, 397], [-1104, 396], [-1103, 396], [-1103, 395], [-1102, 395], [-1103, 394], [-1103, 390], [-1102, 390], [-1102, 389], [-1095, 389], [-1095, 390], [-1096, 391], [-1095, 392], [-1095, 393], [-1096, 394], [-1097, 395], [-1096, 396], [-1096, 398], [-1104, 398]]}, "center": {"250-258, T": [-1099, 393]}}, +{"id": 3167, "name": "Magrathean sperm Whale", "description": "In The Hitchhiker's Guide to the Galaxy, a sperm whale is improbably summoned many kilometers above the planet Magrathea, accompanied by a bowl of petunias. It subsequently falls to its death.", "links": {"website": ["https://hitchhikers.fandom.com/wiki/Magrathean_sperm_whale"], "subreddit": ["douglasadams"]}, "path": {"250-258, T": [[-1085, -486], [-1076, -486], [-1076, -487], [-1073, -487], [-1073, -486], [-1066, -486], [-1066, -487], [-1063, -487], [-1063, -485], [-1064, -485], [-1064, -484], [-1064, -483], [-1063, -483], [-1063, -481], [-1068, -481], [-1068, -480], [-1069, -480], [-1069, -479], [-1073, -479], [-1073, -478], [-1076, -478], [-1076, -479], [-1085, -479], [-1085, -480], [-1086, -480], [-1086, -485], [-1085, -485]]}, "center": {"250-258, T": [-1074, -482]}}, +{"id": 3168, "name": "Tribute to handicaped/disabled person from France", "description": "A bit of French community draw a tribute for all handicaped/disabled person", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"214-253, T": [[999, -179], [999, -130], [1036, -131], [1035, -178]]}, "center": {"214-253, T": [1017, -154]}}, +{"id": 3169, "name": "Logo of KaidenHD", "description": "Swiss streamer KaidenHD has been very supportive of the r/placeCH community, so they decided to put his logo on the flag. He led the negotiations with France for support and co-ordination and guided the French-speaking part of Switzerland.", "links": {"website": ["https://twitch.tv/kaidenhd"], "subreddit": ["placech"], "discord": ["hfWQRHT"]}, "path": {"170-258, T": [[-503, 934], [-504, 935], [-503, 934], [-503, 933], [-503, 932], [-503, 931], [-503, 930], [-504, 929], [-504, 928], [-505, 927], [-505, 926], [-506, 925], [-506, 924], [-506, 923], [-505, 922], [-504, 921], [-503, 920], [-503, 919], [-503, 918], [-504, 917], [-506, 915], [-507, 916], [-507, 918], [-508, 919], [-509, 919], [-510, 920], [-512, 920], [-513, 921], [-515, 921], [-518, 918], [-521, 921], [-523, 921], [-524, 920], [-526, 920], [-527, 919], [-528, 919], [-530, 917], [-529, 916], [-530, 915], [-531, 916], [-533, 918], [-533, 920], [-530, 923], [-530, 924], [-530, 926], [-531, 927], [-532, 928], [-532, 929], [-533, 930], [-533, 934], [-532, 935], [-532, 936], [-531, 937], [-531, 938], [-530, 939], [-529, 940], [-528, 941], [-527, 941], [-526, 942], [-525, 943], [-523, 943], [-522, 944], [-520, 944], [-519, 945], [-517, 945], [-516, 944], [-514, 943], [-511, 943], [-508, 940], [-506, 938], [-504, 936], [-503, 935]]}, "center": {"170-258, T": [-518, 932]}}, {"id": 3170, "name": "Corridor Digital", "description": "A VFX Studio based in Los Angeles", "links": {"website": ["https://www.youtube.com/@Corridor", "https://www.corridordigital.com"]}, "path": {"170": [[196, 3], [201, 3], [209, 12], [209, 16], [210, 16], [222, 4], [222, 2], [210, -10], [208, -10], [196, 2]]}, "center": {"170": [210, 2]}}, -{"id": 3171, "name": "Texas", "description": "Texas featuring the Alamo, the Come and Take it Cannon, and a longhorn.", "links": {"discord": ["HdKuyCGfHp"]}, "path": {"238-258": [[1363, -999], [1363, -977], [1363, -969], [1408, -969], [1408, -1000], [1363, -1000]]}, "center": {"238-258": [1386, -984]}}, -{"id": 3172, "name": "Hatsune Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection. This version, Hatsune Miku is wearing a beret and holding a baguette to honor the people of France. To the right is a MIKU sign, as well as the Vocaloids Len, Rin, Luka, Meiko and Kaito.", "links": {"website": ["https://en.wikipedia.org/wiki/Hatsune_Miku"], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"250-258": [[-366, 556], [-334, 556], [-306, 556], [-306, 587], [-367, 587], [-367, 554]]}, "center": {"250-258": [-337, 571]}}, -{"id": 3173, "name": "Laney Penn II", "description": "A smaller tiny pixel-art of the bassist from the Canadian 2013-2015 animated TV series Grojband. Built in a desolate area after the first artwork failed to survive the first night.", "links": {"subreddit": ["Grojband"]}, "path": {"210-258": [[1238, 4], [1244, 4], [1245, 6], [1242, 9], [1242, 12], [1238, 12]]}, "center": {"210-258": [1241, 7]}}, -{"id": 3174, "name": "Mini Ye Album Covers", "description": "Mini Ye album covers made under the Opium logo, made alongside r/playboicarti after the Kanye community was invaded", "links": {"subreddit": ["goodasssub", "hellofasub", "SaintPablo"], "discord": ["avZddvcp"]}, "path": {"250-258": [[1471, 49], [1489, 49], [1489, 54], [1475, 54], [1475, 57], [1471, 57], [1441, 62], [1441, 69], [1458, 69], [1458, 62]]}, "center": {"250-258": [1453, 64]}}, -{"id": 3175, "name": "Limestone Pie", "description": "Limestone Pie is a secondary character from the animated show My Little Pony: Friendship is Magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Limestone_Pie_and_Marble_Pie"]}, "path": {"250-258": [[-1312, 45], [-1305, 45], [-1305, 52], [-1312, 52]]}, "center": {"250-258": [-1308, 49]}}, -{"id": 3176, "name": "EPFL ETH", "description": "ETH Zurich, located in Switzerland, is a globally top-ranked technical university known for producing Nobel laureates and cutting-edge STEM research, while EPFL, situated on the shores of Lake Geneva, is celebrated for its innovative research hubs, state-of-the-art campus, and strong focus on entrepreneurship and technology transfer.", "links": {"website": ["https://ethz.ch/en.html", "https://www.epfl.ch/fr/", "https://en.wikipedia.org/wiki/ETH_Zurich", "https://en.wikipedia.org/wiki/École_Polytechnique_Fédérale_de_Lausanne"], "subreddit": ["placech"]}, "path": {"250-258": [[1468, -786], [1468, -778], [1499, -778], [1499, -786]]}, "center": {"250-258": [1484, -782]}}, -{"id": 3177, "name": "ReinosMC", "description": "ReinosMC is a nation-based Minecraft server.", "links": {"website": ["https://wiki.reinosmc.net/index.php/ReinosMC"], "subreddit": ["reinosmc"], "discord": ["reinosmc-909935577779032075"]}, "path": {"250-258": [[1144, 565], [1144, 568], [1144, 569], [1140, 569], [1140, 565], [1144, 565], [1144, 569]]}, "center": {"250-258": [1142, 567]}}, +{"id": 3171, "name": "Texas", "description": "Texas featuring the Alamo, the Come and Take it Cannon, and a longhorn.", "links": {"discord": ["HdKuyCGfHp"]}, "path": {"238-258, T": [[1363, -999], [1363, -977], [1363, -969], [1408, -969], [1408, -1000], [1363, -1000]]}, "center": {"238-258, T": [1386, -984]}}, +{"id": 3172, "name": "Hatsune Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection. This version, Hatsune Miku is wearing a beret and holding a baguette to honor the people of France. To the right is a MIKU sign, as well as the Vocaloids Len, Rin, Luka, Meiko and Kaito.", "links": {"website": ["https://en.wikipedia.org/wiki/Hatsune_Miku"], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"250-258, T": [[-366, 556], [-334, 556], [-306, 556], [-306, 587], [-367, 587], [-367, 554]]}, "center": {"250-258, T": [-337, 571]}}, +{"id": 3173, "name": "Laney Penn II", "description": "A smaller tiny pixel-art of the bassist from the Canadian 2013-2015 animated TV series Grojband. Built in a desolate area after the first artwork failed to survive the first night.", "links": {"subreddit": ["Grojband"]}, "path": {"210-258, T": [[1238, 4], [1244, 4], [1245, 6], [1242, 9], [1242, 12], [1238, 12]]}, "center": {"210-258, T": [1241, 7]}}, +{"id": 3174, "name": "Mini Ye Album Covers", "description": "Mini Ye album covers made under the Opium logo, made alongside r/playboicarti after the Kanye community was invaded", "links": {"subreddit": ["goodasssub", "hellofasub", "SaintPablo"], "discord": ["avZddvcp"]}, "path": {"250-258, T": [[1471, 49], [1489, 49], [1489, 54], [1475, 54], [1475, 57], [1471, 57], [1441, 62], [1441, 69], [1458, 69], [1458, 62]]}, "center": {"250-258, T": [1453, 64]}}, +{"id": 3175, "name": "Limestone Pie", "description": "Limestone Pie is a secondary character from the animated show My Little Pony: Friendship is Magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Limestone_Pie_and_Marble_Pie"]}, "path": {"250-258, T": [[-1312, 45], [-1305, 45], [-1305, 52], [-1312, 52]]}, "center": {"250-258, T": [-1308, 49]}}, +{"id": 3176, "name": "EPFL ETH", "description": "ETH Zurich, located in Switzerland, is a globally top-ranked technical university known for producing Nobel laureates and cutting-edge STEM research, while EPFL, situated on the shores of Lake Geneva, is celebrated for its innovative research hubs, state-of-the-art campus, and strong focus on entrepreneurship and technology transfer.", "links": {"website": ["https://ethz.ch/en.html", "https://www.epfl.ch/fr/", "https://en.wikipedia.org/wiki/ETH_Zurich", "https://en.wikipedia.org/wiki/École_Polytechnique_Fédérale_de_Lausanne"], "subreddit": ["placech"]}, "path": {"250-258, T": [[1468, -786], [1468, -778], [1499, -778], [1499, -786]]}, "center": {"250-258, T": [1484, -782]}}, +{"id": 3177, "name": "ReinosMC", "description": "ReinosMC is a nation-based Minecraft server.", "links": {"website": ["https://wiki.reinosmc.net/index.php/ReinosMC"], "subreddit": ["reinosmc"], "discord": ["reinosmc-909935577779032075"]}, "path": {"250-258, T": [[1144, 565], [1144, 568], [1144, 569], [1140, 569], [1140, 565], [1144, 565], [1144, 569]]}, "center": {"250-258, T": [1142, 567]}}, {"id": 3178, "name": "Frente Army", "description": "Comunidad del Streamer \"ElZeein\"", "links": {"website": ["https://www.twitch.tv/elzeein"], "discord": ["Fr8xZQWS"]}, "path": {"248": [[-1356, -754], [-1196, -754], [-1196, -701], [-1357, -701]]}, "center": {"248": [-1276, -727]}}, -{"id": 3179, "name": "Inabakumori Osage-chan", "description": "Inabakumori and Nukunuku Nigirmeshi's Osage-chan with Ado's rose, Tuyu's umbrella, Nira from Zutomayo and Kawai Sou-kun from \"nothings working out\" by Meiyo in the corner, and symbols for Eve and Yorushika.", "links": {"subreddit": ["inabakumori"], "discord": ["inabakumori", "VTtb8rAMqp"]}, "path": {"217-258": [[841, -124], [841, -72], [884, -72], [884, -124]]}, "center": {"217-258": [863, -98]}}, -{"id": 3180, "name": "Rubber Ducky", "description": "A little duck, inspired by The Muse Duck.", "links": {}, "path": {"219-258": [[634, -525], [634, -524], [635, -523], [636, -522], [639, -522], [640, -523], [641, -524], [642, -525], [641, -526], [639, -526], [639, -529], [635, -529], [635, -528], [634, -527], [635, -526]]}, "center": {"219-258": [637, -524]}}, -{"id": 3181, "name": "Outbreak Company", "description": "Outbreak Company (short OBC) is a Japanese light novel, manga and anime series by the talented author Ichirō Sakaki. \n\nThe light novel has 19 volumes as well as two seperate spin-offs, Paramilitary Company and Yome-Yome Immigration. It's final volume was released in 2018 and translated into English by J-Novel Club. \n\nOBC follows young good-for-nothing otaku Shinichi, who is pressured by his parents into finding a job. He gets hired by a suspicious company for terms that appear too good to be true. He is then drugged and taken into \"another world\" with dragons, elfs, lizardmen, beast folk et al. where he is tasked with getting the inhabitants of this world hooked on otaku culture.\n\nOne of the websites links to the official English release by JNC. Please check it out. <3", "links": {"website": ["https://lanove.kodansha.co.jp/official/moerushinryakusha/", "https://youtu.be/_3yi3xYHt0c", "https://twitter.com/ichiro_sakaki", "https://j-novel.club/series/outbreak-company"], "subreddit": ["OutbreakCompany"]}, "path": {"250-258": [[1117, -774], [1127, -774], [1127, -769], [1117, -769]]}, "center": {"250-258": [1122, -771]}}, -{"id": 3182, "name": "Marvel Logo", "description": "Marvel Logo made by Marvel Place", "links": {"subreddit": ["Marvel_Place"], "discord": ["wpAs32st"]}, "path": {"250-258": [[-1171, -323], [-1171, -320], [-1174, -316], [-1198, -316], [-1198, -324], [-1171, -324]]}, "center": {"250-258": [-1184, -320]}}, -{"id": 3183, "name": "Chibi Judgement and Cerberus (Helltaker)", "description": "A drawing of chibi Judgement and Cerberus from the indie puzzle game made by vanripper, Helltaker.", "links": {"website": ["https://store.steampowered.com/app/1289310/Helltaker/", "https://helltaker.fandom.com/wiki/Judgement", "https://helltaker.fandom.com/wiki/Cerberus?so=search"], "subreddit": ["helltaker"], "discord": ["xeCDafM"]}, "path": {"218-258": [[1208, -637], [1228, -637], [1228, -610], [1208, -610]]}, "center": {"218-258": [1218, -623]}}, -{"id": 3184, "name": "[MLP] Carrot Top / Golden Harvest", "description": "Carrot Top (Also known as Golden Harvest) is an Earth Pony from My Little Pony: Friendship is Magic. \n\nShe was added when r/farmcarrots reached out to the Bronies when the pony builds migrated from beneath the knee of \"O Carente\". A carrot that was cleared to make room for ponies was restored. Carrot Top has been eyeing both carrots ever since.", "links": {"website": ["https://mlp.fandom.com/wiki/Golden_Harvest"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"166-258": [[501, 845], [501, 841], [502, 841], [502, 840], [506, 840], [506, 836], [507, 835], [508, 835], [508, 834], [519, 834], [519, 835], [520, 835], [520, 836], [521, 836], [521, 841], [520, 841], [520, 842], [519, 842], [519, 843], [518, 843], [518, 844], [507, 844], [507, 845]]}, "center": {"166-258": [512, 839]}}, -{"id": 3185, "name": "Ganyu", "description": "The character Ganyu from the game Genshin Impact.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Ganyu"], "subreddit": ["Ganyu"]}, "path": {"250-258": [[-914, -210], [-897, -210], [-897, -193], [-914, -192]]}, "center": {"250-258": [-905, -201]}}, -{"id": 3186, "name": "Hardcore Heart Totem", "description": "A Minecraft Hardcore Heart with the colors of a Totem from the game, this Pixel art was created by the Hacherrr community in collaboration with the Pikachu community below in commemoration of the private Minecraft Bedrock server that Hacherrr made.", "links": {}, "path": {"167-258": [[-11, 870], [-12, 870], [-13, 870], [-14, 871], [-15, 872], [-15, 873], [-15, 874], [-14, 875], [-13, 876], [-12, 877], [-11, 878], [-10, 877], [-9, 876], [-8, 875], [-7, 874], [-7, 873], [-7, 872], [-8, 871], [-9, 870]]}, "center": {"167-258": [-11, 873]}}, -{"id": 3187, "name": "Futurama", "description": "Futurama is a classic science fiction cartoon. This art features Futurama's main cast and ship.", "links": {"website": ["https://en.wikipedia.org/wiki/Futurama"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"204-258": [[-1272, -1000], [-1272, -972], [-1270, -972], [-1270, -976], [-1269, -976], [-1269, -980], [-1268, -980], [-1268, -981], [-1267, -981], [-1267, -982], [-1266, -982], [-1266, -983], [-1264, -983], [-1264, -984], [-1261, -984], [-1261, -985], [-1257, -985], [-1257, -986], [-1244, -986], [-1244, -985], [-1240, -985], [-1240, -984], [-1238, -984], [-1238, -983], [-1237, -983], [-1237, -981], [-1236, -981], [-1236, -979], [-1235, -979], [-1235, -977], [-1222, -977], [-1222, -976], [-1217, -976], [-1217, -975], [-1216, -975], [-1215, -975], [-1215, -969], [-1204, -969], [-1204, -971], [-1203, -971], [-1203, -977], [-1201, -977], [-1201, -981], [-1197, -981], [-1197, -983], [-1196, -983], [-1196, -985], [-1194, -985], [-1194, -982], [-1191, -982], [-1191, -986], [-1189, -986], [-1189, -985], [-1188, -985], [-1188, -984], [-1185, -984], [-1185, -991], [-1182, -991], [-1184, -991], [-1184, -990], [-1178, -990], [-1178, -995], [-1177, -995], [-1177, -996], [-1176, -996], [-1176, -997], [-1175, -997], [-1175, -1000]]}, "center": {"204-258": [-1213, -988]}}, -{"id": 3188, "name": "\"Sonix\"", "description": "a small pixel art of a child's face that appears in the video of the mexican youtuber \"memo aponte\", specifically in the video \"Un dia como los personajes de SOUL!!\", this child being nicknamed \"sonix\" by the discord server of the already inactive, and ex-youtuber \"TotoPlay4\" because one of the server members looks like that kid. The creator of this meme was the user \"Dieguillo\" or Blazer/Blazee\n\nDe parte de su amigo Ink Gigan, los quiero mucho, a todos ustedes, get scammed el server\n\nagradecimientos: arbol, Dc, Ghoztyx, Karzy, Misho, QCY/tontoplay, Poci, Rod, Sklantom, Slendy, Soni, F_Gx, V A L\ny a todos ustedes, gracias por hacerme entrar a discord", "links": {"website": ["https://www.youtube.com/@TotoPlay4"]}, "path": {"206-258": [[-2, 573], [16, 573], [16, 586], [-2, 586]]}, "center": {"206-258": [7, 580]}}, -{"id": 3189, "name": "Robot Prince of Auchtertool", "description": "The Robot Prince of Auchtertool is a fictional character created by the band Gloryhammer. He is featured as a minor character in the song \"Maleficus Geminus (Colossus Matrix 38B - Ultimate Invocation of the Binary Thaumaturge)\"\n\nAt the time of r/place 2023, he was the mascot and icon of the official subreddit. \n\nAlso featured in the art is a G and H representing the initials of Gloryhammer, and the term \"Hoots\", which is a form of catchphrase for the band.", "links": {"website": ["https://www.gloryhammer.com/"], "subreddit": ["gloryhammer", "PlaceGloryhammer"], "discord": ["n8Y8cfxsfG"]}, "path": {"250-258": [[664, 612], [668, 609], [668, 608], [693, 608], [693, 635], [690, 635], [690, 619], [681, 623], [685, 631], [670, 629], [672, 623], [665, 621], [662, 613]]}, "center": {"250-258": [677, 616]}}, -{"id": 3190, "name": "GameMind", "description": "A Memory from a small gaming clan, for Minecraft / League of Legends / GTA and other casual multiplayer games. This was our Logo :3", "links": {}, "path": {"217-258": [[1405, 224], [1405, 233], [1415, 233], [1415, 224]]}, "center": {"217-258": [1410, 229]}}, -{"id": 3191, "name": "Melanie Martinez Portals Moth", "description": "An image of a pink moth, used by singer-songwriter Melanie Martinez to promote her 2023 album, Portals.", "links": {"subreddit": ["MelanieMartinez"]}, "path": {"250-258": [[814, -1000], [816, -999], [817, -1002], [849, -1000], [849, -970], [814, -970]]}, "center": {"250-258": [832, -985]}}, -{"id": 3192, "name": "Nym Li", "description": "Nym Li is a small independent vtuber streaming on Youtube", "links": {"website": ["https://www.youtube.com/@NymLiCh"]}, "path": {"93-258": [[-633, -344], [-633, -352], [-632, -353], [-625, -353], [-624, -352], [-623, -351], [-622, -351], [-621, -352], [-620, -353], [-618, -353], [-618, -343], [-631, -343]]}, "center": {"93-258": [-628, -348]}}, +{"id": 3179, "name": "Inabakumori Osage-chan", "description": "Inabakumori and Nukunuku Nigirmeshi's Osage-chan with Ado's rose, Tuyu's umbrella, Nira from Zutomayo and Kawai Sou-kun from \"nothings working out\" by Meiyo in the corner, and symbols for Eve and Yorushika.", "links": {"subreddit": ["inabakumori"], "discord": ["inabakumori", "VTtb8rAMqp"]}, "path": {"217-258, T": [[841, -124], [841, -72], [884, -72], [884, -124]]}, "center": {"217-258, T": [863, -98]}}, +{"id": 3180, "name": "Rubber Ducky", "description": "A little duck, inspired by The Muse Duck.", "links": {}, "path": {"219-258, T": [[634, -525], [634, -524], [635, -523], [636, -522], [639, -522], [640, -523], [641, -524], [642, -525], [641, -526], [639, -526], [639, -529], [635, -529], [635, -528], [634, -527], [635, -526]]}, "center": {"219-258, T": [637, -524]}}, +{"id": 3181, "name": "Outbreak Company", "description": "Outbreak Company (short OBC) is a Japanese light novel, manga and anime series by the talented author Ichirō Sakaki. \n\nThe light novel has 19 volumes as well as two seperate spin-offs, Paramilitary Company and Yome-Yome Immigration. It's final volume was released in 2018 and translated into English by J-Novel Club. \n\nOBC follows young good-for-nothing otaku Shinichi, who is pressured by his parents into finding a job. He gets hired by a suspicious company for terms that appear too good to be true. He is then drugged and taken into \"another world\" with dragons, elfs, lizardmen, beast folk et al. where he is tasked with getting the inhabitants of this world hooked on otaku culture.\n\nOne of the websites links to the official English release by JNC. Please check it out. <3", "links": {"website": ["https://lanove.kodansha.co.jp/official/moerushinryakusha/", "https://youtu.be/_3yi3xYHt0c", "https://twitter.com/ichiro_sakaki", "https://j-novel.club/series/outbreak-company"], "subreddit": ["OutbreakCompany"]}, "path": {"250-258, T": [[1117, -774], [1127, -774], [1127, -769], [1117, -769]]}, "center": {"250-258, T": [1122, -771]}}, +{"id": 3182, "name": "Marvel Logo", "description": "Marvel Logo made by Marvel Place", "links": {"subreddit": ["Marvel_Place"], "discord": ["wpAs32st"]}, "path": {"250-258, T": [[-1171, -323], [-1171, -320], [-1174, -316], [-1198, -316], [-1198, -324], [-1171, -324]]}, "center": {"250-258, T": [-1184, -320]}}, +{"id": 3183, "name": "Chibi Judgement and Cerberus (Helltaker)", "description": "A drawing of chibi Judgement and Cerberus from the indie puzzle game made by vanripper, Helltaker.", "links": {"website": ["https://store.steampowered.com/app/1289310/Helltaker/", "https://helltaker.fandom.com/wiki/Judgement", "https://helltaker.fandom.com/wiki/Cerberus?so=search"], "subreddit": ["helltaker"], "discord": ["xeCDafM"]}, "path": {"218-258, T": [[1208, -637], [1228, -637], [1228, -610], [1208, -610]]}, "center": {"218-258, T": [1218, -623]}}, +{"id": 3184, "name": "[MLP] Carrot Top / Golden Harvest", "description": "Carrot Top (Also known as Golden Harvest) is an Earth Pony from My Little Pony: Friendship is Magic. \n\nShe was added when r/farmcarrots reached out to the Bronies when the pony builds migrated from beneath the knee of \"O Carente\". A carrot that was cleared to make room for ponies was restored. Carrot Top has been eyeing both carrots ever since.", "links": {"website": ["https://mlp.fandom.com/wiki/Golden_Harvest"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"166-258, T": [[501, 845], [501, 841], [502, 841], [502, 840], [506, 840], [506, 836], [507, 835], [508, 835], [508, 834], [519, 834], [519, 835], [520, 835], [520, 836], [521, 836], [521, 841], [520, 841], [520, 842], [519, 842], [519, 843], [518, 843], [518, 844], [507, 844], [507, 845]]}, "center": {"166-258, T": [512, 839]}}, +{"id": 3185, "name": "Ganyu", "description": "The character Ganyu from the game Genshin Impact.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Ganyu"], "subreddit": ["Ganyu"]}, "path": {"250-258, T": [[-914, -210], [-897, -210], [-897, -193], [-914, -192]]}, "center": {"250-258, T": [-905, -201]}}, +{"id": 3186, "name": "Hardcore Heart Totem", "description": "A Minecraft Hardcore Heart with the colors of a Totem from the game, this Pixel art was created by the Hacherrr community in collaboration with the Pikachu community below in commemoration of the private Minecraft Bedrock server that Hacherrr made.", "links": {}, "path": {"167-258, T": [[-11, 870], [-12, 870], [-13, 870], [-14, 871], [-15, 872], [-15, 873], [-15, 874], [-14, 875], [-13, 876], [-12, 877], [-11, 878], [-10, 877], [-9, 876], [-8, 875], [-7, 874], [-7, 873], [-7, 872], [-8, 871], [-9, 870]]}, "center": {"167-258, T": [-11, 873]}}, +{"id": 3187, "name": "Futurama", "description": "Futurama is a classic science fiction cartoon. This art features Futurama's main cast and ship.", "links": {"website": ["https://en.wikipedia.org/wiki/Futurama"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"204-258, T": [[-1272, -1000], [-1272, -972], [-1270, -972], [-1270, -976], [-1269, -976], [-1269, -980], [-1268, -980], [-1268, -981], [-1267, -981], [-1267, -982], [-1266, -982], [-1266, -983], [-1264, -983], [-1264, -984], [-1261, -984], [-1261, -985], [-1257, -985], [-1257, -986], [-1244, -986], [-1244, -985], [-1240, -985], [-1240, -984], [-1238, -984], [-1238, -983], [-1237, -983], [-1237, -981], [-1236, -981], [-1236, -979], [-1235, -979], [-1235, -977], [-1222, -977], [-1222, -976], [-1217, -976], [-1217, -975], [-1216, -975], [-1215, -975], [-1215, -969], [-1204, -969], [-1204, -971], [-1203, -971], [-1203, -977], [-1201, -977], [-1201, -981], [-1197, -981], [-1197, -983], [-1196, -983], [-1196, -985], [-1194, -985], [-1194, -982], [-1191, -982], [-1191, -986], [-1189, -986], [-1189, -985], [-1188, -985], [-1188, -984], [-1185, -984], [-1185, -991], [-1182, -991], [-1184, -991], [-1184, -990], [-1178, -990], [-1178, -995], [-1177, -995], [-1177, -996], [-1176, -996], [-1176, -997], [-1175, -997], [-1175, -1000]]}, "center": {"204-258, T": [-1213, -988]}}, +{"id": 3188, "name": "\"Sonix\"", "description": "a small pixel art of a child's face that appears in the video of the mexican youtuber \"memo aponte\", specifically in the video \"Un dia como los personajes de SOUL!!\", this child being nicknamed \"sonix\" by the discord server of the already inactive, and ex-youtuber \"TotoPlay4\" because one of the server members looks like that kid. The creator of this meme was the user \"Dieguillo\" or Blazer/Blazee\n\nDe parte de su amigo Ink Gigan, los quiero mucho, a todos ustedes, get scammed el server\n\nagradecimientos: arbol, Dc, Ghoztyx, Karzy, Misho, QCY/tontoplay, Poci, Rod, Sklantom, Slendy, Soni, F_Gx, V A L\ny a todos ustedes, gracias por hacerme entrar a discord", "links": {"website": ["https://www.youtube.com/@TotoPlay4"]}, "path": {"206-258, T": [[-2, 573], [16, 573], [16, 586], [-2, 586]]}, "center": {"206-258, T": [7, 580]}}, +{"id": 3189, "name": "Robot Prince of Auchtertool", "description": "The Robot Prince of Auchtertool is a fictional character created by the band Gloryhammer. He is featured as a minor character in the song \"Maleficus Geminus (Colossus Matrix 38B - Ultimate Invocation of the Binary Thaumaturge)\"\n\nAt the time of r/place 2023, he was the mascot and icon of the official subreddit. \n\nAlso featured in the art is a G and H representing the initials of Gloryhammer, and the term \"Hoots\", which is a form of catchphrase for the band.", "links": {"website": ["https://www.gloryhammer.com/"], "subreddit": ["gloryhammer", "PlaceGloryhammer"], "discord": ["n8Y8cfxsfG"]}, "path": {"250-258, T": [[664, 612], [668, 609], [668, 608], [693, 608], [693, 635], [690, 635], [690, 619], [681, 623], [685, 631], [670, 629], [672, 623], [665, 621], [662, 613]]}, "center": {"250-258, T": [677, 616]}}, +{"id": 3190, "name": "GameMind", "description": "A Memory from a small gaming clan, for Minecraft / League of Legends / GTA and other casual multiplayer games. This was our Logo :3", "links": {}, "path": {"217-258, T": [[1405, 224], [1405, 233], [1415, 233], [1415, 224]]}, "center": {"217-258, T": [1410, 229]}}, +{"id": 3191, "name": "Melanie Martinez Portals Moth", "description": "An image of a pink moth, used by singer-songwriter Melanie Martinez to promote her 2023 album, Portals.", "links": {"subreddit": ["MelanieMartinez"]}, "path": {"250-258, T": [[814, -1000], [816, -999], [817, -1002], [849, -1000], [849, -970], [814, -970]]}, "center": {"250-258, T": [832, -985]}}, +{"id": 3192, "name": "Nym Li", "description": "Nym Li is a small independent vtuber streaming on Youtube", "links": {"website": ["https://www.youtube.com/@NymLiCh"]}, "path": {"93-258, T": [[-633, -344], [-633, -352], [-632, -353], [-625, -353], [-624, -352], [-623, -351], [-622, -351], [-621, -352], [-620, -353], [-618, -353], [-618, -343], [-631, -343]]}, "center": {"93-258, T": [-628, -348]}}, {"id": 3193, "name": "Miuna", "description": "Yashiro Miuna (八尋美海) is a female Hispanic VTuber from Venezuela who started streaming on 9 September 2020. Due to her poor internet, she started out making content on Facebook Gaming, but moved to Twitch on 25 December 2020.", "links": {"website": ["https://www.twitch.tv/yashiromiuna"], "discord": ["tK99gJJt"]}, "path": {"253-258": [[-78, 867], [-78, 893], [-56, 893], [-56, 867]]}, "center": {"253-258": [-67, 880]}}, -{"id": 3194, "name": "Jurassic Park", "description": "After a long fought journey r/JpPlace23 made it onto r/place. With a barbasol can, a JP30, a land cruiser, and a triceratops! The team has put so much effort into this due to 2023 being Jurassic Parks 30th Anniversary!", "links": {"subreddit": ["JpPlace23"], "discord": ["6rh3Njkc"]}, "path": {"250-258": [[-1186, 461], [-1200, 457], [-1169, 457], [-1169, 454], [-1169, 453], [-1170, 452], [-1171, 453], [-1171, 451], [-1172, 451], [-1173, 450], [-1172, 449], [-1172, 448], [-1173, 448], [-1175, 449], [-1174, 449], [-1175, 450], [-1176, 451], [-1177, 451], [-1178, 451], [-1181, 451], [-1180, 452], [-1181, 452], [-1181, 453], [-1181, 454], [-1182, 457], [-1184, 457], [-1185, 457], [-1186, 457], [-1187, 457], [-1188, 457], [-1189, 457], [-1192, 458], [-1194, 458], [-1196, 458], [-1198, 456], [-1197, 457], [-1200, 459], [-1200, 458], [-1202, 460], [-1204, 460], [-1205, 460], [-1207, 460], [-1211, 460], [-1212, 460], [-1212, 463], [-1211, 463], [-1203, 463], [-1202, 463], [-1197, 463], [-1195, 463], [-1195, 464], [-1194, 464], [-1194, 463], [-1191, 463], [-1191, 464], [-1191, 463], [-1189, 463], [-1175, 463], [-1175, 464], [-1171, 464], [-1171, 458], [-1170, 458], [-1175, 452], [-1181, 458], [-1197, 457]]}, "center": {"250-258": [-1176, 460]}}, -{"id": 3195, "name": "SrAmilcar", "description": "He is an Argentine Streamer and Youtuber who streams games. Number 1 contributor of yerba mate in the Argentine Republic.\nHe is also known as \"Tomas Shelby Argento\", \"Leon\" and among many others.\n🎩", "links": {"website": ["https://www.twitch.tv/sramilcar", "https://www.youtube.com/@Amilcar"], "discord": ["amilcarcebado"]}, "path": {"172-258": [[-1076, -296], [-1061, -296], [-1061, -281], [-1076, -281]]}, "center": {"172-258": [-1068, -288]}}, -{"id": 3196, "name": "Flag of bourgogne-franche-comté", "description": "Bourgogne-Franche-Comté is a region in eastern France created by the 2014 territorial reform of French regions, from a merger of Burgundy and Franche-Comté. The new region came into existence on 1 January 2016.\nThe region covers an area of 47,783 km2 (18,449 sq mi) and eight departments; it had a population of 2,811,423 in 2017. Its prefecture and largest city is Dijon, although the regional council sits in Besançon, making Bourgogne-Franche-Comté one of two regions in France (along with Normandy) in which the prefect does not sit in the same city as the regional council.", "links": {"website": ["https://en.wikipedia.org/wiki/Bourgogne-Franche-Comté"], "subreddit": ["BourgogneFrancheComte"]}, "path": {"250-258": [[-402, 273], [-395, 273], [-395, 278], [-402, 278]]}, "center": {"250-258": [-398, 276]}}, +{"id": 3194, "name": "Jurassic Park", "description": "After a long fought journey r/JpPlace23 made it onto r/place. With a barbasol can, a JP30, a land cruiser, and a triceratops! The team has put so much effort into this due to 2023 being Jurassic Parks 30th Anniversary!", "links": {"subreddit": ["JpPlace23"], "discord": ["6rh3Njkc"]}, "path": {"250-258, T": [[-1186, 461], [-1200, 457], [-1169, 457], [-1169, 454], [-1169, 453], [-1170, 452], [-1171, 453], [-1171, 451], [-1172, 451], [-1173, 450], [-1172, 449], [-1172, 448], [-1173, 448], [-1175, 449], [-1174, 449], [-1175, 450], [-1176, 451], [-1177, 451], [-1178, 451], [-1181, 451], [-1180, 452], [-1181, 452], [-1181, 453], [-1181, 454], [-1182, 457], [-1184, 457], [-1185, 457], [-1186, 457], [-1187, 457], [-1188, 457], [-1189, 457], [-1192, 458], [-1194, 458], [-1196, 458], [-1198, 456], [-1197, 457], [-1200, 459], [-1200, 458], [-1202, 460], [-1204, 460], [-1205, 460], [-1207, 460], [-1211, 460], [-1212, 460], [-1212, 463], [-1211, 463], [-1203, 463], [-1202, 463], [-1197, 463], [-1195, 463], [-1195, 464], [-1194, 464], [-1194, 463], [-1191, 463], [-1191, 464], [-1191, 463], [-1189, 463], [-1175, 463], [-1175, 464], [-1171, 464], [-1171, 458], [-1170, 458], [-1175, 452], [-1181, 458], [-1197, 457]]}, "center": {"250-258, T": [-1176, 460]}}, +{"id": 3195, "name": "SrAmilcar", "description": "He is an Argentine Streamer and Youtuber who streams games. Number 1 contributor of yerba mate in the Argentine Republic.\nHe is also known as \"Tomas Shelby Argento\", \"Leon\" and among many others.\n🎩", "links": {"website": ["https://www.twitch.tv/sramilcar", "https://www.youtube.com/@Amilcar"], "discord": ["amilcarcebado"]}, "path": {"172-258, T": [[-1076, -296], [-1061, -296], [-1061, -281], [-1076, -281]]}, "center": {"172-258, T": [-1068, -288]}}, +{"id": 3196, "name": "Flag of bourgogne-franche-comté", "description": "Bourgogne-Franche-Comté is a region in eastern France created by the 2014 territorial reform of French regions, from a merger of Burgundy and Franche-Comté. The new region came into existence on 1 January 2016.\nThe region covers an area of 47,783 km2 (18,449 sq mi) and eight departments; it had a population of 2,811,423 in 2017. Its prefecture and largest city is Dijon, although the regional council sits in Besançon, making Bourgogne-Franche-Comté one of two regions in France (along with Normandy) in which the prefect does not sit in the same city as the regional council.", "links": {"website": ["https://en.wikipedia.org/wiki/Bourgogne-Franche-Comté"], "subreddit": ["BourgogneFrancheComte"]}, "path": {"250-258, T": [[-402, 273], [-395, 273], [-395, 278], [-402, 278]]}, "center": {"250-258, T": [-398, 276]}}, {"id": 3197, "name": "The golden path", "description": "Warning, contains spoil about the game Tunic.\n\nThe golden path is a riddle with the game Tunic. Its main feature is path you need to follow in the in game manual. The Tunic and The Great Review communities got inspired by this path to create a smiliar one on r/place.", "links": {"subreddit": ["TunicGame", "thegreatreview"]}, "path": {"253-258": [[-483, 476], [-479, 476], [-483, 478], [-477, 478], [-477, 421], [-410, 420], [-410, 416], [-405, 412], [-403, 412], [-402, 414], [-401, 420], [-393, 420], [-392, 484], [-369, 483], [-369, 654], [-365, 682], [-360, 682], [-356, 685], [-358, 687], [-357, 699], [-348, 699], [-348, 702], [-333, 702], [-333, 740], [-330, 740], [-329, 748], [-330, 752], [-332, 755], [-330, 758], [-328, 764], [-330, 768], [-338, 768], [-342, 789], [-342, 793], [-345, 796], [-345, 797], [-346, 798], [-346, 802], [-499, 803], [-502, 806], [-502, 880], [-498, 883], [-498, 886], [-502, 889], [-502, 950], [-456, 950], [-456, 935], [-459, 936], [-458, 948], [-501, 948], [-500, 892], [-495, 888], [-495, 881], [-500, 876], [-500, 808], [-497, 805], [-344, 805], [-344, 800], [-341, 798], [-341, 795], [-340, 795], [-339, 791], [-335, 771], [-327, 771], [-325, 762], [-327, 755], [-326, 745], [-328, 738], [-331, 737], [-330, 699], [-341, 698], [-346, 698], [-347, 696], [-354, 696], [-354, 688], [-353, 684], [-357, 679], [-363, 680], [-362, 673], [-366, 662], [-366, 602], [-366, 481], [-389, 480], [-388, 418], [-392, 416], [-398, 416], [-398, 411], [-402, 408], [-408, 409], [-413, 413], [-413, 417], [-471, 417], [-480, 417], [-480, 428], [-479, 475]]}, "center": {"253-258": [-390, 419]}}, {"id": 3198, "name": "México Flag", "description": "Flag made by\u0001r/Mexico.\nThe flag would be vandalized and then be destroyed and occupied by the charizard card by the streamer xQc and his Twitch community", "links": {"discord": ["n7a35t4HPH"], "subreddit": ["mexico"]}, "path": {"171-175": [[-1410, 105], [-1183, 106], [-1185, 244], [-1408, 245]]}, "center": {"171-175": [-1296, 175]}}, -{"id": 3199, "name": "The Escargoog", "description": "This is the profile picture of French streamer Escargoog. Basically, it was the drawing Escargoog used to do when he was in a band and gave his autographs in the shape of a snail with lots of smiles :].", "links": {}, "path": {"250-258": [[1203, -271], [1185, -271], [1185, -244], [1203, -244]]}, "center": {"250-258": [1194, -257]}}, -{"id": 3200, "name": "Epic Seven", "description": "Epic Seven is a free-to-play 2D RPG available on iOS and Android platforms. Control a variety of characters as you explore the game's world through its adventure mode, which is brought to life with anime cutscenes that detail the game story as well as individual character special attacks.\n\nThis character's name is Top Model Luluca. She is pogging very hard", "links": {"website": ["https://epic7.smilegatemegaport.com/"], "subreddit": ["EpicSeven"], "discord": ["officialepicseven"]}, "path": {"250-258": [[-1072, -323], [-1071, -295], [-1096, -296], [-1098, -324]]}, "center": {"250-258": [-1084, -310]}}, -{"id": 3201, "name": "Gitanas Nausėda - Lithuania President", "description": "Gitanas Nausėda is a Lithuanian politician, economist and banker who is serving as the ninth and current president of Lithuania since 2019. He was previously director of monetary policy at the Bank of Lithuania from 1996 to 2000 and chief economist to the chairman of SEB bankas from 2008 to 2018. The artwork has been made by RajonoKunigas.", "links": {"website": ["https://lrv.lt/"], "discord": ["baznycia"]}, "path": {"250-258": [[-202, -18], [-196, -22], [-187, -23], [-173, -22], [-164, -15], [-160, 4], [-163, 28], [-166, 41], [-159, 46], [-150, 52], [-144, 54], [-142, 58], [-143, 85], [-225, 86], [-225, 55], [-214, 50], [-204, 46], [-201, 42], [-203, 36], [-205, 30], [-207, 28], [-208, 19], [-208, 12], [-209, 9], [-210, 1], [-209, -11], [-206, -16]]}, "center": {"250-258": [-183, 60]}}, +{"id": 3199, "name": "The Escargoog", "description": "This is the profile picture of French streamer Escargoog. Basically, it was the drawing Escargoog used to do when he was in a band and gave his autographs in the shape of a snail with lots of smiles :].", "links": {}, "path": {"250-258, T": [[1203, -271], [1185, -271], [1185, -244], [1203, -244]]}, "center": {"250-258, T": [1194, -257]}}, +{"id": 3200, "name": "Epic Seven", "description": "Epic Seven is a free-to-play 2D RPG available on iOS and Android platforms. Control a variety of characters as you explore the game's world through its adventure mode, which is brought to life with anime cutscenes that detail the game story as well as individual character special attacks.\n\nThis character's name is Top Model Luluca. She is pogging very hard", "links": {"website": ["https://epic7.smilegatemegaport.com/"], "subreddit": ["EpicSeven"], "discord": ["officialepicseven"]}, "path": {"250-258, T": [[-1072, -323], [-1071, -295], [-1096, -296], [-1098, -324]]}, "center": {"250-258, T": [-1084, -310]}}, +{"id": 3201, "name": "Gitanas Nausėda - Lithuania President", "description": "Gitanas Nausėda is a Lithuanian politician, economist and banker who is serving as the ninth and current president of Lithuania since 2019. He was previously director of monetary policy at the Bank of Lithuania from 1996 to 2000 and chief economist to the chairman of SEB bankas from 2008 to 2018. The artwork has been made by RajonoKunigas.", "links": {"website": ["https://lrv.lt/"], "discord": ["baznycia"]}, "path": {"250-258, T": [[-202, -18], [-196, -22], [-187, -23], [-173, -22], [-164, -15], [-160, 4], [-163, 28], [-166, 41], [-159, 46], [-150, 52], [-144, 54], [-142, 58], [-143, 85], [-225, 86], [-225, 55], [-214, 50], [-204, 46], [-201, 42], [-203, 36], [-205, 30], [-207, 28], [-208, 19], [-208, 12], [-209, 9], [-210, 1], [-209, -11], [-206, -16]]}, "center": {"250-258, T": [-183, 60]}}, {"id": 3202, "name": "Stegmenschen v1", "description": "The first version of the Stegmenschen artwork, before Serbia mercilessly ran it over.", "links": {}, "path": {"104": [[-616, 268], [-593, 268], [-593, 274], [-616, 274]]}, "center": {"104": [-604, 271]}}, -{"id": 3203, "name": "Pola (Azur Lane)", "description": "A chibi of Pola, the personification of the Italian heavy cruiser from the 2018 Chinese gacha game Azur Lane. Created as a collaboration between the United Gacha Alliance and the Italian Empire, it was destroyed by bots in the final two hours and was one of the few pieces in the area to not be rebuilt after the attack. She survived in Reddit's official final canvas, however.", "links": {"website": ["https://azurlane.koumakan.jp/wiki/Pola"], "subreddit": ["gachagaming", "AzureLane"], "discord": ["unitedgacha"]}, "path": {"250-258": [[60, 36], [74, 36], [77, 41], [77, 43], [79, 46], [79, 51], [78, 54], [77, 57], [72, 61], [63, 61], [61, 60], [57, 57], [55, 53], [55, 40], [56, 40]]}, "center": {"250-258": [67, 49]}}, -{"id": 3204, "name": "Karma Cat", "description": "\"Karma is a cat\" By Taylor Swift", "links": {"website": ["https://taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"250-258": [[691, 915], [718, 915], [718, 935], [691, 935]]}, "center": {"250-258": [705, 925]}}, +{"id": 3203, "name": "Pola (Azur Lane)", "description": "A chibi of Pola, the personification of the Italian heavy cruiser from the 2018 Chinese gacha game Azur Lane. Created as a collaboration between the United Gacha Alliance and the Italian Empire, it was destroyed by bots in the final two hours and was one of the few pieces in the area to not be rebuilt after the attack. She survived in Reddit's official final canvas, however.", "links": {"website": ["https://azurlane.koumakan.jp/wiki/Pola"], "subreddit": ["gachagaming", "AzureLane"], "discord": ["unitedgacha"]}, "path": {"250-258, T": [[60, 36], [74, 36], [77, 41], [77, 43], [79, 46], [79, 51], [78, 54], [77, 57], [72, 61], [63, 61], [61, 60], [57, 57], [55, 53], [55, 40], [56, 40]]}, "center": {"250-258, T": [67, 49]}}, +{"id": 3204, "name": "Karma Cat", "description": "\"Karma is a cat\" By Taylor Swift", "links": {"website": ["https://taylorswift.com/"], "subreddit": ["TaylorSwift"], "discord": ["swifties"]}, "path": {"250-258, T": [[691, 915], [718, 915], [718, 935], [691, 935]]}, "center": {"250-258, T": [705, 925]}}, {"id": 3205, "name": "BFDI (Battle For Dream Island)", "description": "BFDI, short for Battle for Dream Island, is a YouTube series started in 2010. It currently has 5 seasons, with the most recent one being The Power of Two, which was since 2021.", "links": {"website": ["https://www.youtube.com/@BFDI", "https://BFDI.tv"], "subreddit": ["BattleForDreamIsland", "BFDI"], "discord": ["Qct6pAM"]}, "path": {"130-243": [[-787, -217], [-787, -207], [-801, -207], [-801, -210], [-798, -210], [-797, -216]]}, "center": {"130-243": [-793, -212]}}, -{"id": 3206, "name": "EUC Heart", "description": "A heart representing the logo of u/Afraid_Success_4836 (@vectorgraphics9260)'s EUC Undertale AU and the worldbuilding project, Pandora, of which it is a part. The heart was moved once because it was taken over by the nearby German flag, and another time to fit with r/transplace 's artwork better.", "links": {"subreddit": ["euc_ut", "transplace"], "discord": ["YAeTuenxqA"]}, "path": {"118-258": [[-568, -88], [-570, -87], [-572, -88], [-574, -85], [-570, -82], [-566, -85]]}, "center": {"118-258": [-570, -85]}}, +{"id": 3206, "name": "EUC Heart", "description": "A heart representing the logo of u/Afraid_Success_4836 (@vectorgraphics9260)'s EUC Undertale AU and the worldbuilding project, Pandora, of which it is a part. The heart was moved once because it was taken over by the nearby German flag, and another time to fit with r/transplace 's artwork better.", "links": {"subreddit": ["euc_ut", "transplace"], "discord": ["YAeTuenxqA"]}, "path": {"118-258, T": [[-568, -88], [-570, -87], [-572, -88], [-574, -85], [-570, -82], [-566, -85]]}, "center": {"118-258, T": [-570, -85]}}, {"id": 3207, "name": "Britannia", "description": "Britannia is the national personification of Britain as a helmeted female warrior holding a trident and shield.", "links": {"website": ["https://en.wikipedia.org/wiki/Britannia"]}, "path": {"253-258": [[1230, 897], [1233, 894], [1236, 887], [1238, 880], [1240, 875], [1236, 886], [1234, 891], [1244, 871], [1243, 866], [1241, 862], [1240, 855], [1239, 847], [1237, 834], [1235, 823], [1232, 819], [1225, 816], [1225, 810], [1228, 808], [1227, 806], [1231, 802], [1231, 798], [1231, 793], [1230, 790], [1224, 785], [1216, 781], [1209, 785], [1206, 785], [1207, 789], [1207, 791], [1204, 793], [1204, 796], [1200, 801], [1205, 801], [1205, 806], [1208, 808], [1208, 809], [1209, 810], [1207, 812], [1211, 812], [1209, 817], [1204, 817], [1202, 820], [1192, 823], [1184, 824], [1176, 822], [1168, 816], [1165, 814], [1163, 800], [1169, 798], [1168, 784], [1164, 784], [1166, 797], [1164, 797], [1160, 786], [1157, 786], [1160, 796], [1154, 798], [1151, 787], [1148, 789], [1152, 803], [1158, 802], [1161, 814], [1159, 815], [1158, 820], [1161, 822], [1160, 824], [1164, 825], [1171, 857], [1168, 857], [1169, 870], [1170, 872], [1169, 882], [1167, 889], [1166, 893], [1168, 897], [1232, 897], [1233, 895], [1232, 893]]}, "center": {"253-258": [1206, 861]}}, -{"id": 3208, "name": "NYU logo", "description": "New York University", "links": {"subreddit": ["NYU"], "discord": ["PE2v8Shup"]}, "path": {"153-258": [[644, 921], [666, 921], [666, 934], [644, 934]]}, "center": {"153-258": [655, 928]}}, -{"id": 3209, "name": "Yashiro Miuna's Cafe", "description": "A Venezuelan Vtuber on Twitch who is a Yandere demon Fish girl that really likes Oreos!", "links": {"website": ["https://www.twitch.tv/yashiromiuna"], "discord": ["qmURxwnk"]}, "path": {"168-258": [[-78, 867], [-78, 893], [-56, 893], [-56, 867]]}, "center": {"168-258": [-67, 880]}}, -{"id": 3210, "name": "[MLP] Tiny Discord", "description": "Discord from My Little Pony: Friendship Is Magic. Similar to the r/place event in 2022 Discord made an appearance within in The Void. After r/RainbowRoad started extending their rainbow design downwards towards him, the Bronies starting turning him to stone; referencing a similar situation in the show when Discord was turned to stone by a rainbow beam from the Mane Six bearing the Elements of Harmony.", "links": {"website": ["https://mlp.fandom.com/wiki/Discord"], "subreddit": ["mylittlepony"], "discord": ["bronyplace"]}, "path": {"250-258": [[-1305, 543], [-1305, 541], [-1303, 541], [-1303, 539], [-1302, 539], [-1302, 537], [-1301, 537], [-1301, 531], [-1303, 531], [-1303, 530], [-1304, 530], [-1304, 529], [-1305, 529], [-1305, 528], [-1306, 528], [-1306, 525], [-1304, 525], [-1304, 523], [-1305, 523], [-1305, 521], [-1303, 521], [-1303, 518], [-1304, 518], [-1304, 517], [-1305, 517], [-1305, 515], [-1301, 515], [-1301, 518], [-1299, 518], [-1299, 517], [-1298, 517], [-1298, 516], [-1297, 516], [-1297, 515], [-1295, 515], [-1295, 517], [-1296, 517], [-1296, 518], [-1297, 518], [-1297, 521], [-1296, 521], [-1296, 522], [-1292, 522], [-1292, 527], [-1291, 527], [-1291, 525], [-1288, 525], [-1288, 528], [-1289, 528], [-1289, 529], [-1290, 529], [-1290, 530], [-1291, 530], [-1291, 531], [-1293, 531], [-1293, 530], [-1294, 530], [-1294, 529], [-1295, 529], [-1295, 534], [-1294, 534], [-1294, 535], [-1293, 535], [-1293, 536], [-1290, 536], [-1290, 539], [-1292, 539], [-1292, 543], [-1295, 543], [-1295, 540], [-1296, 540], [-1296, 538], [-1299, 538], [-1299, 543]]}, "center": {"250-258": [-1299, 526]}}, +{"id": 3208, "name": "NYU logo", "description": "New York University", "links": {"subreddit": ["NYU"], "discord": ["PE2v8Shup"]}, "path": {"153-258, T": [[644, 921], [666, 921], [666, 934], [644, 934]]}, "center": {"153-258, T": [655, 928]}}, +{"id": 3209, "name": "Yashiro Miuna's Cafe", "description": "A Venezuelan Vtuber on Twitch who is a Yandere demon Fish girl that really likes Oreos!", "links": {"website": ["https://www.twitch.tv/yashiromiuna"], "discord": ["qmURxwnk"]}, "path": {"168-258, T": [[-78, 867], [-78, 893], [-56, 893], [-56, 867]]}, "center": {"168-258, T": [-67, 880]}}, +{"id": 3210, "name": "[MLP] Tiny Discord", "description": "Discord from My Little Pony: Friendship Is Magic. Similar to the r/place event in 2022 Discord made an appearance within in The Void. After r/RainbowRoad started extending their rainbow design downwards towards him, the Bronies starting turning him to stone; referencing a similar situation in the show when Discord was turned to stone by a rainbow beam from the Mane Six bearing the Elements of Harmony.", "links": {"website": ["https://mlp.fandom.com/wiki/Discord"], "subreddit": ["mylittlepony"], "discord": ["bronyplace"]}, "path": {"250-258, T": [[-1305, 543], [-1305, 541], [-1303, 541], [-1303, 539], [-1302, 539], [-1302, 537], [-1301, 537], [-1301, 531], [-1303, 531], [-1303, 530], [-1304, 530], [-1304, 529], [-1305, 529], [-1305, 528], [-1306, 528], [-1306, 525], [-1304, 525], [-1304, 523], [-1305, 523], [-1305, 521], [-1303, 521], [-1303, 518], [-1304, 518], [-1304, 517], [-1305, 517], [-1305, 515], [-1301, 515], [-1301, 518], [-1299, 518], [-1299, 517], [-1298, 517], [-1298, 516], [-1297, 516], [-1297, 515], [-1295, 515], [-1295, 517], [-1296, 517], [-1296, 518], [-1297, 518], [-1297, 521], [-1296, 521], [-1296, 522], [-1292, 522], [-1292, 527], [-1291, 527], [-1291, 525], [-1288, 525], [-1288, 528], [-1289, 528], [-1289, 529], [-1290, 529], [-1290, 530], [-1291, 530], [-1291, 531], [-1293, 531], [-1293, 530], [-1294, 530], [-1294, 529], [-1295, 529], [-1295, 534], [-1294, 534], [-1294, 535], [-1293, 535], [-1293, 536], [-1290, 536], [-1290, 539], [-1292, 539], [-1292, 543], [-1295, 543], [-1295, 540], [-1296, 540], [-1296, 538], [-1299, 538], [-1299, 543]]}, "center": {"250-258, T": [-1299, 526]}}, {"id": 3211, "name": "Opium", "description": "Logo of Playboi Carti's label, Opium", "links": {"subreddit": ["playboicarti"]}, "path": {"210": [[1492, 40], [1445, 40], [1445, 57], [1452, 57], [1452, 49], [1491, 48]]}, "center": {"210": [1450, 45]}}, {"id": 3212, "name": "2B and 9S", "description": "A small art of 2B and 9S from the NieR: Automata video game by Yoko Taro.", "links": {"subreddit": ["nier"], "discord": ["ZFFmVeYsDK"]}, "path": {"185-236": [[-709, 713], [-687, 713], [-687, 724], [-709, 724]]}, "center": {"185-236": [-698, 719]}}, -{"id": 3214, "name": "Will You Snail - German", "description": "Shelly and Squid from the indie game Will You Snail above the letters representing the game.", "links": {"subreddit": ["willyousnail", "placeloona"]}, "path": {"164-214": [[-539, -964], [-554, -964], [-554, -938], [-539, -938]], "215-258": [[-560, -964], [-546, -964], [-546, -938], [-560, -938]]}, "center": {"164-214": [-546, -951], "215-258": [-553, -951]}}, -{"id": 3215, "name": "Sword of Protection", "description": "The Sword of Protection is a sword from the 2018 Netflix show She-ra and the Princesses of Power. This particular version is from season 5, when the sword got a new look due to the events of the story.\n\nThis art was made in collaboration with Berserk for the Hill of Swords.", "links": {"website": ["https://she-raandtheprincessesofpower.fandom.com/wiki/Sword_of_Protection"], "subreddit": ["PrincessesOfPower", "Berserk"], "discord": ["V7X2DWc2", "M699v8xSqz"]}, "path": {"192-258": [[559, 966], [567, 966], [567, 964], [566, 964], [566, 961], [567, 960], [567, 957], [565, 956], [565, 952], [563, 951], [561, 953], [561, 956], [559, 957], [559, 962], [560, 962], [559, 964]]}, "center": {"192-258": [563, 959]}}, -{"id": 3216, "name": "Fack Ju Spez Grafitti", "description": "Reference to the german movie series \"Fack Ju Göthe\", but instead using Spez because it sounds like \"fuck you spez\". The Grafitti was created to protest the recent API changes of Reddit", "links": {"website": ["https://en.wikipedia.org/wiki/Fack_ju_G%C3%B6hte"], "subreddit": ["placeDE"]}, "path": {"216-258": [[-1274, -383], [-1274, -371], [-1202, -371], [-1202, -384]]}, "center": {"216-258": [-1222, -377]}}, -{"id": 3217, "name": "ipandarina", "description": "Content creator for KOI esports club and mother of Shilka and Neo, her dog and cat. She made famous \"The Isle\" in the spanish community. She is very well known for dropping games.", "links": {"website": ["https://www.twitch.tv/ipandarina"], "subreddit": ["Pandarina"]}, "path": {"207-258": [[1035, 282], [1048, 282], [1048, 304], [1035, 304]]}, "center": {"207-258": [1042, 293]}}, -{"id": 3218, "name": "Sabaton Logo", "description": "The Logo of the Heavy Metal band Sabaton", "links": {"subreddit": ["sabaton"], "discord": ["H2rHpXvxR3"]}, "path": {"205-258": [[1264, 12], [1269, 7], [1275, 13], [1275, 21], [1269, 24], [1263, 19], [1263, 12]]}, "center": {"205-258": [1269, 16]}}, -{"id": 3219, "name": "Texas", "description": "Texas flag after moving 8 times featuring Longhorn, Blue Bonnets and the Alamo with its own Tiny Tex.", "links": {"discord": ["HdKuyCGfHp"]}, "path": {"162-258": [[-870, 818], [-825, 818], [-825, 840], [-870, 841], [-870, 827], [-870, 818], [-870, 819]]}, "center": {"162-258": [-848, 829]}}, -{"id": 3220, "name": "Peepo Pony0n", "description": "The Mexican voice actress and streamer Pony0n popularly called \"CHURRONEITOR\" \"CACHALOTA\" \"ENANA\"\nShe really likes ketchup and saying WEBOS. She has a strange sense of humor, but she is very funny and endearing. She mistakes turtles for squirrels.", "links": {"website": ["https://www.twitch.tv/pony0n", "https://www.youtube.com/@pony0n"], "discord": ["SGgfUhdBzH"]}, "path": {"250-258": [[-833, -963], [-833, -967], [-823, -966], [-823, -959], [-833, -958]]}, "center": {"250-258": [-828, -962]}}, -{"id": 3221, "name": "Emotional Support Demon", "description": "The Emotional Support Demon is a plush and mascot of the YouTube channel and Twitch streamer \"The Click.\" He is very well-liked by both the LGBT and Furry communities, citing him as their main introduction to either community.", "links": {"website": ["https://www.youtube.com/@TheClick"], "subreddit": ["TheClickOwO"], "discord": ["tmnb7sr"]}, "path": {"198-258": [[-1118, 217], [-1116, 217], [-1113, 220], [-1110, 221], [-1109, 220], [-1108, 219], [-1109, 218], [-1109, 217], [-1108, 218], [-1108, 220], [-1107, 221], [-1104, 220], [-1100, 218], [-1100, 222], [-1102, 224], [-1102, 229], [-1103, 230], [-1114, 230], [-1115, 229], [-1116, 228], [-1116, 224], [-1118, 222]]}, "center": {"198-258": [-1108, 225]}}, -{"id": 3222, "name": "New York University", "description": "A private, T25 research university based in NYC.", "links": {"website": ["https://www.nyu.edu"], "subreddit": ["nyu"], "discord": ["Nuj4m3rv"]}, "path": {"250-258": [[645, 922], [665, 922], [665, 934], [645, 934]]}, "center": {"250-258": [655, 928]}}, -{"id": 3223, "name": "Danke Seb", "description": "A \"Thank You\" to 4x Formula 1 World Champion Sebastian \"Seb\" Vettel by the German- and the International motorsports community. He retired at the end of the 2022 Season.", "links": {"website": ["https://www.theguardian.com/sport/blog/2022/nov/21/danke-seb-f1-bids-fond-farewell-to-retiring-sebastian-vettel-after-16-years"]}, "path": {"233-258": [[160, -966], [192, -966], [192, -962], [160, -962]]}, "center": {"233-258": [176, -964]}}, +{"id": 3214, "name": "Will You Snail - German", "description": "Shelly and Squid from the indie game Will You Snail above the letters representing the game.", "links": {"subreddit": ["willyousnail", "placeloona"]}, "path": {"164-214": [[-539, -964], [-554, -964], [-554, -938], [-539, -938]], "215-258, T": [[-560, -964], [-546, -964], [-546, -938], [-560, -938]]}, "center": {"164-214": [-546, -951], "215-258, T": [-553, -951]}}, +{"id": 3215, "name": "Sword of Protection", "description": "The Sword of Protection is a sword from the 2018 Netflix show She-ra and the Princesses of Power. This particular version is from season 5, when the sword got a new look due to the events of the story.\n\nThis art was made in collaboration with Berserk for the Hill of Swords.", "links": {"website": ["https://she-raandtheprincessesofpower.fandom.com/wiki/Sword_of_Protection"], "subreddit": ["PrincessesOfPower", "Berserk"], "discord": ["V7X2DWc2", "M699v8xSqz"]}, "path": {"192-258, T": [[559, 966], [567, 966], [567, 964], [566, 964], [566, 961], [567, 960], [567, 957], [565, 956], [565, 952], [563, 951], [561, 953], [561, 956], [559, 957], [559, 962], [560, 962], [559, 964]]}, "center": {"192-258, T": [563, 959]}}, +{"id": 3216, "name": "Fack Ju Spez Grafitti", "description": "Reference to the german movie series \"Fack Ju Göthe\", but instead using Spez because it sounds like \"fuck you spez\". The Grafitti was created to protest the recent API changes of Reddit", "links": {"website": ["https://en.wikipedia.org/wiki/Fack_ju_G%C3%B6hte"], "subreddit": ["placeDE"]}, "path": {"216-258, T": [[-1274, -383], [-1274, -371], [-1202, -371], [-1202, -384]]}, "center": {"216-258, T": [-1222, -377]}}, +{"id": 3217, "name": "ipandarina", "description": "Content creator for KOI esports club and mother of Shilka and Neo, her dog and cat. She made famous \"The Isle\" in the spanish community. She is very well known for dropping games.", "links": {"website": ["https://www.twitch.tv/ipandarina"], "subreddit": ["Pandarina"]}, "path": {"207-258, T": [[1035, 282], [1048, 282], [1048, 304], [1035, 304]]}, "center": {"207-258, T": [1042, 293]}}, +{"id": 3218, "name": "Sabaton Logo", "description": "The Logo of the Heavy Metal band Sabaton", "links": {"subreddit": ["sabaton"], "discord": ["H2rHpXvxR3"]}, "path": {"205-258, T": [[1264, 12], [1269, 7], [1275, 13], [1275, 21], [1269, 24], [1263, 19], [1263, 12]]}, "center": {"205-258, T": [1269, 16]}}, +{"id": 3219, "name": "Texas", "description": "Texas flag after moving 8 times featuring Longhorn, Blue Bonnets and the Alamo with its own Tiny Tex.", "links": {"discord": ["HdKuyCGfHp"]}, "path": {"162-258, T": [[-870, 818], [-825, 818], [-825, 840], [-870, 841], [-870, 827], [-870, 818], [-870, 819]]}, "center": {"162-258, T": [-848, 829]}}, +{"id": 3220, "name": "Peepo Pony0n", "description": "The Mexican voice actress and streamer Pony0n popularly called \"CHURRONEITOR\" \"CACHALOTA\" \"ENANA\"\nShe really likes ketchup and saying WEBOS. She has a strange sense of humor, but she is very funny and endearing. She mistakes turtles for squirrels.", "links": {"website": ["https://www.twitch.tv/pony0n", "https://www.youtube.com/@pony0n"], "discord": ["SGgfUhdBzH"]}, "path": {"250-258, T": [[-833, -963], [-833, -967], [-823, -966], [-823, -959], [-833, -958]]}, "center": {"250-258, T": [-828, -962]}}, +{"id": 3221, "name": "Emotional Support Demon", "description": "The Emotional Support Demon is a plush and mascot of the YouTube channel and Twitch streamer \"The Click.\" He is very well-liked by both the LGBT and Furry communities, citing him as their main introduction to either community.", "links": {"website": ["https://www.youtube.com/@TheClick"], "subreddit": ["TheClickOwO"], "discord": ["tmnb7sr"]}, "path": {"198-258, T": [[-1118, 217], [-1116, 217], [-1113, 220], [-1110, 221], [-1109, 220], [-1108, 219], [-1109, 218], [-1109, 217], [-1108, 218], [-1108, 220], [-1107, 221], [-1104, 220], [-1100, 218], [-1100, 222], [-1102, 224], [-1102, 229], [-1103, 230], [-1114, 230], [-1115, 229], [-1116, 228], [-1116, 224], [-1118, 222]]}, "center": {"198-258, T": [-1108, 225]}}, +{"id": 3222, "name": "New York University", "description": "A private, T25 research university based in NYC.", "links": {"website": ["https://www.nyu.edu"], "subreddit": ["nyu"], "discord": ["Nuj4m3rv"]}, "path": {"250-258, T": [[645, 922], [665, 922], [665, 934], [645, 934]]}, "center": {"250-258, T": [655, 928]}}, +{"id": 3223, "name": "Danke Seb", "description": "A \"Thank You\" to 4x Formula 1 World Champion Sebastian \"Seb\" Vettel by the German- and the International motorsports community. He retired at the end of the 2022 Season.", "links": {"website": ["https://www.theguardian.com/sport/blog/2022/nov/21/danke-seb-f1-bids-fond-farewell-to-retiring-sebastian-vettel-after-16-years"]}, "path": {"233-258, T": [[160, -966], [192, -966], [192, -962], [160, -962]]}, "center": {"233-258, T": [176, -964]}}, {"id": 3224, "name": "Keylor Navas", "description": "Keylor Antonio Navas Gamboa is a Costa Rican footballer who plays as a goalkeeper for Paris Saint-Germain F.C. in Ligue 1 of France. He is the goalkeeper with the most appearances for the Costa Rica national team.", "links": {"subreddit": ["Ticos"]}, "path": {"216": [[-1051, -368], [-1054, -364], [-1056, -362], [-1043, -335], [-1033, -326], [-1031, -324], [-1004, -323], [-1004, -329], [-1002, -335], [-1002, -347], [-1007, -356], [-1008, -363], [-1013, -368], [-1017, -366], [-1017, -364], [-1018, -359], [-1011, -353], [-1009, -343], [-1011, -337], [-1014, -336], [-1011, -343], [-1015, -348], [-1021, -349], [-1026, -346], [-1026, -342], [-1026, -335], [-1026, -334], [-1033, -337], [-1040, -345], [-1045, -351], [-1049, -364]]}, "center": {"216": [-1019, -331]}}, -{"id": 3225, "name": "Hatsune Miku Head", "description": "A small Hatsune Miku head made in collaboration with the Jerma r/place and Hatsune Miku community. Jerma has played \"Hatsune Miku: Project DIVA Mega Mix\" and \"Hatsune Miku Logic Paint S\" on his twitch.", "links": {"website": ["https://ec.crypton.co.jp/pages/prod/virtualsinger/cv01_us", "https://en.wikipedia.org/wiki/Hatsune_Miku"], "subreddit": ["hatsune", "jerma985"], "discord": ["hatsune", "jerma"]}, "path": {"226-258": [[-1089, 117], [-1090, 118], [-1091, 120], [-1092, 122], [-1092, 126], [-1091, 127], [-1090, 130], [-1089, 127], [-1079, 127], [-1077, 127], [-1076, 130], [-1075, 130], [-1074, 122], [-1075, 119], [-1076, 118], [-1077, 117], [-1082, 117], [-1082, 115], [-1083, 116], [-1084, 118], [-1088, 117]]}, "center": {"226-258": [-1080, 122]}}, -{"id": 3226, "name": "Top Model Luluca Pog", "description": "A character named Top Model Luluca from Epic Seven. Epic Seven is a free-to-play 2D RPG available on iOS and Android platforms. Control a variety of characters as you explore the game's world through its adventure mode, which is brought to life with anime cutscenes that detail the game story as well as individual character special attacks.", "links": {"website": ["https://epic7.smilegatemegaport.com/"], "subreddit": ["EpicSeven"], "discord": ["officialepicseven", "epicseven"]}, "path": {"250-258": [[-1096, -323], [-1073, -323], [-1073, -296], [-1096, -296]]}, "center": {"250-258": [-1084, -309]}}, -{"id": 3227, "name": "Sistema Único de Saúde (SUS)", "description": "The Sistema Único de Saúde (Unified Health System), better known by the acronym SUS, is Brazil's publicly funded health care system. Created in 1989, the SUS is the largest government-run public health care system in the world, by number of beneficiaries/users (virtually 100% of the Brazilian population; 220 million people), land area coverage (3.3 million square miles), and affiliated network/number of treatment centers (over 50,000 clinics). The system is entirely free of any cost at the point of service for any person, including foreigners. Defenda o sus!\n\n\"Health is a right of all and a duty of the State and shall be guaranteed by means of\\nsocial and economic policies aimed at reducing the risk of illness and other hazards and at the\\nuniversal and equal access to actions and services for its promotion, protection and recovery.\n\nArticle 196. of Brazil´s 1988 Constitution", "links": {"website": ["https://conectesus-paciente.saude.gov.br/", "https://en.wikipedia.org/wiki/Sistema_Único_de_Saúde"], "subreddit": ["brasil"]}, "path": {"250-258": [[173, 500], [173, 494], [160, 494], [160, 500]]}, "center": {"250-258": [167, 497]}}, -{"id": 3228, "name": "programming.dev", "description": "programming.dev is a Reddit alternative focused around topics relating to programmers. Initially set up next to Black Company, they reached out to that group to join forces and get the logo established as part of their template in a safer spot.", "links": {"website": ["https://programming.dev"], "discord": ["kwyxvYEYt4"]}, "path": {"8-12": [[77, 0], [77, -8], [88, -8], [88, 0]], "13-258": [[51, -10], [51, -4], [54, -4], [60, -5], [61, -7], [61, -10]]}, "center": {"8-12": [83, -4], "13-258": [54, -7]}}, -{"id": 3229, "name": "New York University", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/New_York_University"], "subreddit": ["nyu"]}, "path": {"172-258": [[644, 935], [644, 921], [666, 921], [666, 935]]}, "center": {"172-258": [655, 928]}}, -{"id": 3230, "name": "Lituanica", "description": "Lituanica was a Bellanca CH-300 Pacemaker airplane flown from the United States across the Atlantic Ocean by Lithuanian pilots Steponas Darius and Stasys Girėnas in 1933. Pixel art was done by streamers LTURepublic viewers.", "links": {}, "path": {"199-213": [[-98, -14], [-97, -14], [-95, -16], [-92, -14], [-89, -17], [-89, -21], [-88, -21], [-89, -22], [-88, -23], [-88, -24], [-82, -24], [-109, -24], [-110, -26], [-111, -25], [-112, -26], [-112, -25], [-117, -25], [-113, -24], [-116, -23], [-112, -23], [-112, -22], [-110, -22], [-110, -21], [-111, -20], [-110, -21], [-108, -20], [-102, -20], [-102, -19], [-100, -20], [-98, -17], [-99, -16], [-98, -15]], "237-258": [[-111, -10], [-111, -8], [-116, -8], [-113, -7], [-115, -6], [-112, -6], [-110, -4], [-110, -3], [-109, -4], [-108, -3], [-105, -3], [-104, -2], [-101, -2], [-100, -1], [-97, -1], [-97, 0], [-98, 1], [-98, 2], [-97, 3], [-96, 3], [-95, 2], [-94, 1], [-93, 1], [-93, 2], [-92, 3], [-91, 3], [-90, 2], [-90, 0], [-89, 0], [-89, -2], [-88, -2], [-88, -4], [-87, -4], [-88, -5], [-87, -6], [-87, -7], [-81, -7], [-108, -7], [-109, -9], [-109, -10]]}, "center": {"199-213": [-93, -20], "237-258": [-93, -3]}}, -{"id": 3231, "name": "Alexis Sanchez", "description": "Alexis Sanchez is a football player that plays internationally with Chile. He's part of the \"Golden Generation\" of Chilean football and was the most important player to gain the two only international cups that the National Team has.", "links": {"website": ["https://es.wikipedia.org/wiki/Alexis_S%C3%A1nchez"], "subreddit": ["chile"], "discord": ["placechile"]}, "path": {"126-258": [[-840, -757], [-840, -760], [-840, -762], [-838, -762], [-838, -763], [-837, -763], [-836, -764], [-836, -770], [-836, -777], [-839, -777], [-839, -778], [-842, -778], [-842, -779], [-844, -779], [-844, -780], [-846, -780], [-846, -781], [-848, -781], [-849, -782], [-850, -782], [-850, -787], [-849, -788], [-848, -789], [-849, -790], [-849, -791], [-848, -792], [-848, -794], [-848, -795], [-849, -795], [-850, -795], [-850, -798], [-850, -799], [-849, -799], [-843, -806], [-843, -811], [-842, -811], [-841, -812], [-841, -822], [-838, -822], [-838, -823], [-837, -823], [-837, -824], [-836, -824], [-836, -825], [-836, -826], [-835, -826], [-834, -826], [-833, -826], [-832, -826], [-831, -826], [-831, -827], [-830, -827], [-824, -827], [-823, -826], [-822, -826], [-821, -826], [-820, -825], [-817, -825], [-816, -824], [-812, -824], [-810, -822], [-808, -822], [-807, -821], [-805, -821], [-802, -818], [-801, -817], [-801, -816], [-800, -815], [-798, -813], [-797, -812], [-798, -811], [-799, -810], [-799, -807], [-800, -806], [-800, -805], [-801, -804], [-801, -801], [-802, -800], [-802, -797], [-803, -796], [-803, -794], [-804, -793], [-804, -792], [-809, -787], [-809, -780], [-785, -756], [-785, -755], [-838, -755], [-838, -757], [-839, -757]]}, "center": {"126-258": [-822, -803]}}, -{"id": 3232, "name": "VA-11 HALL-A Logo", "description": "The logo of VA-11 HALL-A: Cyberpunk Bartender Action, a 2016 visual novel developed by Venezuelan studio Sukeban games.", "links": {"website": ["https://www.waifubartending.com/"], "subreddit": ["waifubartending"]}, "path": {"250-258": [[-109, 953], [-61, 953], [-61, 961], [-109, 961]]}, "center": {"250-258": [-85, 957]}}, -{"id": 3233, "name": "Simón Bolívar", "description": "Simón José Antonio de la Santísima Trinidad Bolívar Palacios Ponte y Blanco (24 July 1783 – 17 December 1830) was a Venezuelan military and political leader who led what are currently the countries of Colombia, Venezuela, Ecuador, Peru, Panama and Bolivia to independence from the Spanish Empire.", "links": {"website": ["https://en.wikipedia.org/wiki/Simón_Bolívar"], "subreddit": ["vzla", "placevenezuela"]}, "path": {"169-258": [[-901, 321], [-901, 303], [-903, 303], [-903, 291], [-900, 290], [-900, 288], [-900, 281], [-897, 278], [-895, 278], [-893, 280], [-893, 286], [-892, 286], [-894, 287], [-894, 290], [-891, 291], [-891, 293], [-891, 297], [-890, 303], [-877, 316], [-879, 316], [-892, 303], [-893, 303], [-895, 321], [-897, 320]]}, "center": {"169-258": [-897, 296]}}, -{"id": 3235, "name": "Twenty One Pilots - Trench", "description": "Trench is the fifth studio album by American musical duo Twenty One Pilots. It was released on October 5, 2018 through Fueled by Ramen. It was the band's first studio album in three years, after the breakthrough success of their previous album, Blurryface (2015). Recorded in secret during a year-long public silence, it is a concept album which explores mental health, suicide, and doubt, themes prominently featured in the band's previous works, framed in the metaphorical city of Dema and the surrounding valley known as \"Trench\".[1] The album was also the first release of the newly revived Elektra Music Group.", "links": {"website": ["https://www.twentyonepilots.com"], "subreddit": ["twentyonepilots"]}, "path": {"250-258": [[-1213, -257], [-1200, -257], [-1200, -248], [-1213, -248], [-1213, -256]]}, "center": {"250-258": [-1206, -252]}}, -{"id": 3236, "name": "Iron Man", "description": "The mask of Iron Man made by Marvel Place", "links": {"subreddit": ["Marvel_Place"], "discord": ["wpAs32st"]}, "path": {"234-258": [[-1419, 89], [-1418, 89], [-1418, 88], [-1411, 88], [-1411, 89], [-1410, 89], [-1410, 97], [-1411, 97], [-1411, 98], [-1412, 98], [-1412, 99], [-1417, 99], [-1417, 98], [-1418, 98], [-1418, 97], [-1419, 97]]}, "center": {"234-258": [-1414, 93]}}, -{"id": 3237, "name": "Marcelo Martins Moreno", "description": "Marcelo Martins Moreno, known as Marcelo Martins in Bolivia and as Marcelo Moreno in other countries, is a Bolivian professional footballer who captains the Bolivia national team. He is considered one of the greatest Bolivian players of all time. With 31 goals, he is the national team's all-time top goalscorer.", "links": {"website": ["https://www.instagram.com/marcelo_moreno/", "https://en.wikipedia.org/wiki/Marcelo_Martins_Moreno"]}, "path": {"250-258": [[202, -39], [208, -46], [212, -45], [217, -44], [219, -46], [223, -45], [226, -40], [224, -37], [220, -40], [220, -26], [209, -26], [209, -40], [204, -36]]}, "center": {"250-258": [215, -38]}}, -{"id": 3238, "name": "Republic of Vicanistán", "description": "Vicanistán is a fictional country organized by the city of Ramos Mejía, Argentina. The nation is hosted on a discord server of the same name.\n\nThe Vikanniskaya Nation is governed under an Absolute Darwinist Monarchy, a system of government that consists of attributing all power to a \"Gran Líder\". The leader is elected through a competition system that confronts the heads of the Vicanistan \"Casas\", who dispute the throne in a game tournament called The Leader's Cup.", "links": {"discord": ["hWB3kbgZEA"]}, "path": {"250-258": [[1473, 224], [1473, 229], [1482, 229], [1482, 224]]}, "center": {"250-258": [1478, 227]}}, +{"id": 3225, "name": "Hatsune Miku Head", "description": "A small Hatsune Miku head made in collaboration with the Jerma r/place and Hatsune Miku community. Jerma has played \"Hatsune Miku: Project DIVA Mega Mix\" and \"Hatsune Miku Logic Paint S\" on his twitch.", "links": {"website": ["https://ec.crypton.co.jp/pages/prod/virtualsinger/cv01_us", "https://en.wikipedia.org/wiki/Hatsune_Miku"], "subreddit": ["hatsune", "jerma985"], "discord": ["hatsune", "jerma"]}, "path": {"226-258, T": [[-1089, 117], [-1090, 118], [-1091, 120], [-1092, 122], [-1092, 126], [-1091, 127], [-1090, 130], [-1089, 127], [-1079, 127], [-1077, 127], [-1076, 130], [-1075, 130], [-1074, 122], [-1075, 119], [-1076, 118], [-1077, 117], [-1082, 117], [-1082, 115], [-1083, 116], [-1084, 118], [-1088, 117]]}, "center": {"226-258, T": [-1080, 122]}}, +{"id": 3226, "name": "Top Model Luluca Pog", "description": "A character named Top Model Luluca from Epic Seven. Epic Seven is a free-to-play 2D RPG available on iOS and Android platforms. Control a variety of characters as you explore the game's world through its adventure mode, which is brought to life with anime cutscenes that detail the game story as well as individual character special attacks.", "links": {"website": ["https://epic7.smilegatemegaport.com/"], "subreddit": ["EpicSeven"], "discord": ["officialepicseven", "epicseven"]}, "path": {"250-258, T": [[-1096, -323], [-1073, -323], [-1073, -296], [-1096, -296]]}, "center": {"250-258, T": [-1084, -309]}}, +{"id": 3227, "name": "Sistema Único de Saúde (SUS)", "description": "The Sistema Único de Saúde (Unified Health System), better known by the acronym SUS, is Brazil's publicly funded health care system. Created in 1989, the SUS is the largest government-run public health care system in the world, by number of beneficiaries/users (virtually 100% of the Brazilian population; 220 million people), land area coverage (3.3 million square miles), and affiliated network/number of treatment centers (over 50,000 clinics). The system is entirely free of any cost at the point of service for any person, including foreigners. Defenda o sus!\n\n\"Health is a right of all and a duty of the State and shall be guaranteed by means of\\nsocial and economic policies aimed at reducing the risk of illness and other hazards and at the\\nuniversal and equal access to actions and services for its promotion, protection and recovery.\n\nArticle 196. of Brazil´s 1988 Constitution", "links": {"website": ["https://conectesus-paciente.saude.gov.br/", "https://en.wikipedia.org/wiki/Sistema_Único_de_Saúde"], "subreddit": ["brasil"]}, "path": {"250-258, T": [[173, 500], [173, 494], [160, 494], [160, 500]]}, "center": {"250-258, T": [167, 497]}}, +{"id": 3228, "name": "programming.dev", "description": "programming.dev is a Reddit alternative focused around topics relating to programmers. Initially set up next to Black Company, they reached out to that group to join forces and get the logo established as part of their template in a safer spot.", "links": {"website": ["https://programming.dev"], "discord": ["kwyxvYEYt4"]}, "path": {"8-12": [[77, 0], [77, -8], [88, -8], [88, 0]], "13-258, T": [[51, -10], [51, -4], [54, -4], [60, -5], [61, -7], [61, -10]]}, "center": {"8-12": [83, -4], "13-258, T": [54, -7]}}, +{"id": 3229, "name": "New York University", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/New_York_University"], "subreddit": ["nyu"]}, "path": {"172-258, T": [[644, 935], [644, 921], [666, 921], [666, 935]]}, "center": {"172-258, T": [655, 928]}}, +{"id": 3230, "name": "Lituanica", "description": "Lituanica was a Bellanca CH-300 Pacemaker airplane flown from the United States across the Atlantic Ocean by Lithuanian pilots Steponas Darius and Stasys Girėnas in 1933. Pixel art was done by streamers LTURepublic viewers.", "links": {}, "path": {"199-213": [[-98, -14], [-97, -14], [-95, -16], [-92, -14], [-89, -17], [-89, -21], [-88, -21], [-89, -22], [-88, -23], [-88, -24], [-82, -24], [-109, -24], [-110, -26], [-111, -25], [-112, -26], [-112, -25], [-117, -25], [-113, -24], [-116, -23], [-112, -23], [-112, -22], [-110, -22], [-110, -21], [-111, -20], [-110, -21], [-108, -20], [-102, -20], [-102, -19], [-100, -20], [-98, -17], [-99, -16], [-98, -15]], "237-258, T": [[-111, -10], [-111, -8], [-116, -8], [-113, -7], [-115, -6], [-112, -6], [-110, -4], [-110, -3], [-109, -4], [-108, -3], [-105, -3], [-104, -2], [-101, -2], [-100, -1], [-97, -1], [-97, 0], [-98, 1], [-98, 2], [-97, 3], [-96, 3], [-95, 2], [-94, 1], [-93, 1], [-93, 2], [-92, 3], [-91, 3], [-90, 2], [-90, 0], [-89, 0], [-89, -2], [-88, -2], [-88, -4], [-87, -4], [-88, -5], [-87, -6], [-87, -7], [-81, -7], [-108, -7], [-109, -9], [-109, -10]]}, "center": {"199-213": [-93, -20], "237-258, T": [-93, -3]}}, +{"id": 3231, "name": "Alexis Sanchez", "description": "Alexis Sanchez is a football player that plays internationally with Chile. He's part of the \"Golden Generation\" of Chilean football and was the most important player to gain the two only international cups that the National Team has.", "links": {"website": ["https://es.wikipedia.org/wiki/Alexis_S%C3%A1nchez"], "subreddit": ["chile"], "discord": ["placechile"]}, "path": {"126-258, T": [[-840, -757], [-840, -760], [-840, -762], [-838, -762], [-838, -763], [-837, -763], [-836, -764], [-836, -770], [-836, -777], [-839, -777], [-839, -778], [-842, -778], [-842, -779], [-844, -779], [-844, -780], [-846, -780], [-846, -781], [-848, -781], [-849, -782], [-850, -782], [-850, -787], [-849, -788], [-848, -789], [-849, -790], [-849, -791], [-848, -792], [-848, -794], [-848, -795], [-849, -795], [-850, -795], [-850, -798], [-850, -799], [-849, -799], [-843, -806], [-843, -811], [-842, -811], [-841, -812], [-841, -822], [-838, -822], [-838, -823], [-837, -823], [-837, -824], [-836, -824], [-836, -825], [-836, -826], [-835, -826], [-834, -826], [-833, -826], [-832, -826], [-831, -826], [-831, -827], [-830, -827], [-824, -827], [-823, -826], [-822, -826], [-821, -826], [-820, -825], [-817, -825], [-816, -824], [-812, -824], [-810, -822], [-808, -822], [-807, -821], [-805, -821], [-802, -818], [-801, -817], [-801, -816], [-800, -815], [-798, -813], [-797, -812], [-798, -811], [-799, -810], [-799, -807], [-800, -806], [-800, -805], [-801, -804], [-801, -801], [-802, -800], [-802, -797], [-803, -796], [-803, -794], [-804, -793], [-804, -792], [-809, -787], [-809, -780], [-785, -756], [-785, -755], [-838, -755], [-838, -757], [-839, -757]]}, "center": {"126-258, T": [-822, -803]}}, +{"id": 3232, "name": "VA-11 HALL-A Logo", "description": "The logo of VA-11 HALL-A: Cyberpunk Bartender Action, a 2016 visual novel developed by Venezuelan studio Sukeban games.", "links": {"website": ["https://www.waifubartending.com/"], "subreddit": ["waifubartending"]}, "path": {"250-258, T": [[-109, 953], [-61, 953], [-61, 961], [-109, 961]]}, "center": {"250-258, T": [-85, 957]}}, +{"id": 3233, "name": "Simón Bolívar", "description": "Simón José Antonio de la Santísima Trinidad Bolívar Palacios Ponte y Blanco (24 July 1783 – 17 December 1830) was a Venezuelan military and political leader who led what are currently the countries of Colombia, Venezuela, Ecuador, Peru, Panama and Bolivia to independence from the Spanish Empire.", "links": {"website": ["https://en.wikipedia.org/wiki/Simón_Bolívar"], "subreddit": ["vzla", "placevenezuela"]}, "path": {"169-258, T": [[-901, 321], [-901, 303], [-903, 303], [-903, 291], [-900, 290], [-900, 288], [-900, 281], [-897, 278], [-895, 278], [-893, 280], [-893, 286], [-892, 286], [-894, 287], [-894, 290], [-891, 291], [-891, 293], [-891, 297], [-890, 303], [-877, 316], [-879, 316], [-892, 303], [-893, 303], [-895, 321], [-897, 320]]}, "center": {"169-258, T": [-897, 296]}}, +{"id": 3235, "name": "Twenty One Pilots - Trench", "description": "Trench is the fifth studio album by American musical duo Twenty One Pilots. It was released on October 5, 2018 through Fueled by Ramen. It was the band's first studio album in three years, after the breakthrough success of their previous album, Blurryface (2015). Recorded in secret during a year-long public silence, it is a concept album which explores mental health, suicide, and doubt, themes prominently featured in the band's previous works, framed in the metaphorical city of Dema and the surrounding valley known as \"Trench\".[1] The album was also the first release of the newly revived Elektra Music Group.", "links": {"website": ["https://www.twentyonepilots.com"], "subreddit": ["twentyonepilots"]}, "path": {"250-258, T": [[-1213, -257], [-1200, -257], [-1200, -248], [-1213, -248], [-1213, -256]]}, "center": {"250-258, T": [-1206, -252]}}, +{"id": 3236, "name": "Iron Man", "description": "The mask of Iron Man made by Marvel Place", "links": {"subreddit": ["Marvel_Place"], "discord": ["wpAs32st"]}, "path": {"234-258, T": [[-1419, 89], [-1418, 89], [-1418, 88], [-1411, 88], [-1411, 89], [-1410, 89], [-1410, 97], [-1411, 97], [-1411, 98], [-1412, 98], [-1412, 99], [-1417, 99], [-1417, 98], [-1418, 98], [-1418, 97], [-1419, 97]]}, "center": {"234-258, T": [-1414, 93]}}, +{"id": 3237, "name": "Marcelo Martins Moreno", "description": "Marcelo Martins Moreno, known as Marcelo Martins in Bolivia and as Marcelo Moreno in other countries, is a Bolivian professional footballer who captains the Bolivia national team. He is considered one of the greatest Bolivian players of all time. With 31 goals, he is the national team's all-time top goalscorer.", "links": {"website": ["https://www.instagram.com/marcelo_moreno/", "https://en.wikipedia.org/wiki/Marcelo_Martins_Moreno"]}, "path": {"250-258, T": [[202, -39], [208, -46], [212, -45], [217, -44], [219, -46], [223, -45], [226, -40], [224, -37], [220, -40], [220, -26], [209, -26], [209, -40], [204, -36]]}, "center": {"250-258, T": [215, -38]}}, +{"id": 3238, "name": "Republic of Vicanistán", "description": "Vicanistán is a fictional country organized by the city of Ramos Mejía, Argentina. The nation is hosted on a discord server of the same name.\n\nThe Vikanniskaya Nation is governed under an Absolute Darwinist Monarchy, a system of government that consists of attributing all power to a \"Gran Líder\". The leader is elected through a competition system that confronts the heads of the Vicanistan \"Casas\", who dispute the throne in a game tournament called The Leader's Cup.", "links": {"discord": ["hWB3kbgZEA"]}, "path": {"250-258, T": [[1473, 224], [1473, 229], [1482, 229], [1482, 224]]}, "center": {"250-258, T": [1478, 227]}}, {"id": 3239, "name": "Gartic Phone", "description": "Gartic Phone Logo Made by a few gartic streamers (Original Pixel Art by Zoppy)", "links": {"website": ["https://garticphone.com/en"], "subreddit": ["ACTUALLYGOODGARTIC"], "discord": ["gartic"]}, "path": {"34-41": [[-203, 109], [-219, 108], [-222, 114], [-227, 114], [-228, 124], [-225, 124], [-224, 121], [-220, 121], [-219, 120], [-211, 120], [-211, 121], [-206, 121], [-205, 120], [-204, 116]]}, "center": {"34-41": [-215, 114]}}, -{"id": 3240, "name": "Coxinha", "description": "Coxinha (Portuguese: [koˈʃĩɲɐ], little [chicken] thigh) is a popular food in Brazil consisting of chopped or shredded chicken meat, covered in dough, molded into a shape resembling a teardrop, battered and fried.", "links": {"website": ["https://en.wikipedia.org/wiki/Coxinha"]}, "path": {"250-258": [[-650, -704], [-648, -704], [-648, -705], [-648, -706], [-648, -707], [-647, -707], [-647, -708], [-646, -708], [-646, -709], [-645, -709], [-645, -710], [-644, -710], [-644, -711], [-643, -711], [-643, -712], [-642, -712], [-642, -713], [-639, -713], [-639, -712], [-638, -712], [-638, -711], [-637, -711], [-637, -710], [-636, -710], [-636, -709], [-635, -709], [-635, -708], [-634, -708], [-634, -707], [-633, -707], [-633, -705], [-630, -705], [-630, -704], [-629, -704], [-629, -703], [-628, -703], [-628, -700], [-629, -700], [-629, -699], [-630, -699], [-631, -698], [-632, -698], [-632, -697], [-649, -697], [-649, -698], [-650, -698], [-651, -698], [-651, -699], [-652, -699], [-652, -700], [-653, -700], [-653, -701]]}, "center": {"250-258": [-640, -704]}}, -{"id": 3241, "name": "Biff the Wolverine", "description": "An alternate logo for the University of Michigan Wolverines. It was introduced as a patch on the football uniform in a 1962 game against Army and was worn for at least one other game against Michigan State. It was only given to players who played on a defensive unit nicknamed \"The Raiders.\"\n\nSometimes called the \"Wolverbear,\" the logo was nicknamed Biff by the Discord organizers. The name was adopted from one of the two original live Wolverine mascots in the mid-1920s.", "links": {"subreddit": ["UofM", "MichiganWolverines"]}, "path": {"172-258": [[-559, 696], [-559, 729], [-531, 736], [-522, 729], [-518, 720], [-519, 703], [-525, 696]]}, "center": {"172-258": [-537, 715]}}, -{"id": 3242, "name": "Vibri", "description": "Vibri is the main protagonist of the games Vib-Ribbon and Vib-Ripple. She does not appear in Mojib-Ribbon and her backstory is largely unknown, as are her motivations. She is presumably a wanderer, as she appears in the Music World in her first game and an unknown location in her next.", "links": {"discord": ["fANxd8jyAJ"]}, "path": {"250-258": [[-1451, -249], [-1451, -256], [-1444, -256], [-1444, -261], [-1418, -262], [-1421, -268], [-1418, -277], [-1403, -277], [-1403, -247], [-1450, -248]]}, "center": {"250-258": [-1412, -256]}}, -{"id": 3243, "name": "Betty, la fea", "description": "Betty la fea from Yo Soy Betty, La Fea. The character comes form a Colombian written and produced telenovela that first appeared on the Colombian channel RCN. The story's premise soon gained worldwide popularity and dubbed, subbed and remixed versions were made in countries across the world, earning the soap opera a variety of accolades.", "links": {"website": ["https://en.wikipedia.org/wiki/Yo_soy_Betty,_la_fea"], "subreddit": ["Colombia"]}, "path": {"222-258": [[-898, 950], [-901, 950], [-901, 941], [-902, 940], [-902, 938], [-900, 938], [-900, 935], [-901, 935], [-902, 929], [-901, 928], [-899, 926], [-892, 926], [-892, 929], [-891, 929], [-891, 931], [-892, 932], [-893, 933], [-894, 938], [-893, 938], [-893, 940], [-894, 945], [-895, 949], [-894, 950]]}, "center": {"222-258": [-897, 930]}}, -{"id": 3244, "name": "Route 1", "description": "U.S Route 1 is a major highway running north-south along the United States' East Coast. It opened in 1926 spanning from Key West, Florida to Fort Kent, Maine. \n\nAlthough it has largely been superseded by Interstate 95, it remains an iconic highway in its own right. This is especially true in the Florida Keys, in which it continues to be the sole road connecting the islands to the mainland. \n\nThe southern terminus in Key West, contains the iconic \"0 Mile Marker\" sign, the location of many a tourist's photograph or sticker.", "links": {"website": ["https://en.wikipedia.org/wiki/U.S._Route_1"]}, "path": {"173-258": [[965, 847], [965, 841], [967, 839], [967, 838], [962, 833], [961, 834], [958, 834], [956, 832], [955, 833], [952, 833], [950, 831], [948, 833], [948, 834], [947, 834], [945, 836], [945, 838], [946, 839], [945, 840], [945, 841], [943, 843], [943, 847], [944, 848], [944, 849], [947, 852], [948, 852], [949, 853], [950, 853], [951, 854], [952, 854], [953, 855], [955, 855], [956, 854], [961, 854], [962, 853], [962, 852], [965, 849], [965, 847], [968, 847], [969, 846], [970, 846], [970, 845], [974, 841], [974, 839], [975, 838], [975, 837], [976, 836], [976, 834], [974, 832], [974, 825], [978, 821], [979, 821], [979, 820], [987, 812], [987, 811], [988, 810], [988, 807], [989, 806], [989, 804], [990, 803], [990, 802], [991, 801], [992, 801], [994, 799], [993, 798], [993, 797], [992, 796], [992, 794], [991, 793], [990, 793], [990, 792], [992, 790], [993, 790], [995, 792], [995, 795], [997, 798], [998, 799], [998, 800], [994, 804], [993, 804], [993, 805], [992, 806], [992, 808], [991, 809], [991, 812], [990, 813], [990, 814], [982, 822], [982, 823], [981, 824], [980, 824], [977, 827], [977, 830], [979, 832], [979, 838], [978, 839], [978, 840], [977, 841], [977, 843], [971, 849], [971, 850], [972, 851], [972, 853], [973, 853], [977, 857], [977, 859], [978, 860], [978, 861], [979, 862], [979, 863], [980, 864], [980, 870], [979, 871], [978, 871], [977, 870], [977, 866], [976, 865], [976, 864], [975, 863], [975, 862], [974, 861], [974, 859], [969, 854], [969, 852], [968, 851], [968, 847]]}, "center": {"173-258": [955, 844]}}, -{"id": 3245, "name": "K-pop", "description": "A sign displaying K-Pop in Hangul (the writing system of the Korean language). A signifier for the K-pop block above. Often vandalised to read as gay-pop.\n\nThis space was generously donated by the Vtuber section and negotiated with the Sewerslvt fandom. It was placed behind the Gigachad Oppa.", "links": {"discord": ["tpA3NruzYB"]}, "path": {"250-258": [[-119, -863], [-107, -863], [-107, -838], [-119, -830]]}, "center": {"250-258": [-113, -846]}}, +{"id": 3240, "name": "Coxinha", "description": "Coxinha (Portuguese: [koˈʃĩɲɐ], little [chicken] thigh) is a popular food in Brazil consisting of chopped or shredded chicken meat, covered in dough, molded into a shape resembling a teardrop, battered and fried.", "links": {"website": ["https://en.wikipedia.org/wiki/Coxinha"]}, "path": {"250-258, T": [[-650, -704], [-648, -704], [-648, -705], [-648, -706], [-648, -707], [-647, -707], [-647, -708], [-646, -708], [-646, -709], [-645, -709], [-645, -710], [-644, -710], [-644, -711], [-643, -711], [-643, -712], [-642, -712], [-642, -713], [-639, -713], [-639, -712], [-638, -712], [-638, -711], [-637, -711], [-637, -710], [-636, -710], [-636, -709], [-635, -709], [-635, -708], [-634, -708], [-634, -707], [-633, -707], [-633, -705], [-630, -705], [-630, -704], [-629, -704], [-629, -703], [-628, -703], [-628, -700], [-629, -700], [-629, -699], [-630, -699], [-631, -698], [-632, -698], [-632, -697], [-649, -697], [-649, -698], [-650, -698], [-651, -698], [-651, -699], [-652, -699], [-652, -700], [-653, -700], [-653, -701]]}, "center": {"250-258, T": [-640, -704]}}, +{"id": 3241, "name": "Biff the Wolverine", "description": "An alternate logo for the University of Michigan Wolverines. It was introduced as a patch on the football uniform in a 1962 game against Army and was worn for at least one other game against Michigan State. It was only given to players who played on a defensive unit nicknamed \"The Raiders.\"\n\nSometimes called the \"Wolverbear,\" the logo was nicknamed Biff by the Discord organizers. The name was adopted from one of the two original live Wolverine mascots in the mid-1920s.", "links": {"subreddit": ["UofM", "MichiganWolverines"]}, "path": {"172-258, T": [[-559, 696], [-559, 729], [-531, 736], [-522, 729], [-518, 720], [-519, 703], [-525, 696]]}, "center": {"172-258, T": [-537, 715]}}, +{"id": 3242, "name": "Vibri", "description": "Vibri is the main protagonist of the games Vib-Ribbon and Vib-Ripple. She does not appear in Mojib-Ribbon and her backstory is largely unknown, as are her motivations. She is presumably a wanderer, as she appears in the Music World in her first game and an unknown location in her next.", "links": {"discord": ["fANxd8jyAJ"]}, "path": {"250-258, T": [[-1451, -249], [-1451, -256], [-1444, -256], [-1444, -261], [-1418, -262], [-1421, -268], [-1418, -277], [-1403, -277], [-1403, -247], [-1450, -248]]}, "center": {"250-258, T": [-1412, -256]}}, +{"id": 3243, "name": "Betty, la fea", "description": "Betty la fea from Yo Soy Betty, La Fea. The character comes form a Colombian written and produced telenovela that first appeared on the Colombian channel RCN. The story's premise soon gained worldwide popularity and dubbed, subbed and remixed versions were made in countries across the world, earning the soap opera a variety of accolades.", "links": {"website": ["https://en.wikipedia.org/wiki/Yo_soy_Betty,_la_fea"], "subreddit": ["Colombia"]}, "path": {"222-258, T": [[-898, 950], [-901, 950], [-901, 941], [-902, 940], [-902, 938], [-900, 938], [-900, 935], [-901, 935], [-902, 929], [-901, 928], [-899, 926], [-892, 926], [-892, 929], [-891, 929], [-891, 931], [-892, 932], [-893, 933], [-894, 938], [-893, 938], [-893, 940], [-894, 945], [-895, 949], [-894, 950]]}, "center": {"222-258, T": [-897, 930]}}, +{"id": 3244, "name": "Route 1", "description": "U.S Route 1 is a major highway running north-south along the United States' East Coast. It opened in 1926 spanning from Key West, Florida to Fort Kent, Maine. \n\nAlthough it has largely been superseded by Interstate 95, it remains an iconic highway in its own right. This is especially true in the Florida Keys, in which it continues to be the sole road connecting the islands to the mainland. \n\nThe southern terminus in Key West, contains the iconic \"0 Mile Marker\" sign, the location of many a tourist's photograph or sticker.", "links": {"website": ["https://en.wikipedia.org/wiki/U.S._Route_1"]}, "path": {"173-258, T": [[965, 847], [965, 841], [967, 839], [967, 838], [962, 833], [961, 834], [958, 834], [956, 832], [955, 833], [952, 833], [950, 831], [948, 833], [948, 834], [947, 834], [945, 836], [945, 838], [946, 839], [945, 840], [945, 841], [943, 843], [943, 847], [944, 848], [944, 849], [947, 852], [948, 852], [949, 853], [950, 853], [951, 854], [952, 854], [953, 855], [955, 855], [956, 854], [961, 854], [962, 853], [962, 852], [965, 849], [965, 847], [968, 847], [969, 846], [970, 846], [970, 845], [974, 841], [974, 839], [975, 838], [975, 837], [976, 836], [976, 834], [974, 832], [974, 825], [978, 821], [979, 821], [979, 820], [987, 812], [987, 811], [988, 810], [988, 807], [989, 806], [989, 804], [990, 803], [990, 802], [991, 801], [992, 801], [994, 799], [993, 798], [993, 797], [992, 796], [992, 794], [991, 793], [990, 793], [990, 792], [992, 790], [993, 790], [995, 792], [995, 795], [997, 798], [998, 799], [998, 800], [994, 804], [993, 804], [993, 805], [992, 806], [992, 808], [991, 809], [991, 812], [990, 813], [990, 814], [982, 822], [982, 823], [981, 824], [980, 824], [977, 827], [977, 830], [979, 832], [979, 838], [978, 839], [978, 840], [977, 841], [977, 843], [971, 849], [971, 850], [972, 851], [972, 853], [973, 853], [977, 857], [977, 859], [978, 860], [978, 861], [979, 862], [979, 863], [980, 864], [980, 870], [979, 871], [978, 871], [977, 870], [977, 866], [976, 865], [976, 864], [975, 863], [975, 862], [974, 861], [974, 859], [969, 854], [969, 852], [968, 851], [968, 847]]}, "center": {"173-258, T": [955, 844]}}, +{"id": 3245, "name": "K-pop", "description": "A sign displaying K-Pop in Hangul (the writing system of the Korean language). A signifier for the K-pop block above. Often vandalised to read as gay-pop.\n\nThis space was generously donated by the Vtuber section and negotiated with the Sewerslvt fandom. It was placed behind the Gigachad Oppa.", "links": {"discord": ["tpA3NruzYB"]}, "path": {"250-258, T": [[-119, -863], [-107, -863], [-107, -838], [-119, -830]]}, "center": {"250-258, T": [-113, -846]}}, {"id": 3246, "name": "Firey Jr.", "description": "Firey Jr. was one of the 64 contestants in the animated YouTube series by Cary and Michael Huang, known as BFB. Here he lasted for a while but was slowly transformed into something else. He was made by someone who was bored and decided they would make this character because of their simplistic nature and small size.", "links": {"subreddit": ["bfdi"]}, "path": {"161": [[491, 82], [491, 81], [490, 81], [491, 81], [491, 80], [491, 79], [491, 80], [492, 80], [493, 80], [493, 79], [493, 80], [493, 81], [494, 81], [493, 81], [493, 82], [493, 81], [492, 81], [491, 81]]}, "center": {"161": [492, 81]}}, -{"id": 3247, "name": "Solidarność", "description": "Solidarność (Full name: Independent Self-Governing Trade Union \"Solidarity\") played a central role in the end of communist rule in Poland.", "links": {"website": ["https://en.wikipedia.org/wiki/Solidarity_(Polish_trade_union)"]}, "path": {"250-258": [[769, -126], [779, -126], [786, -125], [796, -125], [803, -123], [813, -121], [823, -122], [829, -122], [831, -120], [830, -116], [828, -108], [826, -106], [813, -105], [789, -107], [770, -109], [767, -113], [770, -123]]}, "center": {"250-258": [794, -116]}}, -{"id": 3248, "name": "Johnny Joestar (Jojo's Part 7)", "description": "The protagonist of Jojo's Bizarre Adventure Part 7: Steel Ball Run\n\nStand: Tusk\n\n\"This was the reason for \"lesson 5\". Thank you… Thank you, Gyro.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1184, -116], [-1179, -116], [-1178, -115], [-1178, -113], [-1184, -113]]}, "center": {"250-258": [-1181, -114]}}, -{"id": 3249, "name": "Model Warrior Julianne", "description": "Model Warrior Julianne is a character from a magical girl TV series in the game VA-11 Hall-A. The game's protagonist, Julianne Stingray, was a huge fan in part due to sharing first names. Being often teased in school, this led directly to her displeasure at being referred to by her full first name, although she says that it hasn't diminished her love of the show.\n\nCredits for art: Canada+Blossom - Zo8", "links": {"website": ["https://va11halla.fandom.com/wiki/Model_Warrior_Julianne", "https://waifubartending.com/", "https://en.wikipedia.org/wiki/VA-11_Hall-A"], "subreddit": ["waifubartending", "touhou"], "discord": ["apl"]}, "path": {"203-258": [[1286, 332], [1286, 365], [1312, 365], [1312, 363], [1315, 360], [1317, 360], [1317, 337], [1315, 337], [1312, 334], [1312, 332]]}, "center": {"203-258": [1302, 349]}}, -{"id": 3250, "name": "ZUGU", "description": "ZUGU is ZUGU", "links": {"website": ["https://www.twitch.tv/tumblurr"], "subreddit": ["LaStalla"]}, "path": {"250-258": [[1000, 918], [1000, 962], [901, 962], [901, 918]]}, "center": {"250-258": [951, 940]}}, -{"id": 3251, "name": "GR (GACHALIFE ROLEPLAY) GROUP LOGO", "description": "GR (GachalifeRoleplay) is a group of friends founded by EquiTTanque55\n(Thanks to Dani_XD300, Javilun, Pechugus and FerCar for helping to maintain the logo)\n(I clarify that we are not gachatubers, the name is a joke)", "links": {"discord": ["aPcgwN6g2h"]}, "path": {"172-258": [[-121, 919], [-109, 919], [-109, 935], [-121, 935]]}, "center": {"172-258": [-115, 927]}}, +{"id": 3247, "name": "Solidarność", "description": "Solidarność (Full name: Independent Self-Governing Trade Union \"Solidarity\") played a central role in the end of communist rule in Poland.", "links": {"website": ["https://en.wikipedia.org/wiki/Solidarity_(Polish_trade_union)"]}, "path": {"250-258, T": [[769, -126], [779, -126], [786, -125], [796, -125], [803, -123], [813, -121], [823, -122], [829, -122], [831, -120], [830, -116], [828, -108], [826, -106], [813, -105], [789, -107], [770, -109], [767, -113], [770, -123]]}, "center": {"250-258, T": [794, -116]}}, +{"id": 3248, "name": "Johnny Joestar (Jojo's Part 7)", "description": "The protagonist of Jojo's Bizarre Adventure Part 7: Steel Ball Run\n\nStand: Tusk\n\n\"This was the reason for \"lesson 5\". Thank you… Thank you, Gyro.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1184, -116], [-1179, -116], [-1178, -115], [-1178, -113], [-1184, -113]]}, "center": {"250-258, T": [-1181, -114]}}, +{"id": 3249, "name": "Model Warrior Julianne", "description": "Model Warrior Julianne is a character from a magical girl TV series in the game VA-11 Hall-A. The game's protagonist, Julianne Stingray, was a huge fan in part due to sharing first names. Being often teased in school, this led directly to her displeasure at being referred to by her full first name, although she says that it hasn't diminished her love of the show.\n\nCredits for art: Canada+Blossom - Zo8", "links": {"website": ["https://va11halla.fandom.com/wiki/Model_Warrior_Julianne", "https://waifubartending.com/", "https://en.wikipedia.org/wiki/VA-11_Hall-A"], "subreddit": ["waifubartending", "touhou"], "discord": ["apl"]}, "path": {"203-258, T": [[1286, 332], [1286, 365], [1312, 365], [1312, 363], [1315, 360], [1317, 360], [1317, 337], [1315, 337], [1312, 334], [1312, 332]]}, "center": {"203-258, T": [1302, 349]}}, +{"id": 3250, "name": "ZUGU", "description": "ZUGU is ZUGU", "links": {"website": ["https://www.twitch.tv/tumblurr"], "subreddit": ["LaStalla"]}, "path": {"250-258, T": [[1000, 918], [1000, 962], [901, 962], [901, 918]]}, "center": {"250-258, T": [951, 940]}}, +{"id": 3251, "name": "GR (GACHALIFE ROLEPLAY) GROUP LOGO", "description": "GR (GachalifeRoleplay) is a group of friends founded by EquiTTanque55\n(Thanks to Dani_XD300, Javilun, Pechugus and FerCar for helping to maintain the logo)\n(I clarify that we are not gachatubers, the name is a joke)", "links": {"discord": ["aPcgwN6g2h"]}, "path": {"172-258, T": [[-121, 919], [-109, 919], [-109, 935], [-121, 935]]}, "center": {"172-258, T": [-115, 927]}}, {"id": 3252, "name": "FUCK SPEZ Whiteout", "description": "The reddit community united to create a giant FUCK SPEZ sign once the canvas went grayscale.\n\nLike other instances of \"Fuck Spez\" on r/place, this message was written in protest of the recent pricing changes to the Reddit API that have killed off many third-party Reddit apps, along with Reddit CEO Steve Hoffman's (Reddit username u/spez) controversial responses to user outcry.", "links": {}, "path": {"257-258": [[1355, 778], [1354, 54], [1295, -130], [1005, -526], [1005, -544], [1289, -816], [1143, -814], [844, -515], [830, -511], [821, -512], [817, -517], [818, -813], [711, -816], [715, -124], [651, -365], [632, -366], [602, -374], [576, -387], [553, -397], [527, -319], [508, -287], [487, -255], [452, -231], [439, -223], [406, -212], [319, -211], [279, -221], [246, -239], [213, -256], [180, -293], [162, -322], [143, -391], [135, -463], [137, -532], [154, -609], [206, -685], [240, -709], [275, -726], [311, -734], [398, -734], [443, -719], [472, -701], [499, -672], [521, -632], [533, -598], [536, -576], [564, -594], [607, -607], [634, -613], [619, -668], [569, -742], [516, -786], [447, -814], [416, -821], [299, -822], [209, -795], [147, -759], [86, -693], [40, -579], [34, -547], [35, -394], [59, -308], [94, -240], [155, -178], [210, -144], [297, -116], [-328, -122], [-267, -126], [-211, -142], [-146, -184], [-102, -234], [-80, -295], [-70, -351], [-67, -863], [-155, -863], [-157, -364], [-164, -321], [-185, -265], [-225, -231], [-282, -213], [-401, -213], [-456, -236], [-496, -276], [-516, -318], [-521, -435], [-519, -870], [-600, -870], [-1004, -867], [-1002, -96], [-944, -95], [-946, 90], [-1021, 107], [-1086, 137], [-1124, 173], [-1155, 230], [-1160, 288], [-1158, 326], [-1134, 381], [-1078, 422], [-1078, 549], [-1194, 549], [-1192, 602], [-1155, 688], [-1109, 731], [-1089, 747], [-1041, 770], [-977, 785], [-938, 792], [-936, 919], [-903, 919], [-903, 793], [-819, 779], [-777, 768], [-728, 740], [-697, 710], [-677, 683], [-657, 631], [-655, 615], [-655, 560], [-660, 533], [-676, 503], [-701, 470], [-740, 441], [-792, 419], [-861, 400], [-897, 388], [-903, 178], [-889, 173], [-854, 181], [-808, 202], [-782, 229], [-771, 265], [-770, 313], [-777, 355], [-782, 375], [-660, 375], [-549, 375], [-548, 814], [-466, 813], [-468, 528], [-444, 506], [-364, 507], [-299, 508], [-225, 506], [-201, 502], [-150, 488], [-105, 462], [-79, 439], [-47, 386], [-32, 340], [-32, 219], [-52, 171], [-95, 144], [-109, 137], [-157, 111], [-230, 103], [69, 103], [69, 780], [1238, 779]]}, "center": {"257-258": [538, 310]}}, -{"id": 3253, "name": "Club Atlético Talleres", "description": "Club Atlético Talleres is an Argentine sports club from the city of Córdoba. The institution is mostly known for its football team, which currently plays in the Argentine Primera División.", "links": {"website": ["https://www.clubtalleres.com.ar/"]}, "path": {"169-185": [[393, -810], [404, -810], [404, -798], [393, -798]], "188-258": [[391, -817], [405, -817], [405, -797], [391, -797]]}, "center": {"169-185": [399, -804], "188-258": [398, -807]}}, -{"id": 3254, "name": "twenty One Pilots - Blurryface", "description": "Blurryface (stylized as BLURRYFΛCE) is the fourth studio album by American musical duo Twenty One Pilots. It was released on May 17, 2015, through Fueled by Ramen. Lyrically, the album incorporates themes of mental health, doubt, and religion. It contains the successful singles \"Stressed Out\" and \"Ride\", both of which reached the top-five on the US Billboard Hot 100.", "links": {"website": ["https://www.twentyonepilots.com"], "subreddit": ["twentyonepilots"]}, "path": {"250-258": [[-1223, -257], [-1214, -257], [-1214, -248], [-1223, -248], [-1223, -253]]}, "center": {"250-258": [-1218, -252]}}, +{"id": 3253, "name": "Club Atlético Talleres", "description": "Club Atlético Talleres is an Argentine sports club from the city of Córdoba. The institution is mostly known for its football team, which currently plays in the Argentine Primera División.", "links": {"website": ["https://www.clubtalleres.com.ar/"]}, "path": {"169-185": [[393, -810], [404, -810], [404, -798], [393, -798]], "188-258, T": [[391, -817], [405, -817], [405, -797], [391, -797]]}, "center": {"169-185": [399, -804], "188-258, T": [398, -807]}}, +{"id": 3254, "name": "twenty One Pilots - Blurryface", "description": "Blurryface (stylized as BLURRYFΛCE) is the fourth studio album by American musical duo Twenty One Pilots. It was released on May 17, 2015, through Fueled by Ramen. Lyrically, the album incorporates themes of mental health, doubt, and religion. It contains the successful singles \"Stressed Out\" and \"Ride\", both of which reached the top-five on the US Billboard Hot 100.", "links": {"website": ["https://www.twentyonepilots.com"], "subreddit": ["twentyonepilots"]}, "path": {"250-258, T": [[-1223, -257], [-1214, -257], [-1214, -248], [-1223, -248], [-1223, -253]]}, "center": {"250-258, T": [-1218, -252]}}, {"id": 3255, "name": "John Capcom Pony", "description": "My Little Pony: Friendship Is Magic is an animated children's television series based on Hasbro's My Little Pony franchise. This particular pony made was created by u/MysteriousShep and u/General-Character842", "links": {}, "path": {"220-245": [[1394, -988], [1401, -988], [1401, -991], [1404, -994], [1401, -996], [1397, -993], [1395, -991], [1395, -989]]}, "center": {"220-245": [1398, -991]}}, -{"id": 3256, "name": "F1 Shitposting Driver Academy", "description": "The logo of the Ferrari Driver Academy adapted by the F1 Shitposting community.", "links": {"subreddit": ["formuladank", "FormulaBuddyRetard"], "discord": ["formuladank"]}, "path": {"128-258": [[-938, -313], [-882, -313], [-882, -275], [-938, -275]]}, "center": {"128-258": [-910, -294]}}, -{"id": 3257, "name": "Flag of Canada", "description": "Canada is a country in North America.\n\nThis area is Canada's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Canada", "https://en.wikipedia.org/wiki/Flag_of_Canada"], "subreddit": ["placecanada", "fuckspezplace"], "discord": ["placecanada", "fuckspez"]}, "path": {"229-258": [[1402, -170], [1402, -140], [1395, -128], [1395, -127], [1435, -127], [1446, -166], [1446, -170]]}, "center": {"229-258": [1421, -148]}}, -{"id": 3258, "name": "Bluey Taskbar", "description": "A taskbar icon with the design of r/Bluey's 2022 r/Place artwork.", "links": {"subreddit": ["Bluey"], "discord": ["blueyheeler"]}, "path": {"250-258": [[-1209, 971], [-1209, 998], [-1184, 998], [-1184, 971]]}, "center": {"250-258": [-1196, 985]}}, -{"id": 3259, "name": "[MLP] Fluttershy", "description": "Fluttershy is a recurring character in the series My Little Pony: Friendship is Magic. She is a part of the Mane Six and represents the Element of Kindness.", "links": {"website": ["https://mlp.fandom.com/wiki/Fluttershy"]}, "path": {"250-258": [[692, 86], [692, 78], [694, 78], [694, 77], [695, 77], [695, 76], [706, 76], [706, 77], [707, 77], [707, 78], [708, 78], [708, 86]]}, "center": {"250-258": [700, 81]}}, -{"id": 3260, "name": "Bowl of Petunias", "description": "In The Hitchhiker's Guide to the Galaxy, a bowl of petunias is improbably summoned many kilometers above the planet Magrathea along with a sperm whale. They both subsequently fall to their deaths.", "links": {"subreddit": ["douglasadams", "42born2code"]}, "path": {"250-258": [[-874, -1], [-875, -1], [-875, -2], [-876, -1], [-875, -1], [-875, 1], [-874, 1], [-874, 2], [-874, 3], [-875, 3], [-874, 3], [-874, 4], [-873, 4], [-873, 3], [-872, 3], [-873, 3], [-873, 2], [-873, 1], [-872, 1], [-872, 0], [-871, 0], [-872, 0], [-872, -1], [-872, 0], [-873, 0], [-874, 0]]}, "center": {"250-258": [-873, 1]}}, -{"id": 3261, "name": "The World Cup", "description": "In honor of their 2022 World Cup victory in Qatar, r/PlaceArg decided to make the trophy to show their current world champion status. \n\nThe current version of the trophy was introduced in 1974. Made of 18-karat gold with bands of malachite on its base, it stands 36.8 centimeters high and weighs 6.175 kilograms (13.61 lb). It was made by the Stabilimento Artistico Bertoni company in Italy. It depicts two human figures holding up the Earth. \n\nIt is currently worth 20 million dollars.", "links": {"website": ["https://en.wikipedia.org/wiki/FIFA_World_Cup_Trophy"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"250-258": [[1356, 999], [1385, 999], [1385, 996], [1384, 996], [1384, 995], [1383, 995], [1383, 993], [1382, 992], [1380, 992], [1380, 989], [1379, 989], [1379, 981], [1380, 981], [1380, 979], [1381, 979], [1381, 968], [1382, 968], [1382, 967], [1383, 967], [1383, 965], [1384, 965], [1384, 962], [1385, 961], [1385, 959], [1386, 959], [1386, 957], [1387, 957], [1388, 956], [1388, 950], [1389, 949], [1389, 942], [1391, 940], [1391, 937], [1391, 936], [1392, 936], [1392, 933], [1393, 932], [1393, 927], [1392, 927], [1392, 925], [1391, 924], [1391, 923], [1392, 923], [1392, 921], [1391, 920], [1389, 917], [1388, 917], [1387, 916], [1387, 915], [1385, 913], [1385, 912], [1384, 912], [1383, 911], [1380, 909], [1378, 907], [1374, 907], [1373, 906], [1364, 906], [1363, 907], [1360, 907], [1359, 908], [1358, 908], [1357, 909], [1356, 909], [1355, 910], [1355, 912], [1354, 912], [1352, 913], [1352, 914], [1350, 915], [1350, 917], [1349, 917], [1349, 919], [1348, 919], [1348, 922], [1347, 923], [1347, 928], [1346, 928], [1346, 936], [1347, 936], [1348, 936], [1348, 941], [1349, 942], [1349, 944], [1351, 946], [1351, 950], [1352, 951], [1352, 953], [1354, 955], [1354, 960], [1355, 961], [1355, 963], [1356, 964], [1356, 966], [1357, 967], [1357, 969], [1358, 970], [1358, 972], [1359, 973], [1359, 981], [1361, 983], [1361, 986], [1359, 988], [1359, 991], [1358, 992], [1358, 993], [1357, 994], [1357, 996], [1356, 996]]}, "center": {"250-258": [1369, 929]}}, -{"id": 3262, "name": "Republic of Vicanistán", "description": "Vicanistán is a fictional country organized by the city of Ramos Mejía, Argentina. The nation is hosted on a discord server of the same name.\n\nThe Vikanniskaya Nation is governed under an Absolute Darwinist Monarchy, a system of government that consists of attributing all power to a \"Gran Líder\". The leader is elected through a competition system that confronts the heads of the Vicanistan \"Casas\", who dispute the throne in a game tournament called The Leader's Cup.", "links": {"discord": ["hWB3kbgZEA"]}, "path": {"245-258": [[1473, 224], [1473, 229], [1482, 229], [1482, 224]]}, "center": {"245-258": [1478, 227]}}, -{"id": 3263, "name": "Ganyu", "description": "A character from the open-world RPG Genshin Impact", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Ganyu"], "subreddit": ["Ganyu"]}, "path": {"250-258": [[-902, -203], [-901, -203], [-897, -210], [-914, -211], [-914, -192], [-897, -191], [-897, -210]]}, "center": {"250-258": [-907, -199]}}, +{"id": 3256, "name": "F1 Shitposting Driver Academy", "description": "The logo of the Ferrari Driver Academy adapted by the F1 Shitposting community.", "links": {"subreddit": ["formuladank", "FormulaBuddyRetard"], "discord": ["formuladank"]}, "path": {"128-258, T": [[-938, -313], [-882, -313], [-882, -275], [-938, -275]]}, "center": {"128-258, T": [-910, -294]}}, +{"id": 3257, "name": "Flag of Canada", "description": "Canada is a country in North America.\n\nThis area is Canada's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Canada", "https://en.wikipedia.org/wiki/Flag_of_Canada"], "subreddit": ["placecanada", "fuckspezplace"], "discord": ["placecanada", "fuckspez"]}, "path": {"229-258, T": [[1402, -170], [1402, -140], [1395, -128], [1395, -127], [1435, -127], [1446, -166], [1446, -170]]}, "center": {"229-258, T": [1421, -148]}}, +{"id": 3258, "name": "Bluey Taskbar", "description": "A taskbar icon with the design of r/Bluey's 2022 r/Place artwork.", "links": {"subreddit": ["Bluey"], "discord": ["blueyheeler"]}, "path": {"250-258, T": [[-1209, 971], [-1209, 998], [-1184, 998], [-1184, 971]]}, "center": {"250-258, T": [-1196, 985]}}, +{"id": 3259, "name": "[MLP] Fluttershy", "description": "Fluttershy is a recurring character in the series My Little Pony: Friendship is Magic. She is a part of the Mane Six and represents the Element of Kindness.", "links": {"website": ["https://mlp.fandom.com/wiki/Fluttershy"]}, "path": {"250-258, T": [[692, 86], [692, 78], [694, 78], [694, 77], [695, 77], [695, 76], [706, 76], [706, 77], [707, 77], [707, 78], [708, 78], [708, 86]]}, "center": {"250-258, T": [700, 81]}}, +{"id": 3260, "name": "Bowl of Petunias", "description": "In The Hitchhiker's Guide to the Galaxy, a bowl of petunias is improbably summoned many kilometers above the planet Magrathea along with a sperm whale. They both subsequently fall to their deaths.", "links": {"subreddit": ["douglasadams", "42born2code"]}, "path": {"250-258, T": [[-874, -1], [-875, -1], [-875, -2], [-876, -1], [-875, -1], [-875, 1], [-874, 1], [-874, 2], [-874, 3], [-875, 3], [-874, 3], [-874, 4], [-873, 4], [-873, 3], [-872, 3], [-873, 3], [-873, 2], [-873, 1], [-872, 1], [-872, 0], [-871, 0], [-872, 0], [-872, -1], [-872, 0], [-873, 0], [-874, 0]]}, "center": {"250-258, T": [-873, 1]}}, +{"id": 3261, "name": "The World Cup", "description": "In honor of their 2022 World Cup victory in Qatar, r/PlaceArg decided to make the trophy to show their current world champion status. \n\nThe current version of the trophy was introduced in 1974. Made of 18-karat gold with bands of malachite on its base, it stands 36.8 centimeters high and weighs 6.175 kilograms (13.61 lb). It was made by the Stabilimento Artistico Bertoni company in Italy. It depicts two human figures holding up the Earth. \n\nIt is currently worth 20 million dollars.", "links": {"website": ["https://en.wikipedia.org/wiki/FIFA_World_Cup_Trophy"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"250-258, T": [[1356, 999], [1385, 999], [1385, 996], [1384, 996], [1384, 995], [1383, 995], [1383, 993], [1382, 992], [1380, 992], [1380, 989], [1379, 989], [1379, 981], [1380, 981], [1380, 979], [1381, 979], [1381, 968], [1382, 968], [1382, 967], [1383, 967], [1383, 965], [1384, 965], [1384, 962], [1385, 961], [1385, 959], [1386, 959], [1386, 957], [1387, 957], [1388, 956], [1388, 950], [1389, 949], [1389, 942], [1391, 940], [1391, 937], [1391, 936], [1392, 936], [1392, 933], [1393, 932], [1393, 927], [1392, 927], [1392, 925], [1391, 924], [1391, 923], [1392, 923], [1392, 921], [1391, 920], [1389, 917], [1388, 917], [1387, 916], [1387, 915], [1385, 913], [1385, 912], [1384, 912], [1383, 911], [1380, 909], [1378, 907], [1374, 907], [1373, 906], [1364, 906], [1363, 907], [1360, 907], [1359, 908], [1358, 908], [1357, 909], [1356, 909], [1355, 910], [1355, 912], [1354, 912], [1352, 913], [1352, 914], [1350, 915], [1350, 917], [1349, 917], [1349, 919], [1348, 919], [1348, 922], [1347, 923], [1347, 928], [1346, 928], [1346, 936], [1347, 936], [1348, 936], [1348, 941], [1349, 942], [1349, 944], [1351, 946], [1351, 950], [1352, 951], [1352, 953], [1354, 955], [1354, 960], [1355, 961], [1355, 963], [1356, 964], [1356, 966], [1357, 967], [1357, 969], [1358, 970], [1358, 972], [1359, 973], [1359, 981], [1361, 983], [1361, 986], [1359, 988], [1359, 991], [1358, 992], [1358, 993], [1357, 994], [1357, 996], [1356, 996]]}, "center": {"250-258, T": [1369, 929]}}, +{"id": 3262, "name": "Republic of Vicanistán", "description": "Vicanistán is a fictional country organized by the city of Ramos Mejía, Argentina. The nation is hosted on a discord server of the same name.\n\nThe Vikanniskaya Nation is governed under an Absolute Darwinist Monarchy, a system of government that consists of attributing all power to a \"Gran Líder\". The leader is elected through a competition system that confronts the heads of the Vicanistan \"Casas\", who dispute the throne in a game tournament called The Leader's Cup.", "links": {"discord": ["hWB3kbgZEA"]}, "path": {"245-258, T": [[1473, 224], [1473, 229], [1482, 229], [1482, 224]]}, "center": {"245-258, T": [1478, 227]}}, +{"id": 3263, "name": "Ganyu", "description": "A character from the open-world RPG Genshin Impact", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Ganyu"], "subreddit": ["Ganyu"]}, "path": {"250-258, T": [[-902, -203], [-901, -203], [-897, -210], [-914, -211], [-914, -192], [-897, -191], [-897, -210]]}, "center": {"250-258, T": [-907, -199]}}, {"id": 3264, "name": "StarVtuber", "description": "Star, also known as StarVTuber, is a Peruvian content creator, who debuted as a VTuber in 2021. She broadcasts on Twitch and is known for being a minion and for her videos with varied content, ranging from activities with her followers to gameplays. Before using an avatar, she was known for making Reddit-based comments and videos.", "links": {"website": ["https://www.twitch.tv/starvtuber"]}, "path": {"203": [[-378, -816], [-378, -777], [-339, -777], [-338, -816]]}, "center": {"203": [-358, -796]}}, -{"id": 3265, "name": "Schneider (Crosscode)", "description": "Lukas aka Schneider, secondary character of the videogame Crosscode, a retro-inspired 2D Action RPG.", "links": {"website": ["http://cross-code.com/en/home"], "subreddit": ["crosscode"]}, "path": {"250-258": [[417, 954], [417, 947], [424, 947], [424, 954]]}, "center": {"250-258": [421, 951]}}, -{"id": 3266, "name": "Goku Ultra-instinto vs Vegeta Ultra-ego", "description": "La frente army, made a representation of one of the most emblematic animes.\nGaaa :v", "links": {}, "path": {"250-258": [[-1357, -754], [-1195, -754], [-1196, -701], [-1357, -702], [-1356, -702], [-1356, -701]]}, "center": {"250-258": [-1251, -728]}}, -{"id": 3268, "name": "Kirby-Kuromi", "description": "An art made by a Bolivian Streamer and his community since this is her most recognizable emoticon", "links": {"website": ["https://www.twitch.tv/nana_sky_"]}, "path": {"191-251": [[-1095, 430], [-1095, 440], [-1083, 440], [-1083, 430], [-1088, 430]]}, "center": {"191-251": [-1089, 435]}}, -{"id": 3269, "name": "SLUT", "description": "This art references a pink t-shirt design with \"SLUT\" written across it in the game VA11-HALL-A. It is seen in the room of main character Jill, and it became a meme in the game's community due to its prominence in Jill's apartment background and the lack of explanation for how it got there. Everyone should have one.", "links": {"website": ["https://waifubartending.com/", "https://merch.ysbryd.net/products/slut-shirt"], "subreddit": ["waifubartending"]}, "path": {"215-258": [[-149, 932], [-149, 926], [-134, 926], [-134, 932]]}, "center": {"215-258": [-141, 929]}}, -{"id": 3270, "name": "LUCKITY", "description": "Ship de KARMALAND V entre Luzu y Quackity, el ship empezó debido a la química entre los personajes, pero la intensidad de los fans y la insistencia de estos en tres chats distintos de participantes de Karmaland particularmente a Maximus le pedían que \"canonizara\" la ship en la serie, nunca se oficializó una relación entre los personajes, pero debido a la trama se recalcó la rivalidad y el desprecio destructivo a niveles desmesurados que tenían el uno por el otro, por lo cual se tomó la decisión de borrarles la memoria, en los últimos momentos de la serie Quackity se confiesa a Rubius y este le recuerda que Luzu lo traicionó diciéndole el hecho que marco historia entre Luzu y Quackity que fue la traicion realizada en las elecciones de Karmaland V", "links": {"website": ["https://youtu.be/0Cm0W6FM4Hk?si=7rPXFpzDotMHC7bH"]}, "path": {"221-258": [[537, 575], [537, 589], [557, 589], [557, 575]]}, "center": {"221-258": [547, 582]}}, +{"id": 3265, "name": "Schneider (Crosscode)", "description": "Lukas aka Schneider, secondary character of the videogame Crosscode, a retro-inspired 2D Action RPG.", "links": {"website": ["http://cross-code.com/en/home"], "subreddit": ["crosscode"]}, "path": {"250-258, T": [[417, 954], [417, 947], [424, 947], [424, 954]]}, "center": {"250-258, T": [421, 951]}}, +{"id": 3266, "name": "Goku Ultra-instinto vs Vegeta Ultra-ego", "description": "La frente army, made a representation of one of the most emblematic animes.\nGaaa :v", "links": {}, "path": {"250-258, T": [[-1357, -754], [-1195, -754], [-1196, -701], [-1357, -702], [-1356, -702], [-1356, -701]]}, "center": {"250-258, T": [-1251, -728]}}, +{"id": 3268, "name": "Kirby-Kuromi", "description": "An art made by a Bolivian Streamer and his community since this is her most recognizable emoticon", "links": {"website": ["https://www.twitch.tv/nana_sky_"]}, "path": {"191-251, T": [[-1095, 430], [-1095, 440], [-1083, 440], [-1083, 430], [-1088, 430]]}, "center": {"191-251, T": [-1089, 435]}}, +{"id": 3269, "name": "SLUT", "description": "This art references a pink t-shirt design with \"SLUT\" written across it in the game VA11-HALL-A. It is seen in the room of main character Jill, and it became a meme in the game's community due to its prominence in Jill's apartment background and the lack of explanation for how it got there. Everyone should have one.", "links": {"website": ["https://waifubartending.com/", "https://merch.ysbryd.net/products/slut-shirt"], "subreddit": ["waifubartending"]}, "path": {"215-258, T": [[-149, 932], [-149, 926], [-134, 926], [-134, 932]]}, "center": {"215-258, T": [-141, 929]}}, +{"id": 3270, "name": "LUCKITY", "description": "Ship de KARMALAND V entre Luzu y Quackity, el ship empezó debido a la química entre los personajes, pero la intensidad de los fans y la insistencia de estos en tres chats distintos de participantes de Karmaland particularmente a Maximus le pedían que \"canonizara\" la ship en la serie, nunca se oficializó una relación entre los personajes, pero debido a la trama se recalcó la rivalidad y el desprecio destructivo a niveles desmesurados que tenían el uno por el otro, por lo cual se tomó la decisión de borrarles la memoria, en los últimos momentos de la serie Quackity se confiesa a Rubius y este le recuerda que Luzu lo traicionó diciéndole el hecho que marco historia entre Luzu y Quackity que fue la traicion realizada en las elecciones de Karmaland V", "links": {"website": ["https://youtu.be/0Cm0W6FM4Hk?si=7rPXFpzDotMHC7bH"]}, "path": {"221-258, T": [[537, 575], [537, 589], [557, 589], [557, 575]]}, "center": {"221-258, T": [547, 582]}}, {"id": 3271, "name": "Danganronpa Zone", "description": "A r/place zone dedicated to danganronpa including the characters: Monokuma, Monaka, Maki Harukawa, Kokichi Oma, Nagito Komaeda, Ibuki Mioda, Gundham Tanaka, Ryoma Hoshi, Korekiyo Shinguji and an unknown fangame character", "links": {"subreddit": ["danganronpa"], "discord": ["7rVSJ4EWhb"]}, "path": {"160-222": [[62, -549], [61, -500], [153, -501], [173, -481], [186, -481], [185, -510], [153, -513], [150, -549], [87, -552], [65, -550], [62, -551], [61, -499], [59, -500], [60, -522], [57, -500], [66, -498], [2, -498], [0, -525], [-22, -523], [-20, -495], [2, -498], [63, -500]]}, "center": {"160-222": [89, -526]}}, -{"id": 3273, "name": "Flag of Bolivia", "description": "Bolivia is a country in central South America.", "links": {"subreddit": ["BOLIVIA"], "discord": ["3MHhGGbmm2"]}, "path": {"163-258": [[105, 738], [105, 788], [299, 788], [301, 738]]}, "center": {"163-258": [203, 763]}}, -{"id": 3274, "name": "MLP Crystal Heart", "description": "The Crystal Heart is a magical artifact from My Little Pony: Friendship Is Magic. It sits within the Crystal Empire and raises the spirits of the Crystal Ponies, and the light within them powers the Crystal Heart to protect them from evil. The red heart that was initially placed was modified to be a Crystal Heart some time after Peeking Starlight Glimmer and Peeking Derpy was added.", "links": {"website": ["https://mlp.fandom.com/wiki/Crystal_Heart"], "subreddit": ["mylittlepony"]}, "path": {"250-258": [[651, 92], [650, 91], [649, 91], [648, 90], [648, 88], [649, 87], [650, 87], [651, 88], [652, 87], [653, 87], [654, 88], [654, 90], [653, 91], [652, 91]]}, "center": {"250-258": [650, 89]}}, -{"id": 3275, "name": "Skyplace x Needle Place", "description": "Sky: Children of the Light is a MMO Indie game that features a lot of exploration around the Kingdom of Sky.\n\nBattle for Dream Island (BFDI) is a web-series created by jacknjellify on YouTube. The show currently has five seasons\n\nThese two communities, r/skyplace and Needle Place formed an alliance and survived until the end, despite being nuked by streamers,by countries and many others multiple times. \n\nThe Nail in the middle was built by r/hollowknight after the Morocco flag wiped out the entire area. The Sky community decided not to touch the nail and formed an alliance with the Hollow Knight community, adapting it into their design. They therefore had to move their logo and the characters to fit it in.\n\nThey expanded towards the end by a few pixels, after they conquered some land from Ecuador, after Ecuador tried invading Sky multiple times.", "links": {"subreddit": ["battlefordreamisland", "SkyGame", "skyplace"], "discord": ["f3rxny6Ujq"]}, "path": {"28-258": [[455, 63], [455, 69], [456, 70], [457, 72], [458, 72], [459, 71], [460, 70], [464, 70], [464, 72], [462, 72], [462, 75], [460, 75], [460, 76], [461, 76], [461, 80], [455, 85], [455, 86], [454, 87], [453, 87], [452, 88], [451, 87], [452, 86], [453, 85], [452, 85], [450, 86], [445, 86], [445, 87], [445, 88], [444, 88], [441, 89], [442, 87], [440, 87], [436, 88], [435, 89], [434, 89], [433, 90], [432, 90], [431, 91], [430, 92], [431, 93], [431, 94], [430, 95], [431, 95], [432, 95], [432, 96], [499, 96], [499, 64], [488, 64], [488, 69], [492, 69], [492, 74], [491, 74], [491, 78], [490, 78], [490, 84], [489, 84], [489, 88], [488, 88], [488, 92], [488, 93], [487, 93], [487, 94], [487, 95], [486, 95], [485, 95], [485, 93], [484, 93], [484, 88], [483, 88], [483, 84], [482, 84], [482, 78], [481, 78], [481, 74], [480, 74], [480, 69], [484, 69], [484, 63]]}, "center": {"28-258": [471, 85]}}, -{"id": 3276, "name": "Small Venezuelan flag", "description": "Venezuela is a country on the north coast of South America.", "links": {"website": ["https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwid2Muf76qAAxVHfDABHWzsDJUQFnoECA4QAQ&url=https%3A%2F%2Fes.wikipedia.org%2Fwiki%2FVenezuela&usg=AOvVaw3aOTHD_OD9LGziJMHWDr56&opi=89978449"], "subreddit": ["venenzuela", "vzla"]}, "path": {"232-258": [[-581, 605], [-562, 605], [-562, 617], [-581, 617]]}, "center": {"232-258": [-571, 611]}}, -{"id": 3277, "name": "LUCKITY", "description": "Es un ship entre Luzu y Quackity en KARMALAND5 empezaron siendo algo y terminaron con un lavado de cerebro.. ay el amor..", "links": {}, "path": {"221-258": [[537, 575], [537, 589], [557, 589], [557, 575]]}, "center": {"221-258": [547, 582]}}, -{"id": 3278, "name": "Hilda and Twig", "description": "Hilda and her deerfox Twig from the netflix series Hilda", "links": {"subreddit": ["HildaTheSeries"], "discord": ["hilda"]}, "path": {"250-258": [[1094, -845], [1094, -846], [1110, -846], [1110, -822], [1093, -822], [1093, -846]]}, "center": {"250-258": [1102, -834]}}, -{"id": 3279, "name": "Paulo the Demon", "description": "Paulo the demon is a lovable little red and black sphere created by Arzinist to make camp entries on scratch. He was drawn on r/place by FlammableFire AKA TheFireGamer37 in honor of arzinist being too lazy to make it himself lmao.", "links": {"website": ["https://scratch.mit.edu/users/-PauloTheDemon-/", "https://www.youtube.com/@Arzinist", "https://www.youtube.com/@TheFireGamer37"]}, "path": {"250-258": [[-972, -962], [-969, -957], [-968, -963], [-973, -964], [-976, -960], [-974, -956], [-967, -959]]}, "center": {"250-258": [-973, -959]}}, -{"id": 3280, "name": "Arara Azul", "description": "The blue macaw, also called great blue macaw, is a species of bird, found in Brazil, which is characterized by being the largest among parrots (Psittacidae family), reaching more than one meter in length, measuring from the tip of the beak to the tip of the tail.\n\nThis species inhabits different plant formations, being found in savannah formations and even in forest environments in Brazil, Paraguay and Bolivia.\n\nCritically threatened by extinction until some years ago, the populations are gradually recovering, thanks to initiatives such as the Hyacinth Macaw Project.", "links": {"subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"170-259": [[153, 315], [149, 320], [153, 332], [162, 334], [163, 324], [158, 315]]}, "center": {"170-259": [157, 324]}}, -{"id": 3281, "name": "Ononoki Yotsugi's hat", "description": "Ononoki Yotsugi is a character in the Japanese light novel series Monogatari. This art depicts her unique orange hat.", "links": {"subreddit": ["araragi"]}, "path": {"245-258": [[-1308, 832], [-1312, 830], [-1313, 830], [-1310, 832], [-1309, 832], [-1308, 833], [-1310, 835], [-1310, 839], [-1304, 839], [-1304, 835], [-1306, 833], [-1308, 833], [-1306, 833], [-1305, 832], [-1303, 832], [-1301, 830], [-1303, 830], [-1305, 832]]}, "center": {"245-258": [-1307, 836]}}, -{"id": 3282, "name": "Python", "description": "A tiny logo of the python programming language", "links": {"website": ["https://en.wikipedia.org/wiki/Python_(programming_language)"], "subreddit": ["python"]}, "path": {"250-258": [[270, -161], [269, -161], [269, -160], [268, -160], [268, -159], [269, -159], [269, -158], [270, -158], [270, -159], [271, -159], [271, -160], [270, -160]]}, "center": {"250-258": [270, -159]}}, -{"id": 3283, "name": "Jogandofoddaci", "description": "Brazilian Youtube channel's icon Jogandofoddaci, focused on humorous longplays. The middle finger resembles an irreverent nature the videos have, reflected on the members gameplay (that doesn't seem to be the focus, despite Jean being the \"Fodão dos Games\") Hosted by streamers: Saiko, Carteiro Cósmico and Gemaplys.", "links": {"website": ["https://www.youtube.com/@jogandofoddaci"], "subreddit": ["JogandoFoddaci"]}, "path": {"166-258": [[148, 457], [157, 457], [157, 475], [148, 475], [147, 475], [147, 457]]}, "center": {"166-258": [152, 466]}}, +{"id": 3273, "name": "Flag of Bolivia", "description": "Bolivia is a country in central South America.", "links": {"subreddit": ["BOLIVIA"], "discord": ["3MHhGGbmm2"]}, "path": {"163-258, T": [[105, 738], [105, 788], [299, 788], [301, 738]]}, "center": {"163-258, T": [203, 763]}}, +{"id": 3274, "name": "MLP Crystal Heart", "description": "The Crystal Heart is a magical artifact from My Little Pony: Friendship Is Magic. It sits within the Crystal Empire and raises the spirits of the Crystal Ponies, and the light within them powers the Crystal Heart to protect them from evil. The red heart that was initially placed was modified to be a Crystal Heart some time after Peeking Starlight Glimmer and Peeking Derpy was added.", "links": {"website": ["https://mlp.fandom.com/wiki/Crystal_Heart"], "subreddit": ["mylittlepony"]}, "path": {"250-258, T": [[651, 92], [650, 91], [649, 91], [648, 90], [648, 88], [649, 87], [650, 87], [651, 88], [652, 87], [653, 87], [654, 88], [654, 90], [653, 91], [652, 91]]}, "center": {"250-258, T": [650, 89]}}, +{"id": 3275, "name": "Skyplace x Needle Place", "description": "Sky: Children of the Light is a MMO Indie game that features a lot of exploration around the Kingdom of Sky.\n\nBattle for Dream Island (BFDI) is a web-series created by jacknjellify on YouTube. The show currently has five seasons\n\nThese two communities, r/skyplace and Needle Place formed an alliance and survived until the end, despite being nuked by streamers,by countries and many others multiple times. \n\nThe Nail in the middle was built by r/hollowknight after the Morocco flag wiped out the entire area. The Sky community decided not to touch the nail and formed an alliance with the Hollow Knight community, adapting it into their design. They therefore had to move their logo and the characters to fit it in.\n\nThey expanded towards the end by a few pixels, after they conquered some land from Ecuador, after Ecuador tried invading Sky multiple times.", "links": {"subreddit": ["battlefordreamisland", "SkyGame", "skyplace"], "discord": ["f3rxny6Ujq"]}, "path": {"28-258, T": [[455, 63], [455, 69], [456, 70], [457, 72], [458, 72], [459, 71], [460, 70], [464, 70], [464, 72], [462, 72], [462, 75], [460, 75], [460, 76], [461, 76], [461, 80], [455, 85], [455, 86], [454, 87], [453, 87], [452, 88], [451, 87], [452, 86], [453, 85], [452, 85], [450, 86], [445, 86], [445, 87], [445, 88], [444, 88], [441, 89], [442, 87], [440, 87], [436, 88], [435, 89], [434, 89], [433, 90], [432, 90], [431, 91], [430, 92], [431, 93], [431, 94], [430, 95], [431, 95], [432, 95], [432, 96], [499, 96], [499, 64], [488, 64], [488, 69], [492, 69], [492, 74], [491, 74], [491, 78], [490, 78], [490, 84], [489, 84], [489, 88], [488, 88], [488, 92], [488, 93], [487, 93], [487, 94], [487, 95], [486, 95], [485, 95], [485, 93], [484, 93], [484, 88], [483, 88], [483, 84], [482, 84], [482, 78], [481, 78], [481, 74], [480, 74], [480, 69], [484, 69], [484, 63]]}, "center": {"28-258, T": [471, 85]}}, +{"id": 3276, "name": "Small Venezuelan flag", "description": "Venezuela is a country on the north coast of South America.", "links": {"website": ["https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwid2Muf76qAAxVHfDABHWzsDJUQFnoECA4QAQ&url=https%3A%2F%2Fes.wikipedia.org%2Fwiki%2FVenezuela&usg=AOvVaw3aOTHD_OD9LGziJMHWDr56&opi=89978449"], "subreddit": ["venenzuela", "vzla"]}, "path": {"232-258, T": [[-581, 605], [-562, 605], [-562, 617], [-581, 617]]}, "center": {"232-258, T": [-571, 611]}}, +{"id": 3277, "name": "LUCKITY", "description": "Es un ship entre Luzu y Quackity en KARMALAND5 empezaron siendo algo y terminaron con un lavado de cerebro.. ay el amor..", "links": {}, "path": {"221-258, T": [[537, 575], [537, 589], [557, 589], [557, 575]]}, "center": {"221-258, T": [547, 582]}}, +{"id": 3278, "name": "Hilda and Twig", "description": "Hilda and her deerfox Twig from the netflix series Hilda", "links": {"subreddit": ["HildaTheSeries"], "discord": ["hilda"]}, "path": {"250-258, T": [[1094, -845], [1094, -846], [1110, -846], [1110, -822], [1093, -822], [1093, -846]]}, "center": {"250-258, T": [1102, -834]}}, +{"id": 3279, "name": "Paulo the Demon", "description": "Paulo the demon is a lovable little red and black sphere created by Arzinist to make camp entries on scratch. He was drawn on r/place by FlammableFire AKA TheFireGamer37 in honor of arzinist being too lazy to make it himself lmao.", "links": {"website": ["https://scratch.mit.edu/users/-PauloTheDemon-/", "https://www.youtube.com/@Arzinist", "https://www.youtube.com/@TheFireGamer37"]}, "path": {"250-258, T": [[-972, -962], [-969, -957], [-968, -963], [-973, -964], [-976, -960], [-974, -956], [-967, -959]]}, "center": {"250-258, T": [-973, -959]}}, +{"id": 3280, "name": "Arara Azul", "description": "The blue macaw, also called great blue macaw, is a species of bird, found in Brazil, which is characterized by being the largest among parrots (Psittacidae family), reaching more than one meter in length, measuring from the tip of the beak to the tip of the tail.\n\nThis species inhabits different plant formations, being found in savannah formations and even in forest environments in Brazil, Paraguay and Bolivia.\n\nCritically threatened by extinction until some years ago, the populations are gradually recovering, thanks to initiatives such as the Hyacinth Macaw Project.", "links": {"subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"170-259, T": [[153, 315], [149, 320], [153, 332], [162, 334], [163, 324], [158, 315]]}, "center": {"170-259, T": [157, 324]}}, +{"id": 3281, "name": "Ononoki Yotsugi's hat", "description": "Ononoki Yotsugi is a character in the Japanese light novel series Monogatari. This art depicts her unique orange hat.", "links": {"subreddit": ["araragi"]}, "path": {"245-258, T": [[-1308, 832], [-1312, 830], [-1313, 830], [-1310, 832], [-1309, 832], [-1308, 833], [-1310, 835], [-1310, 839], [-1304, 839], [-1304, 835], [-1306, 833], [-1308, 833], [-1306, 833], [-1305, 832], [-1303, 832], [-1301, 830], [-1303, 830], [-1305, 832]]}, "center": {"245-258, T": [-1307, 836]}}, +{"id": 3282, "name": "Python", "description": "A tiny logo of the python programming language", "links": {"website": ["https://en.wikipedia.org/wiki/Python_(programming_language)"], "subreddit": ["python"]}, "path": {"250-258, T": [[270, -161], [269, -161], [269, -160], [268, -160], [268, -159], [269, -159], [269, -158], [270, -158], [270, -159], [271, -159], [271, -160], [270, -160]]}, "center": {"250-258, T": [270, -159]}}, +{"id": 3283, "name": "Jogandofoddaci", "description": "Brazilian Youtube channel's icon Jogandofoddaci, focused on humorous longplays. The middle finger resembles an irreverent nature the videos have, reflected on the members gameplay (that doesn't seem to be the focus, despite Jean being the \"Fodão dos Games\") Hosted by streamers: Saiko, Carteiro Cósmico and Gemaplys.", "links": {"website": ["https://www.youtube.com/@jogandofoddaci"], "subreddit": ["JogandoFoddaci"]}, "path": {"166-258, T": [[148, 457], [157, 457], [157, 475], [148, 475], [147, 475], [147, 457]]}, "center": {"166-258, T": [152, 466]}}, {"id": 3284, "name": "Red Velvet Alley", "description": "Red Velvet is a k-pop girl group formed by SM Entertainment with the 5-member line up of Irene, Seulgi, Wendy, Joy, and Yeri. Their member colors are pink, orange, blue, green, and purple, respectively.\n\nRed Velvet Alley was Reveluv's (the group's fans) best attempt at marking a place on r/place 2023, but unfortunately it was wiped by bots just before its full completetion. The area was made by the members in the linked Red Velvet Discord server. See \"Red Velvet, The Last Stand\" in the 2023 r/place atlas for our redemption.\n\nThe art contained within the alley:\n1) The classic Red Velvet logo.\n2) A Mandu Bong, the official group's iconic light stick.\n3) The shape-shifting mascot of the group, 'ReVe', in its cat form.\n4) Additional stylized markings and letters using the members' colors.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"222-249": [[1265, -610], [1265, -597], [1262, -597], [1262, -590], [1256, -590], [1254, -588], [1254, -584], [1255, -581], [1257, -571], [1260, -571], [1262, -581], [1271, -579], [1278, -581], [1283, -575], [1287, -577], [1295, -586], [1293, -588], [1287, -590], [1283, -590], [1280, -586], [1280, -590], [1277, -590], [1277, -610]]}, "center": {"222-249": [1270, -588]}}, -{"id": 3285, "name": "Plastikstrohhalm", "description": "Der gute alte Plastikstrohhalm, der noch nicht nach Matheheft geschmeckt hat.", "links": {"website": ["https://de.wikipedia.org/wiki/Trinkhalm"]}, "path": {"16-258": [[316, -437], [322, -449], [345, -438], [344, -436], [338, -436], [324, -444], [321, -437], [317, -436], [316, -437], [316, -438]]}, "center": {"16-258": [339, -438]}}, -{"id": 3286, "name": "Sabaton Logo", "description": "The Iconic logo of internationally successful Power Metal band Sabaton. Sabatons logo had previously been attempted by\u0001r/Sabaton in the place of 2022 but failed to make the final canvas. This year, the Sabaton logo made it on the 2nd attempt (of which the first was destroyed by the void, Germany, France, and Turkey simultaneously). It is also worth noting that the void had begun to attack this S as well by the end of Place, which thankfully didn't happen due to the white out.", "links": {"subreddit": ["Sabaton"]}, "path": {"250-258": [[1268, 23], [1270, 22], [1271, 21], [1272, 21], [1273, 21], [1274, 20], [1274, 19], [1274, 18], [1273, 17], [1274, 12], [1269, 7], [1264, 12], [1266, 15], [1265, 16], [1263, 17], [1264, 19]]}, "center": {"250-258": [1270, 14]}}, -{"id": 3287, "name": "Kurosaki Ichigo, True Bankai (BLEACH)", "description": "Kurosaki Ichigo is the protagonist of the hit manga and anime series BLEACH, written and illustrated by Tite Kubo.\n\nOn the Canvas he is shown in his true Bankai form.\n\nThis artwork was made by the BLEACH r/PLACE Discord server.", "links": {"website": ["https://bleach-anime.com/"], "subreddit": ["bleach"], "discord": ["EGGZ8tBas6"]}, "path": {"250-258": [[1160, -550], [1137, -550], [1137, -554], [1138, -554], [1138, -557], [1139, -557], [1139, -559], [1132, -559], [1132, -560], [1128, -560], [1128, -561], [1125, -561], [1125, -562], [1123, -562], [1123, -563], [1121, -563], [1121, -564], [1120, -564], [1120, -568], [1124, -568], [1124, -569], [1127, -569], [1127, -570], [1128, -570], [1128, -575], [1127, -575], [1127, -576], [1125, -576], [1125, -574], [1123, -574], [1123, -572], [1122, -572], [1122, -570], [1120, -570], [1120, -574], [1119, -574], [1119, -578], [1120, -578], [1120, -579], [1121, -579], [1121, -581], [1122, -581], [1122, -583], [1123, -583], [1123, -584], [1125, -584], [1125, -585], [1127, -585], [1127, -586], [1129, -586], [1129, -588], [1130, -588], [1130, -589], [1139, -589], [1139, -588], [1141, -588], [1141, -589], [1143, -589], [1143, -591], [1145, -591], [1145, -592], [1150, -592], [1150, -591], [1152, -591], [1152, -589], [1153, -589], [1153, -588], [1155, -588], [1155, -594], [1154, -594], [1154, -595], [1152, -595], [1152, -596], [1151, -596], [1151, -598], [1154, -598], [1154, -597], [1155, -597], [1155, -600], [1157, -600], [1157, -601], [1156, -601], [1156, -603], [1159, -603], [1159, -602], [1160, -602], [1160, -601], [1161, -601], [1161, -598], [1162, -598], [1162, -600], [1163, -600], [1163, -607], [1164, -607], [1164, -608], [1165, -608], [1165, -609], [1172, -609], [1172, -608], [1175, -608], [1175, -601], [1174, -601], [1174, -599], [1179, -599], [1179, -598], [1180, -598], [1180, -594], [1178, -594], [1178, -592], [1177, -592], [1177, -590], [1178, -590], [1178, -588], [1179, -588], [1179, -582], [1178, -582], [1178, -581], [1178, -579], [1179, -579], [1179, -577], [1181, -577], [1181, -576], [1182, -576], [1182, -568], [1180, -568], [1180, -567], [1179, -567], [1179, -564], [1178, -564], [1178, -563], [1176, -563], [1176, -561], [1173, -561], [1168, -561], [1168, -559], [1167, -559], [1167, -558], [1165, -558], [1165, -557], [1164, -557], [1164, -556], [1163, -556], [1163, -554], [1162, -554], [1162, -553], [1161, -553], [1161, -552], [1160, -552]]}, "center": {"250-258": [1152, -571]}}, -{"id": 3288, "name": "Jonathan Joestar (Jojo's Part 1)", "description": "The protagonist of Jojo's Bizarre Adventure Part 1: Phantom Blood.\n\n\"My heart resonates… heat enough to burn! My blood is razor sharp! Sunlight Yellow Overdrive!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1176, -117], [-1171, -117], [-1171, -110], [-1173, -108], [-1175, -109], [-1176, -113]]}, "center": {"250-258": [-1173, -114]}}, +{"id": 3285, "name": "Plastikstrohhalm", "description": "Der gute alte Plastikstrohhalm, der noch nicht nach Matheheft geschmeckt hat.", "links": {"website": ["https://de.wikipedia.org/wiki/Trinkhalm"]}, "path": {"16-258, T": [[316, -437], [322, -449], [345, -438], [344, -436], [338, -436], [324, -444], [321, -437], [317, -436], [316, -437], [316, -438]]}, "center": {"16-258, T": [339, -438]}}, +{"id": 3286, "name": "Sabaton Logo", "description": "The Iconic logo of internationally successful Power Metal band Sabaton. Sabatons logo had previously been attempted by\u0001r/Sabaton in the place of 2022 but failed to make the final canvas. This year, the Sabaton logo made it on the 2nd attempt (of which the first was destroyed by the void, Germany, France, and Turkey simultaneously). It is also worth noting that the void had begun to attack this S as well by the end of Place, which thankfully didn't happen due to the white out.", "links": {"subreddit": ["Sabaton"]}, "path": {"250-258, T": [[1268, 23], [1270, 22], [1271, 21], [1272, 21], [1273, 21], [1274, 20], [1274, 19], [1274, 18], [1273, 17], [1274, 12], [1269, 7], [1264, 12], [1266, 15], [1265, 16], [1263, 17], [1264, 19]]}, "center": {"250-258, T": [1270, 14]}}, +{"id": 3287, "name": "Kurosaki Ichigo, True Bankai (BLEACH)", "description": "Kurosaki Ichigo is the protagonist of the hit manga and anime series BLEACH, written and illustrated by Tite Kubo.\n\nOn the Canvas he is shown in his true Bankai form.\n\nThis artwork was made by the BLEACH r/PLACE Discord server.", "links": {"website": ["https://bleach-anime.com/"], "subreddit": ["bleach"], "discord": ["EGGZ8tBas6"]}, "path": {"250-258, T": [[1160, -550], [1137, -550], [1137, -554], [1138, -554], [1138, -557], [1139, -557], [1139, -559], [1132, -559], [1132, -560], [1128, -560], [1128, -561], [1125, -561], [1125, -562], [1123, -562], [1123, -563], [1121, -563], [1121, -564], [1120, -564], [1120, -568], [1124, -568], [1124, -569], [1127, -569], [1127, -570], [1128, -570], [1128, -575], [1127, -575], [1127, -576], [1125, -576], [1125, -574], [1123, -574], [1123, -572], [1122, -572], [1122, -570], [1120, -570], [1120, -574], [1119, -574], [1119, -578], [1120, -578], [1120, -579], [1121, -579], [1121, -581], [1122, -581], [1122, -583], [1123, -583], [1123, -584], [1125, -584], [1125, -585], [1127, -585], [1127, -586], [1129, -586], [1129, -588], [1130, -588], [1130, -589], [1139, -589], [1139, -588], [1141, -588], [1141, -589], [1143, -589], [1143, -591], [1145, -591], [1145, -592], [1150, -592], [1150, -591], [1152, -591], [1152, -589], [1153, -589], [1153, -588], [1155, -588], [1155, -594], [1154, -594], [1154, -595], [1152, -595], [1152, -596], [1151, -596], [1151, -598], [1154, -598], [1154, -597], [1155, -597], [1155, -600], [1157, -600], [1157, -601], [1156, -601], [1156, -603], [1159, -603], [1159, -602], [1160, -602], [1160, -601], [1161, -601], [1161, -598], [1162, -598], [1162, -600], [1163, -600], [1163, -607], [1164, -607], [1164, -608], [1165, -608], [1165, -609], [1172, -609], [1172, -608], [1175, -608], [1175, -601], [1174, -601], [1174, -599], [1179, -599], [1179, -598], [1180, -598], [1180, -594], [1178, -594], [1178, -592], [1177, -592], [1177, -590], [1178, -590], [1178, -588], [1179, -588], [1179, -582], [1178, -582], [1178, -581], [1178, -579], [1179, -579], [1179, -577], [1181, -577], [1181, -576], [1182, -576], [1182, -568], [1180, -568], [1180, -567], [1179, -567], [1179, -564], [1178, -564], [1178, -563], [1176, -563], [1176, -561], [1173, -561], [1168, -561], [1168, -559], [1167, -559], [1167, -558], [1165, -558], [1165, -557], [1164, -557], [1164, -556], [1163, -556], [1163, -554], [1162, -554], [1162, -553], [1161, -553], [1161, -552], [1160, -552]]}, "center": {"250-258, T": [1152, -571]}}, +{"id": 3288, "name": "Jonathan Joestar (Jojo's Part 1)", "description": "The protagonist of Jojo's Bizarre Adventure Part 1: Phantom Blood.\n\n\"My heart resonates… heat enough to burn! My blood is razor sharp! Sunlight Yellow Overdrive!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1176, -117], [-1171, -117], [-1171, -110], [-1173, -108], [-1175, -109], [-1176, -113]]}, "center": {"250-258, T": [-1173, -114]}}, {"id": 3289, "name": "Incomplete Flag of Britanny", "description": "Since the creation of this location under the canvas, a millennium-old war for the ownership of \"Mont Saint Michel\" has persisted on r/place between Brittany and Normandy.\n\nConstruction of the Mont began around the year 708. Its allegiance fluctuated for over 200 years between the Normans and Bretons, but in 933, Guillaume the First of Normandy secured it in a pledge to the king to acquire the \"Avranchin\" and \"Cotentin\" counties, and since then it has been considered Norman land.\n\nHowever, the Bretons still harbor resentment about this and attempt to overcompensate by insisting that it is still theirs. They don't miss an opportunity to spread propaganda about it, and r/place is no exception.\n\nAs you can see, the flag is still not fully completed since some Normans are here to fight for it too.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Brittany"]}, "path": {"253": [[-472, 484], [-472, 486], [-463, 486], [-463, 484]]}, "center": {"253": [-467, 485]}}, {"id": 3290, "name": "La Gouttière", "description": "la Gouttière est une chaîne Twitch présentée par deux protagonistes dénommés Laïcan et Tyren.", "links": {"website": ["https://www.twitch.tv/lagouttiere"], "subreddit": ["Lagouttiere"], "discord": ["NK5JvHG"]}, "path": {"252": [[1078, -745], [1090, -745], [1090, -727], [1078, -727]]}, "center": {"252": [1084, -736]}}, -{"id": 3291, "name": "1830 Banner", "description": "Year of the Declaration of Independence of Belgium.\n\nAdded for the 21 July 2023, the Belgian National Day", "links": {"subreddit": ["Belgium"], "discord": ["Belgium"]}, "path": {"250-258": [[-368, -80], [-334, -80], [-334, -68], [-368, -68]]}, "center": {"250-258": [-351, -74]}}, -{"id": 3292, "name": "Hamburgerona", "description": "Hamburgerona it's the best player in the world of the worlds", "links": {"website": ["https://www.twitch.tv/tumblurr"], "subreddit": ["LaStalla"]}, "path": {"250-258": [[951, 962], [1000, 963], [1002, 999], [952, 999]]}, "center": {"250-258": [976, 981]}}, -{"id": 3293, "name": "Turbus", "description": "Turbus is a bus company from Chile", "links": {"website": ["https://es.wikipedia.org/wiki/Turbus", "https://new.turbus.cl/turbuscl/inicio-compra"]}, "path": {"250-258": [[-1108, -810], [-1100, -810], [-1098, -812], [-1069, -812], [-1067, -810], [-1063, -812], [-1056, -812], [-1053, -815], [-1053, -819], [-1051, -819], [-1051, -823], [-1053, -825], [-1055, -825], [-1055, -826], [-1056, -827], [-1056, -828], [-1058, -830], [-1115, -830], [-1117, -828], [-1117, -815], [-1118, -815], [-1118, -814], [-1118, -813], [-1111, -813]]}, "center": {"250-258": [-1103, -820]}}, +{"id": 3291, "name": "1830 Banner", "description": "Year of the Declaration of Independence of Belgium.\n\nAdded for the 21 July 2023, the Belgian National Day", "links": {"subreddit": ["Belgium"], "discord": ["Belgium"]}, "path": {"250-258, T": [[-368, -80], [-334, -80], [-334, -68], [-368, -68]]}, "center": {"250-258, T": [-351, -74]}}, +{"id": 3292, "name": "Hamburgerona", "description": "Hamburgerona it's the best player in the world of the worlds", "links": {"website": ["https://www.twitch.tv/tumblurr"], "subreddit": ["LaStalla"]}, "path": {"250-258, T": [[951, 962], [1000, 963], [1002, 999], [952, 999]]}, "center": {"250-258, T": [976, 981]}}, +{"id": 3293, "name": "Turbus", "description": "Turbus is a bus company from Chile", "links": {"website": ["https://es.wikipedia.org/wiki/Turbus", "https://new.turbus.cl/turbuscl/inicio-compra"]}, "path": {"250-258, T": [[-1108, -810], [-1100, -810], [-1098, -812], [-1069, -812], [-1067, -810], [-1063, -812], [-1056, -812], [-1053, -815], [-1053, -819], [-1051, -819], [-1051, -823], [-1053, -825], [-1055, -825], [-1055, -826], [-1056, -827], [-1056, -828], [-1058, -830], [-1115, -830], [-1117, -828], [-1117, -815], [-1118, -815], [-1118, -814], [-1118, -813], [-1111, -813]]}, "center": {"250-258, T": [-1103, -820]}}, {"id": 3294, "name": "The \"Melpoire\"", "description": "Melpoir is a emoji from the streamer Melchior. This emoji swap the head of the streamer and a pear. Melpoire is coming from \"Mel-\" from the name Melchior, and \"-poire\". The traduction of pear in french", "links": {"website": ["https://www.twitch.tv/melchior"], "discord": ["QKbs4jcqkM"]}, "path": {"2-22": [[-227, 446], [-229, 451], [-232, 455], [-231, 462], [-231, 474], [-234, 481], [-232, 486], [-227, 492], [-221, 495], [-216, 495], [-209, 486], [-210, 477], [-212, 473], [-207, 469], [-209, 448], [-218, 446], [-222, 447]]}, "center": {"2-22": [-220, 459]}}, -{"id": 3295, "name": "Galiza", "description": "Flag of Galicia, nation on the northwest of Spain", "links": {"subreddit": ["placeGalicia", "Galicia"], "discord": ["a85RceFh"]}, "path": {"250-258": [[1321, -902], [1345, -902], [1345, -895], [1321, -895], [1321, -896]]}, "center": {"250-258": [1333, -898]}}, -{"id": 3296, "name": "Tracajá (Equipe T)", "description": "(PT)Tracajá é a mascote da Equipe T, equipe fanmade de legendas responsável por traduzir e legendar os episódios de Ordem Paranormal, série de RPG do Cellbit, disponível no Youtube\n\n(EN)Tracajá is Equipe T's mascot. They're responsible for the fanmade translantions and subtitles in Ordem Paranormal's seasons, Cellbit's RPG series available on YouTube", "links": {"website": ["https://twitter.com/Equipe__T"], "discord": ["EcDg9pkG9S"]}, "path": {"250-258": [[763, 406], [763, 413], [736, 413], [736, 406]]}, "center": {"250-258": [750, 410]}}, -{"id": 3297, "name": "Venezuelan Flag", "description": "Venezuelan Flag with representative draws.\n\nCapybara: Called \"Chigüire\" in Venezuela. The capybara inhabits savannas and dense forests, and lives near bodies of water.\n\nAraguaney: On May 29, 1948, \"Handroanthus chrysanthus\" was declared the National Tree of Venezuela due to its status as an emblematic native species of extraordinary beauty. Its deep yellow resembles that of the Venezuelan flag. \n\nAngel Falls: Is a waterfall in Venezuela. It is the world's tallest uninterrupted waterfall, with a height of 979 metres (3,212 ft) and a plunge of 807 m (2,648 ft).\n\nVenezuelan troupial: Is the national bird of Venezuela. It has a black head and upper breast. The feathers on the front of the neck and upper breast stick outward, making an uneven boundary between the black and the orange of the bird's lower breast and underside. The rest of the orange color is found on the upper and lower back, separated by the black shoulders. The wings are mostly black except for a white streak that runs the length of the wing when in a closed position. The eyes are yellow, and surrounding each one, there is a patch of bright, blue, naked skin. \n\nSimón Bolivar: was a Venezuelan military and political leader who led what are currently the countries of Colombia, Venezuela, Ecuador, Peru, Panama and Bolivia to independence from the Spanish Empire. He is known colloquially as El Libertador, or the Liberator of America. On the 24th of July of 2023, Venezuelans celebrated the 240 anniversary of his birth.\n\nCoat of Arms: The shield is divided in the colors of the national flag. In the dexter chief, on a red field, wheat represents the union of the 20 states of the Republic existing at the time and the wealth of the nation. In sinister chief, on a yellow field, weapons (a sword, a sabre and three lances) and two national flags are tied by a branch of laurel, as a symbol of triumph in war. In base, on a deep blue field, a wild white horse (representing Simón Bolívar's white horse Palomo) runs free, an emblem of independence and freedom.\n\nPunpun Onodera: Collaboration with the reddit server of Punpun, we the venezuelans gladly give them a space in our pixelart, Punpun is wearing a hat that is called \"Sombrero Llanero\" and its popular in the country.\n\nDeportivo Táchira Futbol Club logo: Professional football club of the city of San Cristóbal, Venezuela. It was founded on January 11, 1974 by Gaetano Greco. \n\nSpiderman: Collaboration with our brothers of the reddit server of Spiderman.\n\nCaracas Metro: A mass rapid transit system serving in Caracas, Venezuela. It was inaugurated on January 2, 1983 with 11.5 km (7.1 mi) and currently the total length of the railway reaches 106.5 km (66.2 mi).\n\nOrchid: National Flower of Venezuela.\n\nFLIPS: Cereal based on rice, wheat and oats in the form of little pillows, with a delicious chocolate filling.\n\nMaracas: is a rattle which appears in many genres of Caribbean and Latin music. It is shaken by a handle and usually played as part of a pair. \n\nBall of Baseball: Baseball in Venezuela originates with the early twentieth century cultural influence of United States oil companies, and is the country's leading sport. Baseball was introduced in Venezuela at the end of the 1910s and at the beginning of the 1920s by American immigrants and workers from the exploding oil industry in the country. \n\nMango: Popular fruit in Venezuela.\n\nMonsters Logo: Collaboration with French Canadian streamer from Quebec AchilleFPS, while doing the logo of Monster he sang happy birthday to Simon Bolivar on the 24th of July. Thank you for protect our flag Mamagüevo. (Also self-proclaimed as a Venezuelan Prince).\n\nMalta, Empanada and Tequeño: Traditional drink and food in all Venezuela.\n\nAlso, thank you to all our allies:\n-Egipt\n-Oyasumi Punpun\n-The Magnus Archives\n-Spider Man\n-Capitan Gato\n-AchilleFPS\n-Car Seat Headrest (Twin Fantasy)\n-Fuck Spez\n-ElRubius\n-One Piece\n-France\n-The Void\n-My Little Pony\n-Sky\n-Fnatic\n-Unión Latam\n-Brasil\n-Costa Rica\n-Morocco \n-Germany\n-Monster\n-Ace Banhammer", "links": {"subreddit": ["vzla"], "discord": ["c2GTNR5NxK"]}, "path": {"250-258": [[-1112, 273], [-1112, 321], [-770, 321], [-770, 273]]}, "center": {"250-258": [-941, 297]}}, -{"id": 3299, "name": "Jolyne Cujoh (Jojo's Part 6)", "description": "The protagonist of Jojo's Bizarre Adventure Part 6: Stone Ocean.\n\nStand: Stone Free\n\n\"I'll name this ability of mine. Stone Free. I'll become free from this sea of stones.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1198, -106], [-1194, -106], [-1194, -98], [-1197, -98], [-1198, -99]]}, "center": {"250-258": [-1196, -102]}}, -{"id": 3300, "name": "Lutetia Blimp", "description": "Lutetia is a Geometry Dash level created by French creators for the World Gauntlet.", "links": {"subreddit": ["geometrydash"], "discord": ["hZj5evMRZr"]}, "path": {"164-258": [[-440, 532], [-500, 531], [-501, 543], [-437, 545], [-426, 549], [-420, 552], [-403, 552], [-396, 547], [-396, 544], [-387, 538], [-387, 535], [-389, 530], [-396, 527], [-405, 524], [-423, 526], [-431, 532], [-432, 533]]}, "center": {"164-258": [-408, 538]}}, -{"id": 3301, "name": "Shiny Zorua", "description": "After 3 days of trial and error, and being overrun by French and Germany flags, Zorua was finally completed! This was a collaboration between HarmonyTRE, a small group of friends, PokemonPlace, and Pokemon Workshop!", "links": {"discord": ["TZeRPaFZ", "pkmnworkshop"]}, "path": {"233-258": [[-1341, 223], [-1341, 227], [-1340, 227], [-1340, 229], [-1340, 232], [-1339, 234], [-1338, 236], [-1338, 237], [-1336, 237], [-1336, 238], [-1334, 238], [-1333, 237], [-1331, 237], [-1328, 237], [-1327, 234], [-1326, 232], [-1325, 229], [-1327, 228], [-1329, 229], [-1328, 226], [-1328, 224], [-1331, 224], [-1332, 225], [-1333, 221], [-1338, 224], [-1341, 222]]}, "center": {"233-258": [-1334, 231]}}, +{"id": 3295, "name": "Galiza", "description": "Flag of Galicia, nation on the northwest of Spain", "links": {"subreddit": ["placeGalicia", "Galicia"], "discord": ["a85RceFh"]}, "path": {"250-258, T": [[1321, -902], [1345, -902], [1345, -895], [1321, -895], [1321, -896]]}, "center": {"250-258, T": [1333, -898]}}, +{"id": 3296, "name": "Tracajá (Equipe T)", "description": "(PT)Tracajá é a mascote da Equipe T, equipe fanmade de legendas responsável por traduzir e legendar os episódios de Ordem Paranormal, série de RPG do Cellbit, disponível no Youtube\n\n(EN)Tracajá is Equipe T's mascot. They're responsible for the fanmade translantions and subtitles in Ordem Paranormal's seasons, Cellbit's RPG series available on YouTube", "links": {"website": ["https://twitter.com/Equipe__T"], "discord": ["EcDg9pkG9S"]}, "path": {"250-258, T": [[763, 406], [763, 413], [736, 413], [736, 406]]}, "center": {"250-258, T": [750, 410]}}, +{"id": 3297, "name": "Venezuelan Flag", "description": "Venezuelan Flag with representative draws.\n\nCapybara: Called \"Chigüire\" in Venezuela. The capybara inhabits savannas and dense forests, and lives near bodies of water.\n\nAraguaney: On May 29, 1948, \"Handroanthus chrysanthus\" was declared the National Tree of Venezuela due to its status as an emblematic native species of extraordinary beauty. Its deep yellow resembles that of the Venezuelan flag. \n\nAngel Falls: Is a waterfall in Venezuela. It is the world's tallest uninterrupted waterfall, with a height of 979 metres (3,212 ft) and a plunge of 807 m (2,648 ft).\n\nVenezuelan troupial: Is the national bird of Venezuela. It has a black head and upper breast. The feathers on the front of the neck and upper breast stick outward, making an uneven boundary between the black and the orange of the bird's lower breast and underside. The rest of the orange color is found on the upper and lower back, separated by the black shoulders. The wings are mostly black except for a white streak that runs the length of the wing when in a closed position. The eyes are yellow, and surrounding each one, there is a patch of bright, blue, naked skin. \n\nSimón Bolivar: was a Venezuelan military and political leader who led what are currently the countries of Colombia, Venezuela, Ecuador, Peru, Panama and Bolivia to independence from the Spanish Empire. He is known colloquially as El Libertador, or the Liberator of America. On the 24th of July of 2023, Venezuelans celebrated the 240 anniversary of his birth.\n\nCoat of Arms: The shield is divided in the colors of the national flag. In the dexter chief, on a red field, wheat represents the union of the 20 states of the Republic existing at the time and the wealth of the nation. In sinister chief, on a yellow field, weapons (a sword, a sabre and three lances) and two national flags are tied by a branch of laurel, as a symbol of triumph in war. In base, on a deep blue field, a wild white horse (representing Simón Bolívar's white horse Palomo) runs free, an emblem of independence and freedom.\n\nPunpun Onodera: Collaboration with the reddit server of Punpun, we the venezuelans gladly give them a space in our pixelart, Punpun is wearing a hat that is called \"Sombrero Llanero\" and its popular in the country.\n\nDeportivo Táchira Futbol Club logo: Professional football club of the city of San Cristóbal, Venezuela. It was founded on January 11, 1974 by Gaetano Greco. \n\nSpiderman: Collaboration with our brothers of the reddit server of Spiderman.\n\nCaracas Metro: A mass rapid transit system serving in Caracas, Venezuela. It was inaugurated on January 2, 1983 with 11.5 km (7.1 mi) and currently the total length of the railway reaches 106.5 km (66.2 mi).\n\nOrchid: National Flower of Venezuela.\n\nFLIPS: Cereal based on rice, wheat and oats in the form of little pillows, with a delicious chocolate filling.\n\nMaracas: is a rattle which appears in many genres of Caribbean and Latin music. It is shaken by a handle and usually played as part of a pair. \n\nBall of Baseball: Baseball in Venezuela originates with the early twentieth century cultural influence of United States oil companies, and is the country's leading sport. Baseball was introduced in Venezuela at the end of the 1910s and at the beginning of the 1920s by American immigrants and workers from the exploding oil industry in the country. \n\nMango: Popular fruit in Venezuela.\n\nMonsters Logo: Collaboration with French Canadian streamer from Quebec AchilleFPS, while doing the logo of Monster he sang happy birthday to Simon Bolivar on the 24th of July. Thank you for protect our flag Mamagüevo. (Also self-proclaimed as a Venezuelan Prince).\n\nMalta, Empanada and Tequeño: Traditional drink and food in all Venezuela.\n\nAlso, thank you to all our allies:\n-Egipt\n-Oyasumi Punpun\n-The Magnus Archives\n-Spider Man\n-Capitan Gato\n-AchilleFPS\n-Car Seat Headrest (Twin Fantasy)\n-Fuck Spez\n-ElRubius\n-One Piece\n-France\n-The Void\n-My Little Pony\n-Sky\n-Fnatic\n-Unión Latam\n-Brasil\n-Costa Rica\n-Morocco \n-Germany\n-Monster\n-Ace Banhammer", "links": {"subreddit": ["vzla"], "discord": ["c2GTNR5NxK"]}, "path": {"250-258, T": [[-1112, 273], [-1112, 321], [-770, 321], [-770, 273]]}, "center": {"250-258, T": [-941, 297]}}, +{"id": 3299, "name": "Jolyne Cujoh (Jojo's Part 6)", "description": "The protagonist of Jojo's Bizarre Adventure Part 6: Stone Ocean.\n\nStand: Stone Free\n\n\"I'll name this ability of mine. Stone Free. I'll become free from this sea of stones.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1198, -106], [-1194, -106], [-1194, -98], [-1197, -98], [-1198, -99]]}, "center": {"250-258, T": [-1196, -102]}}, +{"id": 3300, "name": "Lutetia Blimp", "description": "Lutetia is a Geometry Dash level created by French creators for the World Gauntlet.", "links": {"subreddit": ["geometrydash"], "discord": ["hZj5evMRZr"]}, "path": {"164-258, T": [[-440, 532], [-500, 531], [-501, 543], [-437, 545], [-426, 549], [-420, 552], [-403, 552], [-396, 547], [-396, 544], [-387, 538], [-387, 535], [-389, 530], [-396, 527], [-405, 524], [-423, 526], [-431, 532], [-432, 533]]}, "center": {"164-258, T": [-408, 538]}}, +{"id": 3301, "name": "Shiny Zorua", "description": "After 3 days of trial and error, and being overrun by French and Germany flags, Zorua was finally completed! This was a collaboration between HarmonyTRE, a small group of friends, PokemonPlace, and Pokemon Workshop!", "links": {"discord": ["TZeRPaFZ", "pkmnworkshop"]}, "path": {"233-258, T": [[-1341, 223], [-1341, 227], [-1340, 227], [-1340, 229], [-1340, 232], [-1339, 234], [-1338, 236], [-1338, 237], [-1336, 237], [-1336, 238], [-1334, 238], [-1333, 237], [-1331, 237], [-1328, 237], [-1327, 234], [-1326, 232], [-1325, 229], [-1327, 228], [-1329, 229], [-1328, 226], [-1328, 224], [-1331, 224], [-1332, 225], [-1333, 221], [-1338, 224], [-1341, 222]]}, "center": {"233-258, T": [-1334, 231]}}, {"id": 3302, "name": "Nero", "description": "Nero (or Secre Swallowtail) is a bird who is a character of the anime series, Black Clover. It is a 500 year old bird who has followed Asta ever since the beginning of the Magic Knights Exam.", "links": {"website": ["https://blackclover.fandom.com/wiki/Secre_Swallowtail"], "subreddit": ["BlackClover"], "discord": ["blackclover"]}, "path": {"255-258": [[1186, 10], [1186, 18], [1185, 18], [1185, 21], [1184, 21], [1184, 30], [1200, 30], [1200, 10]]}, "center": {"255-258": [1192, 22]}}, -{"id": 3303, "name": "OWOZU", "description": "OWOZU is a Company that is dedicated to the creation of content by Spanish-speaking VTubers that are: KarmaVT, SiriVT, Rakkun, Chessi, Nott, Hetto, Shubyuwu, Kendomurft, Emikukis and Mechs, as well as retired vtubers such as: Nori, Pandoraserpente and Hiru Doge", "links": {"website": ["https://www.owozu.com/"], "discord": ["NQxHrUFdHa"]}, "path": {"120-259": [[-64, -826], [-64, -784], [-15, -784], [-15, -826]]}, "center": {"120-259": [-39, -805]}}, -{"id": 3304, "name": "Tobi Otogiri", "description": "Tobi Otogiri is a character created by the japanese singer Eve. He is the protagonist of the music videos How to Eat Life and Fight Song. He also appears in the manga Kara no Kioku and has a light novel based around him called \"How to Eat Life\"", "links": {"website": ["https://www.youtube.com/watch?v=U7L-3VXAkSA", "https://www.youtube.com/watch?v=2eOg5DoYuwU"], "subreddit": ["e_ve"], "discord": ["eve"]}, "path": {"250-258": [[-365, 863], [-361, 859], [-359, 858], [-356, 858], [-354, 859], [-353, 860], [-352, 861], [-351, 863], [-350, 863], [-348, 856], [-342, 856], [-337, 856], [-336, 858], [-337, 860], [-338, 864], [-339, 868], [-340, 872], [-339, 873], [-338, 874], [-337, 876], [-338, 876], [-339, 875], [-340, 876], [-341, 877], [-342, 878], [-342, 881], [-366, 881], [-366, 879], [-365, 876], [-364, 874], [-363, 873], [-361, 873], [-360, 873], [-360, 872], [-359, 871], [-359, 869], [-360, 869], [-362, 868], [-363, 867], [-364, 866], [-364, 863], [-356, 871]]}, "center": {"250-258": [-348, 872]}}, -{"id": 3305, "name": "Argentinosaurus huinculensis", "description": "Argentinosaurus is a genus of giant sauropod dinosaur that lived during the Late Cretaceous period in what is now Argentina. Although it is only known from fragmentary remains, Argentinosaurus is one of the largest known land animals of all time, perhaps the largest, measuring 30–35 metres (98–115 ft) long and weighing 65–80 tonnes (72–88 short tons)", "links": {"website": ["https://en.wikipedia.org/wiki/Argentinosaurus"], "subreddit": ["PlaceARG"]}, "path": {"250-258": [[1117, 999], [1117, 998], [1126, 989], [1124, 987], [1119, 992], [1115, 987], [1107, 987], [1109, 977], [1106, 973], [1098, 974], [1097, 980], [1103, 981], [1101, 989], [1102, 996], [1104, 999]]}, "center": {"250-258": [1112, 993]}}, -{"id": 3306, "name": "Ushanka Cube", "description": "Awesome reference to a drawing made in the 2017 r/place event, originally done by the geometry dash subreddit discord server (GDS) but this year it was made by the original users from said server in separate discord server (GDB)", "links": {"subreddit": ["SquonkSquad"], "discord": ["supermario"]}, "path": {"250-258": [[1438, 223], [1438, 222], [1447, 222], [1447, 224], [1448, 224], [1448, 229], [1447, 229], [1447, 232], [1438, 232], [1438, 229], [1437, 229], [1437, 224]]}, "center": {"250-258": [1442, 227]}}, -{"id": 3307, "name": "Fire Emblem Hero's Feh bird", "description": "Feh is a mascot character in Fire Emblem Heroes who leads all of the update announcement videos.", "links": {}, "path": {"169-251": [[-660, 246], [-660, 245], [-651, 245], [-651, 246], [-650, 246], [-650, 247], [-649, 247], [-649, 256], [-650, 256], [-650, 257], [-660, 257], [-660, 256], [-661, 256], [-661, 254], [-662, 254], [-662, 248], [-661, 248], [-661, 246], [-660, 246], [-660, 245]]}, "center": {"169-251": [-655, 251]}}, -{"id": 3308, "name": "Emilie (Crosscode)", "description": "Emilie, secondary character of the videogame Crosscode, a retro-inspired 2D Action RPG.", "links": {"website": ["http://cross-code.com/en/home"], "subreddit": ["crosscode"]}, "path": {"250-258": [[418, 938], [427, 938], [427, 945], [418, 945]]}, "center": {"250-258": [423, 942]}}, -{"id": 3309, "name": "Villa Dálmine", "description": "Club Villa Dálmine is an Argentine football club from Campana, Buenos Aires Province. The team currently plays in Primera B Nacional, the second level of the Argentine football league system.", "links": {"website": ["https://villadalmine.com.ar/"]}, "path": {"224-258": [[1419, 119], [1422, 119], [1422, 120], [1428, 120], [1428, 119], [1431, 119], [1431, 122], [1430, 122], [1430, 128], [1429, 128], [1429, 129], [1428, 129], [1428, 131], [1422, 131], [1422, 129], [1421, 129], [1421, 128], [1420, 128], [1420, 122], [1419, 122]]}, "center": {"224-258": [1425, 125]}}, -{"id": 3310, "name": "Guild Wars 2", "description": "Secrets of the Obscure Logo", "links": {"website": ["https://www.guildwars2.com/en/secrets-of-the-obscure/"], "subreddit": ["Guildwars2"], "discord": ["hardstuck"]}, "path": {"245-258": [[-1177, 441], [-1152, 415], [-1128, 440], [-1128, 449], [-1146, 446], [-1144, 453], [-1149, 456], [-1155, 452], [-1158, 455], [-1161, 452], [-1160, 447], [-1171, 446], [-1176, 447]]}, "center": {"245-258": [-1153, 435]}}, -{"id": 3311, "name": "Josuke 'Gappy' Higashikata (Jojo's Part 8)", "description": "The protagonist of Jojo's Bizarre Adventure Part 8: Jojolion\n\nStand: Soft & wet\n\n\"who the hell am I?!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1193, -117], [-1186, -117], [-1186, -112], [-1187, -111], [-1190, -111], [-1191, -112]]}, "center": {"250-258": [-1189, -114]}}, +{"id": 3303, "name": "OWOZU", "description": "OWOZU is a Company that is dedicated to the creation of content by Spanish-speaking VTubers that are: KarmaVT, SiriVT, Rakkun, Chessi, Nott, Hetto, Shubyuwu, Kendomurft, Emikukis and Mechs, as well as retired vtubers such as: Nori, Pandoraserpente and Hiru Doge", "links": {"website": ["https://www.owozu.com/"], "discord": ["NQxHrUFdHa"]}, "path": {"120-259, T": [[-64, -826], [-64, -784], [-15, -784], [-15, -826]]}, "center": {"120-259, T": [-39, -805]}}, +{"id": 3304, "name": "Tobi Otogiri", "description": "Tobi Otogiri is a character created by the japanese singer Eve. He is the protagonist of the music videos How to Eat Life and Fight Song. He also appears in the manga Kara no Kioku and has a light novel based around him called \"How to Eat Life\"", "links": {"website": ["https://www.youtube.com/watch?v=U7L-3VXAkSA", "https://www.youtube.com/watch?v=2eOg5DoYuwU"], "subreddit": ["e_ve"], "discord": ["eve"]}, "path": {"250-258, T": [[-365, 863], [-361, 859], [-359, 858], [-356, 858], [-354, 859], [-353, 860], [-352, 861], [-351, 863], [-350, 863], [-348, 856], [-342, 856], [-337, 856], [-336, 858], [-337, 860], [-338, 864], [-339, 868], [-340, 872], [-339, 873], [-338, 874], [-337, 876], [-338, 876], [-339, 875], [-340, 876], [-341, 877], [-342, 878], [-342, 881], [-366, 881], [-366, 879], [-365, 876], [-364, 874], [-363, 873], [-361, 873], [-360, 873], [-360, 872], [-359, 871], [-359, 869], [-360, 869], [-362, 868], [-363, 867], [-364, 866], [-364, 863], [-356, 871]]}, "center": {"250-258, T": [-348, 872]}}, +{"id": 3305, "name": "Argentinosaurus huinculensis", "description": "Argentinosaurus is a genus of giant sauropod dinosaur that lived during the Late Cretaceous period in what is now Argentina. Although it is only known from fragmentary remains, Argentinosaurus is one of the largest known land animals of all time, perhaps the largest, measuring 30–35 metres (98–115 ft) long and weighing 65–80 tonnes (72–88 short tons)", "links": {"website": ["https://en.wikipedia.org/wiki/Argentinosaurus"], "subreddit": ["PlaceARG"]}, "path": {"250-258, T": [[1117, 999], [1117, 998], [1126, 989], [1124, 987], [1119, 992], [1115, 987], [1107, 987], [1109, 977], [1106, 973], [1098, 974], [1097, 980], [1103, 981], [1101, 989], [1102, 996], [1104, 999]]}, "center": {"250-258, T": [1112, 993]}}, +{"id": 3306, "name": "Ushanka Cube", "description": "Awesome reference to a drawing made in the 2017 r/place event, originally done by the geometry dash subreddit discord server (GDS) but this year it was made by the original users from said server in separate discord server (GDB)", "links": {"subreddit": ["SquonkSquad"], "discord": ["supermario"]}, "path": {"250-258, T": [[1438, 223], [1438, 222], [1447, 222], [1447, 224], [1448, 224], [1448, 229], [1447, 229], [1447, 232], [1438, 232], [1438, 229], [1437, 229], [1437, 224]]}, "center": {"250-258, T": [1442, 227]}}, +{"id": 3307, "name": "Fire Emblem Hero's Feh bird", "description": "Feh is a mascot character in Fire Emblem Heroes who leads all of the update announcement videos.", "links": {}, "path": {"169-251, T": [[-660, 246], [-660, 245], [-651, 245], [-651, 246], [-650, 246], [-650, 247], [-649, 247], [-649, 256], [-650, 256], [-650, 257], [-660, 257], [-660, 256], [-661, 256], [-661, 254], [-662, 254], [-662, 248], [-661, 248], [-661, 246], [-660, 246], [-660, 245]]}, "center": {"169-251, T": [-655, 251]}}, +{"id": 3308, "name": "Emilie (Crosscode)", "description": "Emilie, secondary character of the videogame Crosscode, a retro-inspired 2D Action RPG.", "links": {"website": ["http://cross-code.com/en/home"], "subreddit": ["crosscode"]}, "path": {"250-258, T": [[418, 938], [427, 938], [427, 945], [418, 945]]}, "center": {"250-258, T": [423, 942]}}, +{"id": 3309, "name": "Villa Dálmine", "description": "Club Villa Dálmine is an Argentine football club from Campana, Buenos Aires Province. The team currently plays in Primera B Nacional, the second level of the Argentine football league system.", "links": {"website": ["https://villadalmine.com.ar/"]}, "path": {"224-258, T": [[1419, 119], [1422, 119], [1422, 120], [1428, 120], [1428, 119], [1431, 119], [1431, 122], [1430, 122], [1430, 128], [1429, 128], [1429, 129], [1428, 129], [1428, 131], [1422, 131], [1422, 129], [1421, 129], [1421, 128], [1420, 128], [1420, 122], [1419, 122]]}, "center": {"224-258, T": [1425, 125]}}, +{"id": 3310, "name": "Guild Wars 2", "description": "Secrets of the Obscure Logo", "links": {"website": ["https://www.guildwars2.com/en/secrets-of-the-obscure/"], "subreddit": ["Guildwars2"], "discord": ["hardstuck"]}, "path": {"245-258, T": [[-1177, 441], [-1152, 415], [-1128, 440], [-1128, 449], [-1146, 446], [-1144, 453], [-1149, 456], [-1155, 452], [-1158, 455], [-1161, 452], [-1160, 447], [-1171, 446], [-1176, 447]]}, "center": {"245-258, T": [-1153, 435]}}, +{"id": 3311, "name": "Josuke 'Gappy' Higashikata (Jojo's Part 8)", "description": "The protagonist of Jojo's Bizarre Adventure Part 8: Jojolion\n\nStand: Soft & wet\n\n\"who the hell am I?!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1193, -117], [-1186, -117], [-1186, -112], [-1187, -111], [-1190, -111], [-1191, -112]]}, "center": {"250-258, T": [-1189, -114]}}, {"id": 3312, "name": "Mugsami", "description": "A collab between r/Cuphead and r/danganronpa featuring Usami/Monomi (from danganronpa) and Mugman (from cuphead) Sadly they got destroyed by the french", "links": {"subreddit": ["danganronpa"], "discord": ["7rVSJ4EWhb"]}, "path": {"225-232": [[1042, -783], [1048, -787], [1046, -793], [1044, -794], [1045, -798], [1044, -802], [1037, -796], [1034, -797], [1030, -800], [1027, -800], [1024, -795], [1025, -785], [1028, -782], [1035, -782]]}, "center": {"225-232": [1032, -790]}}, -{"id": 3313, "name": "John Capcom's Pixel", "description": "A sacred pixel treasured by the Bronies, placed by John Capcom who was a representative of Monster Hunter. The orange was decided as his chosen color when asked \"If John Capcom was represented by one pixel, what color would it be?\"\n\nHe was very well beloved due to his energetic personality and has become an inside meme in the Bronies' Server.\n\nDue to his popularity in the server, the Bronies decided to make art as well as a subreddit dedicated to him.", "links": {"subreddit": ["johncapcom"]}, "path": {"250-258": [[526, 897], [528, 897], [528, 899], [526, 899]]}, "center": {"250-258": [527, 898]}}, -{"id": 3314, "name": "Kurukuru", "description": "Kurukuru is a character created by the japanese singer Eve. He is the protagonist of the music video Dramaturgy and has cameos in many others. Eve often uses Kurukuru to portray himself.", "links": {"website": ["https://www.youtube.com/watch?v=jJzw1h5CR-I"], "subreddit": ["e_ve"], "discord": ["eve"]}, "path": {"250-258": [[-368, 916], [-367, 915], [-367, 913], [-368, 912], [-368, 911], [-367, 910], [-366, 908], [-365, 907], [-364, 906], [-363, 905], [-357, 905], [-356, 906], [-355, 907], [-354, 908], [-354, 909], [-353, 910], [-353, 911], [-352, 911], [-351, 910], [-352, 911], [-353, 911], [-354, 912], [-354, 913], [-353, 914], [-352, 914], [-351, 913], [-352, 914], [-354, 914], [-354, 915], [-354, 916], [-352, 916], [-355, 916], [-355, 917], [-354, 919], [-354, 921], [-355, 921], [-355, 922], [-356, 922], [-356, 926], [-361, 926], [-361, 924], [-360, 924], [-360, 922], [-359, 922], [-359, 920], [-360, 920], [-360, 919], [-360, 918], [-360, 917], [-363, 917], [-363, 918], [-364, 916], [-364, 914], [-365, 914], [-366, 913], [-367, 913], [-367, 914], [-367, 915]]}, "center": {"250-258": [-360, 911]}}, -{"id": 3315, "name": "Mini Yakumo Family", "description": "The Yakumo family are actually shikigami ( kind of like an apprentice) with a family bond. Chen (middle) is the shikigami of Ran (left) and Ran is the shikigami of Yukari (right).\n\nThese characters appear in Touhou 7 ~ Perfect Cherry Blossom", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"248-258": [[121, 139], [149, 139], [149, 149], [121, 149]]}, "center": {"248-258": [135, 144]}}, -{"id": 3316, "name": "Touhou / Canada Heart", "description": "A heart put between canada and Reimu of r/touhou to signify their alliance. Put in place after a bit of deliberation with Canada place and Touhou discord members came together.\n\nOriginal art created by Discord user zo8.", "links": {"subreddit": ["placecanada"], "discord": ["apl"]}, "path": {"250-258": [[144, 187], [149, 187], [150, 189], [150, 191], [147, 194], [147, 195], [145, 197], [139, 192], [139, 188], [143, 186], [144, 187], [145, 187], [146, 187]]}, "center": {"250-258": [144, 191]}}, -{"id": 3317, "name": "Richarlyson, Bobby and Leonarda", "description": "Three \"npc\" eggs of QSMP. They are also part of the brown-de luque familly, once Leo is Q!Foolish and Q!Vegetta's daughter, Q!Roier who is bobby's dad was adopted as a son, making bobby fooligetta's grandson (even he's dead..) and Q!Cellbit (One of all Richarlyson parents) married with Q!Roier, making richas also fooligetta's grandson.", "links": {"website": ["https://qsmp.fandom.com/wiki/Eggs"]}, "path": {"249-258": [[-1293, 602], [-1289, 603], [-1279, 602], [-1278, 604], [-1277, 612], [-1276, 623], [-1274, 636], [-1273, 644], [-1272, 653], [-1272, 659], [-1293, 659]]}, "center": {"249-258": [-1283, 648]}}, -{"id": 3318, "name": "Toto", "description": "Toto is the mascot of the german VTuber Kiyichu", "links": {"subreddit": ["kiyichu"]}, "path": {"247-258": [[1455, -934], [1452, -934], [1452, -933], [1451, -933], [1451, -932], [1450, -932], [1450, -931], [1449, -931], [1449, -929], [1450, -929], [1450, -925], [1449, -925], [1449, -924], [1448, -924], [1448, -923], [1447, -923], [1448, -923], [1448, -922], [1449, -922], [1449, -921], [1450, -921], [1450, -920], [1452, -920], [1452, -919], [1454, -919], [1454, -918], [1455, -918], [1455, -919], [1456, -919], [1456, -920], [1457, -920], [1457, -921], [1458, -921], [1458, -922], [1459, -922], [1459, -923], [1460, -923], [1459, -923], [1459, -924], [1458, -924], [1458, -925], [1457, -925], [1457, -926], [1459, -926], [1459, -927], [1460, -927], [1460, -928], [1459, -928], [1459, -929], [1458, -929], [1458, -930], [1457, -930], [1457, -931], [1457, -932], [1456, -932], [1456, -933]]}, "center": {"247-258": [1454, -928]}}, -{"id": 3319, "name": "Citroën 2 CV", "description": "The Citroën 2 CV (\"deux-chevaux\") is a classic french popular car produced from 1948 to 1990. Sold at over 5 million units counting its variants, it's one, if not the most iconic french cars ever produced.", "links": {"website": ["https://en.wikipedia.org/wiki/Citro%C3%ABn_2CV", "https://fr.wikipedia.org/wiki/Citro%C3%ABn_2_CV", "https://www.citroenorigins.fr/fr/vehicule/2cv"]}, "path": {"5-258": [[-414, 460], [-419, 460], [-422, 462], [-428, 468], [-432, 468], [-438, 469], [-440, 472], [-440, 476], [-438, 478], [-435, 479], [-432, 481], [-427, 481], [-423, 478], [-413, 478], [-410, 479], [-407, 479], [-406, 478], [-403, 481], [-400, 481], [-398, 478], [-396, 477], [-397, 471], [-401, 463], [-405, 460], [-411, 459]]}, "center": {"5-258": [-409, 469]}}, -{"id": 3320, "name": "20 Ans Code Lyoko", "description": "En 2023, La série française Code Lyoko à 20 ans. La première diffusion à eu lieu le 3 septembre 2003.", "links": {}, "path": {"250-258": [[881, -698], [898, -698], [898, -707], [874, -707], [874, -698]]}, "center": {"250-258": [886, -702]}}, -{"id": 3321, "name": "Jebediah Kerman", "description": "Jebediah is a Kerbal from the planet Kerbin and the main protagonist of the Kerbal Space Program games.", "links": {"subreddit": ["kerbalspaceprogram"]}, "path": {"250-258": [[1303, 188], [1300, 186], [1295, 186], [1294, 193], [1303, 193]]}, "center": {"250-258": [1299, 190]}}, -{"id": 3322, "name": "Oyasumi Punpun", "description": "The titular character Punpun from Oyasumi Punpun (aka Goodnight Punpun), a manga written and illustrated by Inio Asano.", "links": {"subreddit": ["OyasumiPunpun"], "discord": ["zAZgUg5Jc5"]}, "path": {"172-258": [[-787, 368], [-787, 403], [-770, 403], [-770, 368]]}, "center": {"172-258": [-778, 386]}}, +{"id": 3313, "name": "John Capcom's Pixel", "description": "A sacred pixel treasured by the Bronies, placed by John Capcom who was a representative of Monster Hunter. The orange was decided as his chosen color when asked \"If John Capcom was represented by one pixel, what color would it be?\"\n\nHe was very well beloved due to his energetic personality and has become an inside meme in the Bronies' Server.\n\nDue to his popularity in the server, the Bronies decided to make art as well as a subreddit dedicated to him.", "links": {"subreddit": ["johncapcom"]}, "path": {"250-258, T": [[526, 897], [528, 897], [528, 899], [526, 899]]}, "center": {"250-258, T": [527, 898]}}, +{"id": 3314, "name": "Kurukuru", "description": "Kurukuru is a character created by the japanese singer Eve. He is the protagonist of the music video Dramaturgy and has cameos in many others. Eve often uses Kurukuru to portray himself.", "links": {"website": ["https://www.youtube.com/watch?v=jJzw1h5CR-I"], "subreddit": ["e_ve"], "discord": ["eve"]}, "path": {"250-258, T": [[-368, 916], [-367, 915], [-367, 913], [-368, 912], [-368, 911], [-367, 910], [-366, 908], [-365, 907], [-364, 906], [-363, 905], [-357, 905], [-356, 906], [-355, 907], [-354, 908], [-354, 909], [-353, 910], [-353, 911], [-352, 911], [-351, 910], [-352, 911], [-353, 911], [-354, 912], [-354, 913], [-353, 914], [-352, 914], [-351, 913], [-352, 914], [-354, 914], [-354, 915], [-354, 916], [-352, 916], [-355, 916], [-355, 917], [-354, 919], [-354, 921], [-355, 921], [-355, 922], [-356, 922], [-356, 926], [-361, 926], [-361, 924], [-360, 924], [-360, 922], [-359, 922], [-359, 920], [-360, 920], [-360, 919], [-360, 918], [-360, 917], [-363, 917], [-363, 918], [-364, 916], [-364, 914], [-365, 914], [-366, 913], [-367, 913], [-367, 914], [-367, 915]]}, "center": {"250-258, T": [-360, 911]}}, +{"id": 3315, "name": "Mini Yakumo Family", "description": "The Yakumo family are actually shikigami ( kind of like an apprentice) with a family bond. Chen (middle) is the shikigami of Ran (left) and Ran is the shikigami of Yukari (right).\n\nThese characters appear in Touhou 7 ~ Perfect Cherry Blossom", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"248-258, T": [[121, 139], [149, 139], [149, 149], [121, 149]]}, "center": {"248-258, T": [135, 144]}}, +{"id": 3316, "name": "Touhou / Canada Heart", "description": "A heart put between canada and Reimu of r/touhou to signify their alliance. Put in place after a bit of deliberation with Canada place and Touhou discord members came together.\n\nOriginal art created by Discord user zo8.", "links": {"subreddit": ["placecanada"], "discord": ["apl"]}, "path": {"250-258, T": [[144, 187], [149, 187], [150, 189], [150, 191], [147, 194], [147, 195], [145, 197], [139, 192], [139, 188], [143, 186], [144, 187], [145, 187], [146, 187]]}, "center": {"250-258, T": [144, 191]}}, +{"id": 3317, "name": "Richarlyson, Bobby and Leonarda", "description": "Three \"npc\" eggs of QSMP. They are also part of the brown-de luque familly, once Leo is Q!Foolish and Q!Vegetta's daughter, Q!Roier who is bobby's dad was adopted as a son, making bobby fooligetta's grandson (even he's dead..) and Q!Cellbit (One of all Richarlyson parents) married with Q!Roier, making richas also fooligetta's grandson.", "links": {"website": ["https://qsmp.fandom.com/wiki/Eggs"]}, "path": {"249-258, T": [[-1293, 602], [-1289, 603], [-1279, 602], [-1278, 604], [-1277, 612], [-1276, 623], [-1274, 636], [-1273, 644], [-1272, 653], [-1272, 659], [-1293, 659]]}, "center": {"249-258, T": [-1283, 648]}}, +{"id": 3318, "name": "Toto", "description": "Toto is the mascot of the german VTuber Kiyichu", "links": {"subreddit": ["kiyichu"]}, "path": {"247-258, T": [[1455, -934], [1452, -934], [1452, -933], [1451, -933], [1451, -932], [1450, -932], [1450, -931], [1449, -931], [1449, -929], [1450, -929], [1450, -925], [1449, -925], [1449, -924], [1448, -924], [1448, -923], [1447, -923], [1448, -923], [1448, -922], [1449, -922], [1449, -921], [1450, -921], [1450, -920], [1452, -920], [1452, -919], [1454, -919], [1454, -918], [1455, -918], [1455, -919], [1456, -919], [1456, -920], [1457, -920], [1457, -921], [1458, -921], [1458, -922], [1459, -922], [1459, -923], [1460, -923], [1459, -923], [1459, -924], [1458, -924], [1458, -925], [1457, -925], [1457, -926], [1459, -926], [1459, -927], [1460, -927], [1460, -928], [1459, -928], [1459, -929], [1458, -929], [1458, -930], [1457, -930], [1457, -931], [1457, -932], [1456, -932], [1456, -933]]}, "center": {"247-258, T": [1454, -928]}}, +{"id": 3319, "name": "Citroën 2 CV", "description": "The Citroën 2 CV (\"deux-chevaux\") is a classic french popular car produced from 1948 to 1990. Sold at over 5 million units counting its variants, it's one, if not the most iconic french cars ever produced.", "links": {"website": ["https://en.wikipedia.org/wiki/Citro%C3%ABn_2CV", "https://fr.wikipedia.org/wiki/Citro%C3%ABn_2_CV", "https://www.citroenorigins.fr/fr/vehicule/2cv"]}, "path": {"5-258, T": [[-414, 460], [-419, 460], [-422, 462], [-428, 468], [-432, 468], [-438, 469], [-440, 472], [-440, 476], [-438, 478], [-435, 479], [-432, 481], [-427, 481], [-423, 478], [-413, 478], [-410, 479], [-407, 479], [-406, 478], [-403, 481], [-400, 481], [-398, 478], [-396, 477], [-397, 471], [-401, 463], [-405, 460], [-411, 459]]}, "center": {"5-258, T": [-409, 469]}}, +{"id": 3320, "name": "20 Ans Code Lyoko", "description": "En 2023, La série française Code Lyoko à 20 ans. La première diffusion à eu lieu le 3 septembre 2003.", "links": {}, "path": {"250-258, T": [[881, -698], [898, -698], [898, -707], [874, -707], [874, -698]]}, "center": {"250-258, T": [886, -702]}}, +{"id": 3321, "name": "Jebediah Kerman", "description": "Jebediah is a Kerbal from the planet Kerbin and the main protagonist of the Kerbal Space Program games.", "links": {"subreddit": ["kerbalspaceprogram"]}, "path": {"250-258, T": [[1303, 188], [1300, 186], [1295, 186], [1294, 193], [1303, 193]]}, "center": {"250-258, T": [1299, 190]}}, +{"id": 3322, "name": "Oyasumi Punpun", "description": "The titular character Punpun from Oyasumi Punpun (aka Goodnight Punpun), a manga written and illustrated by Inio Asano.", "links": {"subreddit": ["OyasumiPunpun"], "discord": ["zAZgUg5Jc5"]}, "path": {"172-258, T": [[-787, 368], [-787, 403], [-770, 403], [-770, 368]]}, "center": {"172-258, T": [-778, 386]}}, {"id": 3323, "name": "Le Roi et l'Oiseau", "description": "Here is depicted \"l'Oiseau\", one of the main character of the movie \"Le Roi et l'Oiseau\" (The King and the Mockingbird), a 1980 animated fantasy movie directed by Paul Grimault.\n\nThis film is considered a masterpiece of French animation and was a source of inspiration for Hayao Miyazaki and Isao Takahata, the founders of Studio Ghibli.", "links": {"website": ["https://en.wikipedia.org/wiki/The_King_and_the_Mockingbird"]}, "path": {"249": [[899, -615], [882, -627], [878, -650], [884, -663], [905, -685], [911, -699], [920, -698], [921, -685], [914, -672], [922, -679], [921, -670], [904, -656], [897, -654], [895, -646], [904, -635], [912, -638], [907, -640], [907, -648], [915, -652], [929, -662], [942, -654], [936, -642], [926, -638], [918, -631], [916, -622], [924, -619], [908, -616], [908, -624], [901, -623], [901, -616]]}, "center": {"249": [892, -633]}}, -{"id": 3324, "name": "Argentinosaurus", "description": "Argentinosaurus is a genus of giant sauropod dinosaur that lived during the Late Cretaceous period in what is now Argentina. Although it is only known from fragmentary remains, Argentinosaurus is one of the largest known land animals of all time, perhaps the largest, measuring 30–35 metres (98–115 ft) long and weighing 65–80 tonnes (72–88 short tons).", "links": {"website": ["https://en.wikipedia.org/wiki/Argentinosaurus"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"250-258": [[1099, 999], [1093, 985], [1102, 970], [1108, 987], [1119, 989], [1123, 986], [1128, 986], [1126, 993], [1120, 999]]}, "center": {"250-258": [1103, 992]}}, -{"id": 3325, "name": "4rft5", "description": "Minecraft YouTuber and Streamer 4rft5's Minecraft Head, with a small heart and YouTube icon.", "links": {"website": ["https://4rft5.com", "https://www.youtube.com/4rft5"], "subreddit": ["4rft5"]}, "path": {"185-258": [[-1361, -319], [-1352, -319], [-1352, -306], [-1361, -306]]}, "center": {"185-258": [-1356, -312]}}, -{"id": 3326, "name": "Renard", "description": "Renard Queenston is a character created by musician Emma Essex, and is utilized as an alias for releasing breakcore tracks.\n\nThis art was created by r/lapfoxtrax.", "links": {"website": ["https://halleylabs.com"], "subreddit": ["LapfoxTrax"]}, "path": {"250-258": [[-1408, 200], [-1418, 200], [-1418, 193], [-1408, 193]]}, "center": {"250-258": [-1413, 197]}}, -{"id": 3327, "name": "Mate (drink)", "description": "Mate or maté is a traditional South American caffeine-rich infused herbal drink. It is also known as chimarrão or cimarrón. It is made by soaking dried leaves of the yerba mate (Ilex paraguariensis) in hot water and is traditionally served with a metal straw (bombilla) in a container typically made from a calabash gourd (also called the mate), but also in some areas made from a cattle horn (guampa).", "links": {"website": ["https://en.wikipedia.org/wiki/Mate_(drink)"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"250-258": [[1055, 999], [1055, 978], [1079, 979], [1071, 999]]}, "center": {"250-258": [1065, 988]}}, -{"id": 3328, "name": "Norminet", "description": "Chief Executive Cat at 42Paris | Hacker #AnonyMiaous", "links": {"website": ["https://twitter.com/42norminet", "https://www.instagram.com/42norminet", "https://www.linkedin.com/in/norminet-born2code-69ab7b17a", "https://www.tiktok.com/tag/norminet", "https://www.facebook.com/42norminet"], "subreddit": ["42born2code"]}, "path": {"250-258": [[-1100, -477], [-1100, -478], [-1101, -478], [-1101, -479], [-1102, -479], [-1102, -481], [-1103, -481], [-1103, -490], [-1101, -490], [-1101, -489], [-1100, -489], [-1100, -488], [-1092, -488], [-1092, -489], [-1091, -489], [-1091, -490], [-1089, -490], [-1089, -481], [-1090, -481], [-1090, -479], [-1091, -479], [-1091, -478], [-1092, -478], [-1092, -477]]}, "center": {"250-258": [-1096, -482]}}, -{"id": 3329, "name": "Simón Bolívar", "description": "Simón José Antonio de la Santísima Trinidad Bolívar Ponte y Palacios Blanco, was the liberator of Venezuela, Colombia, Ecuador, and Panama, and an important figure in the independence of Perú, and Bolivia, during the Latin American wars for independence, he still revered and praised as a figure of liberty", "links": {"website": ["https://en.wikipedia.org/wiki/Sim%C3%B3n_Bol%C3%ADvar"], "subreddit": ["vzla"]}, "path": {"250-258": [[-904, 280], [-891, 280], [-877, 317], [-878, 321], [-902, 321]]}, "center": {"250-258": [-892, 309]}}, -{"id": 3330, "name": "The Witcher", "description": "Geralt from Rivia. Main character from popular Polish books and games series titled \"Wiedźmin\" (\"The Witcher\"). There is also a Netflix series based on them.", "links": {}, "path": {"250-258": [[848, -125], [848, -129], [851, -131], [849, -136], [847, -132], [847, -135], [849, -138], [845, -145], [845, -147], [847, -147], [850, -139], [852, -138], [854, -142], [849, -148], [849, -150], [851, -150], [855, -142], [858, -147], [862, -152], [866, -152], [869, -150], [872, -146], [872, -140], [871, -140], [871, -135], [881, -130], [881, -125]]}, "center": {"250-258": [861, -134]}}, -{"id": 3331, "name": "Metro de Caracas", "description": "This is the Caracas subway, inaugurated 2 of January, 1983, is the main public form of transportation of the city, this specific drawing pictures a newer model of trains.", "links": {"website": ["https://en.wikipedia.org/wiki/Caracas_Metro"], "subreddit": ["vzla"]}, "path": {"187-258": [[-1056, 308], [-1014, 308], [-1008, 309], [-1004, 320], [-1057, 320]]}, "center": {"187-258": [-1030, 314]}}, -{"id": 3332, "name": "Arara Azul (Hyacinth macaw)", "description": "The hyacinth macaw (Anodorhynchus hyacinthinus), or hyacinthine macaw, is a parrot native to central and eastern South America. With a length (from the top of its head to the tip of its long pointed tail) of about one meter it is longer than any other species of parrot. It is the largest macaw and the largest flying parrot species; the flightless kākāpō of New Zealand outweighs it at up to 3.5 kg. While generally easily recognized, it could be confused with the smaller Lear's macaw. Habitat loss and the trapping of wild birds for the pet trade have taken a heavy toll on their population in the wild, so the species is classified as Vulnerable on the International Union for Conservation of Nature's Red List,[1] and it is protected by its listing on Appendix I of the Convention on International Trade in Endangered Species of Wild Fauna and Flora (CITES).", "links": {"website": ["https://en.wikipedia.org/wiki/Hyacinth_macaw"]}, "path": {"250-258": [[-746, -681], [-746, -684], [-745, -684], [-745, -686], [-744, -686], [-744, -688], [-743, -688], [-743, -689], [-742, -689], [-742, -691], [-741, -691], [-741, -694], [-740, -694], [-740, -696], [-739, -696], [-739, -697], [-738, -697], [-738, -698], [-737, -698], [-737, -700], [-736, -700], [-735, -701], [-734, -704], [-726, -704], [-725, -695], [-729, -695], [-729, -689], [-728, -684], [-735, -684], [-736, -686], [-739, -684], [-742, -681], [-743, -680], [-746, -680]]}, "center": {"250-258": [-735, -692]}}, -{"id": 3333, "name": "Milena", "description": "Milena is a beautiful little girl who lives on Rua do Limão, the capitol of Bairro do Limoeiro. From the Sustenido family, owners of a veterinary clinic that takes care of the gang's mascots, such as Bidu, Monicão, Floquinho, Mingau, and Radar.", "links": {"website": ["https://monica.fandom.com/pt-br/wiki/Milena"]}, "path": {"250-258": [[193, 548], [194, 547], [195, 546], [198, 546], [198, 547], [201, 547], [201, 548], [202, 548], [202, 554], [201, 554], [201, 559], [193, 559], [193, 557], [192, 557], [192, 555], [193, 555], [192, 555], [192, 548]]}, "center": {"250-258": [197, 552]}}, +{"id": 3324, "name": "Argentinosaurus", "description": "Argentinosaurus is a genus of giant sauropod dinosaur that lived during the Late Cretaceous period in what is now Argentina. Although it is only known from fragmentary remains, Argentinosaurus is one of the largest known land animals of all time, perhaps the largest, measuring 30–35 metres (98–115 ft) long and weighing 65–80 tonnes (72–88 short tons).", "links": {"website": ["https://en.wikipedia.org/wiki/Argentinosaurus"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"250-258, T": [[1099, 999], [1093, 985], [1102, 970], [1108, 987], [1119, 989], [1123, 986], [1128, 986], [1126, 993], [1120, 999]]}, "center": {"250-258, T": [1103, 992]}}, +{"id": 3325, "name": "4rft5", "description": "Minecraft YouTuber and Streamer 4rft5's Minecraft Head, with a small heart and YouTube icon.", "links": {"website": ["https://4rft5.com", "https://www.youtube.com/4rft5"], "subreddit": ["4rft5"]}, "path": {"185-258, T": [[-1361, -319], [-1352, -319], [-1352, -306], [-1361, -306]]}, "center": {"185-258, T": [-1356, -312]}}, +{"id": 3326, "name": "Renard", "description": "Renard Queenston is a character created by musician Emma Essex, and is utilized as an alias for releasing breakcore tracks.\n\nThis art was created by r/lapfoxtrax.", "links": {"website": ["https://halleylabs.com"], "subreddit": ["LapfoxTrax"]}, "path": {"250-258, T": [[-1408, 200], [-1418, 200], [-1418, 193], [-1408, 193]]}, "center": {"250-258, T": [-1413, 197]}}, +{"id": 3327, "name": "Mate (drink)", "description": "Mate or maté is a traditional South American caffeine-rich infused herbal drink. It is also known as chimarrão or cimarrón. It is made by soaking dried leaves of the yerba mate (Ilex paraguariensis) in hot water and is traditionally served with a metal straw (bombilla) in a container typically made from a calabash gourd (also called the mate), but also in some areas made from a cattle horn (guampa).", "links": {"website": ["https://en.wikipedia.org/wiki/Mate_(drink)"], "subreddit": ["PlaceArg"], "discord": ["placearg"]}, "path": {"250-258, T": [[1055, 999], [1055, 978], [1079, 979], [1071, 999]]}, "center": {"250-258, T": [1065, 988]}}, +{"id": 3328, "name": "Norminet", "description": "Chief Executive Cat at 42Paris | Hacker #AnonyMiaous", "links": {"website": ["https://twitter.com/42norminet", "https://www.instagram.com/42norminet", "https://www.linkedin.com/in/norminet-born2code-69ab7b17a", "https://www.tiktok.com/tag/norminet", "https://www.facebook.com/42norminet"], "subreddit": ["42born2code"]}, "path": {"250-258, T": [[-1100, -477], [-1100, -478], [-1101, -478], [-1101, -479], [-1102, -479], [-1102, -481], [-1103, -481], [-1103, -490], [-1101, -490], [-1101, -489], [-1100, -489], [-1100, -488], [-1092, -488], [-1092, -489], [-1091, -489], [-1091, -490], [-1089, -490], [-1089, -481], [-1090, -481], [-1090, -479], [-1091, -479], [-1091, -478], [-1092, -478], [-1092, -477]]}, "center": {"250-258, T": [-1096, -482]}}, +{"id": 3329, "name": "Simón Bolívar", "description": "Simón José Antonio de la Santísima Trinidad Bolívar Ponte y Palacios Blanco, was the liberator of Venezuela, Colombia, Ecuador, and Panama, and an important figure in the independence of Perú, and Bolivia, during the Latin American wars for independence, he still revered and praised as a figure of liberty", "links": {"website": ["https://en.wikipedia.org/wiki/Sim%C3%B3n_Bol%C3%ADvar"], "subreddit": ["vzla"]}, "path": {"250-258, T": [[-904, 280], [-891, 280], [-877, 317], [-878, 321], [-902, 321]]}, "center": {"250-258, T": [-892, 309]}}, +{"id": 3330, "name": "The Witcher", "description": "Geralt from Rivia. Main character from popular Polish books and games series titled \"Wiedźmin\" (\"The Witcher\"). There is also a Netflix series based on them.", "links": {}, "path": {"250-258, T": [[848, -125], [848, -129], [851, -131], [849, -136], [847, -132], [847, -135], [849, -138], [845, -145], [845, -147], [847, -147], [850, -139], [852, -138], [854, -142], [849, -148], [849, -150], [851, -150], [855, -142], [858, -147], [862, -152], [866, -152], [869, -150], [872, -146], [872, -140], [871, -140], [871, -135], [881, -130], [881, -125]]}, "center": {"250-258, T": [861, -134]}}, +{"id": 3331, "name": "Metro de Caracas", "description": "This is the Caracas subway, inaugurated 2 of January, 1983, is the main public form of transportation of the city, this specific drawing pictures a newer model of trains.", "links": {"website": ["https://en.wikipedia.org/wiki/Caracas_Metro"], "subreddit": ["vzla"]}, "path": {"187-258, T": [[-1056, 308], [-1014, 308], [-1008, 309], [-1004, 320], [-1057, 320]]}, "center": {"187-258, T": [-1030, 314]}}, +{"id": 3332, "name": "Arara Azul (Hyacinth macaw)", "description": "The hyacinth macaw (Anodorhynchus hyacinthinus), or hyacinthine macaw, is a parrot native to central and eastern South America. With a length (from the top of its head to the tip of its long pointed tail) of about one meter it is longer than any other species of parrot. It is the largest macaw and the largest flying parrot species; the flightless kākāpō of New Zealand outweighs it at up to 3.5 kg. While generally easily recognized, it could be confused with the smaller Lear's macaw. Habitat loss and the trapping of wild birds for the pet trade have taken a heavy toll on their population in the wild, so the species is classified as Vulnerable on the International Union for Conservation of Nature's Red List,[1] and it is protected by its listing on Appendix I of the Convention on International Trade in Endangered Species of Wild Fauna and Flora (CITES).", "links": {"website": ["https://en.wikipedia.org/wiki/Hyacinth_macaw"]}, "path": {"250-258, T": [[-746, -681], [-746, -684], [-745, -684], [-745, -686], [-744, -686], [-744, -688], [-743, -688], [-743, -689], [-742, -689], [-742, -691], [-741, -691], [-741, -694], [-740, -694], [-740, -696], [-739, -696], [-739, -697], [-738, -697], [-738, -698], [-737, -698], [-737, -700], [-736, -700], [-735, -701], [-734, -704], [-726, -704], [-725, -695], [-729, -695], [-729, -689], [-728, -684], [-735, -684], [-736, -686], [-739, -684], [-742, -681], [-743, -680], [-746, -680]]}, "center": {"250-258, T": [-735, -692]}}, +{"id": 3333, "name": "Milena", "description": "Milena is a beautiful little girl who lives on Rua do Limão, the capitol of Bairro do Limoeiro. From the Sustenido family, owners of a veterinary clinic that takes care of the gang's mascots, such as Bidu, Monicão, Floquinho, Mingau, and Radar.", "links": {"website": ["https://monica.fandom.com/pt-br/wiki/Milena"]}, "path": {"250-258, T": [[193, 548], [194, 547], [195, 546], [198, 546], [198, 547], [201, 547], [201, 548], [202, 548], [202, 554], [201, 554], [201, 559], [193, 559], [193, 557], [192, 557], [192, 555], [193, 555], [192, 555], [192, 548]]}, "center": {"250-258, T": [197, 552]}}, {"id": 3334, "name": "A Cross", "description": "This is the main logo of youtube streamer - RajonoKunigas", "links": {"website": ["https://rajonokunigas.lt/"], "discord": ["baznycia"]}, "path": {"243-249": [[-175, -13], [-176, 7], [-190, 7], [-190, 21], [-176, 21], [-175, 56], [-158, 56], [-158, 22], [-142, 21], [-143, 7], [-158, 7], [-159, -14], [-175, -14]]}, "center": {"243-249": [-167, 15]}}, {"id": 3335, "name": "Lea, Émilie and Lucas (Crosscode)", "description": "Lea is the protagonist of the 2D action RPG Crosscode, that takes place in a far future on a moon, in the game CrossWorlds. Lea cannot speak except for a few words, like \"Hi, Lea, Bye\" and a few others.\nÉmilie is a French girl, that also plays CrossWorlds. She is the 1st friend Lea makes.\nLucas is a German player of Crossworlds, the second friend Lea makes, and the guide for Lea and Émilie in Rookie Harbour", "links": {"subreddit": ["crosscode"]}, "path": {"255-258": [[392, 943], [403, 937], [406, 935], [412, 935], [417, 939], [427, 938], [426, 945], [423, 955], [392, 955]]}, "center": {"255-258": [409, 945]}}, -{"id": 3336, "name": "SoyHero", "description": "Twitch streamer", "links": {"website": ["https://www.twitch.tv/soyheroo"], "discord": ["ezJbzsBjRJ"]}, "path": {"214-259": [[-387, -795], [-386, -787], [-379, -787], [-379, -795]]}, "center": {"214-259": [-383, -791]}}, +{"id": 3336, "name": "SoyHero", "description": "Twitch streamer", "links": {"website": ["https://www.twitch.tv/soyheroo"], "discord": ["ezJbzsBjRJ"]}, "path": {"214-259, T": [[-387, -795], [-386, -787], [-379, -787], [-379, -795]]}, "center": {"214-259, T": [-383, -791]}}, {"id": 3337, "name": "Coat of arms of Peru", "description": "The Coat of arms of Peru is the national symbolic emblem of Peru.\n\"The arms of the Peruvian Nation shall consist of a shield divided into three fields: one celestial blue to the right, with a vicuna looking inside; other white to the left, with a Cinchona officinalis placed within, and another, red, in the bottom and smaller, with a cornucopia pouring coins, signifying with these symbols the treasures of Peru in the three realms of nature. The coat of arms shall be surmounted by a civic crown in flat view; and accompanied on each side by a flag and a standard of national colors, further described below.\"", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Peru"]}, "path": {"62-242": [[-172, -19], [-173, -17], [-174, -16], [-174, -8], [-171, -4], [-163, -4], [-160, -8], [-160, -16], [-162, -18], [-166, -19], [-168, -19], [-172, -18]]}, "center": {"62-242": [-167, -11]}}, -{"id": 3338, "name": "Girls' Frontline", "description": "Girls' Frontline is a turn-based strategy gacha game for mobile, developed by China-based studio MICA Team. In the game, players control androids known as \"T-Dolls\" who all carry versions of real-life firearms.", "links": {"website": ["https://gf.sunborngame.com/", "https://en.wikipedia.org/wiki/Girls%27_Frontline"], "subreddit": ["girlsfrontline"]}, "path": {"168-258": [[-109, 969], [-109, 962], [-52, 962], [-52, 969]]}, "center": {"168-258": [-80, 966]}}, -{"id": 3339, "name": "Mini Canada Flag", "description": "Mini canada flag placed ontop of charizard card, grew from 3x7 to this larger size after xqc went to sleep", "links": {"subreddit": ["canadaplace"]}, "path": {"250-258": [[-1288, 56], [-1270, 56], [-1269, 71], [-1289, 70]]}, "center": {"250-258": [-1279, 63]}}, -{"id": 3340, "name": "Pão de Queijo (Cheese Bread)", "description": "Pão de queijo (Portuguese pronunciation: [ˈpɐ̃w dʒi ˈkejʒu], \"cheese bread\" in Portuguese) or Brazilian cheese bread is a small, baked cheese roll or cheese bun, a popular snack and breakfast food in Brazil. It is a traditional Brazilian recipe, originating in the state of Minas Gerais.[1]\n\nPão de queijo originated in Brazil. Enslaved people would soak and peel the cassava root and make bread rolls from it. At this time, there was no cheese in the rolls. At the end of the 19th century, more ingredients became available to the colonial community such as milk and cheese. They added milk and cheese to the tapioca roll making what is now known as pão de queijo.[1] It is inexpensive, often sold from streetside stands by vendors carrying a heat-preserving container. In Brazil, it is also very commonly found in groceries, supermarkets and bakeries, industrialized or freshly made. It is also widely eaten in northern Argentina.\n\nDespite being referred to as \"bread\", the cheese bread is basically a type of starch tart cookie or sweet plus eggs, salt, vegetable oil, and cheese, with soft and elastic consistency and with a few variations.[2]", "links": {"website": ["https://en.wikipedia.org/wiki/P%C3%A3o_de_queijo"]}, "path": {"250-258": [[-672, -663], [-662, -663], [-663, -671], [-672, -671], [-673, -664]]}, "center": {"250-258": [-667, -667]}}, -{"id": 3341, "name": "Python", "description": "Python is a programming language invented in 1991 by the Dutch programmer \tGuido van Rossum. It is known for its ease of use, and is used by beginners and advanced coders alike.", "links": {"website": ["https://en.wikipedia.org/wiki/Python_(programming_language)"], "subreddit": ["placepython", "python", "PlaceNL"], "discord": ["placenl"]}, "path": {"230-258": [[-1140, -489], [-1140, -486], [-1140, -484], [-1144, -484], [-1144, -483], [-1145, -483], [-1145, -478], [-1144, -478], [-1144, -477], [-1140, -477], [-1140, -473], [-1139, -473], [-1139, -472], [-1133, -472], [-1133, -473], [-1132, -473], [-1132, -475], [-1132, -477], [-1130, -477], [-1128, -477], [-1128, -478], [-1127, -478], [-1127, -483], [-1128, -483], [-1128, -484], [-1133, -484], [-1132, -484], [-1132, -488], [-1133, -488], [-1133, -489], [-1137, -489]]}, "center": {"230-258": [-1136, -480]}}, -{"id": 3342, "name": "Kivaou", "description": "Kivaou stands as an exceptional gaming community, uniting some of the most remarkable players in the digital realm. With a unique blend of talents and skills, Bictole, Taylord12, Marius, RobertChassiet, Rehoon, and Euphorbe have formed an unbreakable bond of friendship and camaraderie within this gaming fraternity. Their collective passion for gaming transcends the screen, transforming them into true \"yakers\" – a term that perfectly encapsulates their boisterous enthusiasm and infectious spirit. Embracing the BRUH culture, they approach every challenge with unwavering determination and a touch of humor, leaving an indelible mark on the gaming community. Their online prowess and collaborative efforts have earned them widespread admiration and respect, cementing Kivaou's reputation as a powerhouse gaming community that continues to thrive and inspire others in the digital landscape.", "links": {"discord": ["9AbRxhaTc"]}, "path": {"207-258": [[-1042, 88], [-1032, 88], [-1032, 95], [-1042, 95]]}, "center": {"207-258": [-1037, 92]}}, -{"id": 3343, "name": "Windows Vista Taskbar", "description": "The rightmost edge of the taskbar, containing the clock, the icons to switch the language, internet connection, and volume controls. The clock updated every minute, showing the time in UTC 2, or the time in most of Western Europe and Western Africa. This edge was made by a different group entirely from the rest of the taskbar, and their identity is as of yet unknown.", "links": {"website": ["https://en.wikipedia.org/wiki/Windows_Vista"]}, "path": {"235-258": [[584, 971], [719, 971], [719, 999], [584, 999]]}, "center": {"235-258": [652, 985]}}, +{"id": 3338, "name": "Girls' Frontline", "description": "Girls' Frontline is a turn-based strategy gacha game for mobile, developed by China-based studio MICA Team. In the game, players control androids known as \"T-Dolls\" who all carry versions of real-life firearms.", "links": {"website": ["https://gf.sunborngame.com/", "https://en.wikipedia.org/wiki/Girls%27_Frontline"], "subreddit": ["girlsfrontline"]}, "path": {"168-258, T": [[-109, 969], [-109, 962], [-52, 962], [-52, 969]]}, "center": {"168-258, T": [-80, 966]}}, +{"id": 3339, "name": "Mini Canada Flag", "description": "Mini canada flag placed ontop of charizard card, grew from 3x7 to this larger size after xqc went to sleep", "links": {"subreddit": ["canadaplace"]}, "path": {"250-258, T": [[-1288, 56], [-1270, 56], [-1269, 71], [-1289, 70]]}, "center": {"250-258, T": [-1279, 63]}}, +{"id": 3340, "name": "Pão de Queijo (Cheese Bread)", "description": "Pão de queijo (Portuguese pronunciation: [ˈpɐ̃w dʒi ˈkejʒu], \"cheese bread\" in Portuguese) or Brazilian cheese bread is a small, baked cheese roll or cheese bun, a popular snack and breakfast food in Brazil. It is a traditional Brazilian recipe, originating in the state of Minas Gerais.[1]\n\nPão de queijo originated in Brazil. Enslaved people would soak and peel the cassava root and make bread rolls from it. At this time, there was no cheese in the rolls. At the end of the 19th century, more ingredients became available to the colonial community such as milk and cheese. They added milk and cheese to the tapioca roll making what is now known as pão de queijo.[1] It is inexpensive, often sold from streetside stands by vendors carrying a heat-preserving container. In Brazil, it is also very commonly found in groceries, supermarkets and bakeries, industrialized or freshly made. It is also widely eaten in northern Argentina.\n\nDespite being referred to as \"bread\", the cheese bread is basically a type of starch tart cookie or sweet plus eggs, salt, vegetable oil, and cheese, with soft and elastic consistency and with a few variations.[2]", "links": {"website": ["https://en.wikipedia.org/wiki/P%C3%A3o_de_queijo"]}, "path": {"250-258, T": [[-672, -663], [-662, -663], [-663, -671], [-672, -671], [-673, -664]]}, "center": {"250-258, T": [-667, -667]}}, +{"id": 3341, "name": "Python", "description": "Python is a programming language invented in 1991 by the Dutch programmer \tGuido van Rossum. It is known for its ease of use, and is used by beginners and advanced coders alike.", "links": {"website": ["https://en.wikipedia.org/wiki/Python_(programming_language)"], "subreddit": ["placepython", "python", "PlaceNL"], "discord": ["placenl"]}, "path": {"230-258, T": [[-1140, -489], [-1140, -486], [-1140, -484], [-1144, -484], [-1144, -483], [-1145, -483], [-1145, -478], [-1144, -478], [-1144, -477], [-1140, -477], [-1140, -473], [-1139, -473], [-1139, -472], [-1133, -472], [-1133, -473], [-1132, -473], [-1132, -475], [-1132, -477], [-1130, -477], [-1128, -477], [-1128, -478], [-1127, -478], [-1127, -483], [-1128, -483], [-1128, -484], [-1133, -484], [-1132, -484], [-1132, -488], [-1133, -488], [-1133, -489], [-1137, -489]]}, "center": {"230-258, T": [-1136, -480]}}, +{"id": 3342, "name": "Kivaou", "description": "Kivaou stands as an exceptional gaming community, uniting some of the most remarkable players in the digital realm. With a unique blend of talents and skills, Bictole, Taylord12, Marius, RobertChassiet, Rehoon, and Euphorbe have formed an unbreakable bond of friendship and camaraderie within this gaming fraternity. Their collective passion for gaming transcends the screen, transforming them into true \"yakers\" – a term that perfectly encapsulates their boisterous enthusiasm and infectious spirit. Embracing the BRUH culture, they approach every challenge with unwavering determination and a touch of humor, leaving an indelible mark on the gaming community. Their online prowess and collaborative efforts have earned them widespread admiration and respect, cementing Kivaou's reputation as a powerhouse gaming community that continues to thrive and inspire others in the digital landscape.", "links": {"discord": ["9AbRxhaTc"]}, "path": {"207-258, T": [[-1042, 88], [-1032, 88], [-1032, 95], [-1042, 95]]}, "center": {"207-258, T": [-1037, 92]}}, +{"id": 3343, "name": "Windows Vista Taskbar", "description": "The rightmost edge of the taskbar, containing the clock, the icons to switch the language, internet connection, and volume controls. The clock updated every minute, showing the time in UTC 2, or the time in most of Western Europe and Western Africa. This edge was made by a different group entirely from the rest of the taskbar, and their identity is as of yet unknown.", "links": {"website": ["https://en.wikipedia.org/wiki/Windows_Vista"]}, "path": {"235-258, T": [[584, 971], [719, 971], [719, 999], [584, 999]]}, "center": {"235-258, T": [652, 985]}}, {"id": 3344, "name": "Pandarina", "description": "iPandarina is a spanish streamer from Benalmádena, Málaga. She is a member of the e-sport club KOI and mother of Shilka and Neo, her dog and cat. She is also the streamer who has gotten The Isle be played in the spanish Twitch community. SHE REALLY LOVES THE GALLIMIMUS.", "links": {"website": ["https://www.twitch.tv/ipandarina"], "subreddit": ["Pandarina"]}, "path": {"209-218": [[1048, 305], [1048, 282], [1035, 282], [1035, 305]]}, "center": {"209-218": [1042, 294]}}, -{"id": 3345, "name": "They Might Be Giants", "description": "They Might Be Giants (or often shortened to TMBG) is an American alternative rock band formed in 1982 by John Flansburgh and John Linnell.\n\nThis artwork depicts the shorthand of the band's name \"TMBG\".", "links": {"website": ["https://www.theymightbegiants.com/shows", "https://en.wikipedia.org/wiki/They_Might_Be_Giants"], "subreddit": ["tmbg"]}, "path": {"250-258": [[277, -24], [281, -24], [281, -5], [277, -5]]}, "center": {"250-258": [279, -14]}}, +{"id": 3345, "name": "They Might Be Giants", "description": "They Might Be Giants (or often shortened to TMBG) is an American alternative rock band formed in 1982 by John Flansburgh and John Linnell.\n\nThis artwork depicts the shorthand of the band's name \"TMBG\".", "links": {"website": ["https://www.theymightbegiants.com/shows", "https://en.wikipedia.org/wiki/They_Might_Be_Giants"], "subreddit": ["tmbg"]}, "path": {"250-258, T": [[277, -24], [281, -24], [281, -5], [277, -5]]}, "center": {"250-258, T": [279, -14]}}, {"id": 3346, "name": "K-Pop North Block Moonbin Memorial", "description": "In collaboration with r/bangtan and r/twice this block includes the logo of a variety of different K-Pop groups. It also includes the memorial of K-Pop idol Moonbin who passed away this year.", "links": {"subreddit": ["kpop"], "discord": ["KvF2RzR2"]}, "path": {"254-259": [[-135, -885], [-66, -885], [-65, -864], [-135, -864]]}, "center": {"254-259": [-100, -874]}}, {"id": 3347, "name": "K-Pop Hangul Sign", "description": "In collaboration with gigachad oppa, this sign written in Hangul reads 케이팝, or K-Pop.", "links": {"subreddit": ["kpop"], "discord": ["KvF2RzR2"]}, "path": {"249": [[-119, -863], [-106, -863], [-106, -838], [-119, -830]]}, "center": {"249": [-112, -846]}}, -{"id": 3348, "name": "Quantum Moon", "description": "The Quantum Moon is a moon from the game Outer Wilds that changes location when it stops being observed.\n\nThe Quantum Moon was drawn at different places at different times around r/place. Don't blink or you'll miss it!", "links": {"website": ["https://outerwilds.fandom.com/wiki/Quantum_Moon"], "subreddit": ["outerwilds", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"246-258": [[-768, 376], [-768, 379], [-765, 379], [-765, 376]]}, "center": {"246-258": [-766, 378]}}, +{"id": 3348, "name": "Quantum Moon", "description": "The Quantum Moon is a moon from the game Outer Wilds that changes location when it stops being observed.\n\nThe Quantum Moon was drawn at different places at different times around r/place. Don't blink or you'll miss it!", "links": {"website": ["https://outerwilds.fandom.com/wiki/Quantum_Moon"], "subreddit": ["outerwilds", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"246-258, T": [[-768, 376], [-768, 379], [-765, 379], [-765, 376]]}, "center": {"246-258, T": [-766, 378]}}, {"id": 3349, "name": "Peace and Love r/h3h3productions", "description": "Ringo Starr's iconic catchphrase, a meme popular in the H3 podcast community. Also features a teddy bear with the letters TF, representing Teddy Fresh (a company run by Hila Klein, a host of the podcast) and a rat that was adopted into the design.", "links": {"website": ["https://doesryankavanaughlooklikeharveyweinstein.com/"], "subreddit": ["h3h3productions"]}, "path": {"210": [[299, 885], [380, 885], [380, 895], [368, 896], [368, 902], [358, 903], [358, 914], [300, 913]]}, "center": {"210": [335, 899]}}, -{"id": 3350, "name": "Capoeira", "description": "Capoeira (Portuguese pronunciation: [kapuˈe(j)ɾɐ]) is an Afro-Brazilian martial art that combines elements of dance,[1][2][3] acrobatics,[4] music and spirituality.[5][6][7][8] Born of the melting pot of enslaved Africans, Indigenous Brazilians and Portuguese influences[9] at the beginning of the 16th century, capoeira is a constantly evolving art form.[10] It is known for its acrobatic and complex maneuvers, often involving hands on the ground and inverted kicks. It emphasizes flowing movements rather than fixed stances; the ginga, a rocking step, is usually the focal point of the technique. Although debated, the most widely accepted origin of the word capoeira comes from the Tupi words ka'a (\"forest\") paũ (\"round\"),[11] referring to the areas of low vegetation in the Brazilian interior where fugitive slaves would hide. A practitioner of the art is called a capoeirista (Portuguese pronunciation: [kapue(j)ˈɾistɐ]).[12][13]\n\nThough often said to be a martial art disguised as a dance,[14] capoeira served not only as a form of self defense, but also as a way to maintain spirituality and culture.[15] Shortly after the abolition of slavery in Brazil in 1888, capoeira was declared illegal in 1890.[16] However, in the early 1930s, Mestre Bimba created a form of capoeira that held back on its spiritual elements and incorporated elements of jiu jitsu, gymnastics and sports.[17] In doing so, the government viewed capoeira as a socially acceptable sport. In the late 1970s, trailblazers such as Mestre Acordeon started bringing capoeira to the US and Europe, helping the art become internationally recognized and practiced. On 26 November 2014, capoeira was granted a special protected status as intangible cultural heritage by UNESCO.[18]", "links": {"website": ["https://en.wikipedia.org/wiki/Capoeira"]}, "path": {"250-258": [[-765, -699], [-737, -700], [-734, -715], [-737, -728], [-756, -742], [-767, -739], [-767, -723], [-774, -722], [-774, -710], [-767, -708], [-767, -700]]}, "center": {"250-258": [-752, -716]}}, -{"id": 3351, "name": "UNITY", "description": "Group of chavalitos (Group of friends)\n\"Los chavalitos siempre serán chavalitos\"", "links": {}, "path": {"117-156": [[313, 75], [317, 75], [317, 80], [313, 80]], "68-73": [[256, 71], [275, 71], [275, 75], [256, 75], [258, 74], [256, 75]], "166-258": [[320, 74], [324, 74], [324, 77], [320, 79], [320, 74], [322, 75]]}, "center": {"117-156": [315, 78], "68-73": [266, 73], "166-258": [322, 77]}}, -{"id": 3352, "name": ":bruh:", "description": ":bruh:", "links": {}, "path": {"210-258": [[-1011, 112], [-1011, 121], [-1002, 121], [-1002, 112]]}, "center": {"210-258": [-1006, 117]}}, +{"id": 3350, "name": "Capoeira", "description": "Capoeira (Portuguese pronunciation: [kapuˈe(j)ɾɐ]) is an Afro-Brazilian martial art that combines elements of dance,[1][2][3] acrobatics,[4] music and spirituality.[5][6][7][8] Born of the melting pot of enslaved Africans, Indigenous Brazilians and Portuguese influences[9] at the beginning of the 16th century, capoeira is a constantly evolving art form.[10] It is known for its acrobatic and complex maneuvers, often involving hands on the ground and inverted kicks. It emphasizes flowing movements rather than fixed stances; the ginga, a rocking step, is usually the focal point of the technique. Although debated, the most widely accepted origin of the word capoeira comes from the Tupi words ka'a (\"forest\") paũ (\"round\"),[11] referring to the areas of low vegetation in the Brazilian interior where fugitive slaves would hide. A practitioner of the art is called a capoeirista (Portuguese pronunciation: [kapue(j)ˈɾistɐ]).[12][13]\n\nThough often said to be a martial art disguised as a dance,[14] capoeira served not only as a form of self defense, but also as a way to maintain spirituality and culture.[15] Shortly after the abolition of slavery in Brazil in 1888, capoeira was declared illegal in 1890.[16] However, in the early 1930s, Mestre Bimba created a form of capoeira that held back on its spiritual elements and incorporated elements of jiu jitsu, gymnastics and sports.[17] In doing so, the government viewed capoeira as a socially acceptable sport. In the late 1970s, trailblazers such as Mestre Acordeon started bringing capoeira to the US and Europe, helping the art become internationally recognized and practiced. On 26 November 2014, capoeira was granted a special protected status as intangible cultural heritage by UNESCO.[18]", "links": {"website": ["https://en.wikipedia.org/wiki/Capoeira"]}, "path": {"250-258, T": [[-765, -699], [-737, -700], [-734, -715], [-737, -728], [-756, -742], [-767, -739], [-767, -723], [-774, -722], [-774, -710], [-767, -708], [-767, -700]]}, "center": {"250-258, T": [-752, -716]}}, +{"id": 3351, "name": "UNITY", "description": "Group of chavalitos (Group of friends)\n\"Los chavalitos siempre serán chavalitos\"", "links": {}, "path": {"117-156": [[313, 75], [317, 75], [317, 80], [313, 80]], "68-73": [[256, 71], [275, 71], [275, 75], [256, 75], [258, 74], [256, 75]], "166-258, T": [[320, 74], [324, 74], [324, 77], [320, 79], [320, 74], [322, 75]]}, "center": {"117-156": [315, 78], "68-73": [266, 73], "166-258, T": [322, 77]}}, +{"id": 3352, "name": ":bruh:", "description": ":bruh:", "links": {}, "path": {"210-258, T": [[-1011, 112], [-1011, 121], [-1002, 121], [-1002, 112]]}, "center": {"210-258, T": [-1006, 117]}}, {"id": 3353, "name": "Borussia Dortmund (BVB)", "description": "Borussia Dortmund, commonly known as BVB or Borussia, is a professional football club based in Dortmund, North Rhine-Westphalia, Germany. Founded in 1909, the club has become one of the most popular and successful football teams in Europe.\n\nNickname: Borussia Dortmund's nickname is \"Die Schwarzgelben\" (The Black and Yellows), which refers to the club's iconic colors.\n\nStadium: The team plays its home matches at Signal Iduna Park, also known as Westfalenstadion, one of the largest and most renowned stadiums in Europe. It has a massive capacity, often drawing a fervent and passionate crowd.\n\nSuccess: Borussia Dortmund has a rich history of success, both domestically and internationally. The club has won numerous Bundesliga titles, which is the top-tier football league in Germany, and has lifted the DFB-Pokal (German Cup) multiple times.\n\nEuropean Glory: The club has had success in European competitions as well, most notably winning the UEFA Champions League in 1997, defeating Juventus in the final. Additionally, they have reached the final of the Champions League and the UEFA Cup (now Europa League) on other occasions, showcasing their prowess on the continental stage.\n\nFamous Players: Over the years, Borussia Dortmund has produced and attracted many top-class players. Some of the legendary footballers associated with the club include Michael Zorc, Matthias Sammer, Jürgen Kohler, Lars Ricken, and more recently, Robert Lewandowski, Marco Reus, and Erling Haaland, to name a few.\n\nPassionate Fanbase: The club has a massive and devoted fanbase, both within Germany and around the world. The supporters, known as \"Die Gelbe Wand\" (The Yellow Wall), create an electric atmosphere at home matches, making Signal Iduna Park one of the most intimidating stadiums for opposing teams.", "links": {"subreddit": ["borussiadortmund"]}, "path": {"253": [[-185, 892], [-162, 892], [-162, 900], [-186, 900], [-186, 892]]}, "center": {"253": [-174, 896]}}, -{"id": 3355, "name": "Bowl of petunias", "description": "In The Hitchhiker's Guide to the Galaxy, a bowl of petunias is improbably summoned many kilometers above the planet Magrathea along with a sperm whale. They both subsequently fall to their deaths.", "links": {"subreddit": ["douglasadams"]}, "path": {"250-258": [[-1106, -482], [-1108, -479], [-1108, -478], [-1109, -478], [-1109, -479], [-1114, -479], [-1114, -480], [-1115, -480], [-1114, -481], [-1114, -483], [-1115, -483], [-1114, -484], [-1120, -486], [-1117, -488], [-1116, -490], [-1116, -491], [-1116, -490], [-1115, -490], [-1112, -489], [-1111, -489], [-1111, -490], [-1111, -489], [-1110, -489], [-1111, -488], [-1111, -486], [-1110, -485], [-1108, -483]]}, "center": {"250-258": [-1111, -482]}}, -{"id": 3356, "name": "Jeppy", "description": "Jeppy is the mascot of JetPunk, a popular quiz website.", "links": {"website": ["https://jetpunk.com/"], "subreddit": ["JetPunk"], "discord": ["r96C5tpgjQ", "WD2ak6DydS"]}, "path": {"250-258": [[190, 145], [190, 146], [189, 146], [189, 147], [188, 147], [188, 148], [187, 148], [186, 147], [187, 148], [186, 149], [187, 148], [188, 148], [188, 149], [189, 149], [189, 150], [191, 150], [191, 149], [193, 149], [193, 147], [192, 147], [192, 146], [192, 145], [191, 145]]}, "center": {"250-258": [191, 148]}}, -{"id": 3357, "name": "Tomiii 11", "description": "Tomás Pablo Blanch Toledo, better known as \"Tomiii 11,\" was a Chilean child and YouTuber who gained recognition and fame in the Latin American and Spanish communities. His dream was to become a YouTuber, a dream he achieved thanks to the affection he received from people. He passed away on August 30, 2021, at the age of 12, due to a brain tumor he had been suffering from even before he started his YouTube channel.\n\n—————————————\n\nTomás Pablo Blanch Toledo, más conocido como \"Tomiii 11\", fue un niño y YouTuber chileno que ganó reconocimiento y fama en la comunidad Latinoamericana y de España. Su sueño era convertirse en YouTuber, sueño que logró gracias al cariño que recibió de la gente. Falleció el 30 de agosto de 2021 a los 12 años de edad debido a un tumor cerebral que padecía incluso antes de abrir su canal de YouTube.", "links": {"website": ["https://www.youtube.com/channel/UCzFJ9ZkjYpxWTSqX9cVXj4g", "https://www.instagram.com/tomiii_11youtuber/", "https://es.wikipedia.org/wiki/Tomiii_11"], "subreddit": ["chile"]}, "path": {"214-258": [[-1207, -810], [-1213, -801], [-1212, -793], [-1207, -787], [-1209, -778], [-1209, -772], [-1210, -769], [-1208, -767], [-1202, -759], [-1207, -755], [-1177, -755], [-1183, -761], [-1178, -766], [-1175, -770], [-1177, -773], [-1177, -788], [-1172, -798], [-1176, -805], [-1185, -813], [-1202, -813], [-1205, -810], [-1208, -809]]}, "center": {"214-258": [-1192, -796]}}, -{"id": 3358, "name": "ZilverK", "description": "Hector Treviño, better known as ZilverK, is a popular VRChat and Twitch VTuber from Mexico who is known for his energetic and humorous personality.\n\nHe gained a significant following after adopting his \"Ugandan Knuckles\" look in October 2021 and shares his content on various platforms including TikTok and YouTube.\n\nHe is the most followed VTuber on TikTok with 7.5M followers, the second most followed on Twitch with 1.9M followers (after Nimu Spacecat), and the fourth most followed on YouTube with 2.4M subscribers (after Gawr Gura, Kizuna AI, and Houshou Marine).\n\nIn January 2023, he won an award for \"Vtuber of the Year\" at the Esland Awards: Second Edition, hosted by TheGrefg.", "links": {"website": ["https://www.twitch.tv/zilverk", "https://youtube.com/@ZiilverK", "https://www.tiktok.com/@ziilverk", "https://twitter.com/Zilverk", "https://www.instagram.com/zilverkchu/", "https://www.facebook.com/Ziilverk"], "subreddit": ["ZilverK"], "discord": ["ZilverK"]}, "path": {"214-258": [[-708, 450], [-708, 497], [-708, 498], [-655, 498], [-655, 450]]}, "center": {"214-258": [-681, 474]}}, -{"id": 3359, "name": "Captain America", "description": "A small Captain America pixel art made by Marvel Place", "links": {"subreddit": ["Marvel_Place"], "discord": ["wpAs32st"]}, "path": {"250-258": [[-1206, -324], [-1199, -324], [-1199, -316], [-1206, -316]]}, "center": {"250-258": [-1202, -320]}}, -{"id": 3360, "name": "House", "description": "A small, collaborative art of a house and yard.", "links": {}, "path": {"249-258": [[-1300, 71], [-1299, 71], [-1299, 70], [-1298, 70], [-1297, 70], [-1297, 69], [-1295, 69], [-1295, 70], [-1293, 70], [-1293, 71], [-1292, 71], [-1292, 72], [-1291, 72], [-1291, 74], [-1299, 74], [-1299, 71]]}, "center": {"249-258": [-1296, 72]}}, +{"id": 3355, "name": "Bowl of petunias", "description": "In The Hitchhiker's Guide to the Galaxy, a bowl of petunias is improbably summoned many kilometers above the planet Magrathea along with a sperm whale. They both subsequently fall to their deaths.", "links": {"subreddit": ["douglasadams"]}, "path": {"250-258, T": [[-1106, -482], [-1108, -479], [-1108, -478], [-1109, -478], [-1109, -479], [-1114, -479], [-1114, -480], [-1115, -480], [-1114, -481], [-1114, -483], [-1115, -483], [-1114, -484], [-1120, -486], [-1117, -488], [-1116, -490], [-1116, -491], [-1116, -490], [-1115, -490], [-1112, -489], [-1111, -489], [-1111, -490], [-1111, -489], [-1110, -489], [-1111, -488], [-1111, -486], [-1110, -485], [-1108, -483]]}, "center": {"250-258, T": [-1111, -482]}}, +{"id": 3356, "name": "Jeppy", "description": "Jeppy is the mascot of JetPunk, a popular quiz website.", "links": {"website": ["https://jetpunk.com/"], "subreddit": ["JetPunk"], "discord": ["r96C5tpgjQ", "WD2ak6DydS"]}, "path": {"250-258, T": [[190, 145], [190, 146], [189, 146], [189, 147], [188, 147], [188, 148], [187, 148], [186, 147], [187, 148], [186, 149], [187, 148], [188, 148], [188, 149], [189, 149], [189, 150], [191, 150], [191, 149], [193, 149], [193, 147], [192, 147], [192, 146], [192, 145], [191, 145]]}, "center": {"250-258, T": [191, 148]}}, +{"id": 3357, "name": "Tomiii 11", "description": "Tomás Pablo Blanch Toledo, better known as \"Tomiii 11,\" was a Chilean child and YouTuber who gained recognition and fame in the Latin American and Spanish communities. His dream was to become a YouTuber, a dream he achieved thanks to the affection he received from people. He passed away on August 30, 2021, at the age of 12, due to a brain tumor he had been suffering from even before he started his YouTube channel.\n\n—————————————\n\nTomás Pablo Blanch Toledo, más conocido como \"Tomiii 11\", fue un niño y YouTuber chileno que ganó reconocimiento y fama en la comunidad Latinoamericana y de España. Su sueño era convertirse en YouTuber, sueño que logró gracias al cariño que recibió de la gente. Falleció el 30 de agosto de 2021 a los 12 años de edad debido a un tumor cerebral que padecía incluso antes de abrir su canal de YouTube.", "links": {"website": ["https://www.youtube.com/channel/UCzFJ9ZkjYpxWTSqX9cVXj4g", "https://www.instagram.com/tomiii_11youtuber/", "https://es.wikipedia.org/wiki/Tomiii_11"], "subreddit": ["chile"]}, "path": {"214-258, T": [[-1207, -810], [-1213, -801], [-1212, -793], [-1207, -787], [-1209, -778], [-1209, -772], [-1210, -769], [-1208, -767], [-1202, -759], [-1207, -755], [-1177, -755], [-1183, -761], [-1178, -766], [-1175, -770], [-1177, -773], [-1177, -788], [-1172, -798], [-1176, -805], [-1185, -813], [-1202, -813], [-1205, -810], [-1208, -809]]}, "center": {"214-258, T": [-1192, -796]}}, +{"id": 3358, "name": "ZilverK", "description": "Hector Treviño, better known as ZilverK, is a popular VRChat and Twitch VTuber from Mexico who is known for his energetic and humorous personality.\n\nHe gained a significant following after adopting his \"Ugandan Knuckles\" look in October 2021 and shares his content on various platforms including TikTok and YouTube.\n\nHe is the most followed VTuber on TikTok with 7.5M followers, the second most followed on Twitch with 1.9M followers (after Nimu Spacecat), and the fourth most followed on YouTube with 2.4M subscribers (after Gawr Gura, Kizuna AI, and Houshou Marine).\n\nIn January 2023, he won an award for \"Vtuber of the Year\" at the Esland Awards: Second Edition, hosted by TheGrefg.", "links": {"website": ["https://www.twitch.tv/zilverk", "https://youtube.com/@ZiilverK", "https://www.tiktok.com/@ziilverk", "https://twitter.com/Zilverk", "https://www.instagram.com/zilverkchu/", "https://www.facebook.com/Ziilverk"], "subreddit": ["ZilverK"], "discord": ["ZilverK"]}, "path": {"214-258, T": [[-708, 450], [-708, 497], [-708, 498], [-655, 498], [-655, 450]]}, "center": {"214-258, T": [-681, 474]}}, +{"id": 3359, "name": "Captain America", "description": "A small Captain America pixel art made by Marvel Place", "links": {"subreddit": ["Marvel_Place"], "discord": ["wpAs32st"]}, "path": {"250-258, T": [[-1206, -324], [-1199, -324], [-1199, -316], [-1206, -316]]}, "center": {"250-258, T": [-1202, -320]}}, +{"id": 3360, "name": "House", "description": "A small, collaborative art of a house and yard.", "links": {}, "path": {"249-258, T": [[-1300, 71], [-1299, 71], [-1299, 70], [-1298, 70], [-1297, 70], [-1297, 69], [-1295, 69], [-1295, 70], [-1293, 70], [-1293, 71], [-1292, 71], [-1292, 72], [-1291, 72], [-1291, 74], [-1299, 74], [-1299, 71]]}, "center": {"249-258, T": [-1296, 72]}}, {"id": 3361, "name": "TUMBLURR", "description": "Tumblurr it's the best streamer in Italy", "links": {"website": ["https://www.twitch.tv/tumblurr"], "subreddit": ["LaStalla"]}, "path": {"200-236": [[965, 899], [965, 911], [900, 915], [899, 899]]}, "center": {"200-236": [908, 907]}}, -{"id": 3362, "name": "Serponge's icon", "description": "Serponge is one of most important french creator of Geometry Dash. He is very important in the community of Geometry Dash", "links": {"website": ["https://twitter.com/Sersponge", "https://www.youtube.com/c/serpongedash", "https://geometry-dash-fan.fandom.com/wiki/Serponge"]}, "path": {"201-258": [[-412, 377], [-401, 377], [-401, 389], [-412, 389]]}, "center": {"201-258": [-406, 383]}}, -{"id": 3363, "name": "Cami", "description": "Cami is the pony representing the Republic of Colombia (Ponification). She is a pony designed by the administration of the MLP Plus Colombia group on Facebook and is officially used in the comics of the 'Nation Ponies' series.\n\nShe is a white pegasus with a mane and tail in the colors yellow, blue, and red, which reference the colors of the national flag. Her wings have four colors of feathers. The lesser coverts, in white; the median coverts and the alula, in yellow; the greater coverts, in blue, and the secondary and primary remiges, in red. Her 'Cutie Mark' is a waving Colombian flag.\n\nPixel art created by a handful of members from the Bronies Bogotá DC group.", "links": {"website": ["https://www.instagram.com/broniesbogotadc/", "https://www.facebook.com/groups/BroniesBogotaDC/"], "discord": ["4Qpa7mrce3"]}, "path": {"173-258": [[-956, 970], [-931, 970], [-931, 967], [-932, 967], [-932, 966], [-936, 966], [-936, 962], [-937, 962], [-937, 961], [-938, 961], [-938, 960], [-940, 960], [-940, 959], [-941, 959], [-941, 958], [-946, 958], [-946, 959], [-947, 959], [-947, 960], [-949, 960], [-949, 961], [-950, 961], [-950, 962], [-951, 962], [-951, 966], [-955, 966], [-955, 967], [-956, 967]]}, "center": {"173-258": [-943, 965]}}, -{"id": 3364, "name": "Jodio Joestar (Jojo part 9)", "description": "The protagonist of Jojo's Bizarre Adventure Part 9: The Jojolands.\n\nStand: November Rain\n\n\"This is the story of me becoming filthy rich.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1199, -116], [-1193, -116], [-1193, -108], [-1199, -108]]}, "center": {"250-258": [-1196, -112]}}, -{"id": 3365, "name": "StarVTuber", "description": "StarVTuber, also known as \"STAR\" or \"MINION\", is a Peruvian streamer/youtuber, who debuted as a VTuber in 2021. She broadcasts on Twitch and is known for being a midget and for her videos with varied content, ranging from activities with her followers to gameplays. Before using an avatar, she was known for making Reddit-based comments and videos.", "links": {"website": ["https://www.twitch.tv/starvtuber", "https://www.youtube.com/@StarVTuber"], "discord": ["reinoestelar"]}, "path": {"171-259": [[-377, -815], [-377, -778], [-339, -778], [-338, -815], [-338, -816], [-377, -816]]}, "center": {"171-259": [-357, -797]}}, -{"id": 3367, "name": "Shape", "description": "A Calico Cat which reprents the VTuber Shape.", "links": {"website": ["https://www.youtube.com/c/shape-polygon"]}, "path": {"250-258": [[1016, -715], [1016, -699], [1017, -698], [1018, -697], [1022, -697], [1022, -698], [1028, -698], [1028, -697], [1032, -697], [1034, -697], [1034, -716], [1029, -716], [1029, -715], [1028, -714], [1027, -713], [1027, -716], [1023, -716], [1023, -715], [1022, -714], [1021, -715], [1020, -716], [1016, -716]]}, "center": {"250-258": [1024, -706]}}, -{"id": 3368, "name": "Just A Bit Of Love", "description": "A small artwork to show some love on the canvas, created mostly by GameMind", "links": {}, "path": {"242-258": [[1395, 233], [1395, 249], [1403, 249], [1403, 233]]}, "center": {"242-258": [1399, 241]}}, -{"id": 3369, "name": "meica05", "description": "Meica05 Vtuber/Streamer", "links": {"website": ["https://lit.link/en/meica05", "https://twitter.com/meica05", "https://www.twitch.tv/meica05"]}, "path": {"250-258": [[-1254, -59], [-1260, -67], [-1254, -74], [-1252, -74], [-1248, -77], [-1247, -77], [-1250, -74], [-1246, -74], [-1240, -67], [-1246, -59], [-1249, -59], [-1250, -60], [-1251, -59]]}, "center": {"250-258": [-1250, -67]}}, -{"id": 3370, "name": "Noelle", "description": "Noelle is a character in the gacha game Genshin Impact created by Mihoyo", "links": {"subreddit": ["NoelleMains"], "discord": ["wCjjGxuNbN"]}, "path": {"250-258": [[27, 551], [43, 551], [43, 572], [28, 572], [28, 551]]}, "center": {"250-258": [36, 562]}}, -{"id": 3371, "name": "Coat of arms of Costa Rica", "description": "The Costa Rican coat of arms was promulgated on September 29, 1848, together with the current national flag, during the administration of José María Castro Madriz.", "links": {"website": ["https://es.wikipedia.org/wiki/Escudo_de_Costa_Rica"], "subreddit": ["Ticos", "costarica"]}, "path": {"127-258": [[-519, -801], [-516, -801], [-513, -804], [-511, -804], [-511, -808], [-511, -815], [-519, -822], [-527, -814], [-527, -811], [-528, -809], [-527, -808]]}, "center": {"127-258": [-519, -811]}}, -{"id": 3372, "name": "PermadeaZ", "description": "PermadeaZ is a twitch series hosted by the Spanish streamer Silithur. The series is played by several famous streamers in the game Project Zomboid. The particularity is that players have only one live, so if they die, they are out.", "links": {"website": ["https://www.twitch.tv/silithur", "https://www.youtube.com/watch?v=BHmTdKNe5s8", "https://twitter.com/Silithur"]}, "path": {"5-258": [[116, -96], [200, -96], [200, -78], [116, -78], [116, -93], [116, -95]]}, "center": {"5-258": [158, -87]}}, -{"id": 3373, "name": "[MLP] Applejack", "description": "Applejack is a recurring character in the series My Little Pony: Friendship is Magic. She is a part of the Mane Six and represents the Element of Honesty.", "links": {"website": ["https://mlp.fandom.com/wiki/Applejack"]}, "path": {"250-258": [[675, 86], [675, 78], [676, 78], [676, 77], [677, 77], [677, 76], [688, 76], [688, 77], [689, 77], [689, 78], [690, 78], [690, 84], [691, 84], [691, 86]]}, "center": {"250-258": [683, 81]}}, -{"id": 3374, "name": "Gaty (BFDI)", "description": "A character from the BFDI series (Existing in IDFB, BFB, TPOT).", "links": {"website": ["https://bfdi.tv"], "subreddit": ["bfdi", "BattleForDreamIsland"], "discord": ["Qct6pAM"]}, "path": {"210-258": [[1002, 134], [1000, 134], [1000, 136], [1001, 136], [1001, 137], [1000, 137], [1000, 139], [1001, 139], [1001, 140], [1003, 140], [1003, 141], [1005, 141], [1005, 140], [1007, 140], [1007, 141], [1009, 141], [1009, 140], [1011, 140], [1011, 133], [1010, 133], [1010, 132], [1009, 132], [1008, 132], [1008, 133], [1007, 133], [1007, 132], [1005, 132], [1005, 133], [1004, 133], [1004, 132], [1002, 132], [1002, 133], [1001, 133]]}, "center": {"210-258": [1006, 136]}}, +{"id": 3362, "name": "Serponge's icon", "description": "Serponge is one of most important french creator of Geometry Dash. He is very important in the community of Geometry Dash", "links": {"website": ["https://twitter.com/Sersponge", "https://www.youtube.com/c/serpongedash", "https://geometry-dash-fan.fandom.com/wiki/Serponge"]}, "path": {"201-258, T": [[-412, 377], [-401, 377], [-401, 389], [-412, 389]]}, "center": {"201-258, T": [-406, 383]}}, +{"id": 3363, "name": "Cami", "description": "Cami is the pony representing the Republic of Colombia (Ponification). She is a pony designed by the administration of the MLP Plus Colombia group on Facebook and is officially used in the comics of the 'Nation Ponies' series.\n\nShe is a white pegasus with a mane and tail in the colors yellow, blue, and red, which reference the colors of the national flag. Her wings have four colors of feathers. The lesser coverts, in white; the median coverts and the alula, in yellow; the greater coverts, in blue, and the secondary and primary remiges, in red. Her 'Cutie Mark' is a waving Colombian flag.\n\nPixel art created by a handful of members from the Bronies Bogotá DC group.", "links": {"website": ["https://www.instagram.com/broniesbogotadc/", "https://www.facebook.com/groups/BroniesBogotaDC/"], "discord": ["4Qpa7mrce3"]}, "path": {"173-258, T": [[-956, 970], [-931, 970], [-931, 967], [-932, 967], [-932, 966], [-936, 966], [-936, 962], [-937, 962], [-937, 961], [-938, 961], [-938, 960], [-940, 960], [-940, 959], [-941, 959], [-941, 958], [-946, 958], [-946, 959], [-947, 959], [-947, 960], [-949, 960], [-949, 961], [-950, 961], [-950, 962], [-951, 962], [-951, 966], [-955, 966], [-955, 967], [-956, 967]]}, "center": {"173-258, T": [-943, 965]}}, +{"id": 3364, "name": "Jodio Joestar (Jojo part 9)", "description": "The protagonist of Jojo's Bizarre Adventure Part 9: The Jojolands.\n\nStand: November Rain\n\n\"This is the story of me becoming filthy rich.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1199, -116], [-1193, -116], [-1193, -108], [-1199, -108]]}, "center": {"250-258, T": [-1196, -112]}}, +{"id": 3365, "name": "StarVTuber", "description": "StarVTuber, also known as \"STAR\" or \"MINION\", is a Peruvian streamer/youtuber, who debuted as a VTuber in 2021. She broadcasts on Twitch and is known for being a midget and for her videos with varied content, ranging from activities with her followers to gameplays. Before using an avatar, she was known for making Reddit-based comments and videos.", "links": {"website": ["https://www.twitch.tv/starvtuber", "https://www.youtube.com/@StarVTuber"], "discord": ["reinoestelar"]}, "path": {"171-259, T": [[-377, -815], [-377, -778], [-339, -778], [-338, -815], [-338, -816], [-377, -816]]}, "center": {"171-259, T": [-357, -797]}}, +{"id": 3367, "name": "Shape", "description": "A Calico Cat which reprents the VTuber Shape.", "links": {"website": ["https://www.youtube.com/c/shape-polygon"]}, "path": {"250-258, T": [[1016, -715], [1016, -699], [1017, -698], [1018, -697], [1022, -697], [1022, -698], [1028, -698], [1028, -697], [1032, -697], [1034, -697], [1034, -716], [1029, -716], [1029, -715], [1028, -714], [1027, -713], [1027, -716], [1023, -716], [1023, -715], [1022, -714], [1021, -715], [1020, -716], [1016, -716]]}, "center": {"250-258, T": [1024, -706]}}, +{"id": 3368, "name": "Just A Bit Of Love", "description": "A small artwork to show some love on the canvas, created mostly by GameMind", "links": {}, "path": {"242-258, T": [[1395, 233], [1395, 249], [1403, 249], [1403, 233]]}, "center": {"242-258, T": [1399, 241]}}, +{"id": 3369, "name": "meica05", "description": "Meica05 Vtuber/Streamer", "links": {"website": ["https://lit.link/en/meica05", "https://twitter.com/meica05", "https://www.twitch.tv/meica05"]}, "path": {"250-258, T": [[-1254, -59], [-1260, -67], [-1254, -74], [-1252, -74], [-1248, -77], [-1247, -77], [-1250, -74], [-1246, -74], [-1240, -67], [-1246, -59], [-1249, -59], [-1250, -60], [-1251, -59]]}, "center": {"250-258, T": [-1250, -67]}}, +{"id": 3370, "name": "Noelle", "description": "Noelle is a character in the gacha game Genshin Impact created by Mihoyo", "links": {"subreddit": ["NoelleMains"], "discord": ["wCjjGxuNbN"]}, "path": {"250-258, T": [[27, 551], [43, 551], [43, 572], [28, 572], [28, 551]]}, "center": {"250-258, T": [36, 562]}}, +{"id": 3371, "name": "Coat of arms of Costa Rica", "description": "The Costa Rican coat of arms was promulgated on September 29, 1848, together with the current national flag, during the administration of José María Castro Madriz.", "links": {"website": ["https://es.wikipedia.org/wiki/Escudo_de_Costa_Rica"], "subreddit": ["Ticos", "costarica"]}, "path": {"127-258, T": [[-519, -801], [-516, -801], [-513, -804], [-511, -804], [-511, -808], [-511, -815], [-519, -822], [-527, -814], [-527, -811], [-528, -809], [-527, -808]]}, "center": {"127-258, T": [-519, -811]}}, +{"id": 3372, "name": "PermadeaZ", "description": "PermadeaZ is a twitch series hosted by the Spanish streamer Silithur. The series is played by several famous streamers in the game Project Zomboid. The particularity is that players have only one live, so if they die, they are out.", "links": {"website": ["https://www.twitch.tv/silithur", "https://www.youtube.com/watch?v=BHmTdKNe5s8", "https://twitter.com/Silithur"]}, "path": {"5-258, T": [[116, -96], [200, -96], [200, -78], [116, -78], [116, -93], [116, -95]]}, "center": {"5-258, T": [158, -87]}}, +{"id": 3373, "name": "[MLP] Applejack", "description": "Applejack is a recurring character in the series My Little Pony: Friendship is Magic. She is a part of the Mane Six and represents the Element of Honesty.", "links": {"website": ["https://mlp.fandom.com/wiki/Applejack"]}, "path": {"250-258, T": [[675, 86], [675, 78], [676, 78], [676, 77], [677, 77], [677, 76], [688, 76], [688, 77], [689, 77], [689, 78], [690, 78], [690, 84], [691, 84], [691, 86]]}, "center": {"250-258, T": [683, 81]}}, +{"id": 3374, "name": "Gaty (BFDI)", "description": "A character from the BFDI series (Existing in IDFB, BFB, TPOT).", "links": {"website": ["https://bfdi.tv"], "subreddit": ["bfdi", "BattleForDreamIsland"], "discord": ["Qct6pAM"]}, "path": {"210-258, T": [[1002, 134], [1000, 134], [1000, 136], [1001, 136], [1001, 137], [1000, 137], [1000, 139], [1001, 139], [1001, 140], [1003, 140], [1003, 141], [1005, 141], [1005, 140], [1007, 140], [1007, 141], [1009, 141], [1009, 140], [1011, 140], [1011, 133], [1010, 133], [1010, 132], [1009, 132], [1008, 132], [1008, 133], [1007, 133], [1007, 132], [1005, 132], [1005, 133], [1004, 133], [1004, 132], [1002, 132], [1002, 133], [1001, 133]]}, "center": {"210-258, T": [1006, 136]}}, {"id": 3375, "name": "San Lorenzo de Almagro", "description": "Club Atlético San Lorenzo de Almagro, commonly known as San Lorenzo de Almagro or simply San Lorenzo (in English: Saint Lawrence), is a sports club of Argentina in the Boedo district of Buenos Aires. It is best known for its football team, which plays in the Primera División, the first tier of the Argentinian football league system. San Lorenzo is also considered one of the \"big five\" (\"Los 5 Grandes\") of Argentinian football, along with Independiente, River Plate, Boca Juniors, and Racing Club.", "links": {"website": ["https://en.wikipedia.org/wiki/San_Lorenzo_de_Almagro"], "subreddit": ["sanlorenzo"]}, "path": {"247": [[1205, 974], [1216, 974], [1216, 987], [1210, 989], [1206, 985], [1203, 976], [1204, 974]]}, "center": {"247": [1210, 980]}}, -{"id": 3376, "name": "Ark", "description": "Ark: Survival Evolved es un videojuego de acción-aventura y supervivencia desarrollado por Studio Wildcard, Instinct Games, Efecto Studio y Virtual Basement. Lanzado oficialmente el 29 de agosto de 2017 para Windows, Xbox One, Nintendo Switch, PlayStation 4, IOS y Android.", "links": {"subreddit": ["ARK"]}, "path": {"218-258": [[-800, 479], [-797, 473], [-792, 465], [-786, 456], [-782, 460], [-782, 462], [-776, 471], [-773, 479], [-774, 480], [-780, 480], [-782, 478], [-782, 475], [-783, 474], [-789, 474], [-790, 475], [-790, 478], [-792, 480], [-799, 480]]}, "center": {"218-258": [-786, 467]}}, -{"id": 3377, "name": "Haikyuu French Community", "description": "Artwork made for r/haikyuu and r/Haikyuu_FR\n\nHaikyū!! is a manga written and drawn by Haruichi Furudate. It was prepublished from February 2012 to July 2020 in Shūeisha's Weekly Shōnen Jump magazine, and was compiled into a total of forty-five volumes.\n\nOriginal drawing by u/P0weredG4mes\n\ninspired by @ Saltyshima and an unknown user known as 9664c4\n\nWith the collaboration of the r/placeFR community\n\nSpecial thanks to:\nAkiTsuKii\nand many others who helped defend and improve the project", "links": {"website": ["https://www.pixilart.com/art/nishinoya-0c2de60860dc3ad", "http://pixelartmaker.com/art/d256d1d28ddb94c"], "subreddit": ["haikyuu", "Haikyuu_FR", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"160-163": [[-449, 813], [-445, 838], [-439, 853], [-423, 868], [-415, 870], [-404, 865], [-409, 856], [-405, 848], [-412, 837], [-428, 835], [-427, 825], [-424, 817], [-426, 810], [-432, 806], [-441, 806], [-449, 808], [-443, 815], [-443, 813]], "156-159": [[-441, 847], [-436, 843], [-430, 843], [-426, 843], [-422, 839], [-419, 835], [-412, 836], [-409, 839], [-408, 844], [-418, 847], [-422, 854], [-431, 857], [-437, 857], [-442, 851]], "164-258": [[-453, 736], [-465, 738], [-466, 749], [-460, 755], [-463, 762], [-458, 769], [-418, 769], [-417, 761], [-421, 757], [-416, 747], [-426, 736], [-439, 742]]}, "center": {"160-163": [-422, 850], "156-159": [-431, 850], "164-258": [-445, 755]}}, -{"id": 3378, "name": "The Corridor Digital Logo", "description": "The Logo of Corridor Digital, A group of filmmakers who make videos and shortfilms on their own website, and on their youtube accounts: Corridor and Corridor Crew", "links": {"website": ["https://www.corridordigital.com/", "https://www.youtube.com/@Corridor", "https://www.youtube.com/@CorridorCrew", "https://www.youtube.com/@corridorcast"], "subreddit": ["Corridor"], "discord": ["WmsyggF"]}, "path": {"153-259, 68-71, 84-117": [[210, 17], [222, 4], [222, 1], [209, -11], [195, 3], [210, 16]]}, "center": {"153-259, 68-71, 84-117": [210, 3]}}, -{"id": 3379, "name": "TV with Bosnian lily", "description": "A TV showing a Bosnian and Herzegovinian national symbol, the Bosnian lily. The TV is covered with traditional crocheting lacework to poke fun at its overuse in Bosnian homes.", "links": {"subreddit": ["bih"], "discord": ["gukrSH2Q"]}, "path": {"250-258": [[1256, 412], [1256, 443], [1283, 443], [1283, 412], [1270, 412]]}, "center": {"250-258": [1270, 428]}}, -{"id": 3380, "name": "Amilcar", "description": "Amilcar es un youtuber y streamer Argentino, cuenta con más de 200 mil suscriptores en su canal principal.ç\n\nSu contenido se basa en Resúmenes, preguntas y respuestas, algunos gameplays y criticas a juegos. La serie mas conocida en su canal es \"Todo lo malo en (nombre de juego cualquiera)\" serie donde resalta duramente las cosas malas de los juegos.", "links": {"website": ["https://www.youtube.com/@Amilcar/channels", "https://www.youtube.com/@SrAmilcar1", "https://www.twitch.tv/sramilcar"], "discord": ["amilcarcebado"]}, "path": {"250-258": [[-1075, -295], [-1075, -282], [-1062, -288], [-1062, -295], [-1069, -295], [-1075, -295], [-1074, -282], [-1062, -282], [-1062, -287]]}, "center": {"250-258": [-1065, -292]}}, -{"id": 3381, "name": "ZilverK", "description": "Best VR streamer from Mexico", "links": {"website": ["https://www.twitch.tv/zilverk"], "discord": ["zilverk"]}, "path": {"113-258": [[-710, 446], [-711, 498], [-655, 498], [-654, 446], [-656, 447], [-655, 446]]}, "center": {"113-258": [-682, 472]}}, -{"id": 3382, "name": "[MLP] Derpy Hooves", "description": "Derpy Hooves is a recurring background character in the series My Little Pony: Friendship is Magic. Her cross-eyed look is an iconic and intended design choice.", "links": {"website": ["https://mlp.fandom.com/wiki/Derpy"], "subreddit": ["mylittlepony"]}, "path": {"250-258": [[651, 96], [673, 96], [673, 92], [671, 92], [671, 88], [670, 88], [670, 87], [669, 87], [669, 86], [667, 86], [667, 85], [666, 85], [666, 84], [661, 84], [661, 85], [660, 85], [660, 86], [658, 86], [658, 87], [657, 87], [657, 88], [656, 88], [656, 92], [652, 92], [652, 93], [651, 93]]}, "center": {"250-258": [663, 91]}}, -{"id": 3383, "name": "Department of Ica", "description": "Ica is one of the 26 departments of Peru and the yellow, white and purple colors in the letters are for the colors of the flag of the Department of Ica", "links": {}, "path": {"209-258": [[-686, -803], [-686, -796], [-673, -796], [-673, -803], [-675, -803], [-682, -803], [-686, -803], [-686, -796], [-673, -796], [-673, -803]]}, "center": {"209-258": [-673, -799]}}, -{"id": 3384, "name": "University of Michigan Wolverine and Friends", "description": "Sailor Wolverine Logo for the University of Michigan surrounded by Minecraft characters, r/community and twitch.tv/johan_speak's bread. The r/MichiganWolverines community stands in solidarity with Black Company, r/Save3rdPartyApps.", "links": {"subreddit": ["MichiganWolverines", "community", "minecraft"]}, "path": {"174-258": [[-559, 696], [-560, 744], [-501, 744], [-501, 695], [-558, 696]]}, "center": {"174-258": [-530, 720]}}, -{"id": 3385, "name": "Mondaine (SBB clock) and train sign", "description": "Mondaine is a famous swiss clock (used by SBB-CFF-FFS in every train station across the country) next to a train sign with Bern and Zurich destinations", "links": {"subreddit": ["placech"]}, "path": {"250-258": [[1463, -684], [1462, -686], [1462, -688], [1463, -690], [1466, -692], [1498, -692], [1498, -681], [1478, -681], [1473, -682], [1466, -682]]}, "center": {"250-258": [1480, -686]}}, -{"id": 3386, "name": "Juan Santamaría", "description": "Juan Santamaría was a drummer in the Costa Rican army, officially recognized as the national hero of his country for his actions in the 1856 Second Battle of Rivas, in the Filibuster War. He died in the battle carrying a torch he used to light the enemy stronghold on fire, securing a victory for Costa Rica against American mercenary William Walker and his imperialist forces.", "links": {"website": ["https://en.wikipedia.org/wiki/Juan_Santamar%C3%ADa"], "subreddit": ["Ticos", "costarica"]}, "path": {"129-258": [[-493, -814], [-494, -815], [-496, -819], [-495, -820], [-491, -820], [-489, -817], [-488, -814], [-482, -810], [-482, -814], [-481, -814], [-481, -817], [-483, -819], [-483, -825], [-481, -824], [-481, -821], [-479, -821], [-479, -805], [-480, -805], [-480, -800], [-483, -800], [-483, -807], [-488, -810], [-485, -805], [-488, -799], [-485, -797], [-485, -793], [-496, -793], [-492, -805], [-493, -809], [-497, -811], [-498, -808], [-499, -807], [-500, -811], [-502, -814], [-500, -816], [-500, -817], [-503, -826], [-496, -825], [-497, -819], [-498, -816], [-493, -813]]}, "center": {"129-258": [-491, -797]}}, -{"id": 3387, "name": "Emma Woods", "description": "Emma Woods is a survivor and playable character from the 2018 asymmetrical horror mobile game Identity V, developed NetEase. In 2022, r/Place Australia fell in love with her wholesome small community and have made her an honorary Australian citizen and official mascot of the community ever since.", "links": {"website": ["http://idv.163.com"], "subreddit": ["IdentityV"]}, "path": {"250-258": [[-858, 55], [-854, 55], [-854, 54], [-853, 54], [-853, 53], [-853, 52], [-853, 51], [-853, 50], [-853, 49], [-852, 49], [-852, 48], [-852, 47], [-853, 47], [-854, 47], [-854, 46], [-855, 46], [-856, 46], [-857, 46], [-858, 46], [-858, 47], [-859, 47], [-860, 47], [-860, 48], [-860, 49], [-859, 49], [-859, 50], [-859, 51], [-859, 52], [-859, 53], [-859, 54], [-859, 55]]}, "center": {"250-258": [-856, 51]}}, +{"id": 3376, "name": "Ark", "description": "Ark: Survival Evolved es un videojuego de acción-aventura y supervivencia desarrollado por Studio Wildcard, Instinct Games, Efecto Studio y Virtual Basement. Lanzado oficialmente el 29 de agosto de 2017 para Windows, Xbox One, Nintendo Switch, PlayStation 4, IOS y Android.", "links": {"subreddit": ["ARK"]}, "path": {"218-258, T": [[-800, 479], [-797, 473], [-792, 465], [-786, 456], [-782, 460], [-782, 462], [-776, 471], [-773, 479], [-774, 480], [-780, 480], [-782, 478], [-782, 475], [-783, 474], [-789, 474], [-790, 475], [-790, 478], [-792, 480], [-799, 480]]}, "center": {"218-258, T": [-786, 467]}}, +{"id": 3377, "name": "Haikyuu French Community", "description": "Artwork made for r/haikyuu and r/Haikyuu_FR\n\nHaikyū!! is a manga written and drawn by Haruichi Furudate. It was prepublished from February 2012 to July 2020 in Shūeisha's Weekly Shōnen Jump magazine, and was compiled into a total of forty-five volumes.\n\nOriginal drawing by u/P0weredG4mes\n\ninspired by @ Saltyshima and an unknown user known as 9664c4\n\nWith the collaboration of the r/placeFR community\n\nSpecial thanks to:\nAkiTsuKii\nand many others who helped defend and improve the project", "links": {"website": ["https://www.pixilart.com/art/nishinoya-0c2de60860dc3ad", "http://pixelartmaker.com/art/d256d1d28ddb94c"], "subreddit": ["haikyuu", "Haikyuu_FR", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"160-163": [[-449, 813], [-445, 838], [-439, 853], [-423, 868], [-415, 870], [-404, 865], [-409, 856], [-405, 848], [-412, 837], [-428, 835], [-427, 825], [-424, 817], [-426, 810], [-432, 806], [-441, 806], [-449, 808], [-443, 815], [-443, 813]], "156-159": [[-441, 847], [-436, 843], [-430, 843], [-426, 843], [-422, 839], [-419, 835], [-412, 836], [-409, 839], [-408, 844], [-418, 847], [-422, 854], [-431, 857], [-437, 857], [-442, 851]], "164-258, T": [[-453, 736], [-465, 738], [-466, 749], [-460, 755], [-463, 762], [-458, 769], [-418, 769], [-417, 761], [-421, 757], [-416, 747], [-426, 736], [-439, 742]]}, "center": {"160-163": [-422, 850], "156-159": [-431, 850], "164-258, T": [-445, 755]}}, +{"id": 3378, "name": "The Corridor Digital Logo", "description": "The Logo of Corridor Digital, A group of filmmakers who make videos and shortfilms on their own website, and on their youtube accounts: Corridor and Corridor Crew", "links": {"website": ["https://www.corridordigital.com/", "https://www.youtube.com/@Corridor", "https://www.youtube.com/@CorridorCrew", "https://www.youtube.com/@corridorcast"], "subreddit": ["Corridor"], "discord": ["WmsyggF"]}, "path": {"153-259, 68-71, 84-117, T": [[210, 17], [222, 4], [222, 1], [209, -11], [195, 3], [210, 16]]}, "center": {"153-259, 68-71, 84-117, T": [210, 3]}}, +{"id": 3379, "name": "TV with Bosnian lily", "description": "A TV showing a Bosnian and Herzegovinian national symbol, the Bosnian lily. The TV is covered with traditional crocheting lacework to poke fun at its overuse in Bosnian homes.", "links": {"subreddit": ["bih"], "discord": ["gukrSH2Q"]}, "path": {"250-258, T": [[1256, 412], [1256, 443], [1283, 443], [1283, 412], [1270, 412]]}, "center": {"250-258, T": [1270, 428]}}, +{"id": 3380, "name": "Amilcar", "description": "Amilcar es un youtuber y streamer Argentino, cuenta con más de 200 mil suscriptores en su canal principal.ç\n\nSu contenido se basa en Resúmenes, preguntas y respuestas, algunos gameplays y criticas a juegos. La serie mas conocida en su canal es \"Todo lo malo en (nombre de juego cualquiera)\" serie donde resalta duramente las cosas malas de los juegos.", "links": {"website": ["https://www.youtube.com/@Amilcar/channels", "https://www.youtube.com/@SrAmilcar1", "https://www.twitch.tv/sramilcar"], "discord": ["amilcarcebado"]}, "path": {"250-258, T": [[-1075, -295], [-1075, -282], [-1062, -288], [-1062, -295], [-1069, -295], [-1075, -295], [-1074, -282], [-1062, -282], [-1062, -287]]}, "center": {"250-258, T": [-1065, -292]}}, +{"id": 3381, "name": "ZilverK", "description": "Best VR streamer from Mexico", "links": {"website": ["https://www.twitch.tv/zilverk"], "discord": ["zilverk"]}, "path": {"113-258, T": [[-710, 446], [-711, 498], [-655, 498], [-654, 446], [-656, 447], [-655, 446]]}, "center": {"113-258, T": [-682, 472]}}, +{"id": 3382, "name": "[MLP] Derpy Hooves", "description": "Derpy Hooves is a recurring background character in the series My Little Pony: Friendship is Magic. Her cross-eyed look is an iconic and intended design choice.", "links": {"website": ["https://mlp.fandom.com/wiki/Derpy"], "subreddit": ["mylittlepony"]}, "path": {"250-258, T": [[651, 96], [673, 96], [673, 92], [671, 92], [671, 88], [670, 88], [670, 87], [669, 87], [669, 86], [667, 86], [667, 85], [666, 85], [666, 84], [661, 84], [661, 85], [660, 85], [660, 86], [658, 86], [658, 87], [657, 87], [657, 88], [656, 88], [656, 92], [652, 92], [652, 93], [651, 93]]}, "center": {"250-258, T": [663, 91]}}, +{"id": 3383, "name": "Department of Ica", "description": "Ica is one of the 26 departments of Peru and the yellow, white and purple colors in the letters are for the colors of the flag of the Department of Ica", "links": {}, "path": {"209-258, T": [[-686, -803], [-686, -796], [-673, -796], [-673, -803], [-675, -803], [-682, -803], [-686, -803], [-686, -796], [-673, -796], [-673, -803]]}, "center": {"209-258, T": [-673, -799]}}, +{"id": 3384, "name": "University of Michigan Wolverine and Friends", "description": "Sailor Wolverine Logo for the University of Michigan surrounded by Minecraft characters, r/community and twitch.tv/johan_speak's bread. The r/MichiganWolverines community stands in solidarity with Black Company, r/Save3rdPartyApps.", "links": {"subreddit": ["MichiganWolverines", "community", "minecraft"]}, "path": {"174-258, T": [[-559, 696], [-560, 744], [-501, 744], [-501, 695], [-558, 696]]}, "center": {"174-258, T": [-530, 720]}}, +{"id": 3385, "name": "Mondaine (SBB clock) and train sign", "description": "Mondaine is a famous swiss clock (used by SBB-CFF-FFS in every train station across the country) next to a train sign with Bern and Zurich destinations", "links": {"subreddit": ["placech"]}, "path": {"250-258, T": [[1463, -684], [1462, -686], [1462, -688], [1463, -690], [1466, -692], [1498, -692], [1498, -681], [1478, -681], [1473, -682], [1466, -682]]}, "center": {"250-258, T": [1480, -686]}}, +{"id": 3386, "name": "Juan Santamaría", "description": "Juan Santamaría was a drummer in the Costa Rican army, officially recognized as the national hero of his country for his actions in the 1856 Second Battle of Rivas, in the Filibuster War. He died in the battle carrying a torch he used to light the enemy stronghold on fire, securing a victory for Costa Rica against American mercenary William Walker and his imperialist forces.", "links": {"website": ["https://en.wikipedia.org/wiki/Juan_Santamar%C3%ADa"], "subreddit": ["Ticos", "costarica"]}, "path": {"129-258, T": [[-493, -814], [-494, -815], [-496, -819], [-495, -820], [-491, -820], [-489, -817], [-488, -814], [-482, -810], [-482, -814], [-481, -814], [-481, -817], [-483, -819], [-483, -825], [-481, -824], [-481, -821], [-479, -821], [-479, -805], [-480, -805], [-480, -800], [-483, -800], [-483, -807], [-488, -810], [-485, -805], [-488, -799], [-485, -797], [-485, -793], [-496, -793], [-492, -805], [-493, -809], [-497, -811], [-498, -808], [-499, -807], [-500, -811], [-502, -814], [-500, -816], [-500, -817], [-503, -826], [-496, -825], [-497, -819], [-498, -816], [-493, -813]]}, "center": {"129-258, T": [-491, -797]}}, +{"id": 3387, "name": "Emma Woods", "description": "Emma Woods is a survivor and playable character from the 2018 asymmetrical horror mobile game Identity V, developed NetEase. In 2022, r/Place Australia fell in love with her wholesome small community and have made her an honorary Australian citizen and official mascot of the community ever since.", "links": {"website": ["http://idv.163.com"], "subreddit": ["IdentityV"]}, "path": {"250-258, T": [[-858, 55], [-854, 55], [-854, 54], [-853, 54], [-853, 53], [-853, 52], [-853, 51], [-853, 50], [-853, 49], [-852, 49], [-852, 48], [-852, 47], [-853, 47], [-854, 47], [-854, 46], [-855, 46], [-856, 46], [-857, 46], [-858, 46], [-858, 47], [-859, 47], [-860, 47], [-860, 48], [-860, 49], [-859, 49], [-859, 50], [-859, 51], [-859, 52], [-859, 53], [-859, 54], [-859, 55]]}, "center": {"250-258, T": [-856, 51]}}, {"id": 3388, "name": "Yashiro Miuna", "description": "Venezuelan Vtuber. Thanks to UGA, lots of love from Miuna and her community.", "links": {"website": ["https://www.twitch.tv/yashiromiuna"], "discord": ["TD2fxyYW"]}, "path": {"256-258": [[-78, 867], [-56, 867], [-56, 893], [-78, 893], [-78, 882]]}, "center": {"256-258": [-67, 880]}}, -{"id": 3389, "name": "Chile", "description": "The country of Chile as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile"], "subreddit": ["chile"]}, "path": {"219-258": [[-1410, -905], [-1410, -903], [-1409, -902], [-1409, -899], [-1408, -898], [-1408, -891], [-1409, -891], [-1409, -887], [-1408, -887], [-1407, -888], [-1406, -887], [-1407, -886], [-1407, -884], [-1407, -874], [-1408, -873], [-1407, -872], [-1408, -871], [-1408, -870], [-1409, -869], [-1409, -868], [-1408, -867], [-1407, -867], [-1407, -864], [-1406, -863], [-1405, -862], [-1405, -859], [-1404, -859], [-1404, -856], [-1405, -855], [-1405, -852], [-1407, -850], [-1406, -849], [-1406, -845], [-1407, -845], [-1407, -843], [-1408, -842], [-1408, -840], [-1406, -838], [-1406, -837], [-1405, -836], [-1405, -832], [-1406, -831], [-1407, -831], [-1408, -830], [-1408, -828], [-1407, -827], [-1406, -827], [-1406, -826], [-1403, -826], [-1403, -825], [-1402, -824], [-1402, -819], [-1403, -818], [-1403, -817], [-1405, -817], [-1405, -823], [-1406, -824], [-1407, -824], [-1408, -823], [-1408, -822], [-1409, -821], [-1409, -820], [-1410, -819], [-1409, -818], [-1408, -817], [-1408, -816], [-1407, -815], [-1406, -815], [-1405, -816], [-1405, -817], [-1403, -817], [-1403, -814], [-1404, -813], [-1405, -813], [-1406, -812], [-1405, -811], [-1405, -809], [-1406, -809], [-1406, -805], [-1407, -804], [-1406, -803], [-1406, -802], [-1405, -801], [-1405, -792], [-1404, -791], [-1404, -790], [-1403, -789], [-1403, -788], [-1402, -787], [-1402, -786], [-1399, -783], [-1399, -781], [-1396, -778], [-1396, -777], [-1394, -775], [-1394, -773], [-1393, -773], [-1392, -772], [-1388, -772], [-1387, -771], [-1385, -771], [-1384, -770], [-1380, -770], [-1379, -769], [-1371, -769], [-1370, -770], [-1368, -770], [-1368, -771], [-1367, -772], [-1369, -774], [-1371, -774], [-1373, -776], [-1373, -777], [-1375, -779], [-1375, -780], [-1376, -781], [-1376, -785], [-1377, -786], [-1377, -787], [-1384, -787], [-1384, -786], [-1388, -786], [-1388, -787], [-1389, -788], [-1389, -790], [-1391, -792], [-1391, -793], [-1392, -794], [-1393, -795], [-1393, -799], [-1392, -800], [-1394, -802], [-1394, -805], [-1393, -806], [-1393, -811], [-1394, -812], [-1393, -813], [-1393, -816], [-1394, -817], [-1394, -819], [-1395, -820], [-1394, -821], [-1394, -822], [-1395, -823], [-1395, -824], [-1396, -824], [-1397, -825], [-1396, -826], [-1396, -829], [-1397, -830], [-1397, -835], [-1396, -836], [-1397, -837], [-1396, -838], [-1396, -839], [-1398, -841], [-1397, -842], [-1397, -846], [-1396, -847], [-1396, -848], [-1395, -849], [-1396, -849], [-1397, -850], [-1397, -852], [-1395, -854], [-1395, -858], [-1396, -859], [-1396, -862], [-1397, -863], [-1398, -863], [-1399, -864], [-1399, -865], [-1398, -866], [-1398, -875], [-1397, -876], [-1397, -877], [-1396, -878], [-1396, -879], [-1395, -880], [-1397, -882], [-1396, -883], [-1396, -884], [-1397, -885], [-1397, -886], [-1396, -887], [-1395, -888], [-1394, -888], [-1394, -893], [-1395, -894], [-1396, -894], [-1397, -895], [-1398, -895], [-1400, -897], [-1400, -899], [-1403, -902], [-1403, -904], [-1405, -906], [-1405, -907], [-1406, -908], [-1408, -908], [-1408, -907], [-1409, -906]]}, "center": {"219-258": [-1383, -779]}}, -{"id": 3390, "name": "\"Lin ❤️\"", "description": "the name of a mexican artist @CaoticaLin on twitter", "links": {"website": ["https://twitter.com/CaoticaLin"]}, "path": {"250-258": [[1376, -12], [1395, -12], [1395, -6], [1376, -6]]}, "center": {"250-258": [1386, -9]}}, -{"id": 3391, "name": "\"JP\" Initials", "description": "JotaPe the creator of the pixel art used for the Chimborazo volcano", "links": {"website": ["https://www.twitch.tv/jotapelive"]}, "path": {"250-258": [[-1301, 740], [-1295, 740], [-1295, 734], [-1301, 734]]}, "center": {"250-258": [-1298, 737]}}, -{"id": 3392, "name": "Bluey", "description": "Bluey is a wholesome Australian children's cartoon featuring a blue heeler family. This art features a small row of characters from Bluey: Muffin, Socks, Stripe, Trixie, Rusty, Mackenzie, and Jack.", "links": {"website": ["https://en.wikipedia.org/wiki/Bluey_(2018_TV_series)"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"206-222": [[1345, -89], [1345, -77], [1375, -77], [1375, -89]], "223-258": [[1358, -88], [1358, -86], [1347, -86], [1347, -80], [1349, -78], [1389, -78], [1391, -80], [1391, -85], [1389, -87], [1371, -87], [1371, -88]]}, "center": {"206-222": [1360, -83], "223-258": [1362, -83]}}, -{"id": 3393, "name": "Blue Junimo (Stardew Valley)", "description": "A friendly creature from the independant videogame Stardew Valley. Its colors were originally meant to match the Ukraine flag, with it staying bicolor most of the event ; it was later decided that it would be entirely blue.", "links": {"website": ["https://www.stardewvalley.net/"], "subreddit": ["stardewvalley"]}, "path": {"166-258": [[-323, -92], [-318, -92], [-315, -90], [-315, -92], [-316, -92], [-316, -93], [-315, -94], [-314, -93], [-313, -92], [-313, -89], [-314, -88], [-314, -83], [-317, -80], [-316, -79], [-317, -78], [-318, -78], [-319, -79], [-319, -80], [-322, -80], [-322, -79], [-323, -78], [-324, -78], [-325, -79], [-324, -80], [-326, -82], [-327, -83], [-327, -88], [-328, -89], [-328, -92], [-326, -94], [-325, -93], [-326, -92], [-326, -90], [-323, -92], [-317, -92], [-316, -92]]}, "center": {"166-258": [-320, -86]}}, -{"id": 3394, "name": "ZUN", "description": "Fan art of Jun'ya Ōta, known japanese drunkard and creator of Touhou Project, and a beer\nCreated by the touhou r/place discord after the vietnamese flag's expension had receded", "links": {"subreddit": ["touhou"]}, "path": {"241-258": [[1244, 780], [1276, 780], [1276, 746], [1244, 746]]}, "center": {"241-258": [1260, 763]}}, -{"id": 3395, "name": "The Dragon Slayer (Berserk) (MH Collaboration)", "description": "The Dragon Slayer is the massive sword belonging to Guts, the main character of the manga/anime \"Berserk\" by Kentaro Miura. Guts has wielded this sword as his signature weapon ever since surviving the Eclipse.\n\nThis piece was made by the Band of the Hawk discord group in collaboration with the Monster Hunter community.\n\n\"Dragons are dragons because humans can't beat 'em.\" -Godo, Berserk Volume 14 \"He Who Hunts Dragons\"", "links": {"website": ["https://berserk.fandom.com/wiki/Dragon_Slayer"], "discord": ["5Yr3UEYXRZ"]}, "path": {"98-258": [[-628, -222], [-616, -222], [-616, -172], [-628, -172]]}, "center": {"98-258": [-622, -197]}}, -{"id": 3396, "name": "Kauai (Mount's dog)", "description": "Kauai was the dog of a Twitch streamer named Mount (www.twitch.tv/mount) he was a huge part of the stream and was loved by everyone in the comunity but unfortunatelly after 17 years he passed away, so this was made as a way to honour him <3", "links": {"website": ["https://www.twitch.tv/mount"], "subreddit": ["moount"]}, "path": {"213-258": [[1047, 422], [1007, 423], [1006, 382], [1047, 382]]}, "center": {"213-258": [1027, 402]}, "author": "gh:Matelz"}, -{"id": 3397, "name": "Bad Touch", "description": "A drink from the video game VA-11 HALL-A, named after the song by the Bloodhound Gang. Known to always make Jill laugh except once, when she will be in a bad mood saying only \"Whatever...\".", "links": {"website": ["https://waifubartending.com/"], "subreddit": ["waifubartending"]}, "path": {"250-258": [[-73, 952], [-73, 941], [-69, 941], [-69, 952]]}, "center": {"250-258": [-71, 947]}}, -{"id": 3399, "name": "Marathon", "description": "Marathon is a first-person shooter video game developed and published by Bungie, and released in December 1994 for the Apple Macintosh. \n\nTop is the classic Marathon logo.\nBottom is the new Marathon logo.", "links": {"website": ["https://www.marathonthegame.com"], "subreddit": ["Marathon"], "discord": ["c7rEVgY"]}, "path": {"250-258": [[-814, 499], [-814, 515], [-805, 515], [-805, 499]]}, "center": {"250-258": [-809, 507]}}, +{"id": 3389, "name": "Chile", "description": "The country of Chile as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile"], "subreddit": ["chile"]}, "path": {"219-258, T": [[-1410, -905], [-1410, -903], [-1409, -902], [-1409, -899], [-1408, -898], [-1408, -891], [-1409, -891], [-1409, -887], [-1408, -887], [-1407, -888], [-1406, -887], [-1407, -886], [-1407, -884], [-1407, -874], [-1408, -873], [-1407, -872], [-1408, -871], [-1408, -870], [-1409, -869], [-1409, -868], [-1408, -867], [-1407, -867], [-1407, -864], [-1406, -863], [-1405, -862], [-1405, -859], [-1404, -859], [-1404, -856], [-1405, -855], [-1405, -852], [-1407, -850], [-1406, -849], [-1406, -845], [-1407, -845], [-1407, -843], [-1408, -842], [-1408, -840], [-1406, -838], [-1406, -837], [-1405, -836], [-1405, -832], [-1406, -831], [-1407, -831], [-1408, -830], [-1408, -828], [-1407, -827], [-1406, -827], [-1406, -826], [-1403, -826], [-1403, -825], [-1402, -824], [-1402, -819], [-1403, -818], [-1403, -817], [-1405, -817], [-1405, -823], [-1406, -824], [-1407, -824], [-1408, -823], [-1408, -822], [-1409, -821], [-1409, -820], [-1410, -819], [-1409, -818], [-1408, -817], [-1408, -816], [-1407, -815], [-1406, -815], [-1405, -816], [-1405, -817], [-1403, -817], [-1403, -814], [-1404, -813], [-1405, -813], [-1406, -812], [-1405, -811], [-1405, -809], [-1406, -809], [-1406, -805], [-1407, -804], [-1406, -803], [-1406, -802], [-1405, -801], [-1405, -792], [-1404, -791], [-1404, -790], [-1403, -789], [-1403, -788], [-1402, -787], [-1402, -786], [-1399, -783], [-1399, -781], [-1396, -778], [-1396, -777], [-1394, -775], [-1394, -773], [-1393, -773], [-1392, -772], [-1388, -772], [-1387, -771], [-1385, -771], [-1384, -770], [-1380, -770], [-1379, -769], [-1371, -769], [-1370, -770], [-1368, -770], [-1368, -771], [-1367, -772], [-1369, -774], [-1371, -774], [-1373, -776], [-1373, -777], [-1375, -779], [-1375, -780], [-1376, -781], [-1376, -785], [-1377, -786], [-1377, -787], [-1384, -787], [-1384, -786], [-1388, -786], [-1388, -787], [-1389, -788], [-1389, -790], [-1391, -792], [-1391, -793], [-1392, -794], [-1393, -795], [-1393, -799], [-1392, -800], [-1394, -802], [-1394, -805], [-1393, -806], [-1393, -811], [-1394, -812], [-1393, -813], [-1393, -816], [-1394, -817], [-1394, -819], [-1395, -820], [-1394, -821], [-1394, -822], [-1395, -823], [-1395, -824], [-1396, -824], [-1397, -825], [-1396, -826], [-1396, -829], [-1397, -830], [-1397, -835], [-1396, -836], [-1397, -837], [-1396, -838], [-1396, -839], [-1398, -841], [-1397, -842], [-1397, -846], [-1396, -847], [-1396, -848], [-1395, -849], [-1396, -849], [-1397, -850], [-1397, -852], [-1395, -854], [-1395, -858], [-1396, -859], [-1396, -862], [-1397, -863], [-1398, -863], [-1399, -864], [-1399, -865], [-1398, -866], [-1398, -875], [-1397, -876], [-1397, -877], [-1396, -878], [-1396, -879], [-1395, -880], [-1397, -882], [-1396, -883], [-1396, -884], [-1397, -885], [-1397, -886], [-1396, -887], [-1395, -888], [-1394, -888], [-1394, -893], [-1395, -894], [-1396, -894], [-1397, -895], [-1398, -895], [-1400, -897], [-1400, -899], [-1403, -902], [-1403, -904], [-1405, -906], [-1405, -907], [-1406, -908], [-1408, -908], [-1408, -907], [-1409, -906]]}, "center": {"219-258, T": [-1383, -779]}}, +{"id": 3390, "name": "\"Lin ❤️\"", "description": "the name of a mexican artist @CaoticaLin on twitter", "links": {"website": ["https://twitter.com/CaoticaLin"]}, "path": {"250-258, T": [[1376, -12], [1395, -12], [1395, -6], [1376, -6]]}, "center": {"250-258, T": [1386, -9]}}, +{"id": 3391, "name": "\"JP\" Initials", "description": "JotaPe the creator of the pixel art used for the Chimborazo volcano", "links": {"website": ["https://www.twitch.tv/jotapelive"]}, "path": {"250-258, T": [[-1301, 740], [-1295, 740], [-1295, 734], [-1301, 734]]}, "center": {"250-258, T": [-1298, 737]}}, +{"id": 3392, "name": "Bluey", "description": "Bluey is a wholesome Australian children's cartoon featuring a blue heeler family. This art features a small row of characters from Bluey: Muffin, Socks, Stripe, Trixie, Rusty, Mackenzie, and Jack.", "links": {"website": ["https://en.wikipedia.org/wiki/Bluey_(2018_TV_series)"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"206-222": [[1345, -89], [1345, -77], [1375, -77], [1375, -89]], "223-258, T": [[1358, -88], [1358, -86], [1347, -86], [1347, -80], [1349, -78], [1389, -78], [1391, -80], [1391, -85], [1389, -87], [1371, -87], [1371, -88]]}, "center": {"206-222": [1360, -83], "223-258, T": [1362, -83]}}, +{"id": 3393, "name": "Blue Junimo (Stardew Valley)", "description": "A friendly creature from the independant videogame Stardew Valley. Its colors were originally meant to match the Ukraine flag, with it staying bicolor most of the event ; it was later decided that it would be entirely blue.", "links": {"website": ["https://www.stardewvalley.net/"], "subreddit": ["stardewvalley"]}, "path": {"166-258, T": [[-323, -92], [-318, -92], [-315, -90], [-315, -92], [-316, -92], [-316, -93], [-315, -94], [-314, -93], [-313, -92], [-313, -89], [-314, -88], [-314, -83], [-317, -80], [-316, -79], [-317, -78], [-318, -78], [-319, -79], [-319, -80], [-322, -80], [-322, -79], [-323, -78], [-324, -78], [-325, -79], [-324, -80], [-326, -82], [-327, -83], [-327, -88], [-328, -89], [-328, -92], [-326, -94], [-325, -93], [-326, -92], [-326, -90], [-323, -92], [-317, -92], [-316, -92]]}, "center": {"166-258, T": [-320, -86]}}, +{"id": 3394, "name": "ZUN", "description": "Fan art of Jun'ya Ōta, known japanese drunkard and creator of Touhou Project, and a beer\nCreated by the touhou r/place discord after the vietnamese flag's expension had receded", "links": {"subreddit": ["touhou"]}, "path": {"241-258, T": [[1244, 780], [1276, 780], [1276, 746], [1244, 746]]}, "center": {"241-258, T": [1260, 763]}}, +{"id": 3395, "name": "The Dragon Slayer (Berserk) (MH Collaboration)", "description": "The Dragon Slayer is the massive sword belonging to Guts, the main character of the manga/anime \"Berserk\" by Kentaro Miura. Guts has wielded this sword as his signature weapon ever since surviving the Eclipse.\n\nThis piece was made by the Band of the Hawk discord group in collaboration with the Monster Hunter community.\n\n\"Dragons are dragons because humans can't beat 'em.\" -Godo, Berserk Volume 14 \"He Who Hunts Dragons\"", "links": {"website": ["https://berserk.fandom.com/wiki/Dragon_Slayer"], "discord": ["5Yr3UEYXRZ"]}, "path": {"98-258, T": [[-628, -222], [-616, -222], [-616, -172], [-628, -172]]}, "center": {"98-258, T": [-622, -197]}}, +{"id": 3396, "name": "Kauai (Mount's dog)", "description": "Kauai was the dog of a Twitch streamer named Mount (www.twitch.tv/mount) he was a huge part of the stream and was loved by everyone in the comunity but unfortunatelly after 17 years he passed away, so this was made as a way to honour him <3", "links": {"website": ["https://www.twitch.tv/mount"], "subreddit": ["moount"]}, "path": {"213-258, T": [[1047, 422], [1007, 423], [1006, 382], [1047, 382]]}, "center": {"213-258, T": [1027, 402]}, "author": "gh:Matelz"}, +{"id": 3397, "name": "Bad Touch", "description": "A drink from the video game VA-11 HALL-A, named after the song by the Bloodhound Gang. Known to always make Jill laugh except once, when she will be in a bad mood saying only \"Whatever...\".", "links": {"website": ["https://waifubartending.com/"], "subreddit": ["waifubartending"]}, "path": {"250-258, T": [[-73, 952], [-73, 941], [-69, 941], [-69, 952]]}, "center": {"250-258, T": [-71, 947]}}, +{"id": 3399, "name": "Marathon", "description": "Marathon is a first-person shooter video game developed and published by Bungie, and released in December 1994 for the Apple Macintosh. \n\nTop is the classic Marathon logo.\nBottom is the new Marathon logo.", "links": {"website": ["https://www.marathonthegame.com"], "subreddit": ["Marathon"], "discord": ["c7rEVgY"]}, "path": {"250-258, T": [[-814, 499], [-814, 515], [-805, 515], [-805, 499]]}, "center": {"250-258, T": [-809, 507]}}, {"id": 3400, "name": "Tomiii 11", "description": "Tribute to tomiii 11, a child who passed away due to brain cancer in 2021 whose last wish was to become a big YouTuber, as of 04/04/2022 tomiii 11 youtube channel has 10.5 million subscribers.\n\nMural created with the efforts of Late, Caprimint, Rodny, MitroxFear, and Panchaalel communities.", "links": {"website": ["https://www.youtube.com/c/tomiii11_oficial"]}, "path": {"252": [[-1216, -818], [-1216, -755], [-1170, -755], [-1171, -818], [-1183, -818], [-1204, -818]]}, "center": {"252": [-1193, -786]}}, -{"id": 3401, "name": "Hitotsume-sama", "description": "Hitotsume-sama is a character created by the japanese singer Eve. He makes an appearance in the music videos of Literary Nonsense and Dramaturgy, along with many cameos in other MVs. He also appears in the Kara no Kioku manga along with the How to Eat Life novel.", "links": {"website": ["https://www.youtube.com/watch?v=OskXF3s0UT8", "https://www.youtube.com/watch?v=jJzw1h5CR-I"], "subreddit": ["e_ve"], "discord": ["eve"]}, "path": {"250-258": [[-365, 892], [-364, 892], [-363, 892], [-363, 891], [-362, 891], [-361, 891], [-361, 890], [-360, 890], [-359, 890], [-359, 884], [-358, 884], [-358, 883], [-345, 883], [-345, 884], [-344, 884], [-344, 890], [-342, 890], [-342, 891], [-341, 891], [-340, 891], [-340, 892], [-339, 892], [-338, 892], [-345, 892], [-345, 897], [-344, 897], [-344, 898], [-343, 898], [-343, 899], [-342, 899], [-342, 900], [-342, 901], [-341, 901], [-341, 902], [-342, 902], [-342, 903], [-343, 903], [-344, 903], [-344, 904], [-349, 904], [-349, 905], [-354, 905], [-354, 904], [-359, 904], [-359, 903], [-361, 903], [-361, 902], [-362, 902], [-362, 901], [-361, 901], [-361, 899], [-360, 899], [-360, 898], [-359, 898], [-359, 897], [-358, 897], [-358, 892]]}, "center": {"250-258": [-352, 890]}}, +{"id": 3401, "name": "Hitotsume-sama", "description": "Hitotsume-sama is a character created by the japanese singer Eve. He makes an appearance in the music videos of Literary Nonsense and Dramaturgy, along with many cameos in other MVs. He also appears in the Kara no Kioku manga along with the How to Eat Life novel.", "links": {"website": ["https://www.youtube.com/watch?v=OskXF3s0UT8", "https://www.youtube.com/watch?v=jJzw1h5CR-I"], "subreddit": ["e_ve"], "discord": ["eve"]}, "path": {"250-258, T": [[-365, 892], [-364, 892], [-363, 892], [-363, 891], [-362, 891], [-361, 891], [-361, 890], [-360, 890], [-359, 890], [-359, 884], [-358, 884], [-358, 883], [-345, 883], [-345, 884], [-344, 884], [-344, 890], [-342, 890], [-342, 891], [-341, 891], [-340, 891], [-340, 892], [-339, 892], [-338, 892], [-345, 892], [-345, 897], [-344, 897], [-344, 898], [-343, 898], [-343, 899], [-342, 899], [-342, 900], [-342, 901], [-341, 901], [-341, 902], [-342, 902], [-342, 903], [-343, 903], [-344, 903], [-344, 904], [-349, 904], [-349, 905], [-354, 905], [-354, 904], [-359, 904], [-359, 903], [-361, 903], [-361, 902], [-362, 902], [-362, 901], [-361, 901], [-361, 899], [-360, 899], [-360, 898], [-359, 898], [-359, 897], [-358, 897], [-358, 892]]}, "center": {"250-258, T": [-352, 890]}}, {"id": 3402, "name": "Thiersch-Turm (Thiersch-Tower)", "description": "The \"Thiersch-Turm,\" or Thiersch Tower, has been the iconic landmark of the Technical University of Munich (TUM) since its completion in 1916. Originally designed by Friedrich von Thiersch, a prominent professor and former rector of the university, the tower was planned as an expansion to accommodate the increasing number of students around 1900. Standing 37 meters tall, the tower features a beautifully crafted portal depicting allegorical representations of technology and art, considered one of Munich's finest architectural sculptures. During its history, the tower served military purposes during World War I and later became the home of the academic glider group, Akaflieg. In 2018, on the occasion of TUM's 150th anniversary, the Klaus Tschira Foundation generously supported the restoration and transformation of the historical landmark, including the addition of a prestigious event hall called the Tschira-Forum on the top floor. This venue now hosts special academic events, ceremonies, and welcomes distinguished guests of the university.", "links": {"website": ["https://www.community.tum.de/thiersch/", "https://www.tum.de/"], "discord": ["nTDtPfwGNS"]}, "path": {"251-258": [[-331, -58], [-331, -66], [-332, -66], [-332, -67], [-332, -68], [-330, -68], [-330, -71], [-331, -71], [-331, -72], [-331, -73], [-330, -73], [-330, -74], [-329, -74], [-328, -74], [-327, -74], [-327, -73], [-327, -74], [-326, -74], [-325, -74], [-324, -74], [-323, -74], [-322, -74], [-321, -74], [-321, -73], [-320, -73], [-320, -57], [-331, -57]]}, "center": {"251-258": [-325, -65]}}, -{"id": 3403, "name": "Belgian Firetruck", "description": "This Belgian firetruck was originally built to defend the Atomium from the firebreathing dragon, but got destroyed by the red bot attack. It was built in the middle of the night by about ten people without a template or a leader. Just motivation and a good idea. It was rebuilt facing the bigger dragon.", "links": {}, "path": {"217-230": [[1178, 755], [1196, 755], [1196, 779], [1178, 779]], "246-258": [[1175, 756], [1192, 756], [1192, 779], [1175, 779]]}, "center": {"217-230": [1187, 767], "246-258": [1184, 768]}}, -{"id": 3404, "name": "VectorGas", "description": "Es un Streamer Argentino llamado Vector.hace streams de mucha variedad de juegos", "links": {"website": ["https://www.youtube.com/@Vector", "https://www.twitch.tv/vector"]}, "path": {"250-258": [[-805, 520], [-710, 519], [-709, 585], [-804, 585], [-804, 584]]}, "center": {"250-258": [-757, 552]}}, +{"id": 3403, "name": "Belgian Firetruck", "description": "This Belgian firetruck was originally built to defend the Atomium from the firebreathing dragon, but got destroyed by the red bot attack. It was built in the middle of the night by about ten people without a template or a leader. Just motivation and a good idea. It was rebuilt facing the bigger dragon.", "links": {}, "path": {"217-230": [[1178, 755], [1196, 755], [1196, 779], [1178, 779]], "246-258, T": [[1175, 756], [1192, 756], [1192, 779], [1175, 779]]}, "center": {"217-230": [1187, 767], "246-258, T": [1184, 768]}}, +{"id": 3404, "name": "VectorGas", "description": "Es un Streamer Argentino llamado Vector.hace streams de mucha variedad de juegos", "links": {"website": ["https://www.youtube.com/@Vector", "https://www.twitch.tv/vector"]}, "path": {"250-258, T": [[-805, 520], [-710, 519], [-709, 585], [-804, 585], [-804, 584]]}, "center": {"250-258, T": [-757, 552]}}, {"id": 3405, "name": "Alhaitham & Kaveh", "description": "Alhaitham and Kaveh from the game Genshin Impact. \n\nand they were roommates... \noh my god they were roommates", "links": {"website": ["https://genshin.hoyoverse.com/en/home", "https://youtu.be/6XbHqN8Cs60?si=Ums9FQZvlw_tICpx", "https://youtu.be/MciOgsEOHZM?si=cU-T0C9E5FWkxJgz"], "subreddit": ["Genshin_Impact", "AlHaithamMains", "KavehMains"]}, "path": {"252-258": [[-95, 353], [-95, 342], [-92, 339], [-90, 338], [-91, 337], [-91, 335], [-90, 333], [-89, 332], [-88, 331], [-88, 328], [-87, 327], [-87, 326], [-86, 325], [-85, 324], [-84, 325], [-83, 324], [-81, 326], [-84, 329], [-84, 330], [-83, 331], [-81, 332], [-80, 331], [-79, 330], [-78, 329], [-76, 329], [-75, 330], [-73, 331], [-70, 330], [-69, 330], [-68, 332], [-68, 336], [-67, 339], [-69, 343], [-70, 350], [-73, 350], [-76, 353], [-78, 353], [-80, 356], [-95, 356], [-95, 353], [-95, 351]]}, "center": {"252-258": [-80, 343]}}, {"id": 3406, "name": "Mario Vrećo", "description": "Mario Vrećo is a well-known Serbian content creator", "links": {"website": ["https://www.youtube.com/@MarioVreco"], "subreddit": ["MarioVreco"]}, "path": {"114-120": [[339, -176], [355, -176], [355, -154], [339, -154]]}, "center": {"114-120": [347, -165]}}, -{"id": 3407, "name": "Frogs!", "description": "A showcase of frogs we made with the help of the r/frogs community! Random people joined together to add frogs to the same area which ended up being merged into a single piece with frogs, pixel Link being shot by a cowboy, and a cat being pet.", "links": {"subreddit": ["frogs"]}, "path": {"164-258": [[-642, 953], [-605, 953], [-597, 953], [-597, 963], [-591, 963], [-591, 971], [-611, 971], [-617, 976], [-619, 992], [-629, 992], [-629, 980], [-642, 969]]}, "center": {"164-258": [-625, 966]}}, -{"id": 3408, "name": "CHIMBORAZO", "description": "EL CHIMBORAZON VIVA LA PATRIA MAMAVERGA", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador", "https://en.wikipedia.org/wiki/Flag_of_Ecuador"], "subreddit": ["ecuador"]}, "path": {"171-258": [[-1420, 619], [-1420, 744], [-1331, 744], [-1331, 743], [-1294, 743], [-1294, 619]]}, "center": {"171-258": [-1357, 682]}}, -{"id": 3409, "name": "(Childe) Tartaglia's Narwhal", "description": "Tartaglia aka Childe's narwhal from the game Genshin Impact. Its depicted as wearing his iconic mask.", "links": {"subreddit": ["Genshin_Impact", "childemains"]}, "path": {"250-258": [[573, 355], [584, 355], [586, 353], [586, 351], [587, 350], [587, 348], [586, 347], [585, 348], [584, 347], [583, 348], [583, 350], [584, 351], [583, 352], [582, 352], [581, 351], [580, 350], [580, 348], [580, 347], [581, 346], [582, 345], [580, 345], [579, 343], [578, 345], [573, 345], [570, 342], [569, 342], [569, 345], [570, 346], [571, 346], [571, 350], [570, 350], [570, 353], [571, 353], [571, 354], [572, 354], [573, 355], [574, 355]]}, "center": {"250-258": [576, 350]}}, -{"id": 3410, "name": "Venezuelan football team", "description": "The shirt of the venezuelan football team, or \"la vinotinto\" (red wine) as it is also known in the South American country", "links": {"website": ["https://es.wikipedia.org/wiki/Uniforme_de_la_selección_de_fútbol_de_Venezuela"], "subreddit": ["vzla", "venezuela"]}, "path": {"250-258": [[1403, 823], [1403, 816], [1400, 816], [1400, 811], [1405, 807], [1412, 806], [1417, 811], [1416, 816], [1414, 816], [1414, 823], [1408, 823]]}, "center": {"250-258": [1409, 813]}}, -{"id": 3411, "name": "Spez mal parit.", "description": "\"Mal parit\" is a common Catalan insult which means more or less \"Badly born\", and it is being used here to insult Reddit's CEO Spez.", "links": {"website": ["https://es.wikipedia.org/wiki/Steve_Huffman"], "subreddit": ["catalunya"]}, "path": {"198-258": [[449, 173], [449, 190], [433, 190], [433, 173]]}, "center": {"198-258": [441, 182]}}, +{"id": 3407, "name": "Frogs!", "description": "A showcase of frogs we made with the help of the r/frogs community! Random people joined together to add frogs to the same area which ended up being merged into a single piece with frogs, pixel Link being shot by a cowboy, and a cat being pet.", "links": {"subreddit": ["frogs"]}, "path": {"164-258, T": [[-642, 953], [-605, 953], [-597, 953], [-597, 963], [-591, 963], [-591, 971], [-611, 971], [-617, 976], [-619, 992], [-629, 992], [-629, 980], [-642, 969]]}, "center": {"164-258, T": [-625, 966]}}, +{"id": 3408, "name": "CHIMBORAZO", "description": "EL CHIMBORAZON VIVA LA PATRIA MAMAVERGA", "links": {"website": ["https://en.wikipedia.org/wiki/Ecuador", "https://en.wikipedia.org/wiki/Flag_of_Ecuador"], "subreddit": ["ecuador"]}, "path": {"171-258, T": [[-1420, 619], [-1420, 744], [-1331, 744], [-1331, 743], [-1294, 743], [-1294, 619]]}, "center": {"171-258, T": [-1357, 682]}}, +{"id": 3409, "name": "(Childe) Tartaglia's Narwhal", "description": "Tartaglia aka Childe's narwhal from the game Genshin Impact. Its depicted as wearing his iconic mask.", "links": {"subreddit": ["Genshin_Impact", "childemains"]}, "path": {"250-258, T": [[573, 355], [584, 355], [586, 353], [586, 351], [587, 350], [587, 348], [586, 347], [585, 348], [584, 347], [583, 348], [583, 350], [584, 351], [583, 352], [582, 352], [581, 351], [580, 350], [580, 348], [580, 347], [581, 346], [582, 345], [580, 345], [579, 343], [578, 345], [573, 345], [570, 342], [569, 342], [569, 345], [570, 346], [571, 346], [571, 350], [570, 350], [570, 353], [571, 353], [571, 354], [572, 354], [573, 355], [574, 355]]}, "center": {"250-258, T": [576, 350]}}, +{"id": 3410, "name": "Venezuelan football team", "description": "The shirt of the venezuelan football team, or \"la vinotinto\" (red wine) as it is also known in the South American country", "links": {"website": ["https://es.wikipedia.org/wiki/Uniforme_de_la_selección_de_fútbol_de_Venezuela"], "subreddit": ["vzla", "venezuela"]}, "path": {"250-258, T": [[1403, 823], [1403, 816], [1400, 816], [1400, 811], [1405, 807], [1412, 806], [1417, 811], [1416, 816], [1414, 816], [1414, 823], [1408, 823]]}, "center": {"250-258, T": [1409, 813]}}, +{"id": 3411, "name": "Spez mal parit.", "description": "\"Mal parit\" is a common Catalan insult which means more or less \"Badly born\", and it is being used here to insult Reddit's CEO Spez.", "links": {"website": ["https://es.wikipedia.org/wiki/Steve_Huffman"], "subreddit": ["catalunya"]}, "path": {"198-258, T": [[449, 173], [449, 190], [433, 190], [433, 173]]}, "center": {"198-258, T": [441, 182]}}, {"id": 3412, "name": "Llama", "description": "The llama (Lama glama) is a domesticated South American camelid, widely used as a meat and pack animal by Andean cultures since the Pre-Columbian era.\n\nLlamas are social animals and live with others as a herd. Their wool is soft and contains only a small amount of lanolin.\nLlamas can learn simple tasks after a few repetitions. The name llama (in the past also spelled \"lama\" or \"glama\") was adopted by European settlers from native Peruvians.", "links": {"website": ["https://en.wikipedia.org/wiki/Llama"], "subreddit": ["llama"]}, "path": {"67-241": [[-156, 4], [-154, 4], [-154, 6], [-153, 6], [-152, 5], [-151, 4], [-150, 5], [-149, 10], [-148, 22], [-142, 23], [-142, 36], [-145, 36], [-146, 33], [-148, 33], [-148, 34], [-150, 36], [-151, 36], [-152, 35], [-153, 36], [-154, 36], [-156, 27], [-157, 13], [-156, 10]]}, "center": {"67-241": [-150, 27]}}, {"id": 3413, "name": "Flag of Kurdistan", "description": "This map was created with the help of diplomats from r/Greece (especially GreekSwagLord & gadgetChain) and was therefore well protected.", "links": {"subreddit": ["Kurdistan"], "discord": ["2FwHvkjQ"]}, "path": {"191-246": [[382, 880], [382, 872], [441, 872], [441, 880]]}, "center": {"191-246": [412, 876]}}, {"id": 3414, "name": "Quantum Moon", "description": "The Quantum Moon is a moon from the game Outer Wilds that changes location when it stops being observed.\n\nThe Quantum Moon was drawn at different places at different times around r/place. Don't blink or you'll miss it!", "links": {"subreddit": ["outerwilds"]}, "path": {"256-258": [[324, 35], [325, 35], [325, 36], [324, 36]]}, "center": {"256-258": [325, 36]}}, -{"id": 3415, "name": "Polaris Klepsky", "description": "The face of the character Polaris \"Polly\" Amry Klepsky from the webcomic Sparklecare.", "links": {"website": ["https://www.sparklecarehospital.com/"], "subreddit": ["sparklecare"]}, "path": {"250-258": [[-904, 766], [-904, 770], [-900, 770], [-900, 766]]}, "center": {"250-258": [-902, 768]}}, -{"id": 3416, "name": "UMP45", "description": "UMP45, usually shortened to \"45\", is a character from the game Girls' Frontline. She is a rogue Tactical Doll and the leader of the black ops mercenaries of Squad 404. Her driven and coldly aggressive personality, the result of a significant betrayal, is thinly veiled by her dry humor, and serves to conceal a deeper goodness of soul she shows only rarely. She is described as wearing an ominous smile.\n\nArt credit: Sleepless_Nightz", "links": {"website": ["https://iopwiki.com/wiki/UMP45", "https://gf.sunborngame.com/", "https://en.wikipedia.org/wiki/Girls'_Frontline"], "subreddit": ["girlsfrontline", "touhou"], "discord": ["apl"]}, "path": {"203-258": [[1286, 365], [1286, 394], [1317, 394], [1317, 370], [1315, 370], [1312, 367], [1312, 365]]}, "center": {"203-258": [1302, 380]}}, -{"id": 3417, "name": "The Mare In The Sun", "description": "The last pony present in the original main location of the brony fandom, after it was destroyed and replaced by streamer raids.", "links": {}, "path": {"250-258": [[-94, 193], [-94, 198], [-87, 198], [-87, 192], [-94, 192]]}, "center": {"250-258": [-90, 195]}}, -{"id": 3418, "name": "Femme à l'ombrelle tournée vers la gauche - Claude Monnet", "description": "Reproduction of \"Femme à l'ombrelle tournée vers la gauche\" by Claude Monnet in 1886, French painter and founder of impressionist painting", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"118-258": [[941, -283], [940, -201], [996, -200], [995, -283]]}, "center": {"118-258": [968, -241]}}, -{"id": 3419, "name": "Alexby11", "description": "Alexby11 es uno de los más grandes youtubers y streamers de España, siendo pionero en la creación de contenido en internet de su país.\nCreador y fundador de la serie de rust \"Egoland\" en sus dos ediciones, participante de grandes series como Karmaland.\nSe muestran su skin de minecraft, la (L) siendo un ex emoticon en su canal de twich y la \"A\" siendo el logo de su canal.", "links": {"website": ["https://www.twitch.tv/alexby11", "https://www.youtube.com/@xAlexBY11", "https://twitter.com/aLexBY11"], "subreddit": ["aLexBY_11"]}, "path": {"250-258": [[128, 597], [145, 597], [145, 645], [128, 645]]}, "center": {"250-258": [137, 621]}}, -{"id": 3420, "name": "V.W.P (Virtual Witch Phenomenon)", "description": "V.W.P, short for Virtual Witch Phenomenon, is a supernatural-themed virtual singer group. The group is compromised of members KAF, RIM, Harusaruhi, Isekaijoucho and koko - all performers under KAMITSUBAKI STUDIO.\n\nIn this artwork, Harusaruhi is at the top left, koko is at the top right, RIM is at the bottom left, Isekaijoucho is at the bottom, and KAF is at the bottom right.\n\nThis artwork found its way onto the canvas through the collective effort of the Kamitsubaki English community in collaboration with r/place VTubers.", "links": {"website": ["https://www.youtube.com/@VWPVirtualWitchPhenomenon", "https://kamitsubaki.fandom.com/wiki/V.W.P"], "subreddit": ["Kamitsubaki_Fans", "VirtualYoutubers"], "discord": ["NwCy89U"]}, "path": {"175-259": [[-159, -806], [-113, -806], [-113, -776], [-159, -776]]}, "center": {"175-259": [-136, -791]}}, +{"id": 3415, "name": "Polaris Klepsky", "description": "The face of the character Polaris \"Polly\" Amry Klepsky from the webcomic Sparklecare.", "links": {"website": ["https://www.sparklecarehospital.com/"], "subreddit": ["sparklecare"]}, "path": {"250-258, T": [[-904, 766], [-904, 770], [-900, 770], [-900, 766]]}, "center": {"250-258, T": [-902, 768]}}, +{"id": 3416, "name": "UMP45", "description": "UMP45, usually shortened to \"45\", is a character from the game Girls' Frontline. She is a rogue Tactical Doll and the leader of the black ops mercenaries of Squad 404. Her driven and coldly aggressive personality, the result of a significant betrayal, is thinly veiled by her dry humor, and serves to conceal a deeper goodness of soul she shows only rarely. She is described as wearing an ominous smile.\n\nArt credit: Sleepless_Nightz", "links": {"website": ["https://iopwiki.com/wiki/UMP45", "https://gf.sunborngame.com/", "https://en.wikipedia.org/wiki/Girls'_Frontline"], "subreddit": ["girlsfrontline", "touhou"], "discord": ["apl"]}, "path": {"203-258, T": [[1286, 365], [1286, 394], [1317, 394], [1317, 370], [1315, 370], [1312, 367], [1312, 365]]}, "center": {"203-258, T": [1302, 380]}}, +{"id": 3417, "name": "The Mare In The Sun", "description": "The last pony present in the original main location of the brony fandom, after it was destroyed and replaced by streamer raids.", "links": {}, "path": {"250-258, T": [[-94, 193], [-94, 198], [-87, 198], [-87, 192], [-94, 192]]}, "center": {"250-258, T": [-90, 195]}}, +{"id": 3418, "name": "Femme à l'ombrelle tournée vers la gauche - Claude Monnet", "description": "Reproduction of \"Femme à l'ombrelle tournée vers la gauche\" by Claude Monnet in 1886, French painter and founder of impressionist painting", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"118-258, T": [[941, -283], [940, -201], [996, -200], [995, -283]]}, "center": {"118-258, T": [968, -241]}}, +{"id": 3419, "name": "Alexby11", "description": "Alexby11 es uno de los más grandes youtubers y streamers de España, siendo pionero en la creación de contenido en internet de su país.\nCreador y fundador de la serie de rust \"Egoland\" en sus dos ediciones, participante de grandes series como Karmaland.\nSe muestran su skin de minecraft, la (L) siendo un ex emoticon en su canal de twich y la \"A\" siendo el logo de su canal.", "links": {"website": ["https://www.twitch.tv/alexby11", "https://www.youtube.com/@xAlexBY11", "https://twitter.com/aLexBY11"], "subreddit": ["aLexBY_11"]}, "path": {"250-258, T": [[128, 597], [145, 597], [145, 645], [128, 645]]}, "center": {"250-258, T": [137, 621]}}, +{"id": 3420, "name": "V.W.P (Virtual Witch Phenomenon)", "description": "V.W.P, short for Virtual Witch Phenomenon, is a supernatural-themed virtual singer group. The group is compromised of members KAF, RIM, Harusaruhi, Isekaijoucho and koko - all performers under KAMITSUBAKI STUDIO.\n\nIn this artwork, Harusaruhi is at the top left, koko is at the top right, RIM is at the bottom left, Isekaijoucho is at the bottom, and KAF is at the bottom right.\n\nThis artwork found its way onto the canvas through the collective effort of the Kamitsubaki English community in collaboration with r/place VTubers.", "links": {"website": ["https://www.youtube.com/@VWPVirtualWitchPhenomenon", "https://kamitsubaki.fandom.com/wiki/V.W.P"], "subreddit": ["Kamitsubaki_Fans", "VirtualYoutubers"], "discord": ["NwCy89U"]}, "path": {"175-259, T": [[-159, -806], [-113, -806], [-113, -776], [-159, -776]]}, "center": {"175-259, T": [-136, -791]}}, {"id": 3421, "name": "Quantum Moon", "description": "The Quantum Moon is a moon from the game Outer Wilds that changes location when it stops being observed.\n\nThis Quantum Moon was drawn by the Moon Lorgs from the Outer Wilds community.", "links": {"subreddit": ["outerwilds"]}, "path": {"249": [[1137, 11], [1139, 11], [1139, 13]]}, "center": {"249": [1139, 12]}}, -{"id": 3422, "name": "Starset", "description": "A depiction of Starset's first album, \"Transmissions\" \n\nStarset is a cinematic rock band established in 2013, and consists of 7 members at the current moment: Dustin Bates (singer), Ron DeChant (bass), Brock Richards (guitar), Adam Gilbert (drums), Siobhan Cronin (violin), Zuzana Engerova (cello), and Cory Juba (programming).\n\nThey have 3 other albums as of 2023; \"Vessels\", \"DIVISIONS\", and \"HORIZONS\", all in chronological order.", "links": {"website": ["https://starsetonline.com"], "subreddit": ["Starset"], "discord": ["TTKHhkqG"]}, "path": {"212-259": [[1403, -1], [1403, -2], [1403, -1], [1403, 0], [1403, 2], [1403, 3], [1403, 5], [1403, 6], [1404, 6], [1406, 6], [1407, 6], [1409, 6], [1414, 6], [1414, 5], [1414, 4], [1414, 3], [1414, 1], [1414, 2], [1414, 0], [1414, -1], [1414, -2], [1414, -3], [1413, -3], [1411, -3], [1412, -3], [1411, -3], [1410, -3], [1409, -3], [1407, -3], [1406, -3], [1404, -3], [1403, -3], [1403, -2], [1403, -3], [1403, 6], [1413, 6], [1414, 6], [1414, 3], [1414, 2], [1414, -1]]}, "center": {"212-259": [1409, -2]}}, -{"id": 3423, "name": "Club The Strongest", "description": "El \"Tigre\" es una institución deportiva con sede en la ciudad de La Paz, Bolivia, cuya actividad principal es el fútbol profesional. Fue fundado el 8 de abril de 1908 por doce jóvenes estudiantes, liderados por José Villamil. Actualmente participa en la Primera División de Bolivia", "links": {"website": ["https://www.instagram.com/clubstrongest/"]}, "path": {"250-258": [[183, 745], [186, 744], [189, 744], [192, 746], [190, 750], [187, 752], [184, 750]]}, "center": {"250-258": [187, 747]}}, -{"id": 3424, "name": "Saint", "description": "A payable chartacter from indie game rainworld", "links": {"website": ["https://rainworld.miraheze.org/wiki/Saint"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258": [[-1267, 246], [-1268, 245], [-1269, 245], [-1269, 246], [-1269, 247], [-1269, 248], [-1269, 249], [-1269, 250], [-1268, 250], [-1268, 249], [-1267, 249], [-1267, 248], [-1266, 248], [-1266, 247], [-1266, 246], [-1267, 247], [-1268, 247], [-1268, 246]]}, "center": {"250-258": [-1268, 248]}}, +{"id": 3422, "name": "Starset", "description": "A depiction of Starset's first album, \"Transmissions\" \n\nStarset is a cinematic rock band established in 2013, and consists of 7 members at the current moment: Dustin Bates (singer), Ron DeChant (bass), Brock Richards (guitar), Adam Gilbert (drums), Siobhan Cronin (violin), Zuzana Engerova (cello), and Cory Juba (programming).\n\nThey have 3 other albums as of 2023; \"Vessels\", \"DIVISIONS\", and \"HORIZONS\", all in chronological order.", "links": {"website": ["https://starsetonline.com"], "subreddit": ["Starset"], "discord": ["TTKHhkqG"]}, "path": {"212-259, T": [[1403, -1], [1403, -2], [1403, -1], [1403, 0], [1403, 2], [1403, 3], [1403, 5], [1403, 6], [1404, 6], [1406, 6], [1407, 6], [1409, 6], [1414, 6], [1414, 5], [1414, 4], [1414, 3], [1414, 1], [1414, 2], [1414, 0], [1414, -1], [1414, -2], [1414, -3], [1413, -3], [1411, -3], [1412, -3], [1411, -3], [1410, -3], [1409, -3], [1407, -3], [1406, -3], [1404, -3], [1403, -3], [1403, -2], [1403, -3], [1403, 6], [1413, 6], [1414, 6], [1414, 3], [1414, 2], [1414, -1]]}, "center": {"212-259, T": [1409, -2]}}, +{"id": 3423, "name": "Club The Strongest", "description": "El \"Tigre\" es una institución deportiva con sede en la ciudad de La Paz, Bolivia, cuya actividad principal es el fútbol profesional. Fue fundado el 8 de abril de 1908 por doce jóvenes estudiantes, liderados por José Villamil. Actualmente participa en la Primera División de Bolivia", "links": {"website": ["https://www.instagram.com/clubstrongest/"]}, "path": {"250-258, T": [[183, 745], [186, 744], [189, 744], [192, 746], [190, 750], [187, 752], [184, 750]]}, "center": {"250-258, T": [187, 747]}}, +{"id": 3424, "name": "Saint", "description": "A payable chartacter from indie game rainworld", "links": {"website": ["https://rainworld.miraheze.org/wiki/Saint"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258, T": [[-1267, 246], [-1268, 245], [-1269, 245], [-1269, 246], [-1269, 247], [-1269, 248], [-1269, 249], [-1269, 250], [-1268, 250], [-1268, 249], [-1267, 249], [-1267, 248], [-1266, 248], [-1266, 247], [-1266, 246], [-1267, 247], [-1268, 247], [-1268, 246]]}, "center": {"250-258, T": [-1268, 248]}}, {"id": 3425, "name": "German-Czech Heart", "description": "The German flag now embraces a small heart in Czech colors, symbolizing lasting peace and unity between Czechia and Germany. This heartfelt addition represents the strong bond and cooperation shared between the two nations.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Czech_Republic"], "subreddit": ["de", "czech"]}, "path": {"119-218": [[-992, -61], [-993, -61], [-993, -62], [-994, -62], [-994, -63], [-995, -63], [-995, -64], [-996, -64], [-996, -65], [-997, -65], [-997, -66], [-998, -66], [-998, -67], [-998, -68], [-998, -69], [-998, -70], [-998, -71], [-997, -71], [-997, -72], [-996, -72], [-995, -72], [-994, -72], [-993, -72], [-993, -71], [-992, -71], [-992, -70], [-992, -71], [-991, -71], [-991, -72], [-990, -72], [-989, -72], [-988, -72], [-988, -71], [-987, -71], [-987, -70], [-986, -70], [-986, -69], [-986, -68], [-986, -67], [-986, -66], [-987, -66], [-987, -65], [-988, -65], [-988, -64], [-989, -64], [-989, -63], [-990, -63], [-990, -62], [-991, -62], [-991, -61], [-992, -61], [-993, -61]]}, "center": {"119-218": [-992, -66]}}, -{"id": 3427, "name": "TazerCraft-MissaSinfonia Alliance", "description": "Symbol of unity between two communities of Mexico and Brazil for streamers <3", "links": {}, "path": {"250-258": [[-1, 501], [26, 501], [26, 528], [26, 529], [-2, 529]]}, "center": {"250-258": [12, 515]}}, -{"id": 3428, "name": "Josuke Higashikata (Jojo's Part 4)", "description": "The protagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable\n\nStand: Crazy Diamond\n\n\"You bastard... What the fuck did you say about my hair?!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1157, -117], [-1151, -117], [-1150, -109], [-1151, -107], [-1153, -110], [-1156, -110], [-1156, -117]]}, "center": {"250-258": [-1153, -113]}}, -{"id": 3429, "name": "Armenian eternity sign", "description": "The Armenian eternity sign is an ancient Armenian national symbol and a symbol of the national identity of the Armenian people. \nIn medieval Armenian culture, the eternity sign symbolized the concept of everlasting, celestial life.", "links": {"website": ["https://en.wikipedia.org/wiki/Armenian_eternity_sign"], "subreddit": ["armenia"]}, "path": {"250-258": [[-501, 971], [-473, 971], [-473, 998], [-501, 997], [-501, 972]]}, "center": {"250-258": [-487, 984]}}, -{"id": 3430, "name": "MariAli Artwork", "description": "A romantic depiction of Marisa Kirisame and Alice Margatroid of the Touhou Project being \"Close Friends\" under a rainbow.", "links": {"subreddit": ["touhou"]}, "path": {"247-258": [[-1434, -623], [-1476, -623], [-1477, -623], [-1477, -626], [-1479, -626], [-1479, -649], [-1491, -649], [-1491, -654], [-1482, -654], [-1482, -660], [-1482, -661], [-1477, -661], [-1461, -654], [-1459, -656], [-1455, -658], [-1452, -659], [-1450, -661], [-1448, -661], [-1446, -659], [-1441, -659], [-1439, -654], [-1435, -650], [-1436, -649], [-1440, -651], [-1440, -650], [-1439, -649], [-1434, -647], [-1434, -643], [-1428, -638], [-1428, -623], [-1433, -625]]}, "center": {"247-258": [-1453, -639]}}, -{"id": 3431, "name": "PG-gibbogialloblù and porchettav", "description": "A homage to a friend that is jokingly called pg, also we can see the flag of the small village from which he is from, Minerbe", "links": {"website": ["https://www.comune.minerbe.vr.it/hh/index.php?jvs=0&acc=1", "https://www.youtube.com/@gibbogialloblu1171"]}, "path": {"250-258": [[-329, 640], [-331, 640], [-336, 640], [-336, 635], [-329, 636], [-329, 635]]}, "center": {"250-258": [-333, 638]}}, +{"id": 3427, "name": "TazerCraft-MissaSinfonia Alliance", "description": "Symbol of unity between two communities of Mexico and Brazil for streamers <3", "links": {}, "path": {"250-258, T": [[-1, 501], [26, 501], [26, 528], [26, 529], [-2, 529]]}, "center": {"250-258, T": [12, 515]}}, +{"id": 3428, "name": "Josuke Higashikata (Jojo's Part 4)", "description": "The protagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable\n\nStand: Crazy Diamond\n\n\"You bastard... What the fuck did you say about my hair?!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1157, -117], [-1151, -117], [-1150, -109], [-1151, -107], [-1153, -110], [-1156, -110], [-1156, -117]]}, "center": {"250-258, T": [-1153, -113]}}, +{"id": 3429, "name": "Armenian eternity sign", "description": "The Armenian eternity sign is an ancient Armenian national symbol and a symbol of the national identity of the Armenian people. \nIn medieval Armenian culture, the eternity sign symbolized the concept of everlasting, celestial life.", "links": {"website": ["https://en.wikipedia.org/wiki/Armenian_eternity_sign"], "subreddit": ["armenia"]}, "path": {"250-258, T": [[-501, 971], [-473, 971], [-473, 998], [-501, 997], [-501, 972]]}, "center": {"250-258, T": [-487, 984]}}, +{"id": 3430, "name": "MariAli Artwork", "description": "A romantic depiction of Marisa Kirisame and Alice Margatroid of the Touhou Project being \"Close Friends\" under a rainbow.", "links": {"subreddit": ["touhou"]}, "path": {"247-258, T": [[-1434, -623], [-1476, -623], [-1477, -623], [-1477, -626], [-1479, -626], [-1479, -649], [-1491, -649], [-1491, -654], [-1482, -654], [-1482, -660], [-1482, -661], [-1477, -661], [-1461, -654], [-1459, -656], [-1455, -658], [-1452, -659], [-1450, -661], [-1448, -661], [-1446, -659], [-1441, -659], [-1439, -654], [-1435, -650], [-1436, -649], [-1440, -651], [-1440, -650], [-1439, -649], [-1434, -647], [-1434, -643], [-1428, -638], [-1428, -623], [-1433, -625]]}, "center": {"247-258, T": [-1453, -639]}}, +{"id": 3431, "name": "PG-gibbogialloblù and porchettav", "description": "A homage to a friend that is jokingly called pg, also we can see the flag of the small village from which he is from, Minerbe", "links": {"website": ["https://www.comune.minerbe.vr.it/hh/index.php?jvs=0&acc=1", "https://www.youtube.com/@gibbogialloblu1171"]}, "path": {"250-258, T": [[-329, 640], [-331, 640], [-336, 640], [-336, 635], [-329, 636], [-329, 635]]}, "center": {"250-258, T": [-333, 638]}}, {"id": 3432, "name": "Jerma Sus", "description": "Sus Jerma refers to a series of shitposts based on an edited image of streamer Jerma985 in which he is given an eerie, unnatural smile, usually captioned with the catchphrase When the Imposter Is Sus. The meme gained popularity in /r/jerma985 subreddit and in the streamer's Discord, later spreading to Twitter and Instagram", "links": {"website": ["https://knowyourmeme.com/memes/when-the-imposter-is-sus-sus-jerma"]}, "path": {"230": [[-506, 0], [-278, -1], [-282, 216], [-498, 210]]}, "center": {"230": [-387, 106]}}, -{"id": 3433, "name": "Joseph Joestar (Jojo's Part 2)", "description": "The protagonist of Jojo's Bizarre Adventure Part 2: Battle Tendency.\n\nStand: Hermit Purple (part 3)\n\n\"Your next line is: \"fuck spez\", right?\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1163, -117], [-1158, -117], [-1157, -114], [-1158, -110], [-1159, -112], [-1161, -112], [-1163, -115], [-1161, -117]]}, "center": {"250-258": [-1160, -115]}}, -{"id": 3434, "name": "Homestuck", "description": "A selection of characters from the webcomic Homestuck. From left to right: Terezi, Sollux, Nepeta, Eridan, and Vriska, with the Sburb logo between Terezi and Sollux.", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258": [[-312, -816], [-262, -816], [-262, -844], [-282, -844], [-280, -831], [-297, -831], [-298, -832], [-300, -831], [-312, -830]]}, "center": {"250-258": [-272, -826]}}, +{"id": 3433, "name": "Joseph Joestar (Jojo's Part 2)", "description": "The protagonist of Jojo's Bizarre Adventure Part 2: Battle Tendency.\n\nStand: Hermit Purple (part 3)\n\n\"Your next line is: \"fuck spez\", right?\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1163, -117], [-1158, -117], [-1157, -114], [-1158, -110], [-1159, -112], [-1161, -112], [-1163, -115], [-1161, -117]]}, "center": {"250-258, T": [-1160, -115]}}, +{"id": 3434, "name": "Homestuck", "description": "A selection of characters from the webcomic Homestuck. From left to right: Terezi, Sollux, Nepeta, Eridan, and Vriska, with the Sburb logo between Terezi and Sollux.", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258, T": [[-312, -816], [-262, -816], [-262, -844], [-282, -844], [-280, -831], [-297, -831], [-298, -832], [-300, -831], [-312, -830]]}, "center": {"250-258, T": [-272, -826]}}, {"id": 3435, "name": "Quantum Moon", "description": "The Quantum Moon is a moon from the game Outer Wilds that changes location when it stops being observed.\n\nThe Quantum Moon was drawn at different places at different times around r/place. Don't blink or you'll miss it!", "links": {"subreddit": ["outerwilds"]}, "path": {"256-258": [[-1008, -861], [-1007, -861], [-1007, -860], [-1008, -860]]}, "center": {"256-258": [-1007, -860]}}, -{"id": 3436, "name": "Dead Cells X Rain World X Bug Fables Collab", "description": "A small collaborative artwork that includes three characters from the communities that worked on the project, such as Kabbu (Bug Fables), a Cyan Lizard (Rain World) and The Beheaded (Dead Cells). This art was soon updated to include the Netherlands flag to show their alliance between them.", "links": {"subreddit": ["deadcells", "BugFables", "rainworld"]}, "path": {"173-258": [[-1261, -483], [-1218, -483], [-1218, -539], [-1218, -540], [-1261, -540]]}, "center": {"173-258": [-1239, -511]}}, -{"id": 3437, "name": "OberonMola", "description": "Oberon is a character from the videogame Fate/Grand Order, loved by the streamer TheDarkraimola and his community", "links": {"website": ["https://typemoon.fandom.com/wiki/Oberon_Vortigern", "https://www.twitch.tv/thedarkraimola"]}, "path": {"250-258": [[445, -303], [461, -303], [461, -285], [445, -285]]}, "center": {"250-258": [453, -294]}}, +{"id": 3436, "name": "Dead Cells X Rain World X Bug Fables Collab", "description": "A small collaborative artwork that includes three characters from the communities that worked on the project, such as Kabbu (Bug Fables), a Cyan Lizard (Rain World) and The Beheaded (Dead Cells). This art was soon updated to include the Netherlands flag to show their alliance between them.", "links": {"subreddit": ["deadcells", "BugFables", "rainworld"]}, "path": {"173-258, T": [[-1261, -483], [-1218, -483], [-1218, -539], [-1218, -540], [-1261, -540]]}, "center": {"173-258, T": [-1239, -511]}}, +{"id": 3437, "name": "OberonMola", "description": "Oberon is a character from the videogame Fate/Grand Order, loved by the streamer TheDarkraimola and his community", "links": {"website": ["https://typemoon.fandom.com/wiki/Oberon_Vortigern", "https://www.twitch.tv/thedarkraimola"]}, "path": {"250-258, T": [[445, -303], [461, -303], [461, -285], [445, -285]]}, "center": {"250-258, T": [453, -294]}}, {"id": 3438, "name": "\"Der Kleine Prinz\"", "description": "The Little Prince is a French-German computer-animated television series based on the story The Little Prince by the French writer Antoine de Saint-Exupéry. A total of 78 episodes of the series were filmed from 2010 to 2016, and the first German-language broadcast began on 2 October 2011 on Das Erste.\nIt got voted from the r/placede Community to get added on their flagg", "links": {"website": ["https://de.wikipedia.org/wiki/Der_kleine_Prinz_(Fernsehserie)"]}, "path": {"248-249": [[1325, -953], [1318, -944], [1319, -932], [1320, -924], [1332, -918], [1351, -925], [1359, -938], [1355, -948], [1351, -948], [1346, -947], [1343, -945], [1338, -951], [1330, -952]]}, "center": {"248-249": [1334, -934]}}, -{"id": 3439, "name": "Giorno Giovanna (Jojo's Part 5)", "description": "The protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind\n\nStand: Gold Experience\n\n\"I, Giorno Giovanna, Have a dream.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1146, -106], [-1142, -106], [-1142, -99], [-1143, -98], [-1145, -100], [-1147, -103], [-1147, -106]]}, "center": {"250-258": [-1144, -103]}}, -{"id": 3440, "name": "CosmicNick", "description": "Hispanic streamer and minecraft player, he helped small communities of reddit", "links": {"website": ["https://www.twitch.tv/cosmicnicks"], "subreddit": ["GreenCosmicSLIme"]}, "path": {"228-258": [[-1105, -323], [-1105, -316], [-1097, -316], [-1097, -324], [-1105, -324]]}, "center": {"228-258": [-1101, -320]}}, -{"id": 3441, "name": "Hana Yomeguri", "description": "VTuber, VSinger \nJapanese VTuber who speaks several languages \nShe has a cult with yogurt", "links": {"website": ["https://www.youtube.com/@HanaYomeguri"]}, "path": {"169-258": [[398, -880], [398, -869], [399, -869], [399, -865], [401, -865], [401, -861], [399, -861], [399, -857], [403, -857], [403, -858], [405, -858], [405, -857], [415, -857], [415, -859], [416, -859], [416, -860], [417, -860], [417, -861], [418, -861], [418, -862], [419, -862], [419, -866], [418, -866], [418, -868], [419, -868], [419, -877], [418, -877], [418, -883], [417, -883], [417, -884], [415, -884], [415, -885], [413, -885], [413, -886], [408, -886], [408, -887], [403, -887], [403, -886], [402, -886], [402, -885], [401, -885], [401, -884], [400, -884], [400, -882], [399, -882], [399, -880]]}, "center": {"169-258": [408, -874]}}, -{"id": 3442, "name": "Joe1243 (Minecraft Head)", "description": "The Minecraft head of the Youtuber Joe1243", "links": {"discord": ["NYybYRqvYC"]}, "path": {"250-258": [[1280, 331], [1281, 331], [1280, 331], [1279, 332], [1283, 331], [1281, 330], [1282, 330], [1283, 331], [1285, 331], [1285, 338], [1278, 338], [1278, 332], [1279, 331]]}, "center": {"250-258": [1282, 335]}}, -{"id": 3443, "name": "Der Blaue Reiter", "description": "The \"Blue Rider\" was a groundbreaking art movement in Germany during the early 20th century. It sought to break away from traditional art and explore new forms of expression, focusing on vibrant colors and abstract imagery. The movement's key artists, Wassily Kandinsky and Franz Marc, emphasized the spiritual and emotional aspects of art.\n\nOne of the most famous paintings from the \"Blue Rider\" is \"Blue Horse 1\" by Franz Marc. It depicts a blue horse in bold colors, symbolizing the artist's fascination with animals and nature's spiritual connection. The painting represents the movement's innovative approach to art and its exploration of emotions and spirituality.\n\nOverall, the \"Blue Rider\" was vital for German history as it revolutionized modern art and continues to inspire artists worldwide. \"Blue Horse 1\" remains a significant symbol of the movement's influential ideas and artistic achievements.\n\nPainting by r/placede", "links": {"website": ["https://en.wikipedia.org/wiki/Der_Blaue_Reiter"], "subreddit": ["placede"]}, "path": {"235-258": [[-660, 741], [-660, 841], [-572, 841], [-572, 741]]}, "center": {"235-258": [-616, 791]}}, +{"id": 3439, "name": "Giorno Giovanna (Jojo's Part 5)", "description": "The protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind\n\nStand: Gold Experience\n\n\"I, Giorno Giovanna, Have a dream.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1146, -106], [-1142, -106], [-1142, -99], [-1143, -98], [-1145, -100], [-1147, -103], [-1147, -106]]}, "center": {"250-258, T": [-1144, -103]}}, +{"id": 3440, "name": "CosmicNick", "description": "Hispanic streamer and minecraft player, he helped small communities of reddit", "links": {"website": ["https://www.twitch.tv/cosmicnicks"], "subreddit": ["GreenCosmicSLIme"]}, "path": {"228-258, T": [[-1105, -323], [-1105, -316], [-1097, -316], [-1097, -324], [-1105, -324]]}, "center": {"228-258, T": [-1101, -320]}}, +{"id": 3441, "name": "Hana Yomeguri", "description": "VTuber, VSinger \nJapanese VTuber who speaks several languages \nShe has a cult with yogurt", "links": {"website": ["https://www.youtube.com/@HanaYomeguri"]}, "path": {"169-258, T": [[398, -880], [398, -869], [399, -869], [399, -865], [401, -865], [401, -861], [399, -861], [399, -857], [403, -857], [403, -858], [405, -858], [405, -857], [415, -857], [415, -859], [416, -859], [416, -860], [417, -860], [417, -861], [418, -861], [418, -862], [419, -862], [419, -866], [418, -866], [418, -868], [419, -868], [419, -877], [418, -877], [418, -883], [417, -883], [417, -884], [415, -884], [415, -885], [413, -885], [413, -886], [408, -886], [408, -887], [403, -887], [403, -886], [402, -886], [402, -885], [401, -885], [401, -884], [400, -884], [400, -882], [399, -882], [399, -880]]}, "center": {"169-258, T": [408, -874]}}, +{"id": 3442, "name": "Joe1243 (Minecraft Head)", "description": "The Minecraft head of the Youtuber Joe1243", "links": {"discord": ["NYybYRqvYC"]}, "path": {"250-258, T": [[1280, 331], [1281, 331], [1280, 331], [1279, 332], [1283, 331], [1281, 330], [1282, 330], [1283, 331], [1285, 331], [1285, 338], [1278, 338], [1278, 332], [1279, 331]]}, "center": {"250-258, T": [1282, 335]}}, +{"id": 3443, "name": "Der Blaue Reiter", "description": "The \"Blue Rider\" was a groundbreaking art movement in Germany during the early 20th century. It sought to break away from traditional art and explore new forms of expression, focusing on vibrant colors and abstract imagery. The movement's key artists, Wassily Kandinsky and Franz Marc, emphasized the spiritual and emotional aspects of art.\n\nOne of the most famous paintings from the \"Blue Rider\" is \"Blue Horse 1\" by Franz Marc. It depicts a blue horse in bold colors, symbolizing the artist's fascination with animals and nature's spiritual connection. The painting represents the movement's innovative approach to art and its exploration of emotions and spirituality.\n\nOverall, the \"Blue Rider\" was vital for German history as it revolutionized modern art and continues to inspire artists worldwide. \"Blue Horse 1\" remains a significant symbol of the movement's influential ideas and artistic achievements.\n\nPainting by r/placede", "links": {"website": ["https://en.wikipedia.org/wiki/Der_Blaue_Reiter"], "subreddit": ["placede"]}, "path": {"235-258, T": [[-660, 741], [-660, 841], [-572, 841], [-572, 741]]}, "center": {"235-258, T": [-616, 791]}}, {"id": 3444, "name": "The Great Windows Orb War", "description": "The war over control of the orb, fought between the subreddit r/placestart and 2 streamers. The windows orb had to be replaced multiple times.", "links": {"website": ["https://kick.com/mrstiventc", "https://www.youtube.com/@Hyphonix"], "subreddit": ["placestart"]}, "path": {"220-237": [[-1500, 969], [-1484, 969], [-1474, 965], [-1457, 966], [-1448, 980], [-1451, 998], [-1456, 1000], [-1500, 999]]}, "center": {"220-237": [-1471, 982]}}, -{"id": 3445, "name": "Doom Mood", "description": "The face of the character Doom Mood from the webcomic Sparklecare.", "links": {"website": ["https://www.sparklecarehospital.com/"], "subreddit": ["sparklecare"]}, "path": {"250-258": [[-899, 761], [-899, 765], [-895, 765], [-895, 761]]}, "center": {"250-258": [-897, 763]}}, -{"id": 3446, "name": "Gourmand", "description": "a playable character from indie game rainworld", "links": {"website": ["https://rainworld.miraheze.org/wiki/Gourmand"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258": [[-1260, 240], [-1260, 239], [-1261, 239], [-1262, 239], [-1262, 240], [-1263, 240], [-1263, 241], [-1262, 241], [-1262, 242], [-1262, 243], [-1261, 243], [-1261, 244], [-1260, 244], [-1260, 245], [-1259, 245], [-1259, 246], [-1258, 245], [-1258, 244], [-1258, 243], [-1257, 243], [-1257, 242], [-1257, 241], [-1257, 240], [-1258, 240], [-1258, 239], [-1259, 239], [-1260, 239]]}, "center": {"250-258": [-1260, 242]}}, -{"id": 3447, "name": "Jotaro Kujo (Jojo's Part 3)", "description": "The protagonist of Jojo's Bizarre Adventure Part 3: Stardust Crusaders.\n\nStand: Star Platinum\n\n\"I can't beat the shit out of you without getting closer.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1169, -117], [-1163, -117], [-1164, -113], [-1170, -113], [-1171, -115]]}, "center": {"250-258": [-1167, -115]}}, -{"id": 3448, "name": "pxls.space", "description": "pxls.space is a clone of the original r/place that's been running since 2017.\nMany unique features have been added to pxls.space over its lifespan that differentiate it from r/place, such as a built in heatmap, template support, live chat, and more!", "links": {"website": ["https://pxls.space/"], "subreddit": ["pxlsspace"], "discord": ["raA6det"]}, "path": {"250-258": [[434, -860], [425, -860], [425, -859], [419, -859], [419, -854], [418, -854], [418, -844], [428, -844], [428, -846], [432, -846], [432, -851], [434, -851]]}, "center": {"250-258": [425, -852]}}, +{"id": 3445, "name": "Doom Mood", "description": "The face of the character Doom Mood from the webcomic Sparklecare.", "links": {"website": ["https://www.sparklecarehospital.com/"], "subreddit": ["sparklecare"]}, "path": {"250-258, T": [[-899, 761], [-899, 765], [-895, 765], [-895, 761]]}, "center": {"250-258, T": [-897, 763]}}, +{"id": 3446, "name": "Gourmand", "description": "a playable character from indie game rainworld", "links": {"website": ["https://rainworld.miraheze.org/wiki/Gourmand"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258, T": [[-1260, 240], [-1260, 239], [-1261, 239], [-1262, 239], [-1262, 240], [-1263, 240], [-1263, 241], [-1262, 241], [-1262, 242], [-1262, 243], [-1261, 243], [-1261, 244], [-1260, 244], [-1260, 245], [-1259, 245], [-1259, 246], [-1258, 245], [-1258, 244], [-1258, 243], [-1257, 243], [-1257, 242], [-1257, 241], [-1257, 240], [-1258, 240], [-1258, 239], [-1259, 239], [-1260, 239]]}, "center": {"250-258, T": [-1260, 242]}}, +{"id": 3447, "name": "Jotaro Kujo (Jojo's Part 3)", "description": "The protagonist of Jojo's Bizarre Adventure Part 3: Stardust Crusaders.\n\nStand: Star Platinum\n\n\"I can't beat the shit out of you without getting closer.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1169, -117], [-1163, -117], [-1164, -113], [-1170, -113], [-1171, -115]]}, "center": {"250-258, T": [-1167, -115]}}, +{"id": 3448, "name": "pxls.space", "description": "pxls.space is a clone of the original r/place that's been running since 2017.\nMany unique features have been added to pxls.space over its lifespan that differentiate it from r/place, such as a built in heatmap, template support, live chat, and more!", "links": {"website": ["https://pxls.space/"], "subreddit": ["pxlsspace"], "discord": ["raA6det"]}, "path": {"250-258, T": [[434, -860], [425, -860], [425, -859], [419, -859], [419, -854], [418, -854], [418, -844], [428, -844], [428, -846], [432, -846], [432, -851], [434, -851]]}, "center": {"250-258, T": [425, -852]}}, {"id": 3449, "name": "Mariansaurus", "description": "One of the streamers leading the /r Ticos effort to build and maintain the Costa Rican symbols. This is Mariansaurus' Kukoro skin, which is known to be used in her streams when she plays Kukoro with her community.", "links": {"subreddit": ["JurassicMari"], "discord": ["S4qYAvXHRu"]}, "path": {"183-220": [[-1105, -323], [-1105, -315], [-1097, -315], [-1097, -323], [-1105, -323], [-1097, -323], [-1104, -323]]}, "center": {"183-220": [-1101, -319]}}, -{"id": 3450, "name": "Artificer", "description": "a playable character from indie game rainworld", "links": {"website": ["https://rainworld.miraheze.org/wiki/Artificer"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258": [[-1265, 248], [-1265, 245], [-1264, 245], [-1264, 244], [-1263, 245], [-1262, 245], [-1262, 244], [-1261, 245], [-1261, 246], [-1261, 247], [-1261, 248], [-1262, 247], [-1263, 247], [-1264, 247]]}, "center": {"250-258": [-1263, 246]}}, -{"id": 3451, "name": "Harina P.A.N.", "description": "The Harina P.A.N. (abbreviation for National Food Product) is the first brand of boiled maize flour in Venezuela. The brand itself became a synecdoche, as even with other large competitors in the market, it is used as a noun to indicate any similar maize flour.", "links": {"website": ["https://en.wikipedia.org/wiki/Harina_P.A.N."], "subreddit": ["vzla"]}, "path": {"170-258": [[-476, -859], [-476, -870], [-478, -872], [-484, -872], [-486, -870], [-486, -860], [-484, -858], [-477, -858]]}, "center": {"170-258": [-481, -865]}}, -{"id": 3452, "name": "Luminy Awards", "description": "Awards organized by the streamer Zein, is dedicated to recognizing the trajectory of streamers on Twitch Peru.", "links": {}, "path": {"250-258": [[-1018, -695], [-989, -694], [-989, -747], [-1020, -747]]}, "center": {"250-258": [-1004, -716]}}, +{"id": 3450, "name": "Artificer", "description": "a playable character from indie game rainworld", "links": {"website": ["https://rainworld.miraheze.org/wiki/Artificer"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258, T": [[-1265, 248], [-1265, 245], [-1264, 245], [-1264, 244], [-1263, 245], [-1262, 245], [-1262, 244], [-1261, 245], [-1261, 246], [-1261, 247], [-1261, 248], [-1262, 247], [-1263, 247], [-1264, 247]]}, "center": {"250-258, T": [-1263, 246]}}, +{"id": 3451, "name": "Harina P.A.N.", "description": "The Harina P.A.N. (abbreviation for National Food Product) is the first brand of boiled maize flour in Venezuela. The brand itself became a synecdoche, as even with other large competitors in the market, it is used as a noun to indicate any similar maize flour.", "links": {"website": ["https://en.wikipedia.org/wiki/Harina_P.A.N."], "subreddit": ["vzla"]}, "path": {"170-258, T": [[-476, -859], [-476, -870], [-478, -872], [-484, -872], [-486, -870], [-486, -860], [-484, -858], [-477, -858]]}, "center": {"170-258, T": [-481, -865]}}, +{"id": 3452, "name": "Luminy Awards", "description": "Awards organized by the streamer Zein, is dedicated to recognizing the trajectory of streamers on Twitch Peru.", "links": {}, "path": {"250-258, T": [[-1018, -695], [-989, -694], [-989, -747], [-1020, -747]]}, "center": {"250-258, T": [-1004, -716]}}, {"id": 3453, "name": "Samus Aran And Metroid", "description": "The protagonist of Nintendo's Metroid Series, Samus Aran, as she appeared in Metroid Dread developed by Spanish-based developer MercurySteam.", "links": {"subreddit": ["metroid"]}, "path": {"253-258": [[571, -48], [576, -51], [578, -69], [565, -70], [558, -60], [559, -53], [557, -51], [557, -47], [571, -47]]}, "center": {"253-258": [568, -58]}}, -{"id": 3454, "name": "PapitasVT", "description": "PapitasVT es una vtuber peruana que le gusta mucho tomar Inkakola y decir poto, además le gusta embriagarse … también le gusta decir KCHEMOOOS\n\nENGLISH: PapitasVT is a Peruvian vtuber who likes to drink Inkakola and say poto, she also likes to get drunk... she also likes to say KCHEMOOOS", "links": {"website": ["https://www.twitch.tv/papitasvt"]}, "path": {"250-258": [[-438, -815], [-410, -815], [-410, -797], [-440, -797], [-440, -812], [-438, -812]]}, "center": {"250-258": [-425, -806]}}, -{"id": 3455, "name": "Algeria/Colombia Alliance", "description": "After the second expansion of the canvas, Algeria and Colombia established themselves close to each other. Although initially ambivalent about one another, the nations would come to be each others strongest allies through their enemies.\n\nAt 5:00 GMT, due to conflicts with 1337 and Morocco, Colombia found its first flag obliterated by 1337's bots. The Algerians on their part had their own dislike for Morocco from a historical and geographic perspective. As such the two nations entered an alliance. On the one hand, Algeria supported Colombia's many attempts to establish other flags. Meanwhile Colombia intervened often by helping to clean up and defend Algeria during numerous Moroccan invasions. As such the two nations became each other's unlikely strongest ally throughout the course of r/place 2023.", "links": {"subreddit": ["Colombia", "Algeria"]}, "path": {"176-258": [[-733, 332], [-736, 328], [-736, 326], [-735, 325], [-734, 325], [-733, 326], [-732, 325], [-731, 325], [-730, 326], [-730, 329]]}, "center": {"176-258": [-732, 328]}}, +{"id": 3454, "name": "PapitasVT", "description": "PapitasVT es una vtuber peruana que le gusta mucho tomar Inkakola y decir poto, además le gusta embriagarse … también le gusta decir KCHEMOOOS\n\nENGLISH: PapitasVT is a Peruvian vtuber who likes to drink Inkakola and say poto, she also likes to get drunk... she also likes to say KCHEMOOOS", "links": {"website": ["https://www.twitch.tv/papitasvt"]}, "path": {"250-258, T": [[-438, -815], [-410, -815], [-410, -797], [-440, -797], [-440, -812], [-438, -812]]}, "center": {"250-258, T": [-425, -806]}}, +{"id": 3455, "name": "Algeria/Colombia Alliance", "description": "After the second expansion of the canvas, Algeria and Colombia established themselves close to each other. Although initially ambivalent about one another, the nations would come to be each others strongest allies through their enemies.\n\nAt 5:00 GMT, due to conflicts with 1337 and Morocco, Colombia found its first flag obliterated by 1337's bots. The Algerians on their part had their own dislike for Morocco from a historical and geographic perspective. As such the two nations entered an alliance. On the one hand, Algeria supported Colombia's many attempts to establish other flags. Meanwhile Colombia intervened often by helping to clean up and defend Algeria during numerous Moroccan invasions. As such the two nations became each other's unlikely strongest ally throughout the course of r/place 2023.", "links": {"subreddit": ["Colombia", "Algeria"]}, "path": {"176-258, T": [[-733, 332], [-736, 328], [-736, 326], [-735, 325], [-734, 325], [-733, 326], [-732, 325], [-731, 325], [-730, 326], [-730, 329]]}, "center": {"176-258, T": [-732, 328]}}, {"id": 3456, "name": "¿Sabías que Conter tiene un gato?", "description": "PixelArt creado en la serie de Minecraft, EliteCraft 1.\n\nFue hecho en su base para posteriormente elaborarla en bases de sus compañeros.", "links": {"website": ["https://www.youtube.com/watch?v=Rugc5AgbVK0"]}, "path": {"83": [[172, 101], [204, 101], [204, 128], [173, 128], [172, 128], [172, 118]]}, "center": {"83": [188, 115]}}, -{"id": 3457, "name": "Nasa", "description": "The North American Space Agency. Allied With Destiny Square", "links": {"website": ["https://www.nasa.gov"], "subreddit": ["nasa"]}, "path": {"9-259": [[91, -98], [116, -98], [116, -78], [91, -78]]}, "center": {"9-259": [104, -88]}}, -{"id": 3458, "name": "Barry Ill", "description": "The face of the character Barry Ill from the webcomic Sparklecare.", "links": {"website": ["https://www.sparklecarehospital.com/"], "subreddit": ["sparklecare"]}, "path": {"250-258": [[-904, 761], [-904, 765], [-900, 765], [-900, 761]]}, "center": {"250-258": [-902, 763]}}, -{"id": 3459, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"250-258": [[-475, -872], [-395, -872], [-395, -866], [-475, -866]]}, "center": {"250-258": [-435, -869]}}, -{"id": 3460, "name": "Unturned \"Megamind Face\"", "description": "made by the Unturned Community to honour beloved community member Isaac \"Megamind REAL\" Craven, who unfortunately passed earlier this year. the image depicts the face that his in-game character had.", "links": {"discord": ["Unturned", "6gKmJ5AJWV"]}, "path": {"141-258": [[-14, -627], [1, -627], [1, -612], [-14, -612]]}, "center": {"141-258": [-6, -619]}}, -{"id": 3461, "name": "Placebur's computer", "description": "A computer that represent Wilbur soot's (a British streamer) \"Starting soon screen\" That includes that computer.", "links": {"website": ["https://lemmy.world/c/wilbursoot"], "subreddit": ["wilbursoot"], "discord": ["d4UAmUKh"]}, "path": {"106-258": [[645, 438], [645, 464], [673, 464], [673, 438]]}, "center": {"106-258": [659, 451]}}, +{"id": 3457, "name": "Nasa", "description": "The North American Space Agency. Allied With Destiny Square", "links": {"website": ["https://www.nasa.gov"], "subreddit": ["nasa"]}, "path": {"9-259, T": [[91, -98], [116, -98], [116, -78], [91, -78]]}, "center": {"9-259, T": [104, -88]}}, +{"id": 3458, "name": "Barry Ill", "description": "The face of the character Barry Ill from the webcomic Sparklecare.", "links": {"website": ["https://www.sparklecarehospital.com/"], "subreddit": ["sparklecare"]}, "path": {"250-258, T": [[-904, 761], [-904, 765], [-900, 765], [-900, 761]]}, "center": {"250-258, T": [-902, 763]}}, +{"id": 3459, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["placevenezuela", "vzla"]}, "path": {"250-258, T": [[-475, -872], [-395, -872], [-395, -866], [-475, -866]]}, "center": {"250-258, T": [-435, -869]}}, +{"id": 3460, "name": "Unturned \"Megamind Face\"", "description": "made by the Unturned Community to honour beloved community member Isaac \"Megamind REAL\" Craven, who unfortunately passed earlier this year. the image depicts the face that his in-game character had.", "links": {"discord": ["Unturned", "6gKmJ5AJWV"]}, "path": {"141-258, T": [[-14, -627], [1, -627], [1, -612], [-14, -612]]}, "center": {"141-258, T": [-6, -619]}}, +{"id": 3461, "name": "Placebur's computer", "description": "A computer that represent Wilbur soot's (a British streamer) \"Starting soon screen\" That includes that computer.", "links": {"website": ["https://lemmy.world/c/wilbursoot"], "subreddit": ["wilbursoot"], "discord": ["d4UAmUKh"]}, "path": {"106-258, T": [[645, 438], [645, 464], [673, 464], [673, 438]]}, "center": {"106-258, T": [659, 451]}}, {"id": 3462, "name": "Wilhelm Tell", "description": "The mythical Swiss folk hero, Wilhelm (William) Tell, drawn by the Swiss community. This specific depiction is of the Tell Monument in the market place of Altdorf, Canton of Uri, Switzerland.", "links": {"website": ["https://en.wikipedia.org/wiki/William_Tell", "https://en.wikipedia.org/wiki/Tell_Monument"]}, "path": {"251-258": [[1393, -723], [1395, -723], [1396, -724], [1397, -724], [1397, -726], [1398, -727], [1399, -727], [1400, -726], [1400, -724], [1401, -724], [1403, -722], [1409, -722], [1410, -723], [1418, -723], [1419, -722], [1420, -723], [1421, -723], [1421, -726], [1422, -729], [1423, -730], [1423, -732], [1421, -734], [1422, -735], [1422, -737], [1420, -739], [1416, -739], [1415, -740], [1415, -749], [1413, -751], [1408, -751], [1407, -750], [1406, -750], [1405, -749], [1405, -748], [1404, -748], [1403, -747], [1403, -741], [1402, -742], [1400, -742], [1399, -743], [1397, -743], [1396, -744], [1394, -744], [1392, -746], [1391, -745], [1390, -745], [1389, -744], [1389, -743], [1390, -742], [1393, -742], [1394, -741], [1395, -741], [1396, -740], [1397, -740], [1398, -739], [1400, -739], [1401, -738], [1399, -738], [1398, -737], [1397, -736], [1392, -731], [1392, -724]]}, "center": {"251-258": [1409, -733]}}, -{"id": 3463, "name": "Francophone JetPunk", "description": "This area represents French-speaking community of JetPunk, a popular quiz website.", "links": {"website": ["https://www.jetpunk.com/fr"], "subreddit": ["JetPunk"], "discord": ["Q3rGw6gFwQ"]}, "path": {"203-258": [[-366, 652], [-340, 652], [-340, 653], [-340, 654], [-339, 654], [-339, 655], [-338, 655], [-338, 656], [-337, 656], [-337, 657], [-339, 657], [-339, 658], [-340, 658], [-340, 660], [-339, 660], [-339, 661], [-338, 661], [-338, 662], [-336, 662], [-336, 663], [-335, 663], [-335, 664], [-334, 664], [-334, 665], [-333, 665], [-333, 666], [-331, 666], [-333, 666], [-333, 667], [-334, 667], [-334, 668], [-335, 668], [-335, 669], [-337, 669], [-337, 668], [-339, 668], [-339, 667], [-348, 667], [-348, 668], [-350, 668], [-350, 669], [-350, 665], [-354, 665], [-354, 666], [-355, 666], [-355, 669], [-356, 669], [-356, 671], [-355, 671], [-355, 673], [-354, 673], [-355, 673], [-355, 674], [-356, 674], [-356, 678], [-355, 678], [-355, 679], [-354, 679], [-355, 679], [-355, 680], [-356, 680], [-356, 682], [-355, 682], [-355, 683], [-354, 683], [-354, 685], [-353, 685], [-353, 686], [-352, 686], [-352, 687], [-350, 687], [-350, 688], [-349, 688], [-349, 689], [-349, 688], [-350, 688], [-350, 687], [-351, 687], [-352, 687], [-352, 686], [-354, 686], [-354, 688], [-355, 688], [-355, 690], [-355, 688], [-354, 688], [-354, 683], [-355, 683], [-355, 682], [-356, 682], [-356, 681], [-357, 681], [-357, 680], [-359, 680], [-359, 677], [-356, 677], [-356, 674], [-357, 674], [-357, 671], [-356, 671], [-356, 669], [-357, 669], [-357, 668], [-360, 668], [-360, 670], [-360, 669], [-362, 669], [-362, 670], [-362, 669], [-364, 669], [-364, 673], [-363, 673], [-363, 674], [-363, 673], [-364, 673], [-364, 667], [-365, 667], [-365, 664], [-366, 664]]}, "center": {"203-258": [-359, 659]}}, +{"id": 3463, "name": "Francophone JetPunk", "description": "This area represents French-speaking community of JetPunk, a popular quiz website.", "links": {"website": ["https://www.jetpunk.com/fr"], "subreddit": ["JetPunk"], "discord": ["Q3rGw6gFwQ"]}, "path": {"203-258, T": [[-366, 652], [-340, 652], [-340, 653], [-340, 654], [-339, 654], [-339, 655], [-338, 655], [-338, 656], [-337, 656], [-337, 657], [-339, 657], [-339, 658], [-340, 658], [-340, 660], [-339, 660], [-339, 661], [-338, 661], [-338, 662], [-336, 662], [-336, 663], [-335, 663], [-335, 664], [-334, 664], [-334, 665], [-333, 665], [-333, 666], [-331, 666], [-333, 666], [-333, 667], [-334, 667], [-334, 668], [-335, 668], [-335, 669], [-337, 669], [-337, 668], [-339, 668], [-339, 667], [-348, 667], [-348, 668], [-350, 668], [-350, 669], [-350, 665], [-354, 665], [-354, 666], [-355, 666], [-355, 669], [-356, 669], [-356, 671], [-355, 671], [-355, 673], [-354, 673], [-355, 673], [-355, 674], [-356, 674], [-356, 678], [-355, 678], [-355, 679], [-354, 679], [-355, 679], [-355, 680], [-356, 680], [-356, 682], [-355, 682], [-355, 683], [-354, 683], [-354, 685], [-353, 685], [-353, 686], [-352, 686], [-352, 687], [-350, 687], [-350, 688], [-349, 688], [-349, 689], [-349, 688], [-350, 688], [-350, 687], [-351, 687], [-352, 687], [-352, 686], [-354, 686], [-354, 688], [-355, 688], [-355, 690], [-355, 688], [-354, 688], [-354, 683], [-355, 683], [-355, 682], [-356, 682], [-356, 681], [-357, 681], [-357, 680], [-359, 680], [-359, 677], [-356, 677], [-356, 674], [-357, 674], [-357, 671], [-356, 671], [-356, 669], [-357, 669], [-357, 668], [-360, 668], [-360, 670], [-360, 669], [-362, 669], [-362, 670], [-362, 669], [-364, 669], [-364, 673], [-363, 673], [-363, 674], [-363, 673], [-364, 673], [-364, 667], [-365, 667], [-365, 664], [-366, 664]]}, "center": {"203-258, T": [-359, 659]}}, {"id": 3464, "name": "Heart-shaped Non-binary Flag", "description": "The non-binary pride flag was created in 2014 by Kye Rowan. Yellow represents people whose gender exists outside the binary, purple represents those whose gender is a mixture of—or between—male and female, black represents people who have no gender, and white represents those who embrace many or all genders. This Flag is on the German South Flags Community representing their Peace Treaty with r/placePride and r/transplace.", "links": {"subreddit": ["transplace", "placePride", "placesuedflagge"], "discord": ["E5nu3tfb"]}, "path": {"253-258": [[-908, -61], [-909, -62], [-910, -63], [-911, -64], [-912, -65], [-913, -66], [-914, -67], [-914, -68], [-914, -69], [-914, -70], [-913, -71], [-912, -72], [-911, -72], [-910, -72], [-909, -72], [-909, -71], [-908, -71], [-907, -71], [-907, -72], [-906, -72], [-905, -72], [-904, -72], [-903, -72], [-903, -71], [-902, -70], [-902, -69], [-902, -68], [-902, -67], [-903, -66], [-904, -65], [-905, -64], [-906, -63], [-907, -62]]}, "center": {"253-258": [-908, -67]}}, -{"id": 3465, "name": "Stardew Valley Junimo", "description": "A forest spirit called Junimo from the game Stardew Valley", "links": {"website": ["https://stardewvalleywiki.com/Junimos"], "subreddit": ["StardewValley"]}, "path": {"250-258": [[945, -490], [949, -493], [953, -493], [956, -489], [955, -483], [953, -482], [947, -482], [945, -484], [945, -487]]}, "center": {"250-258": [950, -487]}}, -{"id": 3466, "name": "Karim Benzema", "description": "Karim Benzema is a french football player who is mostly known for being Real Madrid's main centre-forward for many years. His impressive skills have led him to win the Ballon D'or in 2022.", "links": {}, "path": {"146-161, 185-258": [[938, -741], [939, -746], [936, -757], [937, -778], [948, -787], [964, -789], [978, -786], [985, -777], [989, -769], [992, -756], [994, -752], [993, -748], [990, -749], [987, -741], [986, -730], [981, -725], [969, -722], [954, -720], [945, -729], [940, -736]]}, "center": {"146-161, 185-258": [963, -759]}}, -{"id": 3467, "name": "Phtanum B Worldbuilding Project", "description": "Phtanum B is a passion-fueled worldbuilding project that attempts to imagine how life on an alien planet could look like.\n\nPhtanum is an example of a worldbuilding project genre called „speculative evolution\", where one attempts to blend art and designs of lifeforms with science to make them imaginable or plausible in our universe. SteveMobCannon has been working on Phtanum for roundabout 4 years now and in that time has created a number of animal clades, an evolutionary history, a geologic history and a human lore part that are all now part of the project, and which have gathered a following online. All supported by self-drawn illustrations and descriptions!", "links": {"website": ["https://www.artstation.com/stevemobcannon/albums/7818392"], "discord": ["nzugSu5xXd"]}, "path": {"250-258": [[1242, -174], [1245, -173], [1247, -171], [1247, -168], [1246, -166], [1245, -164], [1243, -164], [1242, -163], [1239, -163], [1238, -164], [1236, -167], [1236, -169], [1236, -171], [1237, -172], [1238, -173], [1239, -174], [1241, -174], [1244, -174], [1245, -173], [1246, -172], [1247, -170], [1247, -168], [1247, -167], [1246, -166], [1246, -165], [1245, -164], [1244, -163], [1243, -163], [1242, -163]]}, "center": {"250-258": [1239, -168]}}, -{"id": 3468, "name": "Gengar (Pokemon)", "description": "The ghost/poison type Pokemon from Generation I.", "links": {"website": ["https://[https://bulbapedia.bulbagarden.net/wiki/Gengar_(Pok%C3%A9mon)](https://bulbapedia.bulbagarden.net/wiki/Gengar_(Pok%C3%A9mon))"], "subreddit": ["Pokemon"]}, "path": {"203-258": [[-1402, 372], [-1403, 371], [-1403, 370], [-1402, 369], [-1401, 368], [-1401, 367], [-1402, 366], [-1403, 365], [-1402, 364], [-1402, 363], [-1403, 362], [-1403, 360], [-1402, 360], [-1402, 358], [-1401, 357], [-1401, 354], [-1405, 354], [-1406, 355], [-1407, 355], [-1408, 356], [-1410, 356], [-1411, 355], [-1413, 355], [-1414, 354], [-1415, 354], [-1416, 355], [-1417, 356], [-1418, 355], [-1419, 354], [-1420, 354], [-1421, 353], [-1424, 353], [-1424, 362], [-1425, 362], [-1426, 363], [-1427, 364], [-1427, 365], [-1428, 366], [-1428, 367], [-1427, 367], [-1426, 368], [-1425, 369], [-1424, 369], [-1423, 370], [-1421, 372], [-1420, 373], [-1419, 374], [-1406, 374], [-1406, 373], [-1404, 373], [-1403, 373]]}, "center": {"203-258": [-1414, 365]}}, -{"id": 3469, "name": "La Gouttière", "description": "La Gouttière est une chaîne Twitch qui a bâtit une petite communauté. Celle-ci a dessiné une version pixelart du logo de la chaîne.", "links": {"website": ["https://www.twitch.tv/lagouttiere"], "subreddit": ["lagouttiere"], "discord": ["MV8f3wwzwm"]}, "path": {"250-258": [[1083, -744], [1084, -744], [1086, -744], [1078, -745], [1078, -727], [1090, -727], [1090, -745], [1078, -745]]}, "center": {"250-258": [1084, -736]}}, -{"id": 3470, "name": "ScanG Logo", "description": "ScanG is a scantrad team who's principally doing Kaguya-sama wo kokurasetai - official doujinshi, and Tawawa on Monday.\nThey're also famous for the channels \"#rapport-force-special\" and \"#fucking-degenerate\" where a lot of diverse\nartwork is curently posted.", "links": {"discord": ["NYU9wN9KMy"]}, "path": {"217-258": [[-244, 840], [-244, 847], [-244, 848], [-221, 847], [-221, 840]]}, "center": {"217-258": [-240, 844]}}, +{"id": 3465, "name": "Stardew Valley Junimo", "description": "A forest spirit called Junimo from the game Stardew Valley", "links": {"website": ["https://stardewvalleywiki.com/Junimos"], "subreddit": ["StardewValley"]}, "path": {"250-258, T": [[945, -490], [949, -493], [953, -493], [956, -489], [955, -483], [953, -482], [947, -482], [945, -484], [945, -487]]}, "center": {"250-258, T": [950, -487]}}, +{"id": 3466, "name": "Karim Benzema", "description": "Karim Benzema is a french football player who is mostly known for being Real Madrid's main centre-forward for many years. His impressive skills have led him to win the Ballon D'or in 2022.", "links": {}, "path": {"146-161, 185-258, T": [[938, -741], [939, -746], [936, -757], [937, -778], [948, -787], [964, -789], [978, -786], [985, -777], [989, -769], [992, -756], [994, -752], [993, -748], [990, -749], [987, -741], [986, -730], [981, -725], [969, -722], [954, -720], [945, -729], [940, -736]]}, "center": {"146-161, 185-258, T": [963, -759]}}, +{"id": 3467, "name": "Phtanum B Worldbuilding Project", "description": "Phtanum B is a passion-fueled worldbuilding project that attempts to imagine how life on an alien planet could look like.\n\nPhtanum is an example of a worldbuilding project genre called „speculative evolution\", where one attempts to blend art and designs of lifeforms with science to make them imaginable or plausible in our universe. SteveMobCannon has been working on Phtanum for roundabout 4 years now and in that time has created a number of animal clades, an evolutionary history, a geologic history and a human lore part that are all now part of the project, and which have gathered a following online. All supported by self-drawn illustrations and descriptions!", "links": {"website": ["https://www.artstation.com/stevemobcannon/albums/7818392"], "discord": ["nzugSu5xXd"]}, "path": {"250-258, T": [[1242, -174], [1245, -173], [1247, -171], [1247, -168], [1246, -166], [1245, -164], [1243, -164], [1242, -163], [1239, -163], [1238, -164], [1236, -167], [1236, -169], [1236, -171], [1237, -172], [1238, -173], [1239, -174], [1241, -174], [1244, -174], [1245, -173], [1246, -172], [1247, -170], [1247, -168], [1247, -167], [1246, -166], [1246, -165], [1245, -164], [1244, -163], [1243, -163], [1242, -163]]}, "center": {"250-258, T": [1239, -168]}}, +{"id": 3468, "name": "Gengar (Pokemon)", "description": "The ghost/poison type Pokemon from Generation I.", "links": {"website": ["https://[https://bulbapedia.bulbagarden.net/wiki/Gengar_(Pok%C3%A9mon)](https://bulbapedia.bulbagarden.net/wiki/Gengar_(Pok%C3%A9mon))"], "subreddit": ["Pokemon"]}, "path": {"203-258, T": [[-1402, 372], [-1403, 371], [-1403, 370], [-1402, 369], [-1401, 368], [-1401, 367], [-1402, 366], [-1403, 365], [-1402, 364], [-1402, 363], [-1403, 362], [-1403, 360], [-1402, 360], [-1402, 358], [-1401, 357], [-1401, 354], [-1405, 354], [-1406, 355], [-1407, 355], [-1408, 356], [-1410, 356], [-1411, 355], [-1413, 355], [-1414, 354], [-1415, 354], [-1416, 355], [-1417, 356], [-1418, 355], [-1419, 354], [-1420, 354], [-1421, 353], [-1424, 353], [-1424, 362], [-1425, 362], [-1426, 363], [-1427, 364], [-1427, 365], [-1428, 366], [-1428, 367], [-1427, 367], [-1426, 368], [-1425, 369], [-1424, 369], [-1423, 370], [-1421, 372], [-1420, 373], [-1419, 374], [-1406, 374], [-1406, 373], [-1404, 373], [-1403, 373]]}, "center": {"203-258, T": [-1414, 365]}}, +{"id": 3469, "name": "La Gouttière", "description": "La Gouttière est une chaîne Twitch qui a bâtit une petite communauté. Celle-ci a dessiné une version pixelart du logo de la chaîne.", "links": {"website": ["https://www.twitch.tv/lagouttiere"], "subreddit": ["lagouttiere"], "discord": ["MV8f3wwzwm"]}, "path": {"250-258, T": [[1083, -744], [1084, -744], [1086, -744], [1078, -745], [1078, -727], [1090, -727], [1090, -745], [1078, -745]]}, "center": {"250-258, T": [1084, -736]}}, +{"id": 3470, "name": "ScanG Logo", "description": "ScanG is a scantrad team who's principally doing Kaguya-sama wo kokurasetai - official doujinshi, and Tawawa on Monday.\nThey're also famous for the channels \"#rapport-force-special\" and \"#fucking-degenerate\" where a lot of diverse\nartwork is curently posted.", "links": {"discord": ["NYU9wN9KMy"]}, "path": {"217-258, T": [[-244, 840], [-244, 847], [-244, 848], [-221, 847], [-221, 840]]}, "center": {"217-258, T": [-240, 844]}}, {"id": 3471, "name": "Perritomalv4do", "description": "Perritomalv4dois a small Spanish-speaking content creator. \nDespite having started only a short time ago, she has already gained a fan base that loves and appreciates her.\nOn her channel she can be seen streaming various games, including Fornite.", "links": {"website": ["https://www.twitch.tv/perritomalv4do"]}, "path": {"231": [[-693, 800], [-684, 800], [-684, 810], [-693, 810], [-693, 800], [-693, 801]]}, "center": {"231": [-688, 805]}}, -{"id": 3472, "name": "Hilda (Character)", "description": "Hilda is a main protagonist from the comic & animated series Hilda.", "links": {"website": ["https://hildatheseries.fandom.com/wiki/Hilda"], "subreddit": ["HildaTheSeries"]}, "path": {"250-258": [[1094, -845], [1109, -845], [1109, -832], [1094, -832]]}, "center": {"250-258": [1102, -838]}}, -{"id": 3473, "name": "moe.", "description": "Moe (stylized as moe.) is an American jam rock band, formed at the University at Buffalo in 1989. The band members are Rob Derhak (bass, vocals), Al Schnier (guitar, vocals, keyboard), Chuck Garvey (guitar, vocals), Vinnie Amico (drums), Jim Loughlin (percussion) and Nate Wilson (keyboard).\n\nThe band's first record, Fatboy (1992), established the band as a favorite of the 1990s jam band and improvisational rock scene, which grew in popularity with the rise of bands such as Phish and Widespread Panic.\n\nMoe toured with the Furthur Festival in 1997, appeared at Woodstock '99, played Summerstage at the Rumsey Playfield in Central Park, opened for The Allman Brothers and The Who, performed at Radio City Music Hall on New Year's Eve 2006 and returned there for New Year's Eve 2007. They have also performed at Bonnaroo Music Festival five times (2002, 2003, 2004, 2006, and 2009).[2]", "links": {"website": ["https://moe.org/"], "subreddit": ["moeperiod"]}, "path": {"250-258": [[469, -46], [491, -46], [491, -40], [469, -40]]}, "center": {"250-258": [480, -43]}}, -{"id": 3474, "name": "Luzu", "description": "Luzu, es un youtuber, vlogger y streamer de nacionalidad española, conocido por participar en la velada del año II y III, igualmente es conocido por ser miembro en series como Karmaland y QSMP. Dicha pieza fue realizada por su comunidad conocida como #TeamLuzu.", "links": {"website": ["https://www.twitch.tv/luzu"]}, "path": {"250-258": [[571, 548], [579, 548], [579, 588], [572, 588]]}, "center": {"250-258": [575, 552]}}, -{"id": 3475, "name": "H E X E D", "description": "H E X E D is a Group of a few Germans and 2 Developers who create clients in Games\n\nShoutout to : Umbra , Saya , Keith , StupidGoat , Bigsmoke , Marius etc for creating this Art.", "links": {"website": ["https://logout.rip", "https://umbra.rest/", "https://Keith-drinks.vodka", "https://notsaya.de/"]}, "path": {"250-258": [[1476, -680], [1498, -680], [1498, -673], [1476, -673]]}, "center": {"250-258": [1487, -676]}}, -{"id": 3476, "name": "Anya Forger", "description": "Anya Forger from anime Spy x Family", "links": {"subreddit": ["SpyxFamily"]}, "path": {"250-258": [[1174, -744], [1191, -744], [1191, -755], [1190, -755], [1190, -759], [1186, -759], [1186, -760], [1183, -760], [1183, -762], [1179, -762], [1179, -760], [1178, -760], [1178, -759], [1175, -759], [1175, -755], [1174, -755]]}, "center": {"250-258": [1182, -752]}}, +{"id": 3472, "name": "Hilda (Character)", "description": "Hilda is a main protagonist from the comic & animated series Hilda.", "links": {"website": ["https://hildatheseries.fandom.com/wiki/Hilda"], "subreddit": ["HildaTheSeries"]}, "path": {"250-258, T": [[1094, -845], [1109, -845], [1109, -832], [1094, -832]]}, "center": {"250-258, T": [1102, -838]}}, +{"id": 3473, "name": "moe.", "description": "Moe (stylized as moe.) is an American jam rock band, formed at the University at Buffalo in 1989. The band members are Rob Derhak (bass, vocals), Al Schnier (guitar, vocals, keyboard), Chuck Garvey (guitar, vocals), Vinnie Amico (drums), Jim Loughlin (percussion) and Nate Wilson (keyboard).\n\nThe band's first record, Fatboy (1992), established the band as a favorite of the 1990s jam band and improvisational rock scene, which grew in popularity with the rise of bands such as Phish and Widespread Panic.\n\nMoe toured with the Furthur Festival in 1997, appeared at Woodstock '99, played Summerstage at the Rumsey Playfield in Central Park, opened for The Allman Brothers and The Who, performed at Radio City Music Hall on New Year's Eve 2006 and returned there for New Year's Eve 2007. They have also performed at Bonnaroo Music Festival five times (2002, 2003, 2004, 2006, and 2009).[2]", "links": {"website": ["https://moe.org/"], "subreddit": ["moeperiod"]}, "path": {"250-258, T": [[469, -46], [491, -46], [491, -40], [469, -40]]}, "center": {"250-258, T": [480, -43]}}, +{"id": 3474, "name": "Luzu", "description": "Luzu, es un youtuber, vlogger y streamer de nacionalidad española, conocido por participar en la velada del año II y III, igualmente es conocido por ser miembro en series como Karmaland y QSMP. Dicha pieza fue realizada por su comunidad conocida como #TeamLuzu.", "links": {"website": ["https://www.twitch.tv/luzu"]}, "path": {"250-258, T": [[571, 548], [579, 548], [579, 588], [572, 588]]}, "center": {"250-258, T": [575, 552]}}, +{"id": 3475, "name": "H E X E D", "description": "H E X E D is a Group of a few Germans and 2 Developers who create clients in Games\n\nShoutout to : Umbra , Saya , Keith , StupidGoat , Bigsmoke , Marius etc for creating this Art.", "links": {"website": ["https://logout.rip", "https://umbra.rest/", "https://Keith-drinks.vodka", "https://notsaya.de/"]}, "path": {"250-258, T": [[1476, -680], [1498, -680], [1498, -673], [1476, -673]]}, "center": {"250-258, T": [1487, -676]}}, +{"id": 3476, "name": "Anya Forger", "description": "Anya Forger from anime Spy x Family", "links": {"subreddit": ["SpyxFamily"]}, "path": {"250-258, T": [[1174, -744], [1191, -744], [1191, -755], [1190, -755], [1190, -759], [1186, -759], [1186, -760], [1183, -760], [1183, -762], [1179, -762], [1179, -760], [1178, -760], [1178, -759], [1175, -759], [1175, -755], [1174, -755]]}, "center": {"250-258, T": [1182, -752]}}, {"id": 3477, "name": "Chicos Karmaland", "description": "Referencia de todos los participantes (Vegetta777, Willyrex, StaXx, Luzu, Alexby11,Rubius, xfarganx, Lolito, Mangel, Auronplay, Quackity, Maximus\"sapopeta\" e illojuan) de la gran serie de Minecraft \"Karmaland\"(creada por los YouTubers Vegetta777 y Willyrex).", "links": {}, "path": {"252-258": [[187, 607], [187, 616], [292, 616], [292, 607]]}, "center": {"252-258": [240, 612]}}, -{"id": 3478, "name": "Liegestuhl mit Handtuch", "description": "\"Liegestuhl mit Handtuch\" is a German stereotype for occupying lounge chairs while on vacation.", "links": {"website": ["https://de.wikipedia.org/wiki/Belegen_von_Liegest%C3%BChlen"], "subreddit": ["placeNL", "placeDE"]}, "path": {"196-259": [[-398, -548], [-413, -502], [-389, -501], [-386, -512], [-375, -512], [-379, -530], [-374, -548]]}, "center": {"196-259": [-391, -525]}}, -{"id": 3479, "name": "Sparklecare Logo", "description": "The logo of the eponymous hospital from the webcomic Sparklecare.", "links": {"website": ["https://www.sparklecarehospital.com/"], "subreddit": ["sparklecare"]}, "path": {"249-258": [[-893, 761], [-893, 770], [-884, 770], [-884, 761]]}, "center": {"249-258": [-888, 766]}}, -{"id": 3480, "name": "Five pebbles", "description": "Five pebbles is an iterator from indie game rainworld", "links": {"website": ["https://rainworld.miraheze.org/wiki/Rain_World_Wiki"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258": [[-1261, 239], [-1268, 240], [-1272, 254], [-1268, 260], [-1270, 260], [-1271, 261], [-1271, 263], [-1270, 266], [-1260, 267], [-1255, 267], [-1254, 253], [-1255, 241]]}, "center": {"250-258": [-1263, 252]}}, -{"id": 3481, "name": "PG (colombia)-Gibbogialloblù and Porchettav", "description": "Still a homage to pg but this time in colombia", "links": {"website": ["https://www.youtube.com/@gibbogialloblu1171"]}, "path": {"250-258": [[-904, 792], [-909, 792], [-909, 789], [-904, 789]]}, "center": {"250-258": [-906, 791]}}, -{"id": 3482, "name": "Orelsan (Artist)", "description": "The flag of Orelsan, a prominent French rapper, songwriter, and director, is subtly incorporated into the One Piece pixel art on the r/place canvas.\n\nOrelsan, known for his profound lyrics and unique storytelling, has left a significant mark on the French music scene. His influence extends beyond music, making him an emblem of modern French pop culture. His flag's inclusion in the pixel art of One Piece, a widely celebrated Japanese manga series, highlights the cross-cultural dialogues and shared appreciation for various forms of artistic expression among the r/place community.", "links": {"website": ["https://en.wikipedia.org/wiki/Orelsan", "https://en.wikipedia.org/wiki/Civilisation_(album)"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"174-258": [[-901, 208], [-897, 207], [-892, 199], [-889, 203], [-880, 209], [-884, 209], [-889, 220], [-891, 220], [-892, 216], [-900, 212]]}, "center": {"174-258": [-891, 209]}}, -{"id": 3483, "name": "Il Tempo Gigante", "description": "Fictional race car belonging to Reodor Felgen, a protagonist of Norwegian 1975 stop-motion animation movie Flåklypa Grand Prix by Ivo Caprino and Kjell Aukrust.\n\n\"Den bil genial\" - Sjeik Ben Redik Fy Fasan", "links": {"website": ["https://no.wikipedia.org/wiki/Fl%C3%A5klypa_Grand_Prix"]}, "path": {"250-258": [[-122, -298], [-122, -285], [-116, -279], [-67, -279], [-68, -287], [-74, -290], [-95, -294], [-103, -296], [-103, -301], [-107, -303], [-113, -302], [-121, -299], [-122, -296]]}, "center": {"250-258": [-111, -289]}}, -{"id": 3484, "name": "HD Zuzka", "description": "\"HD\" meme version of Slovak president Zuzana Čaputová.", "links": {}, "path": {"250-258": [[-157, 546], [-154, 545], [-151, 545], [-149, 546], [-149, 553], [-157, 553]]}, "center": {"250-258": [-153, 549]}}, +{"id": 3478, "name": "Liegestuhl mit Handtuch", "description": "\"Liegestuhl mit Handtuch\" is a German stereotype for occupying lounge chairs while on vacation.", "links": {"website": ["https://de.wikipedia.org/wiki/Belegen_von_Liegest%C3%BChlen"], "subreddit": ["placeNL", "placeDE"]}, "path": {"196-259, T": [[-398, -548], [-413, -502], [-389, -501], [-386, -512], [-375, -512], [-379, -530], [-374, -548]]}, "center": {"196-259, T": [-391, -525]}}, +{"id": 3479, "name": "Sparklecare Logo", "description": "The logo of the eponymous hospital from the webcomic Sparklecare.", "links": {"website": ["https://www.sparklecarehospital.com/"], "subreddit": ["sparklecare"]}, "path": {"249-258, T": [[-893, 761], [-893, 770], [-884, 770], [-884, 761]]}, "center": {"249-258, T": [-888, 766]}}, +{"id": 3480, "name": "Five pebbles", "description": "Five pebbles is an iterator from indie game rainworld", "links": {"website": ["https://rainworld.miraheze.org/wiki/Rain_World_Wiki"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258, T": [[-1261, 239], [-1268, 240], [-1272, 254], [-1268, 260], [-1270, 260], [-1271, 261], [-1271, 263], [-1270, 266], [-1260, 267], [-1255, 267], [-1254, 253], [-1255, 241]]}, "center": {"250-258, T": [-1263, 252]}}, +{"id": 3481, "name": "PG (colombia)-Gibbogialloblù and Porchettav", "description": "Still a homage to pg but this time in colombia", "links": {"website": ["https://www.youtube.com/@gibbogialloblu1171"]}, "path": {"250-258, T": [[-904, 792], [-909, 792], [-909, 789], [-904, 789]]}, "center": {"250-258, T": [-906, 791]}}, +{"id": 3482, "name": "Orelsan (Artist)", "description": "The flag of Orelsan, a prominent French rapper, songwriter, and director, is subtly incorporated into the One Piece pixel art on the r/place canvas.\n\nOrelsan, known for his profound lyrics and unique storytelling, has left a significant mark on the French music scene. His influence extends beyond music, making him an emblem of modern French pop culture. His flag's inclusion in the pixel art of One Piece, a widely celebrated Japanese manga series, highlights the cross-cultural dialogues and shared appreciation for various forms of artistic expression among the r/place community.", "links": {"website": ["https://en.wikipedia.org/wiki/Orelsan", "https://en.wikipedia.org/wiki/Civilisation_(album)"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"174-258, T": [[-901, 208], [-897, 207], [-892, 199], [-889, 203], [-880, 209], [-884, 209], [-889, 220], [-891, 220], [-892, 216], [-900, 212]]}, "center": {"174-258, T": [-891, 209]}}, +{"id": 3483, "name": "Il Tempo Gigante", "description": "Fictional race car belonging to Reodor Felgen, a protagonist of Norwegian 1975 stop-motion animation movie Flåklypa Grand Prix by Ivo Caprino and Kjell Aukrust.\n\n\"Den bil genial\" - Sjeik Ben Redik Fy Fasan", "links": {"website": ["https://no.wikipedia.org/wiki/Fl%C3%A5klypa_Grand_Prix"]}, "path": {"250-258, T": [[-122, -298], [-122, -285], [-116, -279], [-67, -279], [-68, -287], [-74, -290], [-95, -294], [-103, -296], [-103, -301], [-107, -303], [-113, -302], [-121, -299], [-122, -296]]}, "center": {"250-258, T": [-111, -289]}}, +{"id": 3484, "name": "HD Zuzka", "description": "\"HD\" meme version of Slovak president Zuzana Čaputová.", "links": {}, "path": {"250-258, T": [[-157, 546], [-154, 545], [-151, 545], [-149, 546], [-149, 553], [-157, 553]]}, "center": {"250-258, T": [-153, 549]}}, {"id": 3485, "name": "aespa", "description": "aespa ,one of the best girl groups, is a South Korean girl group formed by SM Entertainment. The group consists of four members: Karina, Giselle, Winter, and Ningning. They debuted on November 17, 2020, with the single \"Black Mamba\".", "links": {"website": ["https://www.instagram.com/aespa_official"]}, "path": {"222": [[-110, -884], [-98, -884], [-98, -878], [-110, -878]]}, "center": {"222": [-104, -881]}}, {"id": 3486, "name": "Nicholas D. Wolfwood", "description": "Drawing of Nicholas D. Wolfwood, also known as Nicholas the Punisher, major character in the Trigun series.", "links": {"website": ["https://en.wikipedia.org/wiki/Trigun"], "subreddit": ["Trigun"]}, "path": {"244-249": [[1339, -392], [1351, -392], [1352, -400], [1350, -409], [1342, -409], [1336, -402], [1339, -399]]}, "center": {"244-249": [1345, -401]}}, -{"id": 3487, "name": "They Might Be Giants", "description": "They Might Be Giants (TMBG) is an American alternative rock band formed in 1982 by John Flansburgh and John Linnell.\n\nThis artwork depicts \"The Scientist Johns\", cartoon versions of Flansburgh and Linnell. The Scientist Johns were used to host the DVD for the 2009 album \"Here Comes Science\" and the podcast \"Podcast 39\".", "links": {"website": ["https://www.theymightbegiants.com", "https://en.wikipedia.org/wiki/They_Might_Be_Giants", "https://tmbw.net/wiki/The_Scientist_Johns"], "subreddit": ["tmbg"]}, "path": {"171-258": [[319, 13], [319, 18], [320, 19], [320, 20], [321, 21], [327, 21], [330, 18], [330, 16], [329, 16], [328, 15], [328, 13], [327, 12], [326, 12], [325, 13], [324, 13], [323, 14], [322, 14], [321, 13], [320, 12]]}, "center": {"171-258": [325, 17]}}, -{"id": 3488, "name": "r/redrising", "description": "Imagery from the popular book series \"red rising.\" Fans of the series call themselves \"howlers\" and this is the howler logo.", "links": {"website": ["https://www.piercebrown.com/redrisingsaga"], "subreddit": ["redrising"], "discord": ["38h3Jtrm"]}, "path": {"120-258": [[-822, 481], [-806, 481], [-806, 498], [-806, 499], [-821, 499]]}, "center": {"120-258": [-814, 490]}}, -{"id": 3489, "name": "German boy and Dutch girl", "description": "Collaboration between Germany and the Netherlands. Depicting a stereotypically German boy and Dutch girl that are having a flirting moment, namely the German boy is shoving the girl against a wall.", "links": {"website": ["https://nl.wikipedia.org/wiki/Frau_Antje", "https://nl.wikipedia.org/wiki/Lederhose", "https://en.wikipedia.org/wiki/Kabedon"], "subreddit": ["placede", "placenl"]}, "path": {"247-252": [[1279, -390], [1284, -428], [1279, -437], [1295, -466], [1313, -470], [1314, -472], [1311, -478], [1311, -484], [1309, -490], [1315, -497], [1320, -498], [1326, -504], [1333, -503], [1339, -502], [1373, -503], [1383, -502], [1385, -481], [1380, -476], [1381, -451], [1376, -444], [1380, -414], [1366, -390], [1279, -389]]}, "center": {"247-252": [1334, -433]}}, -{"id": 3490, "name": "Spearmaster", "description": "a playable character from indie game rainworld", "links": {"website": ["https://rainworld.miraheze.org/wiki/Spearmaster"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258": [[-1265, 241], [-1266, 239], [-1268, 242], [-1267, 246], [-1265, 244], [-1264, 243], [-1263, 244], [-1263, 241], [-1263, 240]]}, "center": {"250-258": [-1266, 242]}}, +{"id": 3487, "name": "They Might Be Giants", "description": "They Might Be Giants (TMBG) is an American alternative rock band formed in 1982 by John Flansburgh and John Linnell.\n\nThis artwork depicts \"The Scientist Johns\", cartoon versions of Flansburgh and Linnell. The Scientist Johns were used to host the DVD for the 2009 album \"Here Comes Science\" and the podcast \"Podcast 39\".", "links": {"website": ["https://www.theymightbegiants.com", "https://en.wikipedia.org/wiki/They_Might_Be_Giants", "https://tmbw.net/wiki/The_Scientist_Johns"], "subreddit": ["tmbg"]}, "path": {"171-258, T": [[319, 13], [319, 18], [320, 19], [320, 20], [321, 21], [327, 21], [330, 18], [330, 16], [329, 16], [328, 15], [328, 13], [327, 12], [326, 12], [325, 13], [324, 13], [323, 14], [322, 14], [321, 13], [320, 12]]}, "center": {"171-258, T": [325, 17]}}, +{"id": 3488, "name": "r/redrising", "description": "Imagery from the popular book series \"red rising.\" Fans of the series call themselves \"howlers\" and this is the howler logo.", "links": {"website": ["https://www.piercebrown.com/redrisingsaga"], "subreddit": ["redrising"], "discord": ["38h3Jtrm"]}, "path": {"120-258, T": [[-822, 481], [-806, 481], [-806, 498], [-806, 499], [-821, 499]]}, "center": {"120-258, T": [-814, 490]}}, +{"id": 3489, "name": "German boy and Dutch girl", "description": "Collaboration between Germany and the Netherlands. Depicting a stereotypically German boy and Dutch girl that are having a flirting moment, namely the German boy is shoving the girl against a wall.", "links": {"website": ["https://nl.wikipedia.org/wiki/Frau_Antje", "https://nl.wikipedia.org/wiki/Lederhose", "https://en.wikipedia.org/wiki/Kabedon"], "subreddit": ["placede", "placenl"]}, "path": {"247-252, T": [[1279, -390], [1284, -428], [1279, -437], [1295, -466], [1313, -470], [1314, -472], [1311, -478], [1311, -484], [1309, -490], [1315, -497], [1320, -498], [1326, -504], [1333, -503], [1339, -502], [1373, -503], [1383, -502], [1385, -481], [1380, -476], [1381, -451], [1376, -444], [1380, -414], [1366, -390], [1279, -389]]}, "center": {"247-252, T": [1334, -433]}}, +{"id": 3490, "name": "Spearmaster", "description": "a playable character from indie game rainworld", "links": {"website": ["https://rainworld.miraheze.org/wiki/Spearmaster"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258, T": [[-1265, 241], [-1266, 239], [-1268, 242], [-1267, 246], [-1265, 244], [-1264, 243], [-1263, 244], [-1263, 241], [-1263, 240]]}, "center": {"250-258, T": [-1266, 242]}}, {"id": 3491, "name": "Red Velvet's 'R to V' Logo, Void Sneak", "description": "A logo from the K-Pop group Red Velvet's 4th concert tour.\n\nThis logo was snuck in by Reveluvs who fought back against the onslaught of amoongus trying to invade. The creators wonder if r/Voids even noticed..", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"206-222": [[843, 65], [839, 71], [838, 77], [840, 80], [854, 80], [854, 67], [847, 65]]}, "center": {"206-222": [847, 73]}}, {"id": 3492, "name": "Quantum Moon", "description": "The Quantum Moon is a moon from the game Outer Wilds that changes location when it stops being observed.\n\nThe Quantum Moon was drawn at different places at different times around r/place. Don't blink or you'll miss it!", "links": {"subreddit": ["outerwilds"]}, "path": {"212": [[725, 992], [728, 992], [728, 994], [726, 994]]}, "center": {"212": [727, 993]}}, {"id": 3493, "name": "Louis and Sheila", "description": "Characters from the Gacha series \"El Programa PIMT\" by the youtuber Cerri22 PG", "links": {"website": ["https://www.youtube.com/@Cerri22_pg"]}, "path": {"243": [[16, -943], [22, -943], [22, -942], [23, -942], [23, -941], [24, -941], [24, -938], [23, -938], [23, -937], [24, -937], [24, -936], [24, -933], [24, -925], [13, -925], [13, -931], [14, -931], [14, -934], [13, -934], [14, -937]]}, "center": {"243": [19, -930]}}, -{"id": 3494, "name": "Wilbur Soot's Logo", "description": "The logo of Twitch streamer and musician Wilbur Soot.", "links": {"website": ["https://www.twitch.tv/wilbursoot"], "subreddit": ["wilbursoot"], "discord": ["wilbur"]}, "path": {"250-258": [[645, 465], [645, 438], [673, 438], [673, 465]]}, "center": {"250-258": [659, 452]}}, +{"id": 3494, "name": "Wilbur Soot's Logo", "description": "The logo of Twitch streamer and musician Wilbur Soot.", "links": {"website": ["https://www.twitch.tv/wilbursoot"], "subreddit": ["wilbursoot"], "discord": ["wilbur"]}, "path": {"250-258, T": [[645, 465], [645, 438], [673, 438], [673, 465]]}, "center": {"250-258, T": [659, 452]}}, {"id": 3495, "name": "L'Manburg Flag", "description": "A vertical version of the official flag of the aforementioned European-inspired fictional nation by Wilbur Soot way in 2020, whose numbers above it depict said nation's founding date. The original version of the final turf design, designed by user theJWPHTER88, also included a shortened date of its eventual fall, as well as a more elaborate, ancient wooden background.", "links": {"subreddit": ["placelmanburg"], "discord": ["KQYcX3DabP"]}, "path": {"255-258": [[581, 549], [599, 549], [599, 582], [581, 582]]}, "center": {"255-258": [590, 566]}}, -{"id": 3496, "name": "Nepeta", "description": "The character Nepeta Leijon from the webcomic Homestuck, dressed in German colors", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258": [[-657, -913], [-652, -913], [-651, -933], [-636, -933], [-635, -920], [-640, -920], [-639, -914], [-638, -913], [-638, -911], [-657, -911]]}, "center": {"250-258": [-644, -926]}}, -{"id": 3497, "name": "Hilda", "description": "Hilda is a comic & a Netflix animated series created by Luke Pearson.\n\nIt follows the adventures of an 11-year-old blue-haired girl named Hilda, who moves to the fictional city of Trolberg with her mother Johanna and her deerfox Twig after their old residency in the outskirts of a forest is destroyed by a giant. Hilda has a knack for befriending the magical creatures that populate her world, and she must learn to make friends with humans as well.\n\nThis art features the character Hilda and Twig.", "links": {"website": ["https://flyingeyebooks.com/hilda/", "https://www.netflix.com/title/80115346", "https://hildatheseries.fandom.com"], "subreddit": ["HildaTheSeries"], "discord": ["hilda"]}, "path": {"250-258": [[1093, -846], [1110, -846], [1110, -822], [1093, -822]]}, "center": {"250-258": [1102, -834]}}, -{"id": 3498, "name": "AriGameplays", "description": "This design represents Arigameplays, she is a popular female mexican youtuber and streamer which is also a beautiful and talented woman, great in videogames, expert boxer, forceful dancer, a magazine clothes model, sometimes a presenter and a professional actress and have participated in huge events of the hispanic community such as Tortilland, squidcraft games and La Velada del Año II and III for saying a few. Her community is called Papuritos for her popular dance Papure and they did this for her with so much love.", "links": {"website": ["https://www.twitch.tv/arigameplays", "https://twitter.com/arigameplays", "https://www.instagram.com/arigameplays/"], "discord": ["arigameplays"]}, "path": {"109-259": [[461, -288], [476, -288], [475, -302], [461, -302], [461, -301]]}, "center": {"109-259": [468, -295]}}, -{"id": 3499, "name": "Mr. Oizo", "description": "Mr. Oizo alias Quentin Dupieux is a French filmmaker, electronic musician, and DJ. He is famous to had filming Rubber (2010), Reality (2014) and more recently Smoking Causes Coughing (2022)", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"178-258": [[-501, 78], [-501, 88], [-492, 88], [-492, 78], [-487, 78], [-488, 73], [-494, 68], [-501, 68]]}, "center": {"178-258": [-496, 74]}}, -{"id": 3500, "name": "Pudzy", "description": "The official mascot of PuddingsUtopia. Pudzy is a pudding robot that was created by the moderators of PuddingsUtopia and to interact with the users and help anyone that needs for it.", "links": {"subreddit": ["PuddingsUtopia"], "discord": ["pudding-s-utopia-524748755208241152"]}, "path": {"250-258": [[-354, -911], [-343, -911], [-343, -894], [-354, -894], [-354, -902]]}, "center": {"250-258": [-348, -902]}}, +{"id": 3496, "name": "Nepeta", "description": "The character Nepeta Leijon from the webcomic Homestuck, dressed in German colors", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258, T": [[-657, -913], [-652, -913], [-651, -933], [-636, -933], [-635, -920], [-640, -920], [-639, -914], [-638, -913], [-638, -911], [-657, -911]]}, "center": {"250-258, T": [-644, -926]}}, +{"id": 3497, "name": "Hilda", "description": "Hilda is a comic & a Netflix animated series created by Luke Pearson.\n\nIt follows the adventures of an 11-year-old blue-haired girl named Hilda, who moves to the fictional city of Trolberg with her mother Johanna and her deerfox Twig after their old residency in the outskirts of a forest is destroyed by a giant. Hilda has a knack for befriending the magical creatures that populate her world, and she must learn to make friends with humans as well.\n\nThis art features the character Hilda and Twig.", "links": {"website": ["https://flyingeyebooks.com/hilda/", "https://www.netflix.com/title/80115346", "https://hildatheseries.fandom.com"], "subreddit": ["HildaTheSeries"], "discord": ["hilda"]}, "path": {"250-258, T": [[1093, -846], [1110, -846], [1110, -822], [1093, -822]]}, "center": {"250-258, T": [1102, -834]}}, +{"id": 3498, "name": "AriGameplays", "description": "This design represents Arigameplays, she is a popular female mexican youtuber and streamer which is also a beautiful and talented woman, great in videogames, expert boxer, forceful dancer, a magazine clothes model, sometimes a presenter and a professional actress and have participated in huge events of the hispanic community such as Tortilland, squidcraft games and La Velada del Año II and III for saying a few. Her community is called Papuritos for her popular dance Papure and they did this for her with so much love.", "links": {"website": ["https://www.twitch.tv/arigameplays", "https://twitter.com/arigameplays", "https://www.instagram.com/arigameplays/"], "discord": ["arigameplays"]}, "path": {"109-259, T": [[461, -288], [476, -288], [475, -302], [461, -302], [461, -301]]}, "center": {"109-259, T": [468, -295]}}, +{"id": 3499, "name": "Mr. Oizo", "description": "Mr. Oizo alias Quentin Dupieux is a French filmmaker, electronic musician, and DJ. He is famous to had filming Rubber (2010), Reality (2014) and more recently Smoking Causes Coughing (2022)", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"178-258, T": [[-501, 78], [-501, 88], [-492, 88], [-492, 78], [-487, 78], [-488, 73], [-494, 68], [-501, 68]]}, "center": {"178-258, T": [-496, 74]}}, +{"id": 3500, "name": "Pudzy", "description": "The official mascot of PuddingsUtopia. Pudzy is a pudding robot that was created by the moderators of PuddingsUtopia and to interact with the users and help anyone that needs for it.", "links": {"subreddit": ["PuddingsUtopia"], "discord": ["pudding-s-utopia-524748755208241152"]}, "path": {"250-258, T": [[-354, -911], [-343, -911], [-343, -894], [-354, -894], [-354, -902]]}, "center": {"250-258, T": [-348, -902]}}, {"id": 3501, "name": "K-Pop Place West Block", "description": "K-Pop fans\n\nBTS' Love Yourself Album (created by r/bangtan), Stray Kids Bong, ()i-dle's i들, TXT, Mamamoo's Moobong, Odd Eye Circle's ODD, Pink Fantasy, Seventeen, Moonbin Memorial, Blackpink Bong, Red Velvet's ReVe Robot, IU & Dreamcatcher", "links": {"discord": ["rhNry9hJ2J"]}, "path": {"143-169": [[-686, -117], [-684, -117], [-684, -141], [-661, -140], [-661, -80], [-684, -80], [-684, -85], [-685, -85], [-685, -90], [-682, -93], [-681, -98], [-686, -103], [-686, -117], [-684, -117], [-684, -118]]}, "center": {"143-169": [-673, -110]}}, -{"id": 3502, "name": "Normand Flag", "description": "The 2 leopards that used to be 3 .\n\nThe third apparently symbolised the guernesey and jersey islands that were lost to the english invaders, or so the legends say ...", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_and_coat_of_arms_of_Normandy"]}, "path": {"250-258": [[-404, 278], [-404, 273], [-412, 273], [-412, 278]]}, "center": {"250-258": [-408, 276]}}, -{"id": 3503, "name": "Diego 'DIO' Brando (Jojo's Part 7)", "description": "A recurring minor antagonist of Jojo's Bizarre Adventure Part 7: Steel Ball Run\n\nStand: Scary Monsters\n\n\"I'll climb to the top of society! If anybody gets in my way, I'll put them through humiliation worse than getting stew in their shoes! I'll slash through their pride and scatter it on the ground!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1149, -116], [-1144, -117], [-1142, -111], [-1144, -108], [-1148, -108], [-1149, -114], [-1147, -117]]}, "center": {"250-258": [-1146, -112]}}, +{"id": 3502, "name": "Normand Flag", "description": "The 2 leopards that used to be 3 .\n\nThe third apparently symbolised the guernesey and jersey islands that were lost to the english invaders, or so the legends say ...", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_and_coat_of_arms_of_Normandy"]}, "path": {"250-258, T": [[-404, 278], [-404, 273], [-412, 273], [-412, 278]]}, "center": {"250-258, T": [-408, 276]}}, +{"id": 3503, "name": "Diego 'DIO' Brando (Jojo's Part 7)", "description": "A recurring minor antagonist of Jojo's Bizarre Adventure Part 7: Steel Ball Run\n\nStand: Scary Monsters\n\n\"I'll climb to the top of society! If anybody gets in my way, I'll put them through humiliation worse than getting stew in their shoes! I'll slash through their pride and scatter it on the ground!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1149, -116], [-1144, -117], [-1142, -111], [-1144, -108], [-1148, -108], [-1149, -114], [-1147, -117]]}, "center": {"250-258, T": [-1146, -112]}}, {"id": 3504, "name": "DonKaaklijn", "description": "DonKaaklijn is a Dutch Twitch streamer.", "links": {"website": ["https://twitch.tv/donkaaklijn"], "subreddit": ["DonKaaklijn"], "discord": ["akbBTex"]}, "path": {"247": [[747, -1000], [747, -972], [814, -972], [814, -1000]]}, "center": {"247": [781, -986]}}, -{"id": 3505, "name": "Bruno Bucciarati (Jojo's Part 5)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind\n\nStand: Sticky Fingers\n\n\"ARI ARI ARI- ARRIVEDERCI!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1200, -98], [-1196, -98], [-1196, -93], [-1198, -90], [-1200, -90], [-1201, -94], [-1201, -98]]}, "center": {"250-258": [-1198, -95]}}, -{"id": 3506, "name": "Rohan Kishibe (Jojo's Part 4)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable.\n\nStand: Heaven's Door\n\n\"... I REFUSE! One of the things I, Rohan Kishibe, like the most is to find someone who thinks they're some hot shit, and say 'No' right to their faces!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1195, -83], [-1191, -84], [-1190, -78], [-1191, -76], [-1195, -76], [-1197, -82], [-1194, -84]]}, "center": {"250-258": [-1193, -80]}}, +{"id": 3505, "name": "Bruno Bucciarati (Jojo's Part 5)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind\n\nStand: Sticky Fingers\n\n\"ARI ARI ARI- ARRIVEDERCI!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1200, -98], [-1196, -98], [-1196, -93], [-1198, -90], [-1200, -90], [-1201, -94], [-1201, -98]]}, "center": {"250-258, T": [-1198, -95]}}, +{"id": 3506, "name": "Rohan Kishibe (Jojo's Part 4)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable.\n\nStand: Heaven's Door\n\n\"... I REFUSE! One of the things I, Rohan Kishibe, like the most is to find someone who thinks they're some hot shit, and say 'No' right to their faces!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1195, -83], [-1191, -84], [-1190, -78], [-1191, -76], [-1195, -76], [-1197, -82], [-1194, -84]]}, "center": {"250-258, T": [-1193, -80]}}, {"id": 3507, "name": "Vineshroom", "description": "The mushroom icon for streamer group Vinesauce", "links": {"website": ["https://vinesauce.com/"]}, "path": {"252-258": [[413, -1000], [413, -992], [407, -992], [407, -1000]]}, "center": {"252-258": [410, -996]}}, -{"id": 3508, "name": "AnsiChan", "description": "AnsiChan is a Colombian youtuber and streamer, this figure was made to show appreciation for helping the Colombian community in the r/place.", "links": {"website": ["https://www.twitch.tv/ansichan", "https://www.youtube.com/@AnsiChan", "https://www.instagram.com/ansichann", "https://www.tiktok.com/@ansichu_"], "subreddit": ["ansichan"], "discord": ["AnsiChan"]}, "path": {"170-258": [[-995, 969], [-995, 967], [-997, 967], [-997, 965], [-996, 965], [-996, 961], [-997, 961], [-997, 959], [-995, 959], [-995, 957], [-989, 957], [-989, 965], [-988, 965], [-988, 967], [-990, 967], [-990, 969]]}, "center": {"170-258": [-992, 963]}}, -{"id": 3509, "name": "Fear and Hunger Girl and Chibi peeps", "description": "The little girl from the game Fear and Hunger holding her peculiar doll\n\nShe is in good company with her friends, the chibi forms of all the playable/recruitable characters of the game, surrounding her\n\nNotice to their left, the girl's deadbeat dad and passion object to D'arce, the King in Yellow, Le'garde (not actually him)", "links": {"website": ["https://store.steampowered.com/agecheck/app/1002300/"], "subreddit": ["FearAndHunger"]}, "path": {"250-258": [[958, 153], [989, 153], [989, 196], [991, 196], [992, 214], [958, 215], [958, 183]]}, "center": {"250-258": [974, 169]}}, -{"id": 3510, "name": "Kawashiro Nitori", "description": "Side character from Touhou Project. First appear in Touhou 10 : Mountain of Faith as the 3rd stage boss.", "links": {"subreddit": ["touhou"]}, "path": {"205-258": [[-1425, -686], [-1418, -692], [-1410, -692], [-1404, -687], [-1405, -679], [-1408, -672], [-1409, -671], [-1422, -671]]}, "center": {"205-258": [-1414, -682]}}, -{"id": 3511, "name": "Bunny from Paquerette Down the Bunburrows, donning a Stormtrooper mask", "description": "A bunny from the game titled \"Paquerette Down the Bunburrows,\" donning a Stormtrooper mask from Star Wars to fit in with the theme.", "links": {"website": ["https://twitter.com/BunstackGames"], "subreddit": ["bunburrows"], "discord": ["phGXxPp"]}, "path": {"250-258": [[1112, -683], [1100, -683], [1100, -671], [1112, -671]]}, "center": {"250-258": [1106, -677]}}, +{"id": 3508, "name": "AnsiChan", "description": "AnsiChan is a Colombian youtuber and streamer, this figure was made to show appreciation for helping the Colombian community in the r/place.", "links": {"website": ["https://www.twitch.tv/ansichan", "https://www.youtube.com/@AnsiChan", "https://www.instagram.com/ansichann", "https://www.tiktok.com/@ansichu_"], "subreddit": ["ansichan"], "discord": ["AnsiChan"]}, "path": {"170-258, T": [[-995, 969], [-995, 967], [-997, 967], [-997, 965], [-996, 965], [-996, 961], [-997, 961], [-997, 959], [-995, 959], [-995, 957], [-989, 957], [-989, 965], [-988, 965], [-988, 967], [-990, 967], [-990, 969]]}, "center": {"170-258, T": [-992, 963]}}, +{"id": 3509, "name": "Fear and Hunger Girl and Chibi peeps", "description": "The little girl from the game Fear and Hunger holding her peculiar doll\n\nShe is in good company with her friends, the chibi forms of all the playable/recruitable characters of the game, surrounding her\n\nNotice to their left, the girl's deadbeat dad and passion object to D'arce, the King in Yellow, Le'garde (not actually him)", "links": {"website": ["https://store.steampowered.com/agecheck/app/1002300/"], "subreddit": ["FearAndHunger"]}, "path": {"250-258, T": [[958, 153], [989, 153], [989, 196], [991, 196], [992, 214], [958, 215], [958, 183]]}, "center": {"250-258, T": [974, 169]}}, +{"id": 3510, "name": "Kawashiro Nitori", "description": "Side character from Touhou Project. First appear in Touhou 10 : Mountain of Faith as the 3rd stage boss.", "links": {"subreddit": ["touhou"]}, "path": {"205-258, T": [[-1425, -686], [-1418, -692], [-1410, -692], [-1404, -687], [-1405, -679], [-1408, -672], [-1409, -671], [-1422, -671]]}, "center": {"205-258, T": [-1414, -682]}}, +{"id": 3511, "name": "Bunny from Paquerette Down the Bunburrows, donning a Stormtrooper mask", "description": "A bunny from the game titled \"Paquerette Down the Bunburrows,\" donning a Stormtrooper mask from Star Wars to fit in with the theme.", "links": {"website": ["https://twitter.com/BunstackGames"], "subreddit": ["bunburrows"], "discord": ["phGXxPp"]}, "path": {"250-258, T": [[1112, -683], [1100, -683], [1100, -671], [1112, -671]]}, "center": {"250-258, T": [1106, -677]}}, {"id": 3512, "name": "Morrog", "description": "Morrog is a Dutch Twitch streamer.", "links": {"website": ["https://twitch.tv/morrog"], "discord": ["NMXEfRN"]}, "path": {"247": [[679, -1000], [747, -1000], [747, -972], [679, -972]]}, "center": {"247": [713, -986]}}, -{"id": 3513, "name": "Troupial", "description": "is the national bird of Venezuela. It is found in Colombia, Venezuela, and the Caribbean islands of Aruba, Curaçao, Bonaire, Trinidad, and Puerto Rico. Together with the orange-backed troupial and campo troupial, it was previously part of a superspecies simply named the troupial that was split.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuelan_troupial"]}, "path": {"250-258": [[-879, 320], [-879, 290], [-851, 291], [-853, 319], [-878, 320]]}, "center": {"250-258": [-866, 305]}}, -{"id": 3514, "name": "Yuru CampΔ Tent", "description": "A logo used in the Yuru CampΔ anime and manga.", "links": {"website": ["https://myanimelist.net/anime/34798/Yuru_Camp"], "subreddit": ["laidbackcamp"], "discord": ["laidback-camp"]}, "path": {"210-258": [[-198, 935], [-192, 925], [-184, 938], [-198, 938]]}, "center": {"210-258": [-192, 934]}}, +{"id": 3513, "name": "Troupial", "description": "is the national bird of Venezuela. It is found in Colombia, Venezuela, and the Caribbean islands of Aruba, Curaçao, Bonaire, Trinidad, and Puerto Rico. Together with the orange-backed troupial and campo troupial, it was previously part of a superspecies simply named the troupial that was split.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuelan_troupial"]}, "path": {"250-258, T": [[-879, 320], [-879, 290], [-851, 291], [-853, 319], [-878, 320]]}, "center": {"250-258, T": [-866, 305]}}, +{"id": 3514, "name": "Yuru CampΔ Tent", "description": "A logo used in the Yuru CampΔ anime and manga.", "links": {"website": ["https://myanimelist.net/anime/34798/Yuru_Camp"], "subreddit": ["laidbackcamp"], "discord": ["laidback-camp"]}, "path": {"210-258, T": [[-198, 935], [-192, 925], [-184, 938], [-198, 938]]}, "center": {"210-258, T": [-192, 934]}}, {"id": 3515, "name": "ANR Egg", "description": "A character from an ending theme visual to Attack on Titan called Akatsuki no Requiem, often associated with a fan theory by the same name.", "links": {"subreddit": ["titanfolk"], "discord": ["VxsXpfYKcc"]}, "path": {"205-210": [[1176, 435], [1176, 425], [1177, 425], [1177, 422], [1178, 422], [1178, 420], [1179, 420], [1179, 418], [1180, 418], [1180, 415], [1181, 415], [1181, 414], [1183, 414], [1184, 413], [1185, 413], [1185, 411], [1184, 410], [1184, 409], [1183, 409], [1183, 401], [1185, 403], [1186, 405], [1187, 403], [1188, 402], [1189, 400], [1189, 405], [1190, 405], [1191, 404], [1193, 404], [1194, 403], [1202, 403], [1203, 404], [1205, 404], [1206, 405], [1207, 405], [1208, 406], [1209, 408], [1210, 410], [1210, 431], [1211, 433], [1211, 438], [1198, 438], [1195, 437], [1193, 437], [1193, 439], [1188, 439], [1178, 439]]}, "center": {"205-210": [1195, 423]}}, -{"id": 3516, "name": "Battlefield One Airship History Youtubers", "description": "Another creation of the coalition between Sabaton, War Thunder, Powerwolf, and Battlefield 1, the main portion of this piece is that of the iconic Battlefield 1 behemoth Airship (sporting the German cross). The coalition also decided to add famous history channels \"Oversimplified\" (top left) and \"Alternate History Hub\" (top middle). Like the Metal Safe Haven (to the right/below) this piece could only have been made with the help of the Hololive community, who so graciously helped us claim the spot from U/Slab.", "links": {"website": ["https://www.youtube.com/channel/UCNIuvl7V8zACPpTmmNIqP2A", "https://www.youtube.com/@AlternateHistoryHub"], "subreddit": ["battlefield_one"]}, "path": {"250-258": [[-585, -368], [-563, -368], [-563, -353], [-585, -353]]}, "center": {"250-258": [-574, -360]}}, -{"id": 3517, "name": "ZAZA", "description": "Arte creado por Humberto, comunidad de ElMariana.", "links": {"subreddit": ["Elmariana"]}, "path": {"250-258": [[673, 520], [693, 520], [693, 548], [673, 548]]}, "center": {"250-258": [683, 534]}}, -{"id": 3518, "name": "Eve logo", "description": "This logo is often used by the japanese singer Eve to represent his works. It portrays one of his characters, Hitotsume-sama.", "links": {"website": ["https://www.youtube.com/channel/UCUXfRsEIJ9xO1DT7TbEWksw", "https://twitter.com/oO0Eve0Oo", "https://twitter.com/nonsense_eye"], "subreddit": ["e_ve"], "discord": ["eve"]}, "path": {"250-258": [[-338, 881], [-336, 881], [-336, 880], [-333, 880], [-333, 879], [-331, 879], [-331, 878], [-329, 878], [-329, 880], [-328, 880], [-328, 881], [-326, 881], [-326, 880], [-325, 880], [-325, 879], [-324, 879], [-324, 878], [-325, 878], [-325, 877], [-325, 876], [-322, 876], [-322, 875], [-319, 875], [-319, 874], [-318, 874], [-318, 873], [-318, 874], [-322, 874], [-322, 875], [-324, 875], [-324, 867], [-325, 867], [-325, 866], [-326, 866], [-326, 865], [-330, 865], [-330, 866], [-333, 866], [-333, 867], [-335, 867], [-335, 868], [-336, 868], [-336, 870], [-335, 870], [-335, 874], [-334, 874], [-334, 876], [-333, 876], [-333, 879], [-336, 879], [-336, 880], [-338, 880]]}, "center": {"250-258": [-329, 872]}}, -{"id": 3519, "name": "Comunidad Moai", "description": "Un moai representado a la comunidad de Twitch del canal de Rodik Sama, puesto que este es un elemento de humor y usado en memes en el propio canal", "links": {"website": ["https://www.twitch.tv/rodiksama", "https://www.youtube.com/@RodikSamaOficial"]}, "path": {"250-258": [[433, -303], [433, -285], [445, -285], [445, -303]]}, "center": {"250-258": [439, -294]}}, -{"id": 3520, "name": "The Metal Safe Haven", "description": "A tribute to metal bands made by the Sabaton, War Thunder, Battlefield 1, and Powerwolf Coalition. In the top right is the mascot of band Dio known as Murray (known for songs like \"Holy Diver\" and \"Caught in the Middle\"). Below him is the Powerwolf... well wolf (known for songs like \"Resurrection by Erection\" and \"Army of the Night\"). Below them is Manowar's \"Faceless Warrior\" (known for songs \"Battle Hymn\" and \"Warriors of the World\") giving a death stare at Nanowar of Steels Mr. Baffo (who sports his uniform from song Pasadena 1994). To their left is Alestorm's Captain Morgan (known for songs F*cked with an Anchor and P.A.R.T.Y.). Last but not least to his left is a half cut off Helloween's Keeper of the Seven Keys (there was no chance we were going to use Jack O). None of these bands would have made the final cut if it weren't for the actions of\u0001r/Hololive in paving their designs in the waning hours of Place.", "links": {"subreddit": ["battlefield_one", "Sabaton", "Powerwolf", "Warthunder"]}, "path": {"250-258": [[-584, -344], [-559, -344], [-557, -368], [-563, -368], [-563, -353], [-585, -353]]}, "center": {"250-258": [-568, -348]}}, -{"id": 3521, "name": "Luminy Award", "description": "Event that rewards streamers, influencers and content creators from Peru", "links": {}, "path": {"250-258": [[-1002, -741], [-1007, -735], [-1006, -732], [-1002, -732], [-1003, -730], [-1006, -729], [-1016, -728], [-1019, -724], [-1020, -721], [-1018, -718], [-1017, -713], [-1017, -708], [-1018, -704], [-1020, -700], [-1015, -696], [-1004, -696], [-991, -698], [-990, -702], [-991, -706], [-994, -707], [-994, -710], [-993, -714], [-993, -715], [-992, -717], [-992, -727], [-991, -731], [-993, -732], [-995, -738], [-997, -741], [-999, -743], [-1002, -745], [-1004, -745], [-1003, -742]]}, "center": {"250-258": [-1005, -717]}}, -{"id": 3522, "name": "Vash the Stampede", "description": "Drawing of Vash the Stampede from the anime Trigun Stampede, second and reimagined adaptation of the manga series Trigun by Yasuhiro Nightow.", "links": {"website": ["https://en.wikipedia.org/wiki/Trigun_Stampede"], "subreddit": ["Trigun"]}, "path": {"228-258": [[1218, -392], [1224, -392], [1227, -401], [1227, -406], [1221, -409], [1216, -409], [1215, -405], [1216, -402], [1215, -398]]}, "center": {"228-258": [1222, -402]}}, -{"id": 3523, "name": "El Salvador's Flag", "description": "Start of the Salvadorean flag beside and behind the Master Sword.\nThis period is mark by constant expansion and forging of alliances with surrounding communities, also depicted periods of constant war with \"Blue Ball\" right beside the triforce also several attack from random factions including spam bots that were defeated with help of our allies until the end.", "links": {"subreddit": ["ElSalvador"], "discord": ["fvy5cFSGp"]}, "path": {"128-155": [[-891, 457], [-891, 481], [-821, 481], [-821, 457], [-862, 457]], "156-258": [[-891, 457], [-891, 503], [-822, 502], [-821, 457]]}, "center": {"128-155": [-856, 469], "156-258": [-856, 480]}}, -{"id": 3524, "name": "Digi-Space Productions", "description": "A Video Game Developer and Animator from the United States", "links": {"website": ["https://www.youtube.com/@DigiSpaceProductions", "https://reddit.com/u/EGAMatsuAlpha"], "subreddit": ["DigiSpaceProductions"]}, "path": {"214-258": [[1107, -764], [1107, -751], [1120, -751], [1120, -764]]}, "center": {"214-258": [1114, -757]}}, +{"id": 3516, "name": "Battlefield One Airship History Youtubers", "description": "Another creation of the coalition between Sabaton, War Thunder, Powerwolf, and Battlefield 1, the main portion of this piece is that of the iconic Battlefield 1 behemoth Airship (sporting the German cross). The coalition also decided to add famous history channels \"Oversimplified\" (top left) and \"Alternate History Hub\" (top middle). Like the Metal Safe Haven (to the right/below) this piece could only have been made with the help of the Hololive community, who so graciously helped us claim the spot from U/Slab.", "links": {"website": ["https://www.youtube.com/channel/UCNIuvl7V8zACPpTmmNIqP2A", "https://www.youtube.com/@AlternateHistoryHub"], "subreddit": ["battlefield_one"]}, "path": {"250-258, T": [[-585, -368], [-563, -368], [-563, -353], [-585, -353]]}, "center": {"250-258, T": [-574, -360]}}, +{"id": 3517, "name": "ZAZA", "description": "Arte creado por Humberto, comunidad de ElMariana.", "links": {"subreddit": ["Elmariana"]}, "path": {"250-258, T": [[673, 520], [693, 520], [693, 548], [673, 548]]}, "center": {"250-258, T": [683, 534]}}, +{"id": 3518, "name": "Eve logo", "description": "This logo is often used by the japanese singer Eve to represent his works. It portrays one of his characters, Hitotsume-sama.", "links": {"website": ["https://www.youtube.com/channel/UCUXfRsEIJ9xO1DT7TbEWksw", "https://twitter.com/oO0Eve0Oo", "https://twitter.com/nonsense_eye"], "subreddit": ["e_ve"], "discord": ["eve"]}, "path": {"250-258, T": [[-338, 881], [-336, 881], [-336, 880], [-333, 880], [-333, 879], [-331, 879], [-331, 878], [-329, 878], [-329, 880], [-328, 880], [-328, 881], [-326, 881], [-326, 880], [-325, 880], [-325, 879], [-324, 879], [-324, 878], [-325, 878], [-325, 877], [-325, 876], [-322, 876], [-322, 875], [-319, 875], [-319, 874], [-318, 874], [-318, 873], [-318, 874], [-322, 874], [-322, 875], [-324, 875], [-324, 867], [-325, 867], [-325, 866], [-326, 866], [-326, 865], [-330, 865], [-330, 866], [-333, 866], [-333, 867], [-335, 867], [-335, 868], [-336, 868], [-336, 870], [-335, 870], [-335, 874], [-334, 874], [-334, 876], [-333, 876], [-333, 879], [-336, 879], [-336, 880], [-338, 880]]}, "center": {"250-258, T": [-329, 872]}}, +{"id": 3519, "name": "Comunidad Moai", "description": "Un moai representado a la comunidad de Twitch del canal de Rodik Sama, puesto que este es un elemento de humor y usado en memes en el propio canal", "links": {"website": ["https://www.twitch.tv/rodiksama", "https://www.youtube.com/@RodikSamaOficial"]}, "path": {"250-258, T": [[433, -303], [433, -285], [445, -285], [445, -303]]}, "center": {"250-258, T": [439, -294]}}, +{"id": 3520, "name": "The Metal Safe Haven", "description": "A tribute to metal bands made by the Sabaton, War Thunder, Battlefield 1, and Powerwolf Coalition. In the top right is the mascot of band Dio known as Murray (known for songs like \"Holy Diver\" and \"Caught in the Middle\"). Below him is the Powerwolf... well wolf (known for songs like \"Resurrection by Erection\" and \"Army of the Night\"). Below them is Manowar's \"Faceless Warrior\" (known for songs \"Battle Hymn\" and \"Warriors of the World\") giving a death stare at Nanowar of Steels Mr. Baffo (who sports his uniform from song Pasadena 1994). To their left is Alestorm's Captain Morgan (known for songs F*cked with an Anchor and P.A.R.T.Y.). Last but not least to his left is a half cut off Helloween's Keeper of the Seven Keys (there was no chance we were going to use Jack O). None of these bands would have made the final cut if it weren't for the actions of\u0001r/Hololive in paving their designs in the waning hours of Place.", "links": {"subreddit": ["battlefield_one", "Sabaton", "Powerwolf", "Warthunder"]}, "path": {"250-258, T": [[-584, -344], [-559, -344], [-557, -368], [-563, -368], [-563, -353], [-585, -353]]}, "center": {"250-258, T": [-568, -348]}}, +{"id": 3521, "name": "Luminy Award", "description": "Event that rewards streamers, influencers and content creators from Peru", "links": {}, "path": {"250-258, T": [[-1002, -741], [-1007, -735], [-1006, -732], [-1002, -732], [-1003, -730], [-1006, -729], [-1016, -728], [-1019, -724], [-1020, -721], [-1018, -718], [-1017, -713], [-1017, -708], [-1018, -704], [-1020, -700], [-1015, -696], [-1004, -696], [-991, -698], [-990, -702], [-991, -706], [-994, -707], [-994, -710], [-993, -714], [-993, -715], [-992, -717], [-992, -727], [-991, -731], [-993, -732], [-995, -738], [-997, -741], [-999, -743], [-1002, -745], [-1004, -745], [-1003, -742]]}, "center": {"250-258, T": [-1005, -717]}}, +{"id": 3522, "name": "Vash the Stampede", "description": "Drawing of Vash the Stampede from the anime Trigun Stampede, second and reimagined adaptation of the manga series Trigun by Yasuhiro Nightow.", "links": {"website": ["https://en.wikipedia.org/wiki/Trigun_Stampede"], "subreddit": ["Trigun"]}, "path": {"228-258, T": [[1218, -392], [1224, -392], [1227, -401], [1227, -406], [1221, -409], [1216, -409], [1215, -405], [1216, -402], [1215, -398]]}, "center": {"228-258, T": [1222, -402]}}, +{"id": 3523, "name": "El Salvador's Flag", "description": "Start of the Salvadorean flag beside and behind the Master Sword.\nThis period is mark by constant expansion and forging of alliances with surrounding communities, also depicted periods of constant war with \"Blue Ball\" right beside the triforce also several attack from random factions including spam bots that were defeated with help of our allies until the end.", "links": {"subreddit": ["ElSalvador"], "discord": ["fvy5cFSGp"]}, "path": {"128-155": [[-891, 457], [-891, 481], [-821, 481], [-821, 457], [-862, 457]], "156-258, T": [[-891, 457], [-891, 503], [-822, 502], [-821, 457]]}, "center": {"128-155": [-856, 469], "156-258, T": [-856, 480]}}, +{"id": 3524, "name": "Digi-Space Productions", "description": "A Video Game Developer and Animator from the United States", "links": {"website": ["https://www.youtube.com/@DigiSpaceProductions", "https://reddit.com/u/EGAMatsuAlpha"], "subreddit": ["DigiSpaceProductions"]}, "path": {"214-258, T": [[1107, -764], [1107, -751], [1120, -751], [1120, -764]]}, "center": {"214-258, T": [1114, -757]}}, {"id": 3525, "name": "PG (short life)-gibbogialloblù and Porchettav", "description": "This short lasting write eas one of the first prototypes of the pg stamp", "links": {"website": ["https://www.youtube.com/@gibbogialloblu1171"]}, "path": {"206-207": [[1498, 201], [1498, 193], [1487, 193], [1487, 201]]}, "center": {"206-207": [1493, 197]}}, -{"id": 3526, "name": "Cavinator1", "description": "The Minecraft player head for Cavinator1: the creator of various Minecraft projects such as: BlazeandCave's Advancement Pack, the Assassin of Steve trilogy, Celestial Protocol, and Dance Floor.", "links": {"website": ["https://www.planetminecraft.com/member/cavinator1/"], "discord": ["blaze-and-cave-419383460600348673"]}, "path": {"241-258": [[993, 307], [1000, 307], [1000, 314], [993, 314]]}, "center": {"241-258": [997, 311]}}, +{"id": 3526, "name": "Cavinator1", "description": "The Minecraft player head for Cavinator1: the creator of various Minecraft projects such as: BlazeandCave's Advancement Pack, the Assassin of Steve trilogy, Celestial Protocol, and Dance Floor.", "links": {"website": ["https://www.planetminecraft.com/member/cavinator1/"], "discord": ["blaze-and-cave-419383460600348673"]}, "path": {"241-258, T": [[993, 307], [1000, 307], [1000, 314], [993, 314]]}, "center": {"241-258, T": [997, 311]}}, {"id": 3527, "name": "Kira cariño", "description": "This emote represents Kira, the cat of the streamer Vegetta777, and you can find it on his channel under the name \"Kira cora\".", "links": {"website": ["https://www.youtube.com/@vegetta777"]}, "path": {"223-246": [[1035, 305], [1021, 282], [1021, 305], [1035, 305], [1034, 282], [1021, 282]]}, "center": {"223-246": [1026, 300]}}, -{"id": 3528, "name": "Comunidad Moai", "description": "Un moai representado a la comunidad de Twitch del canal de Rodik Sama, puesto que este es un elemento de humor y usado en memes en el propio canal", "links": {"website": ["https://www.twitch.tv/rodiksama", "https://www.youtube.com/@RodikSamaOficial"]}, "path": {"250-258": [[433, -303], [433, -285], [445, -285], [445, -303]]}, "center": {"250-258": [439, -294]}}, -{"id": 3529, "name": "Señor PF", "description": "Mr. PF or in spanish, Señor PF, is the mascot of the emblematic Chilean brand Productos Fernández, the renowned producer of cured meats that emerged in the Maule region and that since the beginning of the last century has become an important space in the ham, rolled and frozen market, among others.", "links": {"website": ["https://www.pfalimentos.cl"]}, "path": {"250-258": [[-1046, -811], [-1060, -797], [-1059, -779], [-1043, -769], [-1043, -763], [-1049, -758], [-1038, -757], [-1038, -768], [-1027, -772], [-1023, -768], [-1022, -763], [-1026, -760], [-1012, -758], [-1012, -761], [-1016, -760], [-1018, -763], [-1020, -774], [-1022, -777], [-1017, -785], [-1017, -794], [-1019, -800], [-1021, -804], [-1026, -807], [-1032, -810], [-1041, -811], [-1045, -811]]}, "center": {"250-258": [-1038, -790]}}, -{"id": 3530, "name": "Flag of the Byzantine Empire", "description": "Tetragrammatic cross of the Palaiologos Dynasty used to represent the Byzantine Empire. Credit goes to r/ByzantineMemes and r/Byzantium with help from the Greek place discord.", "links": {"website": ["https://en.wikipedia.org/wiki/Byzantine_flags_and_insignia"], "subreddit": ["ByzantineMemes", "GreecePlace"], "discord": ["XUfgyk5kXu", "e94xKxzTJp"]}, "path": {"207-258": [[1278, -863], [1298, -863], [1298, -846], [1278, -846]]}, "center": {"207-258": [1288, -854]}}, -{"id": 3531, "name": "WachiTutis", "description": "TutisValentine, es una streamer chilena que se unió a la plataforma de Twitch a principios de agosto del 2020 y comenzó a transmitir contenido al final del mismo año. Amante del NieR y Jojo's. Actualmente lleva viviendo en Japón los últimos 5 años.\nElla junto a su comunidad, a quienes cariñosamente llama \"Los Wachitos\". Siendo estos el corazón y alma de su experiencia en Twitch; este pixelart es un testimonio visual de la camaradería y conexión que comparten.", "links": {"website": ["https://www.twitch.tv/tutisvalentine", "https://twitter.com/tutisvalentine?t=UmsIwUEC8ijkJ-U28B4wZQ&s=09"], "subreddit": ["Tutisvalentine"]}, "path": {"223-258": [[-1331, 759], [-1331, 795], [-1293, 795], [-1293, 759]]}, "center": {"223-258": [-1312, 777]}}, -{"id": 3532, "name": "A Whole Turkey", "description": "A small streamer on Twitch and Kick with his community of streamers & friends.", "links": {"subreddit": ["AwholeTurkey"], "discord": ["bNZHGE3aM"]}, "path": {"206-258": [[976, 210], [964, 219], [965, 225], [973, 231], [980, 231], [988, 223], [988, 219]]}, "center": {"206-258": [976, 221]}}, -{"id": 3533, "name": "River Plate T-shirt", "description": "Club Atletico River Plate is an Argentine football club from Nuñez. Their iconic t-shirt design consists of a white base with a red strip going from the top left shoulder to the bottom right hip.", "links": {}, "path": {"223-258": [[-224, 925], [-214, 925], [-214, 931], [-215, 931], [-215, 935], [-224, 934], [-224, 931], [-225, 930], [-225, 925]]}, "center": {"223-258": [-219, 930]}}, +{"id": 3528, "name": "Comunidad Moai", "description": "Un moai representado a la comunidad de Twitch del canal de Rodik Sama, puesto que este es un elemento de humor y usado en memes en el propio canal", "links": {"website": ["https://www.twitch.tv/rodiksama", "https://www.youtube.com/@RodikSamaOficial"]}, "path": {"250-258, T": [[433, -303], [433, -285], [445, -285], [445, -303]]}, "center": {"250-258, T": [439, -294]}}, +{"id": 3529, "name": "Señor PF", "description": "Mr. PF or in spanish, Señor PF, is the mascot of the emblematic Chilean brand Productos Fernández, the renowned producer of cured meats that emerged in the Maule region and that since the beginning of the last century has become an important space in the ham, rolled and frozen market, among others.", "links": {"website": ["https://www.pfalimentos.cl"]}, "path": {"250-258, T": [[-1046, -811], [-1060, -797], [-1059, -779], [-1043, -769], [-1043, -763], [-1049, -758], [-1038, -757], [-1038, -768], [-1027, -772], [-1023, -768], [-1022, -763], [-1026, -760], [-1012, -758], [-1012, -761], [-1016, -760], [-1018, -763], [-1020, -774], [-1022, -777], [-1017, -785], [-1017, -794], [-1019, -800], [-1021, -804], [-1026, -807], [-1032, -810], [-1041, -811], [-1045, -811]]}, "center": {"250-258, T": [-1038, -790]}}, +{"id": 3530, "name": "Flag of the Byzantine Empire", "description": "Tetragrammatic cross of the Palaiologos Dynasty used to represent the Byzantine Empire. Credit goes to r/ByzantineMemes and r/Byzantium with help from the Greek place discord.", "links": {"website": ["https://en.wikipedia.org/wiki/Byzantine_flags_and_insignia"], "subreddit": ["ByzantineMemes", "GreecePlace"], "discord": ["XUfgyk5kXu", "e94xKxzTJp"]}, "path": {"207-258, T": [[1278, -863], [1298, -863], [1298, -846], [1278, -846]]}, "center": {"207-258, T": [1288, -854]}}, +{"id": 3531, "name": "WachiTutis", "description": "TutisValentine, es una streamer chilena que se unió a la plataforma de Twitch a principios de agosto del 2020 y comenzó a transmitir contenido al final del mismo año. Amante del NieR y Jojo's. Actualmente lleva viviendo en Japón los últimos 5 años.\nElla junto a su comunidad, a quienes cariñosamente llama \"Los Wachitos\". Siendo estos el corazón y alma de su experiencia en Twitch; este pixelart es un testimonio visual de la camaradería y conexión que comparten.", "links": {"website": ["https://www.twitch.tv/tutisvalentine", "https://twitter.com/tutisvalentine?t=UmsIwUEC8ijkJ-U28B4wZQ&s=09"], "subreddit": ["Tutisvalentine"]}, "path": {"223-258, T": [[-1331, 759], [-1331, 795], [-1293, 795], [-1293, 759]]}, "center": {"223-258, T": [-1312, 777]}}, +{"id": 3532, "name": "A Whole Turkey", "description": "A small streamer on Twitch and Kick with his community of streamers & friends.", "links": {"subreddit": ["AwholeTurkey"], "discord": ["bNZHGE3aM"]}, "path": {"206-258, T": [[976, 210], [964, 219], [965, 225], [973, 231], [980, 231], [988, 223], [988, 219]]}, "center": {"206-258, T": [976, 221]}}, +{"id": 3533, "name": "River Plate T-shirt", "description": "Club Atletico River Plate is an Argentine football club from Nuñez. Their iconic t-shirt design consists of a white base with a red strip going from the top left shoulder to the bottom right hip.", "links": {}, "path": {"223-258, T": [[-224, 925], [-214, 925], [-214, 931], [-215, 931], [-215, 935], [-224, 934], [-224, 931], [-225, 930], [-225, 925]]}, "center": {"223-258, T": [-219, 930]}}, {"id": 3534, "name": "Mini-Oberon", "description": "This is a Character from a videogame called \"Fate/Grand Order. This one was made by the community of the Spanish Youtuber \"TheDarkraimola\", the character is loved by him and his community.", "links": {"website": ["https://typemoon.fandom.com/wiki/Oberon_Vortigern", "https://www.twitch.tv/thedarkraimola"]}, "path": {"251": [[446, -301], [445, -303], [445, -285], [460, -285], [461, -285], [461, -303], [445, -303], [445, -285], [461, -285], [461, -303]]}, "center": {"251": [449, -302]}}, -{"id": 3535, "name": "Uni Cornelius", "description": "The face of the character Uni Cornelius from the webcomic Sparklecare.", "links": {"website": ["https://www.sparklecarehospital.com/"], "subreddit": ["sparklecare"]}, "path": {"250-258": [[-899, 766], [-899, 770], [-895, 770], [-895, 766]]}, "center": {"250-258": [-897, 768]}}, -{"id": 3536, "name": "Kira", "description": "Emote representativo del canal de Vegetta777 que ilustra a su pequeña gatita \"Kira\" creado por el fandom Guapísimo.\n\nCanal dedicado a los videojuegos dirigido por un chico amante de los unicornios, la simetría y el color morado", "links": {"website": ["https://www.youtube.com/vegetta777"], "discord": ["vegetta777"]}, "path": {"250-258": [[1027, 287], [1021, 283], [1034, 305], [1034, 282], [1021, 282], [1021, 305], [1034, 305], [1033, 304], [1034, 282], [1021, 282], [1021, 305], [1034, 305]]}, "center": {"250-258": [1026, 289]}}, -{"id": 3537, "name": "Twenty One Pilots - Ned", "description": "Ned is a fictional character of Twenty One Pilots that was created by lead singer Tyler Joseph. He resembles a furry creature with antlers, big black eyes, and a fat belly. As stated in an interview, Ned represents Tyler's creativity.", "links": {"website": ["https://www.twentyonepilots.com"], "subreddit": ["twentyonepilots"]}, "path": {"250-258": [[-1224, -257], [-1224, -248], [-1237, -248], [-1237, -255], [-1234, -255], [-1234, -257]]}, "center": {"250-258": [-1230, -252]}}, -{"id": 3538, "name": "[MLP] Colombia Pony", "description": "A peeking pony with a design inspired by the Colombia Flag's colors.", "links": {}, "path": {"250-258": [[-956, 970], [-956, 967], [-955, 967], [-955, 966], [-951, 966], [-951, 962], [-949, 960], [-948, 960], [-946, 958], [-941, 958], [-939, 960], [-938, 960], [-936, 962], [-936, 966], [-932, 966], [-931, 967], [-931, 970]]}, "center": {"250-258": [-943, 964]}}, -{"id": 3539, "name": "Quantum Moon", "description": "The Quantum Moon is a moon from the game Outer Wilds that changes location when it stops being observed.\n\nThe Quantum Moon was drawn at different places at different times around r/place. Don't blink or you'll miss it!", "links": {"subreddit": ["outerwilds"]}, "path": {"248-251": [[1343, -953], [1344, -953], [1344, -952], [1343, -952]]}, "center": {"248-251": [1344, -952]}}, -{"id": 3540, "name": "Dio 'DIO' Brando (Jojo's Parts 1, 3, and 6)", "description": "The main antagonist of Jojo's Bizarre Adventure Parts 1 and 3: Phantom Blood and Stardust Crusaders.\n\nStand: The World\n\n\"Oh? You're approaching me?\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1181, -83], [-1175, -84], [-1175, -76], [-1180, -76], [-1181, -82], [-1177, -84]]}, "center": {"250-258": [-1178, -80]}}, -{"id": 3541, "name": "r/placeEU Logo", "description": "Logo from r/placeEU, the Place Community from the European Union.", "links": {"subreddit": ["placeEU"], "discord": ["uxm3wbrHke"]}, "path": {"250-258": [[-193, 648], [-193, 701], [-154, 701], [-154, 648]]}, "center": {"250-258": [-173, 675]}}, -{"id": 3542, "name": "r/AnarchyChess logo", "description": "The logo of r/AnarchyChess, a knight wearing sunglasses.", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"208-258": [[-1205, 544], [-1203, 544], [-1203, 545], [-1201, 545], [-1201, 546], [-1200, 546], [-1200, 547], [-1199, 547], [-1199, 548], [-1199, 549], [-1198, 549], [-1198, 551], [-1199, 551], [-1199, 553], [-1200, 553], [-1200, 554], [-1201, 554], [-1201, 555], [-1202, 555], [-1203, 555], [-1203, 556], [-1205, 556], [-1205, 555], [-1207, 555], [-1207, 554], [-1208, 554], [-1208, 553], [-1209, 553], [-1209, 552], [-1209, 551], [-1210, 551], [-1210, 549], [-1209, 549], [-1209, 547], [-1208, 546], [-1207, 546], [-1207, 545], [-1206, 545], [-1205, 545]]}, "center": {"208-258": [-1204, 550]}}, -{"id": 3543, "name": "Ethiopia", "description": "Ethiopia is a country in the Horn of Africa.", "links": {"subreddit": ["Ethiopia", "placeET"]}, "path": {"212-258": [[-1357, -659], [-1357, -654], [-1357, -653], [-1347, -653], [-1347, -659], [-1347, -660], [-1357, -660]]}, "center": {"212-258": [-1352, -656]}}, -{"id": 3544, "name": "El \"Diablo\" Etcheverry", "description": "Nicknamed \"El Diablo\" (The Devil), he is a Bolivian retired professional footballer who played as a forward. A creative playmaker, he is considered one of the greatest Bolivian players of all time. Etcheverry compiled 71 caps and scored 13 goals for the Bolivia national team between 1989 and 2003. He scored four times during qualification for the 1994 FIFA World Cup, including an 88th minute opening goal in a 2–0 defeat of Brazil in La Paz - the first ever loss by the Seleção in their World Cup qualifying history, to help Bolivia participate in its first FIFA World Cup since 1950", "links": {"website": ["https://www.instagram.com/marcoetcheverry10/", "https://en.wikipedia.org/wiki/Marco_Etcheverry"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[1436, -853], [1436, -835], [1425, -829], [1428, -824], [1439, -831], [1437, -820], [1436, -812], [1438, -790], [1432, -787], [1446, -786], [1445, -805], [1450, -805], [1450, -791], [1454, -787], [1458, -785], [1461, -788], [1460, -793], [1456, -795], [1456, -804], [1457, -807], [1458, -808], [1457, -811], [1456, -817], [1458, -818], [1456, -820], [1456, -826], [1456, -828], [1459, -829], [1459, -835], [1457, -839], [1456, -843], [1452, -849], [1448, -854], [1442, -858], [1436, -856], [1435, -854], [1436, -836]]}, "center": {"250-258": [1447, -838]}}, -{"id": 3545, "name": "Fear and Hunger Girl and Chibi peeps", "description": "The little girl from the game Fear and Hunger holding her peculiar doll\n\nShe is in good company with her friends, the chibi forms of all the playable/recruitable characters of the game, surrounding her\n\nNotice to their left, the girl's deadbeat dad and passion object to D'arce, the King in Yellow, Le'garde (not actually him)", "links": {"subreddit": ["FearAndHunger"]}, "path": {"211-258": [[993, 208], [993, 198], [988, 197], [988, 163], [990, 163], [990, 153], [958, 153], [958, 169], [960, 169], [960, 174], [962, 174], [962, 175], [968, 175], [968, 197], [961, 197], [961, 211], [961, 213], [993, 213]]}, "center": {"211-258": [976, 165]}}, -{"id": 3546, "name": "Nadeshiko and Shimarin", "description": "Nadeshiko Kagamihara and Rin Shima are the main characters of the Yuru Camp△ anime/manga.", "links": {"website": ["https://myanimelist.net/anime/34798/Yuru_Camp"], "subreddit": ["laidbackcamp"], "discord": ["laidback-camp"]}, "path": {"250-258": [[1466, -856], [1466, -864], [1482, -864], [1482, -856]]}, "center": {"250-258": [1474, -860]}}, -{"id": 3547, "name": "Cotufas Flashoistas", "description": "A representation of the community (Cult?) by the Venezuelan artist and the wife of Eren Yeager; Flasho_D. The popcorn represent each individual of said community", "links": {"website": ["https://www.twitch.tv/flasho_d", "https://www.instagram.com/flasho_d/"]}, "path": {"166-259": [[-491, -835], [-485, -842], [-476, -842], [-475, -829], [-486, -828]]}, "center": {"166-259": [-482, -835]}}, -{"id": 3548, "name": "Qiqi Fallen", "description": "Qiqi Fallen sticker depicting the character Qiqi. The use of this sticker got widespread around the 1st Anniversary of the game and it stayed as a meme.", "links": {"website": ["https://genshin.hoyoverse.com/en/home", "https://youtu.be/_ndVJlqBYLY?si=8kgBqX7GZyLQdzUN"], "subreddit": ["Genshin_Impact", "QiqiMains"]}, "path": {"49-258": [[4, 320], [2, 320], [2, 318], [0, 318], [0, 313], [1, 313], [2, 314], [4, 312], [6, 312], [6, 309], [5, 309], [5, 306], [6, 306], [9, 303], [11, 303], [12, 302], [20, 302], [23, 304], [24, 305], [27, 305], [27, 314], [25, 314], [25, 313], [23, 313], [23, 314], [18, 319], [15, 319], [15, 318], [13, 318], [13, 320], [11, 320], [11, 321], [6, 321], [6, 319]]}, "center": {"49-258": [15, 310]}}, -{"id": 3549, "name": "Castell", "description": "This is a pixel art showing a castell, which is a human tower built traditionally in celebrations in Catalonia.", "links": {"website": ["https://en.wikipedia.org/wiki/Castell"], "subreddit": ["catalonia"]}, "path": {"199-258": [[439, 164], [426, 164], [426, 161], [425, 161], [426, 161], [426, 160], [427, 160], [428, 160], [428, 157], [429, 157], [429, 155], [430, 155], [430, 143], [431, 143], [431, 142], [432, 142], [432, 141], [433, 141], [433, 138], [434, 138], [434, 139], [435, 139], [436, 138], [435, 139], [435, 140], [434, 140], [434, 142], [435, 142], [435, 143], [436, 143], [436, 156], [437, 156], [437, 157], [438, 157], [438, 160], [439, 160], [439, 161], [440, 161], [439, 161]]}, "center": {"199-258": [433, 159]}}, -{"id": 3550, "name": "Orchid", "description": "Orchids are plants that belong to the family Orchidaceae a diverse and widespread group of flowering plants with blooms that are often colourful and fragrant. The orchid it's the national flower of Venezuela", "links": {"website": ["https://en.wikipedia.org/wiki/Orchid"]}, "path": {"250-258": [[-1043, 299], [-1041, 275], [-1014, 276], [-1015, 309], [-1044, 308], [-1042, 307], [-1043, 307], [-1044, 305], [-1044, 301], [-1036, 297], [-1043, 308], [-1044, 308]]}, "center": {"250-258": [-1027, 288]}}, -{"id": 3551, "name": "2B", "description": "YoRHa No.2 Type B (2B for short) is one of the main characters of the 2017 Square Enix game \"NieR: Automata\". She is an android tasked with defeating machine lifeforms and saving humanity.", "links": {"subreddit": ["nier"], "discord": ["ZFFmVeYsDK"]}, "path": {"210-258": [[-268, 848], [-265, 848], [-263, 850], [-262, 850], [-261, 851], [-261, 855], [-262, 856], [-263, 855], [-264, 856], [-264, 857], [-263, 856], [-262, 856], [-259, 859], [-259, 861], [-260, 862], [-260, 863], [-259, 864], [-258, 863], [-257, 864], [-257, 865], [-258, 866], [-257, 867], [-258, 868], [-258, 869], [-256, 869], [-254, 871], [-254, 874], [-255, 876], [-257, 878], [-257, 886], [-256, 887], [-256, 889], [-254, 891], [-255, 892], [-256, 892], [-257, 891], [-258, 892], [-259, 891], [-259, 886], [-260, 884], [-261, 883], [-261, 880], [-262, 879], [-262, 878], [-263, 878], [-265, 876], [-265, 874], [-266, 874], [-267, 875], [-267, 876], [-269, 878], [-269, 881], [-266, 884], [-267, 885], [-268, 885], [-270, 883], [-271, 883], [-272, 884], [-272, 885], [-273, 886], [-273, 887], [-274, 888], [-274, 893], [-275, 894], [-276, 894], [-277, 893], [-277, 890], [-276, 889], [-276, 885], [-275, 884], [-275, 881], [-274, 880], [-273, 879], [-274, 878], [-274, 877], [-275, 876], [-275, 875], [-276, 874], [-276, 873], [-276, 875], [-277, 876], [-277, 877], [-278, 878], [-278, 884], [-279, 885], [-279, 893], [-280, 894], [-282, 892], [-282, 891], [-283, 890], [-283, 888], [-282, 887], [-282, 883], [-281, 882], [-281, 878], [-280, 877], [-280, 876], [-281, 875], [-279, 872], [-279, 871], [-278, 870], [-278, 869], [-279, 868], [-279, 867], [-280, 866], [-280, 864], [-281, 863], [-281, 861], [-284, 861], [-285, 860], [-286, 859], [-284, 857], [-283, 857], [-283, 856], [-284, 855], [-284, 853], [-285, 852], [-285, 848], [-283, 846], [-282, 847], [-282, 851], [-281, 852], [-281, 847], [-282, 846], [-282, 845], [-284, 843], [-283, 842], [-283, 831], [-282, 830], [-281, 829], [-280, 830], [-280, 841], [-279, 841], [-278, 842], [-279, 843], [-279, 846], [-278, 847], [-278, 850], [-277, 851], [-277, 855], [-278, 856], [-279, 855], [-280, 854], [-277, 855], [-278, 856], [-279, 855], [-280, 854], [-281, 854], [-281, 855], [-280, 856], [-278, 856], [-277, 857], [-276, 858], [-278, 860], [-278, 862], [-277, 863], [-277, 865], [-276, 866], [-276, 865], [-277, 865], [-277, 864], [-276, 863], [-274, 863], [-273, 862], [-274, 861], [-274, 860], [-273, 859], [-273, 858], [-271, 856], [-269, 856], [-270, 856], [-272, 854], [-272, 852]]}, "center": {"210-258": [-267, 866]}}, -{"id": 3552, "name": "Pod-042", "description": "Pod-042 is a tactical support unit that helps YoRHa soldiers in NieR:Automata. They can use various long range attacks to aid in completion of the mission.", "links": {"subreddit": ["nier"], "discord": ["ZFFmVeYsDK"]}, "path": {"214-258": [[-255, 831], [-252, 831], [-252, 835], [-251, 835], [-251, 843], [-250, 843], [-250, 845], [-249, 845], [-246, 848], [-246, 850], [-256, 850], [-263, 847], [-263, 843], [-259, 843], [-259, 835], [-255, 835]]}, "center": {"214-258": [-255, 846]}}, -{"id": 3553, "name": "Karma is a cat", "description": "The 11th track of American singer songwriter Taylor Swift's 10th studio album (Midnights), the art references the lyric \"Karma is a cat\". This art was done in collaboration with r/swiftierplace and r/TaylorSwift.", "links": {"website": ["https://en.wikipedia.org/wiki/Karma_(Taylor_Swift_song)"], "subreddit": ["swiftierplace"], "discord": ["nHJRXk2DcA"]}, "path": {"159-258": [[691, 915], [691, 935], [719, 935], [719, 915], [700, 915]]}, "center": {"159-258": [705, 925]}}, -{"id": 3554, "name": "Ecuawol.xyz Banner", "description": "A banner of the Ecuawol.xyz Minecraft Server.", "links": {"website": ["https://ecuawol.xyz/"], "discord": ["ecuawol"]}, "path": {"217-258": [[-1331, 745], [-1488, 746], [-1488, 751], [-1331, 751]]}, "center": {"217-258": [-1335, 748]}}, +{"id": 3535, "name": "Uni Cornelius", "description": "The face of the character Uni Cornelius from the webcomic Sparklecare.", "links": {"website": ["https://www.sparklecarehospital.com/"], "subreddit": ["sparklecare"]}, "path": {"250-258, T": [[-899, 766], [-899, 770], [-895, 770], [-895, 766]]}, "center": {"250-258, T": [-897, 768]}}, +{"id": 3536, "name": "Kira", "description": "Emote representativo del canal de Vegetta777 que ilustra a su pequeña gatita \"Kira\" creado por el fandom Guapísimo.\n\nCanal dedicado a los videojuegos dirigido por un chico amante de los unicornios, la simetría y el color morado", "links": {"website": ["https://www.youtube.com/vegetta777"], "discord": ["vegetta777"]}, "path": {"250-258, T": [[1027, 287], [1021, 283], [1034, 305], [1034, 282], [1021, 282], [1021, 305], [1034, 305], [1033, 304], [1034, 282], [1021, 282], [1021, 305], [1034, 305]]}, "center": {"250-258, T": [1026, 289]}}, +{"id": 3537, "name": "Twenty One Pilots - Ned", "description": "Ned is a fictional character of Twenty One Pilots that was created by lead singer Tyler Joseph. He resembles a furry creature with antlers, big black eyes, and a fat belly. As stated in an interview, Ned represents Tyler's creativity.", "links": {"website": ["https://www.twentyonepilots.com"], "subreddit": ["twentyonepilots"]}, "path": {"250-258, T": [[-1224, -257], [-1224, -248], [-1237, -248], [-1237, -255], [-1234, -255], [-1234, -257]]}, "center": {"250-258, T": [-1230, -252]}}, +{"id": 3538, "name": "[MLP] Colombia Pony", "description": "A peeking pony with a design inspired by the Colombia Flag's colors.", "links": {}, "path": {"250-258, T": [[-956, 970], [-956, 967], [-955, 967], [-955, 966], [-951, 966], [-951, 962], [-949, 960], [-948, 960], [-946, 958], [-941, 958], [-939, 960], [-938, 960], [-936, 962], [-936, 966], [-932, 966], [-931, 967], [-931, 970]]}, "center": {"250-258, T": [-943, 964]}}, +{"id": 3539, "name": "Quantum Moon", "description": "The Quantum Moon is a moon from the game Outer Wilds that changes location when it stops being observed.\n\nThe Quantum Moon was drawn at different places at different times around r/place. Don't blink or you'll miss it!", "links": {"subreddit": ["outerwilds"]}, "path": {"248-251, T": [[1343, -953], [1344, -953], [1344, -952], [1343, -952]]}, "center": {"248-251, T": [1344, -952]}}, +{"id": 3540, "name": "Dio 'DIO' Brando (Jojo's Parts 1, 3, and 6)", "description": "The main antagonist of Jojo's Bizarre Adventure Parts 1 and 3: Phantom Blood and Stardust Crusaders.\n\nStand: The World\n\n\"Oh? You're approaching me?\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1181, -83], [-1175, -84], [-1175, -76], [-1180, -76], [-1181, -82], [-1177, -84]]}, "center": {"250-258, T": [-1178, -80]}}, +{"id": 3541, "name": "r/placeEU Logo", "description": "Logo from r/placeEU, the Place Community from the European Union.", "links": {"subreddit": ["placeEU"], "discord": ["uxm3wbrHke"]}, "path": {"250-258, T": [[-193, 648], [-193, 701], [-154, 701], [-154, 648]]}, "center": {"250-258, T": [-173, 675]}}, +{"id": 3542, "name": "r/AnarchyChess logo", "description": "The logo of r/AnarchyChess, a knight wearing sunglasses.", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"208-258, T": [[-1205, 544], [-1203, 544], [-1203, 545], [-1201, 545], [-1201, 546], [-1200, 546], [-1200, 547], [-1199, 547], [-1199, 548], [-1199, 549], [-1198, 549], [-1198, 551], [-1199, 551], [-1199, 553], [-1200, 553], [-1200, 554], [-1201, 554], [-1201, 555], [-1202, 555], [-1203, 555], [-1203, 556], [-1205, 556], [-1205, 555], [-1207, 555], [-1207, 554], [-1208, 554], [-1208, 553], [-1209, 553], [-1209, 552], [-1209, 551], [-1210, 551], [-1210, 549], [-1209, 549], [-1209, 547], [-1208, 546], [-1207, 546], [-1207, 545], [-1206, 545], [-1205, 545]]}, "center": {"208-258, T": [-1204, 550]}}, +{"id": 3543, "name": "Ethiopia", "description": "Ethiopia is a country in the Horn of Africa.", "links": {"subreddit": ["Ethiopia", "placeET"]}, "path": {"212-258, T": [[-1357, -659], [-1357, -654], [-1357, -653], [-1347, -653], [-1347, -659], [-1347, -660], [-1357, -660]]}, "center": {"212-258, T": [-1352, -656]}}, +{"id": 3544, "name": "El \"Diablo\" Etcheverry", "description": "Nicknamed \"El Diablo\" (The Devil), he is a Bolivian retired professional footballer who played as a forward. A creative playmaker, he is considered one of the greatest Bolivian players of all time. Etcheverry compiled 71 caps and scored 13 goals for the Bolivia national team between 1989 and 2003. He scored four times during qualification for the 1994 FIFA World Cup, including an 88th minute opening goal in a 2–0 defeat of Brazil in La Paz - the first ever loss by the Seleção in their World Cup qualifying history, to help Bolivia participate in its first FIFA World Cup since 1950", "links": {"website": ["https://www.instagram.com/marcoetcheverry10/", "https://en.wikipedia.org/wiki/Marco_Etcheverry"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[1436, -853], [1436, -835], [1425, -829], [1428, -824], [1439, -831], [1437, -820], [1436, -812], [1438, -790], [1432, -787], [1446, -786], [1445, -805], [1450, -805], [1450, -791], [1454, -787], [1458, -785], [1461, -788], [1460, -793], [1456, -795], [1456, -804], [1457, -807], [1458, -808], [1457, -811], [1456, -817], [1458, -818], [1456, -820], [1456, -826], [1456, -828], [1459, -829], [1459, -835], [1457, -839], [1456, -843], [1452, -849], [1448, -854], [1442, -858], [1436, -856], [1435, -854], [1436, -836]]}, "center": {"250-258, T": [1447, -838]}}, +{"id": 3545, "name": "Fear and Hunger Girl and Chibi peeps", "description": "The little girl from the game Fear and Hunger holding her peculiar doll\n\nShe is in good company with her friends, the chibi forms of all the playable/recruitable characters of the game, surrounding her\n\nNotice to their left, the girl's deadbeat dad and passion object to D'arce, the King in Yellow, Le'garde (not actually him)", "links": {"subreddit": ["FearAndHunger"]}, "path": {"211-258, T": [[993, 208], [993, 198], [988, 197], [988, 163], [990, 163], [990, 153], [958, 153], [958, 169], [960, 169], [960, 174], [962, 174], [962, 175], [968, 175], [968, 197], [961, 197], [961, 211], [961, 213], [993, 213]]}, "center": {"211-258, T": [976, 165]}}, +{"id": 3546, "name": "Nadeshiko and Shimarin", "description": "Nadeshiko Kagamihara and Rin Shima are the main characters of the Yuru Camp△ anime/manga.", "links": {"website": ["https://myanimelist.net/anime/34798/Yuru_Camp"], "subreddit": ["laidbackcamp"], "discord": ["laidback-camp"]}, "path": {"250-258, T": [[1466, -856], [1466, -864], [1482, -864], [1482, -856]]}, "center": {"250-258, T": [1474, -860]}}, +{"id": 3547, "name": "Cotufas Flashoistas", "description": "A representation of the community (Cult?) by the Venezuelan artist and the wife of Eren Yeager; Flasho_D. The popcorn represent each individual of said community", "links": {"website": ["https://www.twitch.tv/flasho_d", "https://www.instagram.com/flasho_d/"]}, "path": {"166-259, T": [[-491, -835], [-485, -842], [-476, -842], [-475, -829], [-486, -828]]}, "center": {"166-259, T": [-482, -835]}}, +{"id": 3548, "name": "Qiqi Fallen", "description": "Qiqi Fallen sticker depicting the character Qiqi. The use of this sticker got widespread around the 1st Anniversary of the game and it stayed as a meme.", "links": {"website": ["https://genshin.hoyoverse.com/en/home", "https://youtu.be/_ndVJlqBYLY?si=8kgBqX7GZyLQdzUN"], "subreddit": ["Genshin_Impact", "QiqiMains"]}, "path": {"49-258, T": [[4, 320], [2, 320], [2, 318], [0, 318], [0, 313], [1, 313], [2, 314], [4, 312], [6, 312], [6, 309], [5, 309], [5, 306], [6, 306], [9, 303], [11, 303], [12, 302], [20, 302], [23, 304], [24, 305], [27, 305], [27, 314], [25, 314], [25, 313], [23, 313], [23, 314], [18, 319], [15, 319], [15, 318], [13, 318], [13, 320], [11, 320], [11, 321], [6, 321], [6, 319]]}, "center": {"49-258, T": [15, 310]}}, +{"id": 3549, "name": "Castell", "description": "This is a pixel art showing a castell, which is a human tower built traditionally in celebrations in Catalonia.", "links": {"website": ["https://en.wikipedia.org/wiki/Castell"], "subreddit": ["catalonia"]}, "path": {"199-258, T": [[439, 164], [426, 164], [426, 161], [425, 161], [426, 161], [426, 160], [427, 160], [428, 160], [428, 157], [429, 157], [429, 155], [430, 155], [430, 143], [431, 143], [431, 142], [432, 142], [432, 141], [433, 141], [433, 138], [434, 138], [434, 139], [435, 139], [436, 138], [435, 139], [435, 140], [434, 140], [434, 142], [435, 142], [435, 143], [436, 143], [436, 156], [437, 156], [437, 157], [438, 157], [438, 160], [439, 160], [439, 161], [440, 161], [439, 161]]}, "center": {"199-258, T": [433, 159]}}, +{"id": 3550, "name": "Orchid", "description": "Orchids are plants that belong to the family Orchidaceae a diverse and widespread group of flowering plants with blooms that are often colourful and fragrant. The orchid it's the national flower of Venezuela", "links": {"website": ["https://en.wikipedia.org/wiki/Orchid"]}, "path": {"250-258, T": [[-1043, 299], [-1041, 275], [-1014, 276], [-1015, 309], [-1044, 308], [-1042, 307], [-1043, 307], [-1044, 305], [-1044, 301], [-1036, 297], [-1043, 308], [-1044, 308]]}, "center": {"250-258, T": [-1027, 288]}}, +{"id": 3551, "name": "2B", "description": "YoRHa No.2 Type B (2B for short) is one of the main characters of the 2017 Square Enix game \"NieR: Automata\". She is an android tasked with defeating machine lifeforms and saving humanity.", "links": {"subreddit": ["nier"], "discord": ["ZFFmVeYsDK"]}, "path": {"210-258, T": [[-268, 848], [-265, 848], [-263, 850], [-262, 850], [-261, 851], [-261, 855], [-262, 856], [-263, 855], [-264, 856], [-264, 857], [-263, 856], [-262, 856], [-259, 859], [-259, 861], [-260, 862], [-260, 863], [-259, 864], [-258, 863], [-257, 864], [-257, 865], [-258, 866], [-257, 867], [-258, 868], [-258, 869], [-256, 869], [-254, 871], [-254, 874], [-255, 876], [-257, 878], [-257, 886], [-256, 887], [-256, 889], [-254, 891], [-255, 892], [-256, 892], [-257, 891], [-258, 892], [-259, 891], [-259, 886], [-260, 884], [-261, 883], [-261, 880], [-262, 879], [-262, 878], [-263, 878], [-265, 876], [-265, 874], [-266, 874], [-267, 875], [-267, 876], [-269, 878], [-269, 881], [-266, 884], [-267, 885], [-268, 885], [-270, 883], [-271, 883], [-272, 884], [-272, 885], [-273, 886], [-273, 887], [-274, 888], [-274, 893], [-275, 894], [-276, 894], [-277, 893], [-277, 890], [-276, 889], [-276, 885], [-275, 884], [-275, 881], [-274, 880], [-273, 879], [-274, 878], [-274, 877], [-275, 876], [-275, 875], [-276, 874], [-276, 873], [-276, 875], [-277, 876], [-277, 877], [-278, 878], [-278, 884], [-279, 885], [-279, 893], [-280, 894], [-282, 892], [-282, 891], [-283, 890], [-283, 888], [-282, 887], [-282, 883], [-281, 882], [-281, 878], [-280, 877], [-280, 876], [-281, 875], [-279, 872], [-279, 871], [-278, 870], [-278, 869], [-279, 868], [-279, 867], [-280, 866], [-280, 864], [-281, 863], [-281, 861], [-284, 861], [-285, 860], [-286, 859], [-284, 857], [-283, 857], [-283, 856], [-284, 855], [-284, 853], [-285, 852], [-285, 848], [-283, 846], [-282, 847], [-282, 851], [-281, 852], [-281, 847], [-282, 846], [-282, 845], [-284, 843], [-283, 842], [-283, 831], [-282, 830], [-281, 829], [-280, 830], [-280, 841], [-279, 841], [-278, 842], [-279, 843], [-279, 846], [-278, 847], [-278, 850], [-277, 851], [-277, 855], [-278, 856], [-279, 855], [-280, 854], [-277, 855], [-278, 856], [-279, 855], [-280, 854], [-281, 854], [-281, 855], [-280, 856], [-278, 856], [-277, 857], [-276, 858], [-278, 860], [-278, 862], [-277, 863], [-277, 865], [-276, 866], [-276, 865], [-277, 865], [-277, 864], [-276, 863], [-274, 863], [-273, 862], [-274, 861], [-274, 860], [-273, 859], [-273, 858], [-271, 856], [-269, 856], [-270, 856], [-272, 854], [-272, 852]]}, "center": {"210-258, T": [-267, 866]}}, +{"id": 3552, "name": "Pod-042", "description": "Pod-042 is a tactical support unit that helps YoRHa soldiers in NieR:Automata. They can use various long range attacks to aid in completion of the mission.", "links": {"subreddit": ["nier"], "discord": ["ZFFmVeYsDK"]}, "path": {"214-258, T": [[-255, 831], [-252, 831], [-252, 835], [-251, 835], [-251, 843], [-250, 843], [-250, 845], [-249, 845], [-246, 848], [-246, 850], [-256, 850], [-263, 847], [-263, 843], [-259, 843], [-259, 835], [-255, 835]]}, "center": {"214-258, T": [-255, 846]}}, +{"id": 3553, "name": "Karma is a cat", "description": "The 11th track of American singer songwriter Taylor Swift's 10th studio album (Midnights), the art references the lyric \"Karma is a cat\". This art was done in collaboration with r/swiftierplace and r/TaylorSwift.", "links": {"website": ["https://en.wikipedia.org/wiki/Karma_(Taylor_Swift_song)"], "subreddit": ["swiftierplace"], "discord": ["nHJRXk2DcA"]}, "path": {"159-258, T": [[691, 915], [691, 935], [719, 935], [719, 915], [700, 915]]}, "center": {"159-258, T": [705, 925]}}, +{"id": 3554, "name": "Ecuawol.xyz Banner", "description": "A banner of the Ecuawol.xyz Minecraft Server.", "links": {"website": ["https://ecuawol.xyz/"], "discord": ["ecuawol"]}, "path": {"217-258, T": [[-1331, 745], [-1488, 746], [-1488, 751], [-1331, 751]]}, "center": {"217-258, T": [-1335, 748]}}, {"id": 3555, "name": "Kauai", "description": "Kauai was the dog of a Twitch streamer named Mount (www.twitch.tv/mount) he was a huge part of the stream and was loved by everyone in the comunity but unfortunatelly after 17 years he passed away, so this was made as a way to honour him <3", "links": {"website": ["https://www.twitch.tv/mount"], "subreddit": ["moount"]}, "path": {"255-258": [[1004, 383], [1045, 383], [1045, 424], [1004, 424], [1004, 397]]}, "center": {"255-258": [1025, 404]}}, {"id": 3556, "name": "2B and 9S", "description": "2B and 9S characters from the game NieR: Automata", "links": {"subreddit": ["nier"], "discord": ["ZFFmVeYsDK"]}, "path": {"255-258": [[-1396, 30], [-1380, 30], [-1378, 40], [-1388, 46], [-1400, 41], [-1399, 34]]}, "center": {"255-258": [-1389, 38]}}, {"id": 3557, "name": "Emil", "description": "Emil is an important character in the NieR series of video games. He is a skeleton-like being containing immense power. The author of the series, Yoko Taro, wears a mask of Emil at all public events.", "links": {"subreddit": ["nier"], "discord": ["ZFFmVeYsDK"]}, "path": {"158-162": [[-180, 975], [-156, 975], [-156, 999], [-180, 999]]}, "center": {"158-162": [-168, 987]}}, {"id": 3558, "name": "Republic of Vicanistán", "description": "Vicanistán is a fictional country organized by the city of Ramos Mejía, Argentina. The nation is hosted on a discord server of the same name.\n\nThe Vikanniskaya Nation is governed under an Absolute Darwinist Monarchy, a system of government that consists of attributing all power to a \"Gran Líder\". The leader is elected through a competition system that confronts the heads of the Vicanistan \"Casas\", who dispute the throne in a game tournament called The Leader's Cup.", "links": {"discord": ["hWB3kbgZEA"]}, "path": {"221-237": [[1468, 204], [1468, 210], [1479, 210], [1479, 203], [1469, 203], [1468, 203]]}, "center": {"221-237": [1474, 207]}}, -{"id": 3559, "name": "Rhythm Bang", "description": "Logo and Ship from the indie rhythm game Rhythm Bang.", "links": {"website": ["https://store.steampowered.com/app/2156810/Rhythm_Bang/"], "discord": ["XrUssQEpJb"]}, "path": {"231-258": [[1275, 322], [1271, 322], [1271, 326], [1275, 326], [1275, 322], [1285, 322], [1285, 326], [1284, 325], [1284, 323], [1284, 322]]}, "center": {"231-258": [1273, 324]}}, -{"id": 3560, "name": "Pico Bolivar and Merida Cable Cart", "description": "Pico Bolívar is the highest mountain in Venezuela, at 4,978 metres (16,332 ft).[1] Located in Mérida State. Drawn is also the Merida Cable Cart, the highest and second longest cable car in the world, a journey of 12.5 kilometres, reaching an elevation of 4,765 meters.", "links": {"website": ["https://en.wikipedia.org/wiki/Pico_Bolívar", "https://en.wikipedia.org/wiki/Mérida_cable_car"], "subreddit": ["vzla"]}, "path": {"214-258": [[1499, 812], [1487, 802], [1469, 815], [1463, 815], [1452, 824], [1499, 825]]}, "center": {"214-258": [1486, 815]}}, -{"id": 3561, "name": "Holy Hell", "description": "The words \"Holy Hell.\" This is a catchphrase in r/AnarchyChess. \n\nIt originates from a user being confused about how his pawn was taken by another pawn when it didn't even move to the same square.\n\nIt was taken using the move \"en passant.\" Another user told them to \"Google en passant,\" to which the first user responded, \"Holy Hell!\"", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"207-258": [[-1199, 540], [-1190, 540], [-1190, 545], [-1199, 545]]}, "center": {"207-258": [-1194, 543]}}, -{"id": 3562, "name": "The Louvre Museum", "description": "The Louvre Museum (french: le musée du Louvre) is a french national art museum located in Paris. The Louvre is the world's most visited museum and holds many famous artworks such as the Mona Lisa and the Venus de Milo", "links": {"website": ["https://en.wikipedia.org/wiki/Louvre"]}, "path": {"250-258": [[888, -96], [888, -119], [892, -124], [931, -124], [934, -136], [944, -136], [949, -124], [983, -121], [982, -96]]}, "center": {"250-258": [940, -111]}}, -{"id": 3563, "name": "Garten of Banban", "description": "The characters Stinger Flynn, Jumbo Josh, and Opila Bird from the 2023 game by the Euphoric Brothers, Garten of Banban.", "links": {"website": ["https://www.euphoricbrothers.com/games"]}, "path": {"250-258": [[670, 630], [675, 630], [680, 635], [680, 645], [669, 646], [669, 632], [671, 630]]}, "center": {"250-258": [675, 638]}}, -{"id": 3564, "name": "The Chalkeaters", "description": "The Chalkeaters are a musical group composing humorous songs involving internet and gaming culture.\n \nA brief song list includes \"Bowsette\" (2019), \"A Songus Among Us\" (2022), \"Lock Me Up (Quarantine Song)\" (2020), \"It Just Works\" (2019)", "links": {"website": ["https://thechalkeaters.bandcamp.com/", "https://www.youtube.com/channel/UCYSvX0lqo-ZinYNQSHVCqlQ"], "subreddit": ["thechalkeaters"]}, "path": {"155-258": [[-905, 359], [-867, 359], [-867, 375], [-877, 375], [-877, 367], [-905, 367]]}, "center": {"155-258": [-872, 365]}}, -{"id": 3565, "name": "Majora's Mask", "description": "Majora's Mask is an item, object, and final boss of The Legend Of Zelda: Majora's Mask", "links": {"website": ["https://zelda.fandom.com/wiki/Majora%27s_Mask_(Item)"], "subreddit": ["zelda", "ZeldaMemes"]}, "path": {"189-191": [[-815, 502], [-817, 500], [-820, 503], [-820, 504], [-822, 506], [-819, 509], [-818, 508], [-818, 510], [-817, 511], [-817, 512], [-816, 513], [-815, 513], [-814, 512], [-814, 503]], "192-258": [[-815, 513], [-816, 514], [-817, 513], [-817, 512], [-818, 512], [-819, 513], [-820, 512], [-819, 511], [-819, 510], [-821, 512], [-822, 511], [-820, 509], [-822, 509], [-823, 508], [-822, 507], [-820, 507], [-820, 506], [-818, 504], [-818, 503], [-817, 502], [-815, 503], [-815, 504], [-814, 505], [-814, 512]]}, "center": {"189-191": [-817, 505], "192-258": [-817, 507]}}, -{"id": 3567, "name": "Navi", "description": "Navi is a fairy that is a companion to Link in The Legend Of Zelda: Ocarina Of Time", "links": {"website": ["https://zelda.fandom.com/wiki/Navi"], "subreddit": ["zelda", "yahaha_irl"]}, "path": {"226-259": [[-1284, 457], [-1288, 461], [-1290, 468], [-1299, 467], [-1301, 453], [-1293, 457], [-1287, 454]]}, "center": {"226-259": [-1294, 462]}}, -{"id": 3568, "name": "LOONA", "description": "Loona is a former South Korean girl group, composed of TWELVE members: Heejin, Hyunjin, Haseul, Vivi, Yeojin, Kim Lip, Jinsoul, Choerry, Yves, Chuu, Go Won, and HyeJu.", "links": {"subreddit": ["loona"], "discord": ["HueUcMKC"]}, "path": {"250-258": [[1379, 10], [1389, 10], [1389, 22], [1379, 22], [1378, 10]]}, "center": {"250-258": [1384, 16]}}, -{"id": 3569, "name": "Kobo Kanaeru", "description": "Kobo Kanaeru is a streamer on Youtube and is a member of Hololive Indonesia's 3rd generation. There is a joke with hololive and its community where she is the daughter of Takanashi Kiara and Mori Calliope. This artwork of her is based off of Zetta Zero's animation \"You're adopted Kobo.\" VTubers Place drew Kobo on top of Kiara's chest after vandalizers quickly removed Kiara's clothes early into the build.", "links": {"website": ["https://www.youtube.com/@KoboKanaeru/featured", "https://youtu.be/5gJdA9W1HMw"], "subreddit": ["Hololive"], "discord": ["kobokerz", "vtubersplace"]}, "path": {"250-258": [[-163, -824], [-163, -828], [-159, -828], [-159, -837], [-160, -837], [-160, -845], [-161, -845], [-161, -847], [-162, -847], [-162, -850], [-163, -851], [-163, -852], [-164, -853], [-164, -854], [-165, -854], [-165, -855], [-167, -855], [-168, -854], [-172, -854], [-173, -855], [-175, -855], [-176, -856], [-181, -856], [-181, -857], [-182, -858], [-183, -859], [-183, -860], [-182, -860], [-182, -861], [-181, -862], [-180, -863], [-181, -862], [-182, -861], [-182, -860], [-183, -860], [-183, -859], [-182, -858], [-181, -857], [-181, -856], [-182, -856], [-183, -855], [-184, -855], [-189, -850], [-189, -849], [-190, -849], [-190, -848], [-193, -848], [-193, -847], [-192, -846], [-192, -845], [-193, -844], [-194, -844], [-195, -843], [-195, -842], [-194, -841], [-192, -841], [-192, -839], [-193, -838], [-194, -838], [-194, -837], [-197, -837], [-198, -836], [-198, -835], [-197, -835], [-197, -834], [-197, -833], [-198, -833], [-198, -831], [-199, -831], [-198, -831], [-198, -828], [-199, -828], [-199, -824], [-181, -824]]}, "center": {"250-258": [-177, -840]}}, +{"id": 3559, "name": "Rhythm Bang", "description": "Logo and Ship from the indie rhythm game Rhythm Bang.", "links": {"website": ["https://store.steampowered.com/app/2156810/Rhythm_Bang/"], "discord": ["XrUssQEpJb"]}, "path": {"231-258, T": [[1275, 322], [1271, 322], [1271, 326], [1275, 326], [1275, 322], [1285, 322], [1285, 326], [1284, 325], [1284, 323], [1284, 322]]}, "center": {"231-258, T": [1273, 324]}}, +{"id": 3560, "name": "Pico Bolivar and Merida Cable Cart", "description": "Pico Bolívar is the highest mountain in Venezuela, at 4,978 metres (16,332 ft).[1] Located in Mérida State. Drawn is also the Merida Cable Cart, the highest and second longest cable car in the world, a journey of 12.5 kilometres, reaching an elevation of 4,765 meters.", "links": {"website": ["https://en.wikipedia.org/wiki/Pico_Bolívar", "https://en.wikipedia.org/wiki/Mérida_cable_car"], "subreddit": ["vzla"]}, "path": {"214-258, T": [[1499, 812], [1487, 802], [1469, 815], [1463, 815], [1452, 824], [1499, 825]]}, "center": {"214-258, T": [1486, 815]}}, +{"id": 3561, "name": "Holy Hell", "description": "The words \"Holy Hell.\" This is a catchphrase in r/AnarchyChess. \n\nIt originates from a user being confused about how his pawn was taken by another pawn when it didn't even move to the same square.\n\nIt was taken using the move \"en passant.\" Another user told them to \"Google en passant,\" to which the first user responded, \"Holy Hell!\"", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"207-258, T": [[-1199, 540], [-1190, 540], [-1190, 545], [-1199, 545]]}, "center": {"207-258, T": [-1194, 543]}}, +{"id": 3562, "name": "The Louvre Museum", "description": "The Louvre Museum (french: le musée du Louvre) is a french national art museum located in Paris. The Louvre is the world's most visited museum and holds many famous artworks such as the Mona Lisa and the Venus de Milo", "links": {"website": ["https://en.wikipedia.org/wiki/Louvre"]}, "path": {"250-258, T": [[888, -96], [888, -119], [892, -124], [931, -124], [934, -136], [944, -136], [949, -124], [983, -121], [982, -96]]}, "center": {"250-258, T": [940, -111]}}, +{"id": 3563, "name": "Garten of Banban", "description": "The characters Stinger Flynn, Jumbo Josh, and Opila Bird from the 2023 game by the Euphoric Brothers, Garten of Banban.", "links": {"website": ["https://www.euphoricbrothers.com/games"]}, "path": {"250-258, T": [[670, 630], [675, 630], [680, 635], [680, 645], [669, 646], [669, 632], [671, 630]]}, "center": {"250-258, T": [675, 638]}}, +{"id": 3564, "name": "The Chalkeaters", "description": "The Chalkeaters are a musical group composing humorous songs involving internet and gaming culture.\n \nA brief song list includes \"Bowsette\" (2019), \"A Songus Among Us\" (2022), \"Lock Me Up (Quarantine Song)\" (2020), \"It Just Works\" (2019)", "links": {"website": ["https://thechalkeaters.bandcamp.com/", "https://www.youtube.com/channel/UCYSvX0lqo-ZinYNQSHVCqlQ"], "subreddit": ["thechalkeaters"]}, "path": {"155-258, T": [[-905, 359], [-867, 359], [-867, 375], [-877, 375], [-877, 367], [-905, 367]]}, "center": {"155-258, T": [-872, 365]}}, +{"id": 3565, "name": "Majora's Mask", "description": "Majora's Mask is an item, object, and final boss of The Legend Of Zelda: Majora's Mask", "links": {"website": ["https://zelda.fandom.com/wiki/Majora%27s_Mask_(Item)"], "subreddit": ["zelda", "ZeldaMemes"]}, "path": {"189-191": [[-815, 502], [-817, 500], [-820, 503], [-820, 504], [-822, 506], [-819, 509], [-818, 508], [-818, 510], [-817, 511], [-817, 512], [-816, 513], [-815, 513], [-814, 512], [-814, 503]], "192-258, T": [[-815, 513], [-816, 514], [-817, 513], [-817, 512], [-818, 512], [-819, 513], [-820, 512], [-819, 511], [-819, 510], [-821, 512], [-822, 511], [-820, 509], [-822, 509], [-823, 508], [-822, 507], [-820, 507], [-820, 506], [-818, 504], [-818, 503], [-817, 502], [-815, 503], [-815, 504], [-814, 505], [-814, 512]]}, "center": {"189-191": [-817, 505], "192-258, T": [-817, 507]}}, +{"id": 3567, "name": "Navi", "description": "Navi is a fairy that is a companion to Link in The Legend Of Zelda: Ocarina Of Time", "links": {"website": ["https://zelda.fandom.com/wiki/Navi"], "subreddit": ["zelda", "yahaha_irl"]}, "path": {"226-259, T": [[-1284, 457], [-1288, 461], [-1290, 468], [-1299, 467], [-1301, 453], [-1293, 457], [-1287, 454]]}, "center": {"226-259, T": [-1294, 462]}}, +{"id": 3568, "name": "LOONA", "description": "Loona is a former South Korean girl group, composed of TWELVE members: Heejin, Hyunjin, Haseul, Vivi, Yeojin, Kim Lip, Jinsoul, Choerry, Yves, Chuu, Go Won, and HyeJu.", "links": {"subreddit": ["loona"], "discord": ["HueUcMKC"]}, "path": {"250-258, T": [[1379, 10], [1389, 10], [1389, 22], [1379, 22], [1378, 10]]}, "center": {"250-258, T": [1384, 16]}}, +{"id": 3569, "name": "Kobo Kanaeru", "description": "Kobo Kanaeru is a streamer on Youtube and is a member of Hololive Indonesia's 3rd generation. There is a joke with hololive and its community where she is the daughter of Takanashi Kiara and Mori Calliope. This artwork of her is based off of Zetta Zero's animation \"You're adopted Kobo.\" VTubers Place drew Kobo on top of Kiara's chest after vandalizers quickly removed Kiara's clothes early into the build.", "links": {"website": ["https://www.youtube.com/@KoboKanaeru/featured", "https://youtu.be/5gJdA9W1HMw"], "subreddit": ["Hololive"], "discord": ["kobokerz", "vtubersplace"]}, "path": {"250-258, T": [[-163, -824], [-163, -828], [-159, -828], [-159, -837], [-160, -837], [-160, -845], [-161, -845], [-161, -847], [-162, -847], [-162, -850], [-163, -851], [-163, -852], [-164, -853], [-164, -854], [-165, -854], [-165, -855], [-167, -855], [-168, -854], [-172, -854], [-173, -855], [-175, -855], [-176, -856], [-181, -856], [-181, -857], [-182, -858], [-183, -859], [-183, -860], [-182, -860], [-182, -861], [-181, -862], [-180, -863], [-181, -862], [-182, -861], [-182, -860], [-183, -860], [-183, -859], [-182, -858], [-181, -857], [-181, -856], [-182, -856], [-183, -855], [-184, -855], [-189, -850], [-189, -849], [-190, -849], [-190, -848], [-193, -848], [-193, -847], [-192, -846], [-192, -845], [-193, -844], [-194, -844], [-195, -843], [-195, -842], [-194, -841], [-192, -841], [-192, -839], [-193, -838], [-194, -838], [-194, -837], [-197, -837], [-198, -836], [-198, -835], [-197, -835], [-197, -834], [-197, -833], [-198, -833], [-198, -831], [-199, -831], [-198, -831], [-198, -828], [-199, -828], [-199, -824], [-181, -824]]}, "center": {"250-258, T": [-177, -840]}}, {"id": 3570, "name": "Cuphead", "description": "Cuphead is the protagonist of the Rubberhose-inspired franchise of the same name, made by Canadian independent video game company Studio MDRH, releasing originally on September 29, 2017", "links": {"website": ["https://studiomdhr.com"], "subreddit": ["Cuphead"], "discord": ["PHmyJYvg29"]}, "path": {"198-203": [[-1119, -830], [-1115, -830], [-1114, -829], [-1113, -828], [-1112, -827], [-1106, -827], [-1105, -826], [-1104, -826], [-1103, -825], [-1102, -824], [-1102, -819], [-1103, -818], [-1103, -817], [-1104, -816], [-1105, -815], [-1106, -815], [-1107, -814], [-1108, -814], [-1112, -814], [-1113, -815], [-1114, -815], [-1115, -816], [-1116, -817], [-1117, -817], [-1119, -817], [-1120, -818], [-1121, -819], [-1121, -821], [-1120, -822], [-1120, -823], [-1119, -823], [-1118, -823], [-1117, -823], [-1117, -824], [-1116, -825], [-1115, -826], [-1116, -827], [-1117, -827], [-1118, -827], [-1119, -827], [-1120, -827], [-1120, -828], [-1120, -829]]}, "center": {"198-203": [-1110, -821]}}, {"id": 3571, "name": "Blender", "description": "A free 3D model and rendering program used by millions. It was originally created in the Netherlands and its headquarters are located in Amsterdam.", "links": {"website": ["https://www.blender.org"]}, "path": {"251": [[-422, -523], [-415, -523], [-408, -530], [-408, -536], [-420, -548], [-424, -548], [-424, -542], [-433, -542], [-433, -537], [-429, -537], [-436, -530], [-433, -526], [-429, -530]]}, "center": {"251": [-419, -534]}}, -{"id": 3572, "name": "Rivulet", "description": "Rivulet is a playable Slugcat from the indie game Rain World. It is part of the Downpour DLC.", "links": {"website": ["https://rainworld.miraheze.org/wiki/Rivulet"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258": [[-1260, 248], [-1260, 246], [-1259, 247], [-1258, 247], [-1258, 246], [-1258, 248], [-1258, 250], [-1259, 249]]}, "center": {"250-258": [-1259, 248]}}, -{"id": 3573, "name": "luv4s_ minecraft skin", "description": "a little skin head from minecraft!!", "links": {}, "path": {"250-258": [[-224, 829], [-217, 829], [-217, 836], [-224, 836]]}, "center": {"250-258": [-220, 833]}}, -{"id": 3574, "name": "Il Vaticano", "description": "A made-up meme-move created by r/anarchychess. The rules states that, when two pawns are placed between two bishops, the pawns will disappear.", "links": {"subreddit": ["anarchychess"], "discord": ["anarchychess"]}, "path": {"223-258": [[-1220, 542], [-1220, 540], [-1219, 539], [-1220, 538], [-1220, 537], [-1219, 536], [-1218, 535], [-1216, 535], [-1216, 533], [-1214, 533], [-1213, 532], [-1208, 532], [-1208, 533], [-1207, 533], [-1205, 533], [-1202, 535], [-1202, 536], [-1201, 537], [-1201, 538], [-1202, 539], [-1201, 540], [-1201, 541], [-1202, 542]]}, "center": {"223-258": [-1210, 537]}}, -{"id": 3575, "name": "Secco rottario (Jojo's Part 5)", "description": "A minor antagonist of Jojo's Bizarre Adventure Part 5: Golden wind. He sits on top of the Oasis band artwork.\n\nStand: Oasis\n\n*Barking noises*", "links": {}, "path": {"250-258": [[-1141, -85], [-1135, -85], [-1136, -81], [-1141, -81]]}, "center": {"250-258": [-1138, -83]}}, +{"id": 3572, "name": "Rivulet", "description": "Rivulet is a playable Slugcat from the indie game Rain World. It is part of the Downpour DLC.", "links": {"website": ["https://rainworld.miraheze.org/wiki/Rivulet"], "subreddit": ["rainworld"], "discord": ["rainworld"]}, "path": {"250-258, T": [[-1260, 248], [-1260, 246], [-1259, 247], [-1258, 247], [-1258, 246], [-1258, 248], [-1258, 250], [-1259, 249]]}, "center": {"250-258, T": [-1259, 248]}}, +{"id": 3573, "name": "luv4s_ minecraft skin", "description": "a little skin head from minecraft!!", "links": {}, "path": {"250-258, T": [[-224, 829], [-217, 829], [-217, 836], [-224, 836]]}, "center": {"250-258, T": [-220, 833]}}, +{"id": 3574, "name": "Il Vaticano", "description": "A made-up meme-move created by r/anarchychess. The rules states that, when two pawns are placed between two bishops, the pawns will disappear.", "links": {"subreddit": ["anarchychess"], "discord": ["anarchychess"]}, "path": {"223-258, T": [[-1220, 542], [-1220, 540], [-1219, 539], [-1220, 538], [-1220, 537], [-1219, 536], [-1218, 535], [-1216, 535], [-1216, 533], [-1214, 533], [-1213, 532], [-1208, 532], [-1208, 533], [-1207, 533], [-1205, 533], [-1202, 535], [-1202, 536], [-1201, 537], [-1201, 538], [-1202, 539], [-1201, 540], [-1201, 541], [-1202, 542]]}, "center": {"223-258, T": [-1210, 537]}}, +{"id": 3575, "name": "Secco rottario (Jojo's Part 5)", "description": "A minor antagonist of Jojo's Bizarre Adventure Part 5: Golden wind. He sits on top of the Oasis band artwork.\n\nStand: Oasis\n\n*Barking noises*", "links": {}, "path": {"250-258, T": [[-1141, -85], [-1135, -85], [-1136, -81], [-1141, -81]]}, "center": {"250-258, T": [-1138, -83]}}, {"id": 3576, "name": "Kasane Teto", "description": "Kasane Teto is an UTAU, originally created as a troll VOCALOID by fans; a friendly joke that became an icon in the early Vsynth years, even appearing in some Project DIVA games, making her officially recognized by Crypton Future Media. This small artwork depicts her in her newly released SynthV outfit, released on April 27th, consisting of a fully sleeved uniform with two outer short sleeves, a high-waisted skirt with familiar belt, as well as her iconic red twin drills, now weaving a ribbon on the left drill.", "links": {"website": ["https://kasaneteto.jp/"], "subreddit": ["KasaneTeto"]}, "path": {"173-238": [[-684, 718], [-685, 719], [-685, 721], [-684, 722], [-684, 724], [-683, 725], [-683, 727], [-682, 728], [-681, 729], [-680, 728], [-680, 727], [-679, 727], [-678, 727], [-678, 728], [-677, 728], [-676, 729], [-675, 729], [-675, 730], [-676, 731], [-677, 732], [-678, 733], [-678, 734], [-679, 735], [-679, 736], [-678, 737], [-676, 737], [-676, 741], [-674, 741], [-674, 738], [-672, 738], [-672, 741], [-670, 741], [-670, 737], [-668, 737], [-667, 736], [-667, 735], [-668, 734], [-668, 733], [-669, 732], [-670, 731], [-671, 730], [-670, 729], [-669, 728], [-668, 728], [-668, 727], [-667, 727], [-666, 727], [-666, 728], [-665, 729], [-664, 728], [-663, 727], [-663, 726], [-663, 725], [-662, 724], [-662, 722], [-661, 721], [-661, 720], [-661, 719], [-662, 718], [-663, 717], [-662, 716], [-662, 715], [-663, 714], [-664, 715], [-665, 716], [-666, 716], [-666, 713], [-667, 714], [-668, 714], [-670, 716], [-671, 717], [-672, 717], [-673, 716], [-672, 715], [-673, 714], [-674, 715], [-675, 716], [-676, 716], [-678, 714], [-679, 713], [-679, 714], [-680, 715], [-680, 718]]}, "center": {"173-238": [-673, 723]}}, -{"id": 3577, "name": "Prisoner Bobby", "description": "Prisoner Bobby is a nickname given by the Dead Cells community to the main character's artstyle in the game's trailers, animated by Bobbypills. The game also references it with a unique outfit based on the way he was drawn.", "links": {"subreddit": ["deadcells"]}, "path": {"250-258": [[-304, 174], [-306, 174], [-307, 173], [-307, 171], [-306, 170], [-305, 169], [-304, 168], [-303, 167], [-304, 166], [-304, 162], [-303, 161], [-304, 160], [-305, 159], [-305, 154], [-304, 152], [-302, 152], [-302, 151], [-301, 150], [-300, 151], [-300, 152], [-301, 153], [-302, 152], [-304, 153], [-303, 154], [-303, 155], [-303, 156], [-302, 157], [-302, 158], [-301, 157], [-301, 156], [-300, 158], [-299, 159], [-298, 160], [-297, 161], [-296, 162], [-296, 163], [-295, 164], [-295, 168], [-296, 169], [-297, 170], [-296, 171], [-295, 171], [-294, 172], [-295, 173], [-296, 174], [-297, 175], [-298, 174], [-299, 173], [-300, 173], [-301, 174], [-302, 173], [-303, 173]]}, "center": {"250-258": [-300, 164]}}, -{"id": 3578, "name": "Smol Takodachis", "description": "Takodachi is the fan name of the vtuber Ninomae Ina'nis from Hololive EN, portrayed as small purple octopuses with a halo.", "links": {"discord": ["tentacult", "vtubersplace"]}, "path": {"176-258": [[-313, -833], [-313, -832], [-281, -832], [-282, -839], [-282, -843], [-301, -843], [-302, -842], [-303, -841], [-304, -840], [-305, -839], [-306, -838], [-306, -837], [-306, -836], [-308, -836], [-308, -835], [-309, -835], [-310, -835], [-310, -834], [-311, -834], [-313, -834]]}, "center": {"176-258": [-296, -837]}}, -{"id": 3579, "name": "Super Bear Adventure", "description": "Super Bear Adventure is a 3D platformer game inspired by late 90s games.", "links": {"website": ["https://superbearadventure.com/"], "subreddit": ["superbear"], "discord": ["super-bear-adventure-398832325728796672"]}, "path": {"2-22": [[-198, 243], [-191, 243], [-191, 246], [-182, 246], [-182, 243], [-175, 243], [-175, 250], [-178, 250], [-178, 263], [-195, 263], [-195, 250], [-198, 250]], "23-29": [[-136, 189], [-135, 189], [-135, 190], [-132, 190], [-132, 189], [-131, 189], [-131, 190], [-132, 190], [-132, 193], [-135, 193], [-135, 190], [-136, 190]], "47-64": [[-92, 183], [-85, 183], [-85, 186], [-76, 186], [-76, 183], [-69, 183], [-69, 190], [-72, 190], [-72, 203], [-89, 203], [-89, 190], [-92, 190]], "86-100": [[-92, 178], [-85, 178], [-85, 181], [-76, 181], [-76, 178], [-69, 178], [-69, 185], [-72, 185], [-72, 194], [-77, 194], [-77, 198], [-89, 198], [-89, 185], [-92, 185]], "155-160": [[608, 778], [615, 778], [615, 781], [624, 781], [624, 778], [631, 778], [631, 785], [628, 785], [628, 798], [611, 798], [611, 785], [608, 785]], "183-258": [[-211, 218], [-209, 218], [-209, 219], [-207, 219], [-207, 218], [-205, 218], [-205, 220], [-206, 220], [-206, 224], [-210, 224], [-210, 220], [-211, 220]]}, "center": {"2-22": [-186, 255], "23-29": [-133, 192], "47-64": [-80, 195], "86-100": [-82, 188], "155-160": [620, 790], "183-258": [-208, 221]}}, -{"id": 3580, "name": "Rumia", "description": "Man-eating Youkai of Darkness and first boss from Touhou 6 : Embodiment of Scarlet Devil. \nHer presense on the polish flag comes from memes based on the existence of a town named Rumia in northen Poland\nThere were propositions of adding Rumia to the polish flag in return for help from the Touhou community. Negotiations with Touhou community started, but before they could finish Rumia was already added to the template and finished being drawn.", "links": {"subreddit": ["polandplace", "touhou"]}, "path": {"248-258": [[763, -112], [760, -115], [769, -117], [767, -104], [761, -100], [756, -117], [769, -119], [766, -100]]}, "center": {"248-258": [761, -110]}}, +{"id": 3577, "name": "Prisoner Bobby", "description": "Prisoner Bobby is a nickname given by the Dead Cells community to the main character's artstyle in the game's trailers, animated by Bobbypills. The game also references it with a unique outfit based on the way he was drawn.", "links": {"subreddit": ["deadcells"]}, "path": {"250-258, T": [[-304, 174], [-306, 174], [-307, 173], [-307, 171], [-306, 170], [-305, 169], [-304, 168], [-303, 167], [-304, 166], [-304, 162], [-303, 161], [-304, 160], [-305, 159], [-305, 154], [-304, 152], [-302, 152], [-302, 151], [-301, 150], [-300, 151], [-300, 152], [-301, 153], [-302, 152], [-304, 153], [-303, 154], [-303, 155], [-303, 156], [-302, 157], [-302, 158], [-301, 157], [-301, 156], [-300, 158], [-299, 159], [-298, 160], [-297, 161], [-296, 162], [-296, 163], [-295, 164], [-295, 168], [-296, 169], [-297, 170], [-296, 171], [-295, 171], [-294, 172], [-295, 173], [-296, 174], [-297, 175], [-298, 174], [-299, 173], [-300, 173], [-301, 174], [-302, 173], [-303, 173]]}, "center": {"250-258, T": [-300, 164]}}, +{"id": 3578, "name": "Smol Takodachis", "description": "Takodachi is the fan name of the vtuber Ninomae Ina'nis from Hololive EN, portrayed as small purple octopuses with a halo.", "links": {"discord": ["tentacult", "vtubersplace"]}, "path": {"176-258, T": [[-313, -833], [-313, -832], [-281, -832], [-282, -839], [-282, -843], [-301, -843], [-302, -842], [-303, -841], [-304, -840], [-305, -839], [-306, -838], [-306, -837], [-306, -836], [-308, -836], [-308, -835], [-309, -835], [-310, -835], [-310, -834], [-311, -834], [-313, -834]]}, "center": {"176-258, T": [-296, -837]}}, +{"id": 3579, "name": "Super Bear Adventure", "description": "Super Bear Adventure is a 3D platformer game inspired by late 90s games.", "links": {"website": ["https://superbearadventure.com/"], "subreddit": ["superbear"], "discord": ["super-bear-adventure-398832325728796672"]}, "path": {"2-22": [[-198, 243], [-191, 243], [-191, 246], [-182, 246], [-182, 243], [-175, 243], [-175, 250], [-178, 250], [-178, 263], [-195, 263], [-195, 250], [-198, 250]], "23-29": [[-136, 189], [-135, 189], [-135, 190], [-132, 190], [-132, 189], [-131, 189], [-131, 190], [-132, 190], [-132, 193], [-135, 193], [-135, 190], [-136, 190]], "47-64": [[-92, 183], [-85, 183], [-85, 186], [-76, 186], [-76, 183], [-69, 183], [-69, 190], [-72, 190], [-72, 203], [-89, 203], [-89, 190], [-92, 190]], "86-100": [[-92, 178], [-85, 178], [-85, 181], [-76, 181], [-76, 178], [-69, 178], [-69, 185], [-72, 185], [-72, 194], [-77, 194], [-77, 198], [-89, 198], [-89, 185], [-92, 185]], "155-160": [[608, 778], [615, 778], [615, 781], [624, 781], [624, 778], [631, 778], [631, 785], [628, 785], [628, 798], [611, 798], [611, 785], [608, 785]], "183-258, T": [[-211, 218], [-209, 218], [-209, 219], [-207, 219], [-207, 218], [-205, 218], [-205, 220], [-206, 220], [-206, 224], [-210, 224], [-210, 220], [-211, 220]]}, "center": {"2-22": [-186, 255], "23-29": [-133, 192], "47-64": [-80, 195], "86-100": [-82, 188], "155-160": [620, 790], "183-258, T": [-208, 221]}}, +{"id": 3580, "name": "Rumia", "description": "Man-eating Youkai of Darkness and first boss from Touhou 6 : Embodiment of Scarlet Devil. \nHer presense on the polish flag comes from memes based on the existence of a town named Rumia in northen Poland\nThere were propositions of adding Rumia to the polish flag in return for help from the Touhou community. Negotiations with Touhou community started, but before they could finish Rumia was already added to the template and finished being drawn.", "links": {"subreddit": ["polandplace", "touhou"]}, "path": {"248-258, T": [[763, -112], [760, -115], [769, -117], [767, -104], [761, -100], [756, -117], [769, -119], [766, -100]]}, "center": {"248-258, T": [761, -110]}}, {"id": 3581, "name": "SKZOOs", "description": "SKZOOs are animal characters representing the eight members of KPOP boy group Stray Kids. The SKZOOs were created by Stray Kids fans (Stays) on Discord and Reddit, and their allies.", "links": {"subreddit": ["straykids"], "discord": ["4ZDDru4s"]}, "path": {"175-217": [[-1400, -368], [-1400, -352], [-1382, -352], [-1382, -368]]}, "center": {"175-217": [-1391, -360]}}, -{"id": 3582, "name": "Charlotte from Genshin Impact", "description": "Charlotte is an upcoming character from Fontaine for Genshin Impact. Charlotte works as a journalist for The Steambird, a newspaper in Fontaine. She bright bluish eyes, and salmon pink colored hair that doesn't go past her shoulders. She also wears a monocle on her left eye and seems to keep her camera on her at all times.\n\nGenshin Impact is an action role-playing game developed by Chinese developer miHoYo and first published in 2020. The game features an anime-style open-world environment and an action-based battle system using elemental magic and character-switching.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Charlotte", "https://genshin.hoyoverse.com/en/", "https://en.wikipedia.org/wiki/Genshin_Impact"], "subreddit": ["CharlotteMains", "Genshin_Impact"]}, "path": {"194-258": [[-354, 677], [-354, 673], [-353, 673], [-353, 671], [-352, 671], [-346, 668], [-340, 668], [-339, 669], [-335, 671], [-334, 672], [-333, 674], [-332, 677], [-333, 678], [-334, 679], [-335, 681], [-335, 686], [-336, 687], [-337, 688], [-339, 689], [-338, 690], [-336, 691], [-334, 692], [-338, 692], [-339, 696], [-340, 696], [-340, 698], [-346, 698], [-347, 696], [-351, 696], [-352, 694], [-350, 691], [-348, 690], [-348, 689], [-349, 687], [-351, 685], [-351, 683], [-352, 685], [-353, 683], [-354, 682], [-354, 680], [-353, 678]]}, "center": {"194-258": [-343, 677]}}, -{"id": 3583, "name": "Quantum Moon", "description": "The Quantum Moon is a moon from the game Outer Wilds that changes location when it stops being observed.\n\nThe Quantum Moon was drawn at different places at different times around r/place. Don't blink or you'll miss it!", "links": {"subreddit": ["outerwilds"]}, "path": {"250-258": [[417, 936], [418, 936], [418, 937], [417, 937]]}, "center": {"250-258": [418, 937]}}, -{"id": 3584, "name": "Tokoyami Towa [Hololive]", "description": "Tokoyami Towa is a Japanese Vtuber associated with Hololive Production, debuting in its 4th Generation alongside Amane Kanata, Tsunomaki Watame, Kiryu Coco and Himemori Luna on the 3rd of January, 2020.\nTowa is known for her powerful deep singing voice which contrast with her usual speaking voice but mostly for her sweet and caring personality, contrasting with her lore stating she's a devil causing fans to call her an angel instead.\nWhen paired with Minato Aqua and Hoshimachi Suisei (the two girls on her left), they are known as StarEnd.", "links": {"website": ["https://www.youtube.com/channel/UC1uv2Oq6kNxgATlCiez59hw"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"207-258": [[1406, -787], [1409, -790], [1409, -793], [1405, -796], [1404, -799], [1403, -806], [1402, -809], [1400, -811], [1402, -813], [1402, -815], [1400, -815], [1397, -812], [1396, -818], [1394, -816], [1391, -816], [1390, -817], [1380, -817], [1379, -816], [1376, -816], [1374, -818], [1374, -812], [1370, -815], [1368, -815], [1367, -814], [1370, -811], [1367, -808], [1367, -800], [1366, -799], [1366, -797], [1364, -797], [1363, -796], [1363, -795], [1362, -794], [1361, -793], [1360, -792], [1360, -791], [1361, -790], [1362, -789], [1363, -788], [1364, -787]]}, "center": {"207-258": [1385, -802]}}, -{"id": 3585, "name": "VickyPalami", "description": "Skin de Minecraft de la Twitch Streamer (Ganadora del Esland \"Caster del año 2023\") VickyPalami\ny su Equipo Invicto de Esports \"CR2\"", "links": {"website": ["https://www.twitch.tv/vickypalami?sr=a"]}, "path": {"223-258": [[-1428, -754], [-1428, -695], [-1362, -695], [-1362, -701], [-1357, -701], [-1357, -754]]}, "center": {"223-258": [-1392, -724]}}, -{"id": 3586, "name": "From Tangier to La Güera", "description": "\"From Tangier to La Güera/Lagouira\" is a popular way for Moroccans to express the country's territorial integrity,Tangier being the northernmost city in the Kingdom,while La Güera is the southernmost point.(Including the disputed territory of Western Sahara)\nMorocco from North to South.", "links": {}, "path": {"250-258": [[577, 98], [630, 98], [630, 117], [594, 118], [570, 102], [575, 98]]}, "center": {"250-258": [600, 108]}}, +{"id": 3582, "name": "Charlotte from Genshin Impact", "description": "Charlotte is an upcoming character from Fontaine for Genshin Impact. Charlotte works as a journalist for The Steambird, a newspaper in Fontaine. She bright bluish eyes, and salmon pink colored hair that doesn't go past her shoulders. She also wears a monocle on her left eye and seems to keep her camera on her at all times.\n\nGenshin Impact is an action role-playing game developed by Chinese developer miHoYo and first published in 2020. The game features an anime-style open-world environment and an action-based battle system using elemental magic and character-switching.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Charlotte", "https://genshin.hoyoverse.com/en/", "https://en.wikipedia.org/wiki/Genshin_Impact"], "subreddit": ["CharlotteMains", "Genshin_Impact"]}, "path": {"194-258, T": [[-354, 677], [-354, 673], [-353, 673], [-353, 671], [-352, 671], [-346, 668], [-340, 668], [-339, 669], [-335, 671], [-334, 672], [-333, 674], [-332, 677], [-333, 678], [-334, 679], [-335, 681], [-335, 686], [-336, 687], [-337, 688], [-339, 689], [-338, 690], [-336, 691], [-334, 692], [-338, 692], [-339, 696], [-340, 696], [-340, 698], [-346, 698], [-347, 696], [-351, 696], [-352, 694], [-350, 691], [-348, 690], [-348, 689], [-349, 687], [-351, 685], [-351, 683], [-352, 685], [-353, 683], [-354, 682], [-354, 680], [-353, 678]]}, "center": {"194-258, T": [-343, 677]}}, +{"id": 3583, "name": "Quantum Moon", "description": "The Quantum Moon is a moon from the game Outer Wilds that changes location when it stops being observed.\n\nThe Quantum Moon was drawn at different places at different times around r/place. Don't blink or you'll miss it!", "links": {"subreddit": ["outerwilds"]}, "path": {"250-258, T": [[417, 936], [418, 936], [418, 937], [417, 937]]}, "center": {"250-258, T": [418, 937]}}, +{"id": 3584, "name": "Tokoyami Towa [Hololive]", "description": "Tokoyami Towa is a Japanese Vtuber associated with Hololive Production, debuting in its 4th Generation alongside Amane Kanata, Tsunomaki Watame, Kiryu Coco and Himemori Luna on the 3rd of January, 2020.\nTowa is known for her powerful deep singing voice which contrast with her usual speaking voice but mostly for her sweet and caring personality, contrasting with her lore stating she's a devil causing fans to call her an angel instead.\nWhen paired with Minato Aqua and Hoshimachi Suisei (the two girls on her left), they are known as StarEnd.", "links": {"website": ["https://www.youtube.com/channel/UC1uv2Oq6kNxgATlCiez59hw"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"207-258, T": [[1406, -787], [1409, -790], [1409, -793], [1405, -796], [1404, -799], [1403, -806], [1402, -809], [1400, -811], [1402, -813], [1402, -815], [1400, -815], [1397, -812], [1396, -818], [1394, -816], [1391, -816], [1390, -817], [1380, -817], [1379, -816], [1376, -816], [1374, -818], [1374, -812], [1370, -815], [1368, -815], [1367, -814], [1370, -811], [1367, -808], [1367, -800], [1366, -799], [1366, -797], [1364, -797], [1363, -796], [1363, -795], [1362, -794], [1361, -793], [1360, -792], [1360, -791], [1361, -790], [1362, -789], [1363, -788], [1364, -787]]}, "center": {"207-258, T": [1385, -802]}}, +{"id": 3585, "name": "VickyPalami", "description": "Skin de Minecraft de la Twitch Streamer (Ganadora del Esland \"Caster del año 2023\") VickyPalami\ny su Equipo Invicto de Esports \"CR2\"", "links": {"website": ["https://www.twitch.tv/vickypalami?sr=a"]}, "path": {"223-258, T": [[-1428, -754], [-1428, -695], [-1362, -695], [-1362, -701], [-1357, -701], [-1357, -754]]}, "center": {"223-258, T": [-1392, -724]}}, +{"id": 3586, "name": "From Tangier to La Güera", "description": "\"From Tangier to La Güera/Lagouira\" is a popular way for Moroccans to express the country's territorial integrity,Tangier being the northernmost city in the Kingdom,while La Güera is the southernmost point.(Including the disputed territory of Western Sahara)\nMorocco from North to South.", "links": {}, "path": {"250-258, T": [[577, 98], [630, 98], [630, 117], [594, 118], [570, 102], [575, 98]]}, "center": {"250-258, T": [600, 108]}}, {"id": 3587, "name": "Blastoise", "description": "Blastoise is a fictional species of Pokémon, a popular franchise created by Nintendo, Game Freak, and Creatures. It is known as the \"Shellfish Pokémon\" and is part of the original 151 Pokémon introduced in the first-generation games, Pokémon Red and Blue (or Green in Japan). Blastoise is the final evolutionary stage of the Water-type starter Pokémon Squirtle, evolving from Wartortle at level 36.", "links": {"subreddit": ["pokemon"]}, "path": {"259": [[-1408, 332], [-1419, 336], [-1415, 327], [-1408, 325], [-1406, 318], [-1402, 314], [-1402, 308], [-1408, 302], [-1407, 299], [-1404, 299], [-1404, 296], [-1399, 297], [-1397, 300], [-1392, 300], [-1386, 308], [-1380, 308], [-1375, 304], [-1372, 304], [-1368, 307], [-1365, 304], [-1359, 303], [-1358, 306], [-1356, 307], [-1356, 311], [-1358, 315], [-1363, 323], [-1358, 326], [-1356, 328], [-1357, 338], [-1362, 343], [-1363, 348], [-1360, 351], [-1366, 359], [-1372, 359], [-1377, 355], [-1382, 355], [-1389, 357], [-1388, 354], [-1384, 349], [-1387, 349], [-1392, 354], [-1396, 354], [-1403, 352], [-1407, 348], [-1403, 343], [-1397, 341], [-1400, 338], [-1409, 341], [-1411, 341], [-1410, 337], [-1412, 337], [-1415, 338], [-1419, 336], [-1418, 335], [-1411, 339], [-1415, 336]]}, "center": {"259": [-1382, 328]}}, -{"id": 3588, "name": "Guido Mista (Jojo's Part 5)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind,\n\nStand: Sex Pistols\n\n\"Aahhh!! Giorno! Not so rough! No, not there! Nonono!! Oh! Be gentle! Gentle! Don't strip me! I can feel you! Ohh! No! No more!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1135, -89], [-1132, -89], [-1130, -89], [-1130, -82], [-1135, -82], [-1136, -86], [-1135, -89], [-1132, -88]]}, "center": {"250-258": [-1133, -85]}}, +{"id": 3588, "name": "Guido Mista (Jojo's Part 5)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind,\n\nStand: Sex Pistols\n\n\"Aahhh!! Giorno! Not so rough! No, not there! Nonono!! Oh! Be gentle! Gentle! Don't strip me! I can feel you! Ohh! No! No more!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1135, -89], [-1132, -89], [-1130, -89], [-1130, -82], [-1135, -82], [-1136, -86], [-1135, -89], [-1132, -88]]}, "center": {"250-258, T": [-1133, -85]}}, {"id": 3589, "name": "Greggs logo", "description": "Greggs is a popular baked goods/cafe chain in the UK famous for its sausage rolls (depicted). This symbol was involved in the Perrababy/Greggs war, resisting a large, rouge Swedish streamer called Perrababy who insisted on expanding over the Greggs logo as well as a memorial by the destiny comunity to the actor Lance Reddick, and the flag of South Korea, who the UK formed a strong alliance with. The logo was later moved to the main UK flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Greggs"], "subreddit": ["UkOnPlace"], "discord": ["ukonplace"]}, "path": {"192-195": [[-780, 447], [-763, 447], [-763, 464], [-780, 464]], "196-201": [[-780, 464], [-780, 481], [-801, 481], [-801, 464]]}, "center": {"192-195": [-771, 456], "196-201": [-790, 473]}}, -{"id": 3590, "name": "Yasuho Hirose (Jojo's Part 8)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 8: Jojolion\n\nStand: Paisley Park\n\n\"This is a story about breaking a curse...\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1188, -83], [-1183, -84], [-1182, -77], [-1183, -75], [-1186, -75], [-1188, -78]]}, "center": {"250-258": [-1185, -79]}}, -{"id": 3591, "name": "drednot.io", "description": "A free multiplayer ship construction and combat game. Build a flying battleship with your friends and conquer the skies! Also known as Deep Space Airships.", "links": {"website": ["https://drednot.io/"], "subreddit": ["drednot"], "discord": ["dhFDzv4pDw"]}, "path": {"244-258": [[1399, -682], [1389, -682], [1389, -672], [1399, -672]]}, "center": {"244-258": [1394, -677]}}, -{"id": 3592, "name": "Empanada", "description": "Venezuelan empanadas are pastries with a crescent shape, made with corn flour, which sets them apart from other empanadas. Additionally, they are gluten-free, making them an appropriate choice for those with gluten intolerance.\n\nToday, the consumption of empanadas has spread throughout the territory and is a significant part of the daily diet of Venezuelans.", "links": {"subreddit": ["vzla"]}, "path": {"250-258": [[1423, 823], [1419, 818], [1420, 813], [1423, 810], [1423, 816]]}, "center": {"250-258": [1421, 816]}}, -{"id": 3593, "name": "Luzu", "description": "Luzu es uno de los youtubers hispanos de la Era Dorada que se mantienen en vigencia a día de hoy. Destaca principalmente por jugar PUBG, Minecraft y juegos de nostalgia. Ganador del Esland 2022 a Enfadado del Año. Actualmente es parte de QSMP.", "links": {"website": ["https://www.twitch.tv/luzu", "https://www.youtube.com/@luzugames", "https://twitter.com/luzugames"]}, "path": {"250-258": [[571, 548], [571, 589], [580, 589], [580, 548]]}, "center": {"250-258": [576, 569]}}, -{"id": 3594, "name": "Pirutastic", "description": "Pirutastic is an Argentinian Streamer and Content Creator, also known as Ponytastic, loved for his personality\n He is a master of driving in Gta San Andreas and creating giant towers in minecraft to try a waterdrop that ends up failing", "links": {"website": ["https://www.twitch.tv/pirutastic"]}, "path": {"173-259": [[-1091, -199], [-1091, -214], [-1076, -214], [-1076, -199]]}, "center": {"173-259": [-1083, -206]}}, +{"id": 3590, "name": "Yasuho Hirose (Jojo's Part 8)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 8: Jojolion\n\nStand: Paisley Park\n\n\"This is a story about breaking a curse...\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1188, -83], [-1183, -84], [-1182, -77], [-1183, -75], [-1186, -75], [-1188, -78]]}, "center": {"250-258, T": [-1185, -79]}}, +{"id": 3591, "name": "drednot.io", "description": "A free multiplayer ship construction and combat game. Build a flying battleship with your friends and conquer the skies! Also known as Deep Space Airships.", "links": {"website": ["https://drednot.io/"], "subreddit": ["drednot"], "discord": ["dhFDzv4pDw"]}, "path": {"244-258, T": [[1399, -682], [1389, -682], [1389, -672], [1399, -672]]}, "center": {"244-258, T": [1394, -677]}}, +{"id": 3592, "name": "Empanada", "description": "Venezuelan empanadas are pastries with a crescent shape, made with corn flour, which sets them apart from other empanadas. Additionally, they are gluten-free, making them an appropriate choice for those with gluten intolerance.\n\nToday, the consumption of empanadas has spread throughout the territory and is a significant part of the daily diet of Venezuelans.", "links": {"subreddit": ["vzla"]}, "path": {"250-258, T": [[1423, 823], [1419, 818], [1420, 813], [1423, 810], [1423, 816]]}, "center": {"250-258, T": [1421, 816]}}, +{"id": 3593, "name": "Luzu", "description": "Luzu es uno de los youtubers hispanos de la Era Dorada que se mantienen en vigencia a día de hoy. Destaca principalmente por jugar PUBG, Minecraft y juegos de nostalgia. Ganador del Esland 2022 a Enfadado del Año. Actualmente es parte de QSMP.", "links": {"website": ["https://www.twitch.tv/luzu", "https://www.youtube.com/@luzugames", "https://twitter.com/luzugames"]}, "path": {"250-258, T": [[571, 548], [571, 589], [580, 589], [580, 548]]}, "center": {"250-258, T": [576, 569]}}, +{"id": 3594, "name": "Pirutastic", "description": "Pirutastic is an Argentinian Streamer and Content Creator, also known as Ponytastic, loved for his personality\n He is a master of driving in Gta San Andreas and creating giant towers in minecraft to try a waterdrop that ends up failing", "links": {"website": ["https://www.twitch.tv/pirutastic"]}, "path": {"173-259, T": [[-1091, -199], [-1091, -214], [-1076, -214], [-1076, -199]]}, "center": {"173-259, T": [-1083, -206]}}, {"id": 3595, "name": "Vash glasses", "description": "The iconic glasses of Vash the Stampede, main character of the Trigun series.", "links": {"website": ["https://en.wikipedia.org/wiki/Trigun"], "subreddit": ["Trigun"]}, "path": {"178-187": [[-85, -501], [-87, -499], [-85, -496], [-79, -496], [-77, -498], [-80, -501]]}, "center": {"178-187": [-82, -498]}}, -{"id": 3596, "name": "Samuel de Champlain (tugboat)", "description": "Samuel de Champlain is a large, twin-screw tugboat owned by Lafarge North America and managed by Andrie Inc. The vessel is paired with the cement barge Innovation, transporting cement products between Lafarge facilities across the Great Lakes.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Samuel_de_Champlain_(tugboat)](https://en.wikipedia.org/wiki/Samuel_de_Champlain_(tugboat))"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"80-258": [[807, 168], [807, 172], [776, 172], [776, 171], [776, 170], [775, 170], [775, 169], [774, 169], [774, 166], [773, 166], [773, 165], [770, 165], [770, 164], [769, 164], [769, 163], [768, 163], [768, 162], [767, 162], [766, 162], [766, 163], [763, 163], [763, 162], [762, 162], [762, 161], [761, 161], [761, 160], [760, 160], [760, 159], [759, 159], [759, 158], [758, 158], [758, 157], [759, 157], [759, 156], [760, 156], [760, 155], [761, 155], [761, 154], [762, 154], [762, 153], [762, 152], [761, 152], [760, 152], [760, 151], [760, 150], [759, 150], [759, 149], [758, 149], [758, 148], [759, 148], [759, 149], [760, 149], [760, 150], [761, 150], [761, 151], [762, 151], [762, 152], [763, 152], [764, 152], [764, 153], [769, 153], [769, 154], [768, 154], [768, 155], [768, 156], [769, 156], [769, 157], [770, 157], [770, 158], [771, 158], [771, 159], [772, 159], [772, 160], [774, 160], [774, 159], [774, 158], [773, 158], [773, 157], [772, 157], [772, 154], [771, 154], [771, 152], [772, 152], [772, 151], [773, 151], [773, 150], [773, 149], [771, 149], [771, 148], [770, 148], [771, 148], [771, 147], [771, 144], [772, 144], [772, 143], [773, 143], [773, 142], [774, 142], [774, 140], [777, 140], [777, 137], [770, 137], [771, 137], [771, 136], [773, 136], [773, 135], [775, 135], [775, 134], [777, 134], [777, 133], [778, 133], [778, 132], [779, 132], [779, 139], [782, 139], [782, 140], [785, 140], [785, 139], [786, 139], [786, 138], [790, 138], [790, 137], [791, 137], [791, 134], [783, 134], [783, 133], [782, 133], [781, 133], [783, 133], [783, 132], [786, 132], [786, 131], [789, 131], [789, 130], [793, 130], [793, 136], [796, 136], [796, 137], [797, 137], [797, 139], [800, 139], [800, 138], [801, 138], [801, 137], [802, 137], [802, 145], [803, 145], [803, 146], [804, 146], [804, 150], [803, 150], [803, 151], [802, 151], [802, 152], [802, 153], [803, 153], [803, 154], [804, 154], [804, 156], [808, 156], [808, 158], [807, 158], [807, 162], [806, 162], [806, 163], [805, 163], [805, 166], [806, 166], [806, 167], [807, 167]]}, "center": {"80-258": [788, 155]}}, +{"id": 3596, "name": "Samuel de Champlain (tugboat)", "description": "Samuel de Champlain is a large, twin-screw tugboat owned by Lafarge North America and managed by Andrie Inc. The vessel is paired with the cement barge Innovation, transporting cement products between Lafarge facilities across the Great Lakes.", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Samuel_de_Champlain_(tugboat)](https://en.wikipedia.org/wiki/Samuel_de_Champlain_(tugboat))"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"80-258, T": [[807, 168], [807, 172], [776, 172], [776, 171], [776, 170], [775, 170], [775, 169], [774, 169], [774, 166], [773, 166], [773, 165], [770, 165], [770, 164], [769, 164], [769, 163], [768, 163], [768, 162], [767, 162], [766, 162], [766, 163], [763, 163], [763, 162], [762, 162], [762, 161], [761, 161], [761, 160], [760, 160], [760, 159], [759, 159], [759, 158], [758, 158], [758, 157], [759, 157], [759, 156], [760, 156], [760, 155], [761, 155], [761, 154], [762, 154], [762, 153], [762, 152], [761, 152], [760, 152], [760, 151], [760, 150], [759, 150], [759, 149], [758, 149], [758, 148], [759, 148], [759, 149], [760, 149], [760, 150], [761, 150], [761, 151], [762, 151], [762, 152], [763, 152], [764, 152], [764, 153], [769, 153], [769, 154], [768, 154], [768, 155], [768, 156], [769, 156], [769, 157], [770, 157], [770, 158], [771, 158], [771, 159], [772, 159], [772, 160], [774, 160], [774, 159], [774, 158], [773, 158], [773, 157], [772, 157], [772, 154], [771, 154], [771, 152], [772, 152], [772, 151], [773, 151], [773, 150], [773, 149], [771, 149], [771, 148], [770, 148], [771, 148], [771, 147], [771, 144], [772, 144], [772, 143], [773, 143], [773, 142], [774, 142], [774, 140], [777, 140], [777, 137], [770, 137], [771, 137], [771, 136], [773, 136], [773, 135], [775, 135], [775, 134], [777, 134], [777, 133], [778, 133], [778, 132], [779, 132], [779, 139], [782, 139], [782, 140], [785, 140], [785, 139], [786, 139], [786, 138], [790, 138], [790, 137], [791, 137], [791, 134], [783, 134], [783, 133], [782, 133], [781, 133], [783, 133], [783, 132], [786, 132], [786, 131], [789, 131], [789, 130], [793, 130], [793, 136], [796, 136], [796, 137], [797, 137], [797, 139], [800, 139], [800, 138], [801, 138], [801, 137], [802, 137], [802, 145], [803, 145], [803, 146], [804, 146], [804, 150], [803, 150], [803, 151], [802, 151], [802, 152], [802, 153], [803, 153], [803, 154], [804, 154], [804, 156], [808, 156], [808, 158], [807, 158], [807, 162], [806, 162], [806, 163], [805, 163], [805, 166], [806, 166], [806, 167], [807, 167]]}, "center": {"80-258, T": [788, 155]}}, {"id": 3597, "name": "LOONA Logo", "description": "12 members K-pop Girl Group Loona (이달의 소녀) and the representative colors of each member", "links": {"website": ["http://www.loonatheworld.com"], "subreddit": ["LOONA"], "discord": ["loona"]}, "path": {"255-258": [[1384, 11], [1384, 10], [1384, 12], [1384, 14], [1384, 15], [1385, 16], [1384, 17], [1384, 18], [1384, 19], [1384, 20], [1384, 21], [1384, 22], [1385, 22], [1385, 20], [1386, 18], [1385, 17], [1385, 15], [1385, 13], [1385, 12], [1385, 11], [1385, 10], [1386, 11], [1386, 12], [1386, 13], [1385, 20], [1386, 21], [1387, 21], [1388, 18], [1388, 15], [1388, 13], [1388, 11], [1388, 10], [1389, 10], [1389, 11], [1389, 13], [1389, 15], [1389, 16], [1389, 18], [1389, 19], [1389, 21], [1389, 22], [1388, 22], [1387, 22], [1386, 22], [1383, 22], [1382, 22], [1381, 22], [1380, 22], [1379, 22], [1379, 20], [1379, 18], [1379, 16], [1379, 14], [1379, 13], [1379, 11], [1379, 10], [1383, 10], [1387, 10], [1387, 13]]}, "center": {"255-258": [1382, 18]}}, -{"id": 3598, "name": "Pygmalion AI", "description": "Pygmalion AI is an open-source conversational and role-playing language model. Its goal is to provide a free and open-source alternative to services such as ChatGPT and Character.AI.", "links": {"website": ["https://pygmalion.chat/"], "subreddit": ["Pygmalion_ai"], "discord": ["pygmalionai"]}, "path": {"250-258": [[-217, -808], [-202, -824], [-202, -821], [-214, -809]]}, "center": {"250-258": [-204, -821]}}, -{"id": 3599, "name": "Brewster from Animal Crossing", "description": "Brewster from Animal Crossing holding a baguette drawn by the community of \"Le Perchoir\".\n\n\"Le Perchoir\" is a Discord Partner community of French-speaking Animal Crossing fans.\n\nBrewster is the mascot of \"Le Perchoir\" (meaning \"The Roost\", which is the name of the café runed by Brewster in the game Animal Crossing).\n\nThis drawing was possible thanks to a collaboration between r/placeFR and \"Le Perchoir\". They also had some backup from the r/AnimalCrossing place Discord team.\n\n\"Le Perchoir\" was also helped by r/AnimalCrossingFrance as \"Le Perchoir\" is the official Discord server of that subreddit.", "links": {"website": ["https://twitter.com/LePerchoirAC"], "subreddit": ["AnimalCrossingFrance"], "discord": ["perchoir"]}, "path": {"160-165": [[-460, 586], [-454, 586], [-454, 585], [-450, 585], [-444, 579], [-444, 576], [-446, 575], [-451, 578], [-451, 576], [-452, 576], [-452, 570], [-453, 570], [-456, 567], [-459, 567], [-459, 568], [-461, 569], [-462, 571], [-462, 576], [-463, 577], [-463, 579], [-465, 579], [-464, 581], [-463, 583], [-461, 583], [-461, 581], [-460, 581], [-460, 584]], "166-258": [[-382, 551], [-381, 551], [-380, 551], [-380, 552], [-379, 552], [-378, 552], [-378, 553], [-378, 554], [-377, 554], [-377, 555], [-377, 556], [-377, 557], [-377, 558], [-377, 559], [-377, 560], [-376, 560], [-376, 561], [-376, 562], [-375, 562], [-375, 561], [-374, 561], [-374, 560], [-373, 560], [-373, 559], [-372, 559], [-371, 559], [-370, 559], [-369, 559], [-369, 560], [-369, 561], [-369, 562], [-369, 563], [-370, 563], [-370, 564], [-371, 564], [-371, 565], [-372, 565], [-372, 566], [-373, 566], [-373, 567], [-374, 567], [-374, 568], [-375, 568], [-375, 569], [-376, 569], [-377, 569], [-378, 569], [-379, 569], [-379, 568], [-379, 567], [-379, 566], [-379, 565], [-378, 565], [-379, 565], [-379, 566], [-379, 567], [-379, 568], [-380, 568], [-379, 568], [-379, 569], [-379, 570], [-380, 570], [-381, 570], [-382, 570], [-382, 569], [-382, 568], [-382, 569], [-382, 570], [-383, 570], [-384, 570], [-385, 570], [-385, 569], [-385, 568], [-384, 568], [-385, 568], [-385, 567], [-385, 566], [-385, 565], [-386, 565], [-386, 566], [-387, 566], [-388, 566], [-389, 566], [-389, 565], [-390, 565], [-390, 564], [-390, 563], [-389, 563], [-389, 562], [-388, 562], [-388, 561], [-388, 560], [-387, 560], [-387, 559], [-387, 558], [-387, 557], [-387, 556], [-387, 555], [-387, 554], [-386, 554], [-386, 553], [-386, 552], [-385, 552], [-384, 552], [-384, 551], [-383, 551]]}, "center": {"160-165": [-457, 577], "166-258": [-382, 561]}}, +{"id": 3598, "name": "Pygmalion AI", "description": "Pygmalion AI is an open-source conversational and role-playing language model. Its goal is to provide a free and open-source alternative to services such as ChatGPT and Character.AI.", "links": {"website": ["https://pygmalion.chat/"], "subreddit": ["Pygmalion_ai"], "discord": ["pygmalionai"]}, "path": {"250-258, T": [[-217, -808], [-202, -824], [-202, -821], [-214, -809]]}, "center": {"250-258, T": [-204, -821]}}, +{"id": 3599, "name": "Brewster from Animal Crossing", "description": "Brewster from Animal Crossing holding a baguette drawn by the community of \"Le Perchoir\".\n\n\"Le Perchoir\" is a Discord Partner community of French-speaking Animal Crossing fans.\n\nBrewster is the mascot of \"Le Perchoir\" (meaning \"The Roost\", which is the name of the café runed by Brewster in the game Animal Crossing).\n\nThis drawing was possible thanks to a collaboration between r/placeFR and \"Le Perchoir\". They also had some backup from the r/AnimalCrossing place Discord team.\n\n\"Le Perchoir\" was also helped by r/AnimalCrossingFrance as \"Le Perchoir\" is the official Discord server of that subreddit.", "links": {"website": ["https://twitter.com/LePerchoirAC"], "subreddit": ["AnimalCrossingFrance"], "discord": ["perchoir"]}, "path": {"160-165": [[-460, 586], [-454, 586], [-454, 585], [-450, 585], [-444, 579], [-444, 576], [-446, 575], [-451, 578], [-451, 576], [-452, 576], [-452, 570], [-453, 570], [-456, 567], [-459, 567], [-459, 568], [-461, 569], [-462, 571], [-462, 576], [-463, 577], [-463, 579], [-465, 579], [-464, 581], [-463, 583], [-461, 583], [-461, 581], [-460, 581], [-460, 584]], "166-258, T": [[-382, 551], [-381, 551], [-380, 551], [-380, 552], [-379, 552], [-378, 552], [-378, 553], [-378, 554], [-377, 554], [-377, 555], [-377, 556], [-377, 557], [-377, 558], [-377, 559], [-377, 560], [-376, 560], [-376, 561], [-376, 562], [-375, 562], [-375, 561], [-374, 561], [-374, 560], [-373, 560], [-373, 559], [-372, 559], [-371, 559], [-370, 559], [-369, 559], [-369, 560], [-369, 561], [-369, 562], [-369, 563], [-370, 563], [-370, 564], [-371, 564], [-371, 565], [-372, 565], [-372, 566], [-373, 566], [-373, 567], [-374, 567], [-374, 568], [-375, 568], [-375, 569], [-376, 569], [-377, 569], [-378, 569], [-379, 569], [-379, 568], [-379, 567], [-379, 566], [-379, 565], [-378, 565], [-379, 565], [-379, 566], [-379, 567], [-379, 568], [-380, 568], [-379, 568], [-379, 569], [-379, 570], [-380, 570], [-381, 570], [-382, 570], [-382, 569], [-382, 568], [-382, 569], [-382, 570], [-383, 570], [-384, 570], [-385, 570], [-385, 569], [-385, 568], [-384, 568], [-385, 568], [-385, 567], [-385, 566], [-385, 565], [-386, 565], [-386, 566], [-387, 566], [-388, 566], [-389, 566], [-389, 565], [-390, 565], [-390, 564], [-390, 563], [-389, 563], [-389, 562], [-388, 562], [-388, 561], [-388, 560], [-387, 560], [-387, 559], [-387, 558], [-387, 557], [-387, 556], [-387, 555], [-387, 554], [-386, 554], [-386, 553], [-386, 552], [-385, 552], [-384, 552], [-384, 551], [-383, 551]]}, "center": {"160-165": [-457, 577], "166-258, T": [-382, 561]}}, {"id": 3600, "name": "drednot.io", "description": "A free multiplayer ship construction and combat game. Build a flying battleship with your friends and conquer the skies! Also known as Deep Space Airships.", "links": {"website": ["https://drednot.io/"], "subreddit": ["drednot"], "discord": ["dhFDzv4pDw"]}, "path": {"147-237": [[-566, 316], [-552, 316], [-552, 326], [-566, 326]], "238-240": [[-562, 316], [-552, 316], [-552, 326], [-562, 326]]}, "center": {"147-237": [-559, 321], "238-240": [-557, 321]}}, {"id": 3601, "name": "Temporary Redbull can", "description": "This Redbull can was made by the Papaplatte community. its use was to annoy a kick streamer trying to advertise itself in the middle", "links": {"subreddit": ["papaplatte"]}, "path": {"166-167": [[61, -54], [76, -54], [77, -17], [61, -17]]}, "center": {"166-167": [69, -35]}}, -{"id": 3602, "name": "Renko and Maribel", "description": "Minimalist pixel art of Maribel Hearn and Usami Renko, two recurring characters of the Touhou Project CD albums, starting in \"Ghostly Field Club\". \nThey are cannonically best friends, only members of the \"Hifuu Club\" (which is an untranslatable japanese pun), and considering they never interact directly with the rest of the cast, commonly depicted in fandom as a sapphic couple, thus the heart and them holding hands", "links": {"subreddit": ["touhou"]}, "path": {"238-258": [[-1427, -623], [-1400, -623], [-1400, -640], [-1427, -640]]}, "center": {"238-258": [-1413, -631]}}, -{"id": 3603, "name": "Gyro Zeppeli (Jojo's Part 7)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 7: Steel Ball Run.\n\nStand: Ball Breaker\n\n\"Lesson 5 - The shortest route is the detour.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1135, -108], [-1131, -108], [-1129, -107], [-1128, -102], [-1130, -100], [-1133, -100], [-1134, -101], [-1135, -105], [-1136, -107], [-1133, -108]]}, "center": {"250-258": [-1131, -103]}}, -{"id": 3604, "name": "Hungry Nicole - Nilfruits", "description": "Nicole, the protagonist of Hungry Nicole. Hungry Nicole is a song MV created by VOCALOID producer Nilfruits / Niru Kajitsu / 煮ル果実. The MV has gained 5.8 million views on YouTube since it's release in 2018.", "links": {"website": ["https://www.youtube.com/watch?v=N4MEB95GRe0&ab_channel=%E7%85%AE%E3%83%AB%E6%9E%9C%E5%AE%9F%2FNILFRUITS"], "discord": ["sA6MS8gtC5"]}, "path": {"250-258": [[-307, 882], [-293, 882], [-293, 901], [-307, 901]]}, "center": {"250-258": [-300, 892]}}, +{"id": 3602, "name": "Renko and Maribel", "description": "Minimalist pixel art of Maribel Hearn and Usami Renko, two recurring characters of the Touhou Project CD albums, starting in \"Ghostly Field Club\". \nThey are cannonically best friends, only members of the \"Hifuu Club\" (which is an untranslatable japanese pun), and considering they never interact directly with the rest of the cast, commonly depicted in fandom as a sapphic couple, thus the heart and them holding hands", "links": {"subreddit": ["touhou"]}, "path": {"238-258, T": [[-1427, -623], [-1400, -623], [-1400, -640], [-1427, -640]]}, "center": {"238-258, T": [-1413, -631]}}, +{"id": 3603, "name": "Gyro Zeppeli (Jojo's Part 7)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 7: Steel Ball Run.\n\nStand: Ball Breaker\n\n\"Lesson 5 - The shortest route is the detour.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1135, -108], [-1131, -108], [-1129, -107], [-1128, -102], [-1130, -100], [-1133, -100], [-1134, -101], [-1135, -105], [-1136, -107], [-1133, -108]]}, "center": {"250-258, T": [-1131, -103]}}, +{"id": 3604, "name": "Hungry Nicole - Nilfruits", "description": "Nicole, the protagonist of Hungry Nicole. Hungry Nicole is a song MV created by VOCALOID producer Nilfruits / Niru Kajitsu / 煮ル果実. The MV has gained 5.8 million views on YouTube since it's release in 2018.", "links": {"website": ["https://www.youtube.com/watch?v=N4MEB95GRe0&ab_channel=%E7%85%AE%E3%83%AB%E6%9E%9C%E5%AE%9F%2FNILFRUITS"], "discord": ["sA6MS8gtC5"]}, "path": {"250-258, T": [[-307, 882], [-293, 882], [-293, 901], [-307, 901]]}, "center": {"250-258, T": [-300, 892]}}, {"id": 3605, "name": "VC3 - Dominanz", "description": "VC3 is a community-driven platform passionately owned and managed by a group of users who hold diverse perspectives on r/placeDE's moderation team. The revolution is considered a ban-worthy topic in r/placede's server due to its controversial nature. Embracing a spirit of independence and a desire for constructive dialogue, this community welcomes users who have experienced difficulties in r/placeDE's discord server or VC3, fostering an inclusive environment for open discussions.\nWe also have an alliance with the German south flag.", "links": {"website": ["https://de.wikipedia.org/wiki/Deutsche_Revolution_1848/1849"], "subreddit": ["sprachkanal3"], "discord": ["RRXccGRncM"]}, "path": {"166-241": [[999, -643], [981, -643], [981, -634], [1000, -634], [1000, -643]]}, "center": {"166-241": [991, -638]}}, -{"id": 3606, "name": "Hurdy Gurdy", "description": "The hurdy gurdy is a string instrument that originated in the Middle Ages. The sound is produced by a rosined wheel rubbing against the strings; the wheel is controlled by a crank. The hurdy gurdy has 3 types of strings: chanters – the melody strings that are shortened mechanically via keys to change the pitch, drones - strings that produce a continuous bass tone, and trompettes – higher-pitched drone strings that are also used for rhythmic accentuation. Hurdy gurdies usually have two octaves and are fully chromatic. If you want to learn more about the instrument, join us on our Subreddit or the Hurdy Gurdy Community on Facebook.\n\nDuring r/place 2023, the Pixel Hurdy Gurdy was attacked by multiple streamers and needed to relocate. Because we had to leave our closest ally, r/foxholegame, behind, we created a little heart for them in our new location.", "links": {"website": ["https://www.facebook.com/groups/2038441566425103/"], "subreddit": ["HurdyGurdy"]}, "path": {"250-258": [[1063, -831], [1063, -847], [1059, -847], [1059, -846], [1043, -846], [1043, -831]]}, "center": {"250-258": [1051, -839]}}, -{"id": 3607, "name": "PapitasVT", "description": "Peruvian Vtuber streamer popularly known as \"PAPOTAS\" \"PITUCAVT\" \"STARVTUBER\"\nShe does very funny streams where he sings and does gameplays. She is very loved in the Spanish-speaking Vtuber community. She has a \"CHAMO\"", "links": {"website": ["https://www.twitch.tv/papitasvt", "https://www.youtube.com/@papitasvtuber"], "discord": ["THVPSte2VP"]}, "path": {"250-258": [[-440, -813], [-439, -813], [-439, -816], [-410, -816], [-410, -797], [-440, -797]]}, "center": {"250-258": [-425, -806]}}, -{"id": 3608, "name": "drednot.io", "description": "A free multiplayer ship construction and combat game. Build a flying battleship with your friends and conquer the skies! Also known as Deep Space Airships.", "links": {"website": ["https://drednot.io/"], "subreddit": ["drednot"], "discord": ["dhFDzv4pDw"]}, "path": {"201-213": [[105, 976], [105, 1000], [146, 1000], [146, 976]], "223-258": [[234, 999], [234, 990], [179, 990], [179, 999]]}, "center": {"201-213": [126, 988], "223-258": [207, 995]}}, -{"id": 3609, "name": "Yuru Camp Girls and Logo", "description": "The logo and main characters of anime and manga series Laid-Back Camp, AKA Yuru Camp.", "links": {"subreddit": ["laidbackcamp"], "discord": ["laidback-camp"]}, "path": {"231-247": [[1487, -864], [1481, -852], [1481, -850], [1496, -850], [1496, -852], [1490, -864]], "248-258": [[1467, -863], [1467, -856], [1482, -856], [1481, -852], [1481, -850], [1496, -850], [1496, -852], [1490, -863], [1489, -864], [1488, -864], [1487, -863], [1483, -856], [1482, -856], [1482, -863]]}, "center": {"231-247": [1489, -855], "248-258": [1488, -855]}}, +{"id": 3606, "name": "Hurdy Gurdy", "description": "The hurdy gurdy is a string instrument that originated in the Middle Ages. The sound is produced by a rosined wheel rubbing against the strings; the wheel is controlled by a crank. The hurdy gurdy has 3 types of strings: chanters – the melody strings that are shortened mechanically via keys to change the pitch, drones - strings that produce a continuous bass tone, and trompettes – higher-pitched drone strings that are also used for rhythmic accentuation. Hurdy gurdies usually have two octaves and are fully chromatic. If you want to learn more about the instrument, join us on our Subreddit or the Hurdy Gurdy Community on Facebook.\n\nDuring r/place 2023, the Pixel Hurdy Gurdy was attacked by multiple streamers and needed to relocate. Because we had to leave our closest ally, r/foxholegame, behind, we created a little heart for them in our new location.", "links": {"website": ["https://www.facebook.com/groups/2038441566425103/"], "subreddit": ["HurdyGurdy"]}, "path": {"250-258, T": [[1063, -831], [1063, -847], [1059, -847], [1059, -846], [1043, -846], [1043, -831]]}, "center": {"250-258, T": [1051, -839]}}, +{"id": 3607, "name": "PapitasVT", "description": "Peruvian Vtuber streamer popularly known as \"PAPOTAS\" \"PITUCAVT\" \"STARVTUBER\"\nShe does very funny streams where he sings and does gameplays. She is very loved in the Spanish-speaking Vtuber community. She has a \"CHAMO\"", "links": {"website": ["https://www.twitch.tv/papitasvt", "https://www.youtube.com/@papitasvtuber"], "discord": ["THVPSte2VP"]}, "path": {"250-258, T": [[-440, -813], [-439, -813], [-439, -816], [-410, -816], [-410, -797], [-440, -797]]}, "center": {"250-258, T": [-425, -806]}}, +{"id": 3608, "name": "drednot.io", "description": "A free multiplayer ship construction and combat game. Build a flying battleship with your friends and conquer the skies! Also known as Deep Space Airships.", "links": {"website": ["https://drednot.io/"], "subreddit": ["drednot"], "discord": ["dhFDzv4pDw"]}, "path": {"201-213": [[105, 976], [105, 1000], [146, 1000], [146, 976]], "223-258, T": [[234, 999], [234, 990], [179, 990], [179, 999]]}, "center": {"201-213": [126, 988], "223-258, T": [207, 995]}}, +{"id": 3609, "name": "Yuru Camp Girls and Logo", "description": "The logo and main characters of anime and manga series Laid-Back Camp, AKA Yuru Camp.", "links": {"subreddit": ["laidbackcamp"], "discord": ["laidback-camp"]}, "path": {"231-247": [[1487, -864], [1481, -852], [1481, -850], [1496, -850], [1496, -852], [1490, -864]], "248-258, T": [[1467, -863], [1467, -856], [1482, -856], [1481, -852], [1481, -850], [1496, -850], [1496, -852], [1490, -863], [1489, -864], [1488, -864], [1487, -863], [1483, -856], [1482, -856], [1482, -863]]}, "center": {"231-247": [1489, -855], "248-258, T": [1488, -855]}}, {"id": 3610, "name": "Lambik", "description": "Lambik is a Flemish comic book character from the Belgian comic strip series \"Suske en Wiske\" also known as \"Spike and Suzy\" in English and created by Willy Vandersteen. He is well known in Belgium and The Netherlands", "links": {"website": ["https://en.wikipedia.org/wiki/Lambik#Character"], "discord": ["QkbU8XVB"]}, "path": {"252": [[842, 585], [850, 561], [868, 560], [870, 585]]}, "center": {"252": [857, 574]}}, -{"id": 3611, "name": "Copa America Centenario", "description": "Copa America Centenario was a special edition of the Copa America tournament played in the United States to celebrate 100 years of the south american competition. Chile lifted the trophy after beating Argentina with a score of 4-2 on penalties after extra time.", "links": {"website": ["https://www.conmebol.com/copa-america-centenario/"]}, "path": {"122-258": [[-788, -811], [-767, -811], [-767, -810], [-766, -810], [-766, -808], [-770, -804], [-770, -801], [-769, -801], [-769, -800], [-768, -799], [-768, -797], [-767, -797], [-767, -794], [-766, -794], [-766, -784], [-767, -783], [-767, -782], [-768, -782], [-768, -781], [-771, -778], [-771, -777], [-772, -777], [-772, -776], [-773, -776], [-773, -772], [-772, -771], [-772, -770], [-770, -768], [-770, -766], [-769, -766], [-769, -765], [-770, -765], [-770, -764], [-786, -764], [-786, -766], [-785, -766], [-785, -768], [-783, -770], [-783, -771], [-782, -772], [-782, -773], [-781, -774], [-787, -780], [-787, -782], [-788, -782], [-788, -784], [-789, -784], [-789, -794], [-788, -794], [-788, -796], [-787, -797], [-787, -800], [-785, -802], [-785, -804], [-789, -808], [-789, -810], [-788, -810]]}, "center": {"122-258": [-778, -789]}}, -{"id": 3612, "name": "Mentisan - Don-chan (Menti-chan)", "description": "[EN] Very popular menthol ointment from Bolivia to the point that it is believed to be able to cure almost all kinds of illnesses, that got turned into a Don after r/ubius and its asociates's expansion damaged Taiko No Tatsujin's space just between Bolivia And Morocco flag.\n[ES] Pomada mentolada muy popular de Bolivia hasta el punto que se cree que puede curar casi todo tipo de enfermedades, que se convirtió en un Don después de que la expansión de r/ubius y sus asociados desaparecieron a Taiko No Tatsujin del canvas y Bolivia detuvo la expansión hasta donde llega la bandera de Marruecos.", "links": {"website": ["https://bolivianexpress.org/blog/posts/happy-birthday-mentisan"], "subreddit": ["BOLIVIA", "taikonotatsujin"], "discord": ["6nDM9zybbA", "SJvRubwBpz"]}, "path": {"105-258, 71-104": [[244, -40], [244, -31], [250, -26], [257, -26], [262, -31], [262, -40], [256, -45], [250, -45]]}, "center": {"105-258, 71-104": [253, -35]}}, -{"id": 3613, "name": "MissaSinfonia Cubito", "description": "King over all Eternia, musician, animal and adventure lover!", "links": {}, "path": {"250-258": [[788, 415], [788, 423], [797, 423], [797, 415]]}, "center": {"250-258": [793, 419]}}, -{"id": 3614, "name": "FIDE Brick", "description": "FIDE is an international chess organization. (Federation Internationale des Echecs) This art depicts a FIDE-certified brick supposedly provided in every chess set, referencing an inside joke among r/AnarchyChess users. It is said that if given the opportunity to perform en passant in a chess game (a fairly obscure chess rule that users of r/AnarchyChess have taken an unhealthy obsession with), and the player rejects it, they must drop a brick on their \"pipi\" (penis).", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"248-258": [[-1226, 554], [-1236, 554], [-1236, 549], [-1226, 549]]}, "center": {"248-258": [-1231, 552]}}, -{"id": 3615, "name": "El Salto Angel", "description": "El Salto Ángel ​ es la cascada más alta del mundo, con una altura de 979 m, ​​​ originada en el Auyantepuy. Está ubicado en el parque nacional Canaima, Estado Bolívar, Venezuela\n\nAngel Falls is the highest waterfall in the world, with a height of 979 m, originating in the Auyantepuy. It is located in the Canaima National Park, Bolívar State, Venezuela.", "links": {"website": ["https://es.wikipedia.org/wiki/Salto_%C3%81ngel"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258": [[-831, 320], [-844, 295], [-856, 295], [-856, 320]]}, "center": {"250-258": [-847, 311]}}, +{"id": 3611, "name": "Copa America Centenario", "description": "Copa America Centenario was a special edition of the Copa America tournament played in the United States to celebrate 100 years of the south american competition. Chile lifted the trophy after beating Argentina with a score of 4-2 on penalties after extra time.", "links": {"website": ["https://www.conmebol.com/copa-america-centenario/"]}, "path": {"122-258, T": [[-788, -811], [-767, -811], [-767, -810], [-766, -810], [-766, -808], [-770, -804], [-770, -801], [-769, -801], [-769, -800], [-768, -799], [-768, -797], [-767, -797], [-767, -794], [-766, -794], [-766, -784], [-767, -783], [-767, -782], [-768, -782], [-768, -781], [-771, -778], [-771, -777], [-772, -777], [-772, -776], [-773, -776], [-773, -772], [-772, -771], [-772, -770], [-770, -768], [-770, -766], [-769, -766], [-769, -765], [-770, -765], [-770, -764], [-786, -764], [-786, -766], [-785, -766], [-785, -768], [-783, -770], [-783, -771], [-782, -772], [-782, -773], [-781, -774], [-787, -780], [-787, -782], [-788, -782], [-788, -784], [-789, -784], [-789, -794], [-788, -794], [-788, -796], [-787, -797], [-787, -800], [-785, -802], [-785, -804], [-789, -808], [-789, -810], [-788, -810]]}, "center": {"122-258, T": [-778, -789]}}, +{"id": 3612, "name": "Mentisan - Don-chan (Menti-chan)", "description": "[EN] Very popular menthol ointment from Bolivia to the point that it is believed to be able to cure almost all kinds of illnesses, that got turned into a Don after r/ubius and its asociates's expansion damaged Taiko No Tatsujin's space just between Bolivia And Morocco flag.\n[ES] Pomada mentolada muy popular de Bolivia hasta el punto que se cree que puede curar casi todo tipo de enfermedades, que se convirtió en un Don después de que la expansión de r/ubius y sus asociados desaparecieron a Taiko No Tatsujin del canvas y Bolivia detuvo la expansión hasta donde llega la bandera de Marruecos.", "links": {"website": ["https://bolivianexpress.org/blog/posts/happy-birthday-mentisan"], "subreddit": ["BOLIVIA", "taikonotatsujin"], "discord": ["6nDM9zybbA", "SJvRubwBpz"]}, "path": {"105-258, 71-104, T": [[244, -40], [244, -31], [250, -26], [257, -26], [262, -31], [262, -40], [256, -45], [250, -45]]}, "center": {"105-258, 71-104, T": [253, -35]}}, +{"id": 3613, "name": "MissaSinfonia Cubito", "description": "King over all Eternia, musician, animal and adventure lover!", "links": {}, "path": {"250-258, T": [[788, 415], [788, 423], [797, 423], [797, 415]]}, "center": {"250-258, T": [793, 419]}}, +{"id": 3614, "name": "FIDE Brick", "description": "FIDE is an international chess organization. (Federation Internationale des Echecs) This art depicts a FIDE-certified brick supposedly provided in every chess set, referencing an inside joke among r/AnarchyChess users. It is said that if given the opportunity to perform en passant in a chess game (a fairly obscure chess rule that users of r/AnarchyChess have taken an unhealthy obsession with), and the player rejects it, they must drop a brick on their \"pipi\" (penis).", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"248-258, T": [[-1226, 554], [-1236, 554], [-1236, 549], [-1226, 549]]}, "center": {"248-258, T": [-1231, 552]}}, +{"id": 3615, "name": "El Salto Angel", "description": "El Salto Ángel ​ es la cascada más alta del mundo, con una altura de 979 m, ​​​ originada en el Auyantepuy. Está ubicado en el parque nacional Canaima, Estado Bolívar, Venezuela\n\nAngel Falls is the highest waterfall in the world, with a height of 979 m, originating in the Auyantepuy. It is located in the Canaima National Park, Bolívar State, Venezuela.", "links": {"website": ["https://es.wikipedia.org/wiki/Salto_%C3%81ngel"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258, T": [[-831, 320], [-844, 295], [-856, 295], [-856, 320]]}, "center": {"250-258, T": [-847, 311]}}, {"id": 3616, "name": "Conterstine", "description": "Sabías que Conter tiene un Gato?", "links": {"website": ["https://www.twitch.tv/conterstine?sr=a"]}, "path": {"23-91": [[172, 102], [173, 128], [199, 129], [200, 103]]}, "center": {"23-91": [186, 116]}}, -{"id": 3617, "name": "Aradir", "description": "Sebastián, better known as Aradir, is a Chilean youtuber currently dedicated to various Gameplays, he has 1 million subscribers.", "links": {"website": ["https://www.youtube.com/channel/UCXx4Ofs2mm0gmFZtvRG9a0Q"], "subreddit": ["Aradir"]}, "path": {"216-259": [[-1171, -705], [-1157, -703], [-1143, -705], [-1126, -709], [-1124, -707], [-1125, -699], [-1127, -695], [-1123, -691], [-1128, -686], [-1130, -679], [-1136, -676], [-1128, -674], [-1136, -670], [-1135, -660], [-1137, -654], [-1141, -651], [-1145, -651], [-1152, -658], [-1156, -660], [-1174, -661], [-1175, -667], [-1179, -669], [-1181, -670], [-1181, -682], [-1182, -687], [-1179, -695], [-1173, -702], [-1172, -703], [-1175, -701], [-1181, -704], [-1185, -712], [-1178, -713], [-1173, -703]]}, "center": {"216-259": [-1160, -682]}}, -{"id": 3618, "name": "r/AnarchyChess name.", "description": "Title says it all.", "links": {"discord": ["anarchychess"]}, "path": {"248-258": [[-1236, 555], [-1215, 555], [-1215, 556], [-1216, 556], [-1216, 557], [-1217, 557], [-1217, 559], [-1221, 559], [-1221, 560], [-1222, 560], [-1222, 562], [-1235, 562], [-1235, 560], [-1236, 560]]}, "center": {"248-258": [-1225, 559]}}, -{"id": 3619, "name": "luv4s_ minecraft skin", "description": "a little skin head from minecraft!!", "links": {}, "path": {"250-258": [[-224, 829], [-217, 829], [-217, 836], [-224, 836]]}, "center": {"250-258": [-220, 833]}}, -{"id": 3620, "name": "YukiZein", "description": "Una respresentación de la unión entre Perú-Cuba de 2 streamers representantes zein y staryuuki", "links": {"website": ["https://www.twitch.tv/elzeein", "https://www.twitch.tv/staryuuki"]}, "path": {"250-258": [[-1142, -611], [-1142, -641], [-1098, -640], [-1098, -611]]}, "center": {"250-258": [-1120, -626]}}, -{"id": 3621, "name": "Shinobu's flower", "description": "Not originally planned, but she's wearing a flower now. The color of the flower is one that is never consistent, but ultimately it ended up being dark blue on the atlas, but on Reddit's post, cyan.", "links": {"subreddit": ["araragi"], "discord": ["CbRv3yNftx", "yJQ8RTkM"]}, "path": {"135-258": [[-687, 288], [-686, 290], [-687, 291], [-688, 290], [-687, 289]]}, "center": {"135-258": [-687, 290]}}, -{"id": 3622, "name": "University of Michigan Football", "description": "Slogan and score commemorating the recent victory of the university of Michigan wolverines over their rivals. (who have still failed to \"hang 100\")", "links": {"subreddit": ["MichiganWolverines"]}, "path": {"250-258": [[675, -346], [675, -327], [709, -327], [709, -346]]}, "center": {"250-258": [692, -336]}}, -{"id": 3623, "name": "Sara Wearing a Bosnian Beret", "description": "A collaboration between the communities of Your Turn To Die and Bosnia and Herzegovina. It depicts the character Sara with a beret and Bosnian insignia.", "links": {"subreddit": ["bih", "yttd", "yourturntodie"], "discord": ["C7y56yek", "PZJH3cu5"]}, "path": {"250-258": [[1230, 414], [1239, 414], [1248, 420], [1248, 435], [1229, 435]]}, "center": {"250-258": [1239, 425]}}, -{"id": 3624, "name": "Krikonin - Crystal Molly", "description": "Krikonin is one of Crystal Molly emotes and symbol for her community ¨Los Crystals¨.\nShe is a popular trans Mexican streamer and LGBTQ+ icon.", "links": {"website": ["https://www.twitch.tv/crystalmolly"]}, "path": {"171-259": [[-1036, -701], [-1035, -701], [-1035, -700], [-1033, -700], [-1033, -699], [-1031, -699], [-1031, -696], [-1029, -696], [-1029, -687], [-1028, -687], [-1028, -680], [-1027, -680], [-1027, -677], [-1026, -677], [-1026, -673], [-1026, -667], [-1025, -667], [-1025, -665], [-1024, -665], [-1024, -664], [-1023, -664], [-1023, -662], [-1022, -662], [-1022, -660], [-1021, -660], [-1021, -659], [-1020, -659], [-1020, -658], [-1019, -658], [-1008, -647], [-1007, -647], [-1007, -644], [-1007, -643], [-1008, -643], [-1008, -642], [-1008, -641], [-1009, -641], [-1009, -640], [-1014, -640], [-1013, -640], [-1013, -639], [-1012, -639], [-1012, -635], [-1011, -635], [-1011, -636], [-1010, -636], [-1010, -637], [-1008, -637], [-1008, -638], [-1003, -638], [-1003, -632], [-1004, -632], [-1004, -631], [-1006, -631], [-1006, -630], [-1010, -630], [-1010, -631], [-1012, -631], [-1012, -630], [-1013, -630], [-1015, -628], [-1016, -628], [-1019, -625], [-1019, -622], [-1021, -622], [-1022, -621], [-1022, -616], [-1023, -616], [-1023, -611], [-1035, -611], [-1035, -612], [-1036, -614], [-1037, -614], [-1037, -615], [-1043, -615], [-1043, -614], [-1044, -614], [-1044, -612], [-1045, -612], [-1045, -611], [-1054, -611], [-1054, -612], [-1055, -613], [-1056, -614], [-1056, -616], [-1057, -616], [-1057, -619], [-1058, -619], [-1058, -620], [-1060, -620], [-1060, -621], [-1062, -621], [-1062, -622], [-1065, -622], [-1065, -623], [-1066, -624], [-1068, -624], [-1068, -625], [-1069, -625], [-1069, -626], [-1071, -626], [-1071, -628], [-1072, -628], [-1072, -629], [-1073, -629], [-1073, -630], [-1074, -630], [-1074, -632], [-1075, -632], [-1075, -633], [-1076, -633], [-1076, -634], [-1077, -634], [-1077, -637], [-1078, -637], [-1078, -638], [-1079, -638], [-1079, -641], [-1081, -639], [-1081, -636], [-1082, -636], [-1082, -635], [-1088, -635], [-1088, -636], [-1089, -636], [-1089, -640], [-1087, -641], [-1087, -642], [-1089, -645], [-1089, -646], [-1088, -647], [-1088, -648], [-1084, -653], [-1084, -655], [-1083, -655], [-1085, -659], [-1086, -660], [-1086, -661], [-1087, -679], [-1086, -679], [-1086, -686], [-1085, -686], [-1085, -693], [-1084, -693], [-1084, -697], [-1082, -697], [-1082, -699], [-1081, -699], [-1080, -700], [-1077, -703], [-1077, -704], [-1075, -704], [-1071, -708], [-1070, -708], [-1070, -709], [-1066, -709], [-1066, -711], [-1047, -711], [-1047, -710], [-1045, -709], [-1038, -709], [-1038, -708], [-1022, -708], [-1022, -707], [-1021, -704], [-1022, -703], [-1023, -701], [-1024, -701], [-1026, -700], [-1031, -700], [-1033, -702], [-1035, -702], [-1036, -701], [-1031, -696], [-1029, -696], [-1030, -696], [-1033, -699]]}, "center": {"171-259": [-1056, -670]}}, -{"id": 3625, "name": "Hana Yomeguri", "description": "Yomeguri Hana (夜巡ハナ) is an independent polyglot female Virtual YouTuber and Streamer who debuted on January 2022.", "links": {"website": ["https://www.youtube.com/channel/UCzkwiov0OShlyRPdzwf0Xrg", "https://twitter.com/HanaYomeguri"], "discord": ["NndEHR66"]}, "path": {"250-258": [[415, -857], [399, -857], [399, -861], [401, -861], [401, -865], [399, -865], [399, -869], [398, -869], [398, -880], [399, -880], [399, -882], [400, -882], [400, -884], [401, -884], [401, -885], [402, -885], [402, -886], [403, -886], [403, -887], [408, -887], [408, -886], [413, -886], [413, -885], [415, -885], [415, -884], [417, -884], [417, -883], [418, -883], [418, -877], [419, -877], [419, -868], [418, -868], [418, -866], [419, -866], [419, -862], [418, -862], [418, -861], [417, -861], [417, -860], [416, -860], [416, -859], [415, -859]]}, "center": {"250-258": [408, -874]}}, -{"id": 3626, "name": "Twig", "description": "Twig is a small white creature who is half deer, and half fox. He is from the graphic novel and animated series Hilda.\n\nTwig is depicted here peeking and staring at the user.", "links": {"website": ["https://hildatheseries.fandom.com/wiki/Twig"], "subreddit": ["HildaTheSeries"], "discord": ["hilda"]}, "path": {"250-258": [[1094, -830], [1109, -830], [1109, -823], [1094, -823]]}, "center": {"250-258": [1102, -826]}}, -{"id": 3627, "name": "Greater Terran Union", "description": "The GTU is a fictional space-faring nation invented by the Canadian Youtube channel The Templin Institute and primarily written using the game Stellaris. It is the focus of the first season of the Templin Institute web series Stellaris Invicta.", "links": {"website": ["https://www.templin.institute/"], "subreddit": ["templininstitute"], "discord": ["templininstitute"]}, "path": {"102-208, 212-258": [[-61, -26], [-46, -26], [-46, -11], [-61, -11]]}, "center": {"102-208, 212-258": [-53, -18]}}, -{"id": 3628, "name": "Dutch ambulance, police car and firefighter truck", "description": "The Dutch emergency vehicles have got unique stripes on the outside", "links": {}, "path": {"244-258": [[393, -523], [397, -519], [444, -520], [449, -521], [456, -518], [478, -518], [481, -520], [486, -520], [493, -518], [496, -518], [498, -520], [502, -520], [504, -518], [507, -518], [509, -520], [520, -520], [522, -518], [525, -518], [527, -520], [529, -518], [532, -518], [534, -520], [536, -520], [538, -518], [541, -518], [543, -520], [545, -520], [545, -540], [542, -540], [542, -547], [538, -547], [538, -546], [534, -546], [534, -547], [482, -547], [482, -543], [486, -543], [486, -537], [463, -537], [457, -532], [449, -529], [446, -529], [446, -549], [410, -549], [402, -541], [397, -539], [394, -536], [393, -534]]}, "center": {"244-258": [418, -534]}}, +{"id": 3617, "name": "Aradir", "description": "Sebastián, better known as Aradir, is a Chilean youtuber currently dedicated to various Gameplays, he has 1 million subscribers.", "links": {"website": ["https://www.youtube.com/channel/UCXx4Ofs2mm0gmFZtvRG9a0Q"], "subreddit": ["Aradir"]}, "path": {"216-259, T": [[-1171, -705], [-1157, -703], [-1143, -705], [-1126, -709], [-1124, -707], [-1125, -699], [-1127, -695], [-1123, -691], [-1128, -686], [-1130, -679], [-1136, -676], [-1128, -674], [-1136, -670], [-1135, -660], [-1137, -654], [-1141, -651], [-1145, -651], [-1152, -658], [-1156, -660], [-1174, -661], [-1175, -667], [-1179, -669], [-1181, -670], [-1181, -682], [-1182, -687], [-1179, -695], [-1173, -702], [-1172, -703], [-1175, -701], [-1181, -704], [-1185, -712], [-1178, -713], [-1173, -703]]}, "center": {"216-259, T": [-1160, -682]}}, +{"id": 3618, "name": "r/AnarchyChess name.", "description": "Title says it all.", "links": {"discord": ["anarchychess"]}, "path": {"248-258, T": [[-1236, 555], [-1215, 555], [-1215, 556], [-1216, 556], [-1216, 557], [-1217, 557], [-1217, 559], [-1221, 559], [-1221, 560], [-1222, 560], [-1222, 562], [-1235, 562], [-1235, 560], [-1236, 560]]}, "center": {"248-258, T": [-1225, 559]}}, +{"id": 3619, "name": "luv4s_ minecraft skin", "description": "a little skin head from minecraft!!", "links": {}, "path": {"250-258, T": [[-224, 829], [-217, 829], [-217, 836], [-224, 836]]}, "center": {"250-258, T": [-220, 833]}}, +{"id": 3620, "name": "YukiZein", "description": "Una respresentación de la unión entre Perú-Cuba de 2 streamers representantes zein y staryuuki", "links": {"website": ["https://www.twitch.tv/elzeein", "https://www.twitch.tv/staryuuki"]}, "path": {"250-258, T": [[-1142, -611], [-1142, -641], [-1098, -640], [-1098, -611]]}, "center": {"250-258, T": [-1120, -626]}}, +{"id": 3621, "name": "Shinobu's flower", "description": "Not originally planned, but she's wearing a flower now. The color of the flower is one that is never consistent, but ultimately it ended up being dark blue on the atlas, but on Reddit's post, cyan.", "links": {"subreddit": ["araragi"], "discord": ["CbRv3yNftx", "yJQ8RTkM"]}, "path": {"135-258, T": [[-687, 288], [-686, 290], [-687, 291], [-688, 290], [-687, 289]]}, "center": {"135-258, T": [-687, 290]}}, +{"id": 3622, "name": "University of Michigan Football", "description": "Slogan and score commemorating the recent victory of the university of Michigan wolverines over their rivals. (who have still failed to \"hang 100\")", "links": {"subreddit": ["MichiganWolverines"]}, "path": {"250-258, T": [[675, -346], [675, -327], [709, -327], [709, -346]]}, "center": {"250-258, T": [692, -336]}}, +{"id": 3623, "name": "Sara Wearing a Bosnian Beret", "description": "A collaboration between the communities of Your Turn To Die and Bosnia and Herzegovina. It depicts the character Sara with a beret and Bosnian insignia.", "links": {"subreddit": ["bih", "yttd", "yourturntodie"], "discord": ["C7y56yek", "PZJH3cu5"]}, "path": {"250-258, T": [[1230, 414], [1239, 414], [1248, 420], [1248, 435], [1229, 435]]}, "center": {"250-258, T": [1239, 425]}}, +{"id": 3624, "name": "Krikonin - Crystal Molly", "description": "Krikonin is one of Crystal Molly emotes and symbol for her community ¨Los Crystals¨.\nShe is a popular trans Mexican streamer and LGBTQ+ icon.", "links": {"website": ["https://www.twitch.tv/crystalmolly"]}, "path": {"171-259, T": [[-1036, -701], [-1035, -701], [-1035, -700], [-1033, -700], [-1033, -699], [-1031, -699], [-1031, -696], [-1029, -696], [-1029, -687], [-1028, -687], [-1028, -680], [-1027, -680], [-1027, -677], [-1026, -677], [-1026, -673], [-1026, -667], [-1025, -667], [-1025, -665], [-1024, -665], [-1024, -664], [-1023, -664], [-1023, -662], [-1022, -662], [-1022, -660], [-1021, -660], [-1021, -659], [-1020, -659], [-1020, -658], [-1019, -658], [-1008, -647], [-1007, -647], [-1007, -644], [-1007, -643], [-1008, -643], [-1008, -642], [-1008, -641], [-1009, -641], [-1009, -640], [-1014, -640], [-1013, -640], [-1013, -639], [-1012, -639], [-1012, -635], [-1011, -635], [-1011, -636], [-1010, -636], [-1010, -637], [-1008, -637], [-1008, -638], [-1003, -638], [-1003, -632], [-1004, -632], [-1004, -631], [-1006, -631], [-1006, -630], [-1010, -630], [-1010, -631], [-1012, -631], [-1012, -630], [-1013, -630], [-1015, -628], [-1016, -628], [-1019, -625], [-1019, -622], [-1021, -622], [-1022, -621], [-1022, -616], [-1023, -616], [-1023, -611], [-1035, -611], [-1035, -612], [-1036, -614], [-1037, -614], [-1037, -615], [-1043, -615], [-1043, -614], [-1044, -614], [-1044, -612], [-1045, -612], [-1045, -611], [-1054, -611], [-1054, -612], [-1055, -613], [-1056, -614], [-1056, -616], [-1057, -616], [-1057, -619], [-1058, -619], [-1058, -620], [-1060, -620], [-1060, -621], [-1062, -621], [-1062, -622], [-1065, -622], [-1065, -623], [-1066, -624], [-1068, -624], [-1068, -625], [-1069, -625], [-1069, -626], [-1071, -626], [-1071, -628], [-1072, -628], [-1072, -629], [-1073, -629], [-1073, -630], [-1074, -630], [-1074, -632], [-1075, -632], [-1075, -633], [-1076, -633], [-1076, -634], [-1077, -634], [-1077, -637], [-1078, -637], [-1078, -638], [-1079, -638], [-1079, -641], [-1081, -639], [-1081, -636], [-1082, -636], [-1082, -635], [-1088, -635], [-1088, -636], [-1089, -636], [-1089, -640], [-1087, -641], [-1087, -642], [-1089, -645], [-1089, -646], [-1088, -647], [-1088, -648], [-1084, -653], [-1084, -655], [-1083, -655], [-1085, -659], [-1086, -660], [-1086, -661], [-1087, -679], [-1086, -679], [-1086, -686], [-1085, -686], [-1085, -693], [-1084, -693], [-1084, -697], [-1082, -697], [-1082, -699], [-1081, -699], [-1080, -700], [-1077, -703], [-1077, -704], [-1075, -704], [-1071, -708], [-1070, -708], [-1070, -709], [-1066, -709], [-1066, -711], [-1047, -711], [-1047, -710], [-1045, -709], [-1038, -709], [-1038, -708], [-1022, -708], [-1022, -707], [-1021, -704], [-1022, -703], [-1023, -701], [-1024, -701], [-1026, -700], [-1031, -700], [-1033, -702], [-1035, -702], [-1036, -701], [-1031, -696], [-1029, -696], [-1030, -696], [-1033, -699]]}, "center": {"171-259, T": [-1056, -670]}}, +{"id": 3625, "name": "Hana Yomeguri", "description": "Yomeguri Hana (夜巡ハナ) is an independent polyglot female Virtual YouTuber and Streamer who debuted on January 2022.", "links": {"website": ["https://www.youtube.com/channel/UCzkwiov0OShlyRPdzwf0Xrg", "https://twitter.com/HanaYomeguri"], "discord": ["NndEHR66"]}, "path": {"250-258, T": [[415, -857], [399, -857], [399, -861], [401, -861], [401, -865], [399, -865], [399, -869], [398, -869], [398, -880], [399, -880], [399, -882], [400, -882], [400, -884], [401, -884], [401, -885], [402, -885], [402, -886], [403, -886], [403, -887], [408, -887], [408, -886], [413, -886], [413, -885], [415, -885], [415, -884], [417, -884], [417, -883], [418, -883], [418, -877], [419, -877], [419, -868], [418, -868], [418, -866], [419, -866], [419, -862], [418, -862], [418, -861], [417, -861], [417, -860], [416, -860], [416, -859], [415, -859]]}, "center": {"250-258, T": [408, -874]}}, +{"id": 3626, "name": "Twig", "description": "Twig is a small white creature who is half deer, and half fox. He is from the graphic novel and animated series Hilda.\n\nTwig is depicted here peeking and staring at the user.", "links": {"website": ["https://hildatheseries.fandom.com/wiki/Twig"], "subreddit": ["HildaTheSeries"], "discord": ["hilda"]}, "path": {"250-258, T": [[1094, -830], [1109, -830], [1109, -823], [1094, -823]]}, "center": {"250-258, T": [1102, -826]}}, +{"id": 3627, "name": "Greater Terran Union", "description": "The GTU is a fictional space-faring nation invented by the Canadian Youtube channel The Templin Institute and primarily written using the game Stellaris. It is the focus of the first season of the Templin Institute web series Stellaris Invicta.", "links": {"website": ["https://www.templin.institute/"], "subreddit": ["templininstitute"], "discord": ["templininstitute"]}, "path": {"102-208, 212-258, T": [[-61, -26], [-46, -26], [-46, -11], [-61, -11]]}, "center": {"102-208, 212-258, T": [-53, -18]}}, +{"id": 3628, "name": "Dutch ambulance, police car and firefighter truck", "description": "The Dutch emergency vehicles have got unique stripes on the outside", "links": {}, "path": {"244-258, T": [[393, -523], [397, -519], [444, -520], [449, -521], [456, -518], [478, -518], [481, -520], [486, -520], [493, -518], [496, -518], [498, -520], [502, -520], [504, -518], [507, -518], [509, -520], [520, -520], [522, -518], [525, -518], [527, -520], [529, -518], [532, -518], [534, -520], [536, -520], [538, -518], [541, -518], [543, -520], [545, -520], [545, -540], [542, -540], [542, -547], [538, -547], [538, -546], [534, -546], [534, -547], [482, -547], [482, -543], [486, -543], [486, -537], [463, -537], [457, -532], [449, -529], [446, -529], [446, -549], [410, -549], [402, -541], [397, -539], [394, -536], [393, -534]]}, "center": {"244-258, T": [418, -534]}}, {"id": 3629, "name": "VC3 - Rebellion- Deutscher Tukan", "description": "VC3 is a community-driven platform passionately owned and managed by a group of users who hold diverse perspectives on r/placeDE's moderation team. The revolution is considered a ban-worthy topic in r/placede's server due to its controversial nature. Embracing a spirit of independence and a desire for constructive dialogue, this community welcomes users who have experienced difficulties in r/placeDE's discord server or VC3, fostering an inclusive environment for open discussions.\nWe also have an alliance with the German south flag.", "links": {"website": ["https://de.wikipedia.org/wiki/Deutsche_Revolution_1848/1849"], "subreddit": ["sprachkanal3"], "discord": ["RRXccGRncM"]}, "path": {"112-148": [[222, 305], [159, 305], [159, 334], [223, 333], [223, 305]]}, "center": {"112-148": [188, 319]}}, -{"id": 3630, "name": "disprisk", "description": "disprisk is a small youtuber who (rarely) uploads high paced over-edited gaming videos. disprisk is 18 years old and was born and raised in Sippington City. His logo almost made it to the final canvas but fell victim to bots in the last hour.", "links": {"website": ["https://www.youtube.com/@disprisk"]}, "path": {"153-258": [[-600, 238], [-600, 248], [-590, 248], [-590, 238]]}, "center": {"153-258": [-595, 243]}}, -{"id": 3631, "name": "Bimo from Adventure Against Nightmare", "description": "\"Bimo\" is the main character of the game \"Adventure Against Nightmare\", developed by \"Loader's Station\" on the Roblox platform, where the main developer is a Brazilian named \"Loader\"\n\nThe pixelart was created in the last hours before the r/place ended, and during the creation of the pixelart, Bimo suffered several attacks against the german flag located on his left, but resisting he managed to stay alive from \"The Germany Incident\" with the defense and construction of \"Loader, rCandie, Slayhatt, sheez, TomAyaya, Trashy and others\"", "links": {"discord": ["bq4cJUMtX6"]}, "path": {"249-258": [[-1305, 298], [-1305, 294], [-1302, 291], [-1298, 291], [-1295, 294], [-1295, 298], [-1298, 301], [-1302, 301]]}, "center": {"249-258": [-1300, 296]}}, -{"id": 3632, "name": "Rubegetta", "description": "\"Rubegetta\" is a minecraft ship between streamers Rubius and Vegetta777. This ship was born in the fourth season of the Spanish minecraft series Karmaland. Out of rol, they have a very close friendship loved by their communities and their duo name is \"2 de iq\".", "links": {}, "path": {"99-258": [[619, -47], [619, -37], [646, -37], [646, -47], [639, -47], [646, -37], [639, -47], [622, -47]]}, "center": {"99-258": [633, -42]}}, -{"id": 3633, "name": "Pizzamandy Streamer Logo", "description": "Streamer de ECUADOR", "links": {"website": ["https://www.twitch.tv/pizzamandy"]}, "path": {"215-258": [[-1383, 744], [-1376, 739], [-1373, 739], [-1372, 733], [-1376, 729], [-1377, 727], [-1383, 725], [-1385, 727], [-1385, 730], [-1386, 731], [-1386, 733], [-1387, 734], [-1387, 736], [-1392, 741], [-1390, 744]]}, "center": {"215-258": [-1380, 734]}}, -{"id": 3634, "name": "Fiddle", "description": "A reference to pxlsFiddle, a website made for pxls.space (see art directly below) that gave you the ability to create templates to overlay onto pxls.space canvases to show you which pixels to place to construct an art piece.\npxlsFiddle also hosts archives of the various canavses pxls.space has had including timelapses and other info.\npxlsFiddle plans to shut down sometime in late 2023 / early 2024 due to more advanced template creation tools having been created, and an official archive for past canvases also having been created.", "links": {"website": ["https://pxlsfiddle.com/"]}, "path": {"250-258": [[422, -876], [422, -875], [421, -875], [421, -872], [422, -872], [422, -870], [421, -870], [421, -869], [420, -869], [420, -862], [421, -862], [421, -861], [425, -861], [425, -862], [426, -862], [426, -869], [425, -869], [425, -870], [424, -870], [424, -872], [425, -872], [425, -875], [424, -875], [424, -876]]}, "center": {"250-258": [423, -867]}}, -{"id": 3635, "name": "r/fuckcars parking lot", "description": "", "links": {"subreddit": ["fuckcars"], "discord": ["anticar"]}, "path": {"205-253": [[-1373, 415], [-1334, 415], [-1334, 458], [-1354, 459], [-1354, 456], [-1346, 456], [-1346, 449], [-1372, 449]]}, "center": {"205-253": [-1351, 432]}}, -{"id": 3636, "name": "Arepa", "description": "The arepa is a type of food from Venezuela made of ground maize dough stuffed with a filling.", "links": {"website": ["https://en.wikipedia.org/wiki/Arepa"], "subreddit": ["vzla"]}, "path": {"167-258": [[-483, -856], [-482, -856], [-477, -852], [-477, -848], [-482, -844], [-483, -844], [-488, -848], [-488, -852]]}, "center": {"167-258": [-482, -850]}}, -{"id": 3637, "name": "r/TWRP - Chibi Heads", "description": "TWRP is a Canadian rock/synth-funk/jazz fusion band characterized by their striking outfits. The overall theme of their music, and identity, is positivity, thus the simple message to all of r/place: \"BE NICE\" \nThe pixel art itself was based on pins made by artist Escherbug, each of a member's head.\n\nThe four Pikmin on top of the sign also correspond to the colours of the band members.\n\nTop to bottom:\nDoctor Sung\nCommander Meouch\nLord Phobos\nHavve Hogan", "links": {"website": ["http://twrpband.com/"], "subreddit": ["TWRP"]}, "path": {"205-258": [[-1063, 199], [-1063, 194], [-1061, 193], [-1062, 190], [-1060, 190], [-1061, 185], [-1056, 181], [-1054, 181], [-1049, 187], [-1046, 189], [-1044, 188], [-1042, 184], [-1040, 183], [-1038, 181], [-1037, 180], [-1036, 179], [-1035, 177], [-1031, 177], [-1031, 178], [-1031, 180], [-1030, 180], [-1029, 180], [-1029, 179], [-1026, 177], [-1022, 176], [-1021, 175], [-1020, 175], [-1018, 178], [-1017, 179], [-1016, 181], [-1014, 181], [-1013, 183], [-1013, 186], [-1010, 186], [-1010, 192], [-1014, 194], [-1029, 194], [-1024, 200], [-1024, 215], [-1029, 219], [-1026, 222], [-1026, 232], [-1029, 235], [-1029, 238], [-1031, 239], [-1031, 240], [-1042, 240], [-1047, 236], [-1047, 232], [-1048, 231], [-1051, 230], [-1052, 233], [-1060, 228], [-1061, 226], [-1065, 223], [-1066, 213], [-1064, 211], [-1063, 211], [-1062, 212], [-1060, 210], [-1060, 205], [-1062, 206], [-1065, 204], [-1065, 199]]}, "center": {"205-258": [-1042, 207]}}, -{"id": 3638, "name": "Hu Tao's hat", "description": "Hat worn by a Genshin Impact character Hu Tao.", "links": {"subreddit": ["HuTao_Mains", "Genshin_Impact"]}, "path": {"250-258": [[-83, 361], [-59, 361], [-60, 358], [-61, 358], [-61, 354], [-65, 351], [-68, 351], [-71, 348], [-77, 353], [-80, 354], [-83, 356], [-84, 359]]}, "center": {"250-258": [-71, 356]}}, +{"id": 3630, "name": "disprisk", "description": "disprisk is a small youtuber who (rarely) uploads high paced over-edited gaming videos. disprisk is 18 years old and was born and raised in Sippington City. His logo almost made it to the final canvas but fell victim to bots in the last hour.", "links": {"website": ["https://www.youtube.com/@disprisk"]}, "path": {"153-258, T": [[-600, 238], [-600, 248], [-590, 248], [-590, 238]]}, "center": {"153-258, T": [-595, 243]}}, +{"id": 3631, "name": "Bimo from Adventure Against Nightmare", "description": "\"Bimo\" is the main character of the game \"Adventure Against Nightmare\", developed by \"Loader's Station\" on the Roblox platform, where the main developer is a Brazilian named \"Loader\"\n\nThe pixelart was created in the last hours before the r/place ended, and during the creation of the pixelart, Bimo suffered several attacks against the german flag located on his left, but resisting he managed to stay alive from \"The Germany Incident\" with the defense and construction of \"Loader, rCandie, Slayhatt, sheez, TomAyaya, Trashy and others\"", "links": {"discord": ["bq4cJUMtX6"]}, "path": {"249-258, T": [[-1305, 298], [-1305, 294], [-1302, 291], [-1298, 291], [-1295, 294], [-1295, 298], [-1298, 301], [-1302, 301]]}, "center": {"249-258, T": [-1300, 296]}}, +{"id": 3632, "name": "Rubegetta", "description": "\"Rubegetta\" is a minecraft ship between streamers Rubius and Vegetta777. This ship was born in the fourth season of the Spanish minecraft series Karmaland. Out of rol, they have a very close friendship loved by their communities and their duo name is \"2 de iq\".", "links": {}, "path": {"99-258, T": [[619, -47], [619, -37], [646, -37], [646, -47], [639, -47], [646, -37], [639, -47], [622, -47]]}, "center": {"99-258, T": [633, -42]}}, +{"id": 3633, "name": "Pizzamandy Streamer Logo", "description": "Streamer de ECUADOR", "links": {"website": ["https://www.twitch.tv/pizzamandy"]}, "path": {"215-258, T": [[-1383, 744], [-1376, 739], [-1373, 739], [-1372, 733], [-1376, 729], [-1377, 727], [-1383, 725], [-1385, 727], [-1385, 730], [-1386, 731], [-1386, 733], [-1387, 734], [-1387, 736], [-1392, 741], [-1390, 744]]}, "center": {"215-258, T": [-1380, 734]}}, +{"id": 3634, "name": "Fiddle", "description": "A reference to pxlsFiddle, a website made for pxls.space (see art directly below) that gave you the ability to create templates to overlay onto pxls.space canvases to show you which pixels to place to construct an art piece.\npxlsFiddle also hosts archives of the various canavses pxls.space has had including timelapses and other info.\npxlsFiddle plans to shut down sometime in late 2023 / early 2024 due to more advanced template creation tools having been created, and an official archive for past canvases also having been created.", "links": {"website": ["https://pxlsfiddle.com/"]}, "path": {"250-258, T": [[422, -876], [422, -875], [421, -875], [421, -872], [422, -872], [422, -870], [421, -870], [421, -869], [420, -869], [420, -862], [421, -862], [421, -861], [425, -861], [425, -862], [426, -862], [426, -869], [425, -869], [425, -870], [424, -870], [424, -872], [425, -872], [425, -875], [424, -875], [424, -876]]}, "center": {"250-258, T": [423, -867]}}, +{"id": 3635, "name": "r/fuckcars parking lot", "description": "", "links": {"subreddit": ["fuckcars"], "discord": ["anticar"]}, "path": {"205-253, T": [[-1373, 415], [-1334, 415], [-1334, 458], [-1354, 459], [-1354, 456], [-1346, 456], [-1346, 449], [-1372, 449]]}, "center": {"205-253, T": [-1351, 432]}}, +{"id": 3636, "name": "Arepa", "description": "The arepa is a type of food from Venezuela made of ground maize dough stuffed with a filling.", "links": {"website": ["https://en.wikipedia.org/wiki/Arepa"], "subreddit": ["vzla"]}, "path": {"167-258, T": [[-483, -856], [-482, -856], [-477, -852], [-477, -848], [-482, -844], [-483, -844], [-488, -848], [-488, -852]]}, "center": {"167-258, T": [-482, -850]}}, +{"id": 3637, "name": "r/TWRP - Chibi Heads", "description": "TWRP is a Canadian rock/synth-funk/jazz fusion band characterized by their striking outfits. The overall theme of their music, and identity, is positivity, thus the simple message to all of r/place: \"BE NICE\" \nThe pixel art itself was based on pins made by artist Escherbug, each of a member's head.\n\nThe four Pikmin on top of the sign also correspond to the colours of the band members.\n\nTop to bottom:\nDoctor Sung\nCommander Meouch\nLord Phobos\nHavve Hogan", "links": {"website": ["http://twrpband.com/"], "subreddit": ["TWRP"]}, "path": {"205-258, T": [[-1063, 199], [-1063, 194], [-1061, 193], [-1062, 190], [-1060, 190], [-1061, 185], [-1056, 181], [-1054, 181], [-1049, 187], [-1046, 189], [-1044, 188], [-1042, 184], [-1040, 183], [-1038, 181], [-1037, 180], [-1036, 179], [-1035, 177], [-1031, 177], [-1031, 178], [-1031, 180], [-1030, 180], [-1029, 180], [-1029, 179], [-1026, 177], [-1022, 176], [-1021, 175], [-1020, 175], [-1018, 178], [-1017, 179], [-1016, 181], [-1014, 181], [-1013, 183], [-1013, 186], [-1010, 186], [-1010, 192], [-1014, 194], [-1029, 194], [-1024, 200], [-1024, 215], [-1029, 219], [-1026, 222], [-1026, 232], [-1029, 235], [-1029, 238], [-1031, 239], [-1031, 240], [-1042, 240], [-1047, 236], [-1047, 232], [-1048, 231], [-1051, 230], [-1052, 233], [-1060, 228], [-1061, 226], [-1065, 223], [-1066, 213], [-1064, 211], [-1063, 211], [-1062, 212], [-1060, 210], [-1060, 205], [-1062, 206], [-1065, 204], [-1065, 199]]}, "center": {"205-258, T": [-1042, 207]}}, +{"id": 3638, "name": "Hu Tao's hat", "description": "Hat worn by a Genshin Impact character Hu Tao.", "links": {"subreddit": ["HuTao_Mains", "Genshin_Impact"]}, "path": {"250-258, T": [[-83, 361], [-59, 361], [-60, 358], [-61, 358], [-61, 354], [-65, 351], [-68, 351], [-71, 348], [-77, 353], [-80, 354], [-83, 356], [-84, 359]]}, "center": {"250-258, T": [-71, 356]}}, {"id": 3639, "name": "Super Bock Beer", "description": "Super Bock is a Portuguese beer brand from the Super Bock Group brewery which produces a range of beers under the same name. Established in 1927, Super Bock maintains a leading position in the market and it is among the favorite beer brands of the Portuguese. It is also the best-selling Portuguese beer in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Super_Bock"], "discord": ["blueyes"]}, "path": {"251": [[317, -758], [351, -758], [351, -736], [301, -757]]}, "center": {"251": [342, -749]}}, -{"id": 3640, "name": "Walrus", "description": "The walrus is a large flippered marine mammal with a discontinuous distribution about the North Pole in the Arctic Ocean and subarctic seas of the Northern Hemisphere. The walrus is the only living species in the family Odobenidae and genus Odobenus. Adult walrus are characterised by prominent tusks and whiskers, and their considerable bulk.", "links": {"website": ["https://en.wikipedia.org/wiki/Walrus"], "subreddit": ["walrus"]}, "path": {"250-258": [[-146, -304], [-146, -305], [-145, -305], [-145, -308], [-144, -309], [-140, -309], [-139, -308], [-137, -308], [-137, -307], [-139, -305], [-138, -304], [-139, -303], [-141, -303], [-142, -304], [-143, -303], [-146, -303]]}, "center": {"250-258": [-141, -307]}}, -{"id": 3641, "name": "Project Inkunzi II: Revengeance", "description": "Project Inkunzi is a nation roleplay server hosted on discord by CalmDownLevelUp.", "links": {"subreddit": ["inkunzi", "calmdownlevelup"], "discord": ["inkunzi"]}, "path": {"220-258": [[-1185, 378], [-1185, 382], [-1186, 383], [-1186, 384], [-1187, 385], [-1188, 386], [-1189, 387], [-1190, 387], [-1191, 388], [-1195, 388], [-1196, 387], [-1197, 387], [-1198, 386], [-1199, 385], [-1200, 384], [-1200, 383], [-1201, 382], [-1201, 378], [-1200, 377], [-1200, 376], [-1198, 374], [-1197, 373], [-1196, 373], [-1195, 372], [-1191, 372], [-1190, 373], [-1189, 373], [-1188, 374], [-1187, 375], [-1186, 376], [-1186, 377]]}, "center": {"220-258": [-1193, 380]}}, +{"id": 3640, "name": "Walrus", "description": "The walrus is a large flippered marine mammal with a discontinuous distribution about the North Pole in the Arctic Ocean and subarctic seas of the Northern Hemisphere. The walrus is the only living species in the family Odobenidae and genus Odobenus. Adult walrus are characterised by prominent tusks and whiskers, and their considerable bulk.", "links": {"website": ["https://en.wikipedia.org/wiki/Walrus"], "subreddit": ["walrus"]}, "path": {"250-258, T": [[-146, -304], [-146, -305], [-145, -305], [-145, -308], [-144, -309], [-140, -309], [-139, -308], [-137, -308], [-137, -307], [-139, -305], [-138, -304], [-139, -303], [-141, -303], [-142, -304], [-143, -303], [-146, -303]]}, "center": {"250-258, T": [-141, -307]}}, +{"id": 3641, "name": "Project Inkunzi II: Revengeance", "description": "Project Inkunzi is a nation roleplay server hosted on discord by CalmDownLevelUp.", "links": {"subreddit": ["inkunzi", "calmdownlevelup"], "discord": ["inkunzi"]}, "path": {"220-258, T": [[-1185, 378], [-1185, 382], [-1186, 383], [-1186, 384], [-1187, 385], [-1188, 386], [-1189, 387], [-1190, 387], [-1191, 388], [-1195, 388], [-1196, 387], [-1197, 387], [-1198, 386], [-1199, 385], [-1200, 384], [-1200, 383], [-1201, 382], [-1201, 378], [-1200, 377], [-1200, 376], [-1198, 374], [-1197, 373], [-1196, 373], [-1195, 372], [-1191, 372], [-1190, 373], [-1189, 373], [-1188, 374], [-1187, 375], [-1186, 376], [-1186, 377]]}, "center": {"220-258, T": [-1193, 380]}}, {"id": 3642, "name": "Trigun logo", "description": "Trigun is a manga series written and illustrated by Yasuhiro Nightow. It was adapted in 1998 into an anime that was very popular with an American audience. It recently got a reboot: Trigun Stampede.\nThe plot follows the story of Vash the Stampede, a pacifistic gun slinger. The story is a mix of comedy and drama. And we at r/Trigun would definitely recommend it!", "links": {"website": ["https://en.wikipedia.org/wiki/Trigun"], "subreddit": ["Trigun"]}, "path": {"124-188": [[-98, -509], [-98, -501], [-60, -501], [-59, -509]]}, "center": {"124-188": [-78, -505]}}, -{"id": 3643, "name": "United Gacha Alliance", "description": "Art featuring some of the most popular gacha games, represented by, from top left to bottom right: Dante (Limbus Company), Hatsune Miku (Project Sekai:Colorful Stage!), March 7th (Honkai: Star Rail), Arona (Blue Archive), Paimon (Genshin Impact), Kiana Kaslana (Honkai Impact), Rad Shiba (VA-11 Hall-A), Amiya (Arknights), Enterprise (Azur Lane), M4A1 (Girls Frontline), Artoria Caster (Fate/Grand Order) and Little Princess (Guardian Tales).", "links": {"website": ["http://limbuscompany.com", "http://hsr.hoyoverse.com", "http://bluearchive.nexon.com", "http://genshin.hoyoverse.com", "http://honkaiimpact3.hoyoverse.com", "http://waifubartending.com", "http://arknights.global", "http://gf.sunborngame.com", "http://fate-go.us", "http://guardiantales.com"], "subreddit": ["gachagaming"], "discord": ["unitedgacha"]}, "path": {"250-258": [[-714, 131], [-732, 145], [-729, 164], [-751, 164], [-738, 193], [-746, 215], [-702, 253], [-658, 251], [-614, 244], [-588, 214], [-593, 186], [-616, 182], [-595, 179], [-597, 158], [-623, 156], [-645, 133], [-713, 132]]}, "center": {"250-258": [-675, 192]}}, -{"id": 3644, "name": "Vermont", "description": "The outline of the state of Vermont.", "links": {"website": ["https://www.vermont.gov/"], "subreddit": ["vermont"]}, "path": {"195-258": [[-770, -999], [-770, -984], [-758, -984], [-758, -999]]}, "center": {"195-258": [-764, -991]}}, -{"id": 3645, "name": "OK NO - Discord server with friends!", "description": "a brazilian server who some friends thought would be cool to eternizate on r/place.", "links": {}, "path": {"250-258": [[-235, 825], [-225, 825], [-225, 837], [-235, 837]]}, "center": {"250-258": [-230, 831]}}, -{"id": 3646, "name": "drednot.io", "description": "A free multiplayer ship construction and combat game. Build a flying battleship with your friends and conquer the skies! Also known as Deep Space Airships.", "links": {"website": ["https://drednot.io/"], "subreddit": ["drednot"], "discord": ["dhFDzv4pDw"]}, "path": {"242-258": [[-1000, 629], [-957, 629], [-957, 639], [-1000, 639]]}, "center": {"242-258": [-978, 634]}}, -{"id": 3647, "name": "r/PlacePurpleHeart", "description": "This is a small little community that we just wanted to leave our mark on the canvas. In 2022 we worked with, and help found and lead, the r/place Doctor Who discord server so it only made sense to come back and work with them again. This year we had a fantasist year with the Purple Hearts being on the canvas almost the whole time with people maintaining them, along with the upwards of 10 Tardises around the map, around the clock.\n\nPeople would ask what the Purple Heart would stand for and in short it stands for nothing, only what you want it to stand for, but in long form the Purple Heart, or in this case two of them, stands for unity, cooperation, friendship, and that together we are stronger and can accomplish more then any one person or small group every could.\n\nEven if I cannot join in on the next r/place due to some outside factor I hope the Purple Heart will be made again and help to bring the values it, we have to small communities all over the canvas and in the Purple Hearts local area. Like we have with Doctor Who, Python, Dogs Ecuador, EarthBound, Pokémon, JetLag, MLP, CatDog, Cat tail (RIP), Pan flag, Malaysia, and the Irish.", "links": {"subreddit": ["PlacePurpleHeart"], "discord": ["WKQqj3QZMV"]}, "path": {"56-258": [[276, -143], [276, -153], [272, -153], [272, -143]]}, "center": {"56-258": [274, -148]}}, -{"id": 3648, "name": "Snorlaxxuz", "description": "Snorlaxxuz es una representación del youtuber y streamer Laxxuz. Perteneciente a los arkeanos, cuya comunidad tiene de nombre Wakanditas.", "links": {"website": ["https://www.twitch.tv/laxxuz", "https://www.youtube.com/c/TheLaxuz25"]}, "path": {"168-258": [[-560, 655], [-517, 655], [-517, 642], [-516, 641], [-516, 625], [-514, 621], [-514, 615], [-526, 622], [-530, 615], [-547, 616], [-549, 621], [-554, 618], [-557, 618]]}, "center": {"168-258": [-538, 637]}}, -{"id": 3649, "name": "R/GG/placeArg", "description": "This is the link to the reddit and discord to the server of Argentina", "links": {"subreddit": ["PlaceArg"], "discord": ["placeArg"]}, "path": {"215-258": [[1008, 917], [1008, 900], [1122, 901], [1123, 918]]}, "center": {"215-258": [1033, 909]}}, +{"id": 3643, "name": "United Gacha Alliance", "description": "Art featuring some of the most popular gacha games, represented by, from top left to bottom right: Dante (Limbus Company), Hatsune Miku (Project Sekai:Colorful Stage!), March 7th (Honkai: Star Rail), Arona (Blue Archive), Paimon (Genshin Impact), Kiana Kaslana (Honkai Impact), Rad Shiba (VA-11 Hall-A), Amiya (Arknights), Enterprise (Azur Lane), M4A1 (Girls Frontline), Artoria Caster (Fate/Grand Order) and Little Princess (Guardian Tales).", "links": {"website": ["http://limbuscompany.com", "http://hsr.hoyoverse.com", "http://bluearchive.nexon.com", "http://genshin.hoyoverse.com", "http://honkaiimpact3.hoyoverse.com", "http://waifubartending.com", "http://arknights.global", "http://gf.sunborngame.com", "http://fate-go.us", "http://guardiantales.com"], "subreddit": ["gachagaming"], "discord": ["unitedgacha"]}, "path": {"250-258, T": [[-714, 131], [-732, 145], [-729, 164], [-751, 164], [-738, 193], [-746, 215], [-702, 253], [-658, 251], [-614, 244], [-588, 214], [-593, 186], [-616, 182], [-595, 179], [-597, 158], [-623, 156], [-645, 133], [-713, 132]]}, "center": {"250-258, T": [-675, 192]}}, +{"id": 3644, "name": "Vermont", "description": "The outline of the state of Vermont.", "links": {"website": ["https://www.vermont.gov/"], "subreddit": ["vermont"]}, "path": {"195-258, T": [[-770, -999], [-770, -984], [-758, -984], [-758, -999]]}, "center": {"195-258, T": [-764, -991]}}, +{"id": 3645, "name": "OK NO - Discord server with friends!", "description": "a brazilian server who some friends thought would be cool to eternizate on r/place.", "links": {}, "path": {"250-258, T": [[-235, 825], [-225, 825], [-225, 837], [-235, 837]]}, "center": {"250-258, T": [-230, 831]}}, +{"id": 3646, "name": "drednot.io", "description": "A free multiplayer ship construction and combat game. Build a flying battleship with your friends and conquer the skies! Also known as Deep Space Airships.", "links": {"website": ["https://drednot.io/"], "subreddit": ["drednot"], "discord": ["dhFDzv4pDw"]}, "path": {"242-258, T": [[-1000, 629], [-957, 629], [-957, 639], [-1000, 639]]}, "center": {"242-258, T": [-978, 634]}}, +{"id": 3647, "name": "r/PlacePurpleHeart", "description": "This is a small little community that we just wanted to leave our mark on the canvas. In 2022 we worked with, and help found and lead, the r/place Doctor Who discord server so it only made sense to come back and work with them again. This year we had a fantasist year with the Purple Hearts being on the canvas almost the whole time with people maintaining them, along with the upwards of 10 Tardises around the map, around the clock.\n\nPeople would ask what the Purple Heart would stand for and in short it stands for nothing, only what you want it to stand for, but in long form the Purple Heart, or in this case two of them, stands for unity, cooperation, friendship, and that together we are stronger and can accomplish more then any one person or small group every could.\n\nEven if I cannot join in on the next r/place due to some outside factor I hope the Purple Heart will be made again and help to bring the values it, we have to small communities all over the canvas and in the Purple Hearts local area. Like we have with Doctor Who, Python, Dogs Ecuador, EarthBound, Pokémon, JetLag, MLP, CatDog, Cat tail (RIP), Pan flag, Malaysia, and the Irish.", "links": {"subreddit": ["PlacePurpleHeart"], "discord": ["WKQqj3QZMV"]}, "path": {"56-258, T": [[276, -143], [276, -153], [272, -153], [272, -143]]}, "center": {"56-258, T": [274, -148]}}, +{"id": 3648, "name": "Snorlaxxuz", "description": "Snorlaxxuz es una representación del youtuber y streamer Laxxuz. Perteneciente a los arkeanos, cuya comunidad tiene de nombre Wakanditas.", "links": {"website": ["https://www.twitch.tv/laxxuz", "https://www.youtube.com/c/TheLaxuz25"]}, "path": {"168-258, T": [[-560, 655], [-517, 655], [-517, 642], [-516, 641], [-516, 625], [-514, 621], [-514, 615], [-526, 622], [-530, 615], [-547, 616], [-549, 621], [-554, 618], [-557, 618]]}, "center": {"168-258, T": [-538, 637]}}, +{"id": 3649, "name": "R/GG/placeArg", "description": "This is the link to the reddit and discord to the server of Argentina", "links": {"subreddit": ["PlaceArg"], "discord": ["placeArg"]}, "path": {"215-258, T": [[1008, 917], [1008, 900], [1122, 901], [1123, 918]]}, "center": {"215-258, T": [1033, 909]}}, {"id": 3650, "name": "puma (cougar)", "description": "The cougar (Puma concolor) is a large cat native to the Americas.\nIts range spans from the Canadian Provinces of the Yukon, British Columbia and Alberta, the Rocky Mountains and areas to the Western United States. Their range extends further south through Mexico, where they are found in nearly every state, to the Amazon Rainforest and the southern Andes Mountains in Patagonia.\n\nThe Incas believed the puma to represent power and strength, as well as patience and wisdom. The original Inca Capital Cusco took the shape of a puma, with the massive citadel of Sacsayhuaman representing the head of the puma.\n\nthe cougar was associated with the \"Kay Pacha\" or \"the world of the living\" in the incan mythology", "links": {"website": ["https://es.wikipedia.org/wiki/Cougar"]}, "path": {"69-242": [[-188, 3], [-183, 7], [-182, 7], [-181, 11], [-182, 12], [-179, 15], [-172, 30], [-177, 32], [-180, 24], [-183, 25], [-183, 27], [-187, 27], [-191, 21], [-190, 12], [-187, 9], [-189, 6]]}, "center": {"69-242": [-184, 19]}}, -{"id": 3651, "name": "Il Vaticano", "description": "A depiction of Il Vaticano, a fictional chess move invented by users of r/AnarchyChess to confuse people.\n\nHow the move works is that if there are two adjacent pawns of the same color between two bishops of the opposing color to the pawns adjacent them on the same rank, those two bishops can take both of the pawns in a single turn, without the pieces changing their position.", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"238-258": [[-1203, 535], [-1203, 536], [-1204, 536], [-1204, 537], [-1205, 537], [-1205, 533], [-1205, 534], [-1206, 534], [-1207, 534], [-1207, 533], [-1208, 533], [-1208, 532], [-1213, 532], [-1213, 533], [-1214, 533], [-1214, 534], [-1215, 534], [-1216, 534], [-1216, 533], [-1216, 534], [-1216, 535], [-1216, 536], [-1217, 536], [-1218, 536], [-1218, 535], [-1218, 536], [-1219, 536], [-1219, 537], [-1220, 537], [-1220, 538], [-1219, 538], [-1219, 539], [-1219, 540], [-1220, 540], [-1220, 542], [-1217, 542], [-1217, 541], [-1216, 541], [-1216, 540], [-1217, 540], [-1217, 539], [-1217, 538], [-1216, 538], [-1216, 537], [-1214, 537], [-1214, 538], [-1213, 538], [-1213, 539], [-1213, 540], [-1214, 540], [-1214, 541], [-1214, 542], [-1207, 542], [-1207, 540], [-1208, 540], [-1208, 539], [-1208, 538], [-1207, 538], [-1207, 537], [-1205, 537], [-1205, 538], [-1204, 538], [-1204, 539], [-1204, 540], [-1205, 540], [-1205, 541], [-1204, 541], [-1204, 542], [-1202, 542], [-1202, 541], [-1201, 541], [-1201, 540], [-1202, 540], [-1202, 538], [-1201, 538], [-1201, 537], [-1202, 537], [-1202, 536], [-1203, 536]]}, "center": {"238-258": [-1210, 535]}}, -{"id": 3652, "name": "Nintendo Switch", "description": "This is a collaboration of several communities to represent their favorite video game franchises on the Nintendo Switch console. The map location was secured with the help of Romanian neighbors, a partnership depicted by Kirby waving their flag. Also featured on the Switch is a red Pikmin, a bell bag from Animal Crossing, helmets from both Metroid and Doom, a Triforce from Zelda, a mushroom, pipe, and Rainbow Road from Mario, a Pokéball from Pokémon, a Monado from Xenoblade Chronicles, and a duck from Blazing Beaks.", "links": {"subreddit": ["NintendoSwitch", "PlaceRO", "Kirby", "Pikmin", "AnimalCrossing", "Metroid", "Mario", "Doom", "Zelda", "Xenoblade_Chronicles", "BlazingBeaks", "Pokemon"]}, "path": {"202-258": [[-1392, 385], [-1442, 385], [-1442, 406], [-1392, 406], [-1392, 405], [-1392, 406]]}, "center": {"202-258": [-1417, 396]}}, -{"id": 3653, "name": "Charlotte from Genshin Impact", "description": "Charlotte is a character from the region of Fontaine in Genshin Impact. She is a Journalist for the Steambird.", "links": {"subreddit": ["CharlotteMains"], "discord": ["mU3Wfk4zkn"]}, "path": {"250-258": [[-348, 669], [-341, 669], [-337, 670], [-334, 672], [-332, 676], [-333, 679], [-335, 682], [-335, 685], [-337, 688], [-339, 689], [-336, 691], [-337, 692], [-339, 694], [-339, 698], [-341, 698], [-344, 698], [-347, 697], [-347, 696], [-351, 695], [-348, 690], [-346, 688], [-347, 688], [-350, 686], [-351, 683], [-351, 685], [-353, 682], [-354, 679], [-352, 677], [-353, 675], [-353, 673], [-353, 671], [-354, 669], [-352, 670], [-349, 673]]}, "center": {"250-258": [-343, 680]}}, -{"id": 3654, "name": "Rina-chan Board", "description": "The Rina-chan Board is used by Rina Tennoji, a character in the Japanese multimedia series Love Live! Because she is not good at expressing her facial emotions, Rina makes use of her very own \"Rina-chan Board\" to convey emotions as she shines in Nijigasaki's school idol club.", "links": {"website": ["https://love-live.fandom.com/wiki/Rina_Tennoji"], "subreddit": ["lovelive"], "discord": ["lovelive", "lovelivefrance"]}, "path": {"178-259": [[-1164, 13], [-1148, 13], [-1148, 29], [-1164, 29]]}, "center": {"178-259": [-1156, 21]}}, -{"id": 3655, "name": "emergency intercom", "description": "Emergency Intercom is a comedy podcast by Enya Umanzor and Drew Phillips. There is no emergency, but there is an intense need for attention, so maybe listen up…", "links": {"website": ["https://www.youtube.com/EmergencyIntercom"], "subreddit": ["emergencyintercom"]}, "path": {"250-258": [[-753, -970], [-739, -970], [-739, -956], [-753, -955], [-754, -956], [-752, -957], [-752, -958], [-752, -960], [-751, -963], [-753, -963], [-752, -965], [-754, -965], [-754, -969], [-754, -970]]}, "center": {"250-258": [-745, -962]}}, -{"id": 3656, "name": "Emote del Fazzone", "description": "famous emote of the well-known Italian streamer \"Tumblurr\".", "links": {"website": ["https://www.twitch.tv/tumblurr"], "subreddit": ["LaStalla"]}, "path": {"250-258": [[677, -1000], [678, -975], [631, -975], [630, -1000], [644, -999]]}, "center": {"250-258": [660, -987]}}, -{"id": 3657, "name": "Tiny SLS Rocket", "description": "Tiny art of NASA's SLS rocket and a tiny kerbal from the Kerbal Space Program video game. Thanks to the RVB group for helping us move!", "links": {"discord": ["GMBGbgdvnS"]}, "path": {"250-258": [[351, -502], [351, -496], [358, -496], [358, -486], [364, -486], [364, -511], [365, -512], [364, -512], [364, -515], [358, -515], [358, -503], [351, -503]]}, "center": {"250-258": [360, -499]}}, -{"id": 3658, "name": "Long Armenia", "description": "The flag of Armenia, a country in the Caucasus. This flag was under communion with Serbia, and France whom the country has a shared history with. The area, including the Serbia to the west and the Swiss art to the north, was attacked by a streamer last second, so the flag ended in a damaged state.", "links": {}, "path": {"250-258": [[-590, 271], [-590, 267], [-501, 267], [-501, 271]]}, "center": {"250-258": [-545, 269]}}, -{"id": 3659, "name": "Omega Crítico", "description": "Omega Crítico or OMONGO is an Argentinian content creator and streamer, known for his love of the S.T.A.L.K.E.R video game series and his obsession with trying all the Open World and TPS games, his informative videos about the Video Game Industry and how present he is with his community", "links": {"website": ["https://www.twitch.tv/omegacritico", "https://www.youtube.com/@CriticoOmega"]}, "path": {"173-259": [[-1046, -281], [-1046, -296], [-1030, -296], [-1031, -281]]}, "center": {"173-259": [-1038, -288]}}, -{"id": 3660, "name": "Muhammad Avdol (Jojo's Part 3)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 3: Stardust Crusaders.\n\nStand: Magician's Red\n\n\"YES! I am!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1090, -117], [-1088, -117], [-1088, -112], [-1087, -112], [-1088, -111], [-1090, -111], [-1091, -115]]}, "center": {"250-258": [-1089, -114]}}, -{"id": 3661, "name": "Armenian Amongus", "description": "Towards the last day Amongus characters started to invade the taskbar icons, including Armenia. Rather than fighting them, Armenia chose to embrace them by painting them in the Armenian colors and protecting them. Azerbaijanis kept attempting to change them to the Azerbaijani flag colors and adding penises on them.", "links": {}, "path": {"250-258": [[-503, 999], [-503, 996], [-469, 996], [-469, 999]]}, "center": {"250-258": [-486, 998]}}, -{"id": 3662, "name": "Robert E. O. Speedwagon (Jojo's Part 1)", "description": "A side protagonist of Jojo's Bizarre Adventure part 1: Phantom Blood.\n\n\"I won't let anyone lay a finger on that gentleman!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1125, -100], [-1126, -102], [-1127, -106], [-1125, -111], [-1122, -111], [-1121, -107], [-1120, -104], [-1121, -102], [-1122, -100]]}, "center": {"250-258": [-1124, -105]}}, -{"id": 3663, "name": "Belpiu and Chaleira Emojis", "description": "Art representing two Twich emojis, created by the community of Bel Rodrigues, a brazilian streamer of books, Taylor Swift, games, and everyday life content", "links": {"website": ["https://www.twitch.tv/belrodrigues"], "discord": ["bel"]}, "path": {"165-258": [[27, 529], [27, 542], [55, 542], [55, 529], [27, 529], [55, 529]]}, "center": {"165-258": [41, 536]}}, -{"id": 3664, "name": "PseudoCyan's 16 Pixels", "description": "Created by u/Cyan_Among, harboured under r/AnarchyChess, these 16 pixels supposedly represent Cyan_Among's name written in a conlang only they know. I don't know, because I'm definitely not them.", "links": {"subreddit": ["PseudoCyan"]}, "path": {"247-258": [[-1194, 555], [-1191, 555], [-1191, 558], [-1194, 558]]}, "center": {"247-258": [-1192, 557]}}, -{"id": 3665, "name": "Gege Circle", "description": "Gege Circle is a diverse circle by Wang Ge's sister, established with July 2018, the creative content mainly consists of paintings, novels and other works, the concept of the circle is to create more happiness for everyone, and hope to discover and change the world with people.", "links": {"subreddit": ["gege_circle"]}, "path": {"250-258": [[-729, 235], [-723, 240], [-723, 244], [-722, 245], [-729, 245], [-730, 245], [-730, 235]]}, "center": {"250-258": [-727, 241]}}, +{"id": 3651, "name": "Il Vaticano", "description": "A depiction of Il Vaticano, a fictional chess move invented by users of r/AnarchyChess to confuse people.\n\nHow the move works is that if there are two adjacent pawns of the same color between two bishops of the opposing color to the pawns adjacent them on the same rank, those two bishops can take both of the pawns in a single turn, without the pieces changing their position.", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"238-258, T": [[-1203, 535], [-1203, 536], [-1204, 536], [-1204, 537], [-1205, 537], [-1205, 533], [-1205, 534], [-1206, 534], [-1207, 534], [-1207, 533], [-1208, 533], [-1208, 532], [-1213, 532], [-1213, 533], [-1214, 533], [-1214, 534], [-1215, 534], [-1216, 534], [-1216, 533], [-1216, 534], [-1216, 535], [-1216, 536], [-1217, 536], [-1218, 536], [-1218, 535], [-1218, 536], [-1219, 536], [-1219, 537], [-1220, 537], [-1220, 538], [-1219, 538], [-1219, 539], [-1219, 540], [-1220, 540], [-1220, 542], [-1217, 542], [-1217, 541], [-1216, 541], [-1216, 540], [-1217, 540], [-1217, 539], [-1217, 538], [-1216, 538], [-1216, 537], [-1214, 537], [-1214, 538], [-1213, 538], [-1213, 539], [-1213, 540], [-1214, 540], [-1214, 541], [-1214, 542], [-1207, 542], [-1207, 540], [-1208, 540], [-1208, 539], [-1208, 538], [-1207, 538], [-1207, 537], [-1205, 537], [-1205, 538], [-1204, 538], [-1204, 539], [-1204, 540], [-1205, 540], [-1205, 541], [-1204, 541], [-1204, 542], [-1202, 542], [-1202, 541], [-1201, 541], [-1201, 540], [-1202, 540], [-1202, 538], [-1201, 538], [-1201, 537], [-1202, 537], [-1202, 536], [-1203, 536]]}, "center": {"238-258, T": [-1210, 535]}}, +{"id": 3652, "name": "Nintendo Switch", "description": "This is a collaboration of several communities to represent their favorite video game franchises on the Nintendo Switch console. The map location was secured with the help of Romanian neighbors, a partnership depicted by Kirby waving their flag. Also featured on the Switch is a red Pikmin, a bell bag from Animal Crossing, helmets from both Metroid and Doom, a Triforce from Zelda, a mushroom, pipe, and Rainbow Road from Mario, a Pokéball from Pokémon, a Monado from Xenoblade Chronicles, and a duck from Blazing Beaks.", "links": {"subreddit": ["NintendoSwitch", "PlaceRO", "Kirby", "Pikmin", "AnimalCrossing", "Metroid", "Mario", "Doom", "Zelda", "Xenoblade_Chronicles", "BlazingBeaks", "Pokemon"]}, "path": {"202-258, T": [[-1392, 385], [-1442, 385], [-1442, 406], [-1392, 406], [-1392, 405], [-1392, 406]]}, "center": {"202-258, T": [-1417, 396]}}, +{"id": 3653, "name": "Charlotte from Genshin Impact", "description": "Charlotte is a character from the region of Fontaine in Genshin Impact. She is a Journalist for the Steambird.", "links": {"subreddit": ["CharlotteMains"], "discord": ["mU3Wfk4zkn"]}, "path": {"250-258, T": [[-348, 669], [-341, 669], [-337, 670], [-334, 672], [-332, 676], [-333, 679], [-335, 682], [-335, 685], [-337, 688], [-339, 689], [-336, 691], [-337, 692], [-339, 694], [-339, 698], [-341, 698], [-344, 698], [-347, 697], [-347, 696], [-351, 695], [-348, 690], [-346, 688], [-347, 688], [-350, 686], [-351, 683], [-351, 685], [-353, 682], [-354, 679], [-352, 677], [-353, 675], [-353, 673], [-353, 671], [-354, 669], [-352, 670], [-349, 673]]}, "center": {"250-258, T": [-343, 680]}}, +{"id": 3654, "name": "Rina-chan Board", "description": "The Rina-chan Board is used by Rina Tennoji, a character in the Japanese multimedia series Love Live! Because she is not good at expressing her facial emotions, Rina makes use of her very own \"Rina-chan Board\" to convey emotions as she shines in Nijigasaki's school idol club.", "links": {"website": ["https://love-live.fandom.com/wiki/Rina_Tennoji"], "subreddit": ["lovelive"], "discord": ["lovelive", "lovelivefrance"]}, "path": {"178-259, T": [[-1164, 13], [-1148, 13], [-1148, 29], [-1164, 29]]}, "center": {"178-259, T": [-1156, 21]}}, +{"id": 3655, "name": "emergency intercom", "description": "Emergency Intercom is a comedy podcast by Enya Umanzor and Drew Phillips. There is no emergency, but there is an intense need for attention, so maybe listen up…", "links": {"website": ["https://www.youtube.com/EmergencyIntercom"], "subreddit": ["emergencyintercom"]}, "path": {"250-258, T": [[-753, -970], [-739, -970], [-739, -956], [-753, -955], [-754, -956], [-752, -957], [-752, -958], [-752, -960], [-751, -963], [-753, -963], [-752, -965], [-754, -965], [-754, -969], [-754, -970]]}, "center": {"250-258, T": [-745, -962]}}, +{"id": 3656, "name": "Emote del Fazzone", "description": "famous emote of the well-known Italian streamer \"Tumblurr\".", "links": {"website": ["https://www.twitch.tv/tumblurr"], "subreddit": ["LaStalla"]}, "path": {"250-258, T": [[677, -1000], [678, -975], [631, -975], [630, -1000], [644, -999]]}, "center": {"250-258, T": [660, -987]}}, +{"id": 3657, "name": "Tiny SLS Rocket", "description": "Tiny art of NASA's SLS rocket and a tiny kerbal from the Kerbal Space Program video game. Thanks to the RVB group for helping us move!", "links": {"discord": ["GMBGbgdvnS"]}, "path": {"250-258, T": [[351, -502], [351, -496], [358, -496], [358, -486], [364, -486], [364, -511], [365, -512], [364, -512], [364, -515], [358, -515], [358, -503], [351, -503]]}, "center": {"250-258, T": [360, -499]}}, +{"id": 3658, "name": "Long Armenia", "description": "The flag of Armenia, a country in the Caucasus. This flag was under communion with Serbia, and France whom the country has a shared history with. The area, including the Serbia to the west and the Swiss art to the north, was attacked by a streamer last second, so the flag ended in a damaged state.", "links": {}, "path": {"250-258, T": [[-590, 271], [-590, 267], [-501, 267], [-501, 271]]}, "center": {"250-258, T": [-545, 269]}}, +{"id": 3659, "name": "Omega Crítico", "description": "Omega Crítico or OMONGO is an Argentinian content creator and streamer, known for his love of the S.T.A.L.K.E.R video game series and his obsession with trying all the Open World and TPS games, his informative videos about the Video Game Industry and how present he is with his community", "links": {"website": ["https://www.twitch.tv/omegacritico", "https://www.youtube.com/@CriticoOmega"]}, "path": {"173-259, T": [[-1046, -281], [-1046, -296], [-1030, -296], [-1031, -281]]}, "center": {"173-259, T": [-1038, -288]}}, +{"id": 3660, "name": "Muhammad Avdol (Jojo's Part 3)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 3: Stardust Crusaders.\n\nStand: Magician's Red\n\n\"YES! I am!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1090, -117], [-1088, -117], [-1088, -112], [-1087, -112], [-1088, -111], [-1090, -111], [-1091, -115]]}, "center": {"250-258, T": [-1089, -114]}}, +{"id": 3661, "name": "Armenian Amongus", "description": "Towards the last day Amongus characters started to invade the taskbar icons, including Armenia. Rather than fighting them, Armenia chose to embrace them by painting them in the Armenian colors and protecting them. Azerbaijanis kept attempting to change them to the Azerbaijani flag colors and adding penises on them.", "links": {}, "path": {"250-258, T": [[-503, 999], [-503, 996], [-469, 996], [-469, 999]]}, "center": {"250-258, T": [-486, 998]}}, +{"id": 3662, "name": "Robert E. O. Speedwagon (Jojo's Part 1)", "description": "A side protagonist of Jojo's Bizarre Adventure part 1: Phantom Blood.\n\n\"I won't let anyone lay a finger on that gentleman!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1125, -100], [-1126, -102], [-1127, -106], [-1125, -111], [-1122, -111], [-1121, -107], [-1120, -104], [-1121, -102], [-1122, -100]]}, "center": {"250-258, T": [-1124, -105]}}, +{"id": 3663, "name": "Belpiu and Chaleira Emojis", "description": "Art representing two Twich emojis, created by the community of Bel Rodrigues, a brazilian streamer of books, Taylor Swift, games, and everyday life content", "links": {"website": ["https://www.twitch.tv/belrodrigues"], "discord": ["bel"]}, "path": {"165-258, T": [[27, 529], [27, 542], [55, 542], [55, 529], [27, 529], [55, 529]]}, "center": {"165-258, T": [41, 536]}}, +{"id": 3664, "name": "PseudoCyan's 16 Pixels", "description": "Created by u/Cyan_Among, harboured under r/AnarchyChess, these 16 pixels supposedly represent Cyan_Among's name written in a conlang only they know. I don't know, because I'm definitely not them.", "links": {"subreddit": ["PseudoCyan"]}, "path": {"247-258, T": [[-1194, 555], [-1191, 555], [-1191, 558], [-1194, 558]]}, "center": {"247-258, T": [-1192, 557]}}, +{"id": 3665, "name": "Gege Circle", "description": "Gege Circle is a diverse circle by Wang Ge's sister, established with July 2018, the creative content mainly consists of paintings, novels and other works, the concept of the circle is to create more happiness for everyone, and hope to discover and change the world with people.", "links": {"subreddit": ["gege_circle"]}, "path": {"250-258, T": [[-729, 235], [-723, 240], [-723, 244], [-722, 245], [-729, 245], [-730, 245], [-730, 235]]}, "center": {"250-258, T": [-727, 241]}}, {"id": 3666, "name": "Cavinator1", "description": "The Minecraft player head for Cavinator1: the creator of various Minecraft projects such as: BlazeandCave's Advancement Pack, the Assassin of Steve trilogy, Celestial Protocol, and Dance Floor.", "links": {"website": ["https://www.planetminecraft.com/member/cavinator1/"], "discord": ["blaze-and-cave-419383460600348673"]}, "path": {"207-229": [[1000, 228], [1000, 235], [1007, 235], [1007, 228]]}, "center": {"207-229": [1004, 232]}}, -{"id": 3667, "name": "CineCool", "description": "An emoji from the Cinemagrath twitch channel.\n\nMatthew \"Matt\" Magrath, also known as Cinemagrath is a Brazilian streamer and content creator", "links": {"website": ["https://www.twitch.tv/cinemagrath"], "subreddit": ["cinemagrath"], "discord": ["Xm3rgEWB"]}, "path": {"209-258": [[1002, 185], [1002, 223], [1040, 224], [1040, 185]]}, "center": {"209-258": [1021, 204]}}, +{"id": 3667, "name": "CineCool", "description": "An emoji from the Cinemagrath twitch channel.\n\nMatthew \"Matt\" Magrath, also known as Cinemagrath is a Brazilian streamer and content creator", "links": {"website": ["https://www.twitch.tv/cinemagrath"], "subreddit": ["cinemagrath"], "discord": ["Xm3rgEWB"]}, "path": {"209-258, T": [[1002, 185], [1002, 223], [1040, 224], [1040, 185]]}, "center": {"209-258, T": [1021, 204]}}, {"id": 3668, "name": "Tsukumo Sana's limiter", "description": "Tsukumo Sana was a Youtube streamer apart of Hololive English Council. She retired on the 31st of July 2022 This limiter is used in her lore as how she keeps her small size", "links": {"website": ["https://www.youtube.com/channel/UCsUj0dszADCGbF3gNrQEuSQ"], "subreddit": ["Hololive"]}, "path": {"252": [[-617, -305], [-616, -306], [-616, -308], [-615, -308], [-615, -309], [-613, -309], [-612, -310], [-611, -311], [-611, -312], [-612, -313], [-614, -314], [-622, -314], [-623, -313], [-623, -310], [-622, -309], [-621, -308], [-618, -308], [-618, -306]]}, "center": {"252": [-618, -311]}}, -{"id": 3669, "name": "GEGG", "description": "\"Gegg chamg e world\"\n\n—Gegg, 2023", "links": {"website": ["https://twitter.com/Slimecicle?s=20"]}, "path": {"250-258": [[534, 529], [536, 529], [536, 530], [538, 530], [538, 531], [539, 531], [539, 532], [540, 532], [540, 533], [541, 533], [541, 538], [540, 538], [540, 540], [539, 540], [539, 541], [538, 541], [538, 542], [536, 542], [536, 543], [534, 543], [534, 542], [532, 542], [532, 541], [531, 541], [531, 540], [530, 540], [530, 538], [529, 538], [529, 533], [530, 533], [530, 532], [531, 532], [531, 531], [532, 531], [532, 530], [534, 530]]}, "center": {"250-258": [535, 536]}}, -{"id": 3670, "name": "Koichi Hirose (Jojo's Part 4)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable.\n\nStand: Echoes\n\n\"even I was able to figure out your name. You're not that big a deal. You might get away for now, but how do you feel? A little brat like me managed to find out what your name was. Let me say that again. A little brat found you out! You're a complete idiot! I'll be looking forward to seeing you in the next world!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1127, -112], [-1128, -114], [-1129, -118], [-1128, -119], [-1124, -119], [-1123, -118], [-1123, -114], [-1124, -112]]}, "center": {"250-258": [-1126, -116]}}, -{"id": 3671, "name": "Marmoarmy", "description": "Marmota senpai strimer de Chile \nLicenciada en reacciones, fan N° 1 de Steins gate\n\nComunidad de la Besto Strimer Marmotasenpai (marmoarmy)\n\nHemos generado una comunidad muy bonita y sociable, por lo que si estas buscando un lugar para conversar y/o pasarla bien eres bienvenida/o.", "links": {"website": ["https://www.twitch.tv/marmotasenpai", "https://kick.com/marmotatusenpai"], "subreddit": ["MarmoArmy"], "discord": ["marmotasenpai"]}, "path": {"250-258": [[57, 599], [55, 599], [57, 597], [72, 598], [72, 615], [55, 615]]}, "center": {"250-258": [64, 607]}}, -{"id": 3672, "name": "King's Playground", "description": "A small group dedicated to ROBLOX players! With the cat and crown logo symbolizing the discord server mascot, el gato (orange cat with a ROBLOX man face), moving up the ranks as a king.", "links": {"discord": ["4Vw6RN7s5c"]}, "path": {"208-226": [[1382, 675], [1368, 675], [1368, 687], [1382, 684]], "67-74": [[696, -78], [696, -71], [705, -71], [705, -78]], "250-258": [[1474, 673], [1482, 673], [1482, 679], [1474, 679]]}, "center": {"208-226": [1373, 680], "67-74": [701, -74], "250-258": [1478, 676]}}, -{"id": 3673, "name": "P.H GANG", "description": "PH Gvng (PHG) is the name of a Chilean group of friends who reside in a Villa Alemana, Valparaíso, Chile. The name PHG originates from the fact that in 2022 a colleague named \"Pascal Hernández Gutiérrez\" passed away. He was part of this group that was previously called \"Fumamos Coca\", when the friend passed away, the name was changed in his honor to \"PH Gvng\" the PH for \"Pascal Hernández\" and \"Gvng\" It is for the initial of the second last name of our deceased partner (Gutiérrez) But since we are a group we decided to replace it with \"Gang\", which means \"gang\".", "links": {"website": ["https://www.instagram.com/phgvng_/"]}, "path": {"250-258": [[-784, -821], [-784, -830], [-784, -831], [-784, -832], [-804, -832], [-804, -820], [-784, -820]]}, "center": {"250-258": [-794, -826]}}, -{"id": 3674, "name": "Amazigh Flag", "description": "The flag representing the Amazighs,indigenous group in North Africa", "links": {}, "path": {"250-258": [[-529, -334], [-522, -334], [-522, -324], [-528, -324]]}, "center": {"250-258": [-525, -329]}}, -{"id": 3675, "name": "Logo de Aldo_geo", "description": "Arte creado por la comunidad de Aldo_geo, streamer originario de aguascalientes, México; conocido por su personaje Pericles en gta rolplay, Dedsafio Minecraft 2, creador del HORMIGEO 1 y 2 miembro del famoso Mctrio", "links": {"website": ["https://www.twitch.tv/aldo_geo"], "subreddit": ["Pendegeos"]}, "path": {"159-258": [[645, 499], [673, 499], [673, 520], [645, 519]]}, "center": {"159-258": [659, 509]}}, -{"id": 3676, "name": "Hassan 2 Mosque", "description": "This is a representation of the biggest mosque in Morocco, and the biggest functionning in Africa.", "links": {}, "path": {"250-258": [[-527, -305], [-527, -276], [-501, -276], [-501, -282], [-505, -286], [-516, -286], [-518, -283], [-519, -283], [-519, -305], [-523, -310]]}, "center": {"250-258": [-513, -281]}}, -{"id": 3677, "name": "Narrancia Ghirga (Jojo's Part 5)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind.\n\nStand: Aerosmith\n\n\"Trish is me! She is me! The wound on her arm is my own!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1126, -90], [-1122, -90], [-1122, -86], [-1123, -82], [-1126, -82], [-1128, -86]]}, "center": {"250-258": [-1125, -86]}}, -{"id": 3678, "name": "Azerbaijan", "description": "The country of Azerbaijan as it appears on a map, with the flag of Azerbaijan as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Azerbaijan", "https://en.wikipedia.org/wiki/Flag_of_Azerbaijan"], "subreddit": ["placeazerbaijan", "azerbaijan", "PlaceEU"]}, "path": {"232-252": [[-132, 757], [-132, 768], [-130, 768], [-129, 783], [-113, 798], [-112, 798], [-112, 761], [-120, 761], [-126, 757]], "194-204": [[-128, 759], [-128, 762], [-125, 768], [-113, 768], [-113, 760], [-120, 760], [-120, 759]], "167-193": [[-123, 757], [-127, 762], [-117, 775], [-127, 779], [-127, 781], [-118, 789], [-113, 789], [-113, 761], [-120, 757]], "253-258": [[-132, 761], [-132, 766], [-129, 766], [-129, 769], [-127, 769], [-126, 768], [-112, 768], [-112, 761]]}, "center": {"232-252": [-120, 777], "194-204": [-122, 764], "167-193": [-118, 781], "253-258": [-116, 764]}}, -{"id": 3679, "name": "Golden Chocolate Donut", "description": "Shinobu Oshino's favorite donut from Mister Donut. See subreddit and Discord on Shinobu Oshino's entry.", "links": {}, "path": {"133-258": [[-671, 295], [-667, 295], [-666, 296], [-665, 297], [-665, 299], [-667, 301], [-670, 301], [-672, 299], [-672, 297], [-671, 296]]}, "center": {"133-258": [-668, 298]}}, -{"id": 3680, "name": "Head of Ziggs", "description": "The head of a character called Ziggs from league of legends", "links": {"website": ["https://leagueoflegends.fandom.com/wiki/Ziggs/LoL"], "subreddit": ["ZiggsMains"]}, "path": {"168-258": [[-190, -774], [-185, -774], [-185, -767], [-191, -767], [-191, -774]]}, "center": {"168-258": [-188, -770]}}, -{"id": 3681, "name": "Torchic - Pokémon", "description": "Torchic is a Fire-type Pokémon introduced in Generation III. Along with Mudkip and Treecko, it is one of the three starter Pokémon available to players in the Hoenn region.\n\nInitially wiped out at (-150, -900), Torchic was recreated then maintained by the \"Pokemon in r/place\" Discord on the backdrop of \"Pokemon evolution\" in the final hours of r/place.", "links": {"subreddit": ["PlacePokemon2"], "discord": ["TZeRPaFZ"]}, "path": {"250-258": [[1069, -865], [1072, -871], [1072, -882], [1065, -887], [1058, -883], [1058, -870], [1061, -865]]}, "center": {"250-258": [1065, -876]}}, -{"id": 3682, "name": "Lipinho", "description": "It's Lipinho, from the game \"Moonleap\", made by Guselect Productions.", "links": {"website": ["https://store.steampowered.com/app/2166050/Moonleap/"]}, "path": {"171-258": [[242, 407], [243, 394], [238, 389], [231, 390], [229, 400], [232, 409], [244, 407], [244, 392], [238, 388], [230, 390], [228, 400], [232, 410]]}, "center": {"171-258": [243, 405]}}, -{"id": 3683, "name": "Flag of Nigeria", "description": "Nigeria is one of the most populated countries in the world with a quickly growing population of 200 million. The flag has been relocated many times, but this one has made it to the final canvas (although in a damaged state in the true final one)", "links": {"subreddit": ["Nigeria"]}, "path": {"239-258": [[3, -750], [8, -750], [8, -746], [3, -746]]}, "center": {"239-258": [6, -748]}}, -{"id": 3684, "name": "ManuuXO", "description": "Logo of the well-known Italian streamer \"ManuXO\".", "links": {"website": ["https://www.twitch.tv/manuuxo"], "subreddit": ["manuuxo"]}, "path": {"250-258": [[-1330, 759], [-1294, 759], [-1292, 794], [-1328, 796]]}, "center": {"250-258": [-1311, 777]}}, -{"id": 3685, "name": "Diablada Mask", "description": "The Diablada, also known as the Danza de los Diablos (English: Dance of the Devils), is an Andean folk dance performed in the Altiplano region of South America, characterized by performers wearing masks and costumes representing the devil and other characters from pre-Columbian theology and mythology combined with Spanish and Christian elements added during the colonial era. Its name originated in 1789 in Oruro, Bolivia, where performers dressed like the devil in parades called Diabladas. The first organized Diablada group with defined music and choreography appeared in Bolivia in 1904.", "links": {"website": ["https://en.wikipedia.org/wiki/Diablada"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[698, -820], [701, -812], [714, -811], [718, -803], [735, -802], [738, -809], [751, -810], [755, -819], [762, -824], [756, -832], [749, -832], [753, -839], [748, -841], [748, -855], [741, -856], [710, -856], [705, -851], [705, -842], [701, -839], [705, -833], [698, -831], [693, -824]]}, "center": {"250-258": [727, -830]}}, -{"id": 3686, "name": "Bolek and Lolek", "description": "Bolek and Lolek is a Polish cartoon made by Studio Filmów Rysunkowych, studio, which is also responsible for Reksio.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolek_and_Lolek"]}, "path": {"231-258": [[541, -129], [543, -127], [545, -127], [546, -126], [546, -120], [554, -120], [555, -121], [556, -120], [567, -120], [567, -122], [566, -123], [566, -124], [567, -125], [570, -128], [570, -131], [569, -132], [569, -133], [568, -134], [569, -135], [567, -135], [567, -136], [569, -138], [567, -137], [564, -137], [565, -139], [563, -138], [562, -140], [561, -137], [559, -137], [559, -140], [558, -140], [558, -142], [556, -144], [558, -145], [556, -145], [554, -144], [554, -146], [552, -145], [552, -147], [551, -145], [549, -145], [548, -144], [547, -144], [544, -141], [544, -140], [543, -139], [543, -135], [544, -134], [544, -133], [545, -132], [545, -131], [544, -131], [543, -132], [542, -132], [541, -132], [541, -128]]}, "center": {"231-258": [554, -130]}}, -{"id": 3687, "name": "\"Stańczyk\" by Jan Matejko", "description": "Painting by a famous Polish painter Jan Matejko depicting Stańczyk who was a Polish court jester during the reign of King Sigismund I the Old.", "links": {"website": ["https://en.wikipedia.org/wiki/Sta%C5%84czyk_(painting)"], "subreddit": ["Poland", "Polska"]}, "path": {"250-258": [[809, -72], [809, -83], [810, -85], [818, -89], [818, -97], [822, -102], [828, -103], [828, -104], [833, -104], [838, -102], [840, -100], [840, -72]]}, "center": {"250-258": [829, -85]}}, -{"id": 3688, "name": "jermaThing2.0", "description": "jermaThing, also known as The Thing face, is a meme and emote on American steamer and creator Jerma985's channel, originating from his \"The Thing\" stream (from 21st October, 2019). He made the original face when he almost died due to not paying attention to his surroundings, which would have resulted in having to do a tough boss fight again. Someone then edited it into what we see now. This version is the second of two completed 'jermaThings', both done with the alliance of r/furry_irl. The first jermaThing (position -605, -676) was created and destroyed on July 23.", "links": {"website": ["https://www.twitch.tv/jerma985", "https://jerma-lore.fandom.com/wiki/JermaThing"], "subreddit": ["jerma985", "furry_irl"], "discord": ["jerma"]}, "path": {"193-258": [[-1061, 228], [-1067, 228], [-1068, 229], [-1072, 229], [-1072, 230], [-1073, 230], [-1073, 231], [-1074, 231], [-1074, 232], [-1075, 232], [-1075, 233], [-1076, 233], [-1076, 234], [-1077, 234], [-1077, 235], [-1078, 235], [-1079, 246], [-1079, 247], [-1080, 247], [-1080, 258], [-1079, 260], [-1078, 261], [-1071, 261], [-1071, 262], [-1068, 263], [-1067, 264], [-1066, 266], [-1064, 266], [-1063, 267], [-1050, 267], [-1050, 263], [-1051, 260], [-1051, 258], [-1051, 257], [-1050, 257], [-1050, 256], [-1049, 256], [-1049, 240], [-1050, 240], [-1050, 238], [-1051, 238], [-1051, 237], [-1051, 239], [-1051, 237], [-1052, 237], [-1052, 236], [-1053, 236], [-1053, 235], [-1054, 235], [-1054, 234], [-1055, 235], [-1055, 234], [-1055, 233], [-1056, 232], [-1057, 231], [-1060, 229]]}, "center": {"193-258": [-1064, 247]}}, -{"id": 3689, "name": "Dig Dug", "description": "Pixel Art of Dig Dug from the 1981 Arcade Game of the same name.", "links": {}, "path": {"250-258": [[-1316, 381], [-1314, 380], [-1313, 379], [-1311, 378], [-1310, 378], [-1309, 379], [-1309, 380], [-1307, 381], [-1305, 382], [-1305, 384], [-1306, 385], [-1307, 386], [-1306, 387], [-1305, 385], [-1304, 386], [-1303, 387], [-1302, 388], [-1303, 389], [-1304, 390], [-1305, 391], [-1306, 389], [-1307, 390], [-1308, 391], [-1306, 392], [-1309, 393], [-1310, 393], [-1311, 391], [-1313, 391], [-1316, 391], [-1316, 390], [-1315, 389], [-1317, 389], [-1317, 388], [-1316, 387], [-1315, 386], [-1317, 386], [-1317, 382]]}, "center": {"250-258": [-1311, 384]}}, -{"id": 3690, "name": "Licanius Trilogy", "description": "A subtle reference to the covers of the Licanius trilogy by James Islington! :D", "links": {"subreddit": ["LicaniusTrilogy"]}, "path": {"153-259": [[598, 861], [601, 861], [601, 870], [598, 870]]}, "center": {"153-259": [600, 866]}}, +{"id": 3669, "name": "GEGG", "description": "\"Gegg chamg e world\"\n\n—Gegg, 2023", "links": {"website": ["https://twitter.com/Slimecicle?s=20"]}, "path": {"250-258, T": [[534, 529], [536, 529], [536, 530], [538, 530], [538, 531], [539, 531], [539, 532], [540, 532], [540, 533], [541, 533], [541, 538], [540, 538], [540, 540], [539, 540], [539, 541], [538, 541], [538, 542], [536, 542], [536, 543], [534, 543], [534, 542], [532, 542], [532, 541], [531, 541], [531, 540], [530, 540], [530, 538], [529, 538], [529, 533], [530, 533], [530, 532], [531, 532], [531, 531], [532, 531], [532, 530], [534, 530]]}, "center": {"250-258, T": [535, 536]}}, +{"id": 3670, "name": "Koichi Hirose (Jojo's Part 4)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable.\n\nStand: Echoes\n\n\"even I was able to figure out your name. You're not that big a deal. You might get away for now, but how do you feel? A little brat like me managed to find out what your name was. Let me say that again. A little brat found you out! You're a complete idiot! I'll be looking forward to seeing you in the next world!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1127, -112], [-1128, -114], [-1129, -118], [-1128, -119], [-1124, -119], [-1123, -118], [-1123, -114], [-1124, -112]]}, "center": {"250-258, T": [-1126, -116]}}, +{"id": 3671, "name": "Marmoarmy", "description": "Marmota senpai strimer de Chile \nLicenciada en reacciones, fan N° 1 de Steins gate\n\nComunidad de la Besto Strimer Marmotasenpai (marmoarmy)\n\nHemos generado una comunidad muy bonita y sociable, por lo que si estas buscando un lugar para conversar y/o pasarla bien eres bienvenida/o.", "links": {"website": ["https://www.twitch.tv/marmotasenpai", "https://kick.com/marmotatusenpai"], "subreddit": ["MarmoArmy"], "discord": ["marmotasenpai"]}, "path": {"250-258, T": [[57, 599], [55, 599], [57, 597], [72, 598], [72, 615], [55, 615]]}, "center": {"250-258, T": [64, 607]}}, +{"id": 3672, "name": "King's Playground", "description": "A small group dedicated to ROBLOX players! With the cat and crown logo symbolizing the discord server mascot, el gato (orange cat with a ROBLOX man face), moving up the ranks as a king.", "links": {"discord": ["4Vw6RN7s5c"]}, "path": {"208-226": [[1382, 675], [1368, 675], [1368, 687], [1382, 684]], "67-74": [[696, -78], [696, -71], [705, -71], [705, -78]], "250-258, T": [[1474, 673], [1482, 673], [1482, 679], [1474, 679]]}, "center": {"208-226": [1373, 680], "67-74": [701, -74], "250-258, T": [1478, 676]}}, +{"id": 3673, "name": "P.H GANG", "description": "PH Gvng (PHG) is the name of a Chilean group of friends who reside in a Villa Alemana, Valparaíso, Chile. The name PHG originates from the fact that in 2022 a colleague named \"Pascal Hernández Gutiérrez\" passed away. He was part of this group that was previously called \"Fumamos Coca\", when the friend passed away, the name was changed in his honor to \"PH Gvng\" the PH for \"Pascal Hernández\" and \"Gvng\" It is for the initial of the second last name of our deceased partner (Gutiérrez) But since we are a group we decided to replace it with \"Gang\", which means \"gang\".", "links": {"website": ["https://www.instagram.com/phgvng_/"]}, "path": {"250-258, T": [[-784, -821], [-784, -830], [-784, -831], [-784, -832], [-804, -832], [-804, -820], [-784, -820]]}, "center": {"250-258, T": [-794, -826]}}, +{"id": 3674, "name": "Amazigh Flag", "description": "The flag representing the Amazighs,indigenous group in North Africa", "links": {}, "path": {"250-258, T": [[-529, -334], [-522, -334], [-522, -324], [-528, -324]]}, "center": {"250-258, T": [-525, -329]}}, +{"id": 3675, "name": "Logo de Aldo_geo", "description": "Arte creado por la comunidad de Aldo_geo, streamer originario de aguascalientes, México; conocido por su personaje Pericles en gta rolplay, Dedsafio Minecraft 2, creador del HORMIGEO 1 y 2 miembro del famoso Mctrio", "links": {"website": ["https://www.twitch.tv/aldo_geo"], "subreddit": ["Pendegeos"]}, "path": {"159-258, T": [[645, 499], [673, 499], [673, 520], [645, 519]]}, "center": {"159-258, T": [659, 509]}}, +{"id": 3676, "name": "Hassan 2 Mosque", "description": "This is a representation of the biggest mosque in Morocco, and the biggest functionning in Africa.", "links": {}, "path": {"250-258, T": [[-527, -305], [-527, -276], [-501, -276], [-501, -282], [-505, -286], [-516, -286], [-518, -283], [-519, -283], [-519, -305], [-523, -310]]}, "center": {"250-258, T": [-513, -281]}}, +{"id": 3677, "name": "Narrancia Ghirga (Jojo's Part 5)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind.\n\nStand: Aerosmith\n\n\"Trish is me! She is me! The wound on her arm is my own!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1126, -90], [-1122, -90], [-1122, -86], [-1123, -82], [-1126, -82], [-1128, -86]]}, "center": {"250-258, T": [-1125, -86]}}, +{"id": 3678, "name": "Azerbaijan", "description": "The country of Azerbaijan as it appears on a map, with the flag of Azerbaijan as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Azerbaijan", "https://en.wikipedia.org/wiki/Flag_of_Azerbaijan"], "subreddit": ["placeazerbaijan", "azerbaijan", "PlaceEU"]}, "path": {"194-204": [[-128, 759], [-128, 762], [-125, 768], [-113, 768], [-113, 760], [-120, 760], [-120, 759]], "167-193": [[-123, 757], [-127, 762], [-117, 775], [-127, 779], [-127, 781], [-118, 789], [-113, 789], [-113, 761], [-120, 757]], "253-258": [[-132, 761], [-132, 766], [-129, 766], [-129, 769], [-127, 769], [-126, 768], [-112, 768], [-112, 761]], "232-252, T": [[-132, 757], [-132, 768], [-130, 768], [-129, 783], [-113, 798], [-112, 798], [-112, 761], [-120, 761], [-126, 757]]}, "center": {"194-204": [-122, 764], "167-193": [-118, 781], "253-258": [-116, 764], "232-252, T": [-120, 777]}}, +{"id": 3679, "name": "Golden Chocolate Donut", "description": "Shinobu Oshino's favorite donut from Mister Donut. See subreddit and Discord on Shinobu Oshino's entry.", "links": {}, "path": {"133-258, T": [[-671, 295], [-667, 295], [-666, 296], [-665, 297], [-665, 299], [-667, 301], [-670, 301], [-672, 299], [-672, 297], [-671, 296]]}, "center": {"133-258, T": [-668, 298]}}, +{"id": 3680, "name": "Head of Ziggs", "description": "The head of a character called Ziggs from league of legends", "links": {"website": ["https://leagueoflegends.fandom.com/wiki/Ziggs/LoL"], "subreddit": ["ZiggsMains"]}, "path": {"168-258, T": [[-190, -774], [-185, -774], [-185, -767], [-191, -767], [-191, -774]]}, "center": {"168-258, T": [-188, -770]}}, +{"id": 3681, "name": "Torchic - Pokémon", "description": "Torchic is a Fire-type Pokémon introduced in Generation III. Along with Mudkip and Treecko, it is one of the three starter Pokémon available to players in the Hoenn region.\n\nInitially wiped out at (-150, -900), Torchic was recreated then maintained by the \"Pokemon in r/place\" Discord on the backdrop of \"Pokemon evolution\" in the final hours of r/place.", "links": {"subreddit": ["PlacePokemon2"], "discord": ["TZeRPaFZ"]}, "path": {"250-258, T": [[1069, -865], [1072, -871], [1072, -882], [1065, -887], [1058, -883], [1058, -870], [1061, -865]]}, "center": {"250-258, T": [1065, -876]}}, +{"id": 3682, "name": "Lipinho", "description": "It's Lipinho, from the game \"Moonleap\", made by Guselect Productions.", "links": {"website": ["https://store.steampowered.com/app/2166050/Moonleap/"]}, "path": {"171-258, T": [[242, 407], [243, 394], [238, 389], [231, 390], [229, 400], [232, 409], [244, 407], [244, 392], [238, 388], [230, 390], [228, 400], [232, 410]]}, "center": {"171-258, T": [243, 405]}}, +{"id": 3683, "name": "Flag of Nigeria", "description": "Nigeria is one of the most populated countries in the world with a quickly growing population of 200 million. The flag has been relocated many times, but this one has made it to the final canvas (although in a damaged state in the true final one)", "links": {"subreddit": ["Nigeria"]}, "path": {"239-258, T": [[3, -750], [8, -750], [8, -746], [3, -746]]}, "center": {"239-258, T": [6, -748]}}, +{"id": 3684, "name": "ManuuXO", "description": "Logo of the well-known Italian streamer \"ManuXO\".", "links": {"website": ["https://www.twitch.tv/manuuxo"], "subreddit": ["manuuxo"]}, "path": {"250-258, T": [[-1330, 759], [-1294, 759], [-1292, 794], [-1328, 796]]}, "center": {"250-258, T": [-1311, 777]}}, +{"id": 3685, "name": "Diablada Mask", "description": "The Diablada, also known as the Danza de los Diablos (English: Dance of the Devils), is an Andean folk dance performed in the Altiplano region of South America, characterized by performers wearing masks and costumes representing the devil and other characters from pre-Columbian theology and mythology combined with Spanish and Christian elements added during the colonial era. Its name originated in 1789 in Oruro, Bolivia, where performers dressed like the devil in parades called Diabladas. The first organized Diablada group with defined music and choreography appeared in Bolivia in 1904.", "links": {"website": ["https://en.wikipedia.org/wiki/Diablada"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[698, -820], [701, -812], [714, -811], [718, -803], [735, -802], [738, -809], [751, -810], [755, -819], [762, -824], [756, -832], [749, -832], [753, -839], [748, -841], [748, -855], [741, -856], [710, -856], [705, -851], [705, -842], [701, -839], [705, -833], [698, -831], [693, -824]]}, "center": {"250-258, T": [727, -830]}}, +{"id": 3686, "name": "Bolek and Lolek", "description": "Bolek and Lolek is a Polish cartoon made by Studio Filmów Rysunkowych, studio, which is also responsible for Reksio.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolek_and_Lolek"]}, "path": {"231-258, T": [[541, -129], [543, -127], [545, -127], [546, -126], [546, -120], [554, -120], [555, -121], [556, -120], [567, -120], [567, -122], [566, -123], [566, -124], [567, -125], [570, -128], [570, -131], [569, -132], [569, -133], [568, -134], [569, -135], [567, -135], [567, -136], [569, -138], [567, -137], [564, -137], [565, -139], [563, -138], [562, -140], [561, -137], [559, -137], [559, -140], [558, -140], [558, -142], [556, -144], [558, -145], [556, -145], [554, -144], [554, -146], [552, -145], [552, -147], [551, -145], [549, -145], [548, -144], [547, -144], [544, -141], [544, -140], [543, -139], [543, -135], [544, -134], [544, -133], [545, -132], [545, -131], [544, -131], [543, -132], [542, -132], [541, -132], [541, -128]]}, "center": {"231-258, T": [554, -130]}}, +{"id": 3687, "name": "\"Stańczyk\" by Jan Matejko", "description": "Painting by a famous Polish painter Jan Matejko depicting Stańczyk who was a Polish court jester during the reign of King Sigismund I the Old.", "links": {"website": ["https://en.wikipedia.org/wiki/Sta%C5%84czyk_(painting)"], "subreddit": ["Poland", "Polska"]}, "path": {"250-258, T": [[809, -72], [809, -83], [810, -85], [818, -89], [818, -97], [822, -102], [828, -103], [828, -104], [833, -104], [838, -102], [840, -100], [840, -72]]}, "center": {"250-258, T": [829, -85]}}, +{"id": 3688, "name": "jermaThing2.0", "description": "jermaThing, also known as The Thing face, is a meme and emote on American steamer and creator Jerma985's channel, originating from his \"The Thing\" stream (from 21st October, 2019). He made the original face when he almost died due to not paying attention to his surroundings, which would have resulted in having to do a tough boss fight again. Someone then edited it into what we see now. This version is the second of two completed 'jermaThings', both done with the alliance of r/furry_irl. The first jermaThing (position -605, -676) was created and destroyed on July 23.", "links": {"website": ["https://www.twitch.tv/jerma985", "https://jerma-lore.fandom.com/wiki/JermaThing"], "subreddit": ["jerma985", "furry_irl"], "discord": ["jerma"]}, "path": {"193-258, T": [[-1061, 228], [-1067, 228], [-1068, 229], [-1072, 229], [-1072, 230], [-1073, 230], [-1073, 231], [-1074, 231], [-1074, 232], [-1075, 232], [-1075, 233], [-1076, 233], [-1076, 234], [-1077, 234], [-1077, 235], [-1078, 235], [-1079, 246], [-1079, 247], [-1080, 247], [-1080, 258], [-1079, 260], [-1078, 261], [-1071, 261], [-1071, 262], [-1068, 263], [-1067, 264], [-1066, 266], [-1064, 266], [-1063, 267], [-1050, 267], [-1050, 263], [-1051, 260], [-1051, 258], [-1051, 257], [-1050, 257], [-1050, 256], [-1049, 256], [-1049, 240], [-1050, 240], [-1050, 238], [-1051, 238], [-1051, 237], [-1051, 239], [-1051, 237], [-1052, 237], [-1052, 236], [-1053, 236], [-1053, 235], [-1054, 235], [-1054, 234], [-1055, 235], [-1055, 234], [-1055, 233], [-1056, 232], [-1057, 231], [-1060, 229]]}, "center": {"193-258, T": [-1064, 247]}}, +{"id": 3689, "name": "Dig Dug", "description": "Pixel Art of Dig Dug from the 1981 Arcade Game of the same name.", "links": {}, "path": {"250-258, T": [[-1316, 381], [-1314, 380], [-1313, 379], [-1311, 378], [-1310, 378], [-1309, 379], [-1309, 380], [-1307, 381], [-1305, 382], [-1305, 384], [-1306, 385], [-1307, 386], [-1306, 387], [-1305, 385], [-1304, 386], [-1303, 387], [-1302, 388], [-1303, 389], [-1304, 390], [-1305, 391], [-1306, 389], [-1307, 390], [-1308, 391], [-1306, 392], [-1309, 393], [-1310, 393], [-1311, 391], [-1313, 391], [-1316, 391], [-1316, 390], [-1315, 389], [-1317, 389], [-1317, 388], [-1316, 387], [-1315, 386], [-1317, 386], [-1317, 382]]}, "center": {"250-258, T": [-1311, 384]}}, +{"id": 3690, "name": "Licanius Trilogy", "description": "A subtle reference to the covers of the Licanius trilogy by James Islington! :D", "links": {"subreddit": ["LicaniusTrilogy"]}, "path": {"153-259, T": [[598, 861], [601, 861], [601, 870], [598, 870]]}, "center": {"153-259, T": [600, 866]}}, {"id": 3691, "name": "Patty Meza - Corazón", "description": "Patty Meza is a Mexican content creator known by her funny attitude and her special kindness, extremely loved by her community \"Los Pattytos\".\nShe is also known by being a great ally towards the LGBTQ community and having a Podcast \"TRANSNOCHANDO\" with her best friends, also streamers: Crystal Molly, Nezumivy and Caprimint.", "links": {"website": ["https://www.twitch.tv/pattymeza"]}, "path": {"252": [[-1194, -612], [-1194, -618], [-1193, -618], [-1193, -619], [-1192, -619], [-1192, -621], [-1193, -621], [-1192, -621], [-1192, -623], [-1191, -623], [-1191, -625], [-1190, -625], [-1190, -626], [-1189, -626], [-1189, -627], [-1188, -627], [-1188, -628], [-1187, -628], [-1187, -629], [-1186, -629], [-1186, -630], [-1186, -631], [-1187, -631], [-1187, -632], [-1188, -632], [-1188, -633], [-1189, -633], [-1189, -634], [-1190, -634], [-1190, -636], [-1191, -636], [-1191, -637], [-1192, -637], [-1192, -647], [-1191, -647], [-1191, -648], [-1190, -648], [-1190, -650], [-1189, -650], [-1189, -652], [-1188, -652], [-1188, -653], [-1187, -653], [-1187, -654], [-1186, -654], [-1186, -655], [-1182, -656], [-1182, -657], [-1180, -657], [-1180, -658], [-1178, -658], [-1178, -659], [-1176, -659], [-1176, -660], [-1158, -660], [-1158, -659], [-1155, -659], [-1155, -658], [-1152, -658], [-1152, -657], [-1151, -657], [-1151, -656], [-1150, -656], [-1150, -655], [-1149, -655], [-1149, -654], [-1148, -654], [-1148, -653], [-1148, -652], [-1147, -652], [-1147, -651], [-1146, -651], [-1146, -650], [-1145, -650], [-1145, -649], [-1144, -649], [-1144, -647], [-1143, -647], [-1143, -644], [-1142, -644], [-1142, -637], [-1142, -636], [-1143, -636], [-1143, -634], [-1144, -634], [-1144, -633], [-1145, -633], [-1145, -631], [-1146, -631], [-1146, -629], [-1147, -629], [-1147, -628], [-1148, -628], [-1148, -626], [-1147, -626], [-1147, -625], [-1146, -625], [-1146, -620], [-1147, -620], [-1147, -619], [-1148, -619], [-1148, -617], [-1146, -617], [-1146, -615], [-1146, -614], [-1145, -614], [-1145, -612]]}, "center": {"252": [-1166, -639]}}, -{"id": 3692, "name": "Diavolo (Jojo's Part 5)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 5: Golden Wind.\n\nStands: King Crimson, Epitaph\n\n\"No one can escape the fate that was chosen for them. All that remains is the end, where you will all perish. Eternal greatness exists only within myself. Sing a song of sorrow in a world where time has vanished.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1085, -107], [-1081, -107], [-1080, -106], [-1080, -102], [-1082, -99], [-1085, -99], [-1086, -101], [-1086, -103]]}, "center": {"250-258": [-1083, -103]}}, -{"id": 3693, "name": "Scuderia Ferrari", "description": "Scuderia Ferrari S.p.A. is the racing division of luxury Italian auto manufacturer Ferrari and the racing team that competes in Formula One racing. The team is also known by the nickname \"The Prancing Horse\", in reference to their logo. It is the oldest surviving and most successful Formula One team, having competed in every world championship since the 1950 Formula One season. The team was founded by Enzo Ferrari, initially to race cars produced by Alfa Romeo. However, by 1947 Ferrari had begun building its own cars. Among its important achievements outside Formula One are winning the World Sportscar Championship, 24 Hours of Le Mans, 24 Hours of Spa, 24 Hours of Daytona, 12 Hours of Sebring, Bathurst 12 Hour, races for Grand tourer cars and racing on road courses of the Targa Florio, the Mille Miglia and the Carrera Panamericana. The team is also known for its passionate support base, known as the tifosi. The Italian Grand Prix at Monza is regarded as the team's home race.", "links": {"website": ["https://en.wikipedia.org/wiki/Scuderia_Ferrari"], "subreddit": ["scuderiaferrari"]}, "path": {"250-258": [[64, 243], [72, 238], [72, 227], [69, 226], [62, 225], [61, 226], [59, 226], [58, 227], [58, 237], [59, 238]]}, "center": {"250-258": [65, 234]}}, -{"id": 3694, "name": "Flag of Trinidad and Tobago", "description": "The flag of the small country in the Caribbean just off the coast of Venezuela. It was relocated here when the original flag was taken over by the Norwegians.", "links": {"subreddit": ["TrinidadandTobago"]}, "path": {"246-258": [[38, -667], [27, -667], [27, -660], [38, -660]]}, "center": {"246-258": [33, -663]}}, -{"id": 3695, "name": "Mika's Cat", "description": "\"Mika's Cat\" is a tribute to Nijisanji Vtuber Mika Melatika's pet cat that passed away the day before r/place began. It was used by one user to write an \"I heart T\" message for their girlfriend. and the heart of his message stayed with the cat until the very end.", "links": {"website": ["https://www.youtube.com/channel/UCahgMxSIQ2zIRrPKhM6Mjvg"], "subreddit": ["Nijisanji"], "discord": ["vtubersplace"]}, "path": {"108-258": [[-613, -264], [-611, -264], [-610, -265], [-609, -265], [-608, -264], [-607, -263], [-607, -261], [-606, -260], [-605, -259], [-605, -258], [-604, -257], [-603, -256], [-602, -255], [-601, -254], [-601, -251], [-602, -250], [-603, -249], [-604, -248], [-615, -248], [-616, -249], [-616, -254], [-618, -254], [-617, -255], [-616, -255], [-616, -260], [-615, -260], [-615, -262], [-614, -262], [-614, -264]]}, "center": {"108-258": [-610, -254]}}, -{"id": 3696, "name": "SoSohikari", "description": "Creación de Alexander, la rata suprema, comunidad de Acordes de la streamer SoSoHikari nacida en Ecuador. ACS. \nCon una referencia que solo lo sabe su \ncreador.", "links": {"website": ["https://www.twitch.tv/sosohikari", "https://kick.com/sosohikari", "https://www.twitch.tv/alexanderzod"], "discord": ["nA9ZY5cmWc"]}, "path": {"250-258": [[-365, -874], [-365, -873], [-350, -873], [-349, -873], [-349, -885], [-361, -885], [-361, -879], [-362, -879], [-362, -877], [-363, -877], [-363, -876], [-364, -876], [-364, -875], [-365, -875], [-365, -873]]}, "center": {"250-258": [-355, -879]}}, +{"id": 3692, "name": "Diavolo (Jojo's Part 5)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 5: Golden Wind.\n\nStands: King Crimson, Epitaph\n\n\"No one can escape the fate that was chosen for them. All that remains is the end, where you will all perish. Eternal greatness exists only within myself. Sing a song of sorrow in a world where time has vanished.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1085, -107], [-1081, -107], [-1080, -106], [-1080, -102], [-1082, -99], [-1085, -99], [-1086, -101], [-1086, -103]]}, "center": {"250-258, T": [-1083, -103]}}, +{"id": 3693, "name": "Scuderia Ferrari", "description": "Scuderia Ferrari S.p.A. is the racing division of luxury Italian auto manufacturer Ferrari and the racing team that competes in Formula One racing. The team is also known by the nickname \"The Prancing Horse\", in reference to their logo. It is the oldest surviving and most successful Formula One team, having competed in every world championship since the 1950 Formula One season. The team was founded by Enzo Ferrari, initially to race cars produced by Alfa Romeo. However, by 1947 Ferrari had begun building its own cars. Among its important achievements outside Formula One are winning the World Sportscar Championship, 24 Hours of Le Mans, 24 Hours of Spa, 24 Hours of Daytona, 12 Hours of Sebring, Bathurst 12 Hour, races for Grand tourer cars and racing on road courses of the Targa Florio, the Mille Miglia and the Carrera Panamericana. The team is also known for its passionate support base, known as the tifosi. The Italian Grand Prix at Monza is regarded as the team's home race.", "links": {"website": ["https://en.wikipedia.org/wiki/Scuderia_Ferrari"], "subreddit": ["scuderiaferrari"]}, "path": {"250-258, T": [[64, 243], [72, 238], [72, 227], [69, 226], [62, 225], [61, 226], [59, 226], [58, 227], [58, 237], [59, 238]]}, "center": {"250-258, T": [65, 234]}}, +{"id": 3694, "name": "Flag of Trinidad and Tobago", "description": "The flag of the small country in the Caribbean just off the coast of Venezuela. It was relocated here when the original flag was taken over by the Norwegians.", "links": {"subreddit": ["TrinidadandTobago"]}, "path": {"246-258, T": [[38, -667], [27, -667], [27, -660], [38, -660]]}, "center": {"246-258, T": [33, -663]}}, +{"id": 3695, "name": "Mika's Cat", "description": "\"Mika's Cat\" is a tribute to Nijisanji Vtuber Mika Melatika's pet cat that passed away the day before r/place began. It was used by one user to write an \"I heart T\" message for their girlfriend. and the heart of his message stayed with the cat until the very end.", "links": {"website": ["https://www.youtube.com/channel/UCahgMxSIQ2zIRrPKhM6Mjvg"], "subreddit": ["Nijisanji"], "discord": ["vtubersplace"]}, "path": {"108-258, T": [[-613, -264], [-611, -264], [-610, -265], [-609, -265], [-608, -264], [-607, -263], [-607, -261], [-606, -260], [-605, -259], [-605, -258], [-604, -257], [-603, -256], [-602, -255], [-601, -254], [-601, -251], [-602, -250], [-603, -249], [-604, -248], [-615, -248], [-616, -249], [-616, -254], [-618, -254], [-617, -255], [-616, -255], [-616, -260], [-615, -260], [-615, -262], [-614, -262], [-614, -264]]}, "center": {"108-258, T": [-610, -254]}}, +{"id": 3696, "name": "SoSohikari", "description": "Creación de Alexander, la rata suprema, comunidad de Acordes de la streamer SoSoHikari nacida en Ecuador. ACS. \nCon una referencia que solo lo sabe su \ncreador.", "links": {"website": ["https://www.twitch.tv/sosohikari", "https://kick.com/sosohikari", "https://www.twitch.tv/alexanderzod"], "discord": ["nA9ZY5cmWc"]}, "path": {"250-258, T": [[-365, -874], [-365, -873], [-350, -873], [-349, -873], [-349, -885], [-361, -885], [-361, -879], [-362, -879], [-362, -877], [-363, -877], [-363, -876], [-364, -876], [-364, -875], [-365, -875], [-365, -873]]}, "center": {"250-258, T": [-355, -879]}}, {"id": 3697, "name": "jermaThing", "description": "jermaThing, also known as The Thing face, is a meme and emote on American steamer and creator Jerma985's channel, originating from his \"The Thing\" stream (from 21st October, 2019). He made the original face when he almost died due to not paying attention to his surroundings, which would have resulted in having to do a tough boss fight again. Someone then edited it into what we see now. This version is the first of two completed 'jermaThings', both done with the alliance of r/furry_irl. Another (position -1064, 247) is created later on July 24 and lasts until the whiteout.", "links": {"website": ["https://www.twitch.tv/jerma985", "https://jerma-lore.fandom.com/wiki/JermaThing"], "subreddit": ["jerma985", "furry_irl"], "discord": ["jerma"]}, "path": {"121-151": [[-601, -696], [-613, -696], [-613, -695], [-614, -695], [-614, -694], [-615, -694], [-615, -693], [-616, -693], [-616, -692], [-617, -692], [-618, -691], [-619, -690], [-619, -679], [-620, -678], [-620, -672], [-620, -661], [-597, -661], [-596, -661], [-596, -660], [-595, -660], [-595, -659], [-591, -659], [-591, -660], [-590, -660], [-590, -663], [-591, -663], [-591, -677], [-591, -688], [-593, -689], [-594, -689], [-594, -690], [-595, -690], [-595, -691], [-596, -691], [-596, -692], [-597, -691], [-597, -692], [-598, -693], [-599, -694], [-601, -695]]}, "center": {"121-151": [-605, -676]}}, -{"id": 3698, "name": "The Poundland Shoppers", "description": "This small pixel art represents the Poundland Shoppers steam group made famous by their incredible clutches and high win rates on Counter-Strike Global Offensive.", "links": {"website": ["https://steamcommunity.com/groups/ThePoundlandShoppers"]}, "path": {"250-258": [[-1433, 8], [-1433, 17], [-1426, 17], [-1426, 8]]}, "center": {"250-258": [-1429, 13]}}, +{"id": 3698, "name": "The Poundland Shoppers", "description": "This small pixel art represents the Poundland Shoppers steam group made famous by their incredible clutches and high win rates on Counter-Strike Global Offensive.", "links": {"website": ["https://steamcommunity.com/groups/ThePoundlandShoppers"]}, "path": {"250-258, T": [[-1433, 8], [-1433, 17], [-1426, 17], [-1426, 8]]}, "center": {"250-258, T": [-1429, 13]}}, {"id": 3699, "name": "Qiqi", "description": "Qiqi is a carachter from the game Genshin Impact. She's known from ruining the player's luck on their pulls. This pose, whci is an emoji, is also a meme.", "links": {"subreddit": ["Genshin_Impact"], "discord": ["sumeru"]}, "path": {"242": [[0, 313], [0, 318], [3, 320], [11, 321], [18, 319], [23, 314], [27, 313], [27, 305], [20, 302], [13, 302], [5, 306], [6, 312], [4, 312], [1, 313]]}, "center": {"242": [15, 311]}}, {"id": 3700, "name": "Deutsche Splat Bundesliga e.V.", "description": "Logo of \"Deutsche Splat Bundesliga e.V.\"\nThe German Splatoon League", "links": {"subreddit": ["splatbundesliga"], "discord": ["deutschesplbundesliga"]}, "path": {"48-65": [[138, 139], [138, 149], [153, 149], [153, 139]]}, "center": {"48-65": [146, 144]}}, -{"id": 3701, "name": "Flag of Kurdistan", "description": "Indigenous to a mountainous region in the northern Middle East, the Kurds are the largest stateless nation in the world seeking independence and the fourth largest ethnic group in the Middle East. They have a long history of political marginalisation and persecution.\n\nThis flag was created with the help of diplomats from r/Greece (especially GreekSwagLord & gadgetChain) and was therefore well protected.", "links": {"website": ["https://en.wikipedia.org/wiki/Kurds", "https://en.wikipedia.org/wiki/Flag_of_Kurdistan", "https://en.wikipedia.org/wiki/Kurdistan"], "subreddit": ["Kurdistan"], "discord": ["2FwHvkjQ"]}, "path": {"191-258": [[382, 872], [441, 872], [441, 880], [382, 880]]}, "center": {"191-258": [412, 876]}}, -{"id": 3702, "name": "Hu Tao's Ghost", "description": "Ghost companion/pet associated with a Genshin Impact character Hu Tao.", "links": {"subreddit": ["Genshin_Impact", "HuTao_Mains"]}, "path": {"250-258": [[-59, 359], [-55, 357], [-53, 352], [-54, 350], [-57, 348], [-59, 348], [-61, 351], [-62, 352], [-62, 354], [-61, 354], [-61, 358]]}, "center": {"250-258": [-57, 353]}}, -{"id": 3703, "name": "Lyney and Lynette Cats", "description": "Lyney and Lynette in cat form! Lyney and Lynette are two upcoming characters from the game Genshin Impact!", "links": {"subreddit": ["lyney", "ynette"], "discord": ["lyney", "lynette"]}, "path": {"185-258": [[-1390, 605], [-1369, 605], [-1369, 618], [-1390, 618]]}, "center": {"185-258": [-1379, 612]}}, +{"id": 3701, "name": "Flag of Kurdistan", "description": "Indigenous to a mountainous region in the northern Middle East, the Kurds are the largest stateless nation in the world seeking independence and the fourth largest ethnic group in the Middle East. They have a long history of political marginalisation and persecution.\n\nThis flag was created with the help of diplomats from r/Greece (especially GreekSwagLord & gadgetChain) and was therefore well protected.", "links": {"website": ["https://en.wikipedia.org/wiki/Kurds", "https://en.wikipedia.org/wiki/Flag_of_Kurdistan", "https://en.wikipedia.org/wiki/Kurdistan"], "subreddit": ["Kurdistan"], "discord": ["2FwHvkjQ"]}, "path": {"191-258, T": [[382, 872], [441, 872], [441, 880], [382, 880]]}, "center": {"191-258, T": [412, 876]}}, +{"id": 3702, "name": "Hu Tao's Ghost", "description": "Ghost companion/pet associated with a Genshin Impact character Hu Tao.", "links": {"subreddit": ["Genshin_Impact", "HuTao_Mains"]}, "path": {"250-258, T": [[-59, 359], [-55, 357], [-53, 352], [-54, 350], [-57, 348], [-59, 348], [-61, 351], [-62, 352], [-62, 354], [-61, 354], [-61, 358]]}, "center": {"250-258, T": [-57, 353]}}, +{"id": 3703, "name": "Lyney and Lynette Cats", "description": "Lyney and Lynette in cat form! Lyney and Lynette are two upcoming characters from the game Genshin Impact!", "links": {"subreddit": ["lyney", "ynette"], "discord": ["lyney", "lynette"]}, "path": {"185-258, T": [[-1390, 605], [-1369, 605], [-1369, 618], [-1390, 618]]}, "center": {"185-258, T": [-1379, 612]}}, {"id": 3704, "name": "Tako of the Void", "description": "A depiction of a takodachi, the mascot of Ninomae Ina'nis, a VTuber from the Hololive agency as part of Myth.\n\nWhile this artwork was not planned by the VTubers fan coordination group, the character lore for Ina states that takodachis are creatures of the Void, presumably explaining the decision to place one right in the path of the Swarm's expansion.", "links": {"website": ["https://hololivepro.com/en/"], "subreddit": ["hololive"]}, "path": {"139-153": [[-237, -834], [-237, -824], [-225, -823], [-226, -834]]}, "center": {"139-153": [-231, -829]}}, -{"id": 3705, "name": "Bolek i Lolek (Bolek and Lolek)", "description": "Characters from a famous polish cartoon by the same name airing from 1962 to\n1986", "links": {"subreddit": ["Poland", "Polska"]}, "path": {"250-258": [[569, -120], [567, -124], [556, -120], [546, -120], [546, -126], [541, -129], [541, -132], [546, -130], [543, -135], [543, -139], [549, -145], [558, -145], [559, -137], [562, -137], [562, -140], [563, -138], [568, -137], [570, -131]]}, "center": {"250-258": [555, -129]}}, -{"id": 3706, "name": "Casa dos Youtubers", "description": "The work of 7 portuguese teenagers and 40 accounts.\n\nThe star represents Estrela Azul (the best football club in Cacia, Portugal).\nThe bird represent \"Passarinho\" (the bird that knows everything).\nThe anchor represents Beira Mar (the best club in Aveiro, Portugal)\nThe yellow boat represents a moliceiro (most common transpotation method in Aveiro City).\nThe grey house represents \"Casa dos Youtubers\" (até ficas a bater mal).\nThe green and red houses represents Costa Nova (best city in Aveiro, protected by João Resende).\n\"Casa\" is the name of the friend group the teenagers are a part of.\n\"Ramos\" is the name of a promising football star in Aveiro, and the best looking, most athletic, member of the group.\n\nArt by:\n-Portuga (17 accounts)\n- DCvintage (7 accounts)\n- Jozze (7 accounts)\n- zwist (7 accounts)\n- Dre2007 (6 accounts)\n- féliX (4 accounts)\n- Realyz3 (2 accounts)\n-Caiks (1 account)\n-JoniClan (1 account)\n-Kanga (1 account)\n- with special participation of Sonecas and PowerfulScallion", "links": {"website": ["https://www.youtube.com/@casadosyoutubers69420"]}, "path": {"205-234": [[1076, -1000], [1077, -965], [1102, -964], [1103, -1000]], "235-236": [[1075, -1000], [1075, -982], [1051, -982], [1051, -977], [1075, -977], [1075, -965], [1102, -965], [1102, -1000]], "237-239": [[1069, -1000], [1069, -982], [1051, -982], [1051, -977], [1075, -977], [1075, -964], [1102, -964], [1103, -1000]], "240-253": [[1051, -1000], [1051, -977], [1075, -977], [1075, -964], [1103, -964], [1103, -1000]]}, "center": {"205-234": [1090, -986], "235-236": [1088, -983], "237-239": [1088, -985], "240-253": [1088, -985]}}, -{"id": 3707, "name": "skephalo flag", "description": "Skephalo is a ship name for two minecraft youtubers skeppy and badboyhalo. Created by Happytwt", "links": {"website": ["https://www.youtube.com/@Skeppy", "https://www.youtube.com/@thesaintsofgames", "https://www.twitch.tv/skeppy", "https://www.twitch.tv/badboyhalo"]}, "path": {"204-259": [[1244, 503], [1244, 517], [1284, 517], [1284, 503], [1251, 503]]}, "center": {"204-259": [1264, 510]}}, +{"id": 3705, "name": "Bolek i Lolek (Bolek and Lolek)", "description": "Characters from a famous polish cartoon by the same name airing from 1962 to\n1986", "links": {"subreddit": ["Poland", "Polska"]}, "path": {"250-258, T": [[569, -120], [567, -124], [556, -120], [546, -120], [546, -126], [541, -129], [541, -132], [546, -130], [543, -135], [543, -139], [549, -145], [558, -145], [559, -137], [562, -137], [562, -140], [563, -138], [568, -137], [570, -131]]}, "center": {"250-258, T": [555, -129]}}, +{"id": 3706, "name": "Casa dos Youtubers", "description": "The work of 7 portuguese teenagers and 40 accounts.\n\nThe star represents Estrela Azul (the best football club in Cacia, Portugal).\nThe bird represent \"Passarinho\" (the bird that knows everything).\nThe anchor represents Beira Mar (the best club in Aveiro, Portugal)\nThe yellow boat represents a moliceiro (most common transpotation method in Aveiro City).\nThe grey house represents \"Casa dos Youtubers\" (até ficas a bater mal).\nThe green and red houses represents Costa Nova (best city in Aveiro, protected by João Resende).\n\"Casa\" is the name of the friend group the teenagers are a part of.\n\"Ramos\" is the name of a promising football star in Aveiro, and the best looking, most athletic, member of the group.\n\nArt by:\n-Portuga (17 accounts)\n- DCvintage (7 accounts)\n- Jozze (7 accounts)\n- zwist (7 accounts)\n- Dre2007 (6 accounts)\n- féliX (4 accounts)\n- Realyz3 (2 accounts)\n-Caiks (1 account)\n-JoniClan (1 account)\n-Kanga (1 account)\n- with special participation of Sonecas and PowerfulScallion", "links": {"website": ["https://www.youtube.com/@casadosyoutubers69420"]}, "path": {"205-234": [[1076, -1000], [1077, -965], [1102, -964], [1103, -1000]], "235-236": [[1075, -1000], [1075, -982], [1051, -982], [1051, -977], [1075, -977], [1075, -965], [1102, -965], [1102, -1000]], "237-239": [[1069, -1000], [1069, -982], [1051, -982], [1051, -977], [1075, -977], [1075, -964], [1102, -964], [1103, -1000]], "240-253, T": [[1051, -1000], [1051, -977], [1075, -977], [1075, -964], [1103, -964], [1103, -1000]]}, "center": {"205-234": [1090, -986], "235-236": [1088, -983], "237-239": [1088, -985], "240-253, T": [1088, -985]}}, +{"id": 3707, "name": "skephalo flag", "description": "Skephalo is a ship name for two minecraft youtubers skeppy and badboyhalo. Created by Happytwt", "links": {"website": ["https://www.youtube.com/@Skeppy", "https://www.youtube.com/@thesaintsofgames", "https://www.twitch.tv/skeppy", "https://www.twitch.tv/badboyhalo"]}, "path": {"204-259, T": [[1244, 503], [1244, 517], [1284, 517], [1284, 503], [1251, 503]]}, "center": {"204-259, T": [1264, 510]}}, {"id": 3708, "name": "Ganqing Yuri", "description": "Ganqing is a popular lesbian Genshin Impact ship between \"Ganyu\" and \"Keqing\"\n\n\"Yuri\" is a genre of Japanese comics, animation, and related media focusing on lesbian themes and content.", "links": {"subreddit": ["Ganqing"], "discord": ["vcPZSuMNBv"]}, "path": {"253-258": [[-1497, 230], [-1473, 230], [-1470, 232], [-1469, 258], [-1497, 258], [-1497, 230], [-1500, 233]]}, "center": {"253-258": [-1483, 244]}}, -{"id": 3709, "name": "Tumblurr", "description": "Tumblurr is an Italian streamer in retaliation against a battle with the Destiny MelW art piece the name was changed to cumslurr", "links": {"website": ["https://www.twitch.tv/tumblurr"], "subreddit": ["LaStalla"]}, "path": {"250-258": [[899, 899], [975, 898], [977, 918], [900, 916]]}, "center": {"250-258": [966, 908]}}, +{"id": 3709, "name": "Tumblurr", "description": "Tumblurr is an Italian streamer in retaliation against a battle with the Destiny MelW art piece the name was changed to cumslurr", "links": {"website": ["https://www.twitch.tv/tumblurr"], "subreddit": ["LaStalla"]}, "path": {"250-258, T": [[899, 899], [975, 898], [977, 918], [900, 916]]}, "center": {"250-258, T": [966, 908]}}, {"id": 3710, "name": "Kanade Yoisaki", "description": "Kanade Yoisaki from the rhythm game Project Sekai (or ColorfulStage). It was created by one user, not a community.", "links": {"website": ["https://www.colorfulstage.com/"], "subreddit": ["projectsekai"]}, "path": {"252": [[1229, 347], [1234, 344], [1239, 344], [1242, 346], [1240, 349], [1238, 351], [1242, 348], [1242, 350], [1242, 358], [1230, 358], [1231, 357], [1231, 356], [1231, 355], [1230, 354], [1229, 353], [1229, 351], [1229, 350], [1229, 351]]}, "center": {"252": [1234, 350]}}, -{"id": 3711, "name": "PumpItUp arrow", "description": "Pump It Up (Korean: 펌프 잇 업; RR: Peompeu it eop) is a music video game series developed and published by Andamiro, a Korean arcade game producer.\noverlord people placed this pump it up arrow because of their allaince", "links": {"subreddit": ["PumpItUp"]}, "path": {"250-258": [[631, 952], [632, 952], [632, 953], [631, 953]]}, "center": {"250-258": [632, 953]}}, -{"id": 3712, "name": "xfarganx Cubito", "description": "Cubito de Minecraft de xfarganx, un creador de contenido de YouTube", "links": {"website": ["https://youtube.com/@xFaRgAnx"]}, "path": {"250-258": [[110, 597], [110, 598], [110, 614], [125, 614], [127, 597]]}, "center": {"250-258": [118, 606]}}, -{"id": 3713, "name": "France - Peace flag", "description": "This was a flag that was worked on by some French people and r/twentyonepilots in an act of alliance", "links": {}, "path": {"241-258": [[-1391, 291], [-1390, 294], [-1391, 290], [-1390, 290], [-1392, 289], [-1393, 288], [-1391, 288], [-1393, 288], [-1393, 289], [-1393, 288], [-1393, 290], [-1393, 291], [-1393, 293], [-1393, 294], [-1392, 296], [-1392, 298], [-1391, 298], [-1389, 298], [-1387, 298], [-1385, 298], [-1375, 298], [-1374, 289], [-1375, 288], [-1384, 288], [-1388, 288], [-1390, 289]]}, "center": {"241-258": [-1383, 293]}}, -{"id": 3714, "name": "HYBE K-Pop Artist Corner", "description": "This block included most of the groups under the South Korean label HYBE Entertainent.\nThe groups included were: Seventeen, TXT, Enhypen, NewJeans, fromis_9, Le Sserafim, BoyNextDoor, and &Team. Each of the groups are working hard and each making their impact on the K-pop industry in their own incredible ways and us fans wanted to honor them by building this area on r/place for them!", "links": {}, "path": {"250-258": [[375, -839], [401, -839], [401, -831], [393, -831], [393, -818], [390, -818], [390, -796], [369, -796], [369, -802], [370, -802], [370, -803], [371, -803], [371, -804], [373, -804], [373, -805], [374, -805], [374, -806], [375, -806]]}, "center": {"250-258": [384, -829]}}, +{"id": 3711, "name": "PumpItUp arrow", "description": "Pump It Up (Korean: 펌프 잇 업; RR: Peompeu it eop) is a music video game series developed and published by Andamiro, a Korean arcade game producer.\noverlord people placed this pump it up arrow because of their allaince", "links": {"subreddit": ["PumpItUp"]}, "path": {"250-258, T": [[631, 952], [632, 952], [632, 953], [631, 953]]}, "center": {"250-258, T": [632, 953]}}, +{"id": 3712, "name": "xfarganx Cubito", "description": "Cubito de Minecraft de xfarganx, un creador de contenido de YouTube", "links": {"website": ["https://youtube.com/@xFaRgAnx"]}, "path": {"250-258, T": [[110, 597], [110, 598], [110, 614], [125, 614], [127, 597]]}, "center": {"250-258, T": [118, 606]}}, +{"id": 3713, "name": "France - Peace flag", "description": "This was a flag that was worked on by some French people and r/twentyonepilots in an act of alliance", "links": {}, "path": {"241-258, T": [[-1391, 291], [-1390, 294], [-1391, 290], [-1390, 290], [-1392, 289], [-1393, 288], [-1391, 288], [-1393, 288], [-1393, 289], [-1393, 288], [-1393, 290], [-1393, 291], [-1393, 293], [-1393, 294], [-1392, 296], [-1392, 298], [-1391, 298], [-1389, 298], [-1387, 298], [-1385, 298], [-1375, 298], [-1374, 289], [-1375, 288], [-1384, 288], [-1388, 288], [-1390, 289]]}, "center": {"241-258, T": [-1383, 293]}}, +{"id": 3714, "name": "HYBE K-Pop Artist Corner", "description": "This block included most of the groups under the South Korean label HYBE Entertainent.\nThe groups included were: Seventeen, TXT, Enhypen, NewJeans, fromis_9, Le Sserafim, BoyNextDoor, and &Team. Each of the groups are working hard and each making their impact on the K-pop industry in their own incredible ways and us fans wanted to honor them by building this area on r/place for them!", "links": {}, "path": {"250-258, T": [[375, -839], [401, -839], [401, -831], [393, -831], [393, -818], [390, -818], [390, -796], [369, -796], [369, -802], [370, -802], [370, -803], [371, -803], [371, -804], [373, -804], [373, -805], [374, -805], [374, -806], [375, -806]]}, "center": {"250-258, T": [384, -829]}}, {"id": 3715, "name": "MUGA", "description": "a little MUGA (emote from 7tv, a twitch extesion) made by Velcuz community", "links": {"website": ["https://twitch.tv/velcuz", "https://kick.com/velcuz"], "subreddit": ["velcuz"]}, "path": {"56-60": [[716, -343], [718, -347], [716, -342], [722, -337], [731, -343], [733, -348], [720, -349], [716, -347], [713, -341], [713, -335], [722, -330], [736, -332], [743, -335], [743, -342], [734, -348], [714, -346], [721, -350], [712, -344], [712, -341], [712, -336], [719, -330], [726, -329], [738, -333]]}, "center": {"56-60": [736, -340]}}, -{"id": 3716, "name": "Trigun logo and Vash the Stampede", "description": "Trigun is a manga series written and illustrated by Yasuhiro Nightow. It was adapted in 1998 into an anime that was very popular with an American audience. It recently got a reboot: Trigun Stampede.\nThis artwork features the main character with his iconic coat and hair style Vash the Stampede, a pacifistic gun slinger. The story is a mix of comedy and drama.\nFeaturing mini amungus Knives (white) and Wolfwood (black with the cross).\nLove and peace!", "links": {"website": ["https://en.wikipedia.org/wiki/Trigun"], "subreddit": ["Trigun"]}, "path": {"205-258": [[-1060, 125], [-1023, 125], [-1017, 123], [-1014, 119], [-1014, 116], [-1023, 116], [-1023, 117], [-1038, 117], [-1039, 96], [-1043, 96], [-1043, 89], [-1049, 89], [-1049, 99], [-1055, 99], [-1055, 117], [-1060, 117]]}, "center": {"205-258": [-1047, 113]}}, -{"id": 3717, "name": "Mysta's Hat", "description": "The hat of Mysta Rias, a virtual YouTuber affiliated with NIJISANJI EN. He debuted as part of its fourth wave \"Luxiem\" on December 21, 2021. As of July 2023, he has amassed over 1.1 million subscribers\n\nOn July 23, 2023, he announced that he would be retiring from the persona due to burnout, and announced his final stream on August 27.", "links": {"website": ["https://www.youtube.com/channel/UCIM92Ok_spNKLVB5TsgwseQ"], "subreddit": ["Nijisanji"], "discord": ["mysta"]}, "path": {"107-258": [[-591, -255], [-591, -258], [-590, -259], [-589, -260], [-587, -260], [-586, -259], [-586, -255], [-586, -250], [-588, -250], [-588, -248], [-598, -248], [-598, -250], [-600, -250], [-600, -253], [-600, -260], [-586, -260]]}, "center": {"107-258": [-595, -254]}}, -{"id": 3718, "name": "Selen Tatsuki", "description": "Selen Tatsuki (セレン 龍月) is an English-speaking female Virtual YouTuber affiliated with NIJISANJI EN's second-wave group \"OBSYDIA\". \n\nShe is most well-known for being highly skilled at the battle royale game Apex Legends, as well as for having the ability to bully and gaslight just about anyone!", "links": {"website": ["https://www.youtube.com/channel/UCV1xUwfM2v2oBtT3JNvic3w"], "subreddit": ["Nijisanji"], "discord": ["selen"]}, "path": {"222-258": [[1207, -863], [1207, -846], [1228, -846], [1228, -863]]}, "center": {"222-258": [1218, -854]}}, -{"id": 3719, "name": "Ceasar Zeppeli (Jojo's Part 2)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 2: Battle Tendency.\n\n\"JoJo! This is the last of my hamon! Take it!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1115, -113], [-1114, -115], [-1110, -115], [-1108, -115], [-1108, -113], [-1109, -111], [-1109, -109], [-1110, -107], [-1113, -107], [-1114, -109]]}, "center": {"250-258": [-1112, -112]}}, +{"id": 3716, "name": "Trigun logo and Vash the Stampede", "description": "Trigun is a manga series written and illustrated by Yasuhiro Nightow. It was adapted in 1998 into an anime that was very popular with an American audience. It recently got a reboot: Trigun Stampede.\nThis artwork features the main character with his iconic coat and hair style Vash the Stampede, a pacifistic gun slinger. The story is a mix of comedy and drama.\nFeaturing mini amungus Knives (white) and Wolfwood (black with the cross).\nLove and peace!", "links": {"website": ["https://en.wikipedia.org/wiki/Trigun"], "subreddit": ["Trigun"]}, "path": {"205-258, T": [[-1060, 125], [-1023, 125], [-1017, 123], [-1014, 119], [-1014, 116], [-1023, 116], [-1023, 117], [-1038, 117], [-1039, 96], [-1043, 96], [-1043, 89], [-1049, 89], [-1049, 99], [-1055, 99], [-1055, 117], [-1060, 117]]}, "center": {"205-258, T": [-1047, 113]}}, +{"id": 3717, "name": "Mysta's Hat", "description": "The hat of Mysta Rias, a virtual YouTuber affiliated with NIJISANJI EN. He debuted as part of its fourth wave \"Luxiem\" on December 21, 2021. As of July 2023, he has amassed over 1.1 million subscribers\n\nOn July 23, 2023, he announced that he would be retiring from the persona due to burnout, and announced his final stream on August 27.", "links": {"website": ["https://www.youtube.com/channel/UCIM92Ok_spNKLVB5TsgwseQ"], "subreddit": ["Nijisanji"], "discord": ["mysta"]}, "path": {"107-258, T": [[-591, -255], [-591, -258], [-590, -259], [-589, -260], [-587, -260], [-586, -259], [-586, -255], [-586, -250], [-588, -250], [-588, -248], [-598, -248], [-598, -250], [-600, -250], [-600, -253], [-600, -260], [-586, -260]]}, "center": {"107-258, T": [-595, -254]}}, +{"id": 3718, "name": "Selen Tatsuki", "description": "Selen Tatsuki (セレン 龍月) is an English-speaking female Virtual YouTuber affiliated with NIJISANJI EN's second-wave group \"OBSYDIA\". \n\nShe is most well-known for being highly skilled at the battle royale game Apex Legends, as well as for having the ability to bully and gaslight just about anyone!", "links": {"website": ["https://www.youtube.com/channel/UCV1xUwfM2v2oBtT3JNvic3w"], "subreddit": ["Nijisanji"], "discord": ["selen"]}, "path": {"222-258, T": [[1207, -863], [1207, -846], [1228, -846], [1228, -863]]}, "center": {"222-258, T": [1218, -854]}}, +{"id": 3719, "name": "Ceasar Zeppeli (Jojo's Part 2)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 2: Battle Tendency.\n\n\"JoJo! This is the last of my hamon! Take it!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1115, -113], [-1114, -115], [-1110, -115], [-1108, -115], [-1108, -113], [-1109, -111], [-1109, -109], [-1110, -107], [-1113, -107], [-1114, -109]]}, "center": {"250-258, T": [-1112, -112]}}, {"id": 3720, "name": "DDNet", "description": "DDraceNetwork (DDNet) is an actively maintained version of DDRace, a mod of the game Teeworlds with a unique cooperative gameplay.", "links": {"website": ["https://ddnet.org", "https://store.steampowered.com/app/412220/DDraceNetwork/"], "subreddit": ["ddnet"], "discord": ["ddracenetwork"]}, "path": {"4-15": [[202, -99], [202, -75], [250, -75], [250, -99]]}, "center": {"4-15": [226, -87]}}, -{"id": 3721, "name": "Flor del Nugget SMP", "description": "Esta flor representa parte del lore de esta serie de rol creada por el YouTuber JustNova", "links": {}, "path": {"250-258": [[-438, -859], [-436, -858], [-435, -857], [-436, -856], [-436, -854], [-435, -854], [-436, -853], [-436, -852], [-437, -852], [-437, -851], [-438, -851], [-439, -853], [-440, -854], [-438, -855], [-439, -856], [-440, -857]]}, "center": {"250-258": [-437, -857]}}, -{"id": 3722, "name": "A memoriam, 1 year later.", "description": "Its been just about over a year since my friend michael passed away and I won't say much but I still miss him deeply\n\nHe's forever in our hearts, still spamming totsugeki somewhere up there.\n\nAs long as there is a megumin, Michael will be there watching over her creation and protecting her from above.", "links": {}, "path": {"250-258": [[268, -900], [267, -903], [269, -903], [269, -907], [273, -908], [277, -907], [278, -906], [271, -901], [269, -900]]}, "center": {"250-258": [272, -905]}}, -{"id": 3723, "name": "Neku Sakuraba", "description": "This art depicts Neku from \"The World Ends With You.\" Neku is the main protagonist of the first entry in the series and is loved by many. This sprite specifically is from a game called Groove Coaster, which added music from the series as a dlc.", "links": {"website": ["https://twewy.fandom.com/wiki/The_World_Ends_with_You_Wiki"], "subreddit": ["TWEWY"]}, "path": {"250-258": [[-1218, -624], [-1218, -625], [-1218, -626], [-1219, -626], [-1220, -626], [-1220, -627], [-1221, -627], [-1221, -628], [-1221, -629], [-1220, -629], [-1220, -630], [-1220, -631], [-1221, -631], [-1222, -632], [-1223, -632], [-1224, -632], [-1225, -632], [-1225, -633], [-1225, -634], [-1225, -636], [-1224, -636], [-1223, -636], [-1222, -636], [-1222, -637], [-1211, -637], [-1211, -633], [-1211, -631], [-1211, -630], [-1212, -630], [-1214, -630], [-1215, -630], [-1216, -629], [-1216, -625], [-1217, -625]]}, "center": {"250-258": [-1217, -633]}}, -{"id": 3724, "name": "Hololive X OWOZU", "description": "This heart represents the alliance between the Hololive English community and the Owozu community and despite everything, it lasted until the end.\n\nHololive X OWOZU is Cannon??", "links": {}, "path": {"204-259": [[-65, -815], [-66, -815], [-66, -816], [-67, -816], [-67, -815], [-68, -815], [-68, -814], [-68, -813], [-67, -813], [-67, -812], [-66, -812], [-66, -811], [-65, -811], [-65, -810], [-64, -810], [-63, -810], [-63, -811], [-62, -811], [-62, -812], [-61, -812], [-61, -813], [-60, -813], [-60, -814], [-60, -815], [-61, -815], [-61, -816], [-62, -816], [-62, -815], [-63, -815], [-64, -815]]}, "center": {"204-259": [-64, -813]}}, -{"id": 3725, "name": "Tracajá (Equipe T)", "description": "(PT) Tracajá é a mascote da Equipe T, equipe fanmade de legendas responsável por traduzir e legendar os episódios de Ordem Paranormal, série de RPG do Cellbit, disponível no Youtube.\n\n(EN) Tracajá is Equipe T's mascot. They're responsible for the fanmade translantions and subtitles in Ordem Paranormal's seasons, Cellbit's RPG series available on YouTube.", "links": {"website": ["https://twitter.com/Equipe__T?s=20"]}, "path": {"128-252": [[764, 413], [764, 405], [739, 405], [739, 413], [752, 413]]}, "center": {"128-252": [752, 409]}}, -{"id": 3726, "name": "Philippine Flag", "description": "After the Mexican invasion of CSGO, the elongated Philippine flag was moved to the left, taking over the long France. It got a chance to expand a bit before r/place ended. Since r/philippines did not promote participation in the 2023 r/place, there are only a few small flags scattered around the map to represent the country.", "links": {}, "path": {"231-258": [[-15, -694], [16, -694], [16, -681], [-15, -681]]}, "center": {"231-258": [1, -687]}}, -{"id": 3727, "name": "Zazzone230", "description": "Name of a well-known Italian streamer\n\"Zazzone230\".", "links": {"website": ["https://www.twitch.tv/zazzone230"]}, "path": {"250-258": [[1431, 182], [1484, 182], [1484, 189], [1431, 189]]}, "center": {"250-258": [1458, 186]}}, -{"id": 3728, "name": "Nanda Tayo", "description": "Hola! Soy Nanda Tayo puedes decirme Nanda, Vtuber Venezolana que le encanta dibujar y hablar mucho sobre lo que sea, tengo 20 años suelo hacer streams muy variados pero sobre todo de Valorant, Minecraft, Genshin, Gartic y lo que venga >w< 💜", "links": {"website": ["https://www.twitch.tv/NandaTayo"], "discord": ["yVZvHcEQYT"]}, "path": {"250-258": [[-136, 947], [-110, 947], [-110, 970], [-136, 970]]}, "center": {"250-258": [-123, 959]}}, -{"id": 3729, "name": "Gia Rosa", "description": "Una rosa hecha por \"ElZeein_SalaDeEspera\" para Gia.\nColaboradores: Keita, Abi, Piero, Anti, Cacheton, ventanitas\n\nINGLES\nA rose made by \"ElZeein_SalaDeEspera\" for Gia.\nCollaborators: Keita, Abi, Piero, Anti, Cacheton, ventanitas", "links": {"website": ["https://www.twitch.tv/elzeein_saladeespera"]}, "path": {"250-258": [[-1011, -648], [-1011, -654], [-1016, -656], [-1013, -658], [-1013, -659], [-1015, -662], [-1015, -668], [-1011, -671], [-1008, -671], [-1005, -670], [-1003, -667], [-1004, -662], [-1007, -658], [-1003, -657], [-1008, -652], [-1009, -652], [-1009, -648]]}, "center": {"250-258": [-1009, -665]}}, -{"id": 3730, "name": "Chico's memorial + Friends!", "description": "Chico was very special to me (miss him deeply), we were together for 17 years, he was the most lovy and sweetest cat. Such a connection we had.\n\nTeo, rescued at the right time, he was very weak, soaking wet and full of parasites! Been almost a year with me. Very sweet and playful. I have 12 cats, as a whole, this piece represents them all. Cant draw them all :(. \n\nM&P (Black kitty), cat from a friend I met last year at PLACE!", "links": {"subreddit": ["placechico"]}, "path": {"250-258": [[-1327, 27], [-1307, 27], [-1308, 28], [-1308, 35], [-1307, 36], [-1306, 36], [-1305, 36], [-1305, 37], [-1304, 37], [-1303, 37], [-1302, 37], [-1302, 38], [-1301, 39], [-1300, 39], [-1300, 46], [-1329, 46], [-1329, 33], [-1328, 32], [-1328, 27]]}, "center": {"250-258": [-1319, 37]}}, -{"id": 3731, "name": "FarmRPG", "description": "A simple text based multiplayer browser and mobile game. Fish, craft, cook, explore and most importantly farm as you play through the game and level up your skills. Don't forget to say hi to everyone in the in-game chat.\n\nMake sure to say hi to Buddy! Just don't mind the bones in his home in the small cave.", "links": {"website": ["https://farmrpg.com/"], "subreddit": ["FarmRPG"], "discord": ["bbEtDpsFTF"]}, "path": {"174-253": [[-1106, -323], [-1118, -323], [-1124, -318], [-1123, -314], [-1122, -312], [-1124, -309], [-1127, -309], [-1135, -308], [-1141, -298], [-1129, -296], [-1116, -297], [-1106, -297], [-1105, -311], [-1105, -323]]}, "center": {"174-253": [-1115, -306]}}, +{"id": 3721, "name": "Flor del Nugget SMP", "description": "Esta flor representa parte del lore de esta serie de rol creada por el YouTuber JustNova", "links": {}, "path": {"250-258, T": [[-438, -859], [-436, -858], [-435, -857], [-436, -856], [-436, -854], [-435, -854], [-436, -853], [-436, -852], [-437, -852], [-437, -851], [-438, -851], [-439, -853], [-440, -854], [-438, -855], [-439, -856], [-440, -857]]}, "center": {"250-258, T": [-437, -857]}}, +{"id": 3722, "name": "A memoriam, 1 year later.", "description": "Its been just about over a year since my friend michael passed away and I won't say much but I still miss him deeply\n\nHe's forever in our hearts, still spamming totsugeki somewhere up there.\n\nAs long as there is a megumin, Michael will be there watching over her creation and protecting her from above.", "links": {}, "path": {"250-258, T": [[268, -900], [267, -903], [269, -903], [269, -907], [273, -908], [277, -907], [278, -906], [271, -901], [269, -900]]}, "center": {"250-258, T": [272, -905]}}, +{"id": 3723, "name": "Neku Sakuraba", "description": "This art depicts Neku from \"The World Ends With You.\" Neku is the main protagonist of the first entry in the series and is loved by many. This sprite specifically is from a game called Groove Coaster, which added music from the series as a dlc.", "links": {"website": ["https://twewy.fandom.com/wiki/The_World_Ends_with_You_Wiki"], "subreddit": ["TWEWY"]}, "path": {"250-258, T": [[-1218, -624], [-1218, -625], [-1218, -626], [-1219, -626], [-1220, -626], [-1220, -627], [-1221, -627], [-1221, -628], [-1221, -629], [-1220, -629], [-1220, -630], [-1220, -631], [-1221, -631], [-1222, -632], [-1223, -632], [-1224, -632], [-1225, -632], [-1225, -633], [-1225, -634], [-1225, -636], [-1224, -636], [-1223, -636], [-1222, -636], [-1222, -637], [-1211, -637], [-1211, -633], [-1211, -631], [-1211, -630], [-1212, -630], [-1214, -630], [-1215, -630], [-1216, -629], [-1216, -625], [-1217, -625]]}, "center": {"250-258, T": [-1217, -633]}}, +{"id": 3724, "name": "Hololive X OWOZU", "description": "This heart represents the alliance between the Hololive English community and the Owozu community and despite everything, it lasted until the end.\n\nHololive X OWOZU is Cannon??", "links": {}, "path": {"204-259, T": [[-65, -815], [-66, -815], [-66, -816], [-67, -816], [-67, -815], [-68, -815], [-68, -814], [-68, -813], [-67, -813], [-67, -812], [-66, -812], [-66, -811], [-65, -811], [-65, -810], [-64, -810], [-63, -810], [-63, -811], [-62, -811], [-62, -812], [-61, -812], [-61, -813], [-60, -813], [-60, -814], [-60, -815], [-61, -815], [-61, -816], [-62, -816], [-62, -815], [-63, -815], [-64, -815]]}, "center": {"204-259, T": [-64, -813]}}, +{"id": 3725, "name": "Tracajá (Equipe T)", "description": "(PT) Tracajá é a mascote da Equipe T, equipe fanmade de legendas responsável por traduzir e legendar os episódios de Ordem Paranormal, série de RPG do Cellbit, disponível no Youtube.\n\n(EN) Tracajá is Equipe T's mascot. They're responsible for the fanmade translantions and subtitles in Ordem Paranormal's seasons, Cellbit's RPG series available on YouTube.", "links": {"website": ["https://twitter.com/Equipe__T?s=20"]}, "path": {"128-252, T": [[764, 413], [764, 405], [739, 405], [739, 413], [752, 413]]}, "center": {"128-252, T": [752, 409]}}, +{"id": 3726, "name": "Philippine Flag", "description": "After the Mexican invasion of CSGO, the elongated Philippine flag was moved to the left, taking over the long France. It got a chance to expand a bit before r/place ended. Since r/philippines did not promote participation in the 2023 r/place, there are only a few small flags scattered around the map to represent the country.", "links": {}, "path": {"231-258, T": [[-15, -694], [16, -694], [16, -681], [-15, -681]]}, "center": {"231-258, T": [1, -687]}}, +{"id": 3727, "name": "Zazzone230", "description": "Name of a well-known Italian streamer\n\"Zazzone230\".", "links": {"website": ["https://www.twitch.tv/zazzone230"]}, "path": {"250-258, T": [[1431, 182], [1484, 182], [1484, 189], [1431, 189]]}, "center": {"250-258, T": [1458, 186]}}, +{"id": 3728, "name": "Nanda Tayo", "description": "Hola! Soy Nanda Tayo puedes decirme Nanda, Vtuber Venezolana que le encanta dibujar y hablar mucho sobre lo que sea, tengo 20 años suelo hacer streams muy variados pero sobre todo de Valorant, Minecraft, Genshin, Gartic y lo que venga >w< 💜", "links": {"website": ["https://www.twitch.tv/NandaTayo"], "discord": ["yVZvHcEQYT"]}, "path": {"250-258, T": [[-136, 947], [-110, 947], [-110, 970], [-136, 970]]}, "center": {"250-258, T": [-123, 959]}}, +{"id": 3729, "name": "Gia Rosa", "description": "Una rosa hecha por \"ElZeein_SalaDeEspera\" para Gia.\nColaboradores: Keita, Abi, Piero, Anti, Cacheton, ventanitas\n\nINGLES\nA rose made by \"ElZeein_SalaDeEspera\" for Gia.\nCollaborators: Keita, Abi, Piero, Anti, Cacheton, ventanitas", "links": {"website": ["https://www.twitch.tv/elzeein_saladeespera"]}, "path": {"250-258, T": [[-1011, -648], [-1011, -654], [-1016, -656], [-1013, -658], [-1013, -659], [-1015, -662], [-1015, -668], [-1011, -671], [-1008, -671], [-1005, -670], [-1003, -667], [-1004, -662], [-1007, -658], [-1003, -657], [-1008, -652], [-1009, -652], [-1009, -648]]}, "center": {"250-258, T": [-1009, -665]}}, +{"id": 3730, "name": "Chico's memorial + Friends!", "description": "Chico was very special to me (miss him deeply), we were together for 17 years, he was the most lovy and sweetest cat. Such a connection we had.\n\nTeo, rescued at the right time, he was very weak, soaking wet and full of parasites! Been almost a year with me. Very sweet and playful. I have 12 cats, as a whole, this piece represents them all. Cant draw them all :(. \n\nM&P (Black kitty), cat from a friend I met last year at PLACE!", "links": {"subreddit": ["placechico"]}, "path": {"250-258, T": [[-1327, 27], [-1307, 27], [-1308, 28], [-1308, 35], [-1307, 36], [-1306, 36], [-1305, 36], [-1305, 37], [-1304, 37], [-1303, 37], [-1302, 37], [-1302, 38], [-1301, 39], [-1300, 39], [-1300, 46], [-1329, 46], [-1329, 33], [-1328, 32], [-1328, 27]]}, "center": {"250-258, T": [-1319, 37]}}, +{"id": 3731, "name": "FarmRPG", "description": "A simple text based multiplayer browser and mobile game. Fish, craft, cook, explore and most importantly farm as you play through the game and level up your skills. Don't forget to say hi to everyone in the in-game chat.\n\nMake sure to say hi to Buddy! Just don't mind the bones in his home in the small cave.", "links": {"website": ["https://farmrpg.com/"], "subreddit": ["FarmRPG"], "discord": ["bbEtDpsFTF"]}, "path": {"174-253, T": [[-1106, -323], [-1118, -323], [-1124, -318], [-1123, -314], [-1122, -312], [-1124, -309], [-1127, -309], [-1135, -308], [-1141, -298], [-1129, -296], [-1116, -297], [-1106, -297], [-1105, -311], [-1105, -323]]}, "center": {"174-253, T": [-1115, -306]}}, {"id": 3732, "name": "SKZ Logo", "description": "\"SKZ\" is an abbreviation of Stray Kids, the name of a KPOP boy band. The logo was created in a partnership with users on the r/StrayKids sub and the Discord \"KPOP Place\"", "links": {"subreddit": ["straykids"], "discord": ["KvF2RzR2"]}, "path": {"166-244": [[-71, -885], [-71, -864], [-65, -864], [-65, -885]]}, "center": {"166-244": [-68, -874]}}, -{"id": 3733, "name": "Barbie Logo", "description": "Tribute of the Barbie logo in honor of the new Barbie movie and a shared love for Barbie", "links": {"subreddit": ["Barbie"]}, "path": {"208-258": [[-1396, 561], [-1396, 547], [-1383, 546], [-1383, 563], [-1397, 562], [-1396, 547]]}, "center": {"208-258": [-1389, 556]}}, -{"id": 3734, "name": "A trash can that burns", "description": "When the Frenchman are angry and protesting against something, they're like to burn things. Most of the time it's cars, but today, on Reddit, it was a trash can.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"166-259": [[-388, 185], [-391, 166], [-387, 153], [-383, 152], [-380, 153], [-375, 160], [-376, 166], [-372, 176], [-373, 177], [-375, 174], [-376, 180], [-374, 183], [-378, 185]], "93-165": [[-384, 163], [-387, 161], [-390, 149], [-389, 143], [-386, 135], [-382, 133], [-377, 136], [-376, 143], [-371, 154], [-372, 155], [-374, 152], [-374, 158], [-373, 160], [-375, 162]]}, "center": {"166-259": [-382, 171], "93-165": [-382, 149]}}, -{"id": 3735, "name": "MixiGaming's logo", "description": "The logo of the MixiGaming YouTube Channel, one of the largest streamers in Vietnam.", "links": {"website": ["https://vi.wikipedia.org/wiki/%C4%90%E1%BB%99_Mixi", "https://www.mixigaming.com"], "subreddit": ["mixifa"], "discord": ["mixigaming"]}, "path": {"205-258": [[888, 448], [878, 460], [878, 491], [893, 503], [913, 503], [925, 495], [931, 490], [1102, 490], [1101, 454], [935, 454], [903, 446], [894, 446]]}, "center": {"205-258": [905, 475]}}, -{"id": 3736, "name": "Octavia Melody", "description": "Octavia Melody is a recurring background character from My Little Pony: Friendship Is Magic. She wears a white collar with a purple-pink bowtie and is well loved by the Brony Fandom. Octavia also has a strong correlation to the UK (More specifically England) due to her strong British accent and colloquialisms present in the MLP:FiM 100th episode \"Slice of Life\", and is thus why she's build alongside the UK's Union Jack flag.", "links": {"website": ["https://mlp.fandom.com/wiki/Octavia_Melody"], "subreddit": ["mylittlepony"], "discord": ["bronyplace"]}, "path": {"250-258": [[500, 845], [507, 845], [510, 848], [510, 850], [508, 852], [509, 853], [509, 854], [507, 856], [507, 858], [506, 859], [506, 862], [503, 865], [500, 865]]}, "center": {"250-258": [504, 850]}}, -{"id": 3737, "name": "Pannacotta Fugo (Jojo's Part 5)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind.\n\nStand: Purple Haze\n\n\"I'd like to feed him some spaghetti!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1118, -90], [-1113, -90], [-1113, -87], [-1115, -83], [-1118, -82], [-1120, -86]]}, "center": {"250-258": [-1116, -86]}}, -{"id": 3738, "name": "Enrico Pucci (Jojo's Part 6)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 6: Stone Ocean.\n\nStands: White Snake, C-moon, Made in Heaven\n\n\"Two steps... you were late by two steps\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1119, -107], [-1115, -107], [-1114, -103], [-1114, -102], [-1115, -100], [-1118, -100], [-1119, -102]]}, "center": {"250-258": [-1117, -104]}}, -{"id": 3739, "name": "Republic of Artsakh", "description": "The Republic of Artsakh is an autonomous country of ethnic Armenians in the Caucasus. It is internationally recognized as disputed territory, and is a cause of conflict between the neighboring countries Armenia and Azerbaijan. The country has experienced waves of some form of autonomy since before the common era.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Artsak"]}, "path": {"250-258": [[-15, -758], [2, -758], [2, -751], [-15, -751]]}, "center": {"250-258": [-6, -754]}}, -{"id": 3740, "name": "Foo 'FF' Fighters (Jojo's Part 6)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 6: Stone Ocean. They are their own stand.\n\nStand: Foo Fighters\n\n\"If I jump our of that window, do you think I'll die?\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1128, -99], [-1124, -99], [-1123, -93], [-1124, -91], [-1127, -91], [-1128, -93]]}, "center": {"250-258": [-1126, -95]}}, -{"id": 3741, "name": "L'Manberg", "description": "The flag of the fictional nation of L'Manberg on the Dream SMP Minecraft server. 7.29 refers to July 29, 2020, the day Wilbur Soot and Tommyinnit declared independence from the Greater Dream SMP and founded L'Manberg.", "links": {"website": ["https://dreamteam.fandom.com/wiki/L%27Manberg"]}, "path": {"162-258": [[580, 548], [580, 583], [600, 583], [599, 548]]}, "center": {"162-258": [590, 566]}}, -{"id": 3742, "name": "BANANO", "description": "Banano is a feeless, instant, rich in potassium cryptocurrency powered by DAG technology disrupting the meme economy. As this part of the taskbar was originally meant for Reddit api apps, Banano wasn't originally planned to be on the taskbar. However, through diplomacy they later acquired permission to be there.", "links": {"website": ["https://banano.cc/", "https://www.reddit.com/r/banano/comments/1595sr0/rplacestart/"], "subreddit": ["banano"], "discord": ["XcBujggwty"]}, "path": {"215-258": [[-1304, 971], [-1304, 999], [-1276, 999], [-1276, 971]]}, "center": {"215-258": [-1290, 985]}}, -{"id": 3743, "name": "K-Pop Place Western Front", "description": "An impressive display of K-Pop logos, featuring f(x), Twice, fromis_9, IZ*ONE, (G)i-dle, IVE, Newjeans, Triple S, and many more.", "links": {"discord": ["rhNry9hJ2J"]}, "path": {"193-258": [[-1410, -369], [-1360, -369], [-1360, -349], [-1352, -349], [-1352, -340], [-1388, -340], [-1392, -337], [-1396, -339], [-1410, -339], [-1410, -343], [-1411, -343], [-1424, -343], [-1425, -343], [-1426, -351], [-1410, -351], [-1410, -369], [-1360, -369], [-1360, -349], [-1352, -349], [-1352, -327], [-1395, -327], [-1395, -339], [-1410, -339], [-1410, -343], [-1426, -343], [-1426, -351], [-1411, -351], [-1410, -351]]}, "center": {"193-258": [-1385, -334]}}, -{"id": 3744, "name": "Puro - Changed", "description": "Puro is the deuteragonist of the game Changed. A Dark Latex wolf creature capable of speech, he assists in the human protagonist, Colin, from escaping the lab.", "links": {"subreddit": ["ChangedFurry"]}, "path": {"224-258": [[1078, -864], [1078, -825], [1093, -825], [1093, -846], [1097, -846], [1097, -864]]}, "center": {"224-258": [1088, -854]}}, -{"id": 3745, "name": "Mi Teleférico", "description": "Mi Teleférico (English: My Cable Car), also known as Teleférico La Paz–El Alto (La Paz–El Alto Cable Car), is an aerial cable car urban transit system serving the La Paz–El Alto metropolitan area in Bolivia.", "links": {"website": ["https://en.wikipedia.org/wiki/Mi_Telef%C3%A9rico"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[279, -35], [287, -41], [285, -45], [295, -45], [294, -41], [301, -36], [306, -37], [314, -46], [322, -46], [320, -42], [319, -36], [322, -33], [322, -30], [315, -30], [306, -29], [295, -27], [285, -27], [280, -30], [279, -34]]}, "center": {"250-258": [291, -34]}}, -{"id": 3746, "name": "Giggle's Bug", "description": "The bug that was long fought for surviving multiple attacks in its original spot under the original SparkleCare logo before being taken out by the paintings", "links": {"website": ["https://twitter.com/g1gglebug"], "subreddit": ["g1gglebug"]}, "path": {"250-258": [[-891, 771], [-886, 771], [-890, 771], [-886, 771], [-891, 771], [-886, 771]]}, "center": {"250-258": [-891, 771]}}, -{"id": 3747, "name": "A&B", "description": "A symbol that represents the love between a Salvadorean and a Peruvian who protected their hearts between the two of them in the face of all the chaos on r/place and lasted until the end.", "links": {"website": ["https://i.imgur.com/XLkgN84.png"]}, "path": {"250-258": [[-895, 492], [-887, 492], [-887, 499], [-893, 500], [-896, 495]]}, "center": {"250-258": [-891, 496]}}, -{"id": 3748, "name": "P.H GANG", "description": "PH Gvng (PHG) es el nombre de un grupo chileno de amigos que residen en villa alemana, Valparaíso, Chile, El nombre de PHG se origina a que en 2022 un compañero llamado \"Pascal Hernández Gutiérrez\" falleció. el era parte de este grupo que previamente se llamaba \"Fumamos Coca\", al amigo fallecer, se le cambio el nombre en su honor a \"PH Gvng\" el PH por \"Pascal Hernández\" y \"Gvng\" Es por la inicial de el segundo apellido de nuestro fallecido compañero (Gutiérrez) Pero como somos un grupo se nos ocurrió remplazarlo por \"Gang\", que significa \"pandilla\".", "links": {"website": ["https://www.instagram.com/phgvng_/"]}, "path": {"250-258": [[-803, -831], [-785, -831], [-784, -820], [-803, -821], [-803, -822], [-803, -821]]}, "center": {"250-258": [-794, -826]}}, -{"id": 3749, "name": "The Angel of the North decorated in tribute to Alan Shearer", "description": "The Angel of the North is a prominent public art sculpture located in Gateshead, England, designed by Antony Gormley and unveiled in 1998. The sculpture stands at a height of 66 feet (20 meters) with a wingspan of 177 feet (54 meters) and is made of steel. It has become an iconic symbol of the North of England, representing strength, hope, and unity. \n\nIn a special tribute to the legendary Newcastle United footballer Alan Shearer, on the occasion of his retirement or another significant milestone, the Angel of the North was creatively adorned with a Newcastle United shirt. This gesture served as a powerful symbol of the connection between the renowned footballer and the local community, showcasing how Shearer's achievements and contributions to the sport resonated deeply with the people of the region, making him an integral part of their collective identity. \n\nThe temporary transformation of the Angel into a sporting tribute exemplified the intersection of art, sports, and culture, uniting the community in celebration of their football hero.", "links": {"website": ["https://www.gateshead.gov.uk/article/5303/The-history-of-the-Angel-of-the-North"], "subreddit": ["newcastle", "newcastleunited", "nufc"]}, "path": {"250-258": [[-318, -274], [-315, -277], [-299, -277], [-299, -279], [-300, -279], [-300, -281], [-299, -282], [-297, -282], [-296, -281], [-296, -279], [-297, -278], [-297, -277], [-281, -277], [-278, -274], [-278, -272], [-283, -272], [-283, -271], [-293, -271], [-293, -270], [-302, -270], [-302, -271], [-312, -271], [-313, -272], [-318, -272], [-318, -273]]}, "center": {"250-258": [-298, -274]}}, -{"id": 3750, "name": "Polish Fiat 126p \"Maluch\"", "description": "Fiat 126p often called \"Maluch\" (small one), became one of the most popular cars in poland during the 80s. It had multiple assemblies in Poland.", "links": {"subreddit": ["Poland", "Polska"]}, "path": {"250-258": [[714, -132], [716, -132], [716, -133], [717, -133], [717, -136], [715, -136], [713, -138], [713, -139], [709, -139], [706, -136], [706, -133], [708, -133], [708, -132]]}, "center": {"250-258": [711, -135]}}, -{"id": 3751, "name": "Barbie Logo", "description": "Tribute of the Barbie logo in honor of the new Barbie movie and a shared love for Barbie", "links": {"subreddit": ["Barbie"]}, "path": {"250-258": [[-1396, 561], [-1396, 547], [-1383, 546], [-1383, 563], [-1397, 562], [-1396, 547]]}, "center": {"250-258": [-1389, 556]}}, +{"id": 3733, "name": "Barbie Logo", "description": "Tribute of the Barbie logo in honor of the new Barbie movie and a shared love for Barbie", "links": {"subreddit": ["Barbie"]}, "path": {"208-258, T": [[-1396, 561], [-1396, 547], [-1383, 546], [-1383, 563], [-1397, 562], [-1396, 547]]}, "center": {"208-258, T": [-1389, 556]}}, +{"id": 3734, "name": "A trash can that burns", "description": "When the Frenchman are angry and protesting against something, they're like to burn things. Most of the time it's cars, but today, on Reddit, it was a trash can.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"93-165": [[-384, 163], [-387, 161], [-390, 149], [-389, 143], [-386, 135], [-382, 133], [-377, 136], [-376, 143], [-371, 154], [-372, 155], [-374, 152], [-374, 158], [-373, 160], [-375, 162]], "166-259, T": [[-388, 185], [-391, 166], [-387, 153], [-383, 152], [-380, 153], [-375, 160], [-376, 166], [-372, 176], [-373, 177], [-375, 174], [-376, 180], [-374, 183], [-378, 185]]}, "center": {"93-165": [-382, 149], "166-259, T": [-382, 171]}}, +{"id": 3735, "name": "MixiGaming's logo", "description": "The logo of the MixiGaming YouTube Channel, one of the largest streamers in Vietnam.", "links": {"website": ["https://vi.wikipedia.org/wiki/%C4%90%E1%BB%99_Mixi", "https://www.mixigaming.com"], "subreddit": ["mixifa"], "discord": ["mixigaming"]}, "path": {"205-258, T": [[888, 448], [878, 460], [878, 491], [893, 503], [913, 503], [925, 495], [931, 490], [1102, 490], [1101, 454], [935, 454], [903, 446], [894, 446]]}, "center": {"205-258, T": [905, 475]}}, +{"id": 3736, "name": "Octavia Melody", "description": "Octavia Melody is a recurring background character from My Little Pony: Friendship Is Magic. She wears a white collar with a purple-pink bowtie and is well loved by the Brony Fandom. Octavia also has a strong correlation to the UK (More specifically England) due to her strong British accent and colloquialisms present in the MLP:FiM 100th episode \"Slice of Life\", and is thus why she's build alongside the UK's Union Jack flag.", "links": {"website": ["https://mlp.fandom.com/wiki/Octavia_Melody"], "subreddit": ["mylittlepony"], "discord": ["bronyplace"]}, "path": {"250-258, T": [[500, 845], [507, 845], [510, 848], [510, 850], [508, 852], [509, 853], [509, 854], [507, 856], [507, 858], [506, 859], [506, 862], [503, 865], [500, 865]]}, "center": {"250-258, T": [504, 850]}}, +{"id": 3737, "name": "Pannacotta Fugo (Jojo's Part 5)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind.\n\nStand: Purple Haze\n\n\"I'd like to feed him some spaghetti!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1118, -90], [-1113, -90], [-1113, -87], [-1115, -83], [-1118, -82], [-1120, -86]]}, "center": {"250-258, T": [-1116, -86]}}, +{"id": 3738, "name": "Enrico Pucci (Jojo's Part 6)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 6: Stone Ocean.\n\nStands: White Snake, C-moon, Made in Heaven\n\n\"Two steps... you were late by two steps\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1119, -107], [-1115, -107], [-1114, -103], [-1114, -102], [-1115, -100], [-1118, -100], [-1119, -102]]}, "center": {"250-258, T": [-1117, -104]}}, +{"id": 3739, "name": "Republic of Artsakh", "description": "The Republic of Artsakh is an autonomous country of ethnic Armenians in the Caucasus. It is internationally recognized as disputed territory, and is a cause of conflict between the neighboring countries Armenia and Azerbaijan. The country has experienced waves of some form of autonomy since before the common era.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Artsak"]}, "path": {"250-258, T": [[-15, -758], [2, -758], [2, -751], [-15, -751]]}, "center": {"250-258, T": [-6, -754]}}, +{"id": 3740, "name": "Foo 'FF' Fighters (Jojo's Part 6)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 6: Stone Ocean. They are their own stand.\n\nStand: Foo Fighters\n\n\"If I jump our of that window, do you think I'll die?\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1128, -99], [-1124, -99], [-1123, -93], [-1124, -91], [-1127, -91], [-1128, -93]]}, "center": {"250-258, T": [-1126, -95]}}, +{"id": 3741, "name": "L'Manberg", "description": "The flag of the fictional nation of L'Manberg on the Dream SMP Minecraft server. 7.29 refers to July 29, 2020, the day Wilbur Soot and Tommyinnit declared independence from the Greater Dream SMP and founded L'Manberg.", "links": {"website": ["https://dreamteam.fandom.com/wiki/L%27Manberg"]}, "path": {"162-258, T": [[580, 548], [580, 583], [600, 583], [599, 548]]}, "center": {"162-258, T": [590, 566]}}, +{"id": 3742, "name": "BANANO", "description": "Banano is a feeless, instant, rich in potassium cryptocurrency powered by DAG technology disrupting the meme economy. As this part of the taskbar was originally meant for Reddit api apps, Banano wasn't originally planned to be on the taskbar. However, through diplomacy they later acquired permission to be there.", "links": {"website": ["https://banano.cc/", "https://www.reddit.com/r/banano/comments/1595sr0/rplacestart/"], "subreddit": ["banano"], "discord": ["XcBujggwty"]}, "path": {"215-258, T": [[-1304, 971], [-1304, 999], [-1276, 999], [-1276, 971]]}, "center": {"215-258, T": [-1290, 985]}}, +{"id": 3743, "name": "K-Pop Place Western Front", "description": "An impressive display of K-Pop logos, featuring f(x), Twice, fromis_9, IZ*ONE, (G)i-dle, IVE, Newjeans, Triple S, and many more.", "links": {"discord": ["rhNry9hJ2J"]}, "path": {"193-258, T": [[-1410, -369], [-1360, -369], [-1360, -349], [-1352, -349], [-1352, -340], [-1388, -340], [-1392, -337], [-1396, -339], [-1410, -339], [-1410, -343], [-1411, -343], [-1424, -343], [-1425, -343], [-1426, -351], [-1410, -351], [-1410, -369], [-1360, -369], [-1360, -349], [-1352, -349], [-1352, -327], [-1395, -327], [-1395, -339], [-1410, -339], [-1410, -343], [-1426, -343], [-1426, -351], [-1411, -351], [-1410, -351]]}, "center": {"193-258, T": [-1385, -334]}}, +{"id": 3744, "name": "Puro - Changed", "description": "Puro is the deuteragonist of the game Changed. A Dark Latex wolf creature capable of speech, he assists in the human protagonist, Colin, from escaping the lab.", "links": {"subreddit": ["ChangedFurry"]}, "path": {"224-258, T": [[1078, -864], [1078, -825], [1093, -825], [1093, -846], [1097, -846], [1097, -864]]}, "center": {"224-258, T": [1088, -854]}}, +{"id": 3745, "name": "Mi Teleférico", "description": "Mi Teleférico (English: My Cable Car), also known as Teleférico La Paz–El Alto (La Paz–El Alto Cable Car), is an aerial cable car urban transit system serving the La Paz–El Alto metropolitan area in Bolivia.", "links": {"website": ["https://en.wikipedia.org/wiki/Mi_Telef%C3%A9rico"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[279, -35], [287, -41], [285, -45], [295, -45], [294, -41], [301, -36], [306, -37], [314, -46], [322, -46], [320, -42], [319, -36], [322, -33], [322, -30], [315, -30], [306, -29], [295, -27], [285, -27], [280, -30], [279, -34]]}, "center": {"250-258, T": [291, -34]}}, +{"id": 3746, "name": "Giggle's Bug", "description": "The bug that was long fought for surviving multiple attacks in its original spot under the original SparkleCare logo before being taken out by the paintings", "links": {"website": ["https://twitter.com/g1gglebug"], "subreddit": ["g1gglebug"]}, "path": {"250-258, T": [[-891, 771], [-886, 771], [-890, 771], [-886, 771], [-891, 771], [-886, 771]]}, "center": {"250-258, T": [-891, 771]}}, +{"id": 3747, "name": "A&B", "description": "A symbol that represents the love between a Salvadorean and a Peruvian who protected their hearts between the two of them in the face of all the chaos on r/place and lasted until the end.", "links": {"website": ["https://i.imgur.com/XLkgN84.png"]}, "path": {"250-258, T": [[-895, 492], [-887, 492], [-887, 499], [-893, 500], [-896, 495]]}, "center": {"250-258, T": [-891, 496]}}, +{"id": 3748, "name": "P.H GANG", "description": "PH Gvng (PHG) es el nombre de un grupo chileno de amigos que residen en villa alemana, Valparaíso, Chile, El nombre de PHG se origina a que en 2022 un compañero llamado \"Pascal Hernández Gutiérrez\" falleció. el era parte de este grupo que previamente se llamaba \"Fumamos Coca\", al amigo fallecer, se le cambio el nombre en su honor a \"PH Gvng\" el PH por \"Pascal Hernández\" y \"Gvng\" Es por la inicial de el segundo apellido de nuestro fallecido compañero (Gutiérrez) Pero como somos un grupo se nos ocurrió remplazarlo por \"Gang\", que significa \"pandilla\".", "links": {"website": ["https://www.instagram.com/phgvng_/"]}, "path": {"250-258, T": [[-803, -831], [-785, -831], [-784, -820], [-803, -821], [-803, -822], [-803, -821]]}, "center": {"250-258, T": [-794, -826]}}, +{"id": 3749, "name": "The Angel of the North decorated in tribute to Alan Shearer", "description": "The Angel of the North is a prominent public art sculpture located in Gateshead, England, designed by Antony Gormley and unveiled in 1998. The sculpture stands at a height of 66 feet (20 meters) with a wingspan of 177 feet (54 meters) and is made of steel. It has become an iconic symbol of the North of England, representing strength, hope, and unity. \n\nIn a special tribute to the legendary Newcastle United footballer Alan Shearer, on the occasion of his retirement or another significant milestone, the Angel of the North was creatively adorned with a Newcastle United shirt. This gesture served as a powerful symbol of the connection between the renowned footballer and the local community, showcasing how Shearer's achievements and contributions to the sport resonated deeply with the people of the region, making him an integral part of their collective identity. \n\nThe temporary transformation of the Angel into a sporting tribute exemplified the intersection of art, sports, and culture, uniting the community in celebration of their football hero.", "links": {"website": ["https://www.gateshead.gov.uk/article/5303/The-history-of-the-Angel-of-the-North"], "subreddit": ["newcastle", "newcastleunited", "nufc"]}, "path": {"250-258, T": [[-318, -274], [-315, -277], [-299, -277], [-299, -279], [-300, -279], [-300, -281], [-299, -282], [-297, -282], [-296, -281], [-296, -279], [-297, -278], [-297, -277], [-281, -277], [-278, -274], [-278, -272], [-283, -272], [-283, -271], [-293, -271], [-293, -270], [-302, -270], [-302, -271], [-312, -271], [-313, -272], [-318, -272], [-318, -273]]}, "center": {"250-258, T": [-298, -274]}}, +{"id": 3750, "name": "Polish Fiat 126p \"Maluch\"", "description": "Fiat 126p often called \"Maluch\" (small one), became one of the most popular cars in poland during the 80s. It had multiple assemblies in Poland.", "links": {"subreddit": ["Poland", "Polska"]}, "path": {"250-258, T": [[714, -132], [716, -132], [716, -133], [717, -133], [717, -136], [715, -136], [713, -138], [713, -139], [709, -139], [706, -136], [706, -133], [708, -133], [708, -132]]}, "center": {"250-258, T": [711, -135]}}, +{"id": 3751, "name": "Barbie Logo", "description": "Tribute of the Barbie logo in honor of the new Barbie movie and a shared love for Barbie", "links": {"subreddit": ["Barbie"]}, "path": {"250-258, T": [[-1396, 561], [-1396, 547], [-1383, 546], [-1383, 563], [-1397, 562], [-1396, 547]]}, "center": {"250-258, T": [-1389, 556]}}, {"id": 3752, "name": "Removed flowers", "description": "An image of 2 flowers from Minecraft which have been removed from the game. The flower on the left is a Rose, which was removed and replaced with a Poppy in the 1.7.2 update, and the flower on the right is a cyan version of the Rose which was exclusive to the pocket edition version of Minecraft due to a \"hardware issue\" (I have no idea why having a red flower was a hardware issue) while porting Minecraft to mobile devices. These flowers were created by disprisk and maintained by the AERG-Dis-Prism alliance.", "links": {}, "path": {"198": [[-612, 229], [-612, 239], [-599, 239], [-599, 229]]}, "center": {"198": [-605, 234]}}, {"id": 3754, "name": "pou colombiano", "description": "its pou but colombian", "links": {}, "path": {"251": [[-954, 836], [-950, 838], [-942, 838], [-941, 837], [-938, 834], [-938, 831], [-943, 821], [-945, 820], [-947, 822], [-950, 820], [-952, 822], [-956, 831], [-956, 834], [-954, 836], [-952, 837]]}, "center": {"251": [-947, 830]}}, {"id": 3755, "name": "Castle Crashers", "description": "Castle Crashers is a 2D side scrolling hack-and-slash video game developed by The Behemoth First released on August 27, 2008 on Xbox Live Arcade, it became a hit and icon of indie video game development loved for its fun, simple design and catchy music, being one of the first 4-player beat em up games on the Xbox Live store.\nThe game is set in a fictional medieval universe in which a dark wizard steals a mystical crystal and captures four princesses. Four knights are charged by the king to rescue the princesses, recover the crystal, and bring the wizard to justice.", "links": {"website": ["https://www.castlecrashers.com/"]}, "path": {"173-174": [[-1031, -281], [-1031, -321], [-1024, -321], [-1025, -281]]}, "center": {"173-174": [-1027, -317]}}, -{"id": 3756, "name": "Dragona Joestar (Jojo's Part 9)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 9: The Jojolands.\n\nStand: Smooth Operators\n\n\"Be sure not to push yourself too hard, but don't give up\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1113, -99], [-1112, -99], [-1111, -97], [-1111, -93], [-1112, -91], [-1114, -91], [-1115, -93], [-1115, -98]]}, "center": {"250-258": [-1113, -95]}}, -{"id": 3757, "name": "SKZ Logo", "description": "\"SKZ\" is an abbreviation of Stray Kids, the name of a KPOP boy band. The logo was created in a partnership with users on the r/StrayKids sub and the Discord \"KPOP Place\".", "links": {"subreddit": ["straykids"], "discord": ["KvF2RzR2"]}, "path": {"227-258": [[-1223, 405], [-1223, 412], [-1208, 413], [-1208, 405]]}, "center": {"227-258": [-1215, 409]}}, -{"id": 3758, "name": "Nanda Tayo", "description": "Hello! I'm Nanda Tayo, can you call me Nanda, a Venezuelan Vtuber who loves to draw and talk a lot about anything, I'm 20 years old, I usually do very varied streams but especially Valorant, Minecraft, Genshin, Gartic and whatever comes >w< 💜", "links": {"website": ["https://www.twitch.tv/NandaTayo"], "discord": ["yVZvHcEQYT"]}, "path": {"250-258": [[-136, 947], [-110, 947], [-110, 970], [-136, 970]]}, "center": {"250-258": [-123, 959]}}, +{"id": 3756, "name": "Dragona Joestar (Jojo's Part 9)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 9: The Jojolands.\n\nStand: Smooth Operators\n\n\"Be sure not to push yourself too hard, but don't give up\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1113, -99], [-1112, -99], [-1111, -97], [-1111, -93], [-1112, -91], [-1114, -91], [-1115, -93], [-1115, -98]]}, "center": {"250-258, T": [-1113, -95]}}, +{"id": 3757, "name": "SKZ Logo", "description": "\"SKZ\" is an abbreviation of Stray Kids, the name of a KPOP boy band. The logo was created in a partnership with users on the r/StrayKids sub and the Discord \"KPOP Place\".", "links": {"subreddit": ["straykids"], "discord": ["KvF2RzR2"]}, "path": {"227-258, T": [[-1223, 405], [-1223, 412], [-1208, 413], [-1208, 405]]}, "center": {"227-258, T": [-1215, 409]}}, +{"id": 3758, "name": "Nanda Tayo", "description": "Hello! I'm Nanda Tayo, can you call me Nanda, a Venezuelan Vtuber who loves to draw and talk a lot about anything, I'm 20 years old, I usually do very varied streams but especially Valorant, Minecraft, Genshin, Gartic and whatever comes >w< 💜", "links": {"website": ["https://www.twitch.tv/NandaTayo"], "discord": ["yVZvHcEQYT"]}, "path": {"250-258, T": [[-136, 947], [-110, 947], [-110, 970], [-136, 970]]}, "center": {"250-258, T": [-123, 959]}}, {"id": 3759, "name": "Zumbi de Sangue", "description": "Zumbi de Sangue (Blood Zombie) is a creature from the \"Ordem Paranormal\" universe, a Brazilian tabletop RPG created by Cellbit. It also appears in a game from the same universe \"Enigma do Medo\" also developed by Cellbit and the game company Dumativa.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Zumbis_de_Sangue?so=search", "https://store.steampowered.com/app/1507580/Enigma_of_Fear/"], "subreddit": ["cellbits"]}, "path": {"66-248": [[635, 335], [630, 335], [628, 331], [632, 325], [631, 315], [631, 309], [629, 312], [625, 309], [629, 298], [642, 291], [641, 291], [640, 288], [640, 281], [651, 272], [651, 276], [651, 279], [657, 278], [665, 276], [660, 282], [660, 285], [666, 284], [660, 292], [660, 295], [662, 300], [656, 301], [655, 305], [667, 312], [662, 317], [655, 325], [652, 327], [659, 330], [658, 336], [645, 333], [645, 324], [647, 319], [644, 318], [641, 317], [640, 325], [637, 329]]}, "center": {"66-248": [642, 304]}}, -{"id": 3760, "name": "Slime", "description": "The slime is a recurring monster in the Dragon Quest game franchise.", "links": {"website": ["https://dragonquest.fandom.com/wiki/Slime"], "subreddit": ["dragonquest"]}, "path": {"210-258": [[-1037, 114], [-1034, 110], [-1031, 114], [-1031, 117], [-1037, 117]]}, "center": {"210-258": [-1034, 114]}}, -{"id": 3761, "name": "Mitchell Jr.", "description": "This is Mitchell Jr., a chracter loosely related to Papayasaur and made by a small group of friends.\n\nThis is the second time Mitchell Jr. has been added to r/place, first time being on the Irish Brazilian flag on r/place 2022.", "links": {"subreddit": ["Papayasaur"]}, "path": {"195-197": [[-1196, -912], [-1195, -911], [-1192, -911], [-1189, -912], [-1189, -918], [-1188, -919], [-1193, -919], [-1194, -918], [-1194, -916], [-1196, -914], [-1196, -913], [-1195, -914]], "201-258": [[-1186, -920], [-1188, -918], [-1188, -916], [-1190, -914], [-1190, -912], [-1188, -910], [-1185, -910], [-1184, -911], [-1181, -911], [-1181, -916], [-1180, -917], [-1180, -920]]}, "center": {"195-197": [-1192, -914], "201-258": [-1185, -915]}}, -{"id": 3762, "name": "Hornet's Needle", "description": "This sewing needle is the weapon of choice for Hornet, one of the main characters of the indie game Hollow Knight.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Needle"], "subreddit": ["HKPlace", "Berserk"], "discord": ["xHQmkAYN8G", "M699v8xSqz"]}, "path": {"167-258": [[544, 941], [542, 943], [542, 948], [539, 952], [539, 956], [542, 960], [542, 961], [538, 961], [538, 963], [544, 963], [544, 962], [552, 962], [555, 960], [555, 959], [550, 959], [550, 954], [547, 952], [547, 943], [545, 941]]}, "center": {"167-258": [545, 957]}}, -{"id": 3763, "name": "Agente maxo icons", "description": "Mini pixel arts that represent twitch streamer Agentemaxo\nIn order from up to down: Babousa, the mascot of the chat, his minecraft skin, and the skin of is iconic character Sapo peta\nThere are more babousas hidden in the canvas, can you find them?", "links": {"website": ["https://www.twitch.tv/agentemaxo"], "subreddit": ["eyMaxo"]}, "path": {"250-258": [[-1348, 533], [-1348, 530], [-1345, 530], [-1341, 531], [-1340, 535], [-1340, 539], [-1342, 541], [-1342, 548], [-1341, 551], [-1342, 558], [-1346, 561], [-1349, 561], [-1351, 558], [-1352, 555], [-1352, 538], [-1350, 537], [-1349, 534], [-1347, 531]]}, "center": {"250-258": [-1347, 552]}}, -{"id": 3764, "name": "Tooru (Jojo's Part 8)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 8: Jojolion.\n\nStand: Wonder of U\n\n\"It is unavoidable that bad things will sometimes occur. That is a \"Calamity\" \"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1080, -114], [-1080, -115], [-1081, -116], [-1085, -116], [-1086, -115], [-1086, -114], [-1086, -110], [-1082, -108], [-1081, -110], [-1080, -112], [-1080, -115]]}, "center": {"250-258": [-1083, -113]}}, -{"id": 3765, "name": "The Flag of Kurdistan", "description": "The flag of Kurdistan, a geo-cultural region in the Armenian Highlands and Middle East that corresponds to places where ethnic Kurdish people live.", "links": {"website": ["https://en.wikipedia.org/wiki/Kurdistan"]}, "path": {"250-258": [[-112, 802], [-112, 798], [-113, 798], [-113, 799], [-117, 799], [-116, 799], [-116, 801], [-113, 801], [-113, 802]]}, "center": {"250-258": [-114, 800]}}, -{"id": 3766, "name": "The Araguaney", "description": "The araguaney (Handroanthus chrysanthus) was declared the national tree of Venezuela on May 29, 1948, according to a resolution of the Ministry of National Education and Agriculture and Breeding published in the Official Gazette of the United States of Venezuela No. 22.628.1​2​3​ It owes its name to the Carib Indians who called it Aravanei, in Venezuela it begins to flower during the first months of the year when the dry season begins.", "links": {"website": ["https://es.wikipedia.org/wiki/Anexo:%C3%81rboles_emblem%C3%A1ticos_de_Venezuela#:~:text=El%20araguaney%20(Handroanthus%20chrysanthus)%20es,(de%20febrero%20a%20abril)."], "subreddit": ["vzla"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258": [[-834, 303], [-831, 320], [-811, 320], [-811, 302], [-824, 299]]}, "center": {"250-258": [-823, 310]}}, -{"id": 3767, "name": "Capp n' Ccino", "description": "🇬🇧 / 🇺🇸 - English\nCapp n' Ccino (pronounced the same as \"cappuccino\") is a portuguese Discord server with 800+ members (07/26/23).\n\nCreated in 2021 by Sliced (SlicedBlueApple), this charismatic server has amazing members (aka \"Customers\") who helped build this little space on this huge canvas.\nSo a big thank you to Lulita, Drown, Marques, iPartner and all the other members who helped achieve this <3\n\n🇵🇹 / 🇧🇷 - Português\nCapp n' Ccino (pronuncia-se da mesma maneira que \"capuccino\") é um servidor de Discord português com +800 membros (26/07/23).\n\nCriado em 2021 por Sliced (SlicedBlueApple), este carismático servidor tem membros (aka \"Clientes\") fantásticos que ajudaram a construir este pequeno espaço neste enorme canvas.\nPortanto, um grande obrigado á Lulita, ao Drown, ao Marques, iPartner e a todos os outros membros que ajudaram a conquistar isto <3", "links": {"website": ["https://depressao.fandom.com/pt-br/wiki/Capp_n%27_ccino"], "subreddit": ["5risadas"], "discord": ["XGBMy7NeU8"]}, "path": {"250-258": [[-1117, 557], [-1094, 557], [-1094, 567], [-1117, 567]]}, "center": {"250-258": [-1105, 562]}}, -{"id": 3768, "name": "P.H GANG", "description": "PH Gvng (PHG) es el nombre de un grupo chileno de amigos que residen en villa alemana, Valparaíso, Chile, El nombre de PHG se origina a que en 2022 un compañero llamado \"Pascal Hernández Gutiérrez\" falleció. el era parte de este grupo que previamente se llamaba \"Fumamos Coca\", al amigo fallecer, se le cambio el nombre en su honor a \"PH Gvng\" el PH por \"Pascal Hernández\" y \"Gvng\" Es por la inicial de el segundo apellido de nuestro fallecido compañero (Gutiérrez) Pero como somos un grupo se nos ocurrió remplazarlo por \"Gang\", que significa \"pandilla\".", "links": {"website": ["https://www.instagram.com/phgvng_/"]}, "path": {"250-258": [[-803, -831], [-785, -831], [-784, -820], [-803, -821], [-803, -822], [-803, -821]]}, "center": {"250-258": [-794, -826]}}, -{"id": 3769, "name": "r/place Doctor Who Alliance", "description": "An Alliance formed by individual and small community around the Tardis after it was forced to warp away from it's formal location.\n\nAs the Tardis warps in just before the first expansion, Flat Eric and Tiny Python also appears near by.\n\nWe were weary of the flag forming, we thought it was Colombia, but it turns out to be Ecuador!\n\nAfter shuffling among ourselves, a rough alliance was formed that lasted till the end.\n\nwe had about 6 hours of peace before Canary Islands appears, asking to take the old spot where Ecuador was.\n\nEven though they promised to not take any of our alliance members, they ate Flat Eric!\n\nAfter about 9 hours when the alliance members came back and saw what happened, we broke Flat Eric out of the belly of the Canary Islands and found a Ms.Flat Eric too\n\nJust in time for the second expansion too.\n\nPeace didn't last long though, after just 4.5 hours, We got attacked by a whole bunch of group, all at the same time, wave after wave, from the Canary Islands, minecraft(?), Kruishoutem(?) and French Streamer!\n\nJetlag and others came to our help to fight off the French Streamer and we managed to push them back without the Tardis ever disappearing during the whole war.\n\nAfter which, we got a few small attack here and there but it's mostly peaceful till the very end.\n\nAlso at some point we allied with the Irish, the pan flag and the pokemon below us", "links": {"website": ["https://github.com/asl97/Template-Editor", "https://en.wikipedia.org/wiki/Flat_Eric", "https://en.wikipedia.org/wiki/Ecuador"], "subreddit": ["DoctorWhumour"], "discord": ["ZWYTA6TEUs"]}, "path": {"54-258": [[251, -162], [251, -134], [279, -134], [279, -162]]}, "center": {"54-258": [265, -148]}}, -{"id": 3770, "name": "Los 3 caballeros", "description": "A little art representing the friendship of 3 bros", "links": {}, "path": {"213-258": [[-1256, 589], [-1257, 589], [-1257, 579], [-1242, 579], [-1241, 589], [-1258, 589], [-1259, 580], [-1243, 580], [-1243, 589]]}, "center": {"213-258": [-1258, 581]}}, -{"id": 3771, "name": "The Almohad dynasty", "description": "This is the emblem of the Almohad dynasty, one of the most powerful and influential dynasties of Morocco.", "links": {}, "path": {"250-258": [[-528, -321], [-521, -321], [-521, -314], [-528, -314]]}, "center": {"250-258": [-524, -317]}}, -{"id": 3772, "name": "Unturned Zombie Face", "description": "The iconic face of a zombie from Unturned. This face doubles as the game's main logo.", "links": {"website": ["https://store.steampowered.com/app/304930/Unturned/"], "subreddit": ["Unturned"], "discord": ["Unturned"]}, "path": {"250-258": [[2, -643], [2, -660], [-15, -660], [-15, -643]]}, "center": {"250-258": [-6, -651]}}, -{"id": 3773, "name": "Flag of Mongolia", "description": "Flag of the country of Mongolia, a nation in Northern Asia between Russia and China. Was originally much smaller than the final version, but eventually expanded to what it is now. There was originally another Mongolian flag to the left of it, but this is where it was relocated and that space is now occupied by the Philippine flag.", "links": {"subreddit": ["mongolia"]}, "path": {"217-258": [[28, -694], [53, -694], [53, -674], [28, -674]]}, "center": {"217-258": [41, -684]}}, -{"id": 3774, "name": "Red Velvet Sneak", "description": "Hidden in the background of the Blood Element is the logo of the K-Pop group Red Velvet.", "links": {"subreddit": ["redvelvet"]}, "path": {"250-258": [[265, 461], [282, 461], [282, 472], [266, 473]]}, "center": {"250-258": [274, 467]}}, +{"id": 3760, "name": "Slime", "description": "The slime is a recurring monster in the Dragon Quest game franchise.", "links": {"website": ["https://dragonquest.fandom.com/wiki/Slime"], "subreddit": ["dragonquest"]}, "path": {"210-258, T": [[-1037, 114], [-1034, 110], [-1031, 114], [-1031, 117], [-1037, 117]]}, "center": {"210-258, T": [-1034, 114]}}, +{"id": 3761, "name": "Mitchell Jr.", "description": "This is Mitchell Jr., a chracter loosely related to Papayasaur and made by a small group of friends.\n\nThis is the second time Mitchell Jr. has been added to r/place, first time being on the Irish Brazilian flag on r/place 2022.", "links": {"subreddit": ["Papayasaur"]}, "path": {"195-197": [[-1196, -912], [-1195, -911], [-1192, -911], [-1189, -912], [-1189, -918], [-1188, -919], [-1193, -919], [-1194, -918], [-1194, -916], [-1196, -914], [-1196, -913], [-1195, -914]], "201-258, T": [[-1186, -920], [-1188, -918], [-1188, -916], [-1190, -914], [-1190, -912], [-1188, -910], [-1185, -910], [-1184, -911], [-1181, -911], [-1181, -916], [-1180, -917], [-1180, -920]]}, "center": {"195-197": [-1192, -914], "201-258, T": [-1185, -915]}}, +{"id": 3762, "name": "Hornet's Needle", "description": "This sewing needle is the weapon of choice for Hornet, one of the main characters of the indie game Hollow Knight.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Needle"], "subreddit": ["HKPlace", "Berserk"], "discord": ["xHQmkAYN8G", "M699v8xSqz"]}, "path": {"167-258, T": [[544, 941], [542, 943], [542, 948], [539, 952], [539, 956], [542, 960], [542, 961], [538, 961], [538, 963], [544, 963], [544, 962], [552, 962], [555, 960], [555, 959], [550, 959], [550, 954], [547, 952], [547, 943], [545, 941]]}, "center": {"167-258, T": [545, 957]}}, +{"id": 3763, "name": "Agente maxo icons", "description": "Mini pixel arts that represent twitch streamer Agentemaxo\nIn order from up to down: Babousa, the mascot of the chat, his minecraft skin, and the skin of is iconic character Sapo peta\nThere are more babousas hidden in the canvas, can you find them?", "links": {"website": ["https://www.twitch.tv/agentemaxo"], "subreddit": ["eyMaxo"]}, "path": {"250-258, T": [[-1348, 533], [-1348, 530], [-1345, 530], [-1341, 531], [-1340, 535], [-1340, 539], [-1342, 541], [-1342, 548], [-1341, 551], [-1342, 558], [-1346, 561], [-1349, 561], [-1351, 558], [-1352, 555], [-1352, 538], [-1350, 537], [-1349, 534], [-1347, 531]]}, "center": {"250-258, T": [-1347, 552]}}, +{"id": 3764, "name": "Tooru (Jojo's Part 8)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 8: Jojolion.\n\nStand: Wonder of U\n\n\"It is unavoidable that bad things will sometimes occur. That is a \"Calamity\" \"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1080, -114], [-1080, -115], [-1081, -116], [-1085, -116], [-1086, -115], [-1086, -114], [-1086, -110], [-1082, -108], [-1081, -110], [-1080, -112], [-1080, -115]]}, "center": {"250-258, T": [-1083, -113]}}, +{"id": 3765, "name": "The Flag of Kurdistan", "description": "The flag of Kurdistan, a geo-cultural region in the Armenian Highlands and Middle East that corresponds to places where ethnic Kurdish people live.", "links": {"website": ["https://en.wikipedia.org/wiki/Kurdistan"]}, "path": {"250-258, T": [[-112, 802], [-112, 798], [-113, 798], [-113, 799], [-117, 799], [-116, 799], [-116, 801], [-113, 801], [-113, 802]]}, "center": {"250-258, T": [-114, 800]}}, +{"id": 3766, "name": "The Araguaney", "description": "The araguaney (Handroanthus chrysanthus) was declared the national tree of Venezuela on May 29, 1948, according to a resolution of the Ministry of National Education and Agriculture and Breeding published in the Official Gazette of the United States of Venezuela No. 22.628.1​2​3​ It owes its name to the Carib Indians who called it Aravanei, in Venezuela it begins to flower during the first months of the year when the dry season begins.", "links": {"website": ["https://es.wikipedia.org/wiki/Anexo:%C3%81rboles_emblem%C3%A1ticos_de_Venezuela#:~:text=El%20araguaney%20(Handroanthus%20chrysanthus)%20es,(de%20febrero%20a%20abril)."], "subreddit": ["vzla"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258, T": [[-834, 303], [-831, 320], [-811, 320], [-811, 302], [-824, 299]]}, "center": {"250-258, T": [-823, 310]}}, +{"id": 3767, "name": "Capp n' Ccino", "description": "🇬🇧 / 🇺🇸 - English\nCapp n' Ccino (pronounced the same as \"cappuccino\") is a portuguese Discord server with 800+ members (07/26/23).\n\nCreated in 2021 by Sliced (SlicedBlueApple), this charismatic server has amazing members (aka \"Customers\") who helped build this little space on this huge canvas.\nSo a big thank you to Lulita, Drown, Marques, iPartner and all the other members who helped achieve this <3\n\n🇵🇹 / 🇧🇷 - Português\nCapp n' Ccino (pronuncia-se da mesma maneira que \"capuccino\") é um servidor de Discord português com +800 membros (26/07/23).\n\nCriado em 2021 por Sliced (SlicedBlueApple), este carismático servidor tem membros (aka \"Clientes\") fantásticos que ajudaram a construir este pequeno espaço neste enorme canvas.\nPortanto, um grande obrigado á Lulita, ao Drown, ao Marques, iPartner e a todos os outros membros que ajudaram a conquistar isto <3", "links": {"website": ["https://depressao.fandom.com/pt-br/wiki/Capp_n%27_ccino"], "subreddit": ["5risadas"], "discord": ["XGBMy7NeU8"]}, "path": {"250-258, T": [[-1117, 557], [-1094, 557], [-1094, 567], [-1117, 567]]}, "center": {"250-258, T": [-1105, 562]}}, +{"id": 3768, "name": "P.H GANG", "description": "PH Gvng (PHG) es el nombre de un grupo chileno de amigos que residen en villa alemana, Valparaíso, Chile, El nombre de PHG se origina a que en 2022 un compañero llamado \"Pascal Hernández Gutiérrez\" falleció. el era parte de este grupo que previamente se llamaba \"Fumamos Coca\", al amigo fallecer, se le cambio el nombre en su honor a \"PH Gvng\" el PH por \"Pascal Hernández\" y \"Gvng\" Es por la inicial de el segundo apellido de nuestro fallecido compañero (Gutiérrez) Pero como somos un grupo se nos ocurrió remplazarlo por \"Gang\", que significa \"pandilla\".", "links": {"website": ["https://www.instagram.com/phgvng_/"]}, "path": {"250-258, T": [[-803, -831], [-785, -831], [-784, -820], [-803, -821], [-803, -822], [-803, -821]]}, "center": {"250-258, T": [-794, -826]}}, +{"id": 3769, "name": "r/place Doctor Who Alliance", "description": "An Alliance formed by individual and small community around the Tardis after it was forced to warp away from it's formal location.\n\nAs the Tardis warps in just before the first expansion, Flat Eric and Tiny Python also appears near by.\n\nWe were weary of the flag forming, we thought it was Colombia, but it turns out to be Ecuador!\n\nAfter shuffling among ourselves, a rough alliance was formed that lasted till the end.\n\nwe had about 6 hours of peace before Canary Islands appears, asking to take the old spot where Ecuador was.\n\nEven though they promised to not take any of our alliance members, they ate Flat Eric!\n\nAfter about 9 hours when the alliance members came back and saw what happened, we broke Flat Eric out of the belly of the Canary Islands and found a Ms.Flat Eric too\n\nJust in time for the second expansion too.\n\nPeace didn't last long though, after just 4.5 hours, We got attacked by a whole bunch of group, all at the same time, wave after wave, from the Canary Islands, minecraft(?), Kruishoutem(?) and French Streamer!\n\nJetlag and others came to our help to fight off the French Streamer and we managed to push them back without the Tardis ever disappearing during the whole war.\n\nAfter which, we got a few small attack here and there but it's mostly peaceful till the very end.\n\nAlso at some point we allied with the Irish, the pan flag and the pokemon below us", "links": {"website": ["https://github.com/asl97/Template-Editor", "https://en.wikipedia.org/wiki/Flat_Eric", "https://en.wikipedia.org/wiki/Ecuador"], "subreddit": ["DoctorWhumour"], "discord": ["ZWYTA6TEUs"]}, "path": {"54-258, T": [[251, -162], [251, -134], [279, -134], [279, -162]]}, "center": {"54-258, T": [265, -148]}}, +{"id": 3770, "name": "Los 3 caballeros", "description": "A little art representing the friendship of 3 bros", "links": {}, "path": {"213-258, T": [[-1256, 589], [-1257, 589], [-1257, 579], [-1242, 579], [-1241, 589], [-1258, 589], [-1259, 580], [-1243, 580], [-1243, 589]]}, "center": {"213-258, T": [-1258, 581]}}, +{"id": 3771, "name": "The Almohad dynasty", "description": "This is the emblem of the Almohad dynasty, one of the most powerful and influential dynasties of Morocco.", "links": {}, "path": {"250-258, T": [[-528, -321], [-521, -321], [-521, -314], [-528, -314]]}, "center": {"250-258, T": [-524, -317]}}, +{"id": 3772, "name": "Unturned Zombie Face", "description": "The iconic face of a zombie from Unturned. This face doubles as the game's main logo.", "links": {"website": ["https://store.steampowered.com/app/304930/Unturned/"], "subreddit": ["Unturned"], "discord": ["Unturned"]}, "path": {"250-258, T": [[2, -643], [2, -660], [-15, -660], [-15, -643]]}, "center": {"250-258, T": [-6, -651]}}, +{"id": 3773, "name": "Flag of Mongolia", "description": "Flag of the country of Mongolia, a nation in Northern Asia between Russia and China. Was originally much smaller than the final version, but eventually expanded to what it is now. There was originally another Mongolian flag to the left of it, but this is where it was relocated and that space is now occupied by the Philippine flag.", "links": {"subreddit": ["mongolia"]}, "path": {"217-258, T": [[28, -694], [53, -694], [53, -674], [28, -674]]}, "center": {"217-258, T": [41, -684]}}, +{"id": 3774, "name": "Red Velvet Sneak", "description": "Hidden in the background of the Blood Element is the logo of the K-Pop group Red Velvet.", "links": {"subreddit": ["redvelvet"]}, "path": {"250-258, T": [[265, 461], [282, 461], [282, 472], [266, 473]]}, "center": {"250-258, T": [274, 467]}}, {"id": 3775, "name": "Byreibax minecraft skin", "description": "Is the Byreibax minecraft skin with his initials of his name above", "links": {"website": ["https://es.namemc.com/profile/Byreibax_YT.1"], "discord": ["EXctvBMV"]}, "path": {"244-249": [[-280, 930], [-271, 930], [-271, 943], [-280, 943]]}, "center": {"244-249": [-275, 937]}}, -{"id": 3776, "name": "Fish Ball Cast", "description": "The \"Fish Ball Cast\" is a Brazilian podcast that originated on the longplays and humor channel called JogandoFoddaci. From youtubers and streamers Gemaplys, Saiko and Carteiro Cósmico,\nthis podcast is a sequel to another old podcast from the same channel entitled \"Flowdaci Podcrê\" which has been discontinued.\n\nThe name of the podcast comes from the adaptation of a Brazilian pun where the words fish, ball and cat, if pronounced quickly with a Brazilian accent, sounds like \"I made a bl*wjob\". The change to the name of the podcast is that the \"cat\" was changed to \"cast\", implying the sound of faux professionalism.\n\nThe mascots represented in the podcast are a fish, a ball and a microphone.\n\n(For the ball design, a deal was made with r/Brasil to use the volleyball above to represent one of the podcast's mascots! <3)", "links": {"website": ["https://www.youtube.com/@jogandofoddaci"], "subreddit": ["JogandoFoddaci"]}, "path": {"214-258": [[149, 596], [149, 583], [149, 559], [175, 559], [175, 596]]}, "center": {"214-258": [162, 578]}}, -{"id": 3777, "name": "Aether & Lumine", "description": "Aether and Lumine from the game Genshin Impact. \n\nThe main characters of the game. You get to choose to play as one of them when you start your journey. Also known as the Traveler.", "links": {"website": ["https://genshin.hoyoverse.com/en/home"], "subreddit": ["Genshin_Impact", "TravelerMains"]}, "path": {"41-258": [[0, 322], [0, 321], [-1, 320], [-1, 312], [1, 312], [-6, 305], [-6, 304], [-7, 304], [-7, 299], [-8, 298], [-8, 297], [-9, 297], [-9, 295], [-10, 294], [-11, 294], [-12, 294], [-12, 292], [-13, 291], [-15, 289], [-17, 289], [-17, 288], [-18, 287], [-18, 286], [-15, 283], [-14, 282], [-12, 282], [-11, 280], [-10, 279], [-10, 276], [-9, 275], [-8, 274], [-9, 273], [-9, 270], [-10, 270], [-10, 267], [-11, 267], [-11, 265], [-16, 260], [-17, 260], [-18, 260], [-18, 258], [-19, 258], [-19, 257], [-20, 257], [-20, 260], [-25, 260], [-25, 261], [-28, 261], [-31, 264], [-33, 264], [-33, 265], [-34, 266], [-34, 269], [-36, 269], [-37, 270], [-35, 270], [-35, 272], [-36, 272], [-36, 273], [-37, 274], [-35, 274], [-34, 275], [-35, 276], [-34, 277], [-34, 278], [-33, 280], [-32, 282], [-31, 283], [-30, 284], [-31, 285], [-37, 291], [-37, 292], [-38, 293], [-39, 294], [-40, 295], [-42, 295], [-42, 294], [-44, 292], [-46, 292], [-46, 291], [-48, 291], [-48, 290], [-54, 290], [-54, 291], [-56, 291], [-58, 292], [-58, 293], [-60, 293], [-61, 294], [-64, 297], [-65, 298], [-65, 300], [-66, 300], [-67, 305], [-66, 307], [-65, 309], [-66, 309], [-66, 310], [-67, 311], [-66, 311], [-66, 312], [-65, 313], [-63, 314], [-62, 313], [-62, 315], [-61, 317], [-60, 319], [-59, 320], [-58, 322], [-59, 324], [-61, 326], [-65, 327], [-66, 331], [-67, 334], [-69, 336], [-68, 340], [-68, 342], [-69, 344], [-69, 348], [-68, 350], [-65, 350], [-62, 350], [-60, 348], [-58, 348], [-56, 347], [-54, 347], [-55, 342], [-56, 342], [-56, 339], [-55, 339], [-55, 338], [-53, 338], [-50, 338], [-51, 336], [-47, 336], [-47, 337], [-43, 337], [-42, 340], [-41, 342], [-40, 337], [-11, 337], [-11, 331], [-11, 326], [-7, 323], [-1, 322]]}, "center": {"41-258": [-30, 315]}}, -{"id": 3778, "name": "TOFLANNSMP", "description": "A small SMP created by @MICH_FANARTS late 2022 in which players are exclusively artist's and roleplayer's; we wanted to leave our little in there-which stands for , as a memento of our adventures and roleplay.", "links": {}, "path": {"250-258": [[1491, 517], [1491, 520], [1491, 523], [1491, 524], [1491, 525], [1493, 525], [1494, 525], [1497, 525], [1499, 525], [1500, 524], [1500, 522], [1499, 520], [1499, 518], [1499, 517]]}, "center": {"250-258": [1495, 521]}}, -{"id": 3779, "name": "Dragonspine", "description": "Dragonspine. A beautiful snowy mountain that was a part of the first map update. An iconic location from the game Genshin Impact. \n\nGo listen to the soundtrack.\n(linked below)", "links": {"website": ["https://youtu.be/n_-9mrBMLA8?si=W44mhn8Fm3uXK545&t=93", "https://genshin.hoyoverse.com/en/home"], "subreddit": ["Genshin_Impact"]}, "path": {"180-258": [[-94, 313], [-93, 312], [-92, 311], [-92, 310], [-91, 310], [-90, 309], [-89, 308], [-88, 307], [-87, 306], [-86, 305], [-85, 304], [-79, 298], [-84, 296], [-84, 292], [-85, 292], [-85, 290], [-83, 288], [-82, 287], [-79, 287], [-79, 285], [-76, 285], [-76, 287], [-73, 287], [-73, 288], [-71, 289], [-70, 291], [-72, 294], [-76, 299], [-75, 300], [-68, 306], [-68, 311], [-65, 314], [-64, 314], [-63, 315], [-64, 315], [-65, 315], [-65, 316], [-67, 317], [-68, 318], [-69, 318], [-70, 320], [-70, 322], [-69, 322], [-68, 323], [-68, 324], [-67, 325], [-67, 326], [-67, 327], [-68, 327], [-68, 329], [-75, 329], [-75, 328], [-80, 328], [-80, 325], [-81, 325], [-83, 323], [-86, 323], [-87, 325], [-88, 325], [-88, 326], [-92, 326], [-93, 325], [-94, 325]]}, "center": {"180-258": [-79, 313]}}, -{"id": 3780, "name": "Yae Miko (fox form)", "description": "The fox form of the character Yae Miko from Genshin Impact. She finally climbed back on the logo went back to sleep after The Flip happened.", "links": {"website": ["https://genshin.hoyoverse.com/en/home", "https://youtu.be/4yFiBhNIWYo?si=XkX8BaPICvUvQXf8"], "subreddit": ["Genshin_Impact", "YaeMiko"]}, "path": {"120-162": [[-81, 264], [-80, 263], [-80, 261], [-77, 258], [-76, 258], [-75, 257], [-70, 257], [-69, 258], [-68, 258], [-65, 261], [-65, 263], [-64, 264], [-65, 265], [-67, 265], [-67, 270], [-69, 270], [-69, 279], [-70, 280], [-70, 284], [-72, 284], [-74, 282], [-74, 280], [-76, 280], [-76, 266], [-78, 266], [-78, 265], [-81, 265]], "163-258": [[-72, 266], [-83, 266], [-83, 264], [-82, 264], [-82, 263], [-83, 262], [-84, 261], [-85, 261], [-86, 262], [-87, 261], [-86, 260], [-86, 258], [-85, 257], [-82, 254], [-74, 254], [-70, 258], [-70, 260], [-69, 261], [-69, 262], [-68, 262], [-67, 263], [-66, 264], [-66, 267], [-68, 269], [-71, 269], [-71, 266], [-72, 266], [-72, 265]]}, "center": {"120-162": [-72, 263], "163-258": [-76, 260]}}, -{"id": 3781, "name": "Acronym of JogandoFoddaci", "description": "This box is the acronym of the longplays channel called \"JogandoFoddaci\", which is also the miniatures of the channel during the videos. The JogandoFoddaci channel is a humorous longplays channel made up of great brazilian youtubers and streamers: Saiko, Gemaplys and Carteiro Cósmico.", "links": {"website": ["https://www.youtube.com/@jogandofoddaci"], "subreddit": ["JogandoFoddaci"]}, "path": {"155-258": [[146, 500], [146, 487], [160, 487], [160, 500]]}, "center": {"155-258": [153, 494]}}, -{"id": 3782, "name": "Kamisato Ayaka", "description": "The character Ayaka from the game Genshin Impact. She is a 5-star Cryo sword user.", "links": {"website": ["https://genshin.hoyoverse.com/en/home", "https://youtu.be/5RCsr1Y8UZA?si=9LLzq9rJWPf85VR0"], "subreddit": ["Genshin_Impact", "AyakaMains"]}, "path": {"177-258": [[-54, 357], [-54, 353], [-53, 348], [-54, 347], [-54, 342], [-55, 341], [-55, 340], [-54, 339], [-54, 338], [-51, 338], [-50, 337], [-48, 337], [-47, 338], [-43, 341], [-42, 342], [-42, 352], [-43, 353], [-44, 353], [-45, 355], [-45, 356], [-45, 357], [-53, 357], [-53, 356], [-53, 353], [-54, 349], [-53, 349], [-54, 349]]}, "center": {"177-258": [-48, 345]}}, -{"id": 3783, "name": "33", "description": "Tribute to Spanish F1 driver Fernando Alonso, also nicknamed \"El nano\" or \"Magic Alonso\". \nAlonso has 32 wins in F1 and the victory number 33 has been memes for quite some time in all kind of social networks and by Alonso himself.\nThe creator of this meme is a twitter user names \"Nanosecso\" and that's why we can see it written down in the canvas.", "links": {"website": ["https://twitter.com/Nanosecso"]}, "path": {"61-82": [[357, -63], [379, -63], [379, -55], [357, -55], [357, -60]], "83-97": [[351, -69], [378, -69], [376, -64], [378, -62], [378, -55], [357, -55], [351, -63]], "98-110": [[352, -69], [393, -69], [397, -65], [418, -63], [417, -55], [379, -55], [378, -48], [352, -48]], "111-120": [[351, -69], [417, -69], [417, -48], [351, -48]], "132-142": [[369, -63], [396, -63], [396, -55], [369, -55]], "148-258": [[352, -64], [377, -64], [377, -48], [352, -48]]}, "center": {"61-82": [368, -59], "83-97": [365, -62], "98-110": [363, -58], "111-120": [384, -58], "132-142": [383, -59], "148-258": [365, -56]}}, -{"id": 3784, "name": "Belcher Family from Bob's Burgers", "description": "Tina, Gene, Louise, Linda and Bob Belcher from the Fox animated sitcom Bob's Burgers. Created by the users of r/bobsburgers", "links": {"subreddit": ["bobsburgers"], "discord": ["DFEJKHvmpp"]}, "path": {"240-258": [[-1207, 502], [-1252, 502], [-1251, 510], [-1206, 510], [-1206, 502]]}, "center": {"240-258": [-1229, 506]}}, -{"id": 3785, "name": "Mudkip", "description": "Mudkip is a Pokémon who first appeared in the third generation of Pokémon Games. Mudkip is a small, quadrupedal amphibious Pokémon that resembles mudskipper fishes and axolotls.", "links": {"website": ["http://pokemon.com/"], "subreddit": ["pokemon"], "discord": ["pokemon"]}, "path": {"250-258": [[-1247, 337], [-1247, 339], [-1244, 340], [-1240, 341], [-1239, 339], [-1236, 341], [-1234, 337], [-1232, 335], [-1231, 333], [-1232, 330], [-1236, 327], [-1237, 324], [-1240, 323], [-1242, 327], [-1244, 330], [-1248, 327], [-1250, 328], [-1250, 334]]}, "center": {"250-258": [-1238, 333]}}, -{"id": 3786, "name": "Santa Fe", "description": "Santa Fe​ es una de las veintitrés provincias que integran la República Argentina.", "links": {}, "path": {"250-258": [[371, -889], [377, -889], [378, -890], [379, -891], [380, -892], [380, -893], [381, -893], [382, -892], [383, -891], [384, -892], [385, -893], [384, -894], [383, -895], [383, -896], [383, -897], [384, -898], [384, -899], [385, -900], [385, -901], [385, -902], [386, -902], [386, -905], [387, -906], [388, -907], [388, -913], [387, -914], [382, -914], [378, -914], [378, -909], [377, -909], [377, -902], [376, -902], [376, -898], [377, -897], [377, -896], [376, -895], [375, -894], [374, -893], [373, -892], [372, -891], [371, -890]]}, "center": {"250-258": [383, -909]}}, -{"id": 3787, "name": "Tortilla Land", "description": "Arte creado por seguidores de la serie Tortilla Land \nEs un evento en Minecraft ideado por los creadores de contenido Perxitaa y Auronplay y crado ppr JaviDMr10 y HeberonYT(Kland y plantea vegetta)", "links": {}, "path": {"250-258": [[126, 597], [129, 645], [146, 646], [145, 663], [93, 662], [92, 626], [55, 625], [55, 616], [88, 615], [89, 597]]}, "center": {"250-258": [108, 616]}}, -{"id": 3788, "name": "Carrot Farm", "description": "This carrot farm is composed of : two carrots, 2 ankylosaurus from r/ankmemes, one pineapple, flowers, a shark tooth near r/crochet, another shark tooth near the void, a cat at the bottom of charizard's pokemon card, a big shrimp on the right of the farm, a baby shrimp who didn't make it in the final canvas at the right of the big shrimp, we also have 2 carrots and a duck few pixels north in O Carente and a last carrot in the top right of O Carente.\n\nThis is the 8th place the farm settled. The first farm was wiped by Argentina while they were fighting Portugal. Then by Paraguay. They again Argentina when we moved. Then Turkey when we moved again. Then pixel spaces next to osu wiped us. Then O Carente wiped us. Then we were wiped again. And this is the last farm that holds in place thanks to the help of the bronies from My Little Pony who gave us some space on their canvas for us to make a first carrot. We then made a pineapple than was wiped with us when Cellbit's monster came and then we negociated with Portugal to have a shrimp, they loved the idea but found it too big. So we changed the template of our shrimp to match some unused space around O Carente.\n\nWe are so proud of ourselves and of what we made, this is our 3rd r/place.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C"]}, "path": {"165-258": [[532, 807], [510, 824], [500, 828], [501, 808], [537, 755], [548, 738], [543, 737], [530, 751], [528, 744], [538, 732], [535, 728], [514, 744], [516, 748], [510, 751], [514, 758], [519, 760], [525, 758], [545, 741], [520, 777], [499, 795], [499, 809], [497, 816], [500, 830], [500, 841], [502, 840], [505, 840], [508, 834], [519, 834], [521, 838], [519, 843], [517, 846], [514, 851], [517, 851], [528, 846], [528, 844], [534, 844], [531, 841], [533, 837], [535, 836], [534, 802]]}, "center": {"165-258": [525, 825]}}, -{"id": 3789, "name": "Princess Twilight Sparkle", "description": "Twilight Sparkle is one of the main ponies (Mane 6) from the TV series My Little Pony: Friendship is Magic, Generation 4 of the My Little Pony series. This art depicts Twilight Sparkle in her future Alicorn form (Princess Twilight Sparkle) as seen in the final episode of My Little Pony: Friendship Is Magic, \"The Last Problem\".", "links": {"website": ["https://mlp.fandom.com/wiki/Twilight_Sparkle"], "subreddit": ["mylittlepony"], "discord": ["bronyplace"]}, "path": {"231-258": [[-1298, 82], [-1298, 81], [-1301, 81], [-1303, 80], [-1304, 79], [-1304, 78], [-1302, 75], [-1302, 73], [-1304, 70], [-1310, 67], [-1311, 67], [-1314, 65], [-1316, 61], [-1316, 60], [-1315, 56], [-1314, 55], [-1314, 53], [-1316, 50], [-1321, 45], [-1323, 45], [-1324, 44], [-1328, 44], [-1328, 42], [-1327, 41], [-1327, 38], [-1326, 37], [-1327, 36], [-1328, 37], [-1332, 44], [-1335, 44], [-1335, 43], [-1337, 41], [-1339, 43], [-1339, 45], [-1340, 46], [-1342, 46], [-1344, 44], [-1345, 44], [-1347, 43], [-1348, 42], [-1359, 42], [-1361, 44], [-1362, 44], [-1366, 41], [-1369, 41], [-1370, 43], [-1371, 43], [-1375, 41], [-1378, 41], [-1385, 48], [-1385, 49], [-1383, 51], [-1383, 53], [-1384, 54], [-1384, 55], [-1381, 58], [-1380, 58], [-1379, 59], [-1380, 60], [-1380, 61], [-1377, 64], [-1377, 66], [-1376, 68], [-1372, 71], [-1370, 72], [-1370, 73], [-1375, 73], [-1376, 74], [-1379, 74], [-1380, 75], [-1381, 75], [-1389, 83], [-1389, 86], [-1390, 87], [-1390, 90], [-1387, 93], [-1386, 94], [-1382, 94], [-1382, 95], [-1379, 98], [-1378, 98], [-1377, 99], [-1372, 99], [-1371, 98], [-1368, 98], [-1367, 97], [-1366, 97], [-1365, 96], [-1361, 96], [-1359, 97], [-1358, 97], [-1357, 96], [-1352, 94], [-1349, 94], [-1346, 96], [-1342, 96], [-1339, 93], [-1335, 91], [-1332, 92], [-1331, 94], [-1330, 96], [-1328, 98], [-1324, 100], [-1320, 100], [-1320, 83], [-1298, 83]]}, "center": {"231-258": [-1346, 70]}}, -{"id": 3790, "name": "Parrot Dash", "description": "Parrot Dash is a Twitch streamer, who mostly plays modded Celeste maps. They are known for their hard clears, and deathless challenges. The bird is a depiction of their IRL pet, Nalu.", "links": {"website": ["https://twitch.tv/parrot_dash"], "discord": ["parrotdash"]}, "path": {"250-258": [[-552, -245], [-551, -245], [-550, -245], [-549, -245], [-549, -244], [-548, -244], [-548, -243], [-547, -243], [-546, -243], [-546, -242], [-546, -241], [-547, -241], [-547, -240], [-547, -241], [-548, -241], [-549, -241], [-549, -240], [-549, -239], [-549, -237], [-549, -236], [-550, -237], [-550, -236], [-551, -236], [-551, -235], [-551, -234], [-550, -233], [-552, -233], [-553, -233], [-556, -233], [-556, -232], [-556, -231], [-557, -232], [-557, -233], [-557, -234], [-559, -234], [-559, -235], [-560, -235], [-559, -236], [-558, -236], [-557, -237], [-556, -238], [-555, -239], [-554, -240], [-554, -241], [-553, -242], [-553, -243], [-552, -244]]}, "center": {"250-258": [-554, -236]}}, -{"id": 3791, "name": "NintenChio", "description": "Es streamer y partner en Twitch. Creadora de contenido enfocada principalmente en videojuegos, fan de Nintendo!", "links": {"website": ["https://www.twitch.tv/nintenchio"], "discord": ["nintenchio"]}, "path": {"250-258": [[357, 999], [357, 984], [360, 984], [360, 981], [366, 981], [366, 984], [412, 984], [412, 995], [387, 995], [387, 999]]}, "center": {"250-258": [365, 991]}}, -{"id": 3792, "name": "Hakui Koyori's test tubes", "description": "Hakui Koyori is a Japanese virtual YouTuber and coyote associated with Hololive as part of its sixth generation \"Secret Society holoX\". She is in charge of research and development and carries around colored test tubes on her original outfit.", "links": {"website": ["https://www.youtube.com/channel/UC6eWCld0KwmyHFbAqK3V-Rw", "https://hololive.hololivepro.com/en/talents/hakui-koyori/", "https://hololivevtuber.fandom.com/wiki/Hakui_Koyori", "https://hololive.wiki/wiki/Hakui_Koyori"], "subreddit": ["hololive", "Hakui_Koyori"], "discord": ["koyorislab", "44FhhAZJr8"]}, "path": {"250-258": [[-560, -269], [-560, -265], [-563, -265], [-563, -269]]}, "center": {"250-258": [-561, -267]}}, -{"id": 3793, "name": "A Strawberry", "description": "The garden strawberry (or simply strawberry) is a widely grown hybrid species of the genus Fragaria, collectively known as the strawberries, which are cultivated worldwide for their fruit. The fruit is widely appreciated for its characteristic aroma, bright red colour, juicy texture, and sweetness. It is consumed in large quantities, either fresh or in such prepared foods as jam, juice, pies, ice cream, milkshakes, and chocolates. Artificial strawberry flavourings and aromas are also widely used in products such as candy, soap, lip gloss, perfume, and many others.\n\nIts close proximity to Nijisanji EN VTuber Selen Tatsuki, who happens to be deathly allergic to the sweet red fruit, is a complete coincidence.", "links": {"website": ["https://www.youtube.com/watch?v=jkhyafoyUI0"], "subreddit": ["strawberry"], "discord": ["selen"]}, "path": {"238-258": [[1210, -850], [1210, -848], [1212, -848], [1212, -847], [1213, -847], [1214, -846], [1214, -842], [1213, -841], [1212, -840], [1211, -839], [1209, -839], [1208, -840], [1207, -841], [1206, -842], [1206, -846], [1207, -847], [1208, -848], [1210, -848]]}, "center": {"238-258": [1210, -844]}}, -{"id": 3794, "name": "Monster Logo", "description": "Monster Energy logo made by French Canadian streamer & Battle Royale Competitive player achillefps, and protected by Venezuela", "links": {"website": ["https://www.twitch.tv/achillefps/"], "subreddit": ["vzla", "placevenezuela"]}, "path": {"171-258": [[-1089, 286], [-1080, 281], [-1075, 285], [-1072, 285], [-1069, 282], [-1066, 285], [-1063, 285], [-1061, 283], [-1059, 283], [-1055, 286], [-1058, 289], [-1058, 305], [-1056, 308], [-1057, 309], [-1057, 318], [-1058, 321], [-1061, 321], [-1061, 304], [-1063, 297], [-1063, 289], [-1064, 287], [-1067, 287], [-1067, 296], [-1066, 297], [-1066, 301], [-1066, 321], [-1071, 321], [-1072, 318], [-1072, 311], [-1071, 302], [-1072, 301], [-1072, 297], [-1071, 296], [-1072, 294], [-1072, 289], [-1074, 287], [-1076, 287], [-1077, 293], [-1077, 299], [-1075, 302], [-1078, 305], [-1076, 307], [-1077, 314], [-1078, 322], [-1081, 321], [-1081, 316], [-1082, 313], [-1082, 298], [-1082, 293], [-1085, 288], [-1088, 287]]}, "center": {"171-258": [-1081, 287]}}, -{"id": 3795, "name": "Noriyaki Kakyoin (Jojo's Part 3)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 3: Stardust Crusaders.\n\nStand: Hierophant Green\n\n\"Nobody can deflect the emerald splash!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1074, -110], [-1074, -115], [-1075, -116], [-1077, -116], [-1079, -115], [-1080, -112], [-1078, -110], [-1077, -109], [-1075, -109]]}, "center": {"250-258": [-1077, -113]}}, +{"id": 3776, "name": "Fish Ball Cast", "description": "The \"Fish Ball Cast\" is a Brazilian podcast that originated on the longplays and humor channel called JogandoFoddaci. From youtubers and streamers Gemaplys, Saiko and Carteiro Cósmico,\nthis podcast is a sequel to another old podcast from the same channel entitled \"Flowdaci Podcrê\" which has been discontinued.\n\nThe name of the podcast comes from the adaptation of a Brazilian pun where the words fish, ball and cat, if pronounced quickly with a Brazilian accent, sounds like \"I made a bl*wjob\". The change to the name of the podcast is that the \"cat\" was changed to \"cast\", implying the sound of faux professionalism.\n\nThe mascots represented in the podcast are a fish, a ball and a microphone.\n\n(For the ball design, a deal was made with r/Brasil to use the volleyball above to represent one of the podcast's mascots! <3)", "links": {"website": ["https://www.youtube.com/@jogandofoddaci"], "subreddit": ["JogandoFoddaci"]}, "path": {"214-258, T": [[149, 596], [149, 583], [149, 559], [175, 559], [175, 596]]}, "center": {"214-258, T": [162, 578]}}, +{"id": 3777, "name": "Aether & Lumine", "description": "Aether and Lumine from the game Genshin Impact. \n\nThe main characters of the game. You get to choose to play as one of them when you start your journey. Also known as the Traveler.", "links": {"website": ["https://genshin.hoyoverse.com/en/home"], "subreddit": ["Genshin_Impact", "TravelerMains"]}, "path": {"41-258, T": [[0, 322], [0, 321], [-1, 320], [-1, 312], [1, 312], [-6, 305], [-6, 304], [-7, 304], [-7, 299], [-8, 298], [-8, 297], [-9, 297], [-9, 295], [-10, 294], [-11, 294], [-12, 294], [-12, 292], [-13, 291], [-15, 289], [-17, 289], [-17, 288], [-18, 287], [-18, 286], [-15, 283], [-14, 282], [-12, 282], [-11, 280], [-10, 279], [-10, 276], [-9, 275], [-8, 274], [-9, 273], [-9, 270], [-10, 270], [-10, 267], [-11, 267], [-11, 265], [-16, 260], [-17, 260], [-18, 260], [-18, 258], [-19, 258], [-19, 257], [-20, 257], [-20, 260], [-25, 260], [-25, 261], [-28, 261], [-31, 264], [-33, 264], [-33, 265], [-34, 266], [-34, 269], [-36, 269], [-37, 270], [-35, 270], [-35, 272], [-36, 272], [-36, 273], [-37, 274], [-35, 274], [-34, 275], [-35, 276], [-34, 277], [-34, 278], [-33, 280], [-32, 282], [-31, 283], [-30, 284], [-31, 285], [-37, 291], [-37, 292], [-38, 293], [-39, 294], [-40, 295], [-42, 295], [-42, 294], [-44, 292], [-46, 292], [-46, 291], [-48, 291], [-48, 290], [-54, 290], [-54, 291], [-56, 291], [-58, 292], [-58, 293], [-60, 293], [-61, 294], [-64, 297], [-65, 298], [-65, 300], [-66, 300], [-67, 305], [-66, 307], [-65, 309], [-66, 309], [-66, 310], [-67, 311], [-66, 311], [-66, 312], [-65, 313], [-63, 314], [-62, 313], [-62, 315], [-61, 317], [-60, 319], [-59, 320], [-58, 322], [-59, 324], [-61, 326], [-65, 327], [-66, 331], [-67, 334], [-69, 336], [-68, 340], [-68, 342], [-69, 344], [-69, 348], [-68, 350], [-65, 350], [-62, 350], [-60, 348], [-58, 348], [-56, 347], [-54, 347], [-55, 342], [-56, 342], [-56, 339], [-55, 339], [-55, 338], [-53, 338], [-50, 338], [-51, 336], [-47, 336], [-47, 337], [-43, 337], [-42, 340], [-41, 342], [-40, 337], [-11, 337], [-11, 331], [-11, 326], [-7, 323], [-1, 322]]}, "center": {"41-258, T": [-30, 315]}}, +{"id": 3778, "name": "TOFLANNSMP", "description": "A small SMP created by @MICH_FANARTS late 2022 in which players are exclusively artist's and roleplayer's; we wanted to leave our little in there-which stands for , as a memento of our adventures and roleplay.", "links": {}, "path": {"250-258, T": [[1491, 517], [1491, 520], [1491, 523], [1491, 524], [1491, 525], [1493, 525], [1494, 525], [1497, 525], [1499, 525], [1500, 524], [1500, 522], [1499, 520], [1499, 518], [1499, 517]]}, "center": {"250-258, T": [1495, 521]}}, +{"id": 3779, "name": "Dragonspine", "description": "Dragonspine. A beautiful snowy mountain that was a part of the first map update. An iconic location from the game Genshin Impact. \n\nGo listen to the soundtrack.\n(linked below)", "links": {"website": ["https://youtu.be/n_-9mrBMLA8?si=W44mhn8Fm3uXK545&t=93", "https://genshin.hoyoverse.com/en/home"], "subreddit": ["Genshin_Impact"]}, "path": {"180-258, T": [[-94, 313], [-93, 312], [-92, 311], [-92, 310], [-91, 310], [-90, 309], [-89, 308], [-88, 307], [-87, 306], [-86, 305], [-85, 304], [-79, 298], [-84, 296], [-84, 292], [-85, 292], [-85, 290], [-83, 288], [-82, 287], [-79, 287], [-79, 285], [-76, 285], [-76, 287], [-73, 287], [-73, 288], [-71, 289], [-70, 291], [-72, 294], [-76, 299], [-75, 300], [-68, 306], [-68, 311], [-65, 314], [-64, 314], [-63, 315], [-64, 315], [-65, 315], [-65, 316], [-67, 317], [-68, 318], [-69, 318], [-70, 320], [-70, 322], [-69, 322], [-68, 323], [-68, 324], [-67, 325], [-67, 326], [-67, 327], [-68, 327], [-68, 329], [-75, 329], [-75, 328], [-80, 328], [-80, 325], [-81, 325], [-83, 323], [-86, 323], [-87, 325], [-88, 325], [-88, 326], [-92, 326], [-93, 325], [-94, 325]]}, "center": {"180-258, T": [-79, 313]}}, +{"id": 3780, "name": "Yae Miko (fox form)", "description": "The fox form of the character Yae Miko from Genshin Impact. She finally climbed back on the logo went back to sleep after The Flip happened.", "links": {"website": ["https://genshin.hoyoverse.com/en/home", "https://youtu.be/4yFiBhNIWYo?si=XkX8BaPICvUvQXf8"], "subreddit": ["Genshin_Impact", "YaeMiko"]}, "path": {"120-162": [[-81, 264], [-80, 263], [-80, 261], [-77, 258], [-76, 258], [-75, 257], [-70, 257], [-69, 258], [-68, 258], [-65, 261], [-65, 263], [-64, 264], [-65, 265], [-67, 265], [-67, 270], [-69, 270], [-69, 279], [-70, 280], [-70, 284], [-72, 284], [-74, 282], [-74, 280], [-76, 280], [-76, 266], [-78, 266], [-78, 265], [-81, 265]], "163-258, T": [[-72, 266], [-83, 266], [-83, 264], [-82, 264], [-82, 263], [-83, 262], [-84, 261], [-85, 261], [-86, 262], [-87, 261], [-86, 260], [-86, 258], [-85, 257], [-82, 254], [-74, 254], [-70, 258], [-70, 260], [-69, 261], [-69, 262], [-68, 262], [-67, 263], [-66, 264], [-66, 267], [-68, 269], [-71, 269], [-71, 266], [-72, 266], [-72, 265]]}, "center": {"120-162": [-72, 263], "163-258, T": [-76, 260]}}, +{"id": 3781, "name": "Acronym of JogandoFoddaci", "description": "This box is the acronym of the longplays channel called \"JogandoFoddaci\", which is also the miniatures of the channel during the videos. The JogandoFoddaci channel is a humorous longplays channel made up of great brazilian youtubers and streamers: Saiko, Gemaplys and Carteiro Cósmico.", "links": {"website": ["https://www.youtube.com/@jogandofoddaci"], "subreddit": ["JogandoFoddaci"]}, "path": {"155-258, T": [[146, 500], [146, 487], [160, 487], [160, 500]]}, "center": {"155-258, T": [153, 494]}}, +{"id": 3782, "name": "Kamisato Ayaka", "description": "The character Ayaka from the game Genshin Impact. She is a 5-star Cryo sword user.", "links": {"website": ["https://genshin.hoyoverse.com/en/home", "https://youtu.be/5RCsr1Y8UZA?si=9LLzq9rJWPf85VR0"], "subreddit": ["Genshin_Impact", "AyakaMains"]}, "path": {"177-258, T": [[-54, 357], [-54, 353], [-53, 348], [-54, 347], [-54, 342], [-55, 341], [-55, 340], [-54, 339], [-54, 338], [-51, 338], [-50, 337], [-48, 337], [-47, 338], [-43, 341], [-42, 342], [-42, 352], [-43, 353], [-44, 353], [-45, 355], [-45, 356], [-45, 357], [-53, 357], [-53, 356], [-53, 353], [-54, 349], [-53, 349], [-54, 349]]}, "center": {"177-258, T": [-48, 345]}}, +{"id": 3783, "name": "33", "description": "Tribute to Spanish F1 driver Fernando Alonso, also nicknamed \"El nano\" or \"Magic Alonso\". \nAlonso has 32 wins in F1 and the victory number 33 has been memes for quite some time in all kind of social networks and by Alonso himself.\nThe creator of this meme is a twitter user names \"Nanosecso\" and that's why we can see it written down in the canvas.", "links": {"website": ["https://twitter.com/Nanosecso"]}, "path": {"61-82": [[357, -63], [379, -63], [379, -55], [357, -55], [357, -60]], "83-97": [[351, -69], [378, -69], [376, -64], [378, -62], [378, -55], [357, -55], [351, -63]], "98-110": [[352, -69], [393, -69], [397, -65], [418, -63], [417, -55], [379, -55], [378, -48], [352, -48]], "111-120": [[351, -69], [417, -69], [417, -48], [351, -48]], "132-142": [[369, -63], [396, -63], [396, -55], [369, -55]], "148-258, T": [[352, -64], [377, -64], [377, -48], [352, -48]]}, "center": {"61-82": [368, -59], "83-97": [365, -62], "98-110": [363, -58], "111-120": [384, -58], "132-142": [383, -59], "148-258, T": [365, -56]}}, +{"id": 3784, "name": "Belcher Family from Bob's Burgers", "description": "Tina, Gene, Louise, Linda and Bob Belcher from the Fox animated sitcom Bob's Burgers. Created by the users of r/bobsburgers", "links": {"subreddit": ["bobsburgers"], "discord": ["DFEJKHvmpp"]}, "path": {"240-258, T": [[-1207, 502], [-1252, 502], [-1251, 510], [-1206, 510], [-1206, 502]]}, "center": {"240-258, T": [-1229, 506]}}, +{"id": 3785, "name": "Mudkip", "description": "Mudkip is a Pokémon who first appeared in the third generation of Pokémon Games. Mudkip is a small, quadrupedal amphibious Pokémon that resembles mudskipper fishes and axolotls.", "links": {"website": ["http://pokemon.com/"], "subreddit": ["pokemon"], "discord": ["pokemon"]}, "path": {"250-258, T": [[-1247, 337], [-1247, 339], [-1244, 340], [-1240, 341], [-1239, 339], [-1236, 341], [-1234, 337], [-1232, 335], [-1231, 333], [-1232, 330], [-1236, 327], [-1237, 324], [-1240, 323], [-1242, 327], [-1244, 330], [-1248, 327], [-1250, 328], [-1250, 334]]}, "center": {"250-258, T": [-1238, 333]}}, +{"id": 3786, "name": "Santa Fe", "description": "Santa Fe​ es una de las veintitrés provincias que integran la República Argentina.", "links": {}, "path": {"250-258, T": [[371, -889], [377, -889], [378, -890], [379, -891], [380, -892], [380, -893], [381, -893], [382, -892], [383, -891], [384, -892], [385, -893], [384, -894], [383, -895], [383, -896], [383, -897], [384, -898], [384, -899], [385, -900], [385, -901], [385, -902], [386, -902], [386, -905], [387, -906], [388, -907], [388, -913], [387, -914], [382, -914], [378, -914], [378, -909], [377, -909], [377, -902], [376, -902], [376, -898], [377, -897], [377, -896], [376, -895], [375, -894], [374, -893], [373, -892], [372, -891], [371, -890]]}, "center": {"250-258, T": [383, -909]}}, +{"id": 3787, "name": "Tortilla Land", "description": "Arte creado por seguidores de la serie Tortilla Land \nEs un evento en Minecraft ideado por los creadores de contenido Perxitaa y Auronplay y crado ppr JaviDMr10 y HeberonYT(Kland y plantea vegetta)", "links": {}, "path": {"250-258, T": [[126, 597], [129, 645], [146, 646], [145, 663], [93, 662], [92, 626], [55, 625], [55, 616], [88, 615], [89, 597]]}, "center": {"250-258, T": [108, 616]}}, +{"id": 3788, "name": "Carrot Farm", "description": "This carrot farm is composed of : two carrots, 2 ankylosaurus from r/ankmemes, one pineapple, flowers, a shark tooth near r/crochet, another shark tooth near the void, a cat at the bottom of charizard's pokemon card, a big shrimp on the right of the farm, a baby shrimp who didn't make it in the final canvas at the right of the big shrimp, we also have 2 carrots and a duck few pixels north in O Carente and a last carrot in the top right of O Carente.\n\nThis is the 8th place the farm settled. The first farm was wiped by Argentina while they were fighting Portugal. Then by Paraguay. They again Argentina when we moved. Then Turkey when we moved again. Then pixel spaces next to osu wiped us. Then O Carente wiped us. Then we were wiped again. And this is the last farm that holds in place thanks to the help of the bronies from My Little Pony who gave us some space on their canvas for us to make a first carrot. We then made a pineapple than was wiped with us when Cellbit's monster came and then we negociated with Portugal to have a shrimp, they loved the idea but found it too big. So we changed the template of our shrimp to match some unused space around O Carente.\n\nWe are so proud of ourselves and of what we made, this is our 3rd r/place.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C"]}, "path": {"165-258, T": [[532, 807], [510, 824], [500, 828], [501, 808], [537, 755], [548, 738], [543, 737], [530, 751], [528, 744], [538, 732], [535, 728], [514, 744], [516, 748], [510, 751], [514, 758], [519, 760], [525, 758], [545, 741], [520, 777], [499, 795], [499, 809], [497, 816], [500, 830], [500, 841], [502, 840], [505, 840], [508, 834], [519, 834], [521, 838], [519, 843], [517, 846], [514, 851], [517, 851], [528, 846], [528, 844], [534, 844], [531, 841], [533, 837], [535, 836], [534, 802]]}, "center": {"165-258, T": [525, 825]}}, +{"id": 3789, "name": "Princess Twilight Sparkle", "description": "Twilight Sparkle is one of the main ponies (Mane 6) from the TV series My Little Pony: Friendship is Magic, Generation 4 of the My Little Pony series. This art depicts Twilight Sparkle in her future Alicorn form (Princess Twilight Sparkle) as seen in the final episode of My Little Pony: Friendship Is Magic, \"The Last Problem\".", "links": {"website": ["https://mlp.fandom.com/wiki/Twilight_Sparkle"], "subreddit": ["mylittlepony"], "discord": ["bronyplace"]}, "path": {"231-258, T": [[-1298, 82], [-1298, 81], [-1301, 81], [-1303, 80], [-1304, 79], [-1304, 78], [-1302, 75], [-1302, 73], [-1304, 70], [-1310, 67], [-1311, 67], [-1314, 65], [-1316, 61], [-1316, 60], [-1315, 56], [-1314, 55], [-1314, 53], [-1316, 50], [-1321, 45], [-1323, 45], [-1324, 44], [-1328, 44], [-1328, 42], [-1327, 41], [-1327, 38], [-1326, 37], [-1327, 36], [-1328, 37], [-1332, 44], [-1335, 44], [-1335, 43], [-1337, 41], [-1339, 43], [-1339, 45], [-1340, 46], [-1342, 46], [-1344, 44], [-1345, 44], [-1347, 43], [-1348, 42], [-1359, 42], [-1361, 44], [-1362, 44], [-1366, 41], [-1369, 41], [-1370, 43], [-1371, 43], [-1375, 41], [-1378, 41], [-1385, 48], [-1385, 49], [-1383, 51], [-1383, 53], [-1384, 54], [-1384, 55], [-1381, 58], [-1380, 58], [-1379, 59], [-1380, 60], [-1380, 61], [-1377, 64], [-1377, 66], [-1376, 68], [-1372, 71], [-1370, 72], [-1370, 73], [-1375, 73], [-1376, 74], [-1379, 74], [-1380, 75], [-1381, 75], [-1389, 83], [-1389, 86], [-1390, 87], [-1390, 90], [-1387, 93], [-1386, 94], [-1382, 94], [-1382, 95], [-1379, 98], [-1378, 98], [-1377, 99], [-1372, 99], [-1371, 98], [-1368, 98], [-1367, 97], [-1366, 97], [-1365, 96], [-1361, 96], [-1359, 97], [-1358, 97], [-1357, 96], [-1352, 94], [-1349, 94], [-1346, 96], [-1342, 96], [-1339, 93], [-1335, 91], [-1332, 92], [-1331, 94], [-1330, 96], [-1328, 98], [-1324, 100], [-1320, 100], [-1320, 83], [-1298, 83]]}, "center": {"231-258, T": [-1346, 70]}}, +{"id": 3790, "name": "Parrot Dash", "description": "Parrot Dash is a Twitch streamer, who mostly plays modded Celeste maps. They are known for their hard clears, and deathless challenges. The bird is a depiction of their IRL pet, Nalu.", "links": {"website": ["https://twitch.tv/parrot_dash"], "discord": ["parrotdash"]}, "path": {"250-258, T": [[-552, -245], [-551, -245], [-550, -245], [-549, -245], [-549, -244], [-548, -244], [-548, -243], [-547, -243], [-546, -243], [-546, -242], [-546, -241], [-547, -241], [-547, -240], [-547, -241], [-548, -241], [-549, -241], [-549, -240], [-549, -239], [-549, -237], [-549, -236], [-550, -237], [-550, -236], [-551, -236], [-551, -235], [-551, -234], [-550, -233], [-552, -233], [-553, -233], [-556, -233], [-556, -232], [-556, -231], [-557, -232], [-557, -233], [-557, -234], [-559, -234], [-559, -235], [-560, -235], [-559, -236], [-558, -236], [-557, -237], [-556, -238], [-555, -239], [-554, -240], [-554, -241], [-553, -242], [-553, -243], [-552, -244]]}, "center": {"250-258, T": [-554, -236]}}, +{"id": 3791, "name": "NintenChio", "description": "Es streamer y partner en Twitch. Creadora de contenido enfocada principalmente en videojuegos, fan de Nintendo!", "links": {"website": ["https://www.twitch.tv/nintenchio"], "discord": ["nintenchio"]}, "path": {"250-258, T": [[357, 999], [357, 984], [360, 984], [360, 981], [366, 981], [366, 984], [412, 984], [412, 995], [387, 995], [387, 999]]}, "center": {"250-258, T": [365, 991]}}, +{"id": 3792, "name": "Hakui Koyori's test tubes", "description": "Hakui Koyori is a Japanese virtual YouTuber and coyote associated with Hololive as part of its sixth generation \"Secret Society holoX\". She is in charge of research and development and carries around colored test tubes on her original outfit.", "links": {"website": ["https://www.youtube.com/channel/UC6eWCld0KwmyHFbAqK3V-Rw", "https://hololive.hololivepro.com/en/talents/hakui-koyori/", "https://hololivevtuber.fandom.com/wiki/Hakui_Koyori", "https://hololive.wiki/wiki/Hakui_Koyori"], "subreddit": ["hololive", "Hakui_Koyori"], "discord": ["koyorislab", "44FhhAZJr8"]}, "path": {"250-258, T": [[-560, -269], [-560, -265], [-563, -265], [-563, -269]]}, "center": {"250-258, T": [-561, -267]}}, +{"id": 3793, "name": "A Strawberry", "description": "The garden strawberry (or simply strawberry) is a widely grown hybrid species of the genus Fragaria, collectively known as the strawberries, which are cultivated worldwide for their fruit. The fruit is widely appreciated for its characteristic aroma, bright red colour, juicy texture, and sweetness. It is consumed in large quantities, either fresh or in such prepared foods as jam, juice, pies, ice cream, milkshakes, and chocolates. Artificial strawberry flavourings and aromas are also widely used in products such as candy, soap, lip gloss, perfume, and many others.\n\nIts close proximity to Nijisanji EN VTuber Selen Tatsuki, who happens to be deathly allergic to the sweet red fruit, is a complete coincidence.", "links": {"website": ["https://www.youtube.com/watch?v=jkhyafoyUI0"], "subreddit": ["strawberry"], "discord": ["selen"]}, "path": {"238-258, T": [[1210, -850], [1210, -848], [1212, -848], [1212, -847], [1213, -847], [1214, -846], [1214, -842], [1213, -841], [1212, -840], [1211, -839], [1209, -839], [1208, -840], [1207, -841], [1206, -842], [1206, -846], [1207, -847], [1208, -848], [1210, -848]]}, "center": {"238-258, T": [1210, -844]}}, +{"id": 3794, "name": "Monster Logo", "description": "Monster Energy logo made by French Canadian streamer & Battle Royale Competitive player achillefps, and protected by Venezuela", "links": {"website": ["https://www.twitch.tv/achillefps/"], "subreddit": ["vzla", "placevenezuela"]}, "path": {"171-258, T": [[-1089, 286], [-1080, 281], [-1075, 285], [-1072, 285], [-1069, 282], [-1066, 285], [-1063, 285], [-1061, 283], [-1059, 283], [-1055, 286], [-1058, 289], [-1058, 305], [-1056, 308], [-1057, 309], [-1057, 318], [-1058, 321], [-1061, 321], [-1061, 304], [-1063, 297], [-1063, 289], [-1064, 287], [-1067, 287], [-1067, 296], [-1066, 297], [-1066, 301], [-1066, 321], [-1071, 321], [-1072, 318], [-1072, 311], [-1071, 302], [-1072, 301], [-1072, 297], [-1071, 296], [-1072, 294], [-1072, 289], [-1074, 287], [-1076, 287], [-1077, 293], [-1077, 299], [-1075, 302], [-1078, 305], [-1076, 307], [-1077, 314], [-1078, 322], [-1081, 321], [-1081, 316], [-1082, 313], [-1082, 298], [-1082, 293], [-1085, 288], [-1088, 287]]}, "center": {"171-258, T": [-1081, 287]}}, +{"id": 3795, "name": "Noriyaki Kakyoin (Jojo's Part 3)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 3: Stardust Crusaders.\n\nStand: Hierophant Green\n\n\"Nobody can deflect the emerald splash!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1074, -110], [-1074, -115], [-1075, -116], [-1077, -116], [-1079, -115], [-1080, -112], [-1078, -110], [-1077, -109], [-1075, -109]]}, "center": {"250-258, T": [-1077, -113]}}, {"id": 3796, "name": "Patito", "description": "Emote of the Mexican streamer PattyMeza, the duck is the representative mascot of her community.", "links": {"website": ["https://www.twitch.tv/pattymeza"]}, "path": {"252": [[-1195, -617], [-1192, -620], [-1187, -629], [-1192, -646], [-1184, -655], [-1176, -659], [-1159, -660], [-1148, -653], [-1142, -643], [-1143, -636], [-1149, -627], [-1146, -625], [-1146, -621], [-1148, -619], [-1145, -612], [-1194, -611]]}, "center": {"252": [-1167, -638]}}, -{"id": 3797, "name": "Gia - Zein", "description": "Mmm... rosas, tssss, rosa pa ti, rosa pa mi, zeinRosa zeinRosa", "links": {"website": ["https://www.twitch.tv/elzeein", "https://www.twitch.tv/deargia"]}, "path": {"250-258": [[-1011, -648], [-1011, -654], [-1014, -654], [-1016, -657], [-1013, -658], [-1012, -659], [-1015, -662], [-1015, -668], [-1011, -671], [-1008, -671], [-1003, -668], [-1003, -666], [-1004, -662], [-1008, -659], [-1008, -657], [-1003, -657], [-1004, -657], [-1003, -656], [-1009, -651], [-1009, -648]]}, "center": {"250-258": [-1009, -665]}}, -{"id": 3798, "name": "EFFZEH", "description": "Hashtag or nickname of the soccer club 1. FC Köln from Cologne, Germany, which is used on their social media, on merchandise and used by their fans. \n\nPlaced in a cloud of the painting \"Der Wanderer\"", "links": {"website": ["https://fc.de/", "https://en.wikipedia.org/wiki/1._FC_Köln"], "subreddit": ["effzeh"]}, "path": {"211-258": [[-108, 624], [-88, 624], [-88, 629], [-88, 630], [-108, 630]]}, "center": {"211-258": [-98, 627]}}, +{"id": 3797, "name": "Gia - Zein", "description": "Mmm... rosas, tssss, rosa pa ti, rosa pa mi, zeinRosa zeinRosa", "links": {"website": ["https://www.twitch.tv/elzeein", "https://www.twitch.tv/deargia"]}, "path": {"250-258, T": [[-1011, -648], [-1011, -654], [-1014, -654], [-1016, -657], [-1013, -658], [-1012, -659], [-1015, -662], [-1015, -668], [-1011, -671], [-1008, -671], [-1003, -668], [-1003, -666], [-1004, -662], [-1008, -659], [-1008, -657], [-1003, -657], [-1004, -657], [-1003, -656], [-1009, -651], [-1009, -648]]}, "center": {"250-258, T": [-1009, -665]}}, +{"id": 3798, "name": "EFFZEH", "description": "Hashtag or nickname of the soccer club 1. FC Köln from Cologne, Germany, which is used on their social media, on merchandise and used by their fans. \n\nPlaced in a cloud of the painting \"Der Wanderer\"", "links": {"website": ["https://fc.de/", "https://en.wikipedia.org/wiki/1._FC_Köln"], "subreddit": ["effzeh"]}, "path": {"211-258, T": [[-108, 624], [-88, 624], [-88, 629], [-88, 630], [-108, 630]]}, "center": {"211-258, T": [-98, 627]}}, {"id": 3799, "name": "Muffs", "description": "A well known fictional character prone to appear in Brick-Hill events", "links": {}, "path": {"244-245": [[493, 895], [499, 895], [499, 903], [493, 903]]}, "center": {"244-245": [496, 899]}}, -{"id": 3800, "name": "Motto of Morocco", "description": "This represents the motto of the kingdom of Morocco, written it arabic. \"Allah, Al Watan, Al Malik\" which translates to \"God, the Fatherland, the King\".", "links": {}, "path": {"250-258": [[-518, -305], [-502, -305], [-502, -287], [-518, -287]]}, "center": {"250-258": [-510, -296]}}, -{"id": 3801, "name": "Amazigh flag", "description": "Flag of the indigenous people of the Maghreb in North Africa, the Amazigh (also known as Berbers). The symbol in red represents the 30th letter of their alphabet, which symbolizes the \"Free Man\".", "links": {}, "path": {"99-168": [[-529, -325], [-529, -312], [-521, -312], [-521, -325]], "5-15": [[473, 265], [473, 285], [499, 285], [499, 265]], "169-258": [[-529, -335], [-521, -335], [-521, -322], [-529, -322]]}, "center": {"99-168": [-525, -318], "5-15": [486, 275], "169-258": [-525, -328]}}, -{"id": 3802, "name": "ToflannSMP", "description": "Venden merca", "links": {}, "path": {"250-258": [[1491, 525], [1499, 525], [1500, 517], [1491, 517]]}, "center": {"250-258": [1495, 521]}}, +{"id": 3800, "name": "Motto of Morocco", "description": "This represents the motto of the kingdom of Morocco, written it arabic. \"Allah, Al Watan, Al Malik\" which translates to \"God, the Fatherland, the King\".", "links": {}, "path": {"250-258, T": [[-518, -305], [-502, -305], [-502, -287], [-518, -287]]}, "center": {"250-258, T": [-510, -296]}}, +{"id": 3801, "name": "Amazigh flag", "description": "Flag of the indigenous people of the Maghreb in North Africa, the Amazigh (also known as Berbers). The symbol in red represents the 30th letter of their alphabet, which symbolizes the \"Free Man\".", "links": {}, "path": {"99-168": [[-529, -325], [-529, -312], [-521, -312], [-521, -325]], "5-15": [[473, 265], [473, 285], [499, 285], [499, 265]], "169-258, T": [[-529, -335], [-521, -335], [-521, -322], [-529, -322]]}, "center": {"99-168": [-525, -318], "5-15": [486, 275], "169-258, T": [-525, -328]}}, +{"id": 3802, "name": "ToflannSMP", "description": "Venden merca", "links": {}, "path": {"250-258, T": [[1491, 525], [1499, 525], [1500, 517], [1491, 517]]}, "center": {"250-258, T": [1495, 521]}}, {"id": 3803, "name": "Cavinator1", "description": "The Minecraft player head for Cavinator1: the creator of various Minecraft projects such as: BlazeandCave's Advancement Pack, the Assassin of Steve trilogy, Celestial Protocol, and Dance Floor.", "links": {"website": ["https://www.planetminecraft.com/member/cavinator1/"], "discord": ["blaze-and-cave-419383460600348673"]}, "path": {"161-165": [[358, 970], [365, 970], [365, 963], [358, 963]]}, "center": {"161-165": [362, 967]}}, {"id": 3804, "name": "MichaelMKenny", "description": "The Minecraft player head for MichaelMKenny: who is friends with Cavinator1 (player head below), is part of BlazeandCave, and helps Cavinator1 with his projects.", "links": {"discord": ["blaze-and-cave-419383460600348673"]}, "path": {"122": [[-448, -811], [-441, -811], [-441, -804], [-448, -804]]}, "center": {"122": [-444, -807]}}, {"id": 3805, "name": "RedReader", "description": "RedReader is a third-party Reddit app for Android, notable for being more accessible than many other apps. It was granted an exemption by Reddit to be allowed to operate for free, so the decision was made to replace the icon with Slide. (The icons for other exempted apps, such as Dystopia, were not changed for some reason.)", "links": {"website": ["https://github.com/QuantumBadger/RedReader"], "subreddit": ["RedReader"]}, "path": {"11-15": [[37, 22], [39, 22], [42, 24], [42, 28], [39, 30], [37, 30], [34, 28], [34, 24]]}, "center": {"11-15": [38, 26]}}, -{"id": 3806, "name": "Ookami Mio's hairpin", "description": "Ookami Mio is a Japanese virtual YouTuber and wolf associated with Hololive as part of hololive GAMERS. This is her iconic takuan-shaped hairpin, designed to resemble the glint of a wolf's eye, that she wears with many of her hairstyles.", "links": {"website": ["https://www.youtube.com/channel/UCp-5t9SrOQwXMU7iIjQfARg", "https://hololive.hololivepro.com/en/talents/ookami-mio/", "https://virtualyoutuber.fandom.com/wiki/Ookami_Mio", "https://hololivevtuber.fandom.com/wiki/Ookami_Mio", "https://hololive.wiki/wiki/Ookami_Mio"], "subreddit": ["hololive", "OokamiMio", "Ookami_Mio"], "discord": ["miokawaii"]}, "path": {"250-258": [[-564, -273], [-559, -273], [-559, -272], [-560, -271], [-563, -271], [-564, -272]]}, "center": {"250-258": [-561, -272]}}, -{"id": 3807, "name": "Selen Tatsuki", "description": "A pixel art of Selen Tatsuki from Nijisanji English's Obsydia Wave.", "links": {"subreddit": ["Nijisanji"], "discord": ["vtubersplace"]}, "path": {"250-258": [[1207, -863], [1227, -863], [1227, -846], [1215, -846], [1214, -847], [1213, -847], [1213, -848], [1212, -849], [1211, -849], [1211, -851], [1210, -851], [1209, -851], [1209, -849], [1207, -849]]}, "center": {"250-258": [1218, -855]}}, -{"id": 3808, "name": "Risunut", "description": "The Risunut is an inside joke tied to the hololive VTuber Ayunda Risu, a member of HoloID Gen1. As Risu is a squirrel VTuber, this art depicts her inside a nut and refers to the \"Nonstop Nut November\" challenge that Risu created as a parody of the internet meme, \"No Nut November.\" This drawing was created and placed here by the VTubers Place Discord community as a measure to prevent people from drawing male genitals on YAGOO (depicted behind this artwork).", "links": {"discord": ["VTubersPlace"]}, "path": {"250-258": [[-110, -794], [-110, -795], [-110, -801], [-110, -807], [-101, -813], [-93, -812], [-89, -811], [-87, -809], [-80, -810], [-80, -808], [-84, -804], [-85, -796], [-85, -794], [-96, -794]]}, "center": {"250-258": [-97, -803]}}, +{"id": 3806, "name": "Ookami Mio's hairpin", "description": "Ookami Mio is a Japanese virtual YouTuber and wolf associated with Hololive as part of hololive GAMERS. This is her iconic takuan-shaped hairpin, designed to resemble the glint of a wolf's eye, that she wears with many of her hairstyles.", "links": {"website": ["https://www.youtube.com/channel/UCp-5t9SrOQwXMU7iIjQfARg", "https://hololive.hololivepro.com/en/talents/ookami-mio/", "https://virtualyoutuber.fandom.com/wiki/Ookami_Mio", "https://hololivevtuber.fandom.com/wiki/Ookami_Mio", "https://hololive.wiki/wiki/Ookami_Mio"], "subreddit": ["hololive", "OokamiMio", "Ookami_Mio"], "discord": ["miokawaii"]}, "path": {"250-258, T": [[-564, -273], [-559, -273], [-559, -272], [-560, -271], [-563, -271], [-564, -272]]}, "center": {"250-258, T": [-561, -272]}}, +{"id": 3807, "name": "Selen Tatsuki", "description": "A pixel art of Selen Tatsuki from Nijisanji English's Obsydia Wave.", "links": {"subreddit": ["Nijisanji"], "discord": ["vtubersplace"]}, "path": {"250-258, T": [[1207, -863], [1227, -863], [1227, -846], [1215, -846], [1214, -847], [1213, -847], [1213, -848], [1212, -849], [1211, -849], [1211, -851], [1210, -851], [1209, -851], [1209, -849], [1207, -849]]}, "center": {"250-258, T": [1218, -855]}}, +{"id": 3808, "name": "Risunut", "description": "The Risunut is an inside joke tied to the hololive VTuber Ayunda Risu, a member of HoloID Gen1. As Risu is a squirrel VTuber, this art depicts her inside a nut and refers to the \"Nonstop Nut November\" challenge that Risu created as a parody of the internet meme, \"No Nut November.\" This drawing was created and placed here by the VTubers Place Discord community as a measure to prevent people from drawing male genitals on YAGOO (depicted behind this artwork).", "links": {"discord": ["VTubersPlace"]}, "path": {"250-258, T": [[-110, -794], [-110, -795], [-110, -801], [-110, -807], [-101, -813], [-93, -812], [-89, -811], [-87, -809], [-80, -810], [-80, -808], [-84, -804], [-85, -796], [-85, -794], [-96, -794]]}, "center": {"250-258, T": [-97, -803]}}, {"id": 3809, "name": "Bandera de Ecuador", "description": "Bandera del Ecuador, considerada la primera en sobrevivir varios días", "links": {"website": ["https://es.wikipedia.org/wiki/Bandera_de_Ecuador"], "subreddit": ["placeecuador"], "discord": ["PbZQnzpYWj"]}, "path": {"161": [[257, -139], [252, -141], [278, -141], [278, -135], [252, -135], [252, -140], [252, -141]]}, "center": {"161": [265, -138]}}, -{"id": 3810, "name": "The Atlas Lion", "description": "This represents the Atlas Lion, also known as Barbary Lion, which is the national animal of Morocco.", "links": {}, "path": {"250-258": [[804, 640], [804, 589], [851, 589], [851, 606], [856, 606], [856, 640]]}, "center": {"250-258": [829, 615]}}, -{"id": 3811, "name": "Team Snake Bite", "description": "Team Snake Bite (TSB) consists of Selen Tatsuki (Right) from Nijisanji English, Axel Syrios (Middle) and Regis Altare (Left) from Holostars English.\n\nTSB was their team name for VSaikyo Season 5 because of a question during one of their practice streams that escalated into a whole discussion of helping your homies out from a snakebite on... let's call it a man's intimate area.\n\nAfter the tournament, they decided to stick with the name as their collaboration unit name.\n\nNow, the most important question is:\nWould you help a homie out?", "links": {"subreddit": ["Hololive", "Nijisanji"], "discord": ["vtubersplace"]}, "path": {"250-258": [[-155, -749], [-155, -752], [-154, -753], [-155, -754], [-152, -757], [-144, -757], [-143, -758], [-141, -756], [-141, -760], [-140, -761], [-140, -762], [-141, -763], [-142, -764], [-141, -765], [-140, -766], [-140, -767], [-142, -767], [-141, -770], [-140, -770], [-139, -769], [-138, -769], [-139, -774], [-122, -774], [-122, -767], [-123, -766], [-121, -764], [-122, -763], [-123, -762], [-123, -761], [-122, -760], [-122, -759], [-117, -769], [-117, -768], [-115, -768], [-114, -767], [-107, -767], [-106, -768], [-105, -768], [-104, -769], [-104, -768], [-105, -767], [-105, -764], [-104, -763], [-104, -761], [-105, -760], [-106, -759], [-106, -757], [-105, -756], [-105, -755], [-104, -754], [-104, -751], [-105, -750], [-105, -749], [-104, -748], [-104, -747], [-117, -747], [-117, -748], [-116, -749], [-116, -750], [-117, -751], [-117, -754], [-116, -755], [-116, -756], [-115, -757], [-122, -759], [-123, -759], [-124, -760], [-125, -760], [-126, -760], [-127, -760], [-128, -759], [-129, -758], [-130, -758], [-131, -757], [-132, -758], [-133, -759], [-137, -759], [-137, -758], [-138, -758], [-139, -757], [-140, -756], [-141, -756], [-141, -751], [-140, -750], [-140, -749], [-141, -748], [-142, -747], [-152, -747]]}, "center": {"250-258": [-131, -766]}}, -{"id": 3812, "name": "Flag of Turkey", "description": "An icon representing the flag of the Republic of Turkey (Türkiye), a country in Southeastern Europe and Western Asia.\n\nOriginally Turkey invaded the start button at the bottom left of the taskbar, but later moved to this spot, which was intended to belong to BaconReader, a third-party Reddit client app for Apple devices. As Turkey did not have permission to be here, the taskbar community continually attempted to stop Turkey and restore BaconReader. However, in the final moments of the canvas, the community shifted to protecting the Start button.", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://discord.com/channels/297922153750200322/1132769645334630420/1133427389033099314", "https://discord.com/channels/297922153750200322/1132769645334630420/1133430893856432239", "https://cdn.discordapp.com/attachments/1131630764388257822/1132257003012620298/v4-3000.png"], "discord": ["XcBujggwty"]}, "path": {"236-258": [[-1226, 976], [-1229, 979], [-1229, 990], [-1226, 993], [-1215, 993], [-1212, 990], [-1212, 979], [-1215, 976]]}, "center": {"236-258": [-1220, 985]}}, -{"id": 3813, "name": "TOFLANNSMP", "description": "Venden merca", "links": {}, "path": {"250-258": [[1494, 519], [1493, 523], [1494, 524], [1492, 519], [1491, 524], [1492, 525], [1492, 519], [1491, 517], [1496, 517], [1497, 518], [1499, 520], [1496, 524], [1496, 520], [1496, 525], [1499, 521], [1498, 525], [1499, 526], [1497, 525], [1496, 525], [1494, 524], [1498, 521], [1499, 519], [1499, 517], [1497, 518], [1495, 522], [1495, 523], [1494, 520], [1492, 524], [1492, 519], [1491, 523], [1492, 525], [1495, 524], [1493, 525], [1491, 520], [1498, 518]]}, "center": {"250-258": [1493, 518]}}, -{"id": 3814, "name": "Kansas City Chiefs", "description": "The Kansas City Chiefs are a professional American football team based in Kansas City, Missouri, United States. The arrowhead is the team logo, which is embellished by yellow and red, the team colors. In addition, their three Super Bowl victories are represented with IV and LIV in the top left, and LVII above the arrowhead. PM15 in the upper right represents the team's star quarterback, Patrick Mahomes II, who wears number 15.", "links": {"website": ["https://en.wikipedia.org/wiki/Kansas_City_Chiefs"], "subreddit": ["KansasCityChiefs"], "discord": ["chiefs"]}, "path": {"250-258": [[1467, -147], [1467, -165], [1480, -165], [1480, -159], [1499, -159], [1499, -127], [1481, -127], [1481, -147]]}, "center": {"250-258": [1490, -150]}}, -{"id": 3815, "name": "Funny Valentine (Jojo's Part 7)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 7: Steel Ball Run.\n\nStand: Dirty Deeds Done Dirt Cheap\n\n\"My heart and actions are utterly unclouded. They are all those of \"Justice.\" \"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1080, -94], [-1081, -97], [-1082, -98], [-1084, -98], [-1086, -94], [-1085, -90], [-1082, -90], [-1081, -92]]}, "center": {"250-258": [-1083, -94]}}, -{"id": 3816, "name": "Bandera de Nicaragua", "description": "La bandera de Nicaragua, la Tierra de Lagos y Volcanes, con su respectivo Pájaro Nacional \"El Guardabarranco\" adornado con la Flor Nacional \"La Flor de Sacuanjoche\", en el medio el Escudo de Armas de la República de Nicaragua", "links": {"subreddit": ["Nicargua"]}, "path": {"220-258": [[-1331, 745], [-1331, 759], [-1265, 758], [-1265, 744]]}, "center": {"220-258": [-1298, 752]}}, -{"id": 3817, "name": "OmegaCritico", "description": "Minecraft skin of the famous Youtuber, Streamer, Critic, Handsome, lycanthrope, Playboy, Philosopher, Argentine \"OmegaCritico\", Founder of MiMundoFrito and CEO of \"QUEASCO\" \"AAAA\" and associates, Pioneer in the Critical Industry", "links": {"website": ["https://www.twitch.tv/omegacritico?sr=a"]}, "path": {"173-258": [[-1046, -296], [-1046, -282], [-1031, -281], [-1031, -296]]}, "center": {"173-258": [-1038, -289]}}, -{"id": 3818, "name": "AgenteMaxo", "description": "Creado por la comunidad de Maximus\n\nMaximus es un youtube y streamer conocido por sus videos de Fornite, Overwatch, Minecraft. SapoPeta en Karmaland V.\n\nCreador Español", "links": {"website": ["https://www.twitch.tv/agentemaxo"]}, "path": {"250-258": [[109, 614], [125, 614], [127, 636], [110, 636]]}, "center": {"250-258": [118, 625]}}, -{"id": 3819, "name": "Dragonvale", "description": "Dragonvale is a 2011 mobile game with a still active community. Raise and care for your own magical dragons in DragonVale! Create a park full of adorable and friendly dragons by hatching them, feeding them, and watching them grow up. Share your dragon land with your friends and help each other with gifts.", "links": {"website": ["https://en.wikipedia.org/wiki/DragonVale"], "subreddit": ["dragonvale"]}, "path": {"189-258": [[-41, 913], [-36, 913], [-36, 914], [-34, 914], [-34, 915], [-33, 915], [-33, 917], [-32, 917], [-32, 924], [-33, 924], [-33, 925], [-35, 925], [-35, 926], [-37, 926], [-37, 927], [-40, 927], [-40, 926], [-42, 926], [-42, 925], [-44, 925], [-44, 924], [-45, 924], [-45, 917], [-44, 917], [-44, 915], [-43, 915], [-43, 914], [-41, 914]]}, "center": {"189-258": [-38, 920]}}, -{"id": 3820, "name": "Rubckity", "description": "Rubckity is a fictional ship based on two Minecraft characters of streamers Rubius and Quackity. It originated from the 'Squid Craft Games 1' event, where both characters died together for the first time. The catchphrase associated with Rubckity is 'You and me until the end.' Fans believe that these characters are destined to reunite and die together in all Minecraft universes where they meet.", "links": {}, "path": {"201-259": [[779, 424], [779, 405], [764, 405], [764, 424]]}, "center": {"201-259": [772, 415]}}, -{"id": 3821, "name": "Blurryfish", "description": "One of two fish built to show the alliance between r/twentyonepilots and r/placefishcult", "links": {"subreddit": ["twentyonepilots", "PlaceFishCult"]}, "path": {"136-252": [[478, -302], [481, -302], [481, -300], [478, -300]]}, "center": {"136-252": [480, -301]}}, +{"id": 3810, "name": "The Atlas Lion", "description": "This represents the Atlas Lion, also known as Barbary Lion, which is the national animal of Morocco.", "links": {}, "path": {"250-258, T": [[804, 640], [804, 589], [851, 589], [851, 606], [856, 606], [856, 640]]}, "center": {"250-258, T": [829, 615]}}, +{"id": 3811, "name": "Team Snake Bite", "description": "Team Snake Bite (TSB) consists of Selen Tatsuki (Right) from Nijisanji English, Axel Syrios (Middle) and Regis Altare (Left) from Holostars English.\n\nTSB was their team name for VSaikyo Season 5 because of a question during one of their practice streams that escalated into a whole discussion of helping your homies out from a snakebite on... let's call it a man's intimate area.\n\nAfter the tournament, they decided to stick with the name as their collaboration unit name.\n\nNow, the most important question is:\nWould you help a homie out?", "links": {"subreddit": ["Hololive", "Nijisanji"], "discord": ["vtubersplace"]}, "path": {"250-258, T": [[-155, -749], [-155, -752], [-154, -753], [-155, -754], [-152, -757], [-144, -757], [-143, -758], [-141, -756], [-141, -760], [-140, -761], [-140, -762], [-141, -763], [-142, -764], [-141, -765], [-140, -766], [-140, -767], [-142, -767], [-141, -770], [-140, -770], [-139, -769], [-138, -769], [-139, -774], [-122, -774], [-122, -767], [-123, -766], [-121, -764], [-122, -763], [-123, -762], [-123, -761], [-122, -760], [-122, -759], [-117, -769], [-117, -768], [-115, -768], [-114, -767], [-107, -767], [-106, -768], [-105, -768], [-104, -769], [-104, -768], [-105, -767], [-105, -764], [-104, -763], [-104, -761], [-105, -760], [-106, -759], [-106, -757], [-105, -756], [-105, -755], [-104, -754], [-104, -751], [-105, -750], [-105, -749], [-104, -748], [-104, -747], [-117, -747], [-117, -748], [-116, -749], [-116, -750], [-117, -751], [-117, -754], [-116, -755], [-116, -756], [-115, -757], [-122, -759], [-123, -759], [-124, -760], [-125, -760], [-126, -760], [-127, -760], [-128, -759], [-129, -758], [-130, -758], [-131, -757], [-132, -758], [-133, -759], [-137, -759], [-137, -758], [-138, -758], [-139, -757], [-140, -756], [-141, -756], [-141, -751], [-140, -750], [-140, -749], [-141, -748], [-142, -747], [-152, -747]]}, "center": {"250-258, T": [-131, -766]}}, +{"id": 3812, "name": "Flag of Turkey", "description": "An icon representing the flag of the Republic of Turkey (Türkiye), a country in Southeastern Europe and Western Asia.\n\nOriginally Turkey invaded the start button at the bottom left of the taskbar, but later moved to this spot, which was intended to belong to BaconReader, a third-party Reddit client app for Apple devices. As Turkey did not have permission to be here, the taskbar community continually attempted to stop Turkey and restore BaconReader. However, in the final moments of the canvas, the community shifted to protecting the Start button.", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://discord.com/channels/297922153750200322/1132769645334630420/1133427389033099314", "https://discord.com/channels/297922153750200322/1132769645334630420/1133430893856432239", "https://cdn.discordapp.com/attachments/1131630764388257822/1132257003012620298/v4-3000.png"], "discord": ["XcBujggwty"]}, "path": {"236-258, T": [[-1226, 976], [-1229, 979], [-1229, 990], [-1226, 993], [-1215, 993], [-1212, 990], [-1212, 979], [-1215, 976]]}, "center": {"236-258, T": [-1220, 985]}}, +{"id": 3813, "name": "TOFLANNSMP", "description": "Venden merca", "links": {}, "path": {"250-258, T": [[1494, 519], [1493, 523], [1494, 524], [1492, 519], [1491, 524], [1492, 525], [1492, 519], [1491, 517], [1496, 517], [1497, 518], [1499, 520], [1496, 524], [1496, 520], [1496, 525], [1499, 521], [1498, 525], [1499, 526], [1497, 525], [1496, 525], [1494, 524], [1498, 521], [1499, 519], [1499, 517], [1497, 518], [1495, 522], [1495, 523], [1494, 520], [1492, 524], [1492, 519], [1491, 523], [1492, 525], [1495, 524], [1493, 525], [1491, 520], [1498, 518]]}, "center": {"250-258, T": [1493, 518]}}, +{"id": 3814, "name": "Kansas City Chiefs", "description": "The Kansas City Chiefs are a professional American football team based in Kansas City, Missouri, United States. The arrowhead is the team logo, which is embellished by yellow and red, the team colors. In addition, their three Super Bowl victories are represented with IV and LIV in the top left, and LVII above the arrowhead. PM15 in the upper right represents the team's star quarterback, Patrick Mahomes II, who wears number 15.", "links": {"website": ["https://en.wikipedia.org/wiki/Kansas_City_Chiefs"], "subreddit": ["KansasCityChiefs"], "discord": ["chiefs"]}, "path": {"250-258, T": [[1467, -147], [1467, -165], [1480, -165], [1480, -159], [1499, -159], [1499, -127], [1481, -127], [1481, -147]]}, "center": {"250-258, T": [1490, -150]}}, +{"id": 3815, "name": "Funny Valentine (Jojo's Part 7)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 7: Steel Ball Run.\n\nStand: Dirty Deeds Done Dirt Cheap\n\n\"My heart and actions are utterly unclouded. They are all those of \"Justice.\" \"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1080, -94], [-1081, -97], [-1082, -98], [-1084, -98], [-1086, -94], [-1085, -90], [-1082, -90], [-1081, -92]]}, "center": {"250-258, T": [-1083, -94]}}, +{"id": 3816, "name": "Bandera de Nicaragua", "description": "La bandera de Nicaragua, la Tierra de Lagos y Volcanes, con su respectivo Pájaro Nacional \"El Guardabarranco\" adornado con la Flor Nacional \"La Flor de Sacuanjoche\", en el medio el Escudo de Armas de la República de Nicaragua", "links": {"subreddit": ["Nicargua"]}, "path": {"220-258, T": [[-1331, 745], [-1331, 759], [-1265, 758], [-1265, 744]]}, "center": {"220-258, T": [-1298, 752]}}, +{"id": 3817, "name": "OmegaCritico", "description": "Minecraft skin of the famous Youtuber, Streamer, Critic, Handsome, lycanthrope, Playboy, Philosopher, Argentine \"OmegaCritico\", Founder of MiMundoFrito and CEO of \"QUEASCO\" \"AAAA\" and associates, Pioneer in the Critical Industry", "links": {"website": ["https://www.twitch.tv/omegacritico?sr=a"]}, "path": {"173-258, T": [[-1046, -296], [-1046, -282], [-1031, -281], [-1031, -296]]}, "center": {"173-258, T": [-1038, -289]}}, +{"id": 3818, "name": "AgenteMaxo", "description": "Creado por la comunidad de Maximus\n\nMaximus es un youtube y streamer conocido por sus videos de Fornite, Overwatch, Minecraft. SapoPeta en Karmaland V.\n\nCreador Español", "links": {"website": ["https://www.twitch.tv/agentemaxo"]}, "path": {"250-258, T": [[109, 614], [125, 614], [127, 636], [110, 636]]}, "center": {"250-258, T": [118, 625]}}, +{"id": 3819, "name": "Dragonvale", "description": "Dragonvale is a 2011 mobile game with a still active community. Raise and care for your own magical dragons in DragonVale! Create a park full of adorable and friendly dragons by hatching them, feeding them, and watching them grow up. Share your dragon land with your friends and help each other with gifts.", "links": {"website": ["https://en.wikipedia.org/wiki/DragonVale"], "subreddit": ["dragonvale"]}, "path": {"189-258, T": [[-41, 913], [-36, 913], [-36, 914], [-34, 914], [-34, 915], [-33, 915], [-33, 917], [-32, 917], [-32, 924], [-33, 924], [-33, 925], [-35, 925], [-35, 926], [-37, 926], [-37, 927], [-40, 927], [-40, 926], [-42, 926], [-42, 925], [-44, 925], [-44, 924], [-45, 924], [-45, 917], [-44, 917], [-44, 915], [-43, 915], [-43, 914], [-41, 914]]}, "center": {"189-258, T": [-38, 920]}}, +{"id": 3820, "name": "Rubckity", "description": "Rubckity is a fictional ship based on two Minecraft characters of streamers Rubius and Quackity. It originated from the 'Squid Craft Games 1' event, where both characters died together for the first time. The catchphrase associated with Rubckity is 'You and me until the end.' Fans believe that these characters are destined to reunite and die together in all Minecraft universes where they meet.", "links": {}, "path": {"201-259, T": [[779, 424], [779, 405], [764, 405], [764, 424]]}, "center": {"201-259, T": [772, 415]}}, +{"id": 3821, "name": "Blurryfish", "description": "One of two fish built to show the alliance between r/twentyonepilots and r/placefishcult", "links": {"subreddit": ["twentyonepilots", "PlaceFishCult"]}, "path": {"136-252, T": [[478, -302], [481, -302], [481, -300], [478, -300]]}, "center": {"136-252, T": [480, -301]}}, {"id": 3822, "name": "Cavinator1", "description": "The Minecraft player head for Cavinator1: the creator of various Minecraft projects such as: BlazeandCave's Advancement Pack, the Assassin of Steve trilogy, Celestial Protocol, and Dance Floor.", "links": {"website": ["https://www.planetminecraft.com/member/cavinator1/"], "discord": ["blaze-and-cave-419383460600348673"]}, "path": {"118-123": [[-448, -803], [-441, -803], [-441, -796], [-448, -796]]}, "center": {"118-123": [-444, -799]}}, -{"id": 3823, "name": "Centella Ice Cream", "description": "It is the most famous ice cream in Chile", "links": {"website": ["https://comeconce.periodismoudec.cl/la-historia-del-centella-el-helado-mas-famoso-de-chile/"]}, "path": {"250-258": [[-1012, -799], [-1005, -808], [-1008, -812], [-991, -828], [-987, -829], [-987, -825], [-999, -806], [-1004, -807], [-1011, -798]]}, "center": {"250-258": [-1001, -812]}}, -{"id": 3824, "name": "Brick Hill", "description": "Brick Hill, a sandbox game, makes a return on this year's canvas. This year the art depicts a new Brick Hill logo and Muffs, a fictional character in the game's lore", "links": {"website": ["https://www.brick-hill.com"], "subreddit": ["placebrickhill"], "discord": ["uux3mefgju"]}, "path": {"245-258": [[486, 910], [499, 910], [499, 895], [492, 895], [492, 904], [486, 904]]}, "center": {"245-258": [495, 906]}}, -{"id": 3825, "name": "Kars (Jojo's Part 2)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 2: Battle Tendency.\n\n\"I've waited 4- no, 5000 years for this!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1080, -92], [-1077, -92], [-1075, -91], [-1074, -89], [-1074, -88], [-1074, -84], [-1075, -83], [-1078, -86], [-1080, -89]]}, "center": {"250-258": [-1077, -89]}}, -{"id": 3826, "name": "Niko - Oneshot", "description": "The main character of the video game OneShot, Niko.", "links": {"subreddit": ["oneshot"], "discord": ["oneshot"]}, "path": {"162-251": [[613, 884], [613, 858], [632, 858], [632, 884]]}, "center": {"162-251": [623, 871]}}, -{"id": 3827, "name": "Dúo LimaLimón | Rubckity", "description": "Dúo LimaLimón: Se nombra así a la amistad e interacciones de los streamers Rubius y Quackity. El nombre se origina en octubre del 2021, durante su primera transmisión juntos, en la cual Quackity le mostró a Rubius la cultura mexicana, a través del mapa \"La Colonia\" en Roblox.\n\nRubckity: Relación romántica ficticia entre los personajes interpretados por los streamers Rubius y Quackity en Minecraft, nacida de un pequeño sector de ambas comunidades a partir de los SquidCraft Game, a principios del 2022. La dinámica más conocida de su relación es la involuntaria muerte o separación de ambos al final de cada serie en la que han estado.\n\n[Se suele representar a Quackity como un pato y a Rubius como un oso]\n\nActualmente ambos participan en el QSMP, proyecto perteneciente a Quackity. Aunque sus interacciones en el servidor han sido mínimas, ambos mantienen una buena amistad fuera de este.", "links": {"website": ["https://www.youtube.com/watch?v=28eSbCHTtL8", "https://www.twitch.tv/quackitytoo", "https://www.twitch.tv/rubius"]}, "path": {"129-258": [[764, 405], [779, 405], [779, 424], [764, 424]]}, "center": {"129-258": [772, 415]}}, -{"id": 3828, "name": "Arepa", "description": "La arepa es un alimento de origen Venezolano, hecho a base de masa de maíz seco molido o de harina de maíz precocida, de forma circular y aplanada. Es conocida bajo ese nombre en Colombia y Venezuela. Es consumida de manera tradicional en las gastronomías de estos países.​ También es conocida bajo ese nombre en Bolivia, particularmente en la zona oriental del país, siendo la variedad de Cotoca la más tradicional y reconocida\n\nThe arepa is a food of Venezuelan origin, made from ground dry corn dough or precooked cornmeal, circular and flattened. It is known under that name in Colombia and Venezuela. It is traditionally consumed in the cuisines of these countries.4 It is also known under that name in Bolivia, particularly in the eastern part of the country, with the Cotoca variety being the most traditional and recognized", "links": {"website": ["https://es.wikipedia.org/wiki/Arepa"], "subreddit": ["vzla"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258": [[-491, -857], [-487, -844], [-479, -843], [-476, -851], [-476, -857]]}, "center": {"250-258": [-482, -851]}}, -{"id": 3829, "name": "Minecraft Social Experiments", "description": "Minecraft Social Experiments is a discord server, run by the Youtuber 100p.\nAllied with LaBasseCour.", "links": {"website": ["https://www.youtube.com/@100p"], "discord": ["100p"]}, "path": {"250-258": [[-768, 245], [-750, 245], [-750, 257], [-768, 257]]}, "center": {"250-258": [-759, 251]}}, -{"id": 3830, "name": "Yoshikage Kira (Jojo's Part 4)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable.\n\nStand: Killer Queen (Sheer heart attack, Bites the dust)\n\n\"My name is Yoshikage Kira. I'm 33 years old. My house is in the northeast section of Morioh, where all the villas are, and I am not married. I work as an employee for the Kame Yu department stores, and I get home every day by 8 PM at the latest. I don't smoke, but I occasionally drink. I'm in bed by 11 PM, and make sure I get eight hours of sleep, no matter what. After having a glass of warm milk and doing about twenty minutes of stretches before going to bed, I usually have no problems sleeping until morning. Just like a baby, I wake up without any fatigue or stress in the morning. I was told there were no issues at my last check-up. I'm trying to explain that I'm a person who wishes to live a very quiet life. I take care not to trouble myself with any enemies, like winning and losing, that would cause me to lose sleep at night. That is how I deal with society, and I know that is what brings me happiness. Although, if I were to fight I wouldn't lose to anyone.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1080, -100], [-1079, -101], [-1076, -101], [-1075, -100], [-1074, -96], [-1075, -94], [-1078, -94]]}, "center": {"250-258": [-1077, -98]}}, -{"id": 3831, "name": "Kermit aka \"Gustavo\"", "description": "Gustavo, whose name was given by in the community of the Venezuelan artist and streamer Flasho-D. This stuffed animal became popular with his audience and became an important character in the community, he wears a Shingeki no Kyojin cape and a fuchsia bikini that in real life has. One of several contributions in alliance with r/vnzl. It's said that Gustavo have no fear of chaos, a true survivor.", "links": {"website": ["https://www.twitch.tv/flasho_d", "https://www.instagram.com/flasho_d/"]}, "path": {"210-259": [[-1044, 313], [-1045, 306], [-1047, 306], [-1047, 295], [-1054, 295], [-1054, 302], [-1057, 305], [-1056, 310], [-1052, 310], [-1052, 314], [-1044, 314]]}, "center": {"210-259": [-1051, 306]}}, +{"id": 3823, "name": "Centella Ice Cream", "description": "It is the most famous ice cream in Chile", "links": {"website": ["https://comeconce.periodismoudec.cl/la-historia-del-centella-el-helado-mas-famoso-de-chile/"]}, "path": {"250-258, T": [[-1012, -799], [-1005, -808], [-1008, -812], [-991, -828], [-987, -829], [-987, -825], [-999, -806], [-1004, -807], [-1011, -798]]}, "center": {"250-258, T": [-1001, -812]}}, +{"id": 3824, "name": "Brick Hill", "description": "Brick Hill, a sandbox game, makes a return on this year's canvas. This year the art depicts a new Brick Hill logo and Muffs, a fictional character in the game's lore", "links": {"website": ["https://www.brick-hill.com"], "subreddit": ["placebrickhill"], "discord": ["uux3mefgju"]}, "path": {"245-258, T": [[486, 910], [499, 910], [499, 895], [492, 895], [492, 904], [486, 904]]}, "center": {"245-258, T": [495, 906]}}, +{"id": 3825, "name": "Kars (Jojo's Part 2)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 2: Battle Tendency.\n\n\"I've waited 4- no, 5000 years for this!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1080, -92], [-1077, -92], [-1075, -91], [-1074, -89], [-1074, -88], [-1074, -84], [-1075, -83], [-1078, -86], [-1080, -89]]}, "center": {"250-258, T": [-1077, -89]}}, +{"id": 3826, "name": "Niko - Oneshot", "description": "The main character of the video game OneShot, Niko.", "links": {"subreddit": ["oneshot"], "discord": ["oneshot"]}, "path": {"162-251, T": [[613, 884], [613, 858], [632, 858], [632, 884]]}, "center": {"162-251, T": [623, 871]}}, +{"id": 3827, "name": "Dúo LimaLimón | Rubckity", "description": "Dúo LimaLimón: Se nombra así a la amistad e interacciones de los streamers Rubius y Quackity. El nombre se origina en octubre del 2021, durante su primera transmisión juntos, en la cual Quackity le mostró a Rubius la cultura mexicana, a través del mapa \"La Colonia\" en Roblox.\n\nRubckity: Relación romántica ficticia entre los personajes interpretados por los streamers Rubius y Quackity en Minecraft, nacida de un pequeño sector de ambas comunidades a partir de los SquidCraft Game, a principios del 2022. La dinámica más conocida de su relación es la involuntaria muerte o separación de ambos al final de cada serie en la que han estado.\n\n[Se suele representar a Quackity como un pato y a Rubius como un oso]\n\nActualmente ambos participan en el QSMP, proyecto perteneciente a Quackity. Aunque sus interacciones en el servidor han sido mínimas, ambos mantienen una buena amistad fuera de este.", "links": {"website": ["https://www.youtube.com/watch?v=28eSbCHTtL8", "https://www.twitch.tv/quackitytoo", "https://www.twitch.tv/rubius"]}, "path": {"129-258, T": [[764, 405], [779, 405], [779, 424], [764, 424]]}, "center": {"129-258, T": [772, 415]}}, +{"id": 3828, "name": "Arepa", "description": "La arepa es un alimento de origen Venezolano, hecho a base de masa de maíz seco molido o de harina de maíz precocida, de forma circular y aplanada. Es conocida bajo ese nombre en Colombia y Venezuela. Es consumida de manera tradicional en las gastronomías de estos países.​ También es conocida bajo ese nombre en Bolivia, particularmente en la zona oriental del país, siendo la variedad de Cotoca la más tradicional y reconocida\n\nThe arepa is a food of Venezuelan origin, made from ground dry corn dough or precooked cornmeal, circular and flattened. It is known under that name in Colombia and Venezuela. It is traditionally consumed in the cuisines of these countries.4 It is also known under that name in Bolivia, particularly in the eastern part of the country, with the Cotoca variety being the most traditional and recognized", "links": {"website": ["https://es.wikipedia.org/wiki/Arepa"], "subreddit": ["vzla"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258, T": [[-491, -857], [-487, -844], [-479, -843], [-476, -851], [-476, -857]]}, "center": {"250-258, T": [-482, -851]}}, +{"id": 3829, "name": "Minecraft Social Experiments", "description": "Minecraft Social Experiments is a discord server, run by the Youtuber 100p.\nAllied with LaBasseCour.", "links": {"website": ["https://www.youtube.com/@100p"], "discord": ["100p"]}, "path": {"250-258, T": [[-768, 245], [-750, 245], [-750, 257], [-768, 257]]}, "center": {"250-258, T": [-759, 251]}}, +{"id": 3830, "name": "Yoshikage Kira (Jojo's Part 4)", "description": "The main antagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable.\n\nStand: Killer Queen (Sheer heart attack, Bites the dust)\n\n\"My name is Yoshikage Kira. I'm 33 years old. My house is in the northeast section of Morioh, where all the villas are, and I am not married. I work as an employee for the Kame Yu department stores, and I get home every day by 8 PM at the latest. I don't smoke, but I occasionally drink. I'm in bed by 11 PM, and make sure I get eight hours of sleep, no matter what. After having a glass of warm milk and doing about twenty minutes of stretches before going to bed, I usually have no problems sleeping until morning. Just like a baby, I wake up without any fatigue or stress in the morning. I was told there were no issues at my last check-up. I'm trying to explain that I'm a person who wishes to live a very quiet life. I take care not to trouble myself with any enemies, like winning and losing, that would cause me to lose sleep at night. That is how I deal with society, and I know that is what brings me happiness. Although, if I were to fight I wouldn't lose to anyone.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1080, -100], [-1079, -101], [-1076, -101], [-1075, -100], [-1074, -96], [-1075, -94], [-1078, -94]]}, "center": {"250-258, T": [-1077, -98]}}, +{"id": 3831, "name": "Kermit aka \"Gustavo\"", "description": "Gustavo, whose name was given by in the community of the Venezuelan artist and streamer Flasho-D. This stuffed animal became popular with his audience and became an important character in the community, he wears a Shingeki no Kyojin cape and a fuchsia bikini that in real life has. One of several contributions in alliance with r/vnzl. It's said that Gustavo have no fear of chaos, a true survivor.", "links": {"website": ["https://www.twitch.tv/flasho_d", "https://www.instagram.com/flasho_d/"]}, "path": {"210-259, T": [[-1044, 313], [-1045, 306], [-1047, 306], [-1047, 295], [-1054, 295], [-1054, 302], [-1057, 305], [-1056, 310], [-1052, 310], [-1052, 314], [-1044, 314]]}, "center": {"210-259, T": [-1051, 306]}}, {"id": 3832, "name": "The Mausoleum of King Deshret", "description": "The Mausoleum of King Deshret.\n\nAn iconic location in the deserts of Sumeru. \nIt was supposed to have been Dragonspine but the Hivemind made it into the pyramid. \n\nGo listen to the soundtrack. \n(linked below)", "links": {"website": ["https://youtu.be/CgNz8ez6aZg?si=4g7nXn9C8zHswOEH", "https://genshin.hoyoverse.com/en/home"], "subreddit": ["Genshin_Impact"]}, "path": {"42-178": [[-94, 323], [-76, 306], [-77, 304], [-81, 299], [-70, 299], [-75, 305], [-65, 315], [-66, 318], [-68, 319], [-69, 316], [-72, 316], [-77, 319], [-79, 319], [-85, 325], [-94, 325]]}, "center": {"42-178": [-76, 313]}}, -{"id": 3834, "name": "Moroccan tajine", "description": "This is a representation of the tajine, which can refer to both the dish, or the earthenware in which it is cooked. Here, we see the latter.", "links": {}, "path": {"250-258": [[394, 89], [403, 79], [408, 79], [418, 89], [414, 93], [397, 93], [394, 90]]}, "center": {"250-258": [406, 86]}}, +{"id": 3834, "name": "Moroccan tajine", "description": "This is a representation of the tajine, which can refer to both the dish, or the earthenware in which it is cooked. Here, we see the latter.", "links": {}, "path": {"250-258, T": [[394, 89], [403, 79], [408, 79], [418, 89], [414, 93], [397, 93], [394, 90]]}, "center": {"250-258, T": [406, 86]}}, {"id": 3835, "name": "Soarinng", "description": "Daniel, better known as Soarinng, is a youtuber/streamer dedicated to performing dynamics with his followers, he became popular for doing different dynamics in Minecraft, the most recent was \"Backrooms\" that he did with the Euphonia team, and Soarinng is dedicated to make gameplays alone or with friends.", "links": {"website": ["https://the-aquinopedia.fandom.com/es/wiki/Soarinng"], "subreddit": ["mexico"]}, "path": {"242": [[56, 855], [87, 855], [87, 884], [56, 884]]}, "center": {"242": [72, 870]}}, -{"id": 3836, "name": "Furry_irl Alliance", "description": "A huge alliance under the helm of r/furry_irl including many unlikely members some stemming from the alliance of the previous year and many others having been picked up along the many relocations over the canvas. The alliance found their art being destroyed several times migrating all across the canvas until finally finding a place on the french flag", "links": {"website": ["https://docs.google.com/document/d/1uzb6iz3Ahu7QlGsOBtPbTCW4T2CaDr6BWecAb0t7zes/edit"], "subreddit": ["Furry_irl", "pikmin", "TWRP", "Monstercat", "stlouisblues", "TheClickOwO", "jerma985", "factorio", "zootopia", "avali", "FRC", "FTC", "FLL"], "discord": ["boykisser"]}, "path": {"215-258": [[-1091, 163], [-1144, 163], [-1144, 169], [-1132, 169], [-1132, 172], [-1145, 172], [-1144, 175], [-1144, 177], [-1143, 178], [-1143, 179], [-1142, 180], [-1142, 181], [-1141, 182], [-1141, 183], [-1140, 184], [-1140, 185], [-1139, 186], [-1139, 187], [-1138, 188], [-1138, 189], [-1141, 189], [-1142, 190], [-1143, 190], [-1145, 192], [-1145, 199], [-1143, 201], [-1133, 201], [-1130, 197], [-1130, 193], [-1133, 190], [-1133, 189], [-1130, 187], [-1126, 185], [-1118, 178], [-1113, 178], [-1113, 179], [-1114, 180], [-1114, 183], [-1115, 184], [-1115, 194], [-1114, 195], [-1114, 197], [-1113, 198], [-1113, 199], [-1112, 200], [-1112, 201], [-1117, 201], [-1117, 203], [-1112, 207], [-1113, 210], [-1113, 215], [-1118, 216], [-1118, 221], [-1128, 221], [-1128, 220], [-1126, 218], [-1126, 211], [-1127, 211], [-1130, 214], [-1131, 214], [-1134, 211], [-1143, 211], [-1143, 221], [-1149, 221], [-1149, 226], [-1142, 226], [-1142, 239], [-1137, 239], [-1137, 243], [-1144, 243], [-1144, 250], [-1123, 250], [-1126, 255], [-1125, 257], [-1127, 260], [-1126, 262], [-1124, 264], [-1113, 264], [-1113, 263], [-1106, 263], [-1105, 262], [-1095, 262], [-1095, 260], [-1080, 260], [-1068, 264], [-1067, 268], [-1063, 267], [-1052, 266], [-1049, 251], [-1007, 251], [-1007, 241], [-1005, 241], [-1005, 223], [-1025, 223], [-1030, 219], [-1024, 212], [-1024, 200], [-1031, 195], [-1031, 194], [-1010, 194], [-1010, 186], [-1020, 176], [-1035, 174], [-1039, 166], [-1051, 166], [-1051, 153], [-1039, 153], [-1039, 125], [-1060, 125], [-1059, 107], [-1054, 95], [-1062, 88], [-1073, 88], [-1080, 94], [-1080, 103], [-1074, 110], [-1075, 114], [-1085, 115], [-1085, 116], [-1091, 116], [-1104, 132], [-1105, 137], [-1114, 137], [-1115, 128], [-1122, 128], [-1122, 97], [-1115, 97], [-1115, 87], [-1175, 87], [-1175, 153], [-1128, 153], [-1129, 138], [-1105, 138], [-1105, 154], [-1052, 154], [-1052, 162]]}, "center": {"215-258": [-1070, 209]}}, -{"id": 3837, "name": "Coco Jumbo (Jojo's Part 5)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind.\n\nStand: Mr President\n\n\"This is my gamble to keep the arrow away from Diavolo.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1069, -83], [-1069, -82], [-1066, -81], [-1063, -81], [-1062, -82], [-1064, -84], [-1066, -84]]}, "center": {"250-258": [-1065, -82]}}, -{"id": 3838, "name": "Fossils (not) Lost In Time", "description": "After numerous alliances, forced relocations from larger entities, and hours of sleep lost attempting to find a humble abode, a group of paleontology nerds managed to scratch out a spot on the r/place canvas, creating an Ankylosaurus dinosaur and a beach with the fossilized tooth of the Cretaceous shark Squalicorax resting on it. As luck would have it, these pieces would finally stand the test of time in this spot, much like the IRL fossilized remains of living organisms do when someone finds them in the field.\n\nA special thanks to the communities r/farmcarrots, r/Crochet, r/Zelda, r/Metallica, r/Nirvana, and r/MyChemicalRomance for their support throughout the whole ordeal, as without their many contributions to this cause, we may not be standing here to talk about it.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C", "X3Yj5PvB8q"]}, "path": {"206-258": [[-781, 931], [-768, 931], [-768, 938], [-781, 938], [-780, 942], [-766, 942], [-766, 940], [-781, 938]]}, "center": {"206-258": [-772, 935]}}, -{"id": 3839, "name": "Metro de Santiago de Chile", "description": "The Santiago Metro is the metropolitan railway whose network covers part of the capital of Chile.", "links": {"website": ["https://es.wikipedia.org/wiki/Metro_de_Santiago", "https://metrodesantiago.fandom.com/es/wiki/Metro_de_Santiago"]}, "path": {"250-258": [[-1495, -760], [-1487, -766], [-1329, -766], [-1325, -760], [-1326, -756], [-1493, -756]]}, "center": {"250-258": [-1410, -761]}}, -{"id": 3840, "name": "Zincha", "description": "Zincha was the mascot of the Copa América Chile 2015. Zincha is a culpeo fox, a canid that inhabits all of Chile and several places in South America, particularly in the countries surrounding the Andes Mountains.", "links": {"website": ["https://es.wikipedia.org/wiki/Zincha"]}, "path": {"250-258": [[-1233, -829], [-1238, -827], [-1237, -823], [-1239, -822], [-1243, -822], [-1247, -821], [-1249, -819], [-1247, -816], [-1245, -814], [-1246, -811], [-1247, -809], [-1248, -807], [-1245, -805], [-1243, -803], [-1239, -803], [-1235, -801], [-1235, -800], [-1241, -799], [-1243, -800], [-1245, -802], [-1246, -793], [-1238, -793], [-1238, -786], [-1237, -781], [-1241, -776], [-1240, -773], [-1231, -772], [-1230, -776], [-1230, -786], [-1228, -776], [-1225, -773], [-1218, -772], [-1217, -775], [-1221, -780], [-1217, -782], [-1217, -788], [-1221, -790], [-1222, -792], [-1222, -794], [-1213, -793], [-1214, -800], [-1218, -800], [-1223, -800], [-1224, -802], [-1223, -804], [-1219, -805], [-1217, -807], [-1213, -808], [-1213, -810], [-1214, -812], [-1216, -814], [-1216, -817], [-1215, -820], [-1214, -823], [-1213, -824], [-1213, -826], [-1216, -827], [-1217, -825], [-1219, -825], [-1222, -826], [-1225, -824], [-1226, -824], [-1226, -828], [-1228, -829]]}, "center": {"250-258": [-1231, -812]}}, -{"id": 3841, "name": "Moonleap", "description": "The main character from the game \"Moonleap\" developed by the youtuber Botão Select", "links": {"website": ["https://youtube.com/@BotaoSelect"]}, "path": {"250-258": [[233, 388], [233, 389], [241, 389], [245, 396], [241, 408], [233, 407], [229, 402], [228, 392], [232, 388]]}, "center": {"250-258": [236, 397]}}, -{"id": 3842, "name": "Belenyaa", "description": "Streamer chilena, la mejor de Chile en Variety Stream", "links": {"website": ["https://www.twitch.tv/belenyaa"]}, "path": {"250-258": [[412, 955], [412, 984], [366, 984], [366, 981], [360, 981], [360, 983], [357, 983], [357, 955]]}, "center": {"250-258": [385, 970]}}, +{"id": 3836, "name": "Furry_irl Alliance", "description": "A huge alliance under the helm of r/furry_irl including many unlikely members some stemming from the alliance of the previous year and many others having been picked up along the many relocations over the canvas. The alliance found their art being destroyed several times migrating all across the canvas until finally finding a place on the french flag", "links": {"website": ["https://docs.google.com/document/d/1uzb6iz3Ahu7QlGsOBtPbTCW4T2CaDr6BWecAb0t7zes/edit"], "subreddit": ["Furry_irl", "pikmin", "TWRP", "Monstercat", "stlouisblues", "TheClickOwO", "jerma985", "factorio", "zootopia", "avali", "FRC", "FTC", "FLL"], "discord": ["boykisser"]}, "path": {"215-258, T": [[-1091, 163], [-1144, 163], [-1144, 169], [-1132, 169], [-1132, 172], [-1145, 172], [-1144, 175], [-1144, 177], [-1143, 178], [-1143, 179], [-1142, 180], [-1142, 181], [-1141, 182], [-1141, 183], [-1140, 184], [-1140, 185], [-1139, 186], [-1139, 187], [-1138, 188], [-1138, 189], [-1141, 189], [-1142, 190], [-1143, 190], [-1145, 192], [-1145, 199], [-1143, 201], [-1133, 201], [-1130, 197], [-1130, 193], [-1133, 190], [-1133, 189], [-1130, 187], [-1126, 185], [-1118, 178], [-1113, 178], [-1113, 179], [-1114, 180], [-1114, 183], [-1115, 184], [-1115, 194], [-1114, 195], [-1114, 197], [-1113, 198], [-1113, 199], [-1112, 200], [-1112, 201], [-1117, 201], [-1117, 203], [-1112, 207], [-1113, 210], [-1113, 215], [-1118, 216], [-1118, 221], [-1128, 221], [-1128, 220], [-1126, 218], [-1126, 211], [-1127, 211], [-1130, 214], [-1131, 214], [-1134, 211], [-1143, 211], [-1143, 221], [-1149, 221], [-1149, 226], [-1142, 226], [-1142, 239], [-1137, 239], [-1137, 243], [-1144, 243], [-1144, 250], [-1123, 250], [-1126, 255], [-1125, 257], [-1127, 260], [-1126, 262], [-1124, 264], [-1113, 264], [-1113, 263], [-1106, 263], [-1105, 262], [-1095, 262], [-1095, 260], [-1080, 260], [-1068, 264], [-1067, 268], [-1063, 267], [-1052, 266], [-1049, 251], [-1007, 251], [-1007, 241], [-1005, 241], [-1005, 223], [-1025, 223], [-1030, 219], [-1024, 212], [-1024, 200], [-1031, 195], [-1031, 194], [-1010, 194], [-1010, 186], [-1020, 176], [-1035, 174], [-1039, 166], [-1051, 166], [-1051, 153], [-1039, 153], [-1039, 125], [-1060, 125], [-1059, 107], [-1054, 95], [-1062, 88], [-1073, 88], [-1080, 94], [-1080, 103], [-1074, 110], [-1075, 114], [-1085, 115], [-1085, 116], [-1091, 116], [-1104, 132], [-1105, 137], [-1114, 137], [-1115, 128], [-1122, 128], [-1122, 97], [-1115, 97], [-1115, 87], [-1175, 87], [-1175, 153], [-1128, 153], [-1129, 138], [-1105, 138], [-1105, 154], [-1052, 154], [-1052, 162]]}, "center": {"215-258, T": [-1070, 209]}}, +{"id": 3837, "name": "Coco Jumbo (Jojo's Part 5)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 5: Golden Wind.\n\nStand: Mr President\n\n\"This is my gamble to keep the arrow away from Diavolo.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1069, -83], [-1069, -82], [-1066, -81], [-1063, -81], [-1062, -82], [-1064, -84], [-1066, -84]]}, "center": {"250-258, T": [-1065, -82]}}, +{"id": 3838, "name": "Fossils (not) Lost In Time", "description": "After numerous alliances, forced relocations from larger entities, and hours of sleep lost attempting to find a humble abode, a group of paleontology nerds managed to scratch out a spot on the r/place canvas, creating an Ankylosaurus dinosaur and a beach with the fossilized tooth of the Cretaceous shark Squalicorax resting on it. As luck would have it, these pieces would finally stand the test of time in this spot, much like the IRL fossilized remains of living organisms do when someone finds them in the field.\n\nA special thanks to the communities r/farmcarrots, r/Crochet, r/Zelda, r/Metallica, r/Nirvana, and r/MyChemicalRomance for their support throughout the whole ordeal, as without their many contributions to this cause, we may not be standing here to talk about it.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C", "X3Yj5PvB8q"]}, "path": {"206-258, T": [[-781, 931], [-768, 931], [-768, 938], [-781, 938], [-780, 942], [-766, 942], [-766, 940], [-781, 938]]}, "center": {"206-258, T": [-772, 935]}}, +{"id": 3839, "name": "Metro de Santiago de Chile", "description": "The Santiago Metro is the metropolitan railway whose network covers part of the capital of Chile.", "links": {"website": ["https://es.wikipedia.org/wiki/Metro_de_Santiago", "https://metrodesantiago.fandom.com/es/wiki/Metro_de_Santiago"]}, "path": {"250-258, T": [[-1495, -760], [-1487, -766], [-1329, -766], [-1325, -760], [-1326, -756], [-1493, -756]]}, "center": {"250-258, T": [-1410, -761]}}, +{"id": 3840, "name": "Zincha", "description": "Zincha was the mascot of the Copa América Chile 2015. Zincha is a culpeo fox, a canid that inhabits all of Chile and several places in South America, particularly in the countries surrounding the Andes Mountains.", "links": {"website": ["https://es.wikipedia.org/wiki/Zincha"]}, "path": {"250-258, T": [[-1233, -829], [-1238, -827], [-1237, -823], [-1239, -822], [-1243, -822], [-1247, -821], [-1249, -819], [-1247, -816], [-1245, -814], [-1246, -811], [-1247, -809], [-1248, -807], [-1245, -805], [-1243, -803], [-1239, -803], [-1235, -801], [-1235, -800], [-1241, -799], [-1243, -800], [-1245, -802], [-1246, -793], [-1238, -793], [-1238, -786], [-1237, -781], [-1241, -776], [-1240, -773], [-1231, -772], [-1230, -776], [-1230, -786], [-1228, -776], [-1225, -773], [-1218, -772], [-1217, -775], [-1221, -780], [-1217, -782], [-1217, -788], [-1221, -790], [-1222, -792], [-1222, -794], [-1213, -793], [-1214, -800], [-1218, -800], [-1223, -800], [-1224, -802], [-1223, -804], [-1219, -805], [-1217, -807], [-1213, -808], [-1213, -810], [-1214, -812], [-1216, -814], [-1216, -817], [-1215, -820], [-1214, -823], [-1213, -824], [-1213, -826], [-1216, -827], [-1217, -825], [-1219, -825], [-1222, -826], [-1225, -824], [-1226, -824], [-1226, -828], [-1228, -829]]}, "center": {"250-258, T": [-1231, -812]}}, +{"id": 3841, "name": "Moonleap", "description": "The main character from the game \"Moonleap\" developed by the youtuber Botão Select", "links": {"website": ["https://youtube.com/@BotaoSelect"]}, "path": {"250-258, T": [[233, 388], [233, 389], [241, 389], [245, 396], [241, 408], [233, 407], [229, 402], [228, 392], [232, 388]]}, "center": {"250-258, T": [236, 397]}}, +{"id": 3842, "name": "Belenyaa", "description": "Streamer chilena, la mejor de Chile en Variety Stream", "links": {"website": ["https://www.twitch.tv/belenyaa"]}, "path": {"250-258, T": [[412, 955], [412, 984], [366, 984], [366, 981], [360, 981], [360, 983], [357, 983], [357, 955]]}, "center": {"250-258, T": [385, 970]}}, {"id": 3843, "name": "Catalunya", "description": "A pixel art rendition of the Barcelona Skyline on the Senyera, the Catalan flag. \n\nLeft to right: \n1 - A tiled representation of the FC Barcelona Crest.\n\n2 - The Montjuïc Communications Tower (aka la Torre Calatrava). \n\n3 - The W Barcelona Hotel ( l'Hotel Vela). \n\n4 - The Sagrada Família, the Venetian Towers (Les Torres Venetianes) \n\n5 - The Four Coluumns (Les Quatre Columnes) \n\n6 - The Montjuïc Cable Car (El Telefèric de Montjuïc) in the background.\n\n7 - A Casteller wearing a Barretina standing atop the Columbus Monument (Monument a Colom). \n\nAlliance hearts are placed at intersections with surrounding communities.", "links": {"subreddit": ["Catalunya"], "discord": ["t9Xar6XW9J"]}, "path": {"215": [[-869, 245], [-869, 273], [-771, 273], [-770, 255], [-768, 255], [-768, 245]]}, "center": {"215": [-818, 259]}}, -{"id": 3844, "name": "Looks To The Moon", "description": "Looks To The Moon from the indie game Rain World. The slugcats on her head are Inv, Spearmaster, Gourmand, Saint, Artificer and Rivulet from the Downpour DLC.", "links": {"website": ["https://rainworldgame.com/"], "subreddit": ["rainworld"]}, "path": {"198-258": [[546, -291], [554, -291], [555, -292], [556, -293], [557, -293], [557, -295], [556, -296], [553, -296], [552, -297], [555, -300], [557, -300], [558, -301], [558, -305], [557, -306], [557, -310], [556, -311], [556, -315], [554, -317], [553, -316], [552, -317], [552, -318], [551, -319], [550, -318], [549, -319], [548, -318], [548, -317], [547, -316], [544, -313], [544, -311], [543, -310], [543, -306], [542, -305], [542, -301], [543, -300], [545, -300], [548, -297], [547, -296], [544, -296], [544, -295], [543, -294], [545, -292]]}, "center": {"198-258": [550, -305]}}, -{"id": 3845, "name": "Jobin Higashikata (Jojo's Part 8)", "description": "A side antagonist of Jojo's Bizarre Adventure Part 8: Jojolion\n\nStand: Speed King\n\n\"It feels like I'm a kid on summer vacation again!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1065, -92], [-1060, -92], [-1060, -88], [-1059, -87], [-1060, -85], [-1063, -85], [-1064, -87]]}, "center": {"250-258": [-1062, -89]}}, -{"id": 3846, "name": "Martyrs' Memorial", "description": "The Martyrs' Memorial (Maqam Echahid) is a concrete monument commemorating the Algerian War", "links": {"website": ["https://en.wikipedia.org/wiki/Martyrs%27_Memorial,_Algiers"], "subreddit": ["algeria"], "discord": ["7AgJWv3r"]}, "path": {"250-258": [[-737, 369], [-737, 368], [-734, 365], [-734, 361], [-733, 361], [-733, 359], [-732, 358], [-731, 358], [-728, 355], [-728, 353], [-729, 353], [-730, 354], [-733, 354], [-734, 353], [-734, 350], [-733, 351], [-732, 351], [-731, 352], [-730, 351], [-730, 350], [-731, 349], [-731, 348], [-730, 349], [-729, 351], [-728, 351], [-728, 352], [-728, 357], [-729, 357], [-729, 361], [-728, 361], [-728, 364], [-727, 364], [-724, 367], [-725, 367], [-725, 368], [-726, 368], [-727, 369], [-727, 371], [-729, 371], [-730, 370], [-731, 371], [-733, 371], [-734, 370], [-737, 370]]}, "center": {"250-258": [-731, 366]}}, -{"id": 3847, "name": "Little Cat", "description": "This little cat is a part of the Carrot Farm which is located under O Carente, next to Portugal. This Little Cat was already there before the charizard pokemon card wiped a whole part of the canvas. A member of the Carrot Farm decided to redraw it even though the Carrot Farm is not the original creator of the cat.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C"]}, "path": {"211-258": [[-1256, 364], [-1259, 364], [-1259, 372], [-1258, 373], [-1243, 373], [-1243, 372], [-1244, 371], [-1245, 370], [-1246, 369], [-1248, 367], [-1250, 368], [-1251, 364]]}, "center": {"211-258": [-1254, 369]}}, +{"id": 3844, "name": "Looks To The Moon", "description": "Looks To The Moon from the indie game Rain World. The slugcats on her head are Inv, Spearmaster, Gourmand, Saint, Artificer and Rivulet from the Downpour DLC.", "links": {"website": ["https://rainworldgame.com/"], "subreddit": ["rainworld"]}, "path": {"198-258, T": [[546, -291], [554, -291], [555, -292], [556, -293], [557, -293], [557, -295], [556, -296], [553, -296], [552, -297], [555, -300], [557, -300], [558, -301], [558, -305], [557, -306], [557, -310], [556, -311], [556, -315], [554, -317], [553, -316], [552, -317], [552, -318], [551, -319], [550, -318], [549, -319], [548, -318], [548, -317], [547, -316], [544, -313], [544, -311], [543, -310], [543, -306], [542, -305], [542, -301], [543, -300], [545, -300], [548, -297], [547, -296], [544, -296], [544, -295], [543, -294], [545, -292]]}, "center": {"198-258, T": [550, -305]}}, +{"id": 3845, "name": "Jobin Higashikata (Jojo's Part 8)", "description": "A side antagonist of Jojo's Bizarre Adventure Part 8: Jojolion\n\nStand: Speed King\n\n\"It feels like I'm a kid on summer vacation again!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1065, -92], [-1060, -92], [-1060, -88], [-1059, -87], [-1060, -85], [-1063, -85], [-1064, -87]]}, "center": {"250-258, T": [-1062, -89]}}, +{"id": 3846, "name": "Martyrs' Memorial", "description": "The Martyrs' Memorial (Maqam Echahid) is a concrete monument commemorating the Algerian War", "links": {"website": ["https://en.wikipedia.org/wiki/Martyrs%27_Memorial,_Algiers"], "subreddit": ["algeria"], "discord": ["7AgJWv3r"]}, "path": {"250-258, T": [[-737, 369], [-737, 368], [-734, 365], [-734, 361], [-733, 361], [-733, 359], [-732, 358], [-731, 358], [-728, 355], [-728, 353], [-729, 353], [-730, 354], [-733, 354], [-734, 353], [-734, 350], [-733, 351], [-732, 351], [-731, 352], [-730, 351], [-730, 350], [-731, 349], [-731, 348], [-730, 349], [-729, 351], [-728, 351], [-728, 352], [-728, 357], [-729, 357], [-729, 361], [-728, 361], [-728, 364], [-727, 364], [-724, 367], [-725, 367], [-725, 368], [-726, 368], [-727, 369], [-727, 371], [-729, 371], [-730, 370], [-731, 371], [-733, 371], [-734, 370], [-737, 370]]}, "center": {"250-258, T": [-731, 366]}}, +{"id": 3847, "name": "Little Cat", "description": "This little cat is a part of the Carrot Farm which is located under O Carente, next to Portugal. This Little Cat was already there before the charizard pokemon card wiped a whole part of the canvas. A member of the Carrot Farm decided to redraw it even though the Carrot Farm is not the original creator of the cat.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C"]}, "path": {"211-258, T": [[-1256, 364], [-1259, 364], [-1259, 372], [-1258, 373], [-1243, 373], [-1243, 372], [-1244, 371], [-1245, 370], [-1246, 369], [-1248, 367], [-1250, 368], [-1251, 364]]}, "center": {"211-258, T": [-1254, 369]}}, {"id": 3848, "name": "Hobie Brown (Spider-Punk)", "description": "Spider-Punk is a superhero appearing in American comic books published by Marvel Comics since 2015. He is an alternate version of Hobie Brown (who was \"The Prowler\" in the Main comics) and Spider-Man who opposes President Norman Osborn, V.E.N.O.M., and the Inheritors.", "links": {"website": ["https://en.wikipedia.org/wiki/Spider-Punk"]}, "path": {"242": [[1218, -177], [1218, -166], [1209, -159], [1210, -157], [1212, -156], [1211, -155], [1212, -153], [1210, -150], [1212, -149], [1213, -149], [1212, -148], [1212, -141], [1216, -137], [1219, -133], [1220, -134], [1226, -141], [1226, -148], [1223, -151], [1228, -149], [1228, -152], [1226, -153], [1227, -155], [1226, -156], [1229, -158], [1228, -160], [1225, -163], [1224, -163], [1220, -167], [1220, -177]]}, "center": {"242": [1219, -157]}}, -{"id": 3849, "name": "Road Sign", "description": "A Dutch road sign, pointing towards the German \"u/spez ist ein hurensohn\", signifying that the Dutch agree with their statement. This is the first artwork added by the r/placeNL community.", "links": {"subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"9-258": [[-42, -479], [-33, -476], [-30, -470], [-30, -463], [-33, -457], [-38, -454], [-45, -454], [-47, -455], [-52, -457], [-54, -461], [-55, -464], [-55, -468], [-54, -472], [-51, -475], [-47, -477]]}, "center": {"9-258": [-42, -466]}}, -{"id": 3850, "name": "Rachid", "description": "Rachid is a depiction of a Fennec, an animal who lives in the Sahara desert and who is also the symbol of Algeria", "links": {"website": ["https://en.wikipedia.org/wiki/Fennec_fox"], "subreddit": ["algeria"], "discord": ["7AgJWv3r"]}, "path": {"177-258": [[-768, 330], [-768, 337], [-766, 339], [-766, 341], [-764, 343], [-764, 347], [-761, 350], [-760, 350], [-759, 351], [-756, 351], [-755, 350], [-754, 350], [-750, 346], [-750, 342], [-749, 341], [-749, 340], [-747, 338], [-747, 331], [-746, 330], [-749, 333], [-750, 333], [-756, 339], [-759, 339], [-764, 334]]}, "center": {"177-258": [-757, 345]}}, +{"id": 3849, "name": "Road Sign", "description": "A Dutch road sign, pointing towards the German \"u/spez ist ein hurensohn\", signifying that the Dutch agree with their statement. This is the first artwork added by the r/placeNL community.", "links": {"subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"9-258, T": [[-42, -479], [-33, -476], [-30, -470], [-30, -463], [-33, -457], [-38, -454], [-45, -454], [-47, -455], [-52, -457], [-54, -461], [-55, -464], [-55, -468], [-54, -472], [-51, -475], [-47, -477]]}, "center": {"9-258, T": [-42, -466]}}, +{"id": 3850, "name": "Rachid", "description": "Rachid is a depiction of a Fennec, an animal who lives in the Sahara desert and who is also the symbol of Algeria", "links": {"website": ["https://en.wikipedia.org/wiki/Fennec_fox"], "subreddit": ["algeria"], "discord": ["7AgJWv3r"]}, "path": {"177-258, T": [[-768, 330], [-768, 337], [-766, 339], [-766, 341], [-764, 343], [-764, 347], [-761, 350], [-760, 350], [-759, 351], [-756, 351], [-755, 350], [-754, 350], [-750, 346], [-750, 342], [-749, 341], [-749, 340], [-747, 338], [-747, 331], [-746, 330], [-749, 333], [-750, 333], [-756, 339], [-759, 339], [-764, 334]]}, "center": {"177-258, T": [-757, 345]}}, {"id": 3851, "name": "Metroid Collage", "description": "A small group of various symbols and characters from the Metroid series, including Zero Suit Samus, Crocomire, 2 Metroids, and the series logo.", "links": {"subreddit": ["Metroid"]}, "path": {"253-258": [[-1209, 275], [-1236, 274], [-1238, 247], [-1209, 247]]}, "center": {"253-258": [-1223, 261]}}, {"id": 3852, "name": "Carrot Farm", "description": "This carrot farm is composed of : two carrots, 2 ankylosaurus from r/ankmemes, one pineapple, flowers and a shark tooth elsewhere, a cat also elsewhere, a big shrimp on the right of the farm, a baby shrimp who didn't make it in the final canvas at the right of the big shrimp, we also have 2 carrots and a duck few pixels north in Cellbit's Monster. This is the 8th place the farm settled. The first farm was wiped by Argentina while they were fighting Portugal. Then by Paraguay. They again Argentina when we moved. Then Turkey when we moved again. Then pixel spaces next to osu wiped us. Then Cellbit's monster wiped us. Then we were wiped again. And this is the last farm that holds in place thanks to the help of the bronies from My Little Pony who gave us some space on their canvas for us to make a first carrot. We then made a pineapple than was wiped with us when Cellbit's monster came and then we negociated with Portugal to have a shrimp, they loved the idea but found it too big. So we changed the template of our shrimp to match some unused space around Cellbit's monster.\n\nWe are so proud of ourselves and of what we made, this is our 3rd place.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C"]}, "path": {"236": [[532, 807], [510, 824], [500, 828], [500, 841], [505, 840], [507, 835], [511, 834], [517, 834], [520, 836], [521, 839], [520, 842], [517, 845], [516, 849], [518, 850], [521, 850], [527, 847], [528, 844], [532, 843], [531, 840], [535, 835], [534, 828]]}, "center": {"236": [524, 826]}}, -{"id": 3853, "name": "BRO-tecitos", "description": "Nombre oficial del fandom de meica05 \"BRO-tecitos\"", "links": {"website": ["https://lit.link/en/meica05", "https://twitter.com/meica05", "https://www.twitch.tv/meica05"]}, "path": {"176-259": [[-1228, -75], [-1233, -71], [-1235, -71], [-1237, -69], [-1237, -66], [-1236, -65], [-1237, -64], [-1235, -62], [-1229, -62], [-1227, -65], [-1228, -65], [-1227, -66], [-1227, -69], [-1230, -71], [-1229, -72], [-1226, -72], [-1227, -75], [-1228, -75], [-1229, -75]]}, "center": {"176-259": [-1232, -66]}}, -{"id": 3854, "name": "Devon", "description": "Devon is the fourth biggest county in England with a population of 1.2 million. Depicted is the county of Devon as it appears on a map, with the flag of Devon as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Devon", "https://en.wikipedia.org/wiki/Flag_of_Devon"], "subreddit": ["DevonUK"]}, "path": {"236-258": [[-309, 741], [-311, 743], [-311, 745], [-310, 745], [-310, 747], [-308, 747], [-308, 751], [-306, 751], [-306, 750], [-301, 750], [-301, 746], [-306, 746], [-304, 743], [-306, 741]]}, "center": {"236-258": [-308, 744]}}, -{"id": 3855, "name": "Juan Cubito", "description": "c!juan or \"juan cubito\" is a character of juansguarnizo, a streamer that participated on Tortillaland 1 and Tortillaland 2, where he developed his character that started as someone who was lost and became a great sorcerer. He is a pretty green star between gods.", "links": {}, "path": {"250-258": [[788, 423], [788, 414], [779, 414], [779, 424], [788, 424]]}, "center": {"250-258": [784, 419]}}, -{"id": 3856, "name": "r/fuckcars Parking Lot", "description": "A parking lot with streets, similar to last year's design. Made by r/fuckcars.", "links": {"subreddit": ["fuckcars"]}, "path": {"211-258": [[-1404, 440], [-1404, 443], [-1401, 443], [-1401, 446], [-1373, 446], [-1371, 447], [-1371, 450], [-1347, 450], [-1347, 455], [-1355, 455], [-1355, 459], [-1334, 459], [-1334, 458], [-1300, 458], [-1302, 453], [-1299, 453], [-1295, 456], [-1291, 458], [-1287, 454], [-1287, 436], [-1265, 436], [-1258, 428], [-1251, 427], [-1244, 429], [-1239, 432], [-1236, 438], [-1237, 449], [-1243, 452], [-1233, 452], [-1230, 432], [-1229, 421], [-1259, 420], [-1265, 428], [-1287, 428], [-1287, 422], [-1271, 407], [-1271, 383], [-1279, 383], [-1278, 328], [-1282, 328], [-1283, 381], [-1279, 386], [-1275, 388], [-1275, 397], [-1288, 411], [-1292, 419], [-1293, 427], [-1328, 428], [-1328, 409], [-1378, 409], [-1379, 440]]}, "center": {"211-258": [-1348, 430]}}, -{"id": 3857, "name": "Blender", "description": "Blender is a versatile and open-source 3D computer graphics software used for creating, animating, and rendering a wide range of visual content such as animations. visual effects, 3D models and video games.", "links": {"subreddit": ["blender", "blenderhelp"]}, "path": {"175-258": [[201, 5], [207, 11], [207, 14], [204, 16], [203, 16], [202, 15], [201, 15], [201, 14], [199, 14], [198, 15], [197, 15], [197, 14], [200, 11], [200, 10], [198, 10], [197, 9], [201, 9]]}, "center": {"175-258": [204, 12]}}, -{"id": 3858, "name": "Radiohead", "description": "Logo for the British rock group radiohead", "links": {"website": ["https://www.radiohead.com/"], "subreddit": ["radiohead"]}, "path": {"250-258": [[248, -521], [264, -521], [264, -504], [248, -504]]}, "center": {"250-258": [256, -512]}}, -{"id": 3859, "name": "Yaminion", "description": "Yaminion (singular and plural) is the fan mascot for Nijisanji EN's VTuber - Shu Yamino. It is basically the VR Chat banana. We all love it.", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/shu-yamino", "https://www.youtube.com/channel/UCG0rzBZV_QMP4MtWg6IjhEA", "https://twitter.com/shu_yamino"]}, "path": {"123-258": [[-616, -270], [-619, -270], [-619, -269], [-619, -267], [-620, -267], [-620, -265], [-621, -265], [-621, -262], [-621, -261], [-622, -261], [-622, -259], [-620, -258], [-620, -256], [-619, -256], [-617, -258], [-617, -259], [-617, -260], [-616, -260], [-616, -262], [-615, -262], [-614, -264], [-614, -266], [-615, -267], [-616, -268], [-617, -269]]}, "center": {"123-258": [-617, -265]}}, +{"id": 3853, "name": "BRO-tecitos", "description": "Nombre oficial del fandom de meica05 \"BRO-tecitos\"", "links": {"website": ["https://lit.link/en/meica05", "https://twitter.com/meica05", "https://www.twitch.tv/meica05"]}, "path": {"176-259, T": [[-1228, -75], [-1233, -71], [-1235, -71], [-1237, -69], [-1237, -66], [-1236, -65], [-1237, -64], [-1235, -62], [-1229, -62], [-1227, -65], [-1228, -65], [-1227, -66], [-1227, -69], [-1230, -71], [-1229, -72], [-1226, -72], [-1227, -75], [-1228, -75], [-1229, -75]]}, "center": {"176-259, T": [-1232, -66]}}, +{"id": 3854, "name": "Devon", "description": "Devon is the fourth biggest county in England with a population of 1.2 million. Depicted is the county of Devon as it appears on a map, with the flag of Devon as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Devon", "https://en.wikipedia.org/wiki/Flag_of_Devon"], "subreddit": ["DevonUK"]}, "path": {"236-258, T": [[-309, 741], [-311, 743], [-311, 745], [-310, 745], [-310, 747], [-308, 747], [-308, 751], [-306, 751], [-306, 750], [-301, 750], [-301, 746], [-306, 746], [-304, 743], [-306, 741]]}, "center": {"236-258, T": [-308, 744]}}, +{"id": 3855, "name": "Juan Cubito", "description": "c!juan or \"juan cubito\" is a character of juansguarnizo, a streamer that participated on Tortillaland 1 and Tortillaland 2, where he developed his character that started as someone who was lost and became a great sorcerer. He is a pretty green star between gods.", "links": {}, "path": {"250-258, T": [[788, 423], [788, 414], [779, 414], [779, 424], [788, 424]]}, "center": {"250-258, T": [784, 419]}}, +{"id": 3856, "name": "r/fuckcars Parking Lot", "description": "A parking lot with streets, similar to last year's design. Made by r/fuckcars.", "links": {"subreddit": ["fuckcars"]}, "path": {"211-258, T": [[-1404, 440], [-1404, 443], [-1401, 443], [-1401, 446], [-1373, 446], [-1371, 447], [-1371, 450], [-1347, 450], [-1347, 455], [-1355, 455], [-1355, 459], [-1334, 459], [-1334, 458], [-1300, 458], [-1302, 453], [-1299, 453], [-1295, 456], [-1291, 458], [-1287, 454], [-1287, 436], [-1265, 436], [-1258, 428], [-1251, 427], [-1244, 429], [-1239, 432], [-1236, 438], [-1237, 449], [-1243, 452], [-1233, 452], [-1230, 432], [-1229, 421], [-1259, 420], [-1265, 428], [-1287, 428], [-1287, 422], [-1271, 407], [-1271, 383], [-1279, 383], [-1278, 328], [-1282, 328], [-1283, 381], [-1279, 386], [-1275, 388], [-1275, 397], [-1288, 411], [-1292, 419], [-1293, 427], [-1328, 428], [-1328, 409], [-1378, 409], [-1379, 440]]}, "center": {"211-258, T": [-1348, 430]}}, +{"id": 3857, "name": "Blender", "description": "Blender is a versatile and open-source 3D computer graphics software used for creating, animating, and rendering a wide range of visual content such as animations. visual effects, 3D models and video games.", "links": {"subreddit": ["blender", "blenderhelp"]}, "path": {"175-258, T": [[201, 5], [207, 11], [207, 14], [204, 16], [203, 16], [202, 15], [201, 15], [201, 14], [199, 14], [198, 15], [197, 15], [197, 14], [200, 11], [200, 10], [198, 10], [197, 9], [201, 9]]}, "center": {"175-258, T": [204, 12]}}, +{"id": 3858, "name": "Radiohead", "description": "Logo for the British rock group radiohead", "links": {"website": ["https://www.radiohead.com/"], "subreddit": ["radiohead"]}, "path": {"250-258, T": [[248, -521], [264, -521], [264, -504], [248, -504]]}, "center": {"250-258, T": [256, -512]}}, +{"id": 3859, "name": "Yaminion", "description": "Yaminion (singular and plural) is the fan mascot for Nijisanji EN's VTuber - Shu Yamino. It is basically the VR Chat banana. We all love it.", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/shu-yamino", "https://www.youtube.com/channel/UCG0rzBZV_QMP4MtWg6IjhEA", "https://twitter.com/shu_yamino"]}, "path": {"123-258, T": [[-616, -270], [-619, -270], [-619, -269], [-619, -267], [-620, -267], [-620, -265], [-621, -265], [-621, -262], [-621, -261], [-622, -261], [-622, -259], [-620, -258], [-620, -256], [-619, -256], [-617, -258], [-617, -259], [-617, -260], [-616, -260], [-616, -262], [-615, -262], [-614, -264], [-614, -266], [-615, -267], [-616, -268], [-617, -269]]}, "center": {"123-258, T": [-617, -265]}}, {"id": 3860, "name": "Estoy cansado Jefe / Im tired boss", "description": "Esoty cansao jefe is a commonly used meme in Spanish-speaking communities from the movie The Green Mile / \"La milla verde\" where a worker with his sad and tired look tells his boss that he is tired of all the recent effort\nThe meme was sent constantly in the places of organization of the Hispanic countries like Argentina when the users stayed until late hours to defend their creations.\nthe text was written by the Argentine Community in collaboration with people from the UK during the final minutes", "links": {}, "path": {"256-258": [[-49, 702], [-49, 617], [33, 618], [29, 700]]}, "center": {"256-258": [-9, 658]}}, -{"id": 3861, "name": "Copihue", "description": "Copihue (Lapageria rosea), also known as the Chilean bellflower, is the national flower of Chile.", "links": {"website": ["https://en.wikipedia.org/wiki/Lapageria"], "subreddit": ["chile"]}, "path": {"227-258": [[-1190, -909], [-1187, -908], [-1184, -907], [-1185, -905], [-1187, -905], [-1187, -903], [-1189, -896], [-1190, -893], [-1186, -892], [-1182, -890], [-1181, -892], [-1178, -892], [-1177, -896], [-1181, -900], [-1179, -901], [-1179, -903], [-1177, -904], [-1176, -904], [-1175, -906], [-1177, -907], [-1169, -908], [-1170, -907], [-1172, -905], [-1167, -901], [-1167, -898], [-1170, -895], [-1169, -893], [-1167, -893], [-1166, -891], [-1160, -894], [-1159, -895], [-1161, -897], [-1161, -901], [-1159, -905], [-1160, -907], [-1157, -908], [-1154, -905], [-1156, -902], [-1155, -901], [-1156, -899], [-1157, -895], [-1157, -893], [-1148, -893], [-1147, -896], [-1148, -897], [-1148, -903], [-1146, -903], [-1147, -906], [-1142, -909], [-1142, -910], [-1190, -910]]}, "center": {"227-258": [-1165, -905]}}, -{"id": 3862, "name": "Jay's Kingdom Discord Community", "description": "Logo of the german Discord community \"Jay's Kingdom\" (plus a cute frog).", "links": {"discord": ["cJVUs8p4AT"]}, "path": {"198-211": [[-1395, 561], [-1407, 561], [-1407, 545], [-1395, 545]], "213-258": [[-1408, 562], [-1408, 538], [-1397, 538], [-1392, 544], [-1392, 545], [-1396, 547], [-1396, 562]]}, "center": {"198-211": [-1401, 553], "213-258": [-1402, 544]}}, -{"id": 3863, "name": "Raiden Shogun headdress", "description": "A headdress from the Genshin Impact character Raiden Shogun", "links": {"subreddit": ["RaidenMains"], "discord": ["RaidenMains"]}, "path": {"250-258": [[-53, 373], [-53, 376], [-54, 377], [-56, 377], [-61, 376], [-59, 372], [-60, 371], [-60, 365], [-55, 364], [-54, 358], [-49, 361], [-46, 363], [-44, 368], [-45, 373], [-49, 373], [-51, 370]]}, "center": {"250-258": [-50, 366]}}, +{"id": 3861, "name": "Copihue", "description": "Copihue (Lapageria rosea), also known as the Chilean bellflower, is the national flower of Chile.", "links": {"website": ["https://en.wikipedia.org/wiki/Lapageria"], "subreddit": ["chile"]}, "path": {"227-258, T": [[-1190, -909], [-1187, -908], [-1184, -907], [-1185, -905], [-1187, -905], [-1187, -903], [-1189, -896], [-1190, -893], [-1186, -892], [-1182, -890], [-1181, -892], [-1178, -892], [-1177, -896], [-1181, -900], [-1179, -901], [-1179, -903], [-1177, -904], [-1176, -904], [-1175, -906], [-1177, -907], [-1169, -908], [-1170, -907], [-1172, -905], [-1167, -901], [-1167, -898], [-1170, -895], [-1169, -893], [-1167, -893], [-1166, -891], [-1160, -894], [-1159, -895], [-1161, -897], [-1161, -901], [-1159, -905], [-1160, -907], [-1157, -908], [-1154, -905], [-1156, -902], [-1155, -901], [-1156, -899], [-1157, -895], [-1157, -893], [-1148, -893], [-1147, -896], [-1148, -897], [-1148, -903], [-1146, -903], [-1147, -906], [-1142, -909], [-1142, -910], [-1190, -910]]}, "center": {"227-258, T": [-1165, -905]}}, +{"id": 3862, "name": "Jay's Kingdom Discord Community", "description": "Logo of the german Discord community \"Jay's Kingdom\" (plus a cute frog).", "links": {"discord": ["cJVUs8p4AT"]}, "path": {"198-211": [[-1395, 561], [-1407, 561], [-1407, 545], [-1395, 545]], "213-258, T": [[-1408, 562], [-1408, 538], [-1397, 538], [-1392, 544], [-1392, 545], [-1396, 547], [-1396, 562]]}, "center": {"198-211": [-1401, 553], "213-258, T": [-1402, 544]}}, +{"id": 3863, "name": "Raiden Shogun headdress", "description": "A headdress from the Genshin Impact character Raiden Shogun", "links": {"subreddit": ["RaidenMains"], "discord": ["RaidenMains"]}, "path": {"250-258, T": [[-53, 373], [-53, 376], [-54, 377], [-56, 377], [-61, 376], [-59, 372], [-60, 371], [-60, 365], [-55, 364], [-54, 358], [-49, 361], [-46, 363], [-44, 368], [-45, 373], [-49, 373], [-51, 370]]}, "center": {"250-258, T": [-50, 366]}}, {"id": 3864, "name": "El Reino", "description": "Logo of the Argentine streamer and content creator vYurita uses in his projects, ranging from a Podcast to a pvp league in minecraft.\nCreated as a team by the Argentine community in gratitude for their contributions to the organization and planning during r/Place 2022 and 2023\n\"Gracias Totales\"", "links": {"website": ["https://www.twitch.tv/vyurita", "https://www.youtube.com/user/vYurita", "https://elreino.live/"]}, "path": {"172-178": [[826, -703], [826, -719], [843, -719], [842, -703]]}, "center": {"172-178": [834, -711]}}, {"id": 3865, "name": "Serpias emu", "description": "El Streamer de nombre Serpias hizo una Emu Otori de pelo blanco y negro.", "links": {"website": ["https://www.twitch.tv/serpias/"], "subreddit": ["Serpias"]}, "path": {"19-90": [[153, 103], [153, 102], [153, 129], [172, 129], [172, 102]]}, "center": {"19-90": [163, 116]}}, -{"id": 3866, "name": "Duxo", "description": "Pingüino de Duxo, streamer peruano, mural hecho por su comunidad llama ''RETHEYS''", "links": {"website": ["https://twitch.tv/duxorethey"], "subreddit": ["Retheys"], "discord": ["duxo"]}, "path": {"250-258": [[30, 854], [55, 854], [55, 872], [30, 872]]}, "center": {"250-258": [43, 863]}}, -{"id": 3867, "name": "Cachapa", "description": "La cachapa es un plato típico a base de maíz de Venezuela.​ Debido a los intercambios migratorios con Venezuela, también se ha difundido en las Islas Canarias. ​Se cocina en budare. Se pueden comprar listas y refrigeradas en supermercados o la mezcla en paquetes en forma de harina, listas para preparar añadiendo agua, leche y aceite.\n\nCachapa is a typical corn-based dish from Venezuela. Due to migratory exchanges with Venezuela, it has also spread to the Canary Islands. It is cooked in budare. You can buy ready and refrigerated in supermarkets or the mixture in packages in the form of flour, ready to prepare by adding water, milk and oil.", "links": {"subreddit": ["vzla"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258": [[-530, -841], [-530, -829], [-513, -829], [-513, -841], [-518, -839]]}, "center": {"250-258": [-524, -834]}}, -{"id": 3868, "name": "Collab Heart (Jay's Kingdom Barbie)", "description": "Heart created as a sign of collaboration.", "links": {}, "path": {"225-258": [[-1389, 545], [-1393, 541], [-1393, 540], [-1392, 539], [-1391, 539], [-1389, 541], [-1387, 539], [-1386, 539], [-1385, 540], [-1385, 541]]}, "center": {"225-258": [-1389, 543]}}, -{"id": 3869, "name": "Italy x CJFS Among Us", "description": "The CJFS discord had an inside joke of crackshipping theirs and Italy's r/place designs due to their relationship throughout the event matching the \"enemies to lovers\" trope.", "links": {"discord": ["cjfs"]}, "path": {"250-258": [[85, 20], [96, 20], [96, 28], [85, 28], [85, 21]]}, "center": {"250-258": [91, 24]}}, -{"id": 3870, "name": "Megumin (Konosuba)", "description": "A character from the Isekai anime Konosuba. Who is known throughout the show for exclusively using explosion magic\nMade by the discord community \"Mix automata\"", "links": {"subreddit": ["konosuba", "Megumin"]}, "path": {"228-258": [[1307, -608], [1307, -580], [1331, -580], [1331, -608]]}, "center": {"228-258": [1319, -594]}}, -{"id": 3871, "name": "Emporio Alnino (Jojo's Part 6)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 6: Stone Ocean.\n\nStand: Burning Down the House\n\n\"My name... is Emporio.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1072, -91], [-1071, -92], [-1069, -92], [-1068, -91], [-1067, -87], [-1068, -86], [-1070, -86], [-1071, -87], [-1072, -90]]}, "center": {"250-258": [-1070, -90]}}, +{"id": 3866, "name": "Duxo", "description": "Pingüino de Duxo, streamer peruano, mural hecho por su comunidad llama ''RETHEYS''", "links": {"website": ["https://twitch.tv/duxorethey"], "subreddit": ["Retheys"], "discord": ["duxo"]}, "path": {"250-258, T": [[30, 854], [55, 854], [55, 872], [30, 872]]}, "center": {"250-258, T": [43, 863]}}, +{"id": 3867, "name": "Cachapa", "description": "La cachapa es un plato típico a base de maíz de Venezuela.​ Debido a los intercambios migratorios con Venezuela, también se ha difundido en las Islas Canarias. ​Se cocina en budare. Se pueden comprar listas y refrigeradas en supermercados o la mezcla en paquetes en forma de harina, listas para preparar añadiendo agua, leche y aceite.\n\nCachapa is a typical corn-based dish from Venezuela. Due to migratory exchanges with Venezuela, it has also spread to the Canary Islands. It is cooked in budare. You can buy ready and refrigerated in supermarkets or the mixture in packages in the form of flour, ready to prepare by adding water, milk and oil.", "links": {"subreddit": ["vzla"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258, T": [[-530, -841], [-530, -829], [-513, -829], [-513, -841], [-518, -839]]}, "center": {"250-258, T": [-524, -834]}}, +{"id": 3868, "name": "Collab Heart (Jay's Kingdom Barbie)", "description": "Heart created as a sign of collaboration.", "links": {}, "path": {"225-258, T": [[-1389, 545], [-1393, 541], [-1393, 540], [-1392, 539], [-1391, 539], [-1389, 541], [-1387, 539], [-1386, 539], [-1385, 540], [-1385, 541]]}, "center": {"225-258, T": [-1389, 543]}}, +{"id": 3869, "name": "Italy x CJFS Among Us", "description": "The CJFS discord had an inside joke of crackshipping theirs and Italy's r/place designs due to their relationship throughout the event matching the \"enemies to lovers\" trope.", "links": {"discord": ["cjfs"]}, "path": {"250-258, T": [[85, 20], [96, 20], [96, 28], [85, 28], [85, 21]]}, "center": {"250-258, T": [91, 24]}}, +{"id": 3870, "name": "Megumin (Konosuba)", "description": "A character from the Isekai anime Konosuba. Who is known throughout the show for exclusively using explosion magic\nMade by the discord community \"Mix automata\"", "links": {"subreddit": ["konosuba", "Megumin"]}, "path": {"228-258, T": [[1307, -608], [1307, -580], [1331, -580], [1331, -608]]}, "center": {"228-258, T": [1319, -594]}}, +{"id": 3871, "name": "Emporio Alnino (Jojo's Part 6)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 6: Stone Ocean.\n\nStand: Burning Down the House\n\n\"My name... is Emporio.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1072, -91], [-1071, -92], [-1069, -92], [-1068, -91], [-1067, -87], [-1068, -86], [-1070, -86], [-1071, -87], [-1072, -90]]}, "center": {"250-258, T": [-1070, -90]}}, {"id": 3872, "name": "Serpias Otori", "description": "El streamer serpias hizo una segunda version de la antigua emu que hizo, el cual apodo Serpias Otori", "links": {"website": ["https://www.twitch.tv/serpias/"], "subreddit": ["Serpias"]}, "path": {"119-150": [[286, -676], [286, -639], [305, -640], [305, -676]]}, "center": {"119-150": [296, -657]}}, -{"id": 3873, "name": "Weather Report (Jojo's Part 6)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 6: Stone Ocean.\n\nStand: Weather Report\n\n\"The kind of evil that doesn't even realize it's evil… Is the most disgusting kind of them all!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1072, -111], [-1072, -116], [-1067, -116], [-1066, -110], [-1067, -108], [-1070, -108]]}, "center": {"250-258": [-1069, -112]}}, -{"id": 3874, "name": "FapParaMoar", "description": "FapParaMoar or Alexs.\nMexican Twitch streamer. together with their community ''Fappers'' they made a representative mural, where you can see their iconic emote ''Okeije'', the logo of their Minecraft server ''Webroscraft'', and their logo that is an egg with Finn the Human's hat.\n\nThey are a very close community and together they made this wall art <3.\n\nFapParaMoar o Alexs.\nStreamer Mexicano de Twitch. junto a su comunidad ''Fappers'' hicieron un mural representativo, donde se pueden ver su icónico emote ''Okeije'', el logo de su servidor de Minecraft ''Webroscraft'', y su logo que es un huevo con el gorro de Finn el humano.\nSon una comunidad muy unida y juntos hicieron este mural de arte <3.", "links": {"website": ["https://www.twitch.tv/fapparamoar", "https://twitter.com/FapParaMoar"], "subreddit": ["fapparamoar"]}, "path": {"1-259": [[202, -97], [277, -97], [277, -78], [202, -78]]}, "center": {"1-259": [240, -87]}}, -{"id": 3875, "name": "Mano del Desierto", "description": "The Mano del Desierto is a large-scale sculpture of a hand located in the Atacama Desert in Chile.", "links": {"website": ["https://es.wikipedia.org/wiki/Mano_del_desierto"]}, "path": {"250-258": [[-1376, -843], [-1371, -868], [-1368, -868], [-1366, -865], [-1364, -843], [-1362, -844], [-1354, -891], [-1345, -894], [-1333, -870], [-1328, -844], [-1329, -843], [-1376, -842]]}, "center": {"250-258": [-1345, -857]}}, -{"id": 3876, "name": "Monokuma", "description": "Monokuma is a character in the Danganronpa series, acting as the mascot and main antagonist of the series", "links": {}, "path": {"250-258": [[-1323, 139], [-1306, 139], [-1306, 154], [-1323, 154], [-1324, 147]]}, "center": {"250-258": [-1315, 147]}}, -{"id": 3877, "name": "Shijima and Majime", "description": "Both main characters from \"Shimeji Simulation\"; a Japanese four-panel surreal comedy manga series written and illustrated by Tsukumizu.", "links": {"website": ["http://holedigging.club/"], "subreddit": ["shimejisimulation"], "discord": ["shimejisimulation"]}, "path": {"250-258": [[1451, -894], [1498, -894], [1498, -864], [1451, -864]]}, "center": {"250-258": [1475, -879]}}, -{"id": 3878, "name": "Bolivia Tourism Logo", "description": "A logo made by the Ministry of Culture and Tourism of Bolivia, including a Chakana (Andean Cross), a toucan and a coca leaf as letters of the logo.", "links": {"subreddit": ["BOLIVIA"]}, "path": {"250-258": [[1340, -852], [1341, -840], [1358, -840], [1390, -840], [1389, -851], [1374, -851], [1372, -855], [1363, -855], [1360, -852], [1358, -850], [1351, -850], [1348, -853], [1340, -853]]}, "center": {"250-258": [1366, -847]}}, -{"id": 3879, "name": "Verumi", "description": "Verumi is a german blue-tongued skink Vtuber who streams on Twitch!", "links": {"website": ["https://www.twitch.tv/verumivt/"]}, "path": {"164-167": [[-160, -763], [-176, -763], [-176, -746], [-160, -746], [-159, -745], [-159, -764], [-177, -764], [-177, -745], [-159, -745]], "168-258": [[-160, -769], [-176, -769], [-176, -746], [-160, -746], [-159, -770], [-177, -770], [-177, -745], [-159, -745], [-159, -770]]}, "center": {"164-167": [-176, -746], "168-258": [-176, -746]}}, -{"id": 3880, "name": "ChilloutVR Logo", "description": "ChilloutVR is a social sandbox game enabling players and content creators to create, share and explore content in a massive multiplayer metaverse alone, with friends or anyone around the world. Meet new people and explore virtual worlds together. Playable with and without a VR-Headset.", "links": {"website": ["https://store.steampowered.com/app/661130/ChilloutVR/"], "subreddit": ["ChilloutVR"], "discord": ["abi"]}, "path": {"175-258": [[-841, 619], [-841, 623], [-833, 623], [-833, 625], [-832, 625], [-832, 627], [-825, 627], [-825, 625], [-824, 625], [-824, 623], [-814, 623], [-814, 619]]}, "center": {"175-258": [-828, 623]}}, -{"id": 3881, "name": "Soarinng", "description": "Pikachu de Soarinng, streamer mexicano, hecho por su comunidad llamada ''Soarinngcitos'' o ''Chus''", "links": {"website": ["https://twitch.tv/soarinng"], "discord": ["84r6zQ6PWZ"]}, "path": {"250-258": [[55, 854], [88, 854], [88, 887], [55, 886]]}, "center": {"250-258": [72, 870]}}, -{"id": 3883, "name": "Fuck Spez", "description": "A message, partially in the alphabet of the indie game Rain World, that can be translated as \"Fuck Spez\".", "links": {"website": ["https://rainworldgame.com/"], "subreddit": ["rainworld"]}, "path": {"233-258": [[-1212, 247], [-1212, 239], [-1254, 239], [-1254, 247]]}, "center": {"233-258": [-1233, 243]}}, -{"id": 3884, "name": "Leone Abbachio (Jojo's Part 5)", "description": "A side protagonist from Jojo's Bizarre Adventure Part 5: Golden Wind.\n\nStand: Moody Blues\n\n\"Why don't you sit down and drink some tea...\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1072, -101], [-1068, -101], [-1068, -97], [-1067, -96], [-1067, -95], [-1068, -94], [-1071, -94], [-1072, -95]]}, "center": {"250-258": [-1070, -96]}}, -{"id": 3885, "name": "Iwasuke (Jojo's Part 8)", "description": "A side character of Jojo's Bizarre Adventure Part 8: Jojolion. It is also a dog.\n\n*Bark*", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1070, -106], [-1066, -106], [-1065, -104], [-1066, -103], [-1068, -103], [-1070, -105]]}, "center": {"250-258": [-1067, -104]}}, -{"id": 3886, "name": "Jumpfish", "description": "One of two fish made to show the alliance between r/twentyonepilots and r/PlaceFishCult", "links": {"subreddit": ["twentyonepilots", "PlaceFishCult"]}, "path": {"130-258": [[478, -298], [481, -298], [481, -296], [478, -296]]}, "center": {"130-258": [480, -297]}}, -{"id": 3887, "name": "Goku vs Vegeta", "description": "image of the confrontation between Goku vs Vegeta, made by the Frente Army (Community of the streamer ElZeein)", "links": {"website": ["https://www.twitch.tv/elzeein"]}, "path": {"207-252": [[-1356, -752], [-1355, -711], [-1196, -712], [-1196, -752], [-1198, -753]]}, "center": {"207-252": [-1224, -732]}}, -{"id": 3888, "name": "Flag of Palestine", "description": "", "links": {}, "path": {"250-258": [[-785, 359], [-770, 359], [-770, 368], [-785, 368]]}, "center": {"250-258": [-777, 364]}}, -{"id": 3889, "name": "GhostyStego Hunters", "description": "A small group who loves Stegosaurus", "links": {}, "path": {"197-258": [[446, -935], [446, -923], [472, -922], [473, -934], [462, -937], [449, -936]]}, "center": {"197-258": [461, -930]}}, -{"id": 3890, "name": "Hol Horse (Jojo's Part 3)", "description": "A reoccurring minor antagonist in JoJo's Bizarre Adventure Part 3: Stardust Crusaders.\nStand: The Emperor\n\n\"The gun is mightier than the sword. Man, what a memorable quote!\"", "links": {"subreddit": ["JojosBizarrePlace", "holhorsegaming"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1065, -102], [-1061, -102], [-1060, -102], [-1058, -100], [-1058, -97], [-1059, -95], [-1060, -94], [-1063, -94], [-1065, -96], [-1067, -97], [-1066, -100]]}, "center": {"250-258": [-1062, -98]}}, -{"id": 3891, "name": "Tiny landscape", "description": "A tiny landscape with a tree, sun and a flower", "links": {}, "path": {"168-258": [[379, -955], [379, -945], [392, -945], [392, -955]]}, "center": {"168-258": [386, -950]}}, -{"id": 3892, "name": "Blue Falcon", "description": "The Blue Falcon from Nintendo's F-Zero series, this is the vehicle piloted by Captain Falcon", "links": {"subreddit": ["Fzero"]}, "path": {"250-258": [[-1344, 527], [-1328, 527], [-1328, 519], [-1331, 517], [-1338, 516], [-1340, 515], [-1345, 515], [-1345, 527]]}, "center": {"250-258": [-1339, 522]}}, -{"id": 3893, "name": "Moroccan football/soccer jersey", "description": "This is the jersey of the national football team of Morocco, famous for having reached the semi-finals of the World Cup in 2022.", "links": {}, "path": {"250-258": [[701, 703], [720, 683], [752, 683], [773, 704], [761, 715], [754, 708], [754, 749], [719, 749], [719, 707], [712, 715], [701, 704]]}, "center": {"250-258": [737, 701]}}, -{"id": 3894, "name": "Nijimura Okuyasu (Jojo's Part 4)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable.\n\nStand: The Hand\n\n\"Your mom is totally hot.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1060, -110], [-1060, -107], [-1060, -105], [-1059, -103], [-1056, -103], [-1055, -105], [-1055, -108], [-1056, -110]]}, "center": {"250-258": [-1057, -106]}}, -{"id": 3895, "name": "Komugi (wheatzies)", "description": "Komugi is the mascot of the Instagram user and Discord server owner @wheatzies, and has a large number of followers usually associated with VTubers, anime, and more.", "links": {"website": ["https://instagram.com/wheatzies", "https://wheatzi.es"], "subreddit": ["wheatzies"], "discord": ["wheat"]}, "path": {"96-258": [[-558, -293], [-539, -293], [-539, -292], [-538, -291], [-537, -290], [-537, -272], [-536, -272], [-536, -271], [-537, -271], [-537, -264], [-544, -264], [-548, -269], [-557, -269]]}, "center": {"96-258": [-547, -282]}}, -{"id": 3896, "name": "Baby Shrimp and Baby Carrot", "description": "This is a part of the Carrot Farm to the left with the big shrimp.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C"]}, "path": {"248-258": [[577, 780], [574, 782], [577, 797], [576, 802], [581, 800], [586, 795], [595, 786], [586, 775], [582, 779], [582, 785], [579, 784]]}, "center": {"248-258": [582, 791]}}, -{"id": 3897, "name": "ElMariana", "description": "ElMariana cubito, arte realizado por ZAZA mejor conocida como Humberto. comunidad de ElMariana\n\nStreamer, Youtube Mexicano \nSe dedica a GAmeplayer y retos.", "links": {"website": ["https://www.youtube.com/ElMariana"]}, "path": {"250-258": [[197, -25], [212, -25], [212, -11], [197, -11]]}, "center": {"250-258": [205, -18]}}, +{"id": 3873, "name": "Weather Report (Jojo's Part 6)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 6: Stone Ocean.\n\nStand: Weather Report\n\n\"The kind of evil that doesn't even realize it's evil… Is the most disgusting kind of them all!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1072, -111], [-1072, -116], [-1067, -116], [-1066, -110], [-1067, -108], [-1070, -108]]}, "center": {"250-258, T": [-1069, -112]}}, +{"id": 3874, "name": "FapParaMoar", "description": "FapParaMoar or Alexs.\nMexican Twitch streamer. together with their community ''Fappers'' they made a representative mural, where you can see their iconic emote ''Okeije'', the logo of their Minecraft server ''Webroscraft'', and their logo that is an egg with Finn the Human's hat.\n\nThey are a very close community and together they made this wall art <3.\n\nFapParaMoar o Alexs.\nStreamer Mexicano de Twitch. junto a su comunidad ''Fappers'' hicieron un mural representativo, donde se pueden ver su icónico emote ''Okeije'', el logo de su servidor de Minecraft ''Webroscraft'', y su logo que es un huevo con el gorro de Finn el humano.\nSon una comunidad muy unida y juntos hicieron este mural de arte <3.", "links": {"website": ["https://www.twitch.tv/fapparamoar", "https://twitter.com/FapParaMoar"], "subreddit": ["fapparamoar"]}, "path": {"1-259, T": [[202, -97], [277, -97], [277, -78], [202, -78]]}, "center": {"1-259, T": [240, -87]}}, +{"id": 3875, "name": "Mano del Desierto", "description": "The Mano del Desierto is a large-scale sculpture of a hand located in the Atacama Desert in Chile.", "links": {"website": ["https://es.wikipedia.org/wiki/Mano_del_desierto"]}, "path": {"250-258, T": [[-1376, -843], [-1371, -868], [-1368, -868], [-1366, -865], [-1364, -843], [-1362, -844], [-1354, -891], [-1345, -894], [-1333, -870], [-1328, -844], [-1329, -843], [-1376, -842]]}, "center": {"250-258, T": [-1345, -857]}}, +{"id": 3876, "name": "Monokuma", "description": "Monokuma is a character in the Danganronpa series, acting as the mascot and main antagonist of the series", "links": {}, "path": {"250-258, T": [[-1323, 139], [-1306, 139], [-1306, 154], [-1323, 154], [-1324, 147]]}, "center": {"250-258, T": [-1315, 147]}}, +{"id": 3877, "name": "Shijima and Majime", "description": "Both main characters from \"Shimeji Simulation\"; a Japanese four-panel surreal comedy manga series written and illustrated by Tsukumizu.", "links": {"website": ["http://holedigging.club/"], "subreddit": ["shimejisimulation"], "discord": ["shimejisimulation"]}, "path": {"250-258, T": [[1451, -894], [1498, -894], [1498, -864], [1451, -864]]}, "center": {"250-258, T": [1475, -879]}}, +{"id": 3878, "name": "Bolivia Tourism Logo", "description": "A logo made by the Ministry of Culture and Tourism of Bolivia, including a Chakana (Andean Cross), a toucan and a coca leaf as letters of the logo.", "links": {"subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[1340, -852], [1341, -840], [1358, -840], [1390, -840], [1389, -851], [1374, -851], [1372, -855], [1363, -855], [1360, -852], [1358, -850], [1351, -850], [1348, -853], [1340, -853]]}, "center": {"250-258, T": [1366, -847]}}, +{"id": 3879, "name": "Verumi", "description": "Verumi is a german blue-tongued skink Vtuber who streams on Twitch!", "links": {"website": ["https://www.twitch.tv/verumivt/"]}, "path": {"164-167": [[-160, -763], [-176, -763], [-176, -746], [-160, -746], [-159, -745], [-159, -764], [-177, -764], [-177, -745], [-159, -745]], "168-258, T": [[-160, -769], [-176, -769], [-176, -746], [-160, -746], [-159, -770], [-177, -770], [-177, -745], [-159, -745], [-159, -770]]}, "center": {"164-167": [-176, -746], "168-258, T": [-176, -746]}}, +{"id": 3880, "name": "ChilloutVR Logo", "description": "ChilloutVR is a social sandbox game enabling players and content creators to create, share and explore content in a massive multiplayer metaverse alone, with friends or anyone around the world. Meet new people and explore virtual worlds together. Playable with and without a VR-Headset.", "links": {"website": ["https://store.steampowered.com/app/661130/ChilloutVR/"], "subreddit": ["ChilloutVR"], "discord": ["abi"]}, "path": {"175-258, T": [[-841, 619], [-841, 623], [-833, 623], [-833, 625], [-832, 625], [-832, 627], [-825, 627], [-825, 625], [-824, 625], [-824, 623], [-814, 623], [-814, 619]]}, "center": {"175-258, T": [-828, 623]}}, +{"id": 3881, "name": "Soarinng", "description": "Pikachu de Soarinng, streamer mexicano, hecho por su comunidad llamada ''Soarinngcitos'' o ''Chus''", "links": {"website": ["https://twitch.tv/soarinng"], "discord": ["84r6zQ6PWZ"]}, "path": {"250-258, T": [[55, 854], [88, 854], [88, 887], [55, 886]]}, "center": {"250-258, T": [72, 870]}}, +{"id": 3883, "name": "Fuck Spez", "description": "A message, partially in the alphabet of the indie game Rain World, that can be translated as \"Fuck Spez\".", "links": {"website": ["https://rainworldgame.com/"], "subreddit": ["rainworld"]}, "path": {"233-258, T": [[-1212, 247], [-1212, 239], [-1254, 239], [-1254, 247]]}, "center": {"233-258, T": [-1233, 243]}}, +{"id": 3884, "name": "Leone Abbachio (Jojo's Part 5)", "description": "A side protagonist from Jojo's Bizarre Adventure Part 5: Golden Wind.\n\nStand: Moody Blues\n\n\"Why don't you sit down and drink some tea...\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1072, -101], [-1068, -101], [-1068, -97], [-1067, -96], [-1067, -95], [-1068, -94], [-1071, -94], [-1072, -95]]}, "center": {"250-258, T": [-1070, -96]}}, +{"id": 3885, "name": "Iwasuke (Jojo's Part 8)", "description": "A side character of Jojo's Bizarre Adventure Part 8: Jojolion. It is also a dog.\n\n*Bark*", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1070, -106], [-1066, -106], [-1065, -104], [-1066, -103], [-1068, -103], [-1070, -105]]}, "center": {"250-258, T": [-1067, -104]}}, +{"id": 3886, "name": "Jumpfish", "description": "One of two fish made to show the alliance between r/twentyonepilots and r/PlaceFishCult", "links": {"subreddit": ["twentyonepilots", "PlaceFishCult"]}, "path": {"130-258, T": [[478, -298], [481, -298], [481, -296], [478, -296]]}, "center": {"130-258, T": [480, -297]}}, +{"id": 3887, "name": "Goku vs Vegeta", "description": "image of the confrontation between Goku vs Vegeta, made by the Frente Army (Community of the streamer ElZeein)", "links": {"website": ["https://www.twitch.tv/elzeein"]}, "path": {"207-252, T": [[-1356, -752], [-1355, -711], [-1196, -712], [-1196, -752], [-1198, -753]]}, "center": {"207-252, T": [-1224, -732]}}, +{"id": 3888, "name": "Flag of Palestine", "description": "", "links": {}, "path": {"250-258, T": [[-785, 359], [-770, 359], [-770, 368], [-785, 368]]}, "center": {"250-258, T": [-777, 364]}}, +{"id": 3889, "name": "GhostyStego Hunters", "description": "A small group who loves Stegosaurus", "links": {}, "path": {"197-258, T": [[446, -935], [446, -923], [472, -922], [473, -934], [462, -937], [449, -936]]}, "center": {"197-258, T": [461, -930]}}, +{"id": 3890, "name": "Hol Horse (Jojo's Part 3)", "description": "A reoccurring minor antagonist in JoJo's Bizarre Adventure Part 3: Stardust Crusaders.\nStand: The Emperor\n\n\"The gun is mightier than the sword. Man, what a memorable quote!\"", "links": {"subreddit": ["JojosBizarrePlace", "holhorsegaming"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1065, -102], [-1061, -102], [-1060, -102], [-1058, -100], [-1058, -97], [-1059, -95], [-1060, -94], [-1063, -94], [-1065, -96], [-1067, -97], [-1066, -100]]}, "center": {"250-258, T": [-1062, -98]}}, +{"id": 3891, "name": "Tiny landscape", "description": "A tiny landscape with a tree, sun and a flower", "links": {}, "path": {"168-258, T": [[379, -955], [379, -945], [392, -945], [392, -955]]}, "center": {"168-258, T": [386, -950]}}, +{"id": 3892, "name": "Blue Falcon", "description": "The Blue Falcon from Nintendo's F-Zero series, this is the vehicle piloted by Captain Falcon", "links": {"subreddit": ["Fzero"]}, "path": {"250-258, T": [[-1344, 527], [-1328, 527], [-1328, 519], [-1331, 517], [-1338, 516], [-1340, 515], [-1345, 515], [-1345, 527]]}, "center": {"250-258, T": [-1339, 522]}}, +{"id": 3893, "name": "Moroccan football/soccer jersey", "description": "This is the jersey of the national football team of Morocco, famous for having reached the semi-finals of the World Cup in 2022.", "links": {}, "path": {"250-258, T": [[701, 703], [720, 683], [752, 683], [773, 704], [761, 715], [754, 708], [754, 749], [719, 749], [719, 707], [712, 715], [701, 704]]}, "center": {"250-258, T": [737, 701]}}, +{"id": 3894, "name": "Nijimura Okuyasu (Jojo's Part 4)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable.\n\nStand: The Hand\n\n\"Your mom is totally hot.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1060, -110], [-1060, -107], [-1060, -105], [-1059, -103], [-1056, -103], [-1055, -105], [-1055, -108], [-1056, -110]]}, "center": {"250-258, T": [-1057, -106]}}, +{"id": 3895, "name": "Komugi (wheatzies)", "description": "Komugi is the mascot of the Instagram user and Discord server owner @wheatzies, and has a large number of followers usually associated with VTubers, anime, and more.", "links": {"website": ["https://instagram.com/wheatzies", "https://wheatzi.es"], "subreddit": ["wheatzies"], "discord": ["wheat"]}, "path": {"96-258, T": [[-558, -293], [-539, -293], [-539, -292], [-538, -291], [-537, -290], [-537, -272], [-536, -272], [-536, -271], [-537, -271], [-537, -264], [-544, -264], [-548, -269], [-557, -269]]}, "center": {"96-258, T": [-547, -282]}}, +{"id": 3896, "name": "Baby Shrimp and Baby Carrot", "description": "This is a part of the Carrot Farm to the left with the big shrimp.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C"]}, "path": {"248-258, T": [[577, 780], [574, 782], [577, 797], [576, 802], [581, 800], [586, 795], [595, 786], [586, 775], [582, 779], [582, 785], [579, 784]]}, "center": {"248-258, T": [582, 791]}}, +{"id": 3897, "name": "ElMariana", "description": "ElMariana cubito, arte realizado por ZAZA mejor conocida como Humberto. comunidad de ElMariana\n\nStreamer, Youtube Mexicano \nSe dedica a GAmeplayer y retos.", "links": {"website": ["https://www.youtube.com/ElMariana"]}, "path": {"250-258, T": [[197, -25], [212, -25], [212, -11], [197, -11]]}, "center": {"250-258, T": [205, -18]}}, {"id": 3898, "name": "Brick Hill Brick", "description": "a popular representation of Brick-Hill", "links": {}, "path": {"207-244": [[493, 910], [500, 910], [500, 903], [493, 903]]}, "center": {"207-244": [497, 907]}}, -{"id": 3899, "name": "Iggy (Jojo's Part 3)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 3: Stardust Crusaders. He is also a dog.\n\nStand: The fool\n\n\"I guess I don't have the heart to abandon a kid who likes dogs!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1079, -107], [-1075, -107], [-1075, -105], [-1073, -105], [-1074, -103], [-1076, -103], [-1078, -104]]}, "center": {"250-258": [-1077, -105]}}, -{"id": 3900, "name": "Startend", "description": "A group of Hololive vtubers consisting of Minato Aqua, Hoshimachi Suisei, and Tokoyami Towa. The group formed in order to participate in the Apex tournament VSaikyou. The name Startend came from the fact that it was their first and last tournament together.\n\nEven tho, as promised, they never participated in a tournament together again, they have kept close tie, often collaborating together, and have also released two songs covers as Startend.", "links": {"website": ["https://youtu.be/XpgSrULHibg", "https://www.youtube.com/@HoshimachiSuisei", "https://www.youtube.com/channel/UC1uv2Oq6kNxgATlCiez59hw", "https://www.youtube.com/channel/UC1opHUrw8rvnsadT-iGp7Cg"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"208-258": [[1292, -787], [1301, -802], [1307, -813], [1315, -818], [1318, -820], [1323, -818], [1329, -817], [1329, -814], [1332, -809], [1333, -805], [1337, -800], [1342, -793], [1342, -797], [1339, -801], [1336, -806], [1339, -808], [1337, -811], [1336, -817], [1338, -822], [1343, -827], [1352, -833], [1362, -828], [1364, -815], [1367, -812], [1363, -805], [1360, -798], [1355, -791], [1359, -793], [1365, -799], [1367, -808], [1370, -811], [1368, -814], [1370, -816], [1374, -812], [1373, -819], [1377, -817], [1381, -818], [1392, -817], [1394, -817], [1397, -819], [1397, -813], [1402, -816], [1403, -812], [1401, -811], [1404, -806], [1404, -800], [1405, -797], [1411, -792], [1406, -786], [1398, -786], [1398, -789], [1402, -791], [1400, -794], [1398, -798], [1397, -797], [1397, -791], [1395, -788], [1392, -786], [1372, -786], [1373, -788], [1375, -790], [1374, -792], [1373, -797], [1372, -798], [1368, -792], [1371, -789], [1370, -786], [1363, -786], [1360, -791], [1356, -791], [1356, -787], [1345, -787], [1346, -786], [1332, -786], [1330, -788], [1331, -794], [1332, -796], [1330, -798], [1328, -792], [1322, -790], [1324, -786], [1314, -786], [1314, -789], [1316, -790], [1309, -794], [1308, -798], [1306, -795], [1308, -789], [1305, -786], [1292, -786]]}, "center": {"208-258": [1385, -804]}}, -{"id": 3901, "name": "r/PlaceDE & r/PlaceNL Kabedon", "description": "Kabedon in shōjo manga or anime is a flirtatious act. The seducer forces the object of their desire with their back to the wall by placing their open palm on the wall behind them and reducing the distance between themselves.\n\nThis is a collaboration of r/PlaceDE and r/PlaceNL, and it's meant to symbolize the intimate cooperative relationship the communities developed during the third edition of r/Place.\n\nThe person making the beguiling advance is a German boy, dressed in traditional lederhosen and wearing a Tyrolean hat. He is holding a frothy pint of beer.\n\nThe person he is seducing is a Dutch girl depicting Frau Antje. She is dressed in a traditional dress from Volendam and wearing a Dutch bonnet. She's carrying a wheel of cheese by means of a handbag.", "links": {"website": ["https://en.wikipedia.org/wiki/Kabedon", "https://en.wikipedia.org/wiki/Frau_Antje"], "subreddit": ["PlaceDE", "PlaceNL"], "discord": ["placede", "placenl"]}, "path": {"250-258": [[1279, -390], [1279, -401], [1281, -407], [1281, -410], [1282, -410], [1282, -411], [1281, -412], [1281, -413], [1282, -414], [1282, -416], [1283, -417], [1284, -419], [1284, -422], [1285, -423], [1285, -425], [1286, -426], [1286, -427], [1285, -427], [1285, -428], [1284, -428], [1284, -429], [1283, -429], [1282, -429], [1282, -430], [1281, -430], [1281, -431], [1281, -433], [1280, -433], [1280, -437], [1281, -438], [1281, -440], [1282, -441], [1282, -443], [1283, -443], [1283, -445], [1283, -446], [1284, -447], [1284, -449], [1285, -449], [1285, -450], [1286, -451], [1286, -453], [1287, -454], [1288, -455], [1291, -459], [1291, -460], [1293, -462], [1293, -464], [1294, -464], [1295, -465], [1297, -466], [1299, -467], [1303, -468], [1307, -469], [1313, -470], [1314, -475], [1313, -476], [1313, -480], [1312, -481], [1312, -485], [1310, -486], [1310, -487], [1310, -488], [1309, -488], [1309, -490], [1309, -491], [1310, -492], [1314, -496], [1317, -497], [1319, -498], [1320, -498], [1325, -502], [1328, -504], [1370, -504], [1375, -494], [1381, -503], [1386, -503], [1387, -482], [1381, -476], [1380, -472], [1381, -462], [1380, -459], [1382, -455], [1381, -451], [1377, -445], [1378, -441], [1378, -431], [1379, -424], [1378, -412], [1375, -408], [1371, -402], [1370, -399], [1369, -396], [1368, -394], [1367, -392], [1366, -391], [1365, -390]]}, "center": {"250-258": [1335, -433]}}, -{"id": 3902, "name": "Mascotas BCI", "description": "Banco de Crédito e Inversiones (BCI) is a Chilean bank specializing in savings & deposits, securities brokerage, asset management and insurance. BCI was the Latin American partner for Bear Stearns. BCI was formed and is still owned by the Yarur family.", "links": {"website": ["https://es.wikipedia.org/wiki/Banco_de_Crédito_e_Inversiones"]}, "path": {"250-258": [[-1307, -757], [-1308, -774], [-1299, -811], [-1274, -814], [-1257, -807], [-1255, -792], [-1246, -786], [-1242, -779], [-1243, -771], [-1241, -766], [-1248, -762], [-1249, -760], [-1249, -756], [-1308, -755], [-1308, -759]]}, "center": {"250-258": [-1279, -782]}}, -{"id": 3903, "name": "Mimicry", "description": "Mimicry is a character created by the artist @Birdaeblue, and is the mascot of the silly bird-themed Discord server BIRD CULT!", "links": {"website": ["https://birdae.carrd.co"], "subreddit": ["Birdaecult"], "discord": ["P9vRt5KAfP"]}, "path": {"243-258": [[-1184, 99], [-1184, 111], [-1175, 111], [-1175, 99]]}, "center": {"243-258": [-1179, 105]}}, -{"id": 3904, "name": "Shrimp", "description": "This shrimp was made because r/farmcarrots made it in r/place 2022. It's a part of the Carrot Farm. It was proposed to Portugal to make a shrimp on the bottom left of their sea but they refused because it was too big. We then redrew the template to make it fit inside this hole of O Carente. <3", "links": {"subreddit": ["shrimptank"], "discord": ["zgx2FkWB3C"]}, "path": {"203-258": [[551, 783], [551, 795], [554, 806], [562, 816], [565, 812], [567, 797], [562, 789], [555, 785]]}, "center": {"203-258": [560, 799]}}, -{"id": 3905, "name": "Pony0n", "description": "Twitch Streamer", "links": {"website": ["https://www.twitch.tv/pony0n", "https://www.youtube.com/@pony0n"], "discord": ["SGgfUhdBzH"]}, "path": {"235-258": [[1402, -943], [1402, -945], [1404, -947], [1416, -948], [1419, -943], [1417, -942], [1416, -943], [1417, -939], [1417, -935], [1415, -935], [1415, -932], [1405, -932], [1405, -935], [1404, -935], [1403, -936], [1403, -942]]}, "center": {"235-258": [1410, -940]}}, -{"id": 3906, "name": "shloHase from Shlorox", "description": "", "links": {"website": ["https://www.twitch.tv/shlorox"]}, "path": {"250-258": [[135, -713], [135, -677], [171, -676], [171, -712]]}, "center": {"250-258": [153, -694]}}, -{"id": 3907, "name": "Volkacio", "description": "This is a draw represents the ship between Horacio Pérez (Perxitaa) and Victor Volkov (MomonKunn) from a GTA roleplay series. This ship was born in 2020 in the server SpainRP and today they continue their story as a couple in InfamesRP.", "links": {"subreddit": ["volkacio"]}, "path": {"231-258": [[-1016, 48], [-1017, 88], [-1002, 88], [-1001, 48]]}, "center": {"231-258": [-1009, 68]}}, -{"id": 3908, "name": "Frena", "description": "The collaborative work between ƎNAlliance Extinction Party and PlaceFR for the French Lattice depicting Ena \n\nObjectivly the best collab work!", "links": {"subreddit": ["placeFR", "ENA", "france"], "discord": ["placeFR"]}, "path": {"157-258": [[-409, 951], [-411, 948], [-411, 943], [-412, 922], [-410, 901], [-368, 901], [-371, 947], [-373, 949], [-380, 950], [-381, 952], [-409, 952]]}, "center": {"157-258": [-390, 922]}}, -{"id": 3909, "name": "Arepa", "description": "Un Alimento Venezolano, Pero robado por colombia originalmente redonda pero los colombianos la hacen cuadrada\n\nA Venezuelan Food, but stolen by Colombia originally round but Colombians make it square", "links": {"subreddit": ["colombia"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258": [[-721, 295], [-715, 301], [-710, 295], [-715, 291]]}, "center": {"250-258": [-715, 296]}}, -{"id": 3910, "name": "TLVISION (INCARCERATED)", "description": "TLVISION is a New York-based brand founded by a talented graphic designer and video producer. The brand's logo, \"TL,\" is showcased in this section alongside a not completed depiction of their latest project, \"INCARCERATED.\" This project shows their expertise in using Adobe Photoshop, Premiere, and After Effects, as well as their specialized skills in VHS video production. Check out the website below to see TLVISION's work.", "links": {"website": ["https://www.thetlvision.com/", "https://www.instagram.com/tlvisionn/", "https://youtube.com/@timlaus"]}, "path": {"241-258": [[1443, 85], [1443, 91], [1433, 91], [1433, 72], [1446, 72], [1446, 85]]}, "center": {"241-258": [1440, 79]}}, -{"id": 3911, "name": "Cheese", "description": "A piece of cheese with a Dutch flag on it. Cheese is a very common snack in the Netherlands.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Cheese"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"109-258": [[687, -462], [696, -458], [704, -460], [702, -472], [695, -476], [693, -489], [704, -488], [703, -499], [690, -498], [693, -478], [690, -474], [687, -472]]}, "center": {"109-258": [695, -467]}}, -{"id": 3912, "name": "Hunebed/Dolmen", "description": "Dolmens are, according to the current theory, remains of prehistoric burial chambers. However, they are not to be regarded as tombs in the ordinary sense, but rather as charnel houses. It cannot be said with certainty that grave signaling was the original function of all these structures. There are dolmens that are believed to have served only as a sanctuary.\n\nIn the Netherlands they are mainly found in Drenthe, often on the Hondsrug. They were built between 3350 and 3050 BC, in the westernmost extension of the funnel-neck beaker culture territory. A total of 52 dolmens have been preserved there in the Netherlands.", "links": {"subreddit": ["PlaceNL"], "discord": ["PlaceNL"]}, "path": {"152-258": [[119, -455], [175, -455], [175, -456], [174, -457], [174, -461], [173, -462], [172, -463], [171, -464], [170, -465], [166, -465], [166, -467], [162, -467], [161, -466], [158, -466], [158, -465], [156, -465], [156, -464], [155, -464], [154, -464], [154, -465], [153, -465], [153, -466], [152, -466], [152, -465], [149, -465], [149, -464], [148, -464], [148, -463], [147, -463], [147, -462], [146, -462], [145, -461], [144, -461], [144, -462], [144, -463], [145, -463], [143, -463], [143, -464], [141, -464], [141, -465], [137, -465], [137, -464], [133, -464], [133, -463], [132, -463], [132, -462], [131, -462], [131, -459], [130, -459], [129, -459], [129, -460], [128, -460], [128, -461], [126, -461], [125, -460], [124, -459], [123, -458], [123, -457], [123, -456], [120, -456]]}, "center": {"152-258": [162, -460]}}, -{"id": 3913, "name": "Bug-eaten (Jojo's Part 4)", "description": "A minor antagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable.\n\nStand: Ratt\n\n\"Screech.mp3\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1059, -82], [-1058, -83], [-1056, -84], [-1055, -84], [-1054, -83], [-1052, -82], [-1054, -81], [-1057, -81]]}, "center": {"250-258": [-1055, -82]}}, -{"id": 3914, "name": "Bolivian Bufeo", "description": "The \"Bolivian bufeo\" or \"Bolivian pink river dolphin\" is a nickname given to the Bolivian Amazon Dolphin Inia boliviensis by the local Bolivian people and as such is recognized internationally.", "links": {"website": ["https://faunagua.org/bufeo/#01"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[234, -31], [238, -27], [242, -36], [236, -43], [231, -40], [227, -36], [233, -36], [239, -32]]}, "center": {"250-258": [235, -39]}}, -{"id": 3915, "name": "Puffball (BFDI)", "description": "A character from the Battle For Dream Island series (Appeared in BFDIA, IDFB, BFB, and TPOT)", "links": {"subreddit": ["BattleForDreamIsland"]}, "path": {"215-258": [[1011, -94], [1007, -94], [1005, -92], [1006, -88], [1008, -86], [1011, -86], [1013, -91], [1012, -93], [1007, -94], [1008, -94]]}, "center": {"215-258": [1009, -90]}}, +{"id": 3899, "name": "Iggy (Jojo's Part 3)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 3: Stardust Crusaders. He is also a dog.\n\nStand: The fool\n\n\"I guess I don't have the heart to abandon a kid who likes dogs!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1079, -107], [-1075, -107], [-1075, -105], [-1073, -105], [-1074, -103], [-1076, -103], [-1078, -104]]}, "center": {"250-258, T": [-1077, -105]}}, +{"id": 3900, "name": "Startend", "description": "A group of Hololive vtubers consisting of Minato Aqua, Hoshimachi Suisei, and Tokoyami Towa. The group formed in order to participate in the Apex tournament VSaikyou. The name Startend came from the fact that it was their first and last tournament together.\n\nEven tho, as promised, they never participated in a tournament together again, they have kept close tie, often collaborating together, and have also released two songs covers as Startend.", "links": {"website": ["https://youtu.be/XpgSrULHibg", "https://www.youtube.com/@HoshimachiSuisei", "https://www.youtube.com/channel/UC1uv2Oq6kNxgATlCiez59hw", "https://www.youtube.com/channel/UC1opHUrw8rvnsadT-iGp7Cg"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"208-258, T": [[1292, -787], [1301, -802], [1307, -813], [1315, -818], [1318, -820], [1323, -818], [1329, -817], [1329, -814], [1332, -809], [1333, -805], [1337, -800], [1342, -793], [1342, -797], [1339, -801], [1336, -806], [1339, -808], [1337, -811], [1336, -817], [1338, -822], [1343, -827], [1352, -833], [1362, -828], [1364, -815], [1367, -812], [1363, -805], [1360, -798], [1355, -791], [1359, -793], [1365, -799], [1367, -808], [1370, -811], [1368, -814], [1370, -816], [1374, -812], [1373, -819], [1377, -817], [1381, -818], [1392, -817], [1394, -817], [1397, -819], [1397, -813], [1402, -816], [1403, -812], [1401, -811], [1404, -806], [1404, -800], [1405, -797], [1411, -792], [1406, -786], [1398, -786], [1398, -789], [1402, -791], [1400, -794], [1398, -798], [1397, -797], [1397, -791], [1395, -788], [1392, -786], [1372, -786], [1373, -788], [1375, -790], [1374, -792], [1373, -797], [1372, -798], [1368, -792], [1371, -789], [1370, -786], [1363, -786], [1360, -791], [1356, -791], [1356, -787], [1345, -787], [1346, -786], [1332, -786], [1330, -788], [1331, -794], [1332, -796], [1330, -798], [1328, -792], [1322, -790], [1324, -786], [1314, -786], [1314, -789], [1316, -790], [1309, -794], [1308, -798], [1306, -795], [1308, -789], [1305, -786], [1292, -786]]}, "center": {"208-258, T": [1385, -804]}}, +{"id": 3901, "name": "r/PlaceDE & r/PlaceNL Kabedon", "description": "Kabedon in shōjo manga or anime is a flirtatious act. The seducer forces the object of their desire with their back to the wall by placing their open palm on the wall behind them and reducing the distance between themselves.\n\nThis is a collaboration of r/PlaceDE and r/PlaceNL, and it's meant to symbolize the intimate cooperative relationship the communities developed during the third edition of r/Place.\n\nThe person making the beguiling advance is a German boy, dressed in traditional lederhosen and wearing a Tyrolean hat. He is holding a frothy pint of beer.\n\nThe person he is seducing is a Dutch girl depicting Frau Antje. She is dressed in a traditional dress from Volendam and wearing a Dutch bonnet. She's carrying a wheel of cheese by means of a handbag.", "links": {"website": ["https://en.wikipedia.org/wiki/Kabedon", "https://en.wikipedia.org/wiki/Frau_Antje"], "subreddit": ["PlaceDE", "PlaceNL"], "discord": ["placede", "placenl"]}, "path": {"250-258, T": [[1279, -390], [1279, -401], [1281, -407], [1281, -410], [1282, -410], [1282, -411], [1281, -412], [1281, -413], [1282, -414], [1282, -416], [1283, -417], [1284, -419], [1284, -422], [1285, -423], [1285, -425], [1286, -426], [1286, -427], [1285, -427], [1285, -428], [1284, -428], [1284, -429], [1283, -429], [1282, -429], [1282, -430], [1281, -430], [1281, -431], [1281, -433], [1280, -433], [1280, -437], [1281, -438], [1281, -440], [1282, -441], [1282, -443], [1283, -443], [1283, -445], [1283, -446], [1284, -447], [1284, -449], [1285, -449], [1285, -450], [1286, -451], [1286, -453], [1287, -454], [1288, -455], [1291, -459], [1291, -460], [1293, -462], [1293, -464], [1294, -464], [1295, -465], [1297, -466], [1299, -467], [1303, -468], [1307, -469], [1313, -470], [1314, -475], [1313, -476], [1313, -480], [1312, -481], [1312, -485], [1310, -486], [1310, -487], [1310, -488], [1309, -488], [1309, -490], [1309, -491], [1310, -492], [1314, -496], [1317, -497], [1319, -498], [1320, -498], [1325, -502], [1328, -504], [1370, -504], [1375, -494], [1381, -503], [1386, -503], [1387, -482], [1381, -476], [1380, -472], [1381, -462], [1380, -459], [1382, -455], [1381, -451], [1377, -445], [1378, -441], [1378, -431], [1379, -424], [1378, -412], [1375, -408], [1371, -402], [1370, -399], [1369, -396], [1368, -394], [1367, -392], [1366, -391], [1365, -390]]}, "center": {"250-258, T": [1335, -433]}}, +{"id": 3902, "name": "Mascotas BCI", "description": "Banco de Crédito e Inversiones (BCI) is a Chilean bank specializing in savings & deposits, securities brokerage, asset management and insurance. BCI was the Latin American partner for Bear Stearns. BCI was formed and is still owned by the Yarur family.", "links": {"website": ["https://es.wikipedia.org/wiki/Banco_de_Crédito_e_Inversiones"]}, "path": {"250-258, T": [[-1307, -757], [-1308, -774], [-1299, -811], [-1274, -814], [-1257, -807], [-1255, -792], [-1246, -786], [-1242, -779], [-1243, -771], [-1241, -766], [-1248, -762], [-1249, -760], [-1249, -756], [-1308, -755], [-1308, -759]]}, "center": {"250-258, T": [-1279, -782]}}, +{"id": 3903, "name": "Mimicry", "description": "Mimicry is a character created by the artist @Birdaeblue, and is the mascot of the silly bird-themed Discord server BIRD CULT!", "links": {"website": ["https://birdae.carrd.co"], "subreddit": ["Birdaecult"], "discord": ["P9vRt5KAfP"]}, "path": {"243-258, T": [[-1184, 99], [-1184, 111], [-1175, 111], [-1175, 99]]}, "center": {"243-258, T": [-1179, 105]}}, +{"id": 3904, "name": "Shrimp", "description": "This shrimp was made because r/farmcarrots made it in r/place 2022. It's a part of the Carrot Farm. It was proposed to Portugal to make a shrimp on the bottom left of their sea but they refused because it was too big. We then redrew the template to make it fit inside this hole of O Carente. <3", "links": {"subreddit": ["shrimptank"], "discord": ["zgx2FkWB3C"]}, "path": {"203-258, T": [[551, 783], [551, 795], [554, 806], [562, 816], [565, 812], [567, 797], [562, 789], [555, 785]]}, "center": {"203-258, T": [560, 799]}}, +{"id": 3905, "name": "Pony0n", "description": "Twitch Streamer", "links": {"website": ["https://www.twitch.tv/pony0n", "https://www.youtube.com/@pony0n"], "discord": ["SGgfUhdBzH"]}, "path": {"235-258, T": [[1402, -943], [1402, -945], [1404, -947], [1416, -948], [1419, -943], [1417, -942], [1416, -943], [1417, -939], [1417, -935], [1415, -935], [1415, -932], [1405, -932], [1405, -935], [1404, -935], [1403, -936], [1403, -942]]}, "center": {"235-258, T": [1410, -940]}}, +{"id": 3906, "name": "shloHase from Shlorox", "description": "", "links": {"website": ["https://www.twitch.tv/shlorox"]}, "path": {"250-258, T": [[135, -713], [135, -677], [171, -676], [171, -712]]}, "center": {"250-258, T": [153, -694]}}, +{"id": 3907, "name": "Volkacio", "description": "This is a draw represents the ship between Horacio Pérez (Perxitaa) and Victor Volkov (MomonKunn) from a GTA roleplay series. This ship was born in 2020 in the server SpainRP and today they continue their story as a couple in InfamesRP.", "links": {"subreddit": ["volkacio"]}, "path": {"231-258, T": [[-1016, 48], [-1017, 88], [-1002, 88], [-1001, 48]]}, "center": {"231-258, T": [-1009, 68]}}, +{"id": 3908, "name": "Frena", "description": "The collaborative work between ƎNAlliance Extinction Party and PlaceFR for the French Lattice depicting Ena \n\nObjectivly the best collab work!", "links": {"subreddit": ["placeFR", "ENA", "france"], "discord": ["placeFR"]}, "path": {"157-258, T": [[-409, 951], [-411, 948], [-411, 943], [-412, 922], [-410, 901], [-368, 901], [-371, 947], [-373, 949], [-380, 950], [-381, 952], [-409, 952]]}, "center": {"157-258, T": [-390, 922]}}, +{"id": 3909, "name": "Arepa", "description": "Un Alimento Venezolano, Pero robado por colombia originalmente redonda pero los colombianos la hacen cuadrada\n\nA Venezuelan Food, but stolen by Colombia originally round but Colombians make it square", "links": {"subreddit": ["colombia"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258, T": [[-721, 295], [-715, 301], [-710, 295], [-715, 291]]}, "center": {"250-258, T": [-715, 296]}}, +{"id": 3910, "name": "TLVISION (INCARCERATED)", "description": "TLVISION is a New York-based brand founded by a talented graphic designer and video producer. The brand's logo, \"TL,\" is showcased in this section alongside a not completed depiction of their latest project, \"INCARCERATED.\" This project shows their expertise in using Adobe Photoshop, Premiere, and After Effects, as well as their specialized skills in VHS video production. Check out the website below to see TLVISION's work.", "links": {"website": ["https://www.thetlvision.com/", "https://www.instagram.com/tlvisionn/", "https://youtube.com/@timlaus"]}, "path": {"241-258, T": [[1443, 85], [1443, 91], [1433, 91], [1433, 72], [1446, 72], [1446, 85]]}, "center": {"241-258, T": [1440, 79]}}, +{"id": 3911, "name": "Cheese", "description": "A piece of cheese with a Dutch flag on it. Cheese is a very common snack in the Netherlands.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Cheese"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"109-258, T": [[687, -462], [696, -458], [704, -460], [702, -472], [695, -476], [693, -489], [704, -488], [703, -499], [690, -498], [693, -478], [690, -474], [687, -472]]}, "center": {"109-258, T": [695, -467]}}, +{"id": 3912, "name": "Hunebed/Dolmen", "description": "Dolmens are, according to the current theory, remains of prehistoric burial chambers. However, they are not to be regarded as tombs in the ordinary sense, but rather as charnel houses. It cannot be said with certainty that grave signaling was the original function of all these structures. There are dolmens that are believed to have served only as a sanctuary.\n\nIn the Netherlands they are mainly found in Drenthe, often on the Hondsrug. They were built between 3350 and 3050 BC, in the westernmost extension of the funnel-neck beaker culture territory. A total of 52 dolmens have been preserved there in the Netherlands.", "links": {"subreddit": ["PlaceNL"], "discord": ["PlaceNL"]}, "path": {"152-258, T": [[119, -455], [175, -455], [175, -456], [174, -457], [174, -461], [173, -462], [172, -463], [171, -464], [170, -465], [166, -465], [166, -467], [162, -467], [161, -466], [158, -466], [158, -465], [156, -465], [156, -464], [155, -464], [154, -464], [154, -465], [153, -465], [153, -466], [152, -466], [152, -465], [149, -465], [149, -464], [148, -464], [148, -463], [147, -463], [147, -462], [146, -462], [145, -461], [144, -461], [144, -462], [144, -463], [145, -463], [143, -463], [143, -464], [141, -464], [141, -465], [137, -465], [137, -464], [133, -464], [133, -463], [132, -463], [132, -462], [131, -462], [131, -459], [130, -459], [129, -459], [129, -460], [128, -460], [128, -461], [126, -461], [125, -460], [124, -459], [123, -458], [123, -457], [123, -456], [120, -456]]}, "center": {"152-258, T": [162, -460]}}, +{"id": 3913, "name": "Bug-eaten (Jojo's Part 4)", "description": "A minor antagonist of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable.\n\nStand: Ratt\n\n\"Screech.mp3\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1059, -82], [-1058, -83], [-1056, -84], [-1055, -84], [-1054, -83], [-1052, -82], [-1054, -81], [-1057, -81]]}, "center": {"250-258, T": [-1055, -82]}}, +{"id": 3914, "name": "Bolivian Bufeo", "description": "The \"Bolivian bufeo\" or \"Bolivian pink river dolphin\" is a nickname given to the Bolivian Amazon Dolphin Inia boliviensis by the local Bolivian people and as such is recognized internationally.", "links": {"website": ["https://faunagua.org/bufeo/#01"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[234, -31], [238, -27], [242, -36], [236, -43], [231, -40], [227, -36], [233, -36], [239, -32]]}, "center": {"250-258, T": [235, -39]}}, +{"id": 3915, "name": "Puffball (BFDI)", "description": "A character from the Battle For Dream Island series (Appeared in BFDIA, IDFB, BFB, and TPOT)", "links": {"subreddit": ["BattleForDreamIsland"]}, "path": {"215-258, T": [[1011, -94], [1007, -94], [1005, -92], [1006, -88], [1008, -86], [1011, -86], [1013, -91], [1012, -93], [1007, -94], [1008, -94]]}, "center": {"215-258, T": [1009, -90]}}, {"id": 3916, "name": "Dump truck", "description": "Some trolls were having fun making this character on the Québec flag fatter. While the people defending the flag were having fun, someone tagged one of the mods and said: \"Notre patriote a un osti de dump truck\". Which translates to: \"Our patriot has a motherfucking dump truck\". Which made everyone laugh.", "links": {"subreddit": ["quebec"], "discord": ["9ZABJhB7"]}, "path": {"231": [[489, 146], [490, 146], [490, 148], [490, 149], [489, 149], [489, 150], [489, 151], [489, 152], [488, 152], [488, 153], [487, 153], [487, 154], [486, 154], [486, 155], [486, 156], [486, 157], [485, 157], [486, 157], [486, 158], [487, 158], [488, 158], [488, 159], [488, 160], [488, 161], [488, 162], [489, 162], [490, 162], [489, 162], [488, 162], [488, 161], [488, 160], [488, 159], [488, 158], [489, 158], [489, 159], [489, 158], [490, 158], [491, 158], [492, 158], [492, 159], [492, 160], [492, 161], [492, 162], [493, 162], [494, 162], [493, 162], [492, 162], [492, 161], [492, 160], [492, 159], [493, 159], [493, 158], [493, 157], [494, 157], [494, 156], [494, 155], [493, 155], [493, 154], [493, 153], [493, 152], [494, 152], [494, 151], [493, 151], [492, 151], [492, 150], [492, 149], [493, 149], [493, 148], [493, 147], [492, 147], [492, 146], [491, 146], [490, 146]]}, "center": {"231": [490, 155]}}, -{"id": 3917, "name": "ChilloutVR", "description": "ChilloutVR is a social sandbox game enabling players and content creators to create, share and explore content in a massive multiplayer metaverse alone, with friends or anyone around the world. Meet new people and explore virtual worlds together. Playable with and without a VR-Headset.", "links": {"website": ["https://hub.abinteractive.net/"], "subreddit": ["ChilloutVR"], "discord": ["abi"]}, "path": {"174-258": [[-841, 616], [-841, 615], [-810, 615], [-810, 623], [-807, 623], [-807, 629], [-837, 629], [-837, 627], [-838, 627], [-838, 626], [-839, 626], [-839, 625], [-840, 625], [-840, 624], [-841, 624]]}, "center": {"174-258": [-824, 622]}}, -{"id": 3918, "name": "Eric Cartman (South Park", "description": "Eric Cartman is a fictional character in the animated sitcom South Park. Eric Cartman is one of 4 main characters on the show.", "links": {"subreddit": ["southpark"], "discord": ["southpark"]}, "path": {"250-258": [[-1433, -67], [-1436, -64], [-1435, -59], [-1433, -58], [-1428, -57], [-1428, -58], [-1425, -58], [-1424, -57], [-1420, -56], [-1420, -57], [-1419, -59], [-1418, -62], [-1419, -65], [-1422, -67], [-1420, -69], [-1420, -74], [-1425, -77], [-1429, -78], [-1430, -77], [-1431, -76], [-1433, -74], [-1434, -73]]}, "center": {"250-258": [-1427, -70]}}, -{"id": 3919, "name": "Monolito", "description": "Los monolitos más conocidos son los de Tiwanaku (La Paz), en Bolivia, un lugar que fue famoso en su apogeo (400-1000) por atraer peregrinos de todos los Andes a pesar de su impresionante ubicación: 3.800 metros sobre el nivel del mar. Muchos de ellos de piedra volcánica están intrincadamente tallados.", "links": {}, "path": {"250-258": [[133, -26], [120, -26], [120, -30], [123, -32], [122, -38], [121, -39], [132, -39], [131, -37], [131, -31], [133, -30]]}, "center": {"250-258": [127, -35]}}, -{"id": 3920, "name": "Mappy (Video Game Character)", "description": "Mappy is the titular character of the 1983 Arcade Game developed by Namco. \n\nThe Artwork in particular is a sprite of Mappy taken from the game.", "links": {}, "path": {"250-258": [[-1299, 388], [-1301, 386], [-1301, 384], [-1299, 383], [-1302, 381], [-1302, 382], [-1301, 383], [-1302, 385], [-1303, 386], [-1304, 384], [-1305, 383], [-1304, 382], [-1304, 381], [-1302, 379], [-1300, 381], [-1299, 381], [-1297, 379], [-1298, 380], [-1301, 377], [-1301, 374], [-1300, 374], [-1297, 372], [-1296, 372], [-1295, 374], [-1294, 374], [-1293, 373], [-1292, 374], [-1290, 375], [-1289, 376], [-1287, 374], [-1286, 376], [-1286, 379], [-1289, 380], [-1290, 380], [-1290, 386], [-1296, 386]]}, "center": {"250-258": [-1294, 382]}}, -{"id": 3921, "name": "Dwarf Fortress", "description": "This is one of the four embark sites of dwarves and the most succesful one. Dwarves are the main pawns in the complex CSM game Dwarf Fortress, where you need to indirectly control pawns to fulfill their needs in food, alcohol and entertainment.", "links": {"website": ["https://www.bay12games.com/"], "subreddit": ["dwarffortress", "DwarfFortressPlace"]}, "path": {"250-258": [[-1497, 262], [-1436, 262], [-1436, 286], [-1436, 291], [-1431, 291], [-1431, 297], [-1471, 296], [-1471, 286], [-1471, 285], [-1497, 285]]}, "center": {"250-258": [-1454, 279]}}, -{"id": 3922, "name": "Swiss Chalet", "description": "Drawing of a typical chalet, where one would usually live when going on a ski trip. \n\nThis isn't specifically Swiss activity, but skiing is a major aspect of Swiss culture.", "links": {"website": ["https://en.wikipedia.org/wiki/Chalet"]}, "path": {"249-258": [[1438, -672], [1455, -672], [1455, -685], [1461, -685], [1461, -691], [1455, -691], [1455, -683], [1446, -692], [1436, -682], [1437, -681], [1439, -683], [1439, -675], [1437, -673], [1437, -672]]}, "center": {"249-258": [1447, -680]}}, -{"id": 3923, "name": "Llama", "description": "A domesticated South American camelid, widely used as a meat and pack animal by Andean cultures since the Pre-Columbian era. The Incas used them as pack animals for thousands of years because they are very strong and surefooted on the rocky paths of the mountains and can carry very heavy loads. Their wool is used for making woven Bolivian clothing like sweaters, gloves, winter caps, and coats because it is very thermal. They also have been a part of Andean and Incan culture for thousands of years and the Aymaras and Quechuas use them in their rituals too.", "links": {"website": ["https://www.boliviabella.com/llama.html"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[652, -845], [652, -851], [653, -855], [651, -857], [651, -862], [665, -862], [665, -856], [663, -854], [663, -851], [664, -849], [664, -842], [663, -833], [659, -833], [658, -836], [652, -843]]}, "center": {"250-258": [658, -847]}}, -{"id": 3924, "name": "ramWTF", "description": "Mural de ramWTF, streamer guatemalteco, hecho por su comunidad llamada \"RAMeros\"", "links": {"website": ["https://twitch.tv/ramwtf"], "subreddit": ["ramWTF"], "discord": ["WDxSkZ7F2F"]}, "path": {"227-251": [[1461, -671], [1461, -656], [1498, -656], [1498, -671]]}, "center": {"227-251": [1480, -663]}}, -{"id": 3925, "name": "Wamuu (Jojo's Part 2)", "description": "A recurring side antagonist of Jojo's Bizarre Adventure Part 2: Battle Tendency.\n\n\"I have no regrets. I am glad I was able to witness your growth. Perhaps I lived these thousands of years in order to meet you at the end. Farewell… JoJo.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1058, -93], [-1053, -93], [-1052, -90], [-1052, -87], [-1053, -85], [-1056, -85], [-1057, -87], [-1058, -90]]}, "center": {"250-258": [-1055, -90]}}, +{"id": 3917, "name": "ChilloutVR", "description": "ChilloutVR is a social sandbox game enabling players and content creators to create, share and explore content in a massive multiplayer metaverse alone, with friends or anyone around the world. Meet new people and explore virtual worlds together. Playable with and without a VR-Headset.", "links": {"website": ["https://hub.abinteractive.net/"], "subreddit": ["ChilloutVR"], "discord": ["abi"]}, "path": {"174-258, T": [[-841, 616], [-841, 615], [-810, 615], [-810, 623], [-807, 623], [-807, 629], [-837, 629], [-837, 627], [-838, 627], [-838, 626], [-839, 626], [-839, 625], [-840, 625], [-840, 624], [-841, 624]]}, "center": {"174-258, T": [-824, 622]}}, +{"id": 3918, "name": "Eric Cartman (South Park", "description": "Eric Cartman is a fictional character in the animated sitcom South Park. Eric Cartman is one of 4 main characters on the show.", "links": {"subreddit": ["southpark"], "discord": ["southpark"]}, "path": {"250-258, T": [[-1433, -67], [-1436, -64], [-1435, -59], [-1433, -58], [-1428, -57], [-1428, -58], [-1425, -58], [-1424, -57], [-1420, -56], [-1420, -57], [-1419, -59], [-1418, -62], [-1419, -65], [-1422, -67], [-1420, -69], [-1420, -74], [-1425, -77], [-1429, -78], [-1430, -77], [-1431, -76], [-1433, -74], [-1434, -73]]}, "center": {"250-258, T": [-1427, -70]}}, +{"id": 3919, "name": "Monolito", "description": "Los monolitos más conocidos son los de Tiwanaku (La Paz), en Bolivia, un lugar que fue famoso en su apogeo (400-1000) por atraer peregrinos de todos los Andes a pesar de su impresionante ubicación: 3.800 metros sobre el nivel del mar. Muchos de ellos de piedra volcánica están intrincadamente tallados.", "links": {}, "path": {"250-258, T": [[133, -26], [120, -26], [120, -30], [123, -32], [122, -38], [121, -39], [132, -39], [131, -37], [131, -31], [133, -30]]}, "center": {"250-258, T": [127, -35]}}, +{"id": 3920, "name": "Mappy (Video Game Character)", "description": "Mappy is the titular character of the 1983 Arcade Game developed by Namco. \n\nThe Artwork in particular is a sprite of Mappy taken from the game.", "links": {}, "path": {"250-258, T": [[-1299, 388], [-1301, 386], [-1301, 384], [-1299, 383], [-1302, 381], [-1302, 382], [-1301, 383], [-1302, 385], [-1303, 386], [-1304, 384], [-1305, 383], [-1304, 382], [-1304, 381], [-1302, 379], [-1300, 381], [-1299, 381], [-1297, 379], [-1298, 380], [-1301, 377], [-1301, 374], [-1300, 374], [-1297, 372], [-1296, 372], [-1295, 374], [-1294, 374], [-1293, 373], [-1292, 374], [-1290, 375], [-1289, 376], [-1287, 374], [-1286, 376], [-1286, 379], [-1289, 380], [-1290, 380], [-1290, 386], [-1296, 386]]}, "center": {"250-258, T": [-1294, 382]}}, +{"id": 3921, "name": "Dwarf Fortress", "description": "This is one of the four embark sites of dwarves and the most succesful one. Dwarves are the main pawns in the complex CSM game Dwarf Fortress, where you need to indirectly control pawns to fulfill their needs in food, alcohol and entertainment.", "links": {"website": ["https://www.bay12games.com/"], "subreddit": ["dwarffortress", "DwarfFortressPlace"]}, "path": {"250-258, T": [[-1497, 262], [-1436, 262], [-1436, 286], [-1436, 291], [-1431, 291], [-1431, 297], [-1471, 296], [-1471, 286], [-1471, 285], [-1497, 285]]}, "center": {"250-258, T": [-1454, 279]}}, +{"id": 3922, "name": "Swiss Chalet", "description": "Drawing of a typical chalet, where one would usually live when going on a ski trip. \n\nThis isn't specifically Swiss activity, but skiing is a major aspect of Swiss culture.", "links": {"website": ["https://en.wikipedia.org/wiki/Chalet"]}, "path": {"249-258, T": [[1438, -672], [1455, -672], [1455, -685], [1461, -685], [1461, -691], [1455, -691], [1455, -683], [1446, -692], [1436, -682], [1437, -681], [1439, -683], [1439, -675], [1437, -673], [1437, -672]]}, "center": {"249-258, T": [1447, -680]}}, +{"id": 3923, "name": "Llama", "description": "A domesticated South American camelid, widely used as a meat and pack animal by Andean cultures since the Pre-Columbian era. The Incas used them as pack animals for thousands of years because they are very strong and surefooted on the rocky paths of the mountains and can carry very heavy loads. Their wool is used for making woven Bolivian clothing like sweaters, gloves, winter caps, and coats because it is very thermal. They also have been a part of Andean and Incan culture for thousands of years and the Aymaras and Quechuas use them in their rituals too.", "links": {"website": ["https://www.boliviabella.com/llama.html"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[652, -845], [652, -851], [653, -855], [651, -857], [651, -862], [665, -862], [665, -856], [663, -854], [663, -851], [664, -849], [664, -842], [663, -833], [659, -833], [658, -836], [652, -843]]}, "center": {"250-258, T": [658, -847]}}, +{"id": 3924, "name": "ramWTF", "description": "Mural de ramWTF, streamer guatemalteco, hecho por su comunidad llamada \"RAMeros\"", "links": {"website": ["https://twitch.tv/ramwtf"], "subreddit": ["ramWTF"], "discord": ["WDxSkZ7F2F"]}, "path": {"227-251, T": [[1461, -671], [1461, -656], [1498, -656], [1498, -671]]}, "center": {"227-251, T": [1480, -663]}}, +{"id": 3925, "name": "Wamuu (Jojo's Part 2)", "description": "A recurring side antagonist of Jojo's Bizarre Adventure Part 2: Battle Tendency.\n\n\"I have no regrets. I am glad I was able to witness your growth. Perhaps I lived these thousands of years in order to meet you at the end. Farewell… JoJo.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1058, -93], [-1053, -93], [-1052, -90], [-1052, -87], [-1053, -85], [-1056, -85], [-1057, -87], [-1058, -90]]}, "center": {"250-258, T": [-1055, -90]}}, {"id": 3926, "name": "FÚRIA", "description": "FURIA, is a Brazilian electronic sports organization. Acts competing in Counter-Strike: Global Offensive, Rocket League, League of Legends, Valorant, Rainbow Six: Siege, Apex Legends and Super Smash Bros. Founded in 2017, FURIA has the Counter-Strike team that performs best in the most recent international competitions, always ahead in the rankings among teams in the country.", "links": {"website": ["https://www.furia.gg/"], "subreddit": ["FuriaEsports"]}, "path": {"16": [[370, 145], [372, 142], [372, 137], [368, 135], [363, 134], [360, 133], [355, 133], [352, 134], [347, 134], [343, 131], [339, 131], [339, 134], [341, 137], [340, 139], [333, 144], [332, 150], [332, 154], [333, 158], [335, 163], [342, 170], [347, 171], [356, 171], [357, 168], [354, 166], [353, 161], [354, 158], [356, 156], [362, 157], [366, 158], [370, 158], [370, 156], [371, 152], [370, 149], [370, 146], [371, 145]]}, "center": {"16": [344, 151]}}, -{"id": 3927, "name": "Danny (Jojo's Part 1)", "description": "A side character of Jojo's Bizarre Adventure Part 1: Phantom Blood. It is also a dog.\n\n\"🔥🔥🔥\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1049, -84], [-1045, -84], [-1045, -82], [-1044, -81], [-1047, -81], [-1048, -82]]}, "center": {"250-258": [-1047, -83]}}, -{"id": 3928, "name": "Lucy Steel (Jojo's Part 7)", "description": "A side character of Jojo's Bizarre Adventure Part 7: Steel Ball Run.\n\nStand: Ticket to Ride\n\n\"Be careful with that shotgun... or I'll cut you.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1050, -93], [-1047, -93], [-1046, -92], [-1045, -90], [-1045, -89], [-1045, -87], [-1046, -86], [-1048, -86], [-1049, -87], [-1050, -89], [-1050, -92], [-1048, -93]]}, "center": {"250-258": [-1047, -89]}}, -{"id": 3929, "name": "Salteña", "description": "A salteña is a type of baked empanada from Bolivia.\nSalteñas are savory pastries filled with beef, pork or chicken mixed in a sweet, slightly spicy sauce containing raisins and potatoes. Typically salteñas can be found in any town or city throughout the country, but each area has its variations.", "links": {"website": ["https://en.wikipedia.org/wiki/Salte%C3%B1a"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[270, -29], [269, -27], [280, -26], [278, -38], [275, -45], [273, -45], [269, -38], [267, -33], [269, -28]]}, "center": {"250-258": [273, -34]}}, -{"id": 3930, "name": "Wonder of U (Jojo's Part 8)", "description": "The stand of the main antagonist of Jojo's Bizarre Adventure Part 8: Jojolion.\n\n\"I am Wonder of U. The flow of things will always lead to calamity.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1063, -117], [-1062, -117], [-1061, -116], [-1060, -115], [-1060, -113], [-1061, -111], [-1061, -107], [-1063, -107], [-1065, -107], [-1066, -110], [-1065, -115]]}, "center": {"250-258": [-1064, -110]}}, -{"id": 3931, "name": "Deportivo Tachira", "description": "El Deportivo Táchira Fútbol Club, más conocido como Deportivo Táchira o simplemente Táchira, es un club de fútbol profesional venezolano con sede en San Cristóbal, estado Táchira. Actualmente juega en la Primera División de Venezuela y disputa sus partidos como local en el Estadio Polideportivo de Pueblo Nuevo\n\nDeportivo Táchira Fútbol Club, better known as Deportivo Táchira or simply Táchira, is a Venezuelan professional football club based in San Cristóbal, Táchira state. They currently play in the Venezuelan First Division and play their home games at the Pueblo Nuevo Sports Center", "links": {"website": ["https://es.wikipedia.org/wiki/Deportivo_T%C3%A1chira_F%C3%BAtbol_Club#Uniforme"], "subreddit": ["vzla"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258": [[-919, 274], [-919, 288], [-911, 293], [-903, 288], [-903, 274]]}, "center": {"250-258": [-911, 282]}}, +{"id": 3927, "name": "Danny (Jojo's Part 1)", "description": "A side character of Jojo's Bizarre Adventure Part 1: Phantom Blood. It is also a dog.\n\n\"🔥🔥🔥\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1049, -84], [-1045, -84], [-1045, -82], [-1044, -81], [-1047, -81], [-1048, -82]]}, "center": {"250-258, T": [-1047, -83]}}, +{"id": 3928, "name": "Lucy Steel (Jojo's Part 7)", "description": "A side character of Jojo's Bizarre Adventure Part 7: Steel Ball Run.\n\nStand: Ticket to Ride\n\n\"Be careful with that shotgun... or I'll cut you.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1050, -93], [-1047, -93], [-1046, -92], [-1045, -90], [-1045, -89], [-1045, -87], [-1046, -86], [-1048, -86], [-1049, -87], [-1050, -89], [-1050, -92], [-1048, -93]]}, "center": {"250-258, T": [-1047, -89]}}, +{"id": 3929, "name": "Salteña", "description": "A salteña is a type of baked empanada from Bolivia.\nSalteñas are savory pastries filled with beef, pork or chicken mixed in a sweet, slightly spicy sauce containing raisins and potatoes. Typically salteñas can be found in any town or city throughout the country, but each area has its variations.", "links": {"website": ["https://en.wikipedia.org/wiki/Salte%C3%B1a"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[270, -29], [269, -27], [280, -26], [278, -38], [275, -45], [273, -45], [269, -38], [267, -33], [269, -28]]}, "center": {"250-258, T": [273, -34]}}, +{"id": 3930, "name": "Wonder of U (Jojo's Part 8)", "description": "The stand of the main antagonist of Jojo's Bizarre Adventure Part 8: Jojolion.\n\n\"I am Wonder of U. The flow of things will always lead to calamity.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1063, -117], [-1062, -117], [-1061, -116], [-1060, -115], [-1060, -113], [-1061, -111], [-1061, -107], [-1063, -107], [-1065, -107], [-1066, -110], [-1065, -115]]}, "center": {"250-258, T": [-1064, -110]}}, +{"id": 3931, "name": "Deportivo Tachira", "description": "El Deportivo Táchira Fútbol Club, más conocido como Deportivo Táchira o simplemente Táchira, es un club de fútbol profesional venezolano con sede en San Cristóbal, estado Táchira. Actualmente juega en la Primera División de Venezuela y disputa sus partidos como local en el Estadio Polideportivo de Pueblo Nuevo\n\nDeportivo Táchira Fútbol Club, better known as Deportivo Táchira or simply Táchira, is a Venezuelan professional football club based in San Cristóbal, Táchira state. They currently play in the Venezuelan First Division and play their home games at the Pueblo Nuevo Sports Center", "links": {"website": ["https://es.wikipedia.org/wiki/Deportivo_T%C3%A1chira_F%C3%BAtbol_Club#Uniforme"], "subreddit": ["vzla"], "discord": ["s5jKGfaJ7C"]}, "path": {"250-258, T": [[-919, 274], [-919, 288], [-911, 293], [-903, 288], [-903, 274]]}, "center": {"250-258, T": [-911, 282]}}, {"id": 3932, "name": "Shura Hiwa", "description": "🏍️💥\nVtuber/Streamer Trilingüe Biker panther", "links": {"website": ["https://twitter.com/ShuraHiwa", "https://twitch.com/ShuraHiwa"]}, "path": {"225-227": [[-1294, -59], [-1298, -62], [-1298, -69], [-1297, -70], [-1297, -73], [-1294, -76], [-1294, -74], [-1293, -74], [-1292, -75], [-1288, -75], [-1287, -74], [-1286, -76], [-1283, -73], [-1283, -70], [-1282, -69], [-1282, -62], [-1283, -61], [-1284, -61], [-1285, -60], [-1286, -59], [-1289, -59], [-1290, -60], [-1291, -59]]}, "center": {"225-227": [-1290, -67]}}, -{"id": 3933, "name": "Sheldon J. Plankton", "description": "Sheldon J. Plankton (Mostly known as Plankton) is a recurring antagonist in the hit american television show SpongeBob SquarePants.", "links": {"website": ["https://spongebob.fandom.com/wiki/Sheldon_J._Plankton", "https://en.wikipedia.org/wiki/Plankton_and_Karen"], "subreddit": ["spongebob"]}, "path": {"175-258": [[-905, -916], [-895, -921], [-898, -928], [-892, -932], [-899, -929], [-898, -936], [-905, -923], [-908, -923], [-906, -921]]}, "center": {"175-258": [-900, -923]}}, -{"id": 3934, "name": "No Significant Harassment", "description": "The iterator No Significant Harassment with the slugcat Hunter on their head, from the indie game Rain World.", "links": {"website": ["https://rainworldgame.com/"], "subreddit": ["rainworld"]}, "path": {"228-258": [[-884, 418], [-874, 418], [-871, 415], [-871, 412], [-872, 411], [-873, 411], [-874, 410], [-873, 409], [-871, 409], [-870, 408], [-870, 402], [-871, 401], [-873, 401], [-876, 398], [-876, 395], [-877, 394], [-881, 394], [-882, 395], [-882, 398], [-885, 401], [-887, 401], [-888, 402], [-888, 408], [-887, 409], [-885, 409], [-884, 410], [-885, 411], [-886, 411], [-887, 412], [-887, 415], [-885, 417]]}, "center": {"228-258": [-879, 405]}}, -{"id": 3935, "name": "Kagura Yato", "description": "From the Gintama anime by Hideaki Sorachi, Kagura Yato is a 14 year old girl. She is part of the strongest Amanto(Aliens) species in the universe, the Yato. They wear chinese inspired clothes.", "links": {}, "path": {"250-258": [[973, 274], [970, 270], [977, 263], [986, 264], [988, 270], [984, 279], [980, 281], [975, 281], [974, 278]]}, "center": {"250-258": [980, 271]}}, -{"id": 3936, "name": "Vietnam Country Outline", "description": "The outline of the country Vietnam, part of MixiGaming's design.", "links": {"website": ["https://en.wikipedia.org/wiki/Vietnam", "https://vi.wikipedia.org/wiki/Vi%E1%BB%87t_Nam"], "subreddit": ["vietnam"]}, "path": {"162-258": [[910, 519], [912, 519], [913, 520], [914, 521], [916, 522], [917, 523], [923, 524], [927, 525], [928, 526], [930, 527], [931, 528], [927, 531], [927, 536], [930, 539], [932, 540], [939, 541], [945, 543], [941, 544], [940, 546], [936, 549], [931, 552], [927, 555], [927, 559], [925, 559], [923, 563], [920, 566], [918, 566], [918, 569], [917, 569], [917, 576], [921, 581], [922, 585], [923, 587], [925, 589], [943, 608], [977, 607], [979, 602], [981, 599], [985, 597], [987, 599], [991, 600], [994, 601], [994, 604], [995, 606], [995, 610], [991, 612], [986, 613], [981, 612], [978, 611], [977, 609], [977, 608], [942, 608], [949, 615], [952, 622], [955, 630], [959, 641], [958, 649], [958, 655], [974, 655], [974, 651], [976, 649], [978, 647], [982, 647], [986, 649], [988, 650], [989, 652], [992, 655], [989, 657], [989, 660], [986, 661], [984, 663], [979, 662], [976, 658], [975, 655], [958, 655], [950, 669], [938, 677], [928, 681], [923, 692], [919, 695], [910, 699], [904, 702], [899, 704], [896, 702], [898, 699], [898, 697], [890, 697], [891, 701], [889, 701], [886, 700], [884, 699], [885, 695], [888, 693], [890, 693], [890, 697], [891, 697], [898, 697], [898, 694], [896, 691], [893, 691], [891, 689], [892, 685], [895, 683], [898, 679], [902, 677], [907, 671], [914, 670], [915, 662], [929, 653], [933, 651], [933, 645], [934, 645], [935, 638], [933, 639], [933, 621], [932, 620], [932, 615], [929, 614], [926, 604], [917, 593], [911, 586], [901, 575], [892, 570], [894, 567], [898, 565], [903, 563], [902, 560], [899, 556], [897, 554], [889, 552], [882, 546], [880, 540], [875, 536], [873, 532], [878, 526], [883, 530], [885, 530], [888, 528], [893, 527], [900, 526], [904, 524], [905, 522], [908, 520]]}, "center": {"162-258": [910, 542]}}, -{"id": 3937, "name": "Mote con huesillos", "description": "The mote con huesillo is a typical Chilean drink, especially popular during the summer. It consists of a refreshing mixture of mote, a kind of peeled wheat, and huesillos, which are dehydrated pitted peaches.\n\nThe nickname with huesillo is appreciated for its sweet and refreshing flavor, ideal for combating the heat on hot summer days. It is a traditional and much-loved drink in Chilean culture, and it is common to find it at fairs, inns, and events during the summer season.", "links": {"website": ["https://en.wikipedia.org/wiki/Mote_con_huesillo"]}, "path": {"218-258": [[-1305, -824], [-1322, -824], [-1326, -829], [-1328, -829], [-1329, -828], [-1329, -827], [-1324, -822], [-1322, -816], [-1320, -799], [-1316, -797], [-1311, -797], [-1307, -801], [-1307, -809], [-1306, -815], [-1304, -823]]}, "center": {"218-258": [-1314, -816]}}, -{"id": 3938, "name": "Green Baby (Jojo's Part 6)", "description": "A side character from Jojo's Bizarre Adventure Part 6: Stone Ocean\n\nStand: Green Green Grass of Home\n\n\"SPIRAL STAIRCASE\nRHINOCEROS BEETLE\nDESOLATION ROW\nFIG TART\nRHINOCEROS BEETLE\nVIA DOLOROSO\nRHINOCEROS BEETLE\nSINGULARITY POINT\nGIOTTO\nANGEL\nHYDRANGEA\nRHINOCEROS BEETLE\nSINGULARITY POINT\nSECRET EMPEROR\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1056, -95], [-1056, -100], [-1054, -100], [-1054, -95]]}, "center": {"250-258": [-1055, -97]}}, -{"id": 3939, "name": "Kookie", "description": "'Kookie' is the name of a brazilian social media, as well as the little blue ghost that represents it. The microblog was created by Sam Nuloer and developed by Lucas López as a form of brazilian community express themselves and interact with each other. Currently (July, 2023), Kookie is the biggest brazilian microblog. The pixel art itself was designed by user \"frupvy\".", "links": {"website": ["https://kookie.com.br/"], "subreddit": ["kookieapp"], "discord": ["6gVpcpUBbM"]}, "path": {"250-258": [[1002, 225], [1014, 225], [1014, 241], [1019, 241], [1019, 248], [1001, 248], [1001, 225]]}, "center": {"250-258": [1007, 237]}}, -{"id": 3940, "name": "Makar", "description": "Link's Korok companion from The Legend of Zelda: The Wind Waker", "links": {"website": ["https://zelda.fandom.com"], "subreddit": ["zelda", "yahaha_irl"]}, "path": {"202-258": [[-812, 520], [-817, 525], [-817, 526], [-818, 527], [-818, 528], [-819, 529], [-819, 530], [-814, 535], [-811, 535], [-810, 534], [-809, 534], [-808, 533], [-807, 533], [-806, 532], [-805, 531], [-805, 530], [-806, 529], [-806, 522], [-807, 521], [-807, 520], [-806, 520], [-805, 519], [-805, 516], [-806, 516], [-808, 518], [-808, 519], [-808, 518], [-810, 516], [-812, 516], [-813, 517], [-814, 517], [-815, 518], [-816, 519], [-815, 520], [-814, 520], [-813, 519], [-811, 519], [-812, 520], [-813, 520]]}, "center": {"202-258": [-812, 528]}}, -{"id": 3941, "name": "Pingu", "description": "A reference to the stop motion childrens series \"pingu\", that originated in switzerland in 1990 and became popular internationally", "links": {"website": ["https://en.wikipedia.org/wiki/Pingu"]}, "path": {"150-258": [[213, -336], [213, -337], [213, -338], [213, -343], [214, -343], [214, -348], [220, -348], [220, -343], [222, -343], [222, -336]]}, "center": {"150-258": [217, -340]}}, -{"id": 3942, "name": "cw10000's Bisexual Pride Flag", "description": "A bi-sexual pride flag made by u/cw10000 while the Digi-Space Productions Logo was being made, Digi-Space Productions permitted it being made above the logo.", "links": {"website": ["https://reddit.com/u/cw10000"]}, "path": {"214-258": [[1107, -767], [1107, -765], [1121, -765], [1121, -767]]}, "center": {"214-258": [1114, -766]}}, +{"id": 3933, "name": "Sheldon J. Plankton", "description": "Sheldon J. Plankton (Mostly known as Plankton) is a recurring antagonist in the hit american television show SpongeBob SquarePants.", "links": {"website": ["https://spongebob.fandom.com/wiki/Sheldon_J._Plankton", "https://en.wikipedia.org/wiki/Plankton_and_Karen"], "subreddit": ["spongebob"]}, "path": {"175-258, T": [[-905, -916], [-895, -921], [-898, -928], [-892, -932], [-899, -929], [-898, -936], [-905, -923], [-908, -923], [-906, -921]]}, "center": {"175-258, T": [-900, -923]}}, +{"id": 3934, "name": "No Significant Harassment", "description": "The iterator No Significant Harassment with the slugcat Hunter on their head, from the indie game Rain World.", "links": {"website": ["https://rainworldgame.com/"], "subreddit": ["rainworld"]}, "path": {"228-258, T": [[-884, 418], [-874, 418], [-871, 415], [-871, 412], [-872, 411], [-873, 411], [-874, 410], [-873, 409], [-871, 409], [-870, 408], [-870, 402], [-871, 401], [-873, 401], [-876, 398], [-876, 395], [-877, 394], [-881, 394], [-882, 395], [-882, 398], [-885, 401], [-887, 401], [-888, 402], [-888, 408], [-887, 409], [-885, 409], [-884, 410], [-885, 411], [-886, 411], [-887, 412], [-887, 415], [-885, 417]]}, "center": {"228-258, T": [-879, 405]}}, +{"id": 3935, "name": "Kagura Yato", "description": "From the Gintama anime by Hideaki Sorachi, Kagura Yato is a 14 year old girl. She is part of the strongest Amanto(Aliens) species in the universe, the Yato. They wear chinese inspired clothes.", "links": {}, "path": {"250-258, T": [[973, 274], [970, 270], [977, 263], [986, 264], [988, 270], [984, 279], [980, 281], [975, 281], [974, 278]]}, "center": {"250-258, T": [980, 271]}}, +{"id": 3936, "name": "Vietnam Country Outline", "description": "The outline of the country Vietnam, part of MixiGaming's design.", "links": {"website": ["https://en.wikipedia.org/wiki/Vietnam", "https://vi.wikipedia.org/wiki/Vi%E1%BB%87t_Nam"], "subreddit": ["vietnam"]}, "path": {"162-258, T": [[910, 519], [912, 519], [913, 520], [914, 521], [916, 522], [917, 523], [923, 524], [927, 525], [928, 526], [930, 527], [931, 528], [927, 531], [927, 536], [930, 539], [932, 540], [939, 541], [945, 543], [941, 544], [940, 546], [936, 549], [931, 552], [927, 555], [927, 559], [925, 559], [923, 563], [920, 566], [918, 566], [918, 569], [917, 569], [917, 576], [921, 581], [922, 585], [923, 587], [925, 589], [943, 608], [977, 607], [979, 602], [981, 599], [985, 597], [987, 599], [991, 600], [994, 601], [994, 604], [995, 606], [995, 610], [991, 612], [986, 613], [981, 612], [978, 611], [977, 609], [977, 608], [942, 608], [949, 615], [952, 622], [955, 630], [959, 641], [958, 649], [958, 655], [974, 655], [974, 651], [976, 649], [978, 647], [982, 647], [986, 649], [988, 650], [989, 652], [992, 655], [989, 657], [989, 660], [986, 661], [984, 663], [979, 662], [976, 658], [975, 655], [958, 655], [950, 669], [938, 677], [928, 681], [923, 692], [919, 695], [910, 699], [904, 702], [899, 704], [896, 702], [898, 699], [898, 697], [890, 697], [891, 701], [889, 701], [886, 700], [884, 699], [885, 695], [888, 693], [890, 693], [890, 697], [891, 697], [898, 697], [898, 694], [896, 691], [893, 691], [891, 689], [892, 685], [895, 683], [898, 679], [902, 677], [907, 671], [914, 670], [915, 662], [929, 653], [933, 651], [933, 645], [934, 645], [935, 638], [933, 639], [933, 621], [932, 620], [932, 615], [929, 614], [926, 604], [917, 593], [911, 586], [901, 575], [892, 570], [894, 567], [898, 565], [903, 563], [902, 560], [899, 556], [897, 554], [889, 552], [882, 546], [880, 540], [875, 536], [873, 532], [878, 526], [883, 530], [885, 530], [888, 528], [893, 527], [900, 526], [904, 524], [905, 522], [908, 520]]}, "center": {"162-258, T": [910, 542]}}, +{"id": 3937, "name": "Mote con huesillos", "description": "The mote con huesillo is a typical Chilean drink, especially popular during the summer. It consists of a refreshing mixture of mote, a kind of peeled wheat, and huesillos, which are dehydrated pitted peaches.\n\nThe nickname with huesillo is appreciated for its sweet and refreshing flavor, ideal for combating the heat on hot summer days. It is a traditional and much-loved drink in Chilean culture, and it is common to find it at fairs, inns, and events during the summer season.", "links": {"website": ["https://en.wikipedia.org/wiki/Mote_con_huesillo"]}, "path": {"218-258, T": [[-1305, -824], [-1322, -824], [-1326, -829], [-1328, -829], [-1329, -828], [-1329, -827], [-1324, -822], [-1322, -816], [-1320, -799], [-1316, -797], [-1311, -797], [-1307, -801], [-1307, -809], [-1306, -815], [-1304, -823]]}, "center": {"218-258, T": [-1314, -816]}}, +{"id": 3938, "name": "Green Baby (Jojo's Part 6)", "description": "A side character from Jojo's Bizarre Adventure Part 6: Stone Ocean\n\nStand: Green Green Grass of Home\n\n\"SPIRAL STAIRCASE\nRHINOCEROS BEETLE\nDESOLATION ROW\nFIG TART\nRHINOCEROS BEETLE\nVIA DOLOROSO\nRHINOCEROS BEETLE\nSINGULARITY POINT\nGIOTTO\nANGEL\nHYDRANGEA\nRHINOCEROS BEETLE\nSINGULARITY POINT\nSECRET EMPEROR\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1056, -95], [-1056, -100], [-1054, -100], [-1054, -95]]}, "center": {"250-258, T": [-1055, -97]}}, +{"id": 3939, "name": "Kookie", "description": "'Kookie' is the name of a brazilian social media, as well as the little blue ghost that represents it. The microblog was created by Sam Nuloer and developed by Lucas López as a form of brazilian community express themselves and interact with each other. Currently (July, 2023), Kookie is the biggest brazilian microblog. The pixel art itself was designed by user \"frupvy\".", "links": {"website": ["https://kookie.com.br/"], "subreddit": ["kookieapp"], "discord": ["6gVpcpUBbM"]}, "path": {"250-258, T": [[1002, 225], [1014, 225], [1014, 241], [1019, 241], [1019, 248], [1001, 248], [1001, 225]]}, "center": {"250-258, T": [1007, 237]}}, +{"id": 3940, "name": "Makar", "description": "Link's Korok companion from The Legend of Zelda: The Wind Waker", "links": {"website": ["https://zelda.fandom.com"], "subreddit": ["zelda", "yahaha_irl"]}, "path": {"202-258, T": [[-812, 520], [-817, 525], [-817, 526], [-818, 527], [-818, 528], [-819, 529], [-819, 530], [-814, 535], [-811, 535], [-810, 534], [-809, 534], [-808, 533], [-807, 533], [-806, 532], [-805, 531], [-805, 530], [-806, 529], [-806, 522], [-807, 521], [-807, 520], [-806, 520], [-805, 519], [-805, 516], [-806, 516], [-808, 518], [-808, 519], [-808, 518], [-810, 516], [-812, 516], [-813, 517], [-814, 517], [-815, 518], [-816, 519], [-815, 520], [-814, 520], [-813, 519], [-811, 519], [-812, 520], [-813, 520]]}, "center": {"202-258, T": [-812, 528]}}, +{"id": 3941, "name": "Pingu", "description": "A reference to the stop motion childrens series \"pingu\", that originated in switzerland in 1990 and became popular internationally", "links": {"website": ["https://en.wikipedia.org/wiki/Pingu"]}, "path": {"150-258, T": [[213, -336], [213, -337], [213, -338], [213, -343], [214, -343], [214, -348], [220, -348], [220, -343], [222, -343], [222, -336]]}, "center": {"150-258, T": [217, -340]}}, +{"id": 3942, "name": "cw10000's Bisexual Pride Flag", "description": "A bi-sexual pride flag made by u/cw10000 while the Digi-Space Productions Logo was being made, Digi-Space Productions permitted it being made above the logo.", "links": {"website": ["https://reddit.com/u/cw10000"]}, "path": {"214-258, T": [[1107, -767], [1107, -765], [1121, -765], [1121, -767]]}, "center": {"214-258, T": [1114, -766]}}, {"id": 3943, "name": "Junin", "description": "Junin, una ciudad pequeña de Argentina, con ayuda del streamer BoffeGP y los comandantes Matias Crocco y Lautaro Muscara lograron escribir su nombre en la bandera de chile por 1 noche, al lado esta la cabeza de minecraft del streamer que ayudo", "links": {"website": ["https://www.junin.gob.ar", "https://www.twitch.tv/boffegp", "https://www.instagram.com/matias.crocco/?hl=es-la", "https://www.instagram.com/lautimuscara09/?hl=es-la"]}, "path": {"180-193": [[-648, 910], [-648, 911], [-648, 913], [-648, 915], [-647, 915], [-644, 915], [-628, 915], [-628, 910], [-637, 910]]}, "center": {"180-193": [-638, 913]}}, -{"id": 3944, "name": "ESC heart with Swedish flag", "description": "A heart with a shape used widely within Eurovision Song Contest, an annual European music competition. The Swedish flag is a reference to Sweden's victory in the 2023 edition of contest.\n\nThe words \"Cha\", \"Poe, \"SC\" and \"EA\" are a reference to the Finnish, Austrian, Croatian, and Spanish entries respectively for the 2023 contest.\n\nThe work also features the number \"12\" as a reference to the highest points a country could receive in the contest, as well as a drawing of the Eurovision trophy.", "links": {"website": ["https://eurovision.tv/"], "subreddit": ["eurovision"]}, "path": {"175-258": [[-276, 674], [-268, 664], [-269, 659], [-272, 656], [-274, 656], [-276, 659], [-282, 658], [-284, 666], [-283, 669], [-280, 672], [-280, 650], [-258, 648], [-256, 666], [-261, 675], [-270, 682], [-271, 673], [-281, 671], [-269, 659], [-273, 657], [-287, 661], [-269, 662], [-269, 659], [-282, 663], [-268, 663], [-281, 664], [-270, 664], [-282, 666], [-270, 664], [-271, 665]]}, "center": {"175-258": [-264, 656]}}, -{"id": 3945, "name": "Majime and Shimeji", "description": "Majime and Shimeji from Shimeji Simulation.", "links": {"subreddit": ["HoleDiggingClub"], "discord": ["BM4nbbj"]}, "path": {"242-258": [[1451, -894], [1498, -894], [1498, -864], [1451, -864]]}, "center": {"242-258": [1475, -879]}}, +{"id": 3944, "name": "ESC heart with Swedish flag", "description": "A heart with a shape used widely within Eurovision Song Contest, an annual European music competition. The Swedish flag is a reference to Sweden's victory in the 2023 edition of contest.\n\nThe words \"Cha\", \"Poe, \"SC\" and \"EA\" are a reference to the Finnish, Austrian, Croatian, and Spanish entries respectively for the 2023 contest.\n\nThe work also features the number \"12\" as a reference to the highest points a country could receive in the contest, as well as a drawing of the Eurovision trophy.", "links": {"website": ["https://eurovision.tv/"], "subreddit": ["eurovision"]}, "path": {"175-258, T": [[-276, 674], [-268, 664], [-269, 659], [-272, 656], [-274, 656], [-276, 659], [-282, 658], [-284, 666], [-283, 669], [-280, 672], [-280, 650], [-258, 648], [-256, 666], [-261, 675], [-270, 682], [-271, 673], [-281, 671], [-269, 659], [-273, 657], [-287, 661], [-269, 662], [-269, 659], [-282, 663], [-268, 663], [-281, 664], [-270, 664], [-282, 666], [-270, 664], [-271, 665]]}, "center": {"175-258, T": [-264, 656]}}, +{"id": 3945, "name": "Majime and Shimeji", "description": "Majime and Shimeji from Shimeji Simulation.", "links": {"subreddit": ["HoleDiggingClub"], "discord": ["BM4nbbj"]}, "path": {"242-258, T": [[1451, -894], [1498, -894], [1498, -864], [1451, -864]]}, "center": {"242-258, T": [1475, -879]}}, {"id": 3946, "name": "Bosnia & Lucas", "description": "Kittens of two well-known spanish streamers Biyin and Auronplay. (Made by biyiners💜)", "links": {"website": ["https://www.twitch.tv/biyin_", "https://www.twitch.tv/auronplay"], "discord": ["JvNCtV8D"]}, "path": {"249": [[457, 971], [500, 971], [500, 999], [457, 999]]}, "center": {"249": [479, 985]}}, -{"id": 3947, "name": "Nisha Nixyeva", "description": "Nisha Nixyeva es una PNGTuber trilingüe (Español, Inglés y Japonés) independiente. Debutó el 8 de abril del 2023 en Youtube.\nDescendiente del clan Nixyeva que estudia casualmente a los humanos a corto plazo...", "links": {"website": ["https://nishanix.carrd.co/", "https://www.youtube.com/channel/UC-jcaCw_DWLuWpcxVUjP2Sw", "https://twitter.com/_N1SH4"]}, "path": {"225-258": [[-1276, -59], [-1278, -61], [-1278, -63], [-1279, -63], [-1280, -64], [-1280, -69], [-1279, -70], [-1279, -71], [-1276, -74], [-1268, -74], [-1265, -71], [-1265, -70], [-1264, -69], [-1264, -64], [-1265, -63], [-1266, -62], [-1266, -61], [-1267, -60], [-1268, -59], [-1271, -59], [-1272, -60], [-1273, -59]]}, "center": {"225-258": [-1271, -67]}}, -{"id": 3948, "name": "Rain World Iterators", "description": "The iterators Sliver of Straw (left) and Seven Red Suns (Right), with slugcats Saint and Spearmaster on their heads, from the indie game Rain World.", "links": {"website": ["https://rainworldgame.com/"], "subreddit": ["rainworld"]}, "path": {"221-258": [[678, -288], [690, -288], [693, -288], [693, -299], [710, -299], [710, -324], [692, -324], [692, -317], [692, -316], [675, -316], [675, -297], [676, -296], [678, -296], [679, -295], [678, -294], [677, -294], [676, -293], [676, -289], [678, -289]]}, "center": {"221-258": [700, -310]}}, -{"id": 3949, "name": "Toborochi Tree", "description": "Toborochi (Guarani word for sheltering tree, scientific name: Ceiba speciosa) is a tall (15-20 m high) tree with a thorny trunk. The toborochi tree is an emblematic icon of Santa Cruz de la Sierra. It is a symbol of the hospitality of its people, as indigenous people used to take refuge in the hollow trunks of the toborochi and is also the protagonist of a well known legend", "links": {"website": ["https://www.rutaverdebolivia.com/the-toborochi-tree-and-the-guarani-legend/"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[356, -27], [358, -29], [358, -33], [356, -35], [353, -37], [350, -41], [353, -46], [369, -47], [371, -42], [365, -36], [362, -32], [363, -26]]}, "center": {"250-258": [360, -40]}}, -{"id": 3950, "name": "Ratafia", "description": "Ratafia is a sweet alcoholic beverage from Catalonia, usually drunk during the appetizer.", "links": {"website": ["https://en.wikipedia.org/wiki/Ratafia"], "subreddit": ["catalonia"]}, "path": {"196-258": [[448, 156], [442, 156], [442, 149], [444, 147], [444, 143], [446, 143], [446, 147], [447, 148], [448, 149]]}, "center": {"196-258": [445, 151]}}, -{"id": 3951, "name": "Heart between Catalonia and Quebec", "description": "This heart not only symbolizes the strong alliance between Catalonia and Quebec in r/place, but it also includes two words, \"oui\" and \"sí\", both of which mean yes in French and Catalan respectively. This references both Quebec's and Catalonia's desire to become an independent country, saying yes to a hypothetical referendum for independence.", "links": {"website": ["https://en.wikipedia.org/wiki/Quebec", "https://en.wikipedia.org/wiki/Catalonia", "https://en.wikipedia.org/wiki/Quebec_sovereignty_movement", "https://en.wikipedia.org/wiki/Catalan_independence_movement"], "subreddit": ["catalonia", "Quebec"]}, "path": {"127-258": [[454, 159], [457, 159], [461, 163], [461, 166], [460, 167], [460, 168], [459, 169], [459, 170], [452, 177], [446, 171], [444, 168], [444, 167], [443, 166], [443, 163], [447, 159], [450, 159], [451, 160], [453, 160], [453, 159]]}, "center": {"127-258": [452, 167]}}, +{"id": 3947, "name": "Nisha Nixyeva", "description": "Nisha Nixyeva es una PNGTuber trilingüe (Español, Inglés y Japonés) independiente. Debutó el 8 de abril del 2023 en Youtube.\nDescendiente del clan Nixyeva que estudia casualmente a los humanos a corto plazo...", "links": {"website": ["https://nishanix.carrd.co/", "https://www.youtube.com/channel/UC-jcaCw_DWLuWpcxVUjP2Sw", "https://twitter.com/_N1SH4"]}, "path": {"225-258, T": [[-1276, -59], [-1278, -61], [-1278, -63], [-1279, -63], [-1280, -64], [-1280, -69], [-1279, -70], [-1279, -71], [-1276, -74], [-1268, -74], [-1265, -71], [-1265, -70], [-1264, -69], [-1264, -64], [-1265, -63], [-1266, -62], [-1266, -61], [-1267, -60], [-1268, -59], [-1271, -59], [-1272, -60], [-1273, -59]]}, "center": {"225-258, T": [-1271, -67]}}, +{"id": 3948, "name": "Rain World Iterators", "description": "The iterators Sliver of Straw (left) and Seven Red Suns (Right), with slugcats Saint and Spearmaster on their heads, from the indie game Rain World.", "links": {"website": ["https://rainworldgame.com/"], "subreddit": ["rainworld"]}, "path": {"221-258, T": [[678, -288], [690, -288], [693, -288], [693, -299], [710, -299], [710, -324], [692, -324], [692, -317], [692, -316], [675, -316], [675, -297], [676, -296], [678, -296], [679, -295], [678, -294], [677, -294], [676, -293], [676, -289], [678, -289]]}, "center": {"221-258, T": [700, -310]}}, +{"id": 3949, "name": "Toborochi Tree", "description": "Toborochi (Guarani word for sheltering tree, scientific name: Ceiba speciosa) is a tall (15-20 m high) tree with a thorny trunk. The toborochi tree is an emblematic icon of Santa Cruz de la Sierra. It is a symbol of the hospitality of its people, as indigenous people used to take refuge in the hollow trunks of the toborochi and is also the protagonist of a well known legend", "links": {"website": ["https://www.rutaverdebolivia.com/the-toborochi-tree-and-the-guarani-legend/"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[356, -27], [358, -29], [358, -33], [356, -35], [353, -37], [350, -41], [353, -46], [369, -47], [371, -42], [365, -36], [362, -32], [363, -26]]}, "center": {"250-258, T": [360, -40]}}, +{"id": 3950, "name": "Ratafia", "description": "Ratafia is a sweet alcoholic beverage from Catalonia, usually drunk during the appetizer.", "links": {"website": ["https://en.wikipedia.org/wiki/Ratafia"], "subreddit": ["catalonia"]}, "path": {"196-258, T": [[448, 156], [442, 156], [442, 149], [444, 147], [444, 143], [446, 143], [446, 147], [447, 148], [448, 149]]}, "center": {"196-258, T": [445, 151]}}, +{"id": 3951, "name": "Heart between Catalonia and Quebec", "description": "This heart not only symbolizes the strong alliance between Catalonia and Quebec in r/place, but it also includes two words, \"oui\" and \"sí\", both of which mean yes in French and Catalan respectively. This references both Quebec's and Catalonia's desire to become an independent country, saying yes to a hypothetical referendum for independence.", "links": {"website": ["https://en.wikipedia.org/wiki/Quebec", "https://en.wikipedia.org/wiki/Catalonia", "https://en.wikipedia.org/wiki/Quebec_sovereignty_movement", "https://en.wikipedia.org/wiki/Catalan_independence_movement"], "subreddit": ["catalonia", "Quebec"]}, "path": {"127-258, T": [[454, 159], [457, 159], [461, 163], [461, 166], [460, 167], [460, 168], [459, 169], [459, 170], [452, 177], [446, 171], [444, 168], [444, 167], [443, 166], [443, 163], [447, 159], [450, 159], [451, 160], [453, 160], [453, 159]]}, "center": {"127-258, T": [452, 167]}}, {"id": 3952, "name": "Mappy", "description": "Pixel art of Mappy from the 1983 arcade game.\n\nMade by Namco.", "links": {}, "path": {"247": [[-1299, 387], [-1299, 386], [-1300, 386], [-1300, 384], [-1301, 382], [-1302, 381], [-1303, 380], [-1301, 379], [-1300, 374], [-1296, 373], [-1295, 374], [-1293, 373], [-1292, 374], [-1289, 373], [-1287, 375], [-1287, 379], [-1290, 379], [-1290, 385], [-1296, 385], [-1301, 384], [-1300, 378], [-1298, 387]]}, "center": {"247": [-1295, 379]}}, -{"id": 3955, "name": "\"Slork\" av mixmee", "description": "Veggmaleri av \"slork\", et viktig symbol på norsk streamer mixmee kanal", "links": {"website": ["https://twitch.tv/mixmee"], "discord": ["vrqTYcXUd5"]}, "path": {"250-258": [[1438, -653], [1454, -653], [1454, -609], [1439, -609]]}, "center": {"250-258": [1446, -637]}}, -{"id": 3956, "name": "Asexual flag", "description": "A pride flag representing the asexual community. Asexual people have no sexual attraction to others.", "links": {"website": ["https://en.wikipedia.org/wiki/Asexualit"], "subreddit": ["asexuality", "Asexual", "aaaaaaacccccccce"], "discord": ["ZtqCySw7DU"]}, "path": {"115-258": [[258, 81], [257, 87], [277, 86], [276, 81], [260, 82]]}, "center": {"115-258": [274, 84]}}, -{"id": 3957, "name": "Michael J. Caboose", "description": "\"My name is Michael J. Caboose, and I hate babies!\"\n—Caboose in Visiting Old Friends\nCaptain Michael Jesús Caboose is a main character in Red vs. Blue, currently voiced by Michael Malconian. He is portrayed as one of the most eccentric characters in the series. He appears in every main season of the series with the exception of Zero, though his Epsilon-created counterpart takes his place during Season 9 and The Shisno Trilogy. Additionally, during Relocated and the first half of Recreation, he was the only remaining member of his team. Due to him possessing the A.I. Storage Unit and thus Epsilon himself, he can be considered the protagonist of Recreation. From his debut until Singularity, he was voiced by Joel Heyman.", "links": {"website": ["https://rvb.fandom.com/wiki/Michael_J._Caboose"], "subreddit": ["RedvsBlue"], "discord": ["Z3Gtpt8X"]}, "path": {"250-258": [[394, -502], [397, -508], [406, -516], [411, -519], [418, -514], [418, -511], [422, -505], [423, -497], [393, -497], [392, -503]]}, "center": {"250-258": [410, -506]}}, -{"id": 3958, "name": "Jean-Pierre Polnareff (Jojo's Part 3)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 3: Stardust Crusaders. He was originally built on the french flag.\n\nStand: Silver Chariot\n\n\"Non non non non non non!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1031, -81], [-1031, -95], [-1029, -95], [-1027, -93], [-1027, -83], [-1026, -82], [-1027, -81]]}, "center": {"250-258": [-1029, -88]}}, -{"id": 3959, "name": "Gondola", "description": "A mutation of Spurdo Spärde originating from the /int/ board of the Finnish imageboard, Ylilauta. A benign, peaceful creature that rarely, if ever speaks and simply observes the world around him. Gondola is fond of walking.", "links": {"website": ["https://thephilosophersmeme.com/2015/11/29/a-short-note-on-gondola/"], "subreddit": ["gondola"]}, "path": {"250-258": [[48, -630], [49, -638], [53, -638], [54, -630], [51, -630]]}, "center": {"250-258": [51, -634]}}, -{"id": 3960, "name": "DOTA 2", "description": "Dota 2 is a 2013 multiplayer online battle arena (MOBA) video game by Valve.\n\nThe game is a sequel to Defense of the Ancients (DotA), a community-created mod for Blizzard Entertainment's Warcraft III: Reign of Chaos.", "links": {"website": ["https://www.dota2.com/home"], "subreddit": ["DotA2"], "discord": ["rdota2"]}, "path": {"214-246": [[-1457, 262], [-1457, 240], [-1436, 240], [-1436, 262]], "247-258": [[-1457, 233], [-1436, 233], [-1436, 262], [-1457, 262]]}, "center": {"214-246": [-1446, 251], "247-258": [-1446, 248]}}, -{"id": 3961, "name": "Monokuma Head", "description": "The head of Monokuma, the mascot of Danganronpa.", "links": {"subreddit": ["danganronpa"]}, "path": {"250-258": [[-1324, 139], [-1324, 154], [-1306, 154], [-1306, 139]]}, "center": {"250-258": [-1315, 147]}}, -{"id": 3962, "name": "Blender", "description": "Blender is a free and open source 3D creation suite software. Free to use for everyone, for any purpose. Created by Dutch software developer and film producer Ton Roosendaal on January 2nd 1994. It is also available on Steam.", "links": {"website": ["https://www.blender.org/"], "subreddit": ["blender"], "discord": ["blender"]}, "path": {"209-258": [[-422, -523], [-429, -530], [-432, -527], [-434, -527], [-436, -529], [-436, -530], [-429, -537], [-432, -537], [-434, -539], [-433, -538], [-434, -539], [-434, -540], [-432, -542], [-421, -542], [-424, -545], [-424, -547], [-422, -548], [-420, -548], [-408, -535], [-408, -530], [-409, -529], [-409, -528], [-413, -524], [-414, -524], [-415, -523]]}, "center": {"209-258": [-419, -533]}}, -{"id": 3964, "name": "Buffalo", "description": "Pixel map for the USA city of Buffalo, NY. The buffalo is the mascot for the city and it's beloved american football team, the Buffalo Bills.\n\nGo bills.", "links": {"subreddit": ["716place"]}, "path": {"165-259": [[670, -303], [648, -303], [648, -290], [670, -290]]}, "center": {"165-259": [659, -296]}}, -{"id": 3965, "name": "Calçot", "description": "A calçot is a vegetable very commonly eaten in Catalonia. They're usually eaten in a celebration called calçotada which just consists mainly of eating calçots in massive quantities.", "links": {"website": ["https://en.wikipedia.org/wiki/Cal%C3%A7ot"], "subreddit": ["catalonia"]}, "path": {"197-258": [[432, 166], [431, 166], [430, 167], [429, 166], [427, 166], [426, 167], [426, 169], [425, 170], [425, 174], [426, 175], [426, 178], [427, 179], [427, 181], [430, 184], [433, 184], [433, 183], [430, 180], [430, 179], [429, 178], [429, 176], [428, 175], [428, 173], [432, 169]]}, "center": {"197-258": [428, 169]}}, +{"id": 3955, "name": "\"Slork\" av mixmee", "description": "Veggmaleri av \"slork\", et viktig symbol på norsk streamer mixmee kanal", "links": {"website": ["https://twitch.tv/mixmee"], "discord": ["vrqTYcXUd5"]}, "path": {"250-258, T": [[1438, -653], [1454, -653], [1454, -609], [1439, -609]]}, "center": {"250-258, T": [1446, -637]}}, +{"id": 3956, "name": "Asexual flag", "description": "A pride flag representing the asexual community. Asexual people have no sexual attraction to others.", "links": {"website": ["https://en.wikipedia.org/wiki/Asexualit"], "subreddit": ["asexuality", "Asexual", "aaaaaaacccccccce"], "discord": ["ZtqCySw7DU"]}, "path": {"115-258, T": [[258, 81], [257, 87], [277, 86], [276, 81], [260, 82]]}, "center": {"115-258, T": [274, 84]}}, +{"id": 3957, "name": "Michael J. Caboose", "description": "\"My name is Michael J. Caboose, and I hate babies!\"\n—Caboose in Visiting Old Friends\nCaptain Michael Jesús Caboose is a main character in Red vs. Blue, currently voiced by Michael Malconian. He is portrayed as one of the most eccentric characters in the series. He appears in every main season of the series with the exception of Zero, though his Epsilon-created counterpart takes his place during Season 9 and The Shisno Trilogy. Additionally, during Relocated and the first half of Recreation, he was the only remaining member of his team. Due to him possessing the A.I. Storage Unit and thus Epsilon himself, he can be considered the protagonist of Recreation. From his debut until Singularity, he was voiced by Joel Heyman.", "links": {"website": ["https://rvb.fandom.com/wiki/Michael_J._Caboose"], "subreddit": ["RedvsBlue"], "discord": ["Z3Gtpt8X"]}, "path": {"250-258, T": [[394, -502], [397, -508], [406, -516], [411, -519], [418, -514], [418, -511], [422, -505], [423, -497], [393, -497], [392, -503]]}, "center": {"250-258, T": [410, -506]}}, +{"id": 3958, "name": "Jean-Pierre Polnareff (Jojo's Part 3)", "description": "A side protagonist of Jojo's Bizarre Adventure Part 3: Stardust Crusaders. He was originally built on the french flag.\n\nStand: Silver Chariot\n\n\"Non non non non non non!\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1031, -81], [-1031, -95], [-1029, -95], [-1027, -93], [-1027, -83], [-1026, -82], [-1027, -81]]}, "center": {"250-258, T": [-1029, -88]}}, +{"id": 3959, "name": "Gondola", "description": "A mutation of Spurdo Spärde originating from the /int/ board of the Finnish imageboard, Ylilauta. A benign, peaceful creature that rarely, if ever speaks and simply observes the world around him. Gondola is fond of walking.", "links": {"website": ["https://thephilosophersmeme.com/2015/11/29/a-short-note-on-gondola/"], "subreddit": ["gondola"]}, "path": {"250-258, T": [[48, -630], [49, -638], [53, -638], [54, -630], [51, -630]]}, "center": {"250-258, T": [51, -634]}}, +{"id": 3960, "name": "DOTA 2", "description": "Dota 2 is a 2013 multiplayer online battle arena (MOBA) video game by Valve.\n\nThe game is a sequel to Defense of the Ancients (DotA), a community-created mod for Blizzard Entertainment's Warcraft III: Reign of Chaos.", "links": {"website": ["https://www.dota2.com/home"], "subreddit": ["DotA2"], "discord": ["rdota2"]}, "path": {"214-246": [[-1457, 262], [-1457, 240], [-1436, 240], [-1436, 262]], "247-258, T": [[-1457, 233], [-1436, 233], [-1436, 262], [-1457, 262]]}, "center": {"214-246": [-1446, 251], "247-258, T": [-1446, 248]}}, +{"id": 3961, "name": "Monokuma Head", "description": "The head of Monokuma, the mascot of Danganronpa.", "links": {"subreddit": ["danganronpa"]}, "path": {"250-258, T": [[-1324, 139], [-1324, 154], [-1306, 154], [-1306, 139]]}, "center": {"250-258, T": [-1315, 147]}}, +{"id": 3962, "name": "Blender", "description": "Blender is a free and open source 3D creation suite software. Free to use for everyone, for any purpose. Created by Dutch software developer and film producer Ton Roosendaal on January 2nd 1994. It is also available on Steam.", "links": {"website": ["https://www.blender.org/"], "subreddit": ["blender"], "discord": ["blender"]}, "path": {"209-258, T": [[-422, -523], [-429, -530], [-432, -527], [-434, -527], [-436, -529], [-436, -530], [-429, -537], [-432, -537], [-434, -539], [-433, -538], [-434, -539], [-434, -540], [-432, -542], [-421, -542], [-424, -545], [-424, -547], [-422, -548], [-420, -548], [-408, -535], [-408, -530], [-409, -529], [-409, -528], [-413, -524], [-414, -524], [-415, -523]]}, "center": {"209-258, T": [-419, -533]}}, +{"id": 3964, "name": "Buffalo", "description": "Pixel map for the USA city of Buffalo, NY. The buffalo is the mascot for the city and it's beloved american football team, the Buffalo Bills.\n\nGo bills.", "links": {"subreddit": ["716place"]}, "path": {"165-259, T": [[670, -303], [648, -303], [648, -290], [670, -290]]}, "center": {"165-259, T": [659, -296]}}, +{"id": 3965, "name": "Calçot", "description": "A calçot is a vegetable very commonly eaten in Catalonia. They're usually eaten in a celebration called calçotada which just consists mainly of eating calçots in massive quantities.", "links": {"website": ["https://en.wikipedia.org/wiki/Cal%C3%A7ot"], "subreddit": ["catalonia"]}, "path": {"197-258, T": [[432, 166], [431, 166], [430, 167], [429, 166], [427, 166], [426, 167], [426, 169], [425, 170], [425, 174], [426, 175], [426, 178], [427, 179], [427, 181], [430, 184], [433, 184], [433, 183], [430, 180], [430, 179], [429, 178], [429, 176], [428, 175], [428, 173], [432, 169]]}, "center": {"197-258, T": [428, 169]}}, {"id": 3966, "name": "Bop Henry Lebowski", "description": "Bop Henry Lebowski is a character created by Hayato Dakarai Anims. He is described as a slimy being with a swirl of hair and Joy-Con headphones.", "links": {"website": ["https://ibb.co/VLmP9V2"], "subreddit": ["hayatonodes"]}, "path": {"206-210": [[1450, 713], [1457, 713], [1456, 722], [1449, 723]]}, "center": {"206-210": [1453, 718]}}, -{"id": 3967, "name": "Maryblog", "description": "Twitch partner e ilustradora || 23 años", "links": {"website": ["https://twitter.com/MaryBlog32", "https://twitter.com/MaryBlog32"]}, "path": {"250-258": [[90, -9], [96, -1], [90, -1], [96, -8], [96, -9], [96, 0], [90, -1], [90, -5], [90, -3], [97, -1], [97, -9], [94, -7], [97, -9]]}, "center": {"250-258": [93, -7]}}, +{"id": 3967, "name": "Maryblog", "description": "Twitch partner e ilustradora || 23 años", "links": {"website": ["https://twitter.com/MaryBlog32", "https://twitter.com/MaryBlog32"]}, "path": {"250-258, T": [[90, -9], [96, -1], [90, -1], [96, -8], [96, -9], [96, 0], [90, -1], [90, -5], [90, -3], [97, -1], [97, -9], [94, -7], [97, -9]]}, "center": {"250-258, T": [93, -7]}}, {"id": 3968, "name": "William Afton (FNAF)", "description": "William Afton, also known as the 'Purple' Guy and Springtrap, was the main antagonist of Five Nights at Freddy's franchise. He was the series main antagonist until his death.\n\nThis artwork is particular is from the second game in the series.", "links": {"subreddit": ["fivenightsatfreddys"]}, "path": {"253": [[-1269, 239], [-1272, 248], [-1288, 247], [-1288, 239], [-1291, 235], [-1293, 232], [-1301, 231], [-1305, 224], [-1315, 220], [-1313, 215], [-1308, 217], [-1305, 218], [-1302, 214], [-1299, 216], [-1298, 222], [-1293, 222], [-1293, 219], [-1289, 213], [-1287, 210], [-1294, 210], [-1299, 206], [-1298, 185], [-1293, 180], [-1279, 180], [-1275, 187], [-1275, 206], [-1267, 219], [-1267, 225], [-1289, 225], [-1288, 238]]}, "center": {"253": [-1287, 198]}}, -{"id": 3969, "name": "Comunidad JossCalx", "description": "Streamer Peruano de Twitch\nPERU", "links": {"website": ["https://www.twitch.tv/josscalx"]}, "path": {"230-258": [[-1297, 760], [-1304, 760], [-1301, 768], [-1294, 767], [-1294, 760]]}, "center": {"230-258": [-1298, 764]}}, -{"id": 3970, "name": "Galee Galee", "description": "Memorial to urban singer Gabriel Zúñiga, better known as Galee Galee.", "links": {"website": ["https://www.instagram.com/galeeykzgalee/", "https://www.youtube.com/@GaleeGalee/videos"]}, "path": {"250-258": [[-1249, -772], [-1249, -754], [-1206, -755], [-1208, -773]]}, "center": {"250-258": [-1240, -763]}}, -{"id": 3971, "name": "Skid & Pump", "description": "Skid (Left) & Pump (Right) are a duo of Small Children who originate from the Spooky Month Web Series created by Animator Sr. Pelo. The Spooky Month Web Series is an annual Halloween Themed web series in which they are the Two Main Protagonists. \n\nThey are also noticeable for their appearance in indie Video Game Friday Night Funkin' where they appear as one of the antagonists.", "links": {"subreddit": ["spookymonth"]}, "path": {"250-258": [[-1318, 394], [-1318, 399], [-1317, 399], [-1315, 401], [-1314, 403], [-1312, 406], [-1309, 407], [-1308, 409], [-1308, 416], [-1309, 417], [-1309, 419], [-1305, 420], [-1303, 420], [-1302, 417], [-1301, 420], [-1297, 420], [-1296, 419], [-1294, 419], [-1291, 419], [-1289, 414], [-1288, 412], [-1292, 409], [-1293, 409], [-1294, 407], [-1288, 405], [-1283, 404], [-1279, 402], [-1274, 397], [-1274, 394], [-1277, 392], [-1279, 392], [-1280, 391], [-1280, 390], [-1277, 386], [-1288, 378], [-1292, 379], [-1292, 384], [-1297, 385], [-1300, 389], [-1301, 391], [-1309, 393], [-1313, 391]]}, "center": {"250-258": [-1291, 395]}}, -{"id": 3972, "name": "Lampi", "description": "Lampi ist ein Pokemon und und ein kleiner Streamer. Zusammen mit r/PlaceDE im VC1 hat er zusammen mit der Nachtwache den Lampi aufgebaut.", "links": {"website": ["https://www.twitch.tv/lampireloaded"]}, "path": {"250-258": [[-664, -954], [-664, -951], [-663, -951], [-663, -950], [-662, -950], [-662, -949], [-659, -949], [-659, -950], [-658, -950], [-658, -951], [-658, -950], [-657, -950], [-656, -949], [-655, -948], [-654, -948], [-654, -947], [-652, -947], [-651, -946], [-650, -945], [-649, -944], [-648, -944], [-647, -945], [-646, -946], [-644, -946], [-643, -947], [-642, -948], [-642, -949], [-643, -950], [-642, -951], [-641, -952], [-642, -953], [-643, -954], [-644, -954], [-644, -958], [-645, -959], [-646, -960], [-647, -961], [-648, -961], [-649, -962], [-656, -962], [-657, -961], [-663, -955]]}, "center": {"250-258": [-651, -954]}}, -{"id": 3973, "name": "CUL - DomCassé", "description": "The Goblin is the mascot of DomCassé and his community who LOVE the \"CUL\"", "links": {"website": ["https://www.twitch.tv/domcasse"]}, "path": {"250-258": [[280, 991], [280, 966], [264, 966], [264, 991], [235, 990], [235, 995], [252, 995], [251, 1000], [270, 1000], [270, 991], [288, 991], [287, 966], [280, 966]]}, "center": {"250-258": [272, 983]}}, -{"id": 3974, "name": "Will Wood - The Normal Album", "description": "The cover of The Normal Album by Will Wood.", "links": {}, "path": {"211-258": [[-1339, 403], [-1348, 403], [-1348, 382], [-1328, 382], [-1328, 403]]}, "center": {"211-258": [-1338, 393]}}, +{"id": 3969, "name": "Comunidad JossCalx", "description": "Streamer Peruano de Twitch\nPERU", "links": {"website": ["https://www.twitch.tv/josscalx"]}, "path": {"230-258, T": [[-1297, 760], [-1304, 760], [-1301, 768], [-1294, 767], [-1294, 760]]}, "center": {"230-258, T": [-1298, 764]}}, +{"id": 3970, "name": "Galee Galee", "description": "Memorial to urban singer Gabriel Zúñiga, better known as Galee Galee.", "links": {"website": ["https://www.instagram.com/galeeykzgalee/", "https://www.youtube.com/@GaleeGalee/videos"]}, "path": {"250-258, T": [[-1249, -772], [-1249, -754], [-1206, -755], [-1208, -773]]}, "center": {"250-258, T": [-1240, -763]}}, +{"id": 3971, "name": "Skid & Pump", "description": "Skid (Left) & Pump (Right) are a duo of Small Children who originate from the Spooky Month Web Series created by Animator Sr. Pelo. The Spooky Month Web Series is an annual Halloween Themed web series in which they are the Two Main Protagonists. \n\nThey are also noticeable for their appearance in indie Video Game Friday Night Funkin' where they appear as one of the antagonists.", "links": {"subreddit": ["spookymonth"]}, "path": {"250-258, T": [[-1318, 394], [-1318, 399], [-1317, 399], [-1315, 401], [-1314, 403], [-1312, 406], [-1309, 407], [-1308, 409], [-1308, 416], [-1309, 417], [-1309, 419], [-1305, 420], [-1303, 420], [-1302, 417], [-1301, 420], [-1297, 420], [-1296, 419], [-1294, 419], [-1291, 419], [-1289, 414], [-1288, 412], [-1292, 409], [-1293, 409], [-1294, 407], [-1288, 405], [-1283, 404], [-1279, 402], [-1274, 397], [-1274, 394], [-1277, 392], [-1279, 392], [-1280, 391], [-1280, 390], [-1277, 386], [-1288, 378], [-1292, 379], [-1292, 384], [-1297, 385], [-1300, 389], [-1301, 391], [-1309, 393], [-1313, 391]]}, "center": {"250-258, T": [-1291, 395]}}, +{"id": 3972, "name": "Lampi", "description": "Lampi ist ein Pokemon und und ein kleiner Streamer. Zusammen mit r/PlaceDE im VC1 hat er zusammen mit der Nachtwache den Lampi aufgebaut.", "links": {"website": ["https://www.twitch.tv/lampireloaded"]}, "path": {"250-258, T": [[-664, -954], [-664, -951], [-663, -951], [-663, -950], [-662, -950], [-662, -949], [-659, -949], [-659, -950], [-658, -950], [-658, -951], [-658, -950], [-657, -950], [-656, -949], [-655, -948], [-654, -948], [-654, -947], [-652, -947], [-651, -946], [-650, -945], [-649, -944], [-648, -944], [-647, -945], [-646, -946], [-644, -946], [-643, -947], [-642, -948], [-642, -949], [-643, -950], [-642, -951], [-641, -952], [-642, -953], [-643, -954], [-644, -954], [-644, -958], [-645, -959], [-646, -960], [-647, -961], [-648, -961], [-649, -962], [-656, -962], [-657, -961], [-663, -955]]}, "center": {"250-258, T": [-651, -954]}}, +{"id": 3973, "name": "CUL - DomCassé", "description": "The Goblin is the mascot of DomCassé and his community who LOVE the \"CUL\"", "links": {"website": ["https://www.twitch.tv/domcasse"]}, "path": {"250-258, T": [[280, 991], [280, 966], [264, 966], [264, 991], [235, 990], [235, 995], [252, 995], [251, 1000], [270, 1000], [270, 991], [288, 991], [287, 966], [280, 966]]}, "center": {"250-258, T": [272, 983]}}, +{"id": 3974, "name": "Will Wood - The Normal Album", "description": "The cover of The Normal Album by Will Wood.", "links": {}, "path": {"211-258, T": [[-1339, 403], [-1348, 403], [-1348, 382], [-1328, 382], [-1328, 403]]}, "center": {"211-258, T": [-1338, 393]}}, {"id": 3975, "name": "Galaga", "description": "Galaga fighter from the shooter arcade in 1981", "links": {}, "path": {"233": [[1088, -591], [1088, -598], [1089, -595], [1090, -597], [1090, -602], [1091, -602], [1092, -602], [1092, -598], [1093, -600], [1093, -603], [1094, -604], [1095, -607], [1096, -604], [1097, -600], [1098, -598], [1099, -602], [1100, -596], [1101, -595], [1102, -599], [1103, -591], [1101, -591], [1097, -594], [1096, -592], [1095, -591], [1093, -594], [1091, -593]]}, "center": {"233": [1095, -597]}}, {"id": 3976, "name": "Sparklecare", "description": "Sparklecare is a webcomic written by Kittycorn Sansom that centers around Sparklecare Hospital, a seemingly innocent hospital that, despite its overwhelmingly positive reception, tortures and abuses its own patients.\n\nOn the left are four characters from the webcomic: Barry Ill, Nurse Doom, Polaris Klepsky and Uni Cornelius. On the right is the webcomic's logo.", "links": {"website": ["https://sparklecarehospital.com/"]}, "path": {"164-247": [[-709, 897], [-697, 897], [-697, 903], [-688, 903], [-688, 912], [-697, 912], [-697, 909], [-709, 909]]}, "center": {"164-247": [-703, 903]}}, -{"id": 3977, "name": "Derponce's community artwork", "description": "collective work of the members of the discord server of the brazilian youtuber \"HERO Derponce\" \nin the middle is the channel's logo, the letters \"D\" and \"P\" purple and together connected by a dog tag \nOn the right we have the characteristic skin of derponce's friend \"Luizera\" or \"Agente Peixoto\" \non the left the logo of the three largest clans on the discord server, Teknologia, Nigeria and Hz3.", "links": {"website": ["https://youtube.com/@Derponce"], "discord": ["derponce"]}, "path": {"250-258": [[1002, 424], [1001, 425], [1040, 425], [1040, 444], [1002, 444]]}, "center": {"250-258": [1021, 435]}}, -{"id": 3978, "name": "auto bot insignia", "description": "the emblem of the autobots, a faction of cybertronians in war against the decepticons in the transformers series", "links": {"subreddit": ["transformers"]}, "path": {"250-258": [[-1437, -366], [-1437, -363], [-1436, -363], [-1436, -362], [-1436, -357], [-1435, -357], [-1435, -356], [-1434, -356], [-1434, -355], [-1430, -355], [-1430, -356], [-1430, -355], [-1429, -355], [-1429, -356], [-1428, -356], [-1428, -357], [-1427, -357], [-1427, -362], [-1427, -363], [-1426, -363], [-1426, -366], [-1429, -366], [-1429, -367], [-1434, -367], [-1434, -366]]}, "center": {"250-258": [-1431, -361]}}, +{"id": 3977, "name": "Derponce's community artwork", "description": "collective work of the members of the discord server of the brazilian youtuber \"HERO Derponce\" \nin the middle is the channel's logo, the letters \"D\" and \"P\" purple and together connected by a dog tag \nOn the right we have the characteristic skin of derponce's friend \"Luizera\" or \"Agente Peixoto\" \non the left the logo of the three largest clans on the discord server, Teknologia, Nigeria and Hz3.", "links": {"website": ["https://youtube.com/@Derponce"], "discord": ["derponce"]}, "path": {"250-258, T": [[1002, 424], [1001, 425], [1040, 425], [1040, 444], [1002, 444]]}, "center": {"250-258, T": [1021, 435]}}, +{"id": 3978, "name": "auto bot insignia", "description": "the emblem of the autobots, a faction of cybertronians in war against the decepticons in the transformers series", "links": {"subreddit": ["transformers"]}, "path": {"250-258, T": [[-1437, -366], [-1437, -363], [-1436, -363], [-1436, -362], [-1436, -357], [-1435, -357], [-1435, -356], [-1434, -356], [-1434, -355], [-1430, -355], [-1430, -356], [-1430, -355], [-1429, -355], [-1429, -356], [-1428, -356], [-1428, -357], [-1427, -357], [-1427, -362], [-1427, -363], [-1426, -363], [-1426, -366], [-1429, -366], [-1429, -367], [-1434, -367], [-1434, -366]]}, "center": {"250-258, T": [-1431, -361]}}, {"id": 3979, "name": "Dwarf Fortress - Dota collaboration", "description": "A show of gratitude from dwarves in from of a sniper dwarf for Dota moving their artwork to make room for the dwarves.", "links": {"website": ["https://www.bay12games.com/"], "subreddit": ["dwarffortress", "DwarfFortressPlace", "DotA2"]}, "path": {"249": [[-1444, 263], [-1444, 273], [-1436, 273], [-1436, 263]]}, "center": {"249": [-1440, 268]}}, -{"id": 3980, "name": "Escudo del Perú", "description": "El escudo del Perú es el símbolo nacional heráldico oficial del país y es utilizado por el Estado peruano y las instituciones públicas. Tiene forma polaca o de piel de toro, cortado horizontalmente por la mitad y semipartido verticalmente hasta el centro, mostrando tres campos.\n\nEn el primer cuartel (superior izquierdo), de color celeste, se representa una vicuña pasante. En el segundo cuartel (superior derecho), de color argén (plata), se encuentra un árbol de la quina al natural. En la base o campo inferior, de color gules (rojo), se muestra una cornucopia de oro, orientada hacia la siniestra, derramando monedas también de oro.\n\nEn la parte superior del escudo, lleva una corona cívica de encinas vista de plano. Como soportes, a cada costado se encuentran un estandarte sin escudo y una bandera. Pero en este dibujo, solo hay un borde de hojas.\n\nLos campos del escudo simbolizan los recursos naturales del Perú: la vicuña representa el reino animal; el árbol de la quina representa el reino vegetal, y la cornucopia, el reino mineral. La corona cívica simboliza la victoria en las batallas de Perú.\n\nEl escudo del Perú es un importante símbolo patrio que refleja la identidad, historia y riqueza natural del país.", "links": {"subreddit": ["PERU"], "discord": ["rperu"]}, "path": {"250-258": [[-621, -874], [-627, -874], [-634, -867], [-636, -859], [-634, -849], [-630, -846], [-625, -844], [-620, -842], [-614, -843], [-611, -845], [-607, -852], [-606, -863], [-608, -866], [-610, -871], [-616, -873]]}, "center": {"250-258": [-621, -859]}}, -{"id": 3981, "name": "Galaga (Video Game)", "description": "Pixel art of the Galaga Space fighter from 1981", "links": {}, "path": {"228-258": [[1087, -591], [1087, -599], [1089, -599], [1089, -595], [1090, -596], [1090, -602], [1091, -602], [1092, -602], [1092, -598], [1093, -600], [1093, -603], [1094, -604], [1094, -607], [1096, -607], [1096, -604], [1097, -604], [1097, -600], [1098, -600], [1098, -598], [1098, -602], [1099, -602], [1100, -602], [1100, -596], [1101, -595], [1101, -599], [1103, -599], [1103, -591], [1103, -590], [1099, -593], [1099, -591], [1096, -591], [1096, -592], [1095, -590], [1094, -592], [1092, -591], [1091, -593], [1087, -590]]}, "center": {"228-258": [1095, -596]}}, -{"id": 3982, "name": "O Espreitador", "description": "Espreitador (Portuguese for \"Lurker\") is a creature from Ordem Paranormal, a role-playing game created by Brazilian streamer Cellbit.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/O_Espreitador"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"250-258": [[601, 413], [616, 413], [616, 360], [600, 360], [600, 413]]}, "center": {"250-258": [608, 387]}}, -{"id": 3984, "name": "VIETNAM FLAG", "description": "The red flag with yellow star", "links": {"website": ["https://en.wikipedia.org/wiki/Vietnam", "https://www.reddit.com/r/VietNam/comments/154vdok/rplace_2023/"], "subreddit": ["placevietnam"]}, "path": {"223-246": [[-1320, 83], [-1320, 139], [-1245, 139], [-1245, 83]], "247-251": [[-1320, 83], [-1320, 139], [-1232, 139], [-1232, 83]]}, "center": {"223-246": [-1282, 111], "247-251": [-1276, 111]}}, -{"id": 3985, "name": "Miami Dolphins", "description": "Art done by fans of the Miami Dolphins NFL team. The \"17\" jersey on the penguin represents Jaylen Waddle, a star wide receiver on the Dolphins. The penguin itself is a reference to Waddle's touchdown dance. The 72 around the penguin represents the team's undefeated 1972 season.", "links": {"website": ["https://www.miamidolphins.com/"], "subreddit": ["miamidolphins"]}, "path": {"250-258": [[1466, -147], [1466, -128], [1481, -129], [1481, -147]]}, "center": {"250-258": [1474, -137]}}, -{"id": 3986, "name": "mau5trap", "description": "Label run by DJ/producer Deadmau5.", "links": {"website": ["https://mau5trap.com/"], "subreddit": ["mau5trap"]}, "path": {"250-258": [[1208, 12], [1208, 18], [1240, 18], [1240, 20], [1242, 20], [1242, 18], [1244, 18], [1244, 17], [1245, 17], [1245, 12], [1231, 12], [1231, 10], [1224, 10], [1224, 12]]}, "center": {"250-258": [1228, 14]}}, +{"id": 3980, "name": "Escudo del Perú", "description": "El escudo del Perú es el símbolo nacional heráldico oficial del país y es utilizado por el Estado peruano y las instituciones públicas. Tiene forma polaca o de piel de toro, cortado horizontalmente por la mitad y semipartido verticalmente hasta el centro, mostrando tres campos.\n\nEn el primer cuartel (superior izquierdo), de color celeste, se representa una vicuña pasante. En el segundo cuartel (superior derecho), de color argén (plata), se encuentra un árbol de la quina al natural. En la base o campo inferior, de color gules (rojo), se muestra una cornucopia de oro, orientada hacia la siniestra, derramando monedas también de oro.\n\nEn la parte superior del escudo, lleva una corona cívica de encinas vista de plano. Como soportes, a cada costado se encuentran un estandarte sin escudo y una bandera. Pero en este dibujo, solo hay un borde de hojas.\n\nLos campos del escudo simbolizan los recursos naturales del Perú: la vicuña representa el reino animal; el árbol de la quina representa el reino vegetal, y la cornucopia, el reino mineral. La corona cívica simboliza la victoria en las batallas de Perú.\n\nEl escudo del Perú es un importante símbolo patrio que refleja la identidad, historia y riqueza natural del país.", "links": {"subreddit": ["PERU"], "discord": ["rperu"]}, "path": {"250-258, T": [[-621, -874], [-627, -874], [-634, -867], [-636, -859], [-634, -849], [-630, -846], [-625, -844], [-620, -842], [-614, -843], [-611, -845], [-607, -852], [-606, -863], [-608, -866], [-610, -871], [-616, -873]]}, "center": {"250-258, T": [-621, -859]}}, +{"id": 3981, "name": "Galaga (Video Game)", "description": "Pixel art of the Galaga Space fighter from 1981", "links": {}, "path": {"228-258, T": [[1087, -591], [1087, -599], [1089, -599], [1089, -595], [1090, -596], [1090, -602], [1091, -602], [1092, -602], [1092, -598], [1093, -600], [1093, -603], [1094, -604], [1094, -607], [1096, -607], [1096, -604], [1097, -604], [1097, -600], [1098, -600], [1098, -598], [1098, -602], [1099, -602], [1100, -602], [1100, -596], [1101, -595], [1101, -599], [1103, -599], [1103, -591], [1103, -590], [1099, -593], [1099, -591], [1096, -591], [1096, -592], [1095, -590], [1094, -592], [1092, -591], [1091, -593], [1087, -590]]}, "center": {"228-258, T": [1095, -596]}}, +{"id": 3982, "name": "O Espreitador", "description": "Espreitador (Portuguese for \"Lurker\") is a creature from Ordem Paranormal, a role-playing game created by Brazilian streamer Cellbit.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/O_Espreitador"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"250-258, T": [[601, 413], [616, 413], [616, 360], [600, 360], [600, 413]]}, "center": {"250-258, T": [608, 387]}}, +{"id": 3984, "name": "VIETNAM FLAG", "description": "The red flag with yellow star", "links": {"website": ["https://en.wikipedia.org/wiki/Vietnam", "https://www.reddit.com/r/VietNam/comments/154vdok/rplace_2023/"], "subreddit": ["placevietnam"]}, "path": {"223-246": [[-1320, 83], [-1320, 139], [-1245, 139], [-1245, 83]], "247-251, T": [[-1320, 83], [-1320, 139], [-1232, 139], [-1232, 83]]}, "center": {"223-246": [-1282, 111], "247-251, T": [-1276, 111]}}, +{"id": 3985, "name": "Miami Dolphins", "description": "Art done by fans of the Miami Dolphins NFL team. The \"17\" jersey on the penguin represents Jaylen Waddle, a star wide receiver on the Dolphins. The penguin itself is a reference to Waddle's touchdown dance. The 72 around the penguin represents the team's undefeated 1972 season.", "links": {"website": ["https://www.miamidolphins.com/"], "subreddit": ["miamidolphins"]}, "path": {"250-258, T": [[1466, -147], [1466, -128], [1481, -129], [1481, -147]]}, "center": {"250-258, T": [1474, -137]}}, +{"id": 3986, "name": "mau5trap", "description": "Label run by DJ/producer Deadmau5.", "links": {"website": ["https://mau5trap.com/"], "subreddit": ["mau5trap"]}, "path": {"250-258, T": [[1208, 12], [1208, 18], [1240, 18], [1240, 20], [1242, 20], [1242, 18], [1244, 18], [1244, 17], [1245, 17], [1245, 12], [1231, 12], [1231, 10], [1224, 10], [1224, 12]]}, "center": {"250-258, T": [1228, 14]}}, {"id": 3987, "name": "Comunidad JossCalx", "description": "Streamer peruano de TWITCH\nPERU", "links": {"website": ["https://www.twitch.tv/josscalx"]}, "path": {"179-216": [[-1311, 787], [-1305, 788], [-1305, 796], [-1311, 796]]}, "center": {"179-216": [-1308, 792]}}, {"id": 3988, "name": "Doomed Dwarves", "description": "A pair of dwarves doomed to be consumed by O Carente.\n\nThe Dwarves come from the 2006 Video Game: Dwarf Fortress.\n\nWas being built by u/EGAMatsuAlpha", "links": {"website": ["http://www.bay12games.com/dwarves/", "https://reddit.com/u/EGAMatsuAlpha"], "subreddit": ["dwarffortress"]}, "path": {"155-158": [[606, 734], [606, 744], [620, 744], [620, 738], [620, 737], [622, 737], [622, 734]]}, "center": {"155-158": [614, 739]}}, -{"id": 3989, "name": "Twice CandyBong", "description": "Candy Bong is Twice's official light stick. The idea of the \"Candy Bong\" was inspired from one of Twice's tracks \"Candy Boy\" from their debut mini-album \"The Story Begins\".", "links": {"subreddit": ["Twice"]}, "path": {"230-258": [[-987, -551], [-987, -563], [-976, -563], [-976, -550], [-987, -550], [-987, -563]]}, "center": {"230-258": [-981, -556]}}, -{"id": 3990, "name": "Union Jack Flag", "description": "A smaller Union Jack flag built by the Bronies as a homage and remnant to UKPlace's earlier giant claim of the area, and also to compliment (and as another reason to) build an Octavia Melody, who is well known for having strong British characteristics.\n\nIt was also built to help compliment Tiny Tardis (a long time recurring ally of the Bronies from many r/place events past) and to give Rainbow Dash a flag to salute in front of.", "links": {"subreddit": ["ukplace", "tinytardis", "mylittlepony"]}, "path": {"250-258": [[506, 845], [509, 848], [509, 850], [507, 852], [508, 853], [508, 854], [506, 856], [506, 858], [505, 859], [505, 862], [503, 864], [501, 864], [501, 883], [503, 883], [503, 881], [505, 881], [505, 883], [507, 883], [507, 884], [508, 884], [508, 887], [507, 887], [507, 889], [508, 889], [509, 888], [512, 888], [515, 891], [515, 887], [502, 874], [502, 867], [512, 857], [512, 856], [510, 856], [510, 854], [511, 853], [512, 853], [514, 851], [515, 851], [516, 850], [525, 850], [526, 851], [528, 851], [529, 852], [538, 852], [538, 854], [539, 854], [539, 857], [540, 857], [540, 863], [539, 863], [539, 872], [538, 872], [538, 876], [537, 876], [537, 881], [536, 881], [536, 884], [535, 884], [535, 886], [538, 886], [538, 885], [540, 885], [540, 884], [542, 884], [542, 883], [548, 883], [548, 882], [554, 882], [554, 880], [543, 880], [543, 877], [542, 877], [541, 876], [541, 873], [543, 871], [543, 869], [542, 868], [541, 868], [540, 867], [540, 864], [541, 863], [541, 860], [543, 858], [543, 856], [561, 856], [561, 853], [560, 853], [560, 852], [555, 852], [555, 850], [556, 850], [556, 846], [558, 846], [558, 847], [565, 847], [565, 849], [563, 849], [563, 851], [562, 851], [562, 856], [543, 856], [543, 852], [539, 852], [529, 852], [528, 851], [528, 848], [523, 848], [521, 850], [516, 850], [516, 848], [517, 847], [517, 846], [518, 845], [518, 844], [506, 844]]}, "center": {"250-258": [513, 848]}}, -{"id": 3991, "name": "Chokita (Negrita)", "description": "It is perhaps one of the most popular cookies among Chileans.\n\nThe classic \"Negrita\", with its distinctive flavor of chocolate and vanilla, can be found even in the most remote stores in this South American country.", "links": {"website": ["https://www.bbc.com/mundo/noticias-america-latina-57926458"]}, "path": {"250-258": [[-947, -828], [-913, -828], [-913, -818], [-947, -819]]}, "center": {"250-258": [-930, -823]}}, -{"id": 3992, "name": "Tocata", "description": "Tocata 22 añitos, streamer y frenton, pasivo de su roommate ElZeein el regala rosas", "links": {"website": ["https://www.twitch.tv/tocata"]}, "path": {"250-258": [[-1138, -734], [-1119, -734], [-1120, -713], [-1138, -713]]}, "center": {"250-258": [-1129, -724]}}, +{"id": 3989, "name": "Twice CandyBong", "description": "Candy Bong is Twice's official light stick. The idea of the \"Candy Bong\" was inspired from one of Twice's tracks \"Candy Boy\" from their debut mini-album \"The Story Begins\".", "links": {"subreddit": ["Twice"]}, "path": {"230-258, T": [[-987, -551], [-987, -563], [-976, -563], [-976, -550], [-987, -550], [-987, -563]]}, "center": {"230-258, T": [-981, -556]}}, +{"id": 3990, "name": "Union Jack Flag", "description": "A smaller Union Jack flag built by the Bronies as a homage and remnant to UKPlace's earlier giant claim of the area, and also to compliment (and as another reason to) build an Octavia Melody, who is well known for having strong British characteristics.\n\nIt was also built to help compliment Tiny Tardis (a long time recurring ally of the Bronies from many r/place events past) and to give Rainbow Dash a flag to salute in front of.", "links": {"subreddit": ["ukplace", "tinytardis", "mylittlepony"]}, "path": {"250-258, T": [[506, 845], [509, 848], [509, 850], [507, 852], [508, 853], [508, 854], [506, 856], [506, 858], [505, 859], [505, 862], [503, 864], [501, 864], [501, 883], [503, 883], [503, 881], [505, 881], [505, 883], [507, 883], [507, 884], [508, 884], [508, 887], [507, 887], [507, 889], [508, 889], [509, 888], [512, 888], [515, 891], [515, 887], [502, 874], [502, 867], [512, 857], [512, 856], [510, 856], [510, 854], [511, 853], [512, 853], [514, 851], [515, 851], [516, 850], [525, 850], [526, 851], [528, 851], [529, 852], [538, 852], [538, 854], [539, 854], [539, 857], [540, 857], [540, 863], [539, 863], [539, 872], [538, 872], [538, 876], [537, 876], [537, 881], [536, 881], [536, 884], [535, 884], [535, 886], [538, 886], [538, 885], [540, 885], [540, 884], [542, 884], [542, 883], [548, 883], [548, 882], [554, 882], [554, 880], [543, 880], [543, 877], [542, 877], [541, 876], [541, 873], [543, 871], [543, 869], [542, 868], [541, 868], [540, 867], [540, 864], [541, 863], [541, 860], [543, 858], [543, 856], [561, 856], [561, 853], [560, 853], [560, 852], [555, 852], [555, 850], [556, 850], [556, 846], [558, 846], [558, 847], [565, 847], [565, 849], [563, 849], [563, 851], [562, 851], [562, 856], [543, 856], [543, 852], [539, 852], [529, 852], [528, 851], [528, 848], [523, 848], [521, 850], [516, 850], [516, 848], [517, 847], [517, 846], [518, 845], [518, 844], [506, 844]]}, "center": {"250-258, T": [513, 848]}}, +{"id": 3991, "name": "Chokita (Negrita)", "description": "It is perhaps one of the most popular cookies among Chileans.\n\nThe classic \"Negrita\", with its distinctive flavor of chocolate and vanilla, can be found even in the most remote stores in this South American country.", "links": {"website": ["https://www.bbc.com/mundo/noticias-america-latina-57926458"]}, "path": {"250-258, T": [[-947, -828], [-913, -828], [-913, -818], [-947, -819]]}, "center": {"250-258, T": [-930, -823]}}, +{"id": 3992, "name": "Tocata", "description": "Tocata 22 añitos, streamer y frenton, pasivo de su roommate ElZeein el regala rosas", "links": {"website": ["https://www.twitch.tv/tocata"]}, "path": {"250-258, T": [[-1138, -734], [-1119, -734], [-1120, -713], [-1138, -713]]}, "center": {"250-258, T": [-1129, -724]}}, {"id": 3993, "name": "Guapoozer", "description": "Community union representation of Foolish Gamers and Vegetta777", "links": {"website": ["https://www.youtube.com/@vegetta777", "https://www.twitch.tv/foolish_gamers"]}, "path": {"236": [[-711, 909], [-657, 908], [-656, 916], [-647, 916], [-647, 931], [-661, 931], [-661, 941], [-711, 941]]}, "center": {"236": [-682, 925]}}, -{"id": 3994, "name": "Lipigas", "description": "Empresas Lipigas S.A is a Chilean company dedicated to the commercialization of liquefied petroleum gas, natural gas and liquefied natural gas for residential, commercial and industrial use.", "links": {"website": ["https://es.wikipedia.org/wiki/Lipigas"]}, "path": {"250-258": [[-1168, -755], [-1167, -793], [-1165, -796], [-1165, -809], [-1159, -812], [-1146, -814], [-1141, -811], [-1142, -797], [-1139, -794], [-1138, -786], [-1138, -783], [-1139, -780], [-1138, -756], [-1167, -755]]}, "center": {"250-258": [-1153, -785]}}, +{"id": 3994, "name": "Lipigas", "description": "Empresas Lipigas S.A is a Chilean company dedicated to the commercialization of liquefied petroleum gas, natural gas and liquefied natural gas for residential, commercial and industrial use.", "links": {"website": ["https://es.wikipedia.org/wiki/Lipigas"]}, "path": {"250-258, T": [[-1168, -755], [-1167, -793], [-1165, -796], [-1165, -809], [-1159, -812], [-1146, -814], [-1141, -811], [-1142, -797], [-1139, -794], [-1138, -786], [-1138, -783], [-1139, -780], [-1138, -756], [-1167, -755]]}, "center": {"250-258, T": [-1153, -785]}}, {"id": 3995, "name": "Dwarf Fortress", "description": "This is one of the four embark sites of dwarves. Dwarves are the main pawns in the complex CSM game Dwarf Fortress, where you need to indirectly control pawns to fulfill their needs in food, alcohol and entertainment.", "links": {"website": ["https://www.bay12games.com/"], "subreddit": ["dwarffortress", "DwarfFortressPlace"]}, "path": {"249": [[352, -1000], [361, -1000], [361, -992], [360, -992], [360, -991], [359, -991], [359, -989], [356, -989], [356, -990], [355, -990], [355, -991], [353, -991], [353, -992], [352, -992]]}, "center": {"249": [357, -995]}}, -{"id": 3996, "name": "Shark Tooth", "description": "These are a part of the Carrot Farm located below O Carente, next to Portugal. This is a fossil Otodus chubutensis tooth.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C"]}, "path": {"245-258": [[1053, 412], [1056, 423], [1061, 422], [1063, 409], [1054, 408]]}, "center": {"245-258": [1058, 413]}}, -{"id": 3998, "name": "SEVENTEEN", "description": "SEVENTEEN is a 13-member South Korean boy group managed by Pledis Entertainment. They debuted in 2015 with the lead single \"Adore U.\" \n\nThe design features one of the group's older logos, shaped like a cut diamond in reference to their fandom, \"CARAT\". The arms of the diamond are shaped like the number 17 and are in group's official colors, rose quartz and serenity.", "links": {"website": ["https://www.youtube.com/channel/UCfkXDY7vwkcJ8ddFGz8KusA", "https://en.wikipedia.org/wiki/Seventeen_(South_Korean_band)"], "subreddit": ["seventeen"]}, "path": {"250-258": [[-1207, 406], [-1207, 412], [-1201, 412], [-1201, 406]]}, "center": {"250-258": [-1204, 409]}}, -{"id": 3999, "name": "PAC-MAN", "description": "PAC-MAN is the titular main protagonist of the franchise of the same name. PAC-MAN first originated in the Arcade Game PAC-MAN (1980). PAC-MAN has since gone on to appear in many more video games and other media.", "links": {"subreddit": ["pacman"]}, "path": {"207-258": [[-171, 954], [-171, 961], [-172, 962], [-174, 963], [-179, 964], [-180, 963], [-182, 962], [-183, 960], [-184, 955], [-183, 954], [-182, 952], [-180, 951], [-175, 950]]}, "center": {"207-258": [-177, 957]}}, -{"id": 4000, "name": "lolmongus", "description": "amongus mongus mongus mogus lol amongus amongus amongus amongus mongus!\n\n\"¡Hey! You found me ;)\"", "links": {"subreddit": ["borfrokc"]}, "path": {"206-258": [[1423, 115], [1427, 115], [1427, 116], [1428, 116], [1428, 119], [1423, 119]]}, "center": {"206-258": [1425, 117]}}, -{"id": 4001, "name": "Starset DIVISIONS album logo", "description": "A small version of the logo off of the rock band Starset's third album, DIVISIONS, released in 2019. Starset is a cinematic rock band from Columbus, OH formed in 2013.", "links": {"subreddit": ["starsetplace", "Starset"], "discord": ["2v7txxr2"]}, "path": {"250-258": [[1406, 22], [1406, 17], [1412, 17], [1412, 23], [1406, 23]]}, "center": {"250-258": [1409, 20]}}, -{"id": 4002, "name": "Pompeyo4", "description": "Popular Mexican Clash Royale streamer, depicting his Minecraft Skin head and a PF sign with a heart, representing his community, the PompeFamily.", "links": {"website": ["https://www.twitch.tv/pompeyo4/"]}, "path": {"250-258": [[-1294, 575], [-1294, 601], [-1279, 600], [-1279, 584], [-1276, 581], [-1278, 579], [-1283, 576], [-1283, 575]]}, "center": {"250-258": [-1286, 588]}}, -{"id": 4003, "name": "pattym-pattymeza", "description": "Pattym1CORAZON is one of the emotes of pattymeza and the symbol of her community 'Los pattytos.' She is a popular Mexican streamer and a seven-themed icon.", "links": {"website": ["https://www.twitch.tv/pattymeza"]}, "path": {"250-258": [[-1192, -619], [-1194, -619], [-1195, -618], [-1195, -611], [-1145, -611], [-1145, -614], [-1146, -614], [-1146, -617], [-1148, -618], [-1147, -619], [-1147, -620], [-1146, -620], [-1146, -624], [-1147, -625], [-1147, -626], [-1149, -627], [-1147, -629], [-1143, -635], [-1142, -638], [-1141, -644], [-1143, -645], [-1143, -648], [-1145, -650], [-1147, -652], [-1153, -658], [-1159, -659], [-1176, -660], [-1176, -659], [-1178, -659], [-1178, -658], [-1180, -658], [-1180, -657], [-1182, -657], [-1184, -656], [-1184, -655], [-1186, -654], [-1186, -655], [-1188, -653], [-1190, -650], [-1191, -647], [-1192, -636], [-1190, -637], [-1190, -634], [-1188, -633], [-1186, -632], [-1185, -630], [-1189, -627], [-1192, -623], [-1192, -620], [-1195, -618]]}, "center": {"250-258": [-1166, -638]}}, -{"id": 4004, "name": "Til-Til", "description": "Tiltil or Til-Til is a Chilean municipality and city, in the Chacabuco Province, Santiago Metropolitan Region. Tiltil is most known for being an execution place for rebels during Chile's independence war against Spain. Manuel Rodríguez was executed in Tiltil.", "links": {"website": ["https://en.wikipedia.org/wiki/Tiltil"]}, "path": {"250-258": [[-1442, -784], [-1442, -767], [-1416, -767], [-1416, -784]]}, "center": {"250-258": [-1429, -775]}}, -{"id": 4005, "name": "Tsukumo Sana's Limiter", "description": "Tsukumo Sana, An Alumni of Hololive English -Council- is 'BEEG', Her height is 1,697,840 km. But her sheer size made her unable to walk the Earth. So she has a limiter to shrink and limit her size to 169 cm.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"250-258": [[-618, -306], [-618, -308], [-621, -308], [-622, -309], [-623, -310], [-624, -311], [-624, -312], [-623, -313], [-622, -314], [-621, -315], [-614, -315], [-613, -314], [-611, -312], [-611, -311], [-613, -309], [-615, -309], [-615, -308], [-616, -307], [-616, -306], [-617, -305]]}, "center": {"250-258": [-617, -312]}}, -{"id": 4006, "name": "Chibi Shiraishi An", "description": "A very small drawing of Shiraishi An, a character from Project Sekai: Colorful Stage", "links": {}, "path": {"250-258": [[1488, 538], [1494, 538], [1494, 545], [1488, 545]]}, "center": {"250-258": [1491, 542]}}, +{"id": 3996, "name": "Shark Tooth", "description": "These are a part of the Carrot Farm located below O Carente, next to Portugal. This is a fossil Otodus chubutensis tooth.", "links": {"subreddit": ["farmcarrots"], "discord": ["zgx2FkWB3C"]}, "path": {"245-258, T": [[1053, 412], [1056, 423], [1061, 422], [1063, 409], [1054, 408]]}, "center": {"245-258, T": [1058, 413]}}, +{"id": 3998, "name": "SEVENTEEN", "description": "SEVENTEEN is a 13-member South Korean boy group managed by Pledis Entertainment. They debuted in 2015 with the lead single \"Adore U.\" \n\nThe design features one of the group's older logos, shaped like a cut diamond in reference to their fandom, \"CARAT\". The arms of the diamond are shaped like the number 17 and are in group's official colors, rose quartz and serenity.", "links": {"website": ["https://www.youtube.com/channel/UCfkXDY7vwkcJ8ddFGz8KusA", "https://en.wikipedia.org/wiki/Seventeen_(South_Korean_band)"], "subreddit": ["seventeen"]}, "path": {"250-258, T": [[-1207, 406], [-1207, 412], [-1201, 412], [-1201, 406]]}, "center": {"250-258, T": [-1204, 409]}}, +{"id": 3999, "name": "PAC-MAN", "description": "PAC-MAN is the titular main protagonist of the franchise of the same name. PAC-MAN first originated in the Arcade Game PAC-MAN (1980). PAC-MAN has since gone on to appear in many more video games and other media.", "links": {"subreddit": ["pacman"]}, "path": {"207-258, T": [[-171, 954], [-171, 961], [-172, 962], [-174, 963], [-179, 964], [-180, 963], [-182, 962], [-183, 960], [-184, 955], [-183, 954], [-182, 952], [-180, 951], [-175, 950]]}, "center": {"207-258, T": [-177, 957]}}, +{"id": 4000, "name": "lolmongus", "description": "amongus mongus mongus mogus lol amongus amongus amongus amongus mongus!\n\n\"¡Hey! You found me ;)\"", "links": {"subreddit": ["borfrokc"]}, "path": {"206-258, T": [[1423, 115], [1427, 115], [1427, 116], [1428, 116], [1428, 119], [1423, 119]]}, "center": {"206-258, T": [1425, 117]}}, +{"id": 4001, "name": "Starset DIVISIONS album logo", "description": "A small version of the logo off of the rock band Starset's third album, DIVISIONS, released in 2019. Starset is a cinematic rock band from Columbus, OH formed in 2013.", "links": {"subreddit": ["starsetplace", "Starset"], "discord": ["2v7txxr2"]}, "path": {"250-258, T": [[1406, 22], [1406, 17], [1412, 17], [1412, 23], [1406, 23]]}, "center": {"250-258, T": [1409, 20]}}, +{"id": 4002, "name": "Pompeyo4", "description": "Popular Mexican Clash Royale streamer, depicting his Minecraft Skin head and a PF sign with a heart, representing his community, the PompeFamily.", "links": {"website": ["https://www.twitch.tv/pompeyo4/"]}, "path": {"250-258, T": [[-1294, 575], [-1294, 601], [-1279, 600], [-1279, 584], [-1276, 581], [-1278, 579], [-1283, 576], [-1283, 575]]}, "center": {"250-258, T": [-1286, 588]}}, +{"id": 4003, "name": "pattym-pattymeza", "description": "Pattym1CORAZON is one of the emotes of pattymeza and the symbol of her community 'Los pattytos.' She is a popular Mexican streamer and a seven-themed icon.", "links": {"website": ["https://www.twitch.tv/pattymeza"]}, "path": {"250-258, T": [[-1192, -619], [-1194, -619], [-1195, -618], [-1195, -611], [-1145, -611], [-1145, -614], [-1146, -614], [-1146, -617], [-1148, -618], [-1147, -619], [-1147, -620], [-1146, -620], [-1146, -624], [-1147, -625], [-1147, -626], [-1149, -627], [-1147, -629], [-1143, -635], [-1142, -638], [-1141, -644], [-1143, -645], [-1143, -648], [-1145, -650], [-1147, -652], [-1153, -658], [-1159, -659], [-1176, -660], [-1176, -659], [-1178, -659], [-1178, -658], [-1180, -658], [-1180, -657], [-1182, -657], [-1184, -656], [-1184, -655], [-1186, -654], [-1186, -655], [-1188, -653], [-1190, -650], [-1191, -647], [-1192, -636], [-1190, -637], [-1190, -634], [-1188, -633], [-1186, -632], [-1185, -630], [-1189, -627], [-1192, -623], [-1192, -620], [-1195, -618]]}, "center": {"250-258, T": [-1166, -638]}}, +{"id": 4004, "name": "Til-Til", "description": "Tiltil or Til-Til is a Chilean municipality and city, in the Chacabuco Province, Santiago Metropolitan Region. Tiltil is most known for being an execution place for rebels during Chile's independence war against Spain. Manuel Rodríguez was executed in Tiltil.", "links": {"website": ["https://en.wikipedia.org/wiki/Tiltil"]}, "path": {"250-258, T": [[-1442, -784], [-1442, -767], [-1416, -767], [-1416, -784]]}, "center": {"250-258, T": [-1429, -775]}}, +{"id": 4005, "name": "Tsukumo Sana's Limiter", "description": "Tsukumo Sana, An Alumni of Hololive English -Council- is 'BEEG', Her height is 1,697,840 km. But her sheer size made her unable to walk the Earth. So she has a limiter to shrink and limit her size to 169 cm.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"250-258, T": [[-618, -306], [-618, -308], [-621, -308], [-622, -309], [-623, -310], [-624, -311], [-624, -312], [-623, -313], [-622, -314], [-621, -315], [-614, -315], [-613, -314], [-611, -312], [-611, -311], [-613, -309], [-615, -309], [-615, -308], [-616, -307], [-616, -306], [-617, -305]]}, "center": {"250-258, T": [-617, -312]}}, +{"id": 4006, "name": "Chibi Shiraishi An", "description": "A very small drawing of Shiraishi An, a character from Project Sekai: Colorful Stage", "links": {}, "path": {"250-258, T": [[1488, 538], [1494, 538], [1494, 545], [1488, 545]]}, "center": {"250-258, T": [1491, 542]}}, {"id": 4007, "name": "Dwarf Fortress", "description": "This is one of the four embark sites of dwarves. Dwarves are the main pawns in the complex CSM game Dwarf Fortress, where you need to indirectly control pawns to fulfill their needs in food, alcohol and entertainment.", "links": {"website": ["https://www.bay12games.com/"], "subreddit": ["dwarffortress", "DwarfFortressPlace"]}, "path": {"252": [[-1355, 373], [-1348, 373], [-1348, 381], [-1355, 381]]}, "center": {"252": [-1351, 377]}}, -{"id": 4008, "name": "Mascota Vino Gato", "description": "Gato, originally GatoNegro, is one of the best-selling Chilean wines in the world, being a leader in more than fifteen markets in which it is present.", "links": {"website": ["https://es.wikipedia.org/wiki/Viña_San_Pedro", "https://gatonegro.cl"]}, "path": {"250-258": [[-1003, -792], [-1011, -786], [-1008, -780], [-1016, -774], [-1011, -766], [-1007, -768], [-1005, -771], [-991, -770], [-980, -764], [-976, -765], [-976, -769], [-982, -775], [-983, -780], [-988, -785], [-992, -784], [-993, -780], [-1003, -782], [-1007, -785], [-1001, -792]]}, "center": {"250-258": [-989, -776]}}, -{"id": 4009, "name": "Goux", "description": "Goux Official is a secret project of Colombian origin, techno and underground lovers.", "links": {"website": ["https://www.instagram.com/gouxofficial/"], "subreddit": ["GouxOfficial"], "discord": ["Exr4xU4W"]}, "path": {"250-258": [[-1451, 199], [-1451, 203], [-1436, 203], [-1436, 199]]}, "center": {"250-258": [-1443, 201]}}, -{"id": 4010, "name": "Condorito", "description": "Condorito (Little Condor in Spanish) is a Chilean comic book and comic strip series that features an anthropomorphic condor living in a fictitious town named Pelotillehue, a typical small Chilean provincial town. He is meant to be a representation of the Chilean people.", "links": {"website": ["https://en.wikipedia.org/wiki/Condorito", "https://condorito.fandom.com/es/wiki/Condorito_Wiki"]}, "path": {"125-258": [[-983, -817], [-972, -828], [-961, -828], [-957, -830], [-957, -827], [-961, -824], [-957, -818], [-952, -814], [-952, -808], [-958, -805], [-960, -804], [-956, -802], [-949, -802], [-946, -805], [-945, -809], [-942, -811], [-935, -809], [-926, -797], [-928, -794], [-931, -793], [-940, -800], [-942, -798], [-948, -796], [-956, -794], [-958, -790], [-960, -786], [-960, -763], [-955, -763], [-954, -760], [-958, -757], [-971, -757], [-971, -760], [-971, -779], [-975, -775], [-978, -780], [-971, -788], [-974, -792], [-977, -787], [-986, -787], [-987, -785], [-990, -787], [-996, -787], [-999, -790], [-998, -792], [-997, -796], [-996, -801], [-988, -806], [-986, -806], [-986, -794], [-979, -794], [-973, -801], [-978, -806], [-983, -803], [-985, -805], [-984, -808], [-982, -809], [-983, -818]]}, "center": {"125-258": [-968, -814]}}, -{"id": 4011, "name": "🔴Six Gamers🔴", "description": "- SG es una comunidad, conglomerado o grupo de streamers y amigos que buscan llevar contenido de calidad y muy variado a toda clase de público. Nos esforzamos con el único fin de entretener y llevar algo positivo a la vida de quienes nos siguen, además de crecer como comunidad y fortalecer los lazos de amistad entre los miembros de SixGamers. En pocas palabras somos un grupo de amigos divertidos, chéveres y muy locos que buscan hacer feliz a las personas que los ven.", "links": {"website": ["https://www.sixgamers.com/"]}, "path": {"249-259": [[1483, 205], [1499, 205], [1499, 217], [1483, 217]]}, "center": {"249-259": [1491, 211]}}, -{"id": 4012, "name": "Québec flag extension", "description": "An extension of the Québec flag on the right of the canvas", "links": {"subreddit": ["quebec"], "discord": ["9ZABJhB7"]}, "path": {"250-258": [[714, 130], [714, 132], [712, 132], [715, 132], [715, 133], [718, 133], [718, 134], [721, 134], [721, 135], [724, 135], [724, 136], [726, 136], [726, 137], [728, 137], [728, 138], [731, 138], [733, 139], [733, 140], [735, 140], [735, 141], [737, 141], [737, 143], [738, 143], [738, 144], [740, 144], [740, 145], [741, 145], [741, 146], [742, 146], [742, 147], [743, 147], [743, 148], [744, 148], [744, 149], [745, 149], [746, 149], [746, 151], [747, 151], [747, 152], [749, 152], [749, 153], [750, 153], [750, 154], [751, 154], [751, 155], [752, 155], [752, 157], [753, 157], [753, 159], [754, 159], [754, 160], [755, 160], [755, 161], [756, 161], [756, 163], [757, 163], [757, 164], [758, 164], [758, 166], [759, 166], [759, 168], [760, 168], [760, 170], [761, 170], [761, 174], [762, 174], [762, 176], [763, 176], [763, 179], [764, 179], [764, 183], [765, 183], [765, 188], [766, 188], [766, 206], [772, 206], [772, 207], [774, 207], [774, 206], [777, 206], [777, 205], [779, 205], [779, 204], [780, 204], [780, 203], [781, 203], [781, 202], [782, 202], [782, 201], [783, 201], [783, 199], [784, 199], [784, 198], [785, 198], [785, 197], [786, 197], [787, 197], [787, 195], [788, 195], [788, 193], [789, 193], [789, 192], [798, 192], [798, 193], [802, 193], [802, 194], [805, 194], [805, 195], [807, 195], [807, 196], [808, 196], [808, 130], [714, 129]]}, "center": {"250-258": [782, 156]}}, -{"id": 4013, "name": "Chinchou / Lampi", "description": "Chinchou is a Pokémon from the second generation of Pokémon games, with its appearance is based on an angler fish.\n\nChinchou in german is Lampi and the Streamer LampiRelaoded built this together with the\u0001r/PlaceDE night watch. The VC1 helped the most and was also the biggest supporter", "links": {"website": ["http://pokemon.com/", "https://www.twitch.tv/lampireloaded"], "subreddit": ["pokemon"], "discord": ["pokemon"]}, "path": {"216-258": [[-658, -951], [-652, -947], [-648, -944], [-646, -946], [-643, -947], [-643, -950], [-644, -954], [-646, -960], [-656, -962], [-661, -957], [-663, -952], [-661, -949]]}, "center": {"216-258": [-651, -954]}}, -{"id": 4014, "name": "AI Sponge", "description": "AI Sponge is a series of Youtube livestreams featuring content of SpongeBob SquarePants characters talking to each other written by Artificial Intelligence.\n\nUnfortunately, On July 26, 2023, one day after r/place 2023 ended, AI Sponge was officially discontinued as a result of Uberduck ending support for public voice-hosting.", "links": {"website": ["https://en.wikipedia.org/wiki/Ai_sponge", "https://spongefan.fandom.com/wiki/AI_Sponge", "https://youtube.fandom.com/wiki/Ai_sponge"], "subreddit": ["aispongeplace"], "discord": ["6WWvqUnY", "aisponge"]}, "path": {"55-61": [[742, 247], [742, 263], [756, 263], [757, 262], [757, 248], [756, 246], [747, 246], [743, 247]], "70-83": [[880, -458], [880, -453], [879, -452], [880, -451], [881, -450], [890, -450], [891, -451], [892, -450], [896, -450], [897, -451], [898, -452], [899, -453], [899, -473], [898, -474], [898, -475], [897, -476], [896, -477], [890, -477], [889, -476], [888, -476], [887, -477], [886, -476], [885, -476], [884, -477], [883, -477], [882, -476], [879, -476], [878, -475], [877, -474], [876, -473], [875, -472], [875, -466], [876, -465], [876, -463], [877, -462], [878, -461], [878, -460], [879, -459]], "89-111": [[-784, 230], [-783, 229], [-782, 228], [-781, 227], [-778, 227], [-777, 226], [-776, 226], [-775, 227], [-774, 227], [-773, 226], [-772, 227], [-771, 227], [-770, 226], [-764, 226], [-763, 227], [-762, 228], [-762, 229], [-761, 230], [-761, 249], [-762, 250], [-763, 251], [-763, 252], [-764, 253], [-764, 254], [-763, 254], [-762, 255], [-762, 256], [-763, 257], [-767, 257], [-768, 256], [-768, 253], [-770, 253], [-770, 254], [-769, 254], [-768, 255], [-769, 257], [-773, 257], [-774, 256], [-774, 254], [-775, 253], [-776, 252], [-777, 250], [-776, 250], [-776, 248], [-777, 247], [-778, 246], [-779, 245], [-780, 244], [-781, 243], [-782, 242], [-782, 241], [-783, 240], [-784, 239], [-784, 236], [-785, 235], [-785, 231]], "134-258": [[284, -810], [283, -809], [284, -808], [285, -807], [286, -806], [292, -806], [293, -807], [295, -807], [296, -806], [299, -806], [300, -807], [301, -807], [302, -808], [303, -809], [304, -810], [304, -831], [303, -832], [303, -833], [302, -834], [301, -835], [294, -835], [293, -834], [292, -835], [291, -834], [290, -834], [289, -835], [288, -835], [287, -834], [284, -834], [283, -833], [282, -832], [281, -831], [280, -831], [279, -830], [279, -824], [280, -823], [280, -820], [281, -819], [282, -818], [283, -818], [283, -816], [284, -815]]}, "center": {"55-61": [750, 255], "70-83": [888, -465], "89-111": [-772, 237], "134-258": [293, -823]}}, -{"id": 4017, "name": "Pepe ez", "description": "This is a bttv emote and it was drawn by the argentine/uruguay streamer FranquitoM and the argentinian streamer Ale Wang.", "links": {"website": ["https://www.twitch.tv/franqitom", "https://www.twitch.tv/alewang"]}, "path": {"158-258": [[55, 503], [146, 503], [145, 597], [56, 596]]}, "center": {"158-258": [101, 549]}}, +{"id": 4008, "name": "Mascota Vino Gato", "description": "Gato, originally GatoNegro, is one of the best-selling Chilean wines in the world, being a leader in more than fifteen markets in which it is present.", "links": {"website": ["https://es.wikipedia.org/wiki/Viña_San_Pedro", "https://gatonegro.cl"]}, "path": {"250-258, T": [[-1003, -792], [-1011, -786], [-1008, -780], [-1016, -774], [-1011, -766], [-1007, -768], [-1005, -771], [-991, -770], [-980, -764], [-976, -765], [-976, -769], [-982, -775], [-983, -780], [-988, -785], [-992, -784], [-993, -780], [-1003, -782], [-1007, -785], [-1001, -792]]}, "center": {"250-258, T": [-989, -776]}}, +{"id": 4009, "name": "Goux", "description": "Goux Official is a secret project of Colombian origin, techno and underground lovers.", "links": {"website": ["https://www.instagram.com/gouxofficial/"], "subreddit": ["GouxOfficial"], "discord": ["Exr4xU4W"]}, "path": {"250-258, T": [[-1451, 199], [-1451, 203], [-1436, 203], [-1436, 199]]}, "center": {"250-258, T": [-1443, 201]}}, +{"id": 4010, "name": "Condorito", "description": "Condorito (Little Condor in Spanish) is a Chilean comic book and comic strip series that features an anthropomorphic condor living in a fictitious town named Pelotillehue, a typical small Chilean provincial town. He is meant to be a representation of the Chilean people.", "links": {"website": ["https://en.wikipedia.org/wiki/Condorito", "https://condorito.fandom.com/es/wiki/Condorito_Wiki"]}, "path": {"125-258, T": [[-983, -817], [-972, -828], [-961, -828], [-957, -830], [-957, -827], [-961, -824], [-957, -818], [-952, -814], [-952, -808], [-958, -805], [-960, -804], [-956, -802], [-949, -802], [-946, -805], [-945, -809], [-942, -811], [-935, -809], [-926, -797], [-928, -794], [-931, -793], [-940, -800], [-942, -798], [-948, -796], [-956, -794], [-958, -790], [-960, -786], [-960, -763], [-955, -763], [-954, -760], [-958, -757], [-971, -757], [-971, -760], [-971, -779], [-975, -775], [-978, -780], [-971, -788], [-974, -792], [-977, -787], [-986, -787], [-987, -785], [-990, -787], [-996, -787], [-999, -790], [-998, -792], [-997, -796], [-996, -801], [-988, -806], [-986, -806], [-986, -794], [-979, -794], [-973, -801], [-978, -806], [-983, -803], [-985, -805], [-984, -808], [-982, -809], [-983, -818]]}, "center": {"125-258, T": [-968, -814]}}, +{"id": 4011, "name": "🔴Six Gamers🔴", "description": "- SG es una comunidad, conglomerado o grupo de streamers y amigos que buscan llevar contenido de calidad y muy variado a toda clase de público. Nos esforzamos con el único fin de entretener y llevar algo positivo a la vida de quienes nos siguen, además de crecer como comunidad y fortalecer los lazos de amistad entre los miembros de SixGamers. En pocas palabras somos un grupo de amigos divertidos, chéveres y muy locos que buscan hacer feliz a las personas que los ven.", "links": {"website": ["https://www.sixgamers.com/"]}, "path": {"249-259, T": [[1483, 205], [1499, 205], [1499, 217], [1483, 217]]}, "center": {"249-259, T": [1491, 211]}}, +{"id": 4012, "name": "Québec flag extension", "description": "An extension of the Québec flag on the right of the canvas", "links": {"subreddit": ["quebec"], "discord": ["9ZABJhB7"]}, "path": {"250-258, T": [[714, 130], [714, 132], [712, 132], [715, 132], [715, 133], [718, 133], [718, 134], [721, 134], [721, 135], [724, 135], [724, 136], [726, 136], [726, 137], [728, 137], [728, 138], [731, 138], [733, 139], [733, 140], [735, 140], [735, 141], [737, 141], [737, 143], [738, 143], [738, 144], [740, 144], [740, 145], [741, 145], [741, 146], [742, 146], [742, 147], [743, 147], [743, 148], [744, 148], [744, 149], [745, 149], [746, 149], [746, 151], [747, 151], [747, 152], [749, 152], [749, 153], [750, 153], [750, 154], [751, 154], [751, 155], [752, 155], [752, 157], [753, 157], [753, 159], [754, 159], [754, 160], [755, 160], [755, 161], [756, 161], [756, 163], [757, 163], [757, 164], [758, 164], [758, 166], [759, 166], [759, 168], [760, 168], [760, 170], [761, 170], [761, 174], [762, 174], [762, 176], [763, 176], [763, 179], [764, 179], [764, 183], [765, 183], [765, 188], [766, 188], [766, 206], [772, 206], [772, 207], [774, 207], [774, 206], [777, 206], [777, 205], [779, 205], [779, 204], [780, 204], [780, 203], [781, 203], [781, 202], [782, 202], [782, 201], [783, 201], [783, 199], [784, 199], [784, 198], [785, 198], [785, 197], [786, 197], [787, 197], [787, 195], [788, 195], [788, 193], [789, 193], [789, 192], [798, 192], [798, 193], [802, 193], [802, 194], [805, 194], [805, 195], [807, 195], [807, 196], [808, 196], [808, 130], [714, 129]]}, "center": {"250-258, T": [782, 156]}}, +{"id": 4013, "name": "Chinchou / Lampi", "description": "Chinchou is a Pokémon from the second generation of Pokémon games, with its appearance is based on an angler fish.\n\nChinchou in german is Lampi and the Streamer LampiRelaoded built this together with the\u0001r/PlaceDE night watch. The VC1 helped the most and was also the biggest supporter", "links": {"website": ["http://pokemon.com/", "https://www.twitch.tv/lampireloaded"], "subreddit": ["pokemon"], "discord": ["pokemon"]}, "path": {"216-258, T": [[-658, -951], [-652, -947], [-648, -944], [-646, -946], [-643, -947], [-643, -950], [-644, -954], [-646, -960], [-656, -962], [-661, -957], [-663, -952], [-661, -949]]}, "center": {"216-258, T": [-651, -954]}}, +{"id": 4014, "name": "AI Sponge", "description": "AI Sponge is a series of Youtube livestreams featuring content of SpongeBob SquarePants characters talking to each other written by Artificial Intelligence.\n\nUnfortunately, On July 26, 2023, one day after r/place 2023 ended, AI Sponge was officially discontinued as a result of Uberduck ending support for public voice-hosting.", "links": {"website": ["https://en.wikipedia.org/wiki/Ai_sponge", "https://spongefan.fandom.com/wiki/AI_Sponge", "https://youtube.fandom.com/wiki/Ai_sponge"], "subreddit": ["aispongeplace"], "discord": ["6WWvqUnY", "aisponge"]}, "path": {"55-61": [[742, 247], [742, 263], [756, 263], [757, 262], [757, 248], [756, 246], [747, 246], [743, 247]], "70-83": [[880, -458], [880, -453], [879, -452], [880, -451], [881, -450], [890, -450], [891, -451], [892, -450], [896, -450], [897, -451], [898, -452], [899, -453], [899, -473], [898, -474], [898, -475], [897, -476], [896, -477], [890, -477], [889, -476], [888, -476], [887, -477], [886, -476], [885, -476], [884, -477], [883, -477], [882, -476], [879, -476], [878, -475], [877, -474], [876, -473], [875, -472], [875, -466], [876, -465], [876, -463], [877, -462], [878, -461], [878, -460], [879, -459]], "89-111": [[-784, 230], [-783, 229], [-782, 228], [-781, 227], [-778, 227], [-777, 226], [-776, 226], [-775, 227], [-774, 227], [-773, 226], [-772, 227], [-771, 227], [-770, 226], [-764, 226], [-763, 227], [-762, 228], [-762, 229], [-761, 230], [-761, 249], [-762, 250], [-763, 251], [-763, 252], [-764, 253], [-764, 254], [-763, 254], [-762, 255], [-762, 256], [-763, 257], [-767, 257], [-768, 256], [-768, 253], [-770, 253], [-770, 254], [-769, 254], [-768, 255], [-769, 257], [-773, 257], [-774, 256], [-774, 254], [-775, 253], [-776, 252], [-777, 250], [-776, 250], [-776, 248], [-777, 247], [-778, 246], [-779, 245], [-780, 244], [-781, 243], [-782, 242], [-782, 241], [-783, 240], [-784, 239], [-784, 236], [-785, 235], [-785, 231]], "134-258, T": [[284, -810], [283, -809], [284, -808], [285, -807], [286, -806], [292, -806], [293, -807], [295, -807], [296, -806], [299, -806], [300, -807], [301, -807], [302, -808], [303, -809], [304, -810], [304, -831], [303, -832], [303, -833], [302, -834], [301, -835], [294, -835], [293, -834], [292, -835], [291, -834], [290, -834], [289, -835], [288, -835], [287, -834], [284, -834], [283, -833], [282, -832], [281, -831], [280, -831], [279, -830], [279, -824], [280, -823], [280, -820], [281, -819], [282, -818], [283, -818], [283, -816], [284, -815]]}, "center": {"55-61": [750, 255], "70-83": [888, -465], "89-111": [-772, 237], "134-258, T": [293, -823]}}, +{"id": 4017, "name": "Pepe ez", "description": "This is a bttv emote and it was drawn by the argentine/uruguay streamer FranquitoM and the argentinian streamer Ale Wang.", "links": {"website": ["https://www.twitch.tv/franqitom", "https://www.twitch.tv/alewang"]}, "path": {"158-258, T": [[55, 503], [146, 503], [145, 597], [56, 596]]}, "center": {"158-258, T": [101, 549]}}, {"id": 4018, "name": "Dwarf Fortress", "description": "This is one of the four embark sites of dwarves. Dwarves are the main pawns in the complex CSM game Dwarf Fortress, where you need to indirectly control pawns to fulfill their needs in food, alcohol and entertainment.", "links": {"website": ["https://www.bay12games.com/"], "subreddit": ["dwarffortress", "DwarfFortressPlace"]}, "path": {"249": [[-580, -520], [-571, -520], [-571, -508], [-580, -508]]}, "center": {"249": [-575, -514]}}, -{"id": 4019, "name": "Camilanga", "description": "Comunidad de los \n\"Panditas\" de Camila Mariana de Argentina, Streamer de variedad en Twitch/Camilanga", "links": {"website": ["https://www.twitch.tv/camilanga", "https://www.youtube.com/@Camilanga7"], "discord": ["CGajhPg5"]}, "path": {"250-258": [[-1025, -272], [-1002, -272], [-1002, -249], [-1005, -249], [-1005, -248], [-1007, -248], [-1007, -247], [-1008, -247], [-1008, -246], [-1009, -246], [-1009, -245], [-1010, -245], [-1010, -244], [-1011, -244], [-1011, -243], [-1012, -243], [-1012, -233], [-1025, -233]]}, "center": {"250-258": [-1013, -260]}}, -{"id": 4020, "name": "Slovakia", "description": "The country of Slovakia as it appears on a map, with the flag of Slovakia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Slovakia", "https://en.wikipedia.org/wiki/Flag_of_Slovakia"], "subreddit": ["Slovakia", "PlaceEU"]}, "path": {"158-243": [[-230, 751], [-233, 755], [-236, 757], [-236, 758], [-231, 762], [-227, 759], [-222, 756], [-219, 756], [-218, 757], [-217, 756], [-217, 754], [-216, 753], [-219, 751], [-222, 751], [-223, 752], [-229, 752]], "244-258": [[-236, 760], [-236, 757], [-230, 752], [-226, 753], [-220, 752], [-219, 753], [-213, 753], [-210, 752], [-210, 751], [-209, 751], [-207, 753], [-204, 753], [-205, 754], [-205, 755], [-206, 756], [-206, 757], [-208, 757], [-209, 758], [-213, 758], [-214, 759], [-214, 760], [-215, 761], [-216, 762], [-216, 763], [-220, 763], [-220, 765], [-222, 765], [-222, 766], [-223, 766], [-223, 768], [-225, 768], [-225, 769], [-228, 769], [-228, 768], [-230, 768], [-231, 767], [-232, 767], [-233, 765], [-234, 765], [-235, 764], [-235, 763], [-235, 762]]}, "center": {"158-243": [-229, 756], "244-258": [-227, 760]}}, -{"id": 4021, "name": "FrenchCorner | FC 」", "description": "Banner of the FrenchCorner Community\n\nNetwork of virtual reality creators, for creators by creators.\n\nThe FrenchCorner creates multiple events around VR, from simple music event to advanced content filming with the community !", "links": {"subreddit": ["frenchcorner"], "discord": ["u3cygncFu5"]}, "path": {"206-258": [[-486, 870], [-486, 863], [-500, 863], [-500, 870]]}, "center": {"206-258": [-493, 867]}}, -{"id": 4022, "name": "gloglo", "description": "pantera de glogloking", "links": {"website": ["https://www.twitch.tv/elglogloking"]}, "path": {"191-258": [[-1497, -683], [-1486, -683], [-1486, -679], [-1487, -679], [-1487, -677], [-1486, -677], [-1486, -674], [-1487, -674], [-1487, -673], [-1495, -673], [-1496, -673], [-1496, -674], [-1497, -674]]}, "center": {"191-258": [-1492, -678]}}, -{"id": 4023, "name": "Allioli", "description": "Allioli is a cold sauce made out of garlic and olive oil. The sauce is common in various regions of South Western Europe, including Catalonia. The pixel art shows the process of creating the allioli, where garlic is crushed in a mortar and emulsified with salt and olive oil.", "links": {"website": ["https://en.wikipedia.org/wiki/Aioli"], "subreddit": ["catalonia"]}, "path": {"203-258": [[442, 204], [447, 204], [451, 200], [449, 198], [449, 197], [450, 197], [450, 196], [451, 195], [450, 194], [450, 192], [449, 191], [448, 191], [446, 193], [441, 193], [440, 194], [438, 194], [437, 195], [439, 197], [439, 198], [438, 198], [438, 199], [437, 200], [439, 202], [440, 202]]}, "center": {"203-258": [444, 199]}}, +{"id": 4019, "name": "Camilanga", "description": "Comunidad de los \n\"Panditas\" de Camila Mariana de Argentina, Streamer de variedad en Twitch/Camilanga", "links": {"website": ["https://www.twitch.tv/camilanga", "https://www.youtube.com/@Camilanga7"], "discord": ["CGajhPg5"]}, "path": {"250-258, T": [[-1025, -272], [-1002, -272], [-1002, -249], [-1005, -249], [-1005, -248], [-1007, -248], [-1007, -247], [-1008, -247], [-1008, -246], [-1009, -246], [-1009, -245], [-1010, -245], [-1010, -244], [-1011, -244], [-1011, -243], [-1012, -243], [-1012, -233], [-1025, -233]]}, "center": {"250-258, T": [-1013, -260]}}, +{"id": 4020, "name": "Slovakia", "description": "The country of Slovakia as it appears on a map, with the flag of Slovakia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Slovakia", "https://en.wikipedia.org/wiki/Flag_of_Slovakia"], "subreddit": ["Slovakia", "PlaceEU"]}, "path": {"158-243": [[-230, 751], [-233, 755], [-236, 757], [-236, 758], [-231, 762], [-227, 759], [-222, 756], [-219, 756], [-218, 757], [-217, 756], [-217, 754], [-216, 753], [-219, 751], [-222, 751], [-223, 752], [-229, 752]], "244-258, T": [[-236, 760], [-236, 757], [-230, 752], [-226, 753], [-220, 752], [-219, 753], [-213, 753], [-210, 752], [-210, 751], [-209, 751], [-207, 753], [-204, 753], [-205, 754], [-205, 755], [-206, 756], [-206, 757], [-208, 757], [-209, 758], [-213, 758], [-214, 759], [-214, 760], [-215, 761], [-216, 762], [-216, 763], [-220, 763], [-220, 765], [-222, 765], [-222, 766], [-223, 766], [-223, 768], [-225, 768], [-225, 769], [-228, 769], [-228, 768], [-230, 768], [-231, 767], [-232, 767], [-233, 765], [-234, 765], [-235, 764], [-235, 763], [-235, 762]]}, "center": {"158-243": [-229, 756], "244-258, T": [-227, 760]}}, +{"id": 4021, "name": "FrenchCorner | FC 」", "description": "Banner of the FrenchCorner Community\n\nNetwork of virtual reality creators, for creators by creators.\n\nThe FrenchCorner creates multiple events around VR, from simple music event to advanced content filming with the community !", "links": {"subreddit": ["frenchcorner"], "discord": ["u3cygncFu5"]}, "path": {"206-258, T": [[-486, 870], [-486, 863], [-500, 863], [-500, 870]]}, "center": {"206-258, T": [-493, 867]}}, +{"id": 4022, "name": "gloglo", "description": "pantera de glogloking", "links": {"website": ["https://www.twitch.tv/elglogloking"]}, "path": {"191-258, T": [[-1497, -683], [-1486, -683], [-1486, -679], [-1487, -679], [-1487, -677], [-1486, -677], [-1486, -674], [-1487, -674], [-1487, -673], [-1495, -673], [-1496, -673], [-1496, -674], [-1497, -674]]}, "center": {"191-258, T": [-1492, -678]}}, +{"id": 4023, "name": "Allioli", "description": "Allioli is a cold sauce made out of garlic and olive oil. The sauce is common in various regions of South Western Europe, including Catalonia. The pixel art shows the process of creating the allioli, where garlic is crushed in a mortar and emulsified with salt and olive oil.", "links": {"website": ["https://en.wikipedia.org/wiki/Aioli"], "subreddit": ["catalonia"]}, "path": {"203-258, T": [[442, 204], [447, 204], [451, 200], [449, 198], [449, 197], [450, 197], [450, 196], [451, 195], [450, 194], [450, 192], [449, 191], [448, 191], [446, 193], [441, 193], [440, 194], [438, 194], [437, 195], [439, 197], [439, 198], [438, 198], [438, 199], [437, 200], [439, 202], [440, 202]]}, "center": {"203-258, T": [444, 199]}}, {"id": 4024, "name": "MARICK", "description": "Mi novela Daarick x Maryblog", "links": {}, "path": {"245": [[78, -10], [96, -10], [96, -1], [78, -1]]}, "center": {"245": [87, -5]}}, -{"id": 4025, "name": "Rocket", "description": "A small depiction of Rocket from the show Little Einsteins, created in memory of Blake Kruger who passed away late 2022.", "links": {}, "path": {"250-258": [[1495, 177], [1496, 178], [1499, 183], [1495, 183], [1499, 177]]}, "center": {"250-258": [1497, 182]}}, -{"id": 4026, "name": "Tennessee Titans", "description": "One of the logos of the Tennessee Titans NFL team", "links": {"website": ["https://www.tennesseetitans.com/"], "subreddit": ["Tennesseetitans"]}, "path": {"250-258": [[1466, -143], [1449, -144], [1449, -165], [1466, -165]]}, "center": {"250-258": [1458, -154]}}, -{"id": 4028, "name": "cóndor-huemul", "description": "Cóndor: Es el ave nacional de Chile y simboliza la majestuosidad y libertad. El cóndor se ubica en la parte superior del escudo y despliega sus alas.\n\nHuemul: Es un ciervo autóctono de los Andes y representa la fortaleza y la resistencia. Se encuentra en la parte inferior del escudo.", "links": {"subreddit": ["chile"], "discord": ["placechile"]}, "path": {"250-258": [[-873, -756], [-871, -758], [-871, -766], [-870, -774], [-865, -779], [-865, -780], [-864, -782], [-863, -784], [-864, -785], [-864, -787], [-862, -787], [-860, -787], [-858, -787], [-858, -791], [-857, -792], [-857, -794], [-861, -799], [-875, -800], [-878, -798], [-881, -801], [-890, -790], [-886, -801], [-885, -804], [-888, -807], [-889, -806], [-890, -802], [-892, -798], [-895, -791], [-900, -799], [-898, -803], [-899, -804], [-901, -804], [-901, -803], [-903, -801], [-903, -806], [-904, -806], [-905, -807], [-907, -804], [-908, -802], [-904, -795], [-910, -800], [-912, -800], [-913, -800], [-912, -790], [-905, -782], [-903, -782], [-903, -773], [-906, -768], [-908, -765], [-909, -763], [-908, -761], [-907, -758], [-905, -756], [-873, -755]]}, "center": {"250-258": [-887, -772]}}, -{"id": 4029, "name": "Hirohiko Araki", "description": "Mangaka who wrote and illustrated the entirety of Jojo's Bizarre Adventure.", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1141, -101], [-1137, -101], [-1136, -100], [-1136, -97], [-1136, -95], [-1137, -93], [-1140, -94], [-1141, -95]]}, "center": {"250-258": [-1138, -97]}}, -{"id": 4030, "name": "Nine Inch Nails Logo", "description": "Logo for the band Nine Inch Nails (Sometimes abbreviated to just NIN)", "links": {"website": ["https://en.wikipedia.org/wiki/Nine_Inch_Nails"]}, "path": {"175-258": [[-1368, -306], [-1368, -298], [-1352, -298], [-1352, -306]]}, "center": {"175-258": [-1360, -302]}}, -{"id": 4031, "name": "Yoru", "description": "Yoru is one of the strongest swords in the world of the manga and anime One Piece, ranked as one of the 12 Supreme Grade swords. It is currently owned by Dracule Mihawk, the \"Strongest Swordsman in the World\".\n\nThis was done in a collaboration with r/Berserk for their Hill of Swords.", "links": {"website": ["https://onepiece.fandom.com/wiki/Yoru"], "subreddit": ["OnePiece", "Berserk"], "discord": ["oneplace", "M699v8xSqz"]}, "path": {"165-258": [[537, 924], [533, 928], [533, 929], [534, 930], [534, 936], [529, 936], [529, 935], [525, 935], [525, 941], [527, 943], [528, 943], [529, 942], [532, 942], [532, 949], [531, 950], [532, 951], [534, 951], [535, 952], [540, 952], [542, 950], [542, 942], [548, 942], [548, 938], [549, 937], [549, 935], [546, 935], [545, 936], [540, 936], [540, 930], [541, 929], [541, 928]]}, "center": {"165-258": [537, 940]}}, -{"id": 4032, "name": "Juan Carlos Bodoque (31 Minutos)", "description": "Juan Carlos Bodoque is one of the main characters of \"31 Minutos\". He is a red rabbit, star journalist of the program, in charge of \"La Nota Verde\".", "links": {"website": ["https://31minutos.fandom.com/wiki/Juan_Carlos_Bodoque", "https://en.wikipedia.org/wiki/31_Minutos"]}, "path": {"250-258": [[-927, -755], [-929, -761], [-926, -761], [-931, -769], [-929, -770], [-924, -775], [-923, -784], [-919, -786], [-910, -785], [-908, -782], [-911, -777], [-915, -770], [-914, -764], [-917, -763], [-916, -755], [-928, -755], [-930, -758]]}, "center": {"250-258": [-922, -767]}}, +{"id": 4025, "name": "Rocket", "description": "A small depiction of Rocket from the show Little Einsteins, created in memory of Blake Kruger who passed away late 2022.", "links": {}, "path": {"250-258, T": [[1495, 177], [1496, 178], [1499, 183], [1495, 183], [1499, 177]]}, "center": {"250-258, T": [1497, 182]}}, +{"id": 4026, "name": "Tennessee Titans", "description": "One of the logos of the Tennessee Titans NFL team", "links": {"website": ["https://www.tennesseetitans.com/"], "subreddit": ["Tennesseetitans"]}, "path": {"250-258, T": [[1466, -143], [1449, -144], [1449, -165], [1466, -165]]}, "center": {"250-258, T": [1458, -154]}}, +{"id": 4028, "name": "cóndor-huemul", "description": "Cóndor: Es el ave nacional de Chile y simboliza la majestuosidad y libertad. El cóndor se ubica en la parte superior del escudo y despliega sus alas.\n\nHuemul: Es un ciervo autóctono de los Andes y representa la fortaleza y la resistencia. Se encuentra en la parte inferior del escudo.", "links": {"subreddit": ["chile"], "discord": ["placechile"]}, "path": {"250-258, T": [[-873, -756], [-871, -758], [-871, -766], [-870, -774], [-865, -779], [-865, -780], [-864, -782], [-863, -784], [-864, -785], [-864, -787], [-862, -787], [-860, -787], [-858, -787], [-858, -791], [-857, -792], [-857, -794], [-861, -799], [-875, -800], [-878, -798], [-881, -801], [-890, -790], [-886, -801], [-885, -804], [-888, -807], [-889, -806], [-890, -802], [-892, -798], [-895, -791], [-900, -799], [-898, -803], [-899, -804], [-901, -804], [-901, -803], [-903, -801], [-903, -806], [-904, -806], [-905, -807], [-907, -804], [-908, -802], [-904, -795], [-910, -800], [-912, -800], [-913, -800], [-912, -790], [-905, -782], [-903, -782], [-903, -773], [-906, -768], [-908, -765], [-909, -763], [-908, -761], [-907, -758], [-905, -756], [-873, -755]]}, "center": {"250-258, T": [-887, -772]}}, +{"id": 4029, "name": "Hirohiko Araki", "description": "Mangaka who wrote and illustrated the entirety of Jojo's Bizarre Adventure.", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1141, -101], [-1137, -101], [-1136, -100], [-1136, -97], [-1136, -95], [-1137, -93], [-1140, -94], [-1141, -95]]}, "center": {"250-258, T": [-1138, -97]}}, +{"id": 4030, "name": "Nine Inch Nails Logo", "description": "Logo for the band Nine Inch Nails (Sometimes abbreviated to just NIN)", "links": {"website": ["https://en.wikipedia.org/wiki/Nine_Inch_Nails"]}, "path": {"175-258, T": [[-1368, -306], [-1368, -298], [-1352, -298], [-1352, -306]]}, "center": {"175-258, T": [-1360, -302]}}, +{"id": 4031, "name": "Yoru", "description": "Yoru is one of the strongest swords in the world of the manga and anime One Piece, ranked as one of the 12 Supreme Grade swords. It is currently owned by Dracule Mihawk, the \"Strongest Swordsman in the World\".\n\nThis was done in a collaboration with r/Berserk for their Hill of Swords.", "links": {"website": ["https://onepiece.fandom.com/wiki/Yoru"], "subreddit": ["OnePiece", "Berserk"], "discord": ["oneplace", "M699v8xSqz"]}, "path": {"165-258, T": [[537, 924], [533, 928], [533, 929], [534, 930], [534, 936], [529, 936], [529, 935], [525, 935], [525, 941], [527, 943], [528, 943], [529, 942], [532, 942], [532, 949], [531, 950], [532, 951], [534, 951], [535, 952], [540, 952], [542, 950], [542, 942], [548, 942], [548, 938], [549, 937], [549, 935], [546, 935], [545, 936], [540, 936], [540, 930], [541, 929], [541, 928]]}, "center": {"165-258, T": [537, 940]}}, +{"id": 4032, "name": "Juan Carlos Bodoque (31 Minutos)", "description": "Juan Carlos Bodoque is one of the main characters of \"31 Minutos\". He is a red rabbit, star journalist of the program, in charge of \"La Nota Verde\".", "links": {"website": ["https://31minutos.fandom.com/wiki/Juan_Carlos_Bodoque", "https://en.wikipedia.org/wiki/31_Minutos"]}, "path": {"250-258, T": [[-927, -755], [-929, -761], [-926, -761], [-931, -769], [-929, -770], [-924, -775], [-923, -784], [-919, -786], [-910, -785], [-908, -782], [-911, -777], [-915, -770], [-914, -764], [-917, -763], [-916, -755], [-928, -755], [-930, -758]]}, "center": {"250-258, T": [-922, -767]}}, {"id": 4033, "name": "Argentina", "description": "Argentina's National Flag.", "links": {}, "path": {"116": [[-1000, 480], [-958, 480], [-958, 499], [-1000, 499]]}, "center": {"116": [-979, 490]}}, {"id": 4034, "name": "PGOD", "description": "Piero Ramírez es un jugador profesional de Fortnite de 21 años de Lima, Perú. Comenzo a jugar este videojuego a principios de 2018 y rápidamente se convirtió en uno de los mejores jugadores del juego. Sus jugadas llamativas y su personalidad carismática le permitieron ascender al estatus de uno de los principales competidores de LATAM, lo que resultó en un contrato con Facebook Gaming en abril de 2019. En su muy esperado regreso a Twitch, Pgod floreció como un competitivo jugador e influencer, convirtiéndose en uno de los mejores de América del Norte y Latinoamerica, el cuenta con casi 1 millon de seguidores en Twitch. Hizo crecer su comunidad para convertirse en una de las más solidarias y comprometidas en Twitch, lo que resultó en cientos de páginas de fans, un gran apoyo para su pasión por la moda y una inmensa demanda de contenido IRL. Fue designado el título de mejor jugador en el Capítulo 2, Temporada 7 dado que lideró a su trio en múltiples victorias en eventos y en febrero de 2022, Pgod fue invitado a su primera Streamer Bowl que se organizo en Los Ángeles. Junto con el jugador de la NFL Marquise \"Hollywood'' Brown, Pgod hizo historia como el primer jugador de LATAM en ganar un importante evento LAN de Twitch Rivals. Tambien gano mas torneos como por ejemplo x1 FNCS Finals en solitario x7 Twitch Rivals, también quedo top 3 y gano el MVP en la Streamer Bowl del 2023 y represento al Perú y a Latam junto a ElZeein y Carrera. Actualmente pertenece a Dignitas que es un equipo de eSports muy reconocido. Con su expansión al contenido de variedad, su notoriedad como uno de los jugadores más constantes de todos los tiempos y su actuación como ganador de muchos eventos en fortnite es uno de los mas grandes representantes de la comunidad de fortnite latina en Twitch, el cielo es el límite para Pgod y su futuro en el espacio de los deportes electrónicos es muy grande. En el mural podemos apreciar un texto que dice ¨OniChan¨ que es una frase muy representativa de la comunidad, pgod acompaña la frase con un estornudo y un gemi2 como mona china.", "links": {"website": ["https://www.twitch.tv/pgod", "https://twitter.com/pgodtv", "https://www.instagram.com/pgodtv/", "https://www.facebook.com/pgodTV/?locale=es_LA"], "discord": ["Rztye6r8t4"]}, "path": {"256-258": [[-1122, -713], [-1103, -713], [-1103, -706], [-1102, -706], [-1102, -705], [-1102, -704], [-1095, -704], [-1095, -700], [-1096, -700], [-1096, -698], [-1098, -698], [-1097, -697], [-1098, -697], [-1098, -696], [-1099, -696], [-1099, -695], [-1099, -694], [-1099, -693], [-1100, -693], [-1100, -691], [-1101, -691], [-1101, -690], [-1104, -690], [-1106, -690], [-1106, -689], [-1107, -691], [-1107, -689], [-1107, -688], [-1107, -686], [-1109, -686], [-1109, -687], [-1110, -687], [-1111, -687], [-1111, -686], [-1112, -686], [-1112, -687], [-1111, -687], [-1111, -689], [-1112, -689], [-1112, -691], [-1112, -695], [-1125, -695], [-1125, -699], [-1124, -700], [-1124, -703], [-1123, -703], [-1123, -705], [-1122, -705]]}, "center": {"256-258": [-1112, -704]}}, {"id": 4035, "name": "Mechs", "description": "Mechs es un streamer y Youtuber Afiliado a la agencia de VTubers OWOZU, El usa un Gato como VTuber, es de Colombia, es un jugador de League of Legends y es un calvo otp vayne que carrea sin pastillas todas las noches", "links": {"website": ["https://www.owozu.com/mechs/", "https://www.tiktok.com/@mechslol", "https://twitter.com/MechsLOL", "https://www.youtube.com/c/MechsLOL", "https://www.twitch.tv/lolmechs"], "discord": ["NQxHrUFdHa"]}, "path": {"175-181": [[-1410, 245], [-1410, 277], [-1368, 277], [-1368, 245]]}, "center": {"175-181": [-1389, 261]}}, -{"id": 4037, "name": "Aphex Twin", "description": "Richard David James (born 18 August 1971), best known as Aphex Twin, is an Irish-born British musician, composer and DJ. He is known for his idiosyncratic work in electronic styles such as techno, ambient, and jungle.", "links": {"website": ["https://aphextwin.warp.net/"], "subreddit": ["aphextwin"]}, "path": {"250-258": [[1439, 92], [1464, 92], [1464, 112], [1444, 112], [1443, 110], [1431, 109], [1431, 100], [1440, 100], [1440, 92]]}, "center": {"250-258": [1450, 102]}}, -{"id": 4038, "name": "Valdivia Flores \"V.F\"", "description": "La familia Valdivia Flores se destaca por su unión y fuerza. Con tres hijos, la hija mayor, un hermano de 16 años y una recién nacida que es todo un príncipe, son un equipo formidable, unidos por el amor y la determinación para enfrentar cualquier desafío juntos .La familia Valdivia Flores se destaca por su unión y fuerza. Con tres hijos, la hija mayor, un hermano de 16 años y una recién nacida que es todo un príncipe, son un equipo formidable, unidos por el amor y la determinación para enfrentar cualquier desafío juntos.\nEn resumen mi familia según chat GPT :v", "links": {}, "path": {"223-258": [[-1159, -626], [-1150, -626], [-1150, -620], [-1150, -619], [-1159, -619]]}, "center": {"223-258": [-1154, -622]}}, +{"id": 4037, "name": "Aphex Twin", "description": "Richard David James (born 18 August 1971), best known as Aphex Twin, is an Irish-born British musician, composer and DJ. He is known for his idiosyncratic work in electronic styles such as techno, ambient, and jungle.", "links": {"website": ["https://aphextwin.warp.net/"], "subreddit": ["aphextwin"]}, "path": {"250-258, T": [[1439, 92], [1464, 92], [1464, 112], [1444, 112], [1443, 110], [1431, 109], [1431, 100], [1440, 100], [1440, 92]]}, "center": {"250-258, T": [1450, 102]}}, +{"id": 4038, "name": "Valdivia Flores \"V.F\"", "description": "La familia Valdivia Flores se destaca por su unión y fuerza. Con tres hijos, la hija mayor, un hermano de 16 años y una recién nacida que es todo un príncipe, son un equipo formidable, unidos por el amor y la determinación para enfrentar cualquier desafío juntos .La familia Valdivia Flores se destaca por su unión y fuerza. Con tres hijos, la hija mayor, un hermano de 16 años y una recién nacida que es todo un príncipe, son un equipo formidable, unidos por el amor y la determinación para enfrentar cualquier desafío juntos.\nEn resumen mi familia según chat GPT :v", "links": {}, "path": {"223-258, T": [[-1159, -626], [-1150, -626], [-1150, -620], [-1150, -619], [-1159, -619]]}, "center": {"223-258, T": [-1154, -622]}}, {"id": 4039, "name": "Ludwig Maximilian University of Munich (LUM)", "description": "The Ludwig Maximilian University of Munich (LUM) is a university in Munich, Germany.", "links": {"website": ["https://www.lmu.de/de/index.html", "https://de.wikipedia.org/wiki/Ludwig-Maximilians-Universit%C3%A4t_M%C3%BCnchen"]}, "path": {"224-231": [[-163, -63], [-146, -63], [-146, -57], [-163, -57]]}, "center": {"224-231": [-154, -60]}}, {"id": 4040, "name": "MARICK (mi novela)", "description": "Marick es un ship entre los streamers \"TheDaarick28\" y \"Maryblog\" creado y alimentado por la comunidad a partir de la interacción dada en la serie de Minecraft \"Aburriland zZz\" y la temporada 1 situada en Perú (especificamente la zona pituca de Lima :v). Aunque lamentablemente todo es rol, según palabras de los protagonistas :,c.\nPsdt: Midick ya no se para.", "links": {"website": ["https://www.twitch.tv/maryblog", "https://www.twitch.tv/thedaarick28"], "discord": ["maryblog", "d4EtHTM"]}, "path": {"245-248": [[96, -10], [78, -10], [78, -1], [96, -1]]}, "center": {"245-248": [87, -5]}}, {"id": 4041, "name": "Hotline Miami", "description": "Hotline Miami is a game from 2012, high-octane action game overflowing with raw brutality, hard-boiled gunplay and skull crushing close combat. Set in an alternative 1989 Miami, you will assume the role of a mysterious antihero on a murderous rampage against the shady underworld at the behest of voices on your answering machine.\n\nIt's a goat game.", "links": {"subreddit": ["hotlinemiami"]}, "path": {"171-249": [[-301, -865], [-301, -843], [-268, -843], [-268, -855], [-286, -855], [-286, -865]]}, "center": {"171-249": [-293, -851]}}, -{"id": 4042, "name": "Sachauzumaki - Sachafans", "description": "la mascota del la comunidad de Sachauzumaki y Sachafans pe", "links": {"website": ["https://www.twitch.tv/Sachauzumaki"]}, "path": {"250-258": [[-1124, -694], [-1124, -695], [-1122, -695], [-1115, -695], [-1115, -687], [-1125, -687], [-1125, -689], [-1124, -692]]}, "center": {"250-258": [-1120, -691]}}, -{"id": 4043, "name": "Four Nations Symbols & Avatar Aang", "description": "The symbols represent the four nations in the TV Show Avatar: The Last Airbender. \n\nOn the right are the glowing eyes and arrow tattoo of the protagonist Aang, represented in the Avatar State.", "links": {"subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["yQz4uXDU4j"]}, "path": {"153-258": [[-362, -745], [-256, -745], [-256, -758], [-257, -758], [-260, -761], [-362, -761]]}, "center": {"153-258": [-309, -753]}}, +{"id": 4042, "name": "Sachauzumaki - Sachafans", "description": "la mascota del la comunidad de Sachauzumaki y Sachafans pe", "links": {"website": ["https://www.twitch.tv/Sachauzumaki"]}, "path": {"250-258, T": [[-1124, -694], [-1124, -695], [-1122, -695], [-1115, -695], [-1115, -687], [-1125, -687], [-1125, -689], [-1124, -692]]}, "center": {"250-258, T": [-1120, -691]}}, +{"id": 4043, "name": "Four Nations Symbols & Avatar Aang", "description": "The symbols represent the four nations in the TV Show Avatar: The Last Airbender. \n\nOn the right are the glowing eyes and arrow tattoo of the protagonist Aang, represented in the Avatar State.", "links": {"subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["yQz4uXDU4j"]}, "path": {"153-258, T": [[-362, -745], [-256, -745], [-256, -758], [-257, -758], [-260, -761], [-362, -761]]}, "center": {"153-258, T": [-309, -753]}}, {"id": 4044, "name": "Perrolol", "description": "Este es un emote muy famoso en la comunidad hispanohablante conocido como el \"perrolol\" en este caso vestido con los colores del Perú", "links": {}, "path": {"254-259": [[-1429, -682], [-1430, -754], [-1500, -755], [-1500, -683]]}, "center": {"254-259": [-1465, -718]}}, -{"id": 4045, "name": "Fooligetta", "description": "Barco conformado por q!Vegetta y q!Foolish, se conocieron en el día uno dentro del servidor QSMP, se pensó que terminarían siendo rivales de construcción por sus habilidades, pero entre más pasaban los días los dos juntos se formaron sentimientos y una tensión entre los dos, ya que Q!Vegetta le daba regalos casi diarios a Q!Foolish para la construcción (dinamita, pólvora, picos encantado, etc) y Q!Foolish iba a su torre con tal de inspirarse y desestresarse. Actualmente son pareja \"no formalizada\" pero son leales uno al otro (aun que no estando juntos son nombrados novios/esposos sin negarlo, ya estando los dos juntos se vuelven timidos) y tiene una hija/hijo/hije huevo llamado Leonarada/Leonardo/Leo\n\n-Arte hecho por las comunidades Guapísimos y Doozers", "links": {"website": ["https://qsmp.fandom.com/wiki/Vegetta", "https://qsmp.fandom.com/wiki/Foolish"]}, "path": {"250-258": [[-1293, 678], [-1293, 661], [-1270, 661], [-1268, 678]]}, "center": {"250-258": [-1280, 670]}}, -{"id": 4046, "name": "PotFriend", "description": "The potfriend is a global twitch emote, inspired by the game Elden Ring, which became a meme among many communities", "links": {"subreddit": ["Eldenring"]}, "path": {"218-258": [[-211, 913], [-211, 919], [-210, 919], [-210, 921], [-209, 921], [-209, 923], [-208, 923], [-208, 924], [-207, 924], [-207, 925], [-206, 925], [-207, 925], [-207, 926], [-208, 926], [-208, 927], [-209, 927], [-210, 927], [-210, 932], [-209, 932], [-209, 933], [-202, 933], [-202, 932], [-202, 931], [-203, 931], [-203, 930], [-202, 930], [-202, 929], [-201, 929], [-201, 928], [-200, 928], [-200, 927], [-196, 927], [-196, 928], [-193, 928], [-193, 927], [-193, 926], [-192, 926], [-192, 925], [-191, 925], [-189, 925], [-189, 926], [-188, 926], [-188, 927], [-185, 927], [-185, 926], [-184, 926], [-183, 926], [-183, 925], [-182, 925], [-182, 924], [-181, 924], [-181, 923], [-180, 923], [-179, 923], [-178, 923], [-178, 922], [-177, 922], [-177, 921], [-176, 921], [-176, 916], [-177, 916], [-177, 915], [-178, 915], [-178, 914], [-180, 914], [-180, 913], [-181, 913], [-181, 912], [-182, 912], [-182, 911], [-183, 911], [-183, 910], [-185, 910], [-185, 907], [-187, 907], [-187, 906], [-188, 906], [-188, 905], [-190, 905], [-190, 904], [-192, 904], [-192, 903], [-200, 903], [-201, 903], [-202, 904], [-203, 904], [-204, 905], [-205, 906], [-206, 907], [-206, 908], [-207, 908], [-203, 903], [-202, 903], [-201, 902], [-200, 902], [-200, 903], [-199, 903], [-198, 903], [-197, 903], [-197, 902], [-196, 902], [-195, 902], [-195, 901], [-194, 901], [-194, 900], [-194, 899], [-194, 898], [-206, 898], [-206, 900], [-207, 900], [-207, 901], [-208, 901], [-208, 902], [-209, 902], [-209, 903], [-210, 903], [-210, 904], [-211, 904], [-211, 905], [-212, 905], [-212, 906], [-213, 906], [-213, 912]]}, "center": {"218-258": [-197, 915]}}, -{"id": 4047, "name": "Les piments", "description": "Math Pellerin est un streamer Twitch original, préférant la qualité à la quantité avec moins de 200 heures de stream. Bien que peu doué à Mario 64, son charme et sa personnalité décontractée attirent une communauté fidèle en quête de moments amusants et détendus.", "links": {"subreddit": ["MathPellerin"]}, "path": {"178-258": [[669, 581], [680, 594], [680, 582], [669, 581], [669, 594], [680, 594], [680, 581], [691, 573], [645, 573], [645, 596], [648, 594], [654, 594], [658, 608], [693, 608], [691, 573]]}, "center": {"178-258": [658, 584]}}, -{"id": 4048, "name": "Tempus Vanguard", "description": "The faces of the four members of the male Vtuber group Holostars English Vanguad: Banzoin Hakka, Machina X Flayon, Gavis Bettel, and Joshuiji Shinri.", "links": {"subreddit": ["holostars"]}, "path": {"250-258": [[1183, -819], [1183, -795], [1193, -795], [1193, -819]]}, "center": {"250-258": [1188, -807]}}, +{"id": 4045, "name": "Fooligetta", "description": "Barco conformado por q!Vegetta y q!Foolish, se conocieron en el día uno dentro del servidor QSMP, se pensó que terminarían siendo rivales de construcción por sus habilidades, pero entre más pasaban los días los dos juntos se formaron sentimientos y una tensión entre los dos, ya que Q!Vegetta le daba regalos casi diarios a Q!Foolish para la construcción (dinamita, pólvora, picos encantado, etc) y Q!Foolish iba a su torre con tal de inspirarse y desestresarse. Actualmente son pareja \"no formalizada\" pero son leales uno al otro (aun que no estando juntos son nombrados novios/esposos sin negarlo, ya estando los dos juntos se vuelven timidos) y tiene una hija/hijo/hije huevo llamado Leonarada/Leonardo/Leo\n\n-Arte hecho por las comunidades Guapísimos y Doozers", "links": {"website": ["https://qsmp.fandom.com/wiki/Vegetta", "https://qsmp.fandom.com/wiki/Foolish"]}, "path": {"250-258, T": [[-1293, 678], [-1293, 661], [-1270, 661], [-1268, 678]]}, "center": {"250-258, T": [-1280, 670]}}, +{"id": 4046, "name": "PotFriend", "description": "The potfriend is a global twitch emote, inspired by the game Elden Ring, which became a meme among many communities", "links": {"subreddit": ["Eldenring"]}, "path": {"218-258, T": [[-211, 913], [-211, 919], [-210, 919], [-210, 921], [-209, 921], [-209, 923], [-208, 923], [-208, 924], [-207, 924], [-207, 925], [-206, 925], [-207, 925], [-207, 926], [-208, 926], [-208, 927], [-209, 927], [-210, 927], [-210, 932], [-209, 932], [-209, 933], [-202, 933], [-202, 932], [-202, 931], [-203, 931], [-203, 930], [-202, 930], [-202, 929], [-201, 929], [-201, 928], [-200, 928], [-200, 927], [-196, 927], [-196, 928], [-193, 928], [-193, 927], [-193, 926], [-192, 926], [-192, 925], [-191, 925], [-189, 925], [-189, 926], [-188, 926], [-188, 927], [-185, 927], [-185, 926], [-184, 926], [-183, 926], [-183, 925], [-182, 925], [-182, 924], [-181, 924], [-181, 923], [-180, 923], [-179, 923], [-178, 923], [-178, 922], [-177, 922], [-177, 921], [-176, 921], [-176, 916], [-177, 916], [-177, 915], [-178, 915], [-178, 914], [-180, 914], [-180, 913], [-181, 913], [-181, 912], [-182, 912], [-182, 911], [-183, 911], [-183, 910], [-185, 910], [-185, 907], [-187, 907], [-187, 906], [-188, 906], [-188, 905], [-190, 905], [-190, 904], [-192, 904], [-192, 903], [-200, 903], [-201, 903], [-202, 904], [-203, 904], [-204, 905], [-205, 906], [-206, 907], [-206, 908], [-207, 908], [-203, 903], [-202, 903], [-201, 902], [-200, 902], [-200, 903], [-199, 903], [-198, 903], [-197, 903], [-197, 902], [-196, 902], [-195, 902], [-195, 901], [-194, 901], [-194, 900], [-194, 899], [-194, 898], [-206, 898], [-206, 900], [-207, 900], [-207, 901], [-208, 901], [-208, 902], [-209, 902], [-209, 903], [-210, 903], [-210, 904], [-211, 904], [-211, 905], [-212, 905], [-212, 906], [-213, 906], [-213, 912]]}, "center": {"218-258, T": [-197, 915]}}, +{"id": 4047, "name": "Les piments", "description": "Math Pellerin est un streamer Twitch original, préférant la qualité à la quantité avec moins de 200 heures de stream. Bien que peu doué à Mario 64, son charme et sa personnalité décontractée attirent une communauté fidèle en quête de moments amusants et détendus.", "links": {"subreddit": ["MathPellerin"]}, "path": {"178-258, T": [[669, 581], [680, 594], [680, 582], [669, 581], [669, 594], [680, 594], [680, 581], [691, 573], [645, 573], [645, 596], [648, 594], [654, 594], [658, 608], [693, 608], [691, 573]]}, "center": {"178-258, T": [658, 584]}}, +{"id": 4048, "name": "Tempus Vanguard", "description": "The faces of the four members of the male Vtuber group Holostars English Vanguad: Banzoin Hakka, Machina X Flayon, Gavis Bettel, and Joshuiji Shinri.", "links": {"subreddit": ["holostars"]}, "path": {"250-258, T": [[1183, -819], [1183, -795], [1193, -795], [1193, -819]]}, "center": {"250-258, T": [1188, -807]}}, {"id": 4049, "name": "Mudkip by Utadomination and craftarmy", "description": "Un mudkip hecho por la UtaDomination con MUCHO apoyo de la CraftArmy", "links": {"discord": ["craft-army-708001528681857094"]}, "path": {"251": [[-1435, 334], [-1428, 342], [-1423, 335], [-1431, 324], [-1439, 335], [-1438, 338], [-1437, 339], [-1435, 339], [-1435, 341], [-1433, 342], [-1432, 341], [-1430, 341], [-1429, 342], [-1424, 339], [-1424, 338], [-1433, 325], [-1434, 325], [-1435, 327], [-1436, 330], [-1437, 331], [-1437, 332], [-1438, 333], [-1439, 336], [-1440, 336], [-1439, 337], [-1439, 339], [-1438, 339], [-1437, 341], [-1434, 342], [-1433, 342], [-1428, 342], [-1427, 342], [-1426, 341], [-1424, 339], [-1422, 335], [-1426, 330]]}, "center": {"251": [-1430, 336]}}, {"id": 4050, "name": "Zutomayo Nira", "description": "Zutomayo's character \"Nira\" in the Time Left (Zen ki) music video.", "links": {"website": ["https://youtu.be/6OC92oxs4gA"], "subreddit": ["ZUTOMAYO"], "discord": ["zutomayo"]}, "path": {"253": [[-336, 883], [-336, 918], [-308, 917], [-308, 883], [-322, 883], [-335, 884]]}, "center": {"253": [-322, 901]}}, -{"id": 4051, "name": "Dutch heart", "description": "Heart made by the discord server that made Phos in gratitude to the Dutch community (r/PlaceNL) for allowing us to build on the flag of the Netherlands and the orange stripe representing the Oranje Boven.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous"], "discord": ["gDKwmDndPA"]}, "path": {"203-258": [[-1151, -503], [-1149, -505], [-1148, -506], [-1148, -507], [-1149, -508], [-1150, -509], [-1151, -508], [-1152, -509], [-1153, -508], [-1154, -507], [-1154, -506], [-1153, -505], [-1152, -504]]}, "center": {"203-258": [-1151, -506]}}, -{"id": 4052, "name": "South Park", "description": "little south park characters: kenny, cartman, stan and kyle", "links": {}, "path": {"250-258": [[1131, -1], [1137, -1], [1137, 10], [1138, 15], [1151, 16], [1151, 22], [1138, 21], [1131, 11], [1132, 6], [1131, 0]]}, "center": {"250-258": [1147, 19]}}, -{"id": 4053, "name": "Disney Twisted-Wonderland (Magical Pen)", "description": "A depiction of the pens students use in the game Disney Twisted-Wonderland alongside the abbreviation of \"Twisted-Wonderland,\" called \"TWST.\" The pen depiction resembles the same pen featured on the United Gacha Alliance's 2022 artwork on r/place.", "links": {"website": ["https://disneytwistedwonderland.com/"], "subreddit": ["twistedwonderland"]}, "path": {"250-258": [[-186, 867], [-175, 866], [-175, 892], [-186, 892]]}, "center": {"250-258": [-180, 879]}}, +{"id": 4051, "name": "Dutch heart", "description": "Heart made by the discord server that made Phos in gratitude to the Dutch community (r/PlaceNL) for allowing us to build on the flag of the Netherlands and the orange stripe representing the Oranje Boven.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous"], "discord": ["gDKwmDndPA"]}, "path": {"203-258, T": [[-1151, -503], [-1149, -505], [-1148, -506], [-1148, -507], [-1149, -508], [-1150, -509], [-1151, -508], [-1152, -509], [-1153, -508], [-1154, -507], [-1154, -506], [-1153, -505], [-1152, -504]]}, "center": {"203-258, T": [-1151, -506]}}, +{"id": 4052, "name": "South Park", "description": "little south park characters: kenny, cartman, stan and kyle", "links": {}, "path": {"250-258, T": [[1131, -1], [1137, -1], [1137, 10], [1138, 15], [1151, 16], [1151, 22], [1138, 21], [1131, 11], [1132, 6], [1131, 0]]}, "center": {"250-258, T": [1147, 19]}}, +{"id": 4053, "name": "Disney Twisted-Wonderland (Magical Pen)", "description": "A depiction of the pens students use in the game Disney Twisted-Wonderland alongside the abbreviation of \"Twisted-Wonderland,\" called \"TWST.\" The pen depiction resembles the same pen featured on the United Gacha Alliance's 2022 artwork on r/place.", "links": {"website": ["https://disneytwistedwonderland.com/"], "subreddit": ["twistedwonderland"]}, "path": {"250-258, T": [[-186, 867], [-175, 866], [-175, 892], [-186, 892]]}, "center": {"250-258, T": [-180, 879]}}, {"id": 4054, "name": "Mi pequeño espacio por Marx", "description": "By MarxBerna", "links": {}, "path": {"254-259": [[-418, -791], [-409, -791], [-407, -778], [-419, -779]]}, "center": {"254-259": [-413, -784]}}, -{"id": 4056, "name": "Toki Pona", "description": "The logo of the constructed language Toki Pona. Toki Pona is a minimalist language created by Canadian linguist Sonja Lang. The logo is a combination of two glyphs from the language's writing system, Sitelen Pona.", "links": {"subreddit": ["tokipona"]}, "path": {"250-258": [[-779, -927], [-770, -927], [-770, -915], [-779, -915]]}, "center": {"250-258": [-774, -921]}}, -{"id": 4057, "name": "Vivy", "description": "Vivy is the titular protagonist of the Spring 2021 anime, Vivy -Fluorite Eye's Song-. The series was animated by WIT STUDIO and cowritten by Tappei Nagatsuki and Eiji Umehara. \n\nThe surrounding music notes allude to the respective colors of each sister AI that appears throughout the series.\n\nThe canvas art was created by SageOfMugen.", "links": {"website": ["https://vivy-portal.com/"], "subreddit": ["vivy"], "discord": ["V6n7NSVRCE"]}, "path": {"250-258": [[-1000, -152], [-972, -152], [-972, -111], [-975, -111], [-976, -111], [-976, -110], [-992, -110], [-992, -114], [-1000, -114], [-1000, -147]]}, "center": {"250-258": [-986, -131]}}, -{"id": 4058, "name": "Nise HSI (Fake Hisui) and SZ star", "description": "Depicts Nise HSI in her titular pose, along with a SZ star. Both originate from the Cookie☆ subculture, with Nise HSI being based off of HSI姉貴 and the SZ star being based off of SZ姉貴 respectively.", "links": {"website": ["https://www.nicovideo.jp/watch/sm28465189", "https://www.nicovideo.jp/watch/sm30405273"], "discord": ["jqFrycRP"]}, "path": {"150-258": [[34, -628], [41, -628], [42, -631], [47, -632], [41, -635], [41, -641], [35, -638], [35, -649], [33, -652], [35, -657], [29, -659], [23, -659], [23, -657], [28, -655], [27, -653], [24, -654], [19, -657], [15, -657], [12, -654], [12, -651], [15, -650], [17, -653], [18, -653], [19, -651], [16, -647], [17, -641], [14, -640], [13, -643], [10, -643], [10, -642], [7, -643], [7, -639], [9, -637], [9, -634], [12, -634], [14, -638], [16, -640], [18, -639], [19, -638], [25, -629]]}, "center": {"150-258": [26, -644]}}, -{"id": 4059, "name": "Atacama Desert", "description": "The Atacama Desert (Spanish: Desierto de Atacama) is a desert plateau located on the Pacific coast of South America (Argentina and Chile).\n\nIt is considered the driest non-polar desert in the world.", "links": {"website": ["https://es.wikipedia.org/wiki/Desierto_de_Atacama", "https://en.wikipedia.org/wiki/Atacama_Desert"], "subreddit": ["chile"]}, "path": {"221-258": [[-1387, -910], [-1387, -831], [-1133, -831], [-1137, -837], [-1155, -842], [-1184, -849], [-1213, -851], [-1230, -853], [-1235, -899], [-1232, -910]]}, "center": {"221-258": [-1308, -870]}}, -{"id": 4060, "name": "RusitoFan", "description": "Personalidad de YouTube y creador de contenido que saltó a la fama publicando contenido basado en Fortnite en su canal auto-titulado. Además de Fortnite también juega juegos como Minecraft, ARK: Survival Evolved y Red Dead Redemption 2.\nFue mayormente conocido por Nexxuz Youtuber de Ark Por sus Series", "links": {"website": ["https://www.youtube.com/channel/UCT4EzWCKoBXE77LVeHCW3Vg", "https://twitter.com/rusitofan?lang=es", "https://www.twitch.tv/rusitofan?lang=es"]}, "path": {"250-258": [[-817, 465], [-804, 465], [-804, 477], [-817, 477]]}, "center": {"250-258": [-810, 471]}}, -{"id": 4061, "name": "Polandball", "description": "The Main Standing Character of the Subreddit r/Polandball\n\nA subreddit of Wiggly mouse-drawn comics where balls represent different countries. They poke fun at national stereotypes and the \"international drama\" of their diplomatic relations. Polandball combines history, geography, Engrish, and an inferiority complex.", "links": {"subreddit": ["polandball"]}, "path": {"204-258": [[1252, 6], [1245, 6], [1244, 7], [1243, 8], [1243, 9], [1242, 11], [1246, 11], [1246, 16], [1252, 15], [1253, 15], [1254, 11]]}, "center": {"204-258": [1250, 11]}}, -{"id": 4062, "name": "Washington Commanders", "description": "Logo of the Washington Commanders NFL team.\nHTTC: \"Hail to the Commanders\", the team's fight song.\nHTTR: \"Hail to the Redskins\", the fight song with the previous team name.\nLHU!: \"Left Hand Up!\", a line from a fan song that was adopted by Commanders fans.\n#21: Sean Taylor, a safety for the Redskins who played four seasons until his murder in 2007.", "links": {"website": ["https://www.commanders.com/"], "subreddit": ["commanders"]}, "path": {"203-221": [[-1378, 485], [-1372, 498], [-1367, 498], [-1365, 494], [-1363, 498], [-1357, 498], [-1352, 487], [-1352, 485], [-1368, 485], [-1370, 488], [-1372, 485]], "222-258": [[-1377, 477], [-1377, 484], [-1380, 484], [-1380, 487], [-1378, 488], [-1374, 499], [-1330, 499], [-1330, 484], [-1342, 484], [-1342, 477]]}, "center": {"203-221": [-1360, 491], "222-258": [-1355, 488]}}, -{"id": 4063, "name": "Rioboo (Ori)", "description": "Nueva marca de merchandising del creador de contenido de Koi Rioboo", "links": {}, "path": {"250-258": [[70, 597], [73, 599], [73, 614], [91, 614], [88, 598], [88, 597], [77, 597], [89, 598]]}, "center": {"250-258": [81, 606]}}, -{"id": 4064, "name": "Twice CandyBong", "description": "Candy Bong is Twice's official light stick. The idea of the \"Candy Bong\" was inspired from one of Twice's tracks \"Candy Boy\" from their debut mini-album \"The Story Begins\".\n\nSnuck onto Shrek's head after German streamer Papaplatte (Lattensepp) and Portuguese streamer wuant rebuilt the art following an attack by Argentina which had destroyed it previously.", "links": {"subreddit": ["Twice"]}, "path": {"214-258": [[213, -776], [213, -778], [214, -778], [214, -779], [215, -779], [215, -780], [218, -780], [218, -779], [219, -779], [219, -778], [220, -778], [220, -775], [221, -775], [221, -774], [222, -774], [222, -771], [219, -771], [219, -772], [218, -772], [218, -773], [215, -773], [215, -774], [214, -774], [214, -775], [213, -775], [213, -778], [214, -778]]}, "center": {"214-258": [217, -776]}}, -{"id": 4066, "name": "Fech", "description": "Fech from the indie videogame \"Fech the Ferret\" developed by Aucritas. \nThe game was originally inspired by the Sonic series. Some of the original developers - RaoulWB most notably - has kept close ties with the Sonic community.\n\nFech is a pink ferret.", "links": {"website": ["https://playfe.ch/"], "subreddit": ["fech"], "discord": ["9QKKx6X"]}, "path": {"250-258": [[-1105, 396], [-1105, 399], [-1104, 400], [-1104, 401], [-1105, 402], [-1110, 402], [-1110, 391], [-1109, 390], [-1107, 390], [-1106, 391], [-1106, 395]]}, "center": {"250-258": [-1108, 397]}}, -{"id": 4067, "name": "Sinomacrops", "description": "El Sinomecrops es un animal prehistorico que fue agregado en el ark por los arkeanos", "links": {}, "path": {"250-258": [[-790, 430], [-791, 456], [-778, 458], [-773, 478], [-709, 481], [-710, 447], [-701, 446], [-702, 429]]}, "center": {"250-258": [-735, 454]}}, -{"id": 4068, "name": "Rio Grande do Sul flag", "description": "Is a state in the southern region of Brazil. It is the fifth-most-populous state and the ninth largest by area.\n\nThe capital and largest city is Porto Alegre.", "links": {"website": ["https://www.estado.rs.gov.br/"], "subreddit": ["riograndedosul"], "discord": ["jyj9mVkgWB"]}, "path": {"250-258": [[-706, -627], [-706, -629], [-702, -629], [-702, -627]]}, "center": {"250-258": [-704, -628]}}, -{"id": 4069, "name": "Unicornio", "description": "Unicornio es un streamer que se llama German Usinger. Streamer de Twitch argentino que saltó a la popularidad por sus reacciones y jugar a juegos como Valorant y League of Legends. Su contenido le ha ayudado a ganar más de 900.000 seguidores en su canal. También tiene un canal de YouTube en el que sube videos de reacciones y momentos destacados de los streams.", "links": {"website": ["https://www.instagram.com/germanusinger/?hl=es", "https://www.twitch.tv/unicornio", "https://twitter.com/GermanUsinger?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor"]}, "path": {"250-258": [[341, -839], [375, -839], [368, -830], [376, -825], [376, -816], [376, -806], [372, -802], [343, -803]]}, "center": {"250-258": [358, -818]}}, -{"id": 4070, "name": "Delicate Arch", "description": "Delicate Arch is a 52-foot-tall freestanding natural arch located in Arches National Park, near Moab in Grand County, Utah.", "links": {"website": ["https://www.nps.gov/arch/planyourvisit/delicate-arch.htm"]}, "path": {"184-258": [[833, 881], [831, 881], [831, 887], [835, 887], [837, 885], [850, 885], [852, 887], [862, 887], [862, 873], [858, 869], [858, 867], [857, 866], [857, 863], [856, 862], [856, 861], [854, 859], [854, 858], [853, 857], [852, 857], [852, 856], [850, 854], [843, 854], [842, 855], [841, 855], [840, 856], [840, 858], [838, 860], [838, 862], [837, 863], [837, 865], [836, 866], [836, 867], [835, 868], [835, 869], [834, 870], [834, 878]]}, "center": {"184-258": [847, 873]}}, -{"id": 4071, "name": "Light Dragon", "description": "The light dragon: from The Legend Of Zelda: Tears Of The Kingdom", "links": {"website": ["https://zelda.fandom.com"], "subreddit": ["zelda"]}, "path": {"235-258": [[-1315, 471], [-1302, 462], [-1302, 466], [-1300, 463], [-1301, 467], [-1299, 469], [-1297, 470], [-1294, 469], [-1290, 472], [-1293, 475], [-1293, 483], [-1290, 487], [-1297, 490], [-1295, 496], [-1301, 495], [-1304, 498], [-1303, 498], [-1305, 499], [-1304, 500], [-1305, 500], [-1303, 493], [-1305, 489], [-1301, 485], [-1300, 476], [-1302, 474], [-1307, 471]]}, "center": {"235-258": [-1297, 474]}}, +{"id": 4056, "name": "Toki Pona", "description": "The logo of the constructed language Toki Pona. Toki Pona is a minimalist language created by Canadian linguist Sonja Lang. The logo is a combination of two glyphs from the language's writing system, Sitelen Pona.", "links": {"subreddit": ["tokipona"]}, "path": {"250-258, T": [[-779, -927], [-770, -927], [-770, -915], [-779, -915]]}, "center": {"250-258, T": [-774, -921]}}, +{"id": 4057, "name": "Vivy", "description": "Vivy is the titular protagonist of the Spring 2021 anime, Vivy -Fluorite Eye's Song-. The series was animated by WIT STUDIO and cowritten by Tappei Nagatsuki and Eiji Umehara. \n\nThe surrounding music notes allude to the respective colors of each sister AI that appears throughout the series.\n\nThe canvas art was created by SageOfMugen.", "links": {"website": ["https://vivy-portal.com/"], "subreddit": ["vivy"], "discord": ["V6n7NSVRCE"]}, "path": {"250-258, T": [[-1000, -152], [-972, -152], [-972, -111], [-975, -111], [-976, -111], [-976, -110], [-992, -110], [-992, -114], [-1000, -114], [-1000, -147]]}, "center": {"250-258, T": [-986, -131]}}, +{"id": 4058, "name": "Nise HSI (Fake Hisui) and SZ star", "description": "Depicts Nise HSI in her titular pose, along with a SZ star. Both originate from the Cookie☆ subculture, with Nise HSI being based off of HSI姉貴 and the SZ star being based off of SZ姉貴 respectively.", "links": {"website": ["https://www.nicovideo.jp/watch/sm28465189", "https://www.nicovideo.jp/watch/sm30405273"], "discord": ["jqFrycRP"]}, "path": {"150-258, T": [[34, -628], [41, -628], [42, -631], [47, -632], [41, -635], [41, -641], [35, -638], [35, -649], [33, -652], [35, -657], [29, -659], [23, -659], [23, -657], [28, -655], [27, -653], [24, -654], [19, -657], [15, -657], [12, -654], [12, -651], [15, -650], [17, -653], [18, -653], [19, -651], [16, -647], [17, -641], [14, -640], [13, -643], [10, -643], [10, -642], [7, -643], [7, -639], [9, -637], [9, -634], [12, -634], [14, -638], [16, -640], [18, -639], [19, -638], [25, -629]]}, "center": {"150-258, T": [26, -644]}}, +{"id": 4059, "name": "Atacama Desert", "description": "The Atacama Desert (Spanish: Desierto de Atacama) is a desert plateau located on the Pacific coast of South America (Argentina and Chile).\n\nIt is considered the driest non-polar desert in the world.", "links": {"website": ["https://es.wikipedia.org/wiki/Desierto_de_Atacama", "https://en.wikipedia.org/wiki/Atacama_Desert"], "subreddit": ["chile"]}, "path": {"221-258, T": [[-1387, -910], [-1387, -831], [-1133, -831], [-1137, -837], [-1155, -842], [-1184, -849], [-1213, -851], [-1230, -853], [-1235, -899], [-1232, -910]]}, "center": {"221-258, T": [-1308, -870]}}, +{"id": 4060, "name": "RusitoFan", "description": "Personalidad de YouTube y creador de contenido que saltó a la fama publicando contenido basado en Fortnite en su canal auto-titulado. Además de Fortnite también juega juegos como Minecraft, ARK: Survival Evolved y Red Dead Redemption 2.\nFue mayormente conocido por Nexxuz Youtuber de Ark Por sus Series", "links": {"website": ["https://www.youtube.com/channel/UCT4EzWCKoBXE77LVeHCW3Vg", "https://twitter.com/rusitofan?lang=es", "https://www.twitch.tv/rusitofan?lang=es"]}, "path": {"250-258, T": [[-817, 465], [-804, 465], [-804, 477], [-817, 477]]}, "center": {"250-258, T": [-810, 471]}}, +{"id": 4061, "name": "Polandball", "description": "The Main Standing Character of the Subreddit r/Polandball\n\nA subreddit of Wiggly mouse-drawn comics where balls represent different countries. They poke fun at national stereotypes and the \"international drama\" of their diplomatic relations. Polandball combines history, geography, Engrish, and an inferiority complex.", "links": {"subreddit": ["polandball"]}, "path": {"204-258, T": [[1252, 6], [1245, 6], [1244, 7], [1243, 8], [1243, 9], [1242, 11], [1246, 11], [1246, 16], [1252, 15], [1253, 15], [1254, 11]]}, "center": {"204-258, T": [1250, 11]}}, +{"id": 4062, "name": "Washington Commanders", "description": "Logo of the Washington Commanders NFL team.\nHTTC: \"Hail to the Commanders\", the team's fight song.\nHTTR: \"Hail to the Redskins\", the fight song with the previous team name.\nLHU!: \"Left Hand Up!\", a line from a fan song that was adopted by Commanders fans.\n#21: Sean Taylor, a safety for the Redskins who played four seasons until his murder in 2007.", "links": {"website": ["https://www.commanders.com/"], "subreddit": ["commanders"]}, "path": {"203-221": [[-1378, 485], [-1372, 498], [-1367, 498], [-1365, 494], [-1363, 498], [-1357, 498], [-1352, 487], [-1352, 485], [-1368, 485], [-1370, 488], [-1372, 485]], "222-258, T": [[-1377, 477], [-1377, 484], [-1380, 484], [-1380, 487], [-1378, 488], [-1374, 499], [-1330, 499], [-1330, 484], [-1342, 484], [-1342, 477]]}, "center": {"203-221": [-1360, 491], "222-258, T": [-1355, 488]}}, +{"id": 4063, "name": "Rioboo (Ori)", "description": "Nueva marca de merchandising del creador de contenido de Koi Rioboo", "links": {}, "path": {"250-258, T": [[70, 597], [73, 599], [73, 614], [91, 614], [88, 598], [88, 597], [77, 597], [89, 598]]}, "center": {"250-258, T": [81, 606]}}, +{"id": 4064, "name": "Twice CandyBong", "description": "Candy Bong is Twice's official light stick. The idea of the \"Candy Bong\" was inspired from one of Twice's tracks \"Candy Boy\" from their debut mini-album \"The Story Begins\".\n\nSnuck onto Shrek's head after German streamer Papaplatte (Lattensepp) and Portuguese streamer wuant rebuilt the art following an attack by Argentina which had destroyed it previously.", "links": {"subreddit": ["Twice"]}, "path": {"214-258, T": [[213, -776], [213, -778], [214, -778], [214, -779], [215, -779], [215, -780], [218, -780], [218, -779], [219, -779], [219, -778], [220, -778], [220, -775], [221, -775], [221, -774], [222, -774], [222, -771], [219, -771], [219, -772], [218, -772], [218, -773], [215, -773], [215, -774], [214, -774], [214, -775], [213, -775], [213, -778], [214, -778]]}, "center": {"214-258, T": [217, -776]}}, +{"id": 4066, "name": "Fech", "description": "Fech from the indie videogame \"Fech the Ferret\" developed by Aucritas. \nThe game was originally inspired by the Sonic series. Some of the original developers - RaoulWB most notably - has kept close ties with the Sonic community.\n\nFech is a pink ferret.", "links": {"website": ["https://playfe.ch/"], "subreddit": ["fech"], "discord": ["9QKKx6X"]}, "path": {"250-258, T": [[-1105, 396], [-1105, 399], [-1104, 400], [-1104, 401], [-1105, 402], [-1110, 402], [-1110, 391], [-1109, 390], [-1107, 390], [-1106, 391], [-1106, 395]]}, "center": {"250-258, T": [-1108, 397]}}, +{"id": 4067, "name": "Sinomacrops", "description": "El Sinomecrops es un animal prehistorico que fue agregado en el ark por los arkeanos", "links": {}, "path": {"250-258, T": [[-790, 430], [-791, 456], [-778, 458], [-773, 478], [-709, 481], [-710, 447], [-701, 446], [-702, 429]]}, "center": {"250-258, T": [-735, 454]}}, +{"id": 4068, "name": "Rio Grande do Sul flag", "description": "Is a state in the southern region of Brazil. It is the fifth-most-populous state and the ninth largest by area.\n\nThe capital and largest city is Porto Alegre.", "links": {"website": ["https://www.estado.rs.gov.br/"], "subreddit": ["riograndedosul"], "discord": ["jyj9mVkgWB"]}, "path": {"250-258, T": [[-706, -627], [-706, -629], [-702, -629], [-702, -627]]}, "center": {"250-258, T": [-704, -628]}}, +{"id": 4069, "name": "Unicornio", "description": "Unicornio es un streamer que se llama German Usinger. Streamer de Twitch argentino que saltó a la popularidad por sus reacciones y jugar a juegos como Valorant y League of Legends. Su contenido le ha ayudado a ganar más de 900.000 seguidores en su canal. También tiene un canal de YouTube en el que sube videos de reacciones y momentos destacados de los streams.", "links": {"website": ["https://www.instagram.com/germanusinger/?hl=es", "https://www.twitch.tv/unicornio", "https://twitter.com/GermanUsinger?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor"]}, "path": {"250-258, T": [[341, -839], [375, -839], [368, -830], [376, -825], [376, -816], [376, -806], [372, -802], [343, -803]]}, "center": {"250-258, T": [358, -818]}}, +{"id": 4070, "name": "Delicate Arch", "description": "Delicate Arch is a 52-foot-tall freestanding natural arch located in Arches National Park, near Moab in Grand County, Utah.", "links": {"website": ["https://www.nps.gov/arch/planyourvisit/delicate-arch.htm"]}, "path": {"184-258, T": [[833, 881], [831, 881], [831, 887], [835, 887], [837, 885], [850, 885], [852, 887], [862, 887], [862, 873], [858, 869], [858, 867], [857, 866], [857, 863], [856, 862], [856, 861], [854, 859], [854, 858], [853, 857], [852, 857], [852, 856], [850, 854], [843, 854], [842, 855], [841, 855], [840, 856], [840, 858], [838, 860], [838, 862], [837, 863], [837, 865], [836, 866], [836, 867], [835, 868], [835, 869], [834, 870], [834, 878]]}, "center": {"184-258, T": [847, 873]}}, +{"id": 4071, "name": "Light Dragon", "description": "The light dragon: from The Legend Of Zelda: Tears Of The Kingdom", "links": {"website": ["https://zelda.fandom.com"], "subreddit": ["zelda"]}, "path": {"235-258, T": [[-1315, 471], [-1302, 462], [-1302, 466], [-1300, 463], [-1301, 467], [-1299, 469], [-1297, 470], [-1294, 469], [-1290, 472], [-1293, 475], [-1293, 483], [-1290, 487], [-1297, 490], [-1295, 496], [-1301, 495], [-1304, 498], [-1303, 498], [-1305, 499], [-1304, 500], [-1305, 500], [-1303, 493], [-1305, 489], [-1301, 485], [-1300, 476], [-1302, 474], [-1307, 471]]}, "center": {"235-258, T": [-1297, 474]}}, {"id": 4072, "name": "OG+ (Ollitas Gaming +)", "description": "Comunidad pequeña creada por Simiblue y sus amigos.", "links": {"discord": ["3kzkyzKM8D"]}, "path": {"221": [[1306, 771], [1312, 771], [1312, 779], [1312, 780], [1293, 780], [1293, 772], [1306, 772]]}, "center": {"221": [1308, 776]}}, -{"id": 4073, "name": "Sunburst", "description": "Sunburst is a reccuring character in the series My Little Pony: Friendship is Magic.", "links": {"subreddit": ["mylittlepony"]}, "path": {"250-258": [[-1344, 564], [-1344, 561], [-1339, 561], [-1339, 553], [-1334, 553], [-1334, 552], [-1333, 552], [-1333, 551], [-1323, 551], [-1323, 553], [-1322, 553], [-1322, 555], [-1321, 556], [-1320, 560], [-1320, 562], [-1319, 562], [-1319, 564], [-1319, 565], [-1344, 565]]}, "center": {"250-258": [-1329, 558]}}, -{"id": 4074, "name": "Richarlyson", "description": "Richarlyson is the brazilian egg of the QSMP Minecraft Server. Richarlyson is the son of the 5 brazilians of the server. He is currently under the care of Cellbit, Felps, Forever, Mike and Pac. Although Quackity no longer has his 1% paternity, he is still considered by Richarlyson as a father figure.", "links": {"website": ["https://qsmp.fandom.com/wiki/Richarlyson", "https://twitter.com/QSMPGlobal"]}, "path": {"19-259": [[119, 429], [114, 429], [114, 427], [114, 426], [116, 426], [116, 424], [114, 424], [113, 424], [113, 423], [112, 423], [111, 422], [111, 421], [110, 420], [109, 420], [109, 419], [108, 419], [108, 418], [102, 418], [102, 410], [103, 410], [103, 409], [104, 410], [104, 408], [105, 408], [105, 407], [106, 407], [106, 406], [107, 406], [107, 404], [108, 404], [108, 401], [109, 401], [109, 399], [110, 399], [110, 397], [111, 397], [111, 396], [112, 396], [113, 395], [112, 395], [113, 394], [114, 394], [115, 393], [115, 392], [116, 392], [116, 391], [118, 391], [118, 390], [130, 390], [130, 391], [131, 391], [132, 391], [132, 392], [133, 392], [134, 393], [134, 394], [135, 394], [136, 396], [137, 396], [138, 397], [138, 399], [139, 400], [139, 401], [140, 401], [140, 404], [141, 404], [141, 406], [142, 406], [142, 407], [143, 408], [144, 408], [145, 409], [145, 410], [146, 417], [145, 417], [145, 418], [141, 418], [140, 419], [140, 420], [139, 420], [139, 421], [137, 421], [138, 422], [137, 422], [137, 423], [136, 423], [136, 424], [133, 424], [133, 426], [135, 426], [135, 428], [135, 429], [130, 429], [129, 429], [129, 424], [120, 424], [120, 429]]}, "center": {"19-259": [124, 407]}}, -{"id": 4075, "name": "Ui Mama", "description": "A depiction of Ui mama, otherwise known as Shigure Ui. She is a female Japanese Virtual YouTuber and illustrator. She illistrated hololive talent Oozora Subaru's model and also did the character designs for the light novel series OsaMake and anime series WIXOSS DIVA(A)LIVE.", "links": {}, "path": {"250-258": [[-159, -824], [-159, -776], [-191, -776], [-191, -792], [-189, -794], [-182, -794], [-182, -803], [-187, -803], [-187, -806], [-188, -807], [-188, -808], [-189, -809], [-190, -810], [-191, -810], [-191, -824]]}, "center": {"250-258": [-172, -811]}}, -{"id": 4076, "name": "The Main Salvadorean Flag", "description": "From Chaos to Glory, as we found success with our 3rd flag behind the master sword, a now decently organized community and with help of couple streamers: Cherenkekoo and AlexisGamees on tiwtch. We decided to go bigger using the last canvas expansion to take a considerable chunk of land, we expanded to the left had to fight the void to keep our mark made allies along the way in the for of GNU terry, UTU, Venezuela and Guatemala. we filled our flag with art representing our culture and fauna like: Hose of LLort, Torogoz, Kolashampan, Pupusas, Pilsener, Cipitio, Maquilishuat, Gecko, FernanFlo's hat and Cool Coster (public bus). We left our mark on the canvas and had a blast doing it we feel proud of been Salvadoreans.", "links": {"website": ["https://es.wikipedia.org/wiki/El_Salvador"], "subreddit": ["ElSalvador"], "discord": ["yFRp8Qdtr"]}, "path": {"171-258": [[-999, 365], [-999, 321], [-1175, 321], [-1175, 365], [-1137, 365], [-1137, 334], [-1106, 334], [-1106, 365], [-1105, 365]]}, "center": {"171-258": [-1065, 343]}}, -{"id": 4077, "name": "Katawa Shoujo", "description": "Katawa Shoujo is a bishōjo-style visual novel by Four Leaf Studios that tells the story of a young man and five young women living with varying disabilities. The game uses a traditional text and sprite-based visual novel model with an ADV-style text box running on the Ren'Py visual novel engine.", "links": {"website": ["https://www.katawa-shoujo.com/"], "subreddit": ["katawashoujo"]}, "path": {"250-258": [[-571, 350], [-558, 350], [-558, 340], [-558, 327], [-571, 328], [-571, 349], [-532, 345], [-521, 345], [-522, 356], [-533, 356], [-532, 345]]}, "center": {"250-258": [-564, 334]}}, -{"id": 4078, "name": "Disney Twisted-Wonderland (Mirror)", "description": "A replica of the magical mirror icon used for the Disney-Twisted Wonderland App. The crown of the mirror is omitted due to an agreement with the builders of the pansexual flag directly above the mirror.", "links": {"website": ["https://disneytwistedwonderland.com/"], "subreddit": ["twistedwonderland"]}, "path": {"250-258": [[-1395, 172], [-1397, 173], [-1398, 175], [-1400, 179], [-1400, 182], [-1398, 185], [-1397, 186], [-1396, 188], [-1395, 189], [-1393, 190], [-1391, 191], [-1389, 191], [-1387, 191], [-1385, 190], [-1383, 188], [-1382, 186], [-1380, 183], [-1380, 181], [-1379, 181], [-1379, 179], [-1380, 176], [-1381, 174], [-1384, 172], [-1389, 171]]}, "center": {"250-258": [-1390, 181]}}, -{"id": 4079, "name": "Yajuu-senpai", "description": "A popular gay porn actor belonging to the Manatsu no Yo no Inmu subculture. This pixel art depicts one of many infamous scenes of his.", "links": {"website": ["https://cookiewiki.org/Manatsu_no_Yo_no_Inmu"], "discord": ["jqFrycRP"]}, "path": {"250-258": [[1341, 516], [1341, 552], [1363, 550], [1375, 535], [1375, 528], [1373, 524], [1365, 517], [1360, 516]]}, "center": {"250-258": [1357, 532]}}, +{"id": 4073, "name": "Sunburst", "description": "Sunburst is a reccuring character in the series My Little Pony: Friendship is Magic.", "links": {"subreddit": ["mylittlepony"]}, "path": {"250-258, T": [[-1344, 564], [-1344, 561], [-1339, 561], [-1339, 553], [-1334, 553], [-1334, 552], [-1333, 552], [-1333, 551], [-1323, 551], [-1323, 553], [-1322, 553], [-1322, 555], [-1321, 556], [-1320, 560], [-1320, 562], [-1319, 562], [-1319, 564], [-1319, 565], [-1344, 565]]}, "center": {"250-258, T": [-1329, 558]}}, +{"id": 4074, "name": "Richarlyson", "description": "Richarlyson is the brazilian egg of the QSMP Minecraft Server. Richarlyson is the son of the 5 brazilians of the server. He is currently under the care of Cellbit, Felps, Forever, Mike and Pac. Although Quackity no longer has his 1% paternity, he is still considered by Richarlyson as a father figure.", "links": {"website": ["https://qsmp.fandom.com/wiki/Richarlyson", "https://twitter.com/QSMPGlobal"]}, "path": {"19-259, T": [[119, 429], [114, 429], [114, 427], [114, 426], [116, 426], [116, 424], [114, 424], [113, 424], [113, 423], [112, 423], [111, 422], [111, 421], [110, 420], [109, 420], [109, 419], [108, 419], [108, 418], [102, 418], [102, 410], [103, 410], [103, 409], [104, 410], [104, 408], [105, 408], [105, 407], [106, 407], [106, 406], [107, 406], [107, 404], [108, 404], [108, 401], [109, 401], [109, 399], [110, 399], [110, 397], [111, 397], [111, 396], [112, 396], [113, 395], [112, 395], [113, 394], [114, 394], [115, 393], [115, 392], [116, 392], [116, 391], [118, 391], [118, 390], [130, 390], [130, 391], [131, 391], [132, 391], [132, 392], [133, 392], [134, 393], [134, 394], [135, 394], [136, 396], [137, 396], [138, 397], [138, 399], [139, 400], [139, 401], [140, 401], [140, 404], [141, 404], [141, 406], [142, 406], [142, 407], [143, 408], [144, 408], [145, 409], [145, 410], [146, 417], [145, 417], [145, 418], [141, 418], [140, 419], [140, 420], [139, 420], [139, 421], [137, 421], [138, 422], [137, 422], [137, 423], [136, 423], [136, 424], [133, 424], [133, 426], [135, 426], [135, 428], [135, 429], [130, 429], [129, 429], [129, 424], [120, 424], [120, 429]]}, "center": {"19-259, T": [124, 407]}}, +{"id": 4075, "name": "Ui Mama", "description": "A depiction of Ui mama, otherwise known as Shigure Ui. She is a female Japanese Virtual YouTuber and illustrator. She illistrated hololive talent Oozora Subaru's model and also did the character designs for the light novel series OsaMake and anime series WIXOSS DIVA(A)LIVE.", "links": {}, "path": {"250-258, T": [[-159, -824], [-159, -776], [-191, -776], [-191, -792], [-189, -794], [-182, -794], [-182, -803], [-187, -803], [-187, -806], [-188, -807], [-188, -808], [-189, -809], [-190, -810], [-191, -810], [-191, -824]]}, "center": {"250-258, T": [-172, -811]}}, +{"id": 4076, "name": "The Main Salvadorean Flag", "description": "From Chaos to Glory, as we found success with our 3rd flag behind the master sword, a now decently organized community and with help of couple streamers: Cherenkekoo and AlexisGamees on tiwtch. We decided to go bigger using the last canvas expansion to take a considerable chunk of land, we expanded to the left had to fight the void to keep our mark made allies along the way in the for of GNU terry, UTU, Venezuela and Guatemala. we filled our flag with art representing our culture and fauna like: Hose of LLort, Torogoz, Kolashampan, Pupusas, Pilsener, Cipitio, Maquilishuat, Gecko, FernanFlo's hat and Cool Coster (public bus). We left our mark on the canvas and had a blast doing it we feel proud of been Salvadoreans.", "links": {"website": ["https://es.wikipedia.org/wiki/El_Salvador"], "subreddit": ["ElSalvador"], "discord": ["yFRp8Qdtr"]}, "path": {"171-258, T": [[-999, 365], [-999, 321], [-1175, 321], [-1175, 365], [-1137, 365], [-1137, 334], [-1106, 334], [-1106, 365], [-1105, 365]]}, "center": {"171-258, T": [-1065, 343]}}, +{"id": 4077, "name": "Katawa Shoujo", "description": "Katawa Shoujo is a bishōjo-style visual novel by Four Leaf Studios that tells the story of a young man and five young women living with varying disabilities. The game uses a traditional text and sprite-based visual novel model with an ADV-style text box running on the Ren'Py visual novel engine.", "links": {"website": ["https://www.katawa-shoujo.com/"], "subreddit": ["katawashoujo"]}, "path": {"250-258, T": [[-571, 350], [-558, 350], [-558, 340], [-558, 327], [-571, 328], [-571, 349], [-532, 345], [-521, 345], [-522, 356], [-533, 356], [-532, 345]]}, "center": {"250-258, T": [-564, 334]}}, +{"id": 4078, "name": "Disney Twisted-Wonderland (Mirror)", "description": "A replica of the magical mirror icon used for the Disney-Twisted Wonderland App. The crown of the mirror is omitted due to an agreement with the builders of the pansexual flag directly above the mirror.", "links": {"website": ["https://disneytwistedwonderland.com/"], "subreddit": ["twistedwonderland"]}, "path": {"250-258, T": [[-1395, 172], [-1397, 173], [-1398, 175], [-1400, 179], [-1400, 182], [-1398, 185], [-1397, 186], [-1396, 188], [-1395, 189], [-1393, 190], [-1391, 191], [-1389, 191], [-1387, 191], [-1385, 190], [-1383, 188], [-1382, 186], [-1380, 183], [-1380, 181], [-1379, 181], [-1379, 179], [-1380, 176], [-1381, 174], [-1384, 172], [-1389, 171]]}, "center": {"250-258, T": [-1390, 181]}}, +{"id": 4079, "name": "Yajuu-senpai", "description": "A popular gay porn actor belonging to the Manatsu no Yo no Inmu subculture. This pixel art depicts one of many infamous scenes of his.", "links": {"website": ["https://cookiewiki.org/Manatsu_no_Yo_no_Inmu"], "discord": ["jqFrycRP"]}, "path": {"250-258, T": [[1341, 516], [1341, 552], [1363, 550], [1375, 535], [1375, 528], [1373, 524], [1365, 517], [1360, 516]]}, "center": {"250-258, T": [1357, 532]}}, {"id": 4080, "name": "Second Salvadorean Flag", "description": "As we loosed out first flag we of the chaos of the expansion and move to a slightly bigger spot right above the future Germán pretzel sign with our community growing and getting more organized we carve this are for ourselves, unfortunately the feeling of accomplishment was cut short by ElZeins massive Peruvian cat.", "links": {"subreddit": ["ElSalvador"], "discord": ["yFRp8Qdtr"]}, "path": {"117-125": [[-775, -611], [-775, -647], [-782, -647], [-782, -627], [-787, -627], [-787, -611]]}, "center": {"117-125": [-781, -617]}}, {"id": 4081, "name": "Firey Speakerbox", "description": "A character from the web-series Battle For Dream Island (BFDI), and one of the hosts in its second season, Battle For Dream Island Again (BFDIA). Build organized by Project BFDIA 6, a team working to create a fully animated episode of the series' never released episode, BFDIA 6.", "links": {"discord": ["Smvh4XC7bR"]}, "path": {"169-175": [[664, 833], [664, 826], [668, 826], [668, 833]]}, "center": {"169-175": [666, 830]}}, -{"id": 4082, "name": "Magni Dezmond and Vesper Noir", "description": "Two members of the VTuber Group HOLOSTARS-EN Tempus, the first English-speaking male Branch of the larger Hololive organization. For unknown reasons at the time of writing, both simultaneously went on hiatus starting July 10th", "links": {"subreddit": ["Holostars"], "discord": ["tempus"]}, "path": {"223-258": [[1130, -773], [1130, -800], [1177, -800], [1177, -773]]}, "center": {"223-258": [1154, -786]}}, -{"id": 4083, "name": "Twice CandyBong Flowers", "description": "Candy Bong is Twice's official light stick. The idea of the \"Candy Bong\" was inspired from one of Twice's tracks \"Candy Boy\" from their debut mini-album \"The Story Begins\".\n\nSnuck into Spanish streamer Rubius and Russian streamer Bratishkinoff's \"Void Monster Embracing Dog\" artwork following the destruction of Twice's logo which was previously built in what is now the top right corner of this piece.", "links": {"subreddit": ["Twice"]}, "path": {"245-258": [[-80, -694], [-15, -694], [-15, -686], [-80, -686]]}, "center": {"245-258": [-47, -690]}}, +{"id": 4082, "name": "Magni Dezmond and Vesper Noir", "description": "Two members of the VTuber Group HOLOSTARS-EN Tempus, the first English-speaking male Branch of the larger Hololive organization. For unknown reasons at the time of writing, both simultaneously went on hiatus starting July 10th", "links": {"subreddit": ["Holostars"], "discord": ["tempus"]}, "path": {"223-258, T": [[1130, -773], [1130, -800], [1177, -800], [1177, -773]]}, "center": {"223-258, T": [1154, -786]}}, +{"id": 4083, "name": "Twice CandyBong Flowers", "description": "Candy Bong is Twice's official light stick. The idea of the \"Candy Bong\" was inspired from one of Twice's tracks \"Candy Boy\" from their debut mini-album \"The Story Begins\".\n\nSnuck into Spanish streamer Rubius and Russian streamer Bratishkinoff's \"Void Monster Embracing Dog\" artwork following the destruction of Twice's logo which was previously built in what is now the top right corner of this piece.", "links": {"subreddit": ["Twice"]}, "path": {"245-258, T": [[-80, -694], [-15, -694], [-15, -686], [-80, -686]]}, "center": {"245-258, T": [-47, -690]}}, {"id": 4084, "name": "Impaled spez", "description": "u/spez impaled, just like in the good old days", "links": {"website": ["https://reddit.com/r/place"], "subreddit": ["placeRO"]}, "path": {"124": [[-287, 142], [-291, 142], [-291, 132], [-298, 131], [-298, 124], [-299, 124], [-299, 122], [-297, 120], [-296, 117], [-295, 115], [-296, 111], [-289, 106], [-282, 113], [-283, 115], [-281, 120], [-279, 120], [-279, 123], [-280, 131], [-287, 132], [-288, 142]]}, "center": {"124": [-289, 124]}}, -{"id": 4085, "name": "Kobold", "description": "Kobolds are a type of humanoid, with a multitude of depictions depending on source and style; This one is a depicting a draconic based appearance. This specific kobold returned from r/place 2022, appearing during the final day of r/place 2023 - They originally had a spot near Slifer The Sky Dragon, but were wiped out by the Orange Flood. They recovered a few hours after in this spot and remained here until the end.", "links": {}, "path": {"242-258": [[-15, 999], [-15, 990], [-5, 990], [-5, 999]]}, "center": {"242-258": [-10, 995]}}, -{"id": 4086, "name": "PGOD", "description": "PGOD, real name Piero Ramírez, is a pro player and streamer of the game Fortnite, born in Peru and currently living in the United States. He plays for Team Dignitas and has won five Twitch Rivals events. PGOD was previously a member of the OniChan trio, and continues to say \"OniChan\" in a provocative way.", "links": {"website": ["https://www.twitch.tv/pgod/about"]}, "path": {"227-258": [[-1122, -713], [-1122, -705], [-1103, -705], [-1103, -713]]}, "center": {"227-258": [-1112, -709]}}, +{"id": 4085, "name": "Kobold", "description": "Kobolds are a type of humanoid, with a multitude of depictions depending on source and style; This one is a depicting a draconic based appearance. This specific kobold returned from r/place 2022, appearing during the final day of r/place 2023 - They originally had a spot near Slifer The Sky Dragon, but were wiped out by the Orange Flood. They recovered a few hours after in this spot and remained here until the end.", "links": {}, "path": {"242-258, T": [[-15, 999], [-15, 990], [-5, 990], [-5, 999]]}, "center": {"242-258, T": [-10, 995]}}, +{"id": 4086, "name": "PGOD", "description": "PGOD, real name Piero Ramírez, is a pro player and streamer of the game Fortnite, born in Peru and currently living in the United States. He plays for Team Dignitas and has won five Twitch Rivals events. PGOD was previously a member of the OniChan trio, and continues to say \"OniChan\" in a provocative way.", "links": {"website": ["https://www.twitch.tv/pgod/about"]}, "path": {"227-258, T": [[-1122, -713], [-1122, -705], [-1103, -705], [-1103, -713]]}, "center": {"227-258, T": [-1112, -709]}}, {"id": 4087, "name": "Fire Mario", "description": "Fire Mario is a form of Mario from the Super Mario Franchise. Fire Mario is one of Mario's many forms. This form is achieved by obtaining the fire flower power-up. When in this form Mario can shoot fireballs at enemies.\n\nThis artwork in particular is a sprite taken from Fire Mario's 1985 debut game Super Mario Bros (NES).", "links": {"website": ["https://mario.nintendo.com"], "subreddit": ["mario"]}, "path": {"253": [[-1209, 276], [-1201, 273], [-1200, 271], [-1199, 271], [-1193, 272], [-1192, 264], [-1195, 266], [-1195, 260], [-1194, 258], [-1193, 254], [-1192, 245], [-1193, 244], [-1196, 243], [-1197, 244], [-1198, 245], [-1202, 245], [-1204, 246], [-1206, 249], [-1206, 250], [-1207, 254], [-1204, 258], [-1205, 257], [-1207, 257], [-1208, 258], [-1209, 265], [-1208, 266], [-1206, 267], [-1206, 268], [-1209, 269]]}, "center": {"253": [-1200, 252]}}, {"id": 4088, "name": "August 12 2036", "description": "On June 3rd, 2023, the phrase \"August 12 2036. The heat death of the universe.\" was repeated over and over by Squidward on a livestream of AI Sponge.", "links": {"website": ["https://knowyourmeme.com/memes/august-12-2036-the-heat-death-of-the-universe"], "subreddit": ["aispongeplace"], "discord": ["6WWvqUnY", "aisponge"]}, "path": {"104-111": [[-758, 226], [-758, 245], [-750, 245], [-750, 226]], "147-170": [[305, -836], [305, -824], [323, -824], [323, -836]]}, "center": {"104-111": [-754, 236], "147-170": [314, -830]}}, -{"id": 4090, "name": "Dornet's mascot", "description": "A pixel art dedicated to the spanish YouTuber named \"Dornet\".", "links": {"website": ["https://www.youtube.com/@Dornetuwu"], "discord": ["rp6pTRdvMQ"]}, "path": {"141-221": [[-601, -768], [-601, -758], [-583, -758], [-583, -768]], "235-258": [[-601, -768], [-583, -768], [-583, -757], [-601, -757]]}, "center": {"141-221": [-592, -763], "235-258": [-592, -762]}}, -{"id": 4091, "name": "Charmander - Pokémon", "description": "Sprite of Charmander, a Fire-type Pokémon introduced in Generation I. Along with Bulbasaur and Squirtle, it is one of the three starter Pokémon offered to players in the Kanto region.\n\nMade on the fourth day by the \"Pokemon in r/place\" Discord in collaboration with the Flag of Ireland.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Charmander_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"], "discord": ["TZeRPaFZ"]}, "path": {"250-258": [[294, -111], [294, -116], [297, -121], [301, -114], [292, -103], [284, -107], [284, -109], [279, -112], [280, -116], [284, -121], [288, -121]]}, "center": {"250-258": [286, -114]}}, -{"id": 4092, "name": "LUZANA", "description": "Art sobre la ship de Luzu (youtuber, vlogger y streamer de nacionalidad española) y Lana \"Lanita\"( vlogger, productora y modelo estadounidense) con sus skins de minecraft. \nHecho por la comunidad \"team Luzu\" para conmemorar su bonita relación. \nEllos en la vida real llevan 4 años de casados y tienen un hijo llamado Oli.", "links": {"website": ["https://www.youtube.com/@luzugames", "https://www.youtube.com/@helloimlana951", "https://twitter.com/HelloImLana", "https://twitter.com/LuzuGames"]}, "path": {"250-258": [[500, 559], [500, 582], [512, 582], [512, 559]]}, "center": {"250-258": [506, 571]}}, -{"id": 4093, "name": "Dornet's mascot", "description": "A pixel art dedicated to the spanish YouTuber named \"Dornet\".", "links": {"website": ["https://www.youtube.com/@Dornetuwu"], "discord": ["rp6pTRdvMQ"]}, "path": {"250-258": [[-601, -768], [-601, -758], [-583, -758], [-583, -768]]}, "center": {"250-258": [-592, -763]}}, -{"id": 4094, "name": "Corazón Halado", "description": "Lazo negro con un corazón azul y un Halo de ángel accesorios que representa a la comunidad de Kotarq, Vtuber de habla hispana, tambien conocida como. La Vaca", "links": {"website": ["https://www.twitch.tv/kotarq"], "discord": ["jVNsCWz3"]}, "path": {"250-258": [[-812, -952], [-781, -952], [-781, -960], [-780, -967], [-782, -968], [-782, -969], [-784, -970], [-787, -973], [-795, -973], [-797, -971], [-797, -970], [-800, -970], [-800, -969], [-801, -968], [-802, -967], [-802, -961], [-812, -962], [-812, -956]]}, "center": {"250-258": [-791, -962]}}, -{"id": 4095, "name": "Momophobia", "description": "An up and coming original music alt rock band from Charlotte, NC", "links": {"website": ["https://open.spotify.com/artist/0gYtKLVCaV16FhiWS6JOgF"], "subreddit": ["momophobia_band"]}, "path": {"250-258": [[-1329, 178], [-1315, 178], [-1315, 190], [-1329, 190]]}, "center": {"250-258": [-1322, 184]}}, -{"id": 4096, "name": "Mr. Algernon Socrates Boy (Mr. Boy)", "description": "In memory of musician Will Wood's pet rat, Mr. boy", "links": {"website": ["https://www.reddit.com/r/willwood/comments/10d50fu/rip_mrboy/?utm_source=share&utm_medium=android_app&utm_name=androidcss&utm_term=1&utm_content=2"]}, "path": {"250-258": [[92, 124], [90, 128], [85, 128], [85, 126], [86, 125], [86, 123], [90, 124], [86, 127], [88, 126], [89, 125]]}, "center": {"250-258": [87, 125]}}, -{"id": 4097, "name": "Avatar: The Last Airbender - abbreviation with Aang arrow", "description": "Name of the TV Show Avatar: The Last Airbender abbreviated to ATLA with a blue arrow next to it representing the the tattoo of the main character Aang.", "links": {"subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["5FSXqzJkQ5"]}, "path": {"135-258": [[-925, 16], [-909, 16], [-909, 21], [-925, 21]]}, "center": {"135-258": [-917, 19]}}, -{"id": 4098, "name": "Dutch heart", "description": "Heart made by the discord server that made Phos in gratitude to the Dutch community (r/PlaceNL) for allowing us to build on the flag of the Netherlands and the orange stripe representing the Oranje Boven.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous"], "discord": ["gDKwmDndPA"]}, "path": {"199-258": [[-1192, -543], [-1191, -544], [-1190, -545], [-1189, -546], [-1189, -547], [-1190, -548], [-1191, -549], [-1192, -548], [-1193, -549], [-1194, -548], [-1195, -547], [-1194, -546], [-1194, -545], [-1193, -544]]}, "center": {"199-258": [-1192, -546]}}, -{"id": 4099, "name": "Turtle Duck", "description": "A Turtle Duck is a fictional animal from the TV Show Avatar: The Last Airbender with a duck's head, neck, and tail, but the body, shell, and legs of a turtle.", "links": {"subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["5FSXqzJkQ5"]}, "path": {"206-258": [[507, -702], [509, -702], [509, -701], [511, -701], [512, -701], [512, -702], [513, -702], [513, -703], [513, -702], [514, -702], [514, -695], [513, -695], [513, -694], [512, -694], [512, -692], [511, -692], [511, -691], [510, -691], [510, -690], [508, -690], [509, -690], [509, -689], [508, -689], [508, -688], [506, -688], [505, -688], [505, -687], [501, -687], [501, -688], [499, -688], [499, -689], [498, -689], [498, -691], [497, -691], [497, -693], [497, -694], [496, -694], [496, -695], [494, -695], [494, -696], [493, -696], [494, -696], [494, -697], [495, -697], [495, -700], [496, -700], [496, -701], [497, -701], [497, -702], [498, -702], [498, -703], [499, -703], [501, -703], [501, -702], [502, -702], [502, -701], [504, -701], [505, -701], [505, -702]]}, "center": {"206-258": [504, -695]}}, -{"id": 4100, "name": "KarmaVT", "description": "KarmaVT es una VTuber Chilena de la agencia OWOZU, Karma antes era una cuervo que le picaba los ojos a la gente, un dia el alma de Karma se traslado a una humana que estaba a punto de quitarse la vida, y asi Karma se convirtio en un humano. Ahora es una Gotica Muslona que hace Streams en Twitch y videos en Youtube, Siempre que tengas mucha plata ella hara lo que quieras ya que a los cuervos les encanta lo brillante\n\nDatos extra: ella tiene muchos ships pero el mas god es Rakkun X Karma.\n\nNo preguntes.... Solo gozalo.......", "links": {"website": ["https://www.owozu.com/karma/", "https://www.twitch.tv/karmaVT_", "https://www.patreon.com/KarmaVT", "https://www.tiktok.com/@karma_vt", "https://twitter.com/KarmaVT_"], "discord": ["qPKGUajnEP"]}, "path": {"220-259": [[-791, 403], [-770, 403], [-770, 429], [-791, 429]]}, "center": {"220-259": [-780, 416]}}, -{"id": 4101, "name": "Squirtle to Bowser - CUL", "description": "A squirtle gobliniser that Bowser takes care of very well", "links": {"website": ["https://www.twitch.tv/domcasse"], "discord": ["Wc6c7xBxxh"]}, "path": {"250-258": [[280, 990], [280, 983], [287, 983], [287, 990]]}, "center": {"250-258": [284, 987]}}, +{"id": 4090, "name": "Dornet's mascot", "description": "A pixel art dedicated to the spanish YouTuber named \"Dornet\".", "links": {"website": ["https://www.youtube.com/@Dornetuwu"], "discord": ["rp6pTRdvMQ"]}, "path": {"141-221": [[-601, -768], [-601, -758], [-583, -758], [-583, -768]], "235-258, T": [[-601, -768], [-583, -768], [-583, -757], [-601, -757]]}, "center": {"141-221": [-592, -763], "235-258, T": [-592, -762]}}, +{"id": 4091, "name": "Charmander - Pokémon", "description": "Sprite of Charmander, a Fire-type Pokémon introduced in Generation I. Along with Bulbasaur and Squirtle, it is one of the three starter Pokémon offered to players in the Kanto region.\n\nMade on the fourth day by the \"Pokemon in r/place\" Discord in collaboration with the Flag of Ireland.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Charmander_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"], "discord": ["TZeRPaFZ"]}, "path": {"250-258, T": [[294, -111], [294, -116], [297, -121], [301, -114], [292, -103], [284, -107], [284, -109], [279, -112], [280, -116], [284, -121], [288, -121]]}, "center": {"250-258, T": [286, -114]}}, +{"id": 4092, "name": "LUZANA", "description": "Art sobre la ship de Luzu (youtuber, vlogger y streamer de nacionalidad española) y Lana \"Lanita\"( vlogger, productora y modelo estadounidense) con sus skins de minecraft. \nHecho por la comunidad \"team Luzu\" para conmemorar su bonita relación. \nEllos en la vida real llevan 4 años de casados y tienen un hijo llamado Oli.", "links": {"website": ["https://www.youtube.com/@luzugames", "https://www.youtube.com/@helloimlana951", "https://twitter.com/HelloImLana", "https://twitter.com/LuzuGames"]}, "path": {"250-258, T": [[500, 559], [500, 582], [512, 582], [512, 559]]}, "center": {"250-258, T": [506, 571]}}, +{"id": 4093, "name": "Dornet's mascot", "description": "A pixel art dedicated to the spanish YouTuber named \"Dornet\".", "links": {"website": ["https://www.youtube.com/@Dornetuwu"], "discord": ["rp6pTRdvMQ"]}, "path": {"250-258, T": [[-601, -768], [-601, -758], [-583, -758], [-583, -768]]}, "center": {"250-258, T": [-592, -763]}}, +{"id": 4094, "name": "Corazón Halado", "description": "Lazo negro con un corazón azul y un Halo de ángel accesorios que representa a la comunidad de Kotarq, Vtuber de habla hispana, tambien conocida como. La Vaca", "links": {"website": ["https://www.twitch.tv/kotarq"], "discord": ["jVNsCWz3"]}, "path": {"250-258, T": [[-812, -952], [-781, -952], [-781, -960], [-780, -967], [-782, -968], [-782, -969], [-784, -970], [-787, -973], [-795, -973], [-797, -971], [-797, -970], [-800, -970], [-800, -969], [-801, -968], [-802, -967], [-802, -961], [-812, -962], [-812, -956]]}, "center": {"250-258, T": [-791, -962]}}, +{"id": 4095, "name": "Momophobia", "description": "An up and coming original music alt rock band from Charlotte, NC", "links": {"website": ["https://open.spotify.com/artist/0gYtKLVCaV16FhiWS6JOgF"], "subreddit": ["momophobia_band"]}, "path": {"250-258, T": [[-1329, 178], [-1315, 178], [-1315, 190], [-1329, 190]]}, "center": {"250-258, T": [-1322, 184]}}, +{"id": 4096, "name": "Mr. Algernon Socrates Boy (Mr. Boy)", "description": "In memory of musician Will Wood's pet rat, Mr. boy", "links": {"website": ["https://www.reddit.com/r/willwood/comments/10d50fu/rip_mrboy/?utm_source=share&utm_medium=android_app&utm_name=androidcss&utm_term=1&utm_content=2"]}, "path": {"250-258, T": [[92, 124], [90, 128], [85, 128], [85, 126], [86, 125], [86, 123], [90, 124], [86, 127], [88, 126], [89, 125]]}, "center": {"250-258, T": [87, 125]}}, +{"id": 4097, "name": "Avatar: The Last Airbender - abbreviation with Aang arrow", "description": "Name of the TV Show Avatar: The Last Airbender abbreviated to ATLA with a blue arrow next to it representing the the tattoo of the main character Aang.", "links": {"subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["5FSXqzJkQ5"]}, "path": {"135-258, T": [[-925, 16], [-909, 16], [-909, 21], [-925, 21]]}, "center": {"135-258, T": [-917, 19]}}, +{"id": 4098, "name": "Dutch heart", "description": "Heart made by the discord server that made Phos in gratitude to the Dutch community (r/PlaceNL) for allowing us to build on the flag of the Netherlands and the orange stripe representing the Oranje Boven.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous"], "discord": ["gDKwmDndPA"]}, "path": {"199-258, T": [[-1192, -543], [-1191, -544], [-1190, -545], [-1189, -546], [-1189, -547], [-1190, -548], [-1191, -549], [-1192, -548], [-1193, -549], [-1194, -548], [-1195, -547], [-1194, -546], [-1194, -545], [-1193, -544]]}, "center": {"199-258, T": [-1192, -546]}}, +{"id": 4099, "name": "Turtle Duck", "description": "A Turtle Duck is a fictional animal from the TV Show Avatar: The Last Airbender with a duck's head, neck, and tail, but the body, shell, and legs of a turtle.", "links": {"subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["5FSXqzJkQ5"]}, "path": {"206-258, T": [[507, -702], [509, -702], [509, -701], [511, -701], [512, -701], [512, -702], [513, -702], [513, -703], [513, -702], [514, -702], [514, -695], [513, -695], [513, -694], [512, -694], [512, -692], [511, -692], [511, -691], [510, -691], [510, -690], [508, -690], [509, -690], [509, -689], [508, -689], [508, -688], [506, -688], [505, -688], [505, -687], [501, -687], [501, -688], [499, -688], [499, -689], [498, -689], [498, -691], [497, -691], [497, -693], [497, -694], [496, -694], [496, -695], [494, -695], [494, -696], [493, -696], [494, -696], [494, -697], [495, -697], [495, -700], [496, -700], [496, -701], [497, -701], [497, -702], [498, -702], [498, -703], [499, -703], [501, -703], [501, -702], [502, -702], [502, -701], [504, -701], [505, -701], [505, -702]]}, "center": {"206-258, T": [504, -695]}}, +{"id": 4100, "name": "KarmaVT", "description": "KarmaVT es una VTuber Chilena de la agencia OWOZU, Karma antes era una cuervo que le picaba los ojos a la gente, un dia el alma de Karma se traslado a una humana que estaba a punto de quitarse la vida, y asi Karma se convirtio en un humano. Ahora es una Gotica Muslona que hace Streams en Twitch y videos en Youtube, Siempre que tengas mucha plata ella hara lo que quieras ya que a los cuervos les encanta lo brillante\n\nDatos extra: ella tiene muchos ships pero el mas god es Rakkun X Karma.\n\nNo preguntes.... Solo gozalo.......", "links": {"website": ["https://www.owozu.com/karma/", "https://www.twitch.tv/karmaVT_", "https://www.patreon.com/KarmaVT", "https://www.tiktok.com/@karma_vt", "https://twitter.com/KarmaVT_"], "discord": ["qPKGUajnEP"]}, "path": {"220-259, T": [[-791, 403], [-770, 403], [-770, 429], [-791, 429]]}, "center": {"220-259, T": [-780, 416]}}, +{"id": 4101, "name": "Squirtle to Bowser - CUL", "description": "A squirtle gobliniser that Bowser takes care of very well", "links": {"website": ["https://www.twitch.tv/domcasse"], "discord": ["Wc6c7xBxxh"]}, "path": {"250-258, T": [[280, 990], [280, 983], [287, 983], [287, 990]]}, "center": {"250-258, T": [284, 987]}}, {"id": 4102, "name": "REPOLLOCLIPS", "description": "EL POLLO MAS BONITO Y CHALON DE TODO TWITCH", "links": {"website": ["https://www.twitch.tv/repolloclips", "https://www.youtube.com/@RePolloClip"], "discord": ["YUNf557zxC"]}, "path": {"153": [[-158, -912], [-146, -912], [-146, -890], [-158, -890]]}, "center": {"153": [-152, -901]}}, -{"id": 4103, "name": "Opium Record Label", "description": "Opium is an American record label founded in 2019 by Playboi Carti. Notable artists signed to Opium include American rappers Ken Carson and Destroy Lonely, who are both concurrently signed to Interscope Records.", "links": {"subreddit": ["opium"], "discord": ["kszWQy2p3c"]}, "path": {"205-258": [[1442, 40], [1499, 40], [1499, 48], [1441, 48], [1441, 40]]}, "center": {"205-258": [1470, 44]}}, -{"id": 4104, "name": "Dutch heart", "description": "Heart made by the discord server that made Phos in gratitude to the Dutch community (r/PlaceNL) for allowing us to build on the flag of the Netherlands and the orange stripe representing the Oranje Boven.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous"], "discord": ["gDKwmDndPA"]}, "path": {"202-258": [[-1151, -543], [-1150, -544], [-1149, -545], [-1148, -546], [-1148, -547], [-1149, -548], [-1150, -549], [-1151, -548], [-1152, -549], [-1153, -548], [-1154, -547], [-1154, -546], [-1153, -545], [-1152, -544]]}, "center": {"202-258": [-1151, -546]}}, -{"id": 4105, "name": "Appa", "description": "It's Appa, my dog. He was a good boy.", "links": {}, "path": {"208-258": [[1379, 263], [1395, 263], [1395, 279], [1379, 279]]}, "center": {"208-258": [1387, 271]}}, -{"id": 4106, "name": "Feñín", "description": "Feñín was an snowman that was made (and destroyed) on June 12th, 2017, due to the cold weather of that time, which, eventually lead to a snowstorm. It was located on one of the Professional Institutes from Santiago, Chile. It is a character that is remembered by a group of ex students and friends from different locations between the Metropolitan Region.\n\nName Origin\nFeñín is a name made from a diminutive variation of the name Fernando, which, was the name of one of the people who helped to its making.\n\nMeaning and Importance\nMore than just an snowman, Feñín became a symbol of long lasting friendship between a group of students, due to the fact that snowstorms, just as long lasting friendships, are rare. Specially with the distance where each of them lives.\"", "links": {"website": ["https://ibb.co/vDR7fzQ"]}, "path": {"250-258": [[-758, -838], [-757, -836], [-757, -837], [-757, -839], [-758, -840], [-758, -841], [-757, -841], [-759, -841], [-759, -840], [-760, -840], [-760, -839], [-760, -838], [-757, -838], [-757, -839], [-757, -840], [-757, -841], [-756, -841], [-756, -839], [-756, -838], [-758, -837], [-759, -837], [-760, -837], [-760, -836], [-759, -836], [-757, -835], [-757, -834], [-757, -833], [-757, -832], [-758, -832], [-758, -833], [-758, -834], [-758, -835], [-758, -836], [-758, -837], [-759, -837], [-759, -836], [-759, -835], [-759, -834], [-759, -833], [-759, -832], [-760, -832], [-760, -834], [-760, -835], [-760, -836], [-759, -837], [-760, -837], [-759, -837], [-758, -837], [-761, -836], [-762, -836], [-762, -837], [-762, -838], [-763, -837], [-763, -838], [-765, -838], [-763, -839], [-761, -837], [-755, -832], [-754, -834], [-753, -835], [-753, -837], [-752, -837], [-751, -838], [-758, -836]]}, "center": {"250-258": [-755, -835]}}, +{"id": 4103, "name": "Opium Record Label", "description": "Opium is an American record label founded in 2019 by Playboi Carti. Notable artists signed to Opium include American rappers Ken Carson and Destroy Lonely, who are both concurrently signed to Interscope Records.", "links": {"subreddit": ["opium"], "discord": ["kszWQy2p3c"]}, "path": {"205-258, T": [[1442, 40], [1499, 40], [1499, 48], [1441, 48], [1441, 40]]}, "center": {"205-258, T": [1470, 44]}}, +{"id": 4104, "name": "Dutch heart", "description": "Heart made by the discord server that made Phos in gratitude to the Dutch community (r/PlaceNL) for allowing us to build on the flag of the Netherlands and the orange stripe representing the Oranje Boven.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous"], "discord": ["gDKwmDndPA"]}, "path": {"202-258, T": [[-1151, -543], [-1150, -544], [-1149, -545], [-1148, -546], [-1148, -547], [-1149, -548], [-1150, -549], [-1151, -548], [-1152, -549], [-1153, -548], [-1154, -547], [-1154, -546], [-1153, -545], [-1152, -544]]}, "center": {"202-258, T": [-1151, -546]}}, +{"id": 4105, "name": "Appa", "description": "It's Appa, my dog. He was a good boy.", "links": {}, "path": {"208-258, T": [[1379, 263], [1395, 263], [1395, 279], [1379, 279]]}, "center": {"208-258, T": [1387, 271]}}, +{"id": 4106, "name": "Feñín", "description": "Feñín was an snowman that was made (and destroyed) on June 12th, 2017, due to the cold weather of that time, which, eventually lead to a snowstorm. It was located on one of the Professional Institutes from Santiago, Chile. It is a character that is remembered by a group of ex students and friends from different locations between the Metropolitan Region.\n\nName Origin\nFeñín is a name made from a diminutive variation of the name Fernando, which, was the name of one of the people who helped to its making.\n\nMeaning and Importance\nMore than just an snowman, Feñín became a symbol of long lasting friendship between a group of students, due to the fact that snowstorms, just as long lasting friendships, are rare. Specially with the distance where each of them lives.\"", "links": {"website": ["https://ibb.co/vDR7fzQ"]}, "path": {"250-258, T": [[-758, -838], [-757, -836], [-757, -837], [-757, -839], [-758, -840], [-758, -841], [-757, -841], [-759, -841], [-759, -840], [-760, -840], [-760, -839], [-760, -838], [-757, -838], [-757, -839], [-757, -840], [-757, -841], [-756, -841], [-756, -839], [-756, -838], [-758, -837], [-759, -837], [-760, -837], [-760, -836], [-759, -836], [-757, -835], [-757, -834], [-757, -833], [-757, -832], [-758, -832], [-758, -833], [-758, -834], [-758, -835], [-758, -836], [-758, -837], [-759, -837], [-759, -836], [-759, -835], [-759, -834], [-759, -833], [-759, -832], [-760, -832], [-760, -834], [-760, -835], [-760, -836], [-759, -837], [-760, -837], [-759, -837], [-758, -837], [-761, -836], [-762, -836], [-762, -837], [-762, -838], [-763, -837], [-763, -838], [-765, -838], [-763, -839], [-761, -837], [-755, -832], [-754, -834], [-753, -835], [-753, -837], [-752, -837], [-751, -838], [-758, -836]]}, "center": {"250-258, T": [-755, -835]}}, {"id": 4107, "name": "Flag of Panama", "description": "The Flag of the Republic consists thus of a divided rectangle of four quarters: the upper field close to the pole white with a blue star of five points; the upper field further from the pole, red; the lower field near the pole, blue; and the lower one further from the pole, white with a red star of five points.\nThis flag was to reflect the political situation of the time:\nThe blue was intended to represent the Conservative Party\nThe red to represent the Liberal Party.\nThe white was intended to stand for peace and purity;\nThe blue star stands for the purity and honesty of the life of the country;\nThe red star represents the authority and law in the country, and together the stars stand for the new republic.The Flag of the Republic consists thus of a divided rectangle of four quarters: the upper field close to the pole white with a blue star of five points; the upper field further from the pole, red; the lower field near the pole, blue; and the lower one further from the pole, white with a red star of five points.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Panama"], "subreddit": ["MasQueGeeks", "Panama"], "discord": ["j59jMZXgCg"]}, "path": {"241": [[-1500, 631], [-1478, 631], [-1478, 648], [-1500, 648]]}, "center": {"241": [-1489, 640]}}, -{"id": 4108, "name": "Webos Community", "description": "Our community has Hispanic Dumb Guys, but they have a lot of WEBOS✊🥚", "links": {}, "path": {"168-251": [[-689, 814], [-689, 834], [-672, 834], [-672, 814]]}, "center": {"168-251": [-680, 824]}}, -{"id": 4109, "name": "Miku Pinku", "description": "Miku Pinku (ミクピンク) is a colombian VTuber and streamer. She is a visual designer and a freelance artist. She does variety content, such as just chatting, gameplays, art and ASMR. She cosplays and sings sometimes.", "links": {"website": ["https://mikupinku.carrd.co/", "https://www.twitch.tv/mikupinku", "https://www.youtube.com/@mikupinku"], "subreddit": ["mikupinkuVT"], "discord": ["x3YBjYc"]}, "path": {"250-258": [[241, 178], [240, 177], [239, 176], [239, 175], [238, 174], [238, 172], [237, 172], [236, 171], [236, 170], [237, 169], [237, 160], [239, 160], [240, 161], [240, 164], [242, 164], [242, 161], [243, 160], [245, 160], [248, 160], [248, 161], [251, 161], [251, 160], [253, 160], [253, 167], [246, 167], [245, 168], [246, 171], [244, 171], [244, 174], [241, 178], [238, 174], [241, 178], [244, 172], [241, 175]]}, "center": {"250-258": [241, 168]}}, -{"id": 4110, "name": "Twice Eevee CandyBong", "description": "Candy Bong is Twice's official light stick. The idea of the \"Candy Bong\" was inspired from one of Twice's tracks \"Candy Boy\" from their debut mini-album \"The Story Begins\".\n\nSnuck onto Eevee's head following the abandonment of XQC's Charizard Pokemon Card.", "links": {"subreddit": ["Twice"]}, "path": {"215-258": [[-1214, 201], [-1206, 201], [-1206, 210], [-1214, 210]]}, "center": {"215-258": [-1210, 206]}}, -{"id": 4111, "name": "Tuskegee Airmen", "description": "A depiction of a North American P-51C Mustang in the livery of the 332nd Fighter Squadron.\n\nKnown for their iconic \"Red Tails\" the 332nd was one of two black fighter squadrons to see combat during the Second World War. The 332nd is well known for their formidable performance in combat earning the nickname \"Red-Tail Angels\" by fellow pilots and a total of 96 Distinguished Flying Crosses.\n\nIn 2012 a film entitled \"Red Tails\" directed by Anthony Hemingway was released and showcased the story of the Tuskegee Airmen.", "links": {"website": ["https://en.wikipedia.org/wiki/Tuskegee_Airmen"]}, "path": {"250-258": [[-118, 105], [-118, 107], [-111, 114], [-114, 116], [-107, 120], [-100, 122], [-90, 129], [-88, 129], [-87, 127], [-97, 120], [-89, 116], [-86, 118], [-86, 114], [-87, 113], [-86, 112], [-86, 107], [-88, 106], [-94, 112], [-96, 112], [-98, 110], [-101, 110], [-103, 112], [-106, 112], [-116, 105]]}, "center": {"250-258": [-99, 116]}}, -{"id": 4112, "name": "DREVOX Totem.", "description": "DREVOX is a Peruvian streamer who does variety content on Twitch and YouTube!.\nThis Totem is a representation of his Minecraft skin based in a Totem of the own game.", "links": {"website": ["https://www.twitch.tv/drevox_"], "discord": ["ARZNQpENeB"]}, "path": {"218-258": [[-698, -809], [-689, -809], [-689, -802], [-686, -802], [-686, -799], [-687, -799], [-687, -798], [-689, -798], [-689, -796], [-698, -796], [-698, -798], [-700, -798], [-700, -799], [-701, -799], [-701, -802], [-698, -802]]}, "center": {"218-258": [-693, -803]}}, -{"id": 4113, "name": "Blue Square", "description": "An alliance formed by many different groups who have coordinated to protect their artwork against vandalism\n\nBlue Square (formerly McQueen land) \n(Might be incomplete) Alliance members:\nMegumin\nKutekiera's Michael memorial Key symbol dolphin from guilty gear\nBocchi (who knows how many pieces they have) \nYotsuba /b/ 4chan\nMushoku Tensei\nK-On\nPikmin\nAI Sponge\nRimuru Slime\nPhos (Lustrous gem girls)\n(other) Bocchi\nSakamoto (Nichijou)\nLove Live (pairing stories, shadow house?)\n~~Other Megumin\n\nConnections:\nunited gacha alliance\nisekai coalition\nOshi no Ko\nTuyu inaba needystreameroverload\nCyberpunk Samurai\n(Bocchi Pony that was made by a single guy)\n\nNo connections:\nminecraft cat faces from germany flag \nrandom hearts flowers", "links": {}, "path": {"128-258": [[204, -911], [204, -806], [305, -805], [305, -911]]}, "center": {"128-258": [255, -858]}}, -{"id": 4114, "name": "Medicine Wheel", "description": "A medicine wheel is a circle of stones with four spokes pointing in the cardinal directions built by Native American tribes.\n\nShown here is the modern adaptation of the symbol.", "links": {"website": ["https://en.wikipedia.org/wiki/Medicine_wheel", "https://en.wikipedia.org/wiki/Medicine_wheel_(symbol)"]}, "path": {"250-258": [[832, 888], [832, 895], [835, 897], [851, 897], [855, 893], [855, 889], [850, 885], [835, 885]]}, "center": {"250-258": [844, 891]}}, -{"id": 4115, "name": "Domcasse, FedQc, H1H111, MartyyVengeance et le rat", "description": "This art is a collab between Domcasse (Quebec Streamer) H1H111 (French Streamer) FedQc (Gaspésian Streamer) and MartyyVengeance (Acadian Streamer). The featured rat entered FedQc's mouth during the event and was drawn there as a result, it's friend the crab represent gaspésie/acadie's crab and lobster fishing importance to the region. CUL", "links": {"website": ["https://www.twitch.tv/fedqc", "https://www.twitch.tv/domcasse", "https://www.twitch.tv/H1H111", "https://www.twitch.tv/MartyyVengeance"], "discord": ["Wc6c7xBxxh"]}, "path": {"250-258": [[269, 1000], [269, 991], [250, 991], [250, 999], [250, 991], [235, 991], [235, 999], [269, 999]]}, "center": {"250-258": [239, 995]}}, -{"id": 4116, "name": "Kurumi Tokisaki", "description": "A character from the Date A Live series. Due to her brutal actions, she is referred to as the \"Worst Spirit\"", "links": {"subreddit": ["datealive"]}, "path": {"213-258": [[231, -911], [231, -907], [241, -907], [241, -911]]}, "center": {"213-258": [236, -909]}}, +{"id": 4108, "name": "Webos Community", "description": "Our community has Hispanic Dumb Guys, but they have a lot of WEBOS✊🥚", "links": {}, "path": {"168-251, T": [[-689, 814], [-689, 834], [-672, 834], [-672, 814]]}, "center": {"168-251, T": [-680, 824]}}, +{"id": 4109, "name": "Miku Pinku", "description": "Miku Pinku (ミクピンク) is a colombian VTuber and streamer. She is a visual designer and a freelance artist. She does variety content, such as just chatting, gameplays, art and ASMR. She cosplays and sings sometimes.", "links": {"website": ["https://mikupinku.carrd.co/", "https://www.twitch.tv/mikupinku", "https://www.youtube.com/@mikupinku"], "subreddit": ["mikupinkuVT"], "discord": ["x3YBjYc"]}, "path": {"250-258, T": [[241, 178], [240, 177], [239, 176], [239, 175], [238, 174], [238, 172], [237, 172], [236, 171], [236, 170], [237, 169], [237, 160], [239, 160], [240, 161], [240, 164], [242, 164], [242, 161], [243, 160], [245, 160], [248, 160], [248, 161], [251, 161], [251, 160], [253, 160], [253, 167], [246, 167], [245, 168], [246, 171], [244, 171], [244, 174], [241, 178], [238, 174], [241, 178], [244, 172], [241, 175]]}, "center": {"250-258, T": [241, 168]}}, +{"id": 4110, "name": "Twice Eevee CandyBong", "description": "Candy Bong is Twice's official light stick. The idea of the \"Candy Bong\" was inspired from one of Twice's tracks \"Candy Boy\" from their debut mini-album \"The Story Begins\".\n\nSnuck onto Eevee's head following the abandonment of XQC's Charizard Pokemon Card.", "links": {"subreddit": ["Twice"]}, "path": {"215-258, T": [[-1214, 201], [-1206, 201], [-1206, 210], [-1214, 210]]}, "center": {"215-258, T": [-1210, 206]}}, +{"id": 4111, "name": "Tuskegee Airmen", "description": "A depiction of a North American P-51C Mustang in the livery of the 332nd Fighter Squadron.\n\nKnown for their iconic \"Red Tails\" the 332nd was one of two black fighter squadrons to see combat during the Second World War. The 332nd is well known for their formidable performance in combat earning the nickname \"Red-Tail Angels\" by fellow pilots and a total of 96 Distinguished Flying Crosses.\n\nIn 2012 a film entitled \"Red Tails\" directed by Anthony Hemingway was released and showcased the story of the Tuskegee Airmen.", "links": {"website": ["https://en.wikipedia.org/wiki/Tuskegee_Airmen"]}, "path": {"250-258, T": [[-118, 105], [-118, 107], [-111, 114], [-114, 116], [-107, 120], [-100, 122], [-90, 129], [-88, 129], [-87, 127], [-97, 120], [-89, 116], [-86, 118], [-86, 114], [-87, 113], [-86, 112], [-86, 107], [-88, 106], [-94, 112], [-96, 112], [-98, 110], [-101, 110], [-103, 112], [-106, 112], [-116, 105]]}, "center": {"250-258, T": [-99, 116]}}, +{"id": 4112, "name": "DREVOX Totem.", "description": "DREVOX is a Peruvian streamer who does variety content on Twitch and YouTube!.\nThis Totem is a representation of his Minecraft skin based in a Totem of the own game.", "links": {"website": ["https://www.twitch.tv/drevox_"], "discord": ["ARZNQpENeB"]}, "path": {"218-258, T": [[-698, -809], [-689, -809], [-689, -802], [-686, -802], [-686, -799], [-687, -799], [-687, -798], [-689, -798], [-689, -796], [-698, -796], [-698, -798], [-700, -798], [-700, -799], [-701, -799], [-701, -802], [-698, -802]]}, "center": {"218-258, T": [-693, -803]}}, +{"id": 4113, "name": "Blue Square", "description": "An alliance formed by many different groups who have coordinated to protect their artwork against vandalism\n\nBlue Square (formerly McQueen land) \n(Might be incomplete) Alliance members:\nMegumin\nKutekiera's Michael memorial Key symbol dolphin from guilty gear\nBocchi (who knows how many pieces they have) \nYotsuba /b/ 4chan\nMushoku Tensei\nK-On\nPikmin\nAI Sponge\nRimuru Slime\nPhos (Lustrous gem girls)\n(other) Bocchi\nSakamoto (Nichijou)\nLove Live (pairing stories, shadow house?)\n~~Other Megumin\n\nConnections:\nunited gacha alliance\nisekai coalition\nOshi no Ko\nTuyu inaba needystreameroverload\nCyberpunk Samurai\n(Bocchi Pony that was made by a single guy)\n\nNo connections:\nminecraft cat faces from germany flag \nrandom hearts flowers", "links": {}, "path": {"128-258, T": [[204, -911], [204, -806], [305, -805], [305, -911]]}, "center": {"128-258, T": [255, -858]}}, +{"id": 4114, "name": "Medicine Wheel", "description": "A medicine wheel is a circle of stones with four spokes pointing in the cardinal directions built by Native American tribes.\n\nShown here is the modern adaptation of the symbol.", "links": {"website": ["https://en.wikipedia.org/wiki/Medicine_wheel", "https://en.wikipedia.org/wiki/Medicine_wheel_(symbol)"]}, "path": {"250-258, T": [[832, 888], [832, 895], [835, 897], [851, 897], [855, 893], [855, 889], [850, 885], [835, 885]]}, "center": {"250-258, T": [844, 891]}}, +{"id": 4115, "name": "Domcasse, FedQc, H1H111, MartyyVengeance et le rat", "description": "This art is a collab between Domcasse (Quebec Streamer) H1H111 (French Streamer) FedQc (Gaspésian Streamer) and MartyyVengeance (Acadian Streamer). The featured rat entered FedQc's mouth during the event and was drawn there as a result, it's friend the crab represent gaspésie/acadie's crab and lobster fishing importance to the region. CUL", "links": {"website": ["https://www.twitch.tv/fedqc", "https://www.twitch.tv/domcasse", "https://www.twitch.tv/H1H111", "https://www.twitch.tv/MartyyVengeance"], "discord": ["Wc6c7xBxxh"]}, "path": {"250-258, T": [[269, 1000], [269, 991], [250, 991], [250, 999], [250, 991], [235, 991], [235, 999], [269, 999]]}, "center": {"250-258, T": [239, 995]}}, +{"id": 4116, "name": "Kurumi Tokisaki", "description": "A character from the Date A Live series. Due to her brutal actions, she is referred to as the \"Worst Spirit\"", "links": {"subreddit": ["datealive"]}, "path": {"213-258, T": [[231, -911], [231, -907], [241, -907], [241, -911]]}, "center": {"213-258, T": [236, -909]}}, {"id": 4117, "name": "Bluey", "description": "Emission pour enfant d'un chien qui se tape le Cul ( DÉTESTE les goblins )", "links": {}, "path": {"169": [[-131, -501], [-131, -550], [-63, -550], [-64, -510], [-98, -509], [-98, -501], [-99, -501]]}, "center": {"169": [-109, -528]}}, {"id": 4118, "name": "J'aime le CUL", "description": "First territory of CUL to the right of a tribute to a deceased person and to the left of a children's show that hates goblins who twerk", "links": {"website": ["https://www.twitch.tv/domcasse"], "discord": ["Wc6c7xBxxh"]}, "path": {"169": [[-131, -501], [-131, -550], [-63, -550], [-64, -510], [-98, -509], [-98, -501], [-99, -501]]}, "center": {"169": [-109, -528]}}, {"id": 4119, "name": "Sakenomi / サケノミ", "description": "The Cookie☆ community's first attempt at creating something on r/place, Sakenomi, a creature born from one frame of the voice drama \"Alice and Marisa's Cookie Kiss\". However, she eventually was swallowed up by blue and thus destroyed. There were no attempts to rebuild her, and it was decided to try something else.", "links": {"website": ["https://w.atwiki.jp/cookie_kaisetu/pages/533.html"]}, "path": {"83-92": [[920, 471], [915, 473], [908, 473], [905, 471], [907, 469], [905, 467], [907, 465], [907, 462], [904, 457], [906, 450], [907, 444], [913, 447], [916, 446], [919, 444], [920, 453], [923, 456], [922, 460], [921, 460], [918, 464], [921, 467]]}, "center": {"83-92": [913, 456]}}, {"id": 4120, "name": "repolloclips", "description": "el pollo vtuber mas bonito y pingon de todo twitch <3", "links": {"website": ["https://www.twitch.tv/repolloclips", "https://www.youtube.com/@RePolloClip"], "discord": ["YUNf557zxC"]}, "path": {"157": [[-159, -912], [-146, -889], [-146, -910], [-148, -912], [-158, -912], [-158, -889], [-146, -890]]}, "center": {"157": [-151, -907]}}, -{"id": 4121, "name": "98% Nine Circles Fail", "description": "streamer ghost power 13 fail at 98% of Nine Circles, Geometry Dash Hard Demon Level", "links": {"website": ["https://www.youtube.com/@GhostPower13"], "discord": ["gozpawa"]}, "path": {"231-252": [[-711, 778], [-670, 778], [-670, 798], [-711, 798]]}, "center": {"231-252": [-690, 788]}}, -{"id": 4122, "name": "School of Science and Technology, Singapore (SST)", "description": "A specialised STEM related private school offering secondary level education based in Singapore. Probably the best school in Singapore.", "links": {"website": ["https://en.wikipedia.org/wiki/School_of_Science_and_Technology,_Singapore"], "subreddit": ["SST_Sg"]}, "path": {"224-258": [[-351, -609], [-291, -609], [-291, -590], [-351, -590]]}, "center": {"224-258": [-321, -599]}}, -{"id": 4123, "name": "Dog to Steff - CUL", "description": "Very cute little dog always sticks out his tongue because there are no teeth", "links": {"website": ["https://www.twitch.tv/domcasse"], "discord": ["Wc6c7xBxxh"]}, "path": {"250-258": [[280, 981], [280, 976], [279, 975], [279, 974], [280, 974], [281, 975], [286, 975], [287, 974], [287, 981], [286, 982], [281, 982]]}, "center": {"250-258": [283, 978]}}, +{"id": 4121, "name": "98% Nine Circles Fail", "description": "streamer ghost power 13 fail at 98% of Nine Circles, Geometry Dash Hard Demon Level", "links": {"website": ["https://www.youtube.com/@GhostPower13"], "discord": ["gozpawa"]}, "path": {"231-252, T": [[-711, 778], [-670, 778], [-670, 798], [-711, 798]]}, "center": {"231-252, T": [-690, 788]}}, +{"id": 4122, "name": "School of Science and Technology, Singapore (SST)", "description": "A specialised STEM related private school offering secondary level education based in Singapore. Probably the best school in Singapore.", "links": {"website": ["https://en.wikipedia.org/wiki/School_of_Science_and_Technology,_Singapore"], "subreddit": ["SST_Sg"]}, "path": {"224-258, T": [[-351, -609], [-291, -609], [-291, -590], [-351, -590]]}, "center": {"224-258, T": [-321, -599]}}, +{"id": 4123, "name": "Dog to Steff - CUL", "description": "Very cute little dog always sticks out his tongue because there are no teeth", "links": {"website": ["https://www.twitch.tv/domcasse"], "discord": ["Wc6c7xBxxh"]}, "path": {"250-258, T": [[280, 981], [280, 976], [279, 975], [279, 974], [280, 974], [281, 975], [286, 975], [287, 974], [287, 981], [286, 982], [281, 982]]}, "center": {"250-258, T": [283, 978]}}, {"id": 4124, "name": "REPOLLOCLIPS", "description": "EL POLLO MAS BONITO Y CHALON DE TODO TWITCH", "links": {"website": ["https://www.twitch.tv/repolloclips", "https://www.youtube.com/@RePolloClip"], "discord": ["YUNf557zxC"]}, "path": {"153": [[-158, -912], [-146, -912], [-146, -890], [-158, -890]]}, "center": {"153": [-152, -901]}}, -{"id": 4125, "name": "Dutch heart", "description": "Heart made by the discord server that made Phos in gratitude to the Dutch community (r/PlaceNL) for allowing us to build on the flag of the Netherlands and the orange stripe representing the Oranje Boven.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous"], "discord": ["gDKwmDndPA"]}, "path": {"210-258": [[-1192, -511], [-1191, -512], [-1190, -511], [-1189, -510], [-1189, -509], [-1190, -508], [-1191, -507], [-1192, -506], [-1193, -507], [-1194, -508], [-1195, -509], [-1195, -510], [-1194, -511], [-1193, -512]]}, "center": {"210-258": [-1192, -509]}}, -{"id": 4126, "name": "Territoire du Cul Goblin ( DomCasse )", "description": "Territory of ( Cul Goblin ) to attack, defended for far too long but we made it", "links": {"website": ["https://www.twitch.tv/etiennebetterthanyou"], "discord": ["Wc6c7xBxxh"]}, "path": {"250-258": [[288, 964], [288, 1000], [234, 1000], [234, 991], [266, 991], [265, 965], [288, 965]]}, "center": {"250-258": [277, 977]}}, +{"id": 4125, "name": "Dutch heart", "description": "Heart made by the discord server that made Phos in gratitude to the Dutch community (r/PlaceNL) for allowing us to build on the flag of the Netherlands and the orange stripe representing the Oranje Boven.", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous"], "discord": ["gDKwmDndPA"]}, "path": {"210-258, T": [[-1192, -511], [-1191, -512], [-1190, -511], [-1189, -510], [-1189, -509], [-1190, -508], [-1191, -507], [-1192, -506], [-1193, -507], [-1194, -508], [-1195, -509], [-1195, -510], [-1194, -511], [-1193, -512]]}, "center": {"210-258, T": [-1192, -509]}}, +{"id": 4126, "name": "Territoire du Cul Goblin ( DomCasse )", "description": "Territory of ( Cul Goblin ) to attack, defended for far too long but we made it", "links": {"website": ["https://www.twitch.tv/etiennebetterthanyou"], "discord": ["Wc6c7xBxxh"]}, "path": {"250-258, T": [[288, 964], [288, 1000], [234, 1000], [234, 991], [266, 991], [265, 965], [288, 965]]}, "center": {"250-258, T": [277, 977]}}, {"id": 4127, "name": "Territory of the DomCasse - CUL community", "description": "Territory of the DomCasse community (Cul Goblin, Fed who eats a rat, the guitarist bear and other goblin drawings )", "links": {"website": ["https://www.twitch.tv/domcasse"], "discord": ["Wc6c7xBxxh"]}, "path": {"169": [[-131, -501], [-131, -550], [-63, -550], [-64, -510], [-98, -509], [-98, -501], [-99, -501]]}, "center": {"169": [-109, -528]}}, {"id": 4128, "name": "The fallen baby shrimp", "description": "This baby shrimp was design by u/RobbinMikeOrmaza after the previous owners had abandoned their plot. This was made with help from the r/farmcarrots farmers, Helping r/shrimptanks making their stand in r/place 2022. It's a part of the Carrot Farm. Even though the Farm is far, no distance is too far for the Carrot Farmers.", "links": {"subreddit": ["shrimptanks", "farmcarrots"], "discord": ["zgx2FkWB3C"]}, "path": {"225-245": [[-754, 938], [-750, 938], [-750, 931], [-754, 931]]}, "center": {"225-245": [-752, 935]}}, -{"id": 4129, "name": "Emilico", "description": "One of the main protagonists of Shadows House. She is a Living Doll and works as a maid in the Shadows House, acting as the \"face\" of Kate Shadow, the other main protagonist in the series.", "links": {"website": ["https://en.wikipedia.org/wiki/Shadows_House"], "subreddit": ["ShadowsHouse"]}, "path": {"186-258": [[246, -911], [246, -907], [252, -907], [252, -911]]}, "center": {"186-258": [249, -909]}}, -{"id": 4130, "name": "Ness", "description": "Ness is the main protagonist from Earthbound (or Mother 2 if you're in Japan), a 1994 JRPG where four kids must set forth on an adventure to save the world from Giygas, the embodiment of all evil.\n\nEarthbound has also inspired several popular indie games, like Undertale, OMORI, and Deltarune.", "links": {"subreddit": ["earthbound"]}, "path": {"212-258": [[1372, -894], [1376, -898], [1373, -902], [1373, -904], [1376, -905], [1373, -907], [1376, -908], [1377, -910], [1383, -910], [1384, -909], [1386, -908], [1387, -906], [1387, -901], [1384, -898], [1388, -895], [1388, -888], [1385, -887], [1382, -888], [1381, -890], [1379, -887], [1376, -887], [1375, -890]]}, "center": {"212-258": [1381, -903]}}, -{"id": 4131, "name": "Alien to Floreya - CUL", "description": "Alien for Floreya since she is an Alien herself", "links": {"website": ["https://www.twitch.tv/floreya"], "discord": ["floreya"]}, "path": {"250-258": [[288, 973], [280, 973], [280, 966], [287, 966], [288, 966]]}, "center": {"250-258": [284, 970]}}, +{"id": 4129, "name": "Emilico", "description": "One of the main protagonists of Shadows House. She is a Living Doll and works as a maid in the Shadows House, acting as the \"face\" of Kate Shadow, the other main protagonist in the series.", "links": {"website": ["https://en.wikipedia.org/wiki/Shadows_House"], "subreddit": ["ShadowsHouse"]}, "path": {"186-258, T": [[246, -911], [246, -907], [252, -907], [252, -911]]}, "center": {"186-258, T": [249, -909]}}, +{"id": 4130, "name": "Ness", "description": "Ness is the main protagonist from Earthbound (or Mother 2 if you're in Japan), a 1994 JRPG where four kids must set forth on an adventure to save the world from Giygas, the embodiment of all evil.\n\nEarthbound has also inspired several popular indie games, like Undertale, OMORI, and Deltarune.", "links": {"subreddit": ["earthbound"]}, "path": {"212-258, T": [[1372, -894], [1376, -898], [1373, -902], [1373, -904], [1376, -905], [1373, -907], [1376, -908], [1377, -910], [1383, -910], [1384, -909], [1386, -908], [1387, -906], [1387, -901], [1384, -898], [1388, -895], [1388, -888], [1385, -887], [1382, -888], [1381, -890], [1379, -887], [1376, -887], [1375, -890]]}, "center": {"212-258, T": [1381, -903]}}, +{"id": 4131, "name": "Alien to Floreya - CUL", "description": "Alien for Floreya since she is an Alien herself", "links": {"website": ["https://www.twitch.tv/floreya"], "discord": ["floreya"]}, "path": {"250-258, T": [[288, 973], [280, 973], [280, 966], [287, 966], [288, 966]]}, "center": {"250-258, T": [284, 970]}}, {"id": 4132, "name": "repolloclips", "description": "el pollo mas bonito y pingon de todo twitch", "links": {"website": ["https://www.twitch.tv/repolloclips", "https://www.twitch.tv/repolloclips"], "discord": ["YUNf557zxC"]}, "path": {"147-161": [[-159, -912], [-159, -889], [-145, -889], [-145, -912]]}, "center": {"147-161": [-152, -900]}}, {"id": 4133, "name": "T J", "description": "Initials for a young couple in Washington :)\n\nTristan Jake <3 \n\n(5/9/23)", "links": {"discord": ["zd7w67s8Wk"]}, "path": {"208-239": [[-951, -310], [-942, -315], [-940, -310], [-950, -305], [-951, -308]]}, "center": {"208-239": [-946, -310]}}, -{"id": 4134, "name": "Observatorios de Chile", "description": "This art represents the observatories found throughout Chile, concentrating mostly in the northern part of the country, this because \"the Atacama desert is considered the best place on the planet to observe the firmament and develop astronomy\" (Wikipedia).", "links": {"website": ["https://es.wikipedia.org/wiki/Desierto_de_Atacama", "https://www.conicyt.cl/documentos/Fichasobservatorios.pdf", "https://www.turismoastronomico.cl/observatorios-astronomicos.html"]}, "path": {"250-258": [[-1304, -847], [-1304, -859], [-1302, -867], [-1294, -878], [-1291, -881], [-1290, -889], [-1281, -889], [-1281, -883], [-1281, -881], [-1278, -879], [-1276, -882], [-1271, -881], [-1269, -879], [-1270, -876], [-1273, -873], [-1270, -867], [-1269, -859], [-1268, -851], [-1272, -847], [-1282, -847], [-1286, -845], [-1290, -844], [-1296, -844], [-1299, -843], [-1302, -845]]}, "center": {"250-258": [-1286, -862]}}, +{"id": 4134, "name": "Observatorios de Chile", "description": "This art represents the observatories found throughout Chile, concentrating mostly in the northern part of the country, this because \"the Atacama desert is considered the best place on the planet to observe the firmament and develop astronomy\" (Wikipedia).", "links": {"website": ["https://es.wikipedia.org/wiki/Desierto_de_Atacama", "https://www.conicyt.cl/documentos/Fichasobservatorios.pdf", "https://www.turismoastronomico.cl/observatorios-astronomicos.html"]}, "path": {"250-258, T": [[-1304, -847], [-1304, -859], [-1302, -867], [-1294, -878], [-1291, -881], [-1290, -889], [-1281, -889], [-1281, -883], [-1281, -881], [-1278, -879], [-1276, -882], [-1271, -881], [-1269, -879], [-1270, -876], [-1273, -873], [-1270, -867], [-1269, -859], [-1268, -851], [-1272, -847], [-1282, -847], [-1286, -845], [-1290, -844], [-1296, -844], [-1299, -843], [-1302, -845]]}, "center": {"250-258, T": [-1286, -862]}}, {"id": 4135, "name": "Tribute to FedQc", "description": "Tribute to FedQc who eats a rat while monitoring the Cul Goblin territory", "links": {"website": ["https://www.twitch.tv/fedqc"], "discord": ["Wc6c7xBxxh"]}, "path": {"177": [[-72, -549], [-73, -524], [-98, -524], [-99, -527], [-102, -528], [-102, -530], [-96, -542], [-95, -545], [-88, -547], [-81, -550], [-72, -550]]}, "center": {"177": [-84, -536]}}, -{"id": 4136, "name": "HECTOR", "description": "HECTOR is a character and NPC in OMORI. He is the beloved pet rock of KEL in HEADSPACE, who goes missing during the PROLOGUE of the game and can later be found at DINO'S DIG.", "links": {"website": ["https://omori.fandom.com/wiki/HECTOR"], "subreddit": ["omori"]}, "path": {"119-252": [[-236, -224], [-235, -225], [-234, -226], [-233, -227], [-232, -227], [-231, -228], [-228, -228], [-227, -227], [-226, -227], [-225, -226], [-224, -225], [-223, -224], [-223, -221], [-224, -220], [-225, -219], [-234, -219], [-235, -220], [-236, -221], [-236, -223]]}, "center": {"119-252": [-229, -223]}}, -{"id": 4137, "name": "Philadelphia 76ers", "description": "The logo of the American basketball team, The Philadelphia 76ers, who gets their name from the founding year of the United States, 1776.", "links": {}, "path": {"208-258": [[-19, 107], [-19, 111], [-18, 112], [-15, 112], [-14, 111], [-13, 111], [-17, 115], [-17, 116], [-18, 117], [-18, 120], [-17, 121], [-13, 121], [-12, 120], [-12, 114], [-11, 113], [-11, 112], [-11, 116], [-10, 117], [-10, 118], [-7, 121], [-6, 121], [-5, 120], [-6, 119], [-6, 114], [-5, 114], [-5, 120], [-3, 120], [0, 117], [0, 114], [-3, 111], [-5, 111], [-6, 112], [-6, 109], [-5, 108], [-4, 108], [-5, 109], [-5, 111], [-2, 111], [-1, 110], [-1, 108], [-3, 106], [-7, 106], [-8, 107], [-9, 106], [-10, 106], [-12, 108], [-14, 108], [-15, 107], [-16, 107], [-17, 106], [-18, 106]]}, "center": {"208-258": [-9, 110]}}, -{"id": 4138, "name": "Gentle Brush", "description": "Gentle Brush is a My Little Pony OC created by BaconBitz, a member of the r/Place Bronies Discord server. The OC was placed here to commemorate their first r/Place event after joining the MLP fandom.", "links": {}, "path": {"250-258": [[-535, -611], [-531, -611], [-531, -609], [-528, -609], [-528, -605], [-535, -605]]}, "center": {"250-258": [-533, -607]}}, +{"id": 4136, "name": "HECTOR", "description": "HECTOR is a character and NPC in OMORI. He is the beloved pet rock of KEL in HEADSPACE, who goes missing during the PROLOGUE of the game and can later be found at DINO'S DIG.", "links": {"website": ["https://omori.fandom.com/wiki/HECTOR"], "subreddit": ["omori"]}, "path": {"119-252, T": [[-236, -224], [-235, -225], [-234, -226], [-233, -227], [-232, -227], [-231, -228], [-228, -228], [-227, -227], [-226, -227], [-225, -226], [-224, -225], [-223, -224], [-223, -221], [-224, -220], [-225, -219], [-234, -219], [-235, -220], [-236, -221], [-236, -223]]}, "center": {"119-252, T": [-229, -223]}}, +{"id": 4137, "name": "Philadelphia 76ers", "description": "The logo of the American basketball team, The Philadelphia 76ers, who gets their name from the founding year of the United States, 1776.", "links": {}, "path": {"208-258, T": [[-19, 107], [-19, 111], [-18, 112], [-15, 112], [-14, 111], [-13, 111], [-17, 115], [-17, 116], [-18, 117], [-18, 120], [-17, 121], [-13, 121], [-12, 120], [-12, 114], [-11, 113], [-11, 112], [-11, 116], [-10, 117], [-10, 118], [-7, 121], [-6, 121], [-5, 120], [-6, 119], [-6, 114], [-5, 114], [-5, 120], [-3, 120], [0, 117], [0, 114], [-3, 111], [-5, 111], [-6, 112], [-6, 109], [-5, 108], [-4, 108], [-5, 109], [-5, 111], [-2, 111], [-1, 110], [-1, 108], [-3, 106], [-7, 106], [-8, 107], [-9, 106], [-10, 106], [-12, 108], [-14, 108], [-15, 107], [-16, 107], [-17, 106], [-18, 106]]}, "center": {"208-258, T": [-9, 110]}}, +{"id": 4138, "name": "Gentle Brush", "description": "Gentle Brush is a My Little Pony OC created by BaconBitz, a member of the r/Place Bronies Discord server. The OC was placed here to commemorate their first r/Place event after joining the MLP fandom.", "links": {}, "path": {"250-258, T": [[-535, -611], [-531, -611], [-531, -609], [-528, -609], [-528, -605], [-535, -605]]}, "center": {"250-258, T": [-533, -607]}}, {"id": 4139, "name": "Blue Spirit Mask - Location 1", "description": "The Blue Spirit is the alter-ego of Prince Zuko of the Fire Nation, who is one of the main antagonists in the TV show Avatar: The Last Airbender. He uses the Blue Spirit persona to carry out secret missions and to hide his identity.", "links": {"subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["5FSXqzJkQ5"]}, "path": {"204-209": [[1370, 687], [1386, 687], [1386, 706], [1382, 706], [1382, 707], [1381, 707], [1381, 708], [1374, 708], [1374, 707], [1373, 707], [1373, 706], [1370, 706], [1372, 688]]}, "center": {"204-209": [1378, 699]}}, -{"id": 4140, "name": "Florida State University", "description": "The Florida State University, a public university in Tallahassee, Florida. The design features the words \"GO NOLES\" (referencing the school mascot, the Seminoles), a tomahawk, a spear, the academic seal, legendary football coach Bobby Bowden's hat, a torch, and a stylized version of the school's FSU logo.", "links": {"subreddit": ["fsusports", "fsu"]}, "path": {"250-258": [[358, 903], [358, 914], [360, 914], [360, 924], [411, 924], [411, 903]]}, "center": {"250-258": [385, 914]}}, -{"id": 4141, "name": "Charlotte", "description": "Charlotte is a character from Genshin Impact originating from Fontaine, an in-game Nation based on France.", "links": {}, "path": {"250-258": [[-499, 153], [-500, 165], [-494, 173], [-497, 179], [-492, 180], [-492, 185], [-485, 185], [-485, 180], [-479, 180], [-482, 173], [-479, 170], [-479, 165], [-477, 161], [-477, 158], [-482, 152], [-494, 152], [-500, 153]]}, "center": {"250-258": [-489, 162]}}, +{"id": 4140, "name": "Florida State University", "description": "The Florida State University, a public university in Tallahassee, Florida. The design features the words \"GO NOLES\" (referencing the school mascot, the Seminoles), a tomahawk, a spear, the academic seal, legendary football coach Bobby Bowden's hat, a torch, and a stylized version of the school's FSU logo.", "links": {"subreddit": ["fsusports", "fsu"]}, "path": {"250-258, T": [[358, 903], [358, 914], [360, 914], [360, 924], [411, 924], [411, 903]]}, "center": {"250-258, T": [385, 914]}}, +{"id": 4141, "name": "Charlotte", "description": "Charlotte is a character from Genshin Impact originating from Fontaine, an in-game Nation based on France.", "links": {}, "path": {"250-258, T": [[-499, 153], [-500, 165], [-494, 173], [-497, 179], [-492, 180], [-492, 185], [-485, 185], [-485, 180], [-479, 180], [-482, 173], [-479, 170], [-479, 165], [-477, 161], [-477, 158], [-482, 152], [-494, 152], [-500, 153]]}, "center": {"250-258, T": [-489, 162]}}, {"id": 4142, "name": "Donda 2", "description": "Donda 2 is the 11th Studio album in Ye [Formerly Kanye West's] Discography. The \"Album Cover\" of the album was made by the users at r/GoodAssSub. As time went on, multiple other Kanye album covers were also added surrounding the Donda 2 cover, in order from top to bottom, them being: Nah Nah Nah [Remix], Yeezus, 808s And Heartbreaks, Good Ass Job [Unreleased], Yandhi [Unreleased], Love Everyone [Unreleased], Graduation, Watch The Throne, Kids See Ghosts, and The College Dropout.", "links": {"subreddit": ["GoodAssSub"]}, "path": {"161-199": [[673, 558], [673, 580], [692, 580], [692, 558]]}, "center": {"161-199": [683, 569]}}, {"id": 4143, "name": "Tribute to the Guitarist Bear - CUL", "description": "Tribute for the guitarist bear who appears with each donation of 1000 bits for the CUL Goblin. Best Musician in r/Place.", "links": {"website": ["https://www.twitch.tv/domcasse"], "discord": ["Wc6c7xBxxh"]}, "path": {"169": [[-97, -524], [-76, -523], [-77, -518], [-81, -515], [-79, -510], [-98, -509], [-98, -501], [-105, -501], [-105, -509], [-101, -510], [-101, -512], [-98, -514], [-98, -524]]}, "center": {"169": [-90, -517]}}, -{"id": 4144, "name": "Team Sonic", "description": "A squad of various Sonic the Hedgehog characters featuring Miles \"Tails\" Prower, Knuckles the Echidna, Amy Rose, Blaze the Cat, Marine the Raccoon, and himself (the one on the right). It also features the logo of \"SEGA\". This Art was designed by r/BlazeTheCat community.", "links": {"subreddit": ["BlazeTheCat", "SonicTheHedgehog"]}, "path": {"250-258": [[926, -752], [925, -751], [924, -750], [920, -750], [920, -751], [919, -751], [918, -750], [917, -749], [917, -745], [916, -744], [916, -739], [915, -738], [914, -736], [912, -734], [911, -732], [910, -731], [910, -730], [909, -729], [908, -728], [907, -728], [906, -727], [902, -727], [902, -721], [901, -720], [900, -719], [899, -719], [899, -718], [898, -716], [898, -715], [899, -716], [902, -712], [901, -711], [901, -710], [900, -708], [899, -707], [898, -705], [898, -701], [901, -701], [901, -700], [915, -700], [922, -700], [924, -698], [924, -693], [941, -693], [941, -701], [942, -702], [941, -705], [948, -705], [948, -708], [945, -712], [950, -718], [950, -720], [949, -720], [949, -725], [946, -726], [945, -729], [945, -731], [944, -731], [944, -735], [941, -735], [939, -737], [939, -744], [937, -746], [934, -745], [934, -743], [933, -743], [931, -745], [929, -745], [928, -749], [927, -751], [925, -752]]}, "center": {"250-258": [927, -719]}}, +{"id": 4144, "name": "Team Sonic", "description": "A squad of various Sonic the Hedgehog characters featuring Miles \"Tails\" Prower, Knuckles the Echidna, Amy Rose, Blaze the Cat, Marine the Raccoon, and himself (the one on the right). It also features the logo of \"SEGA\". This Art was designed by r/BlazeTheCat community.", "links": {"subreddit": ["BlazeTheCat", "SonicTheHedgehog"]}, "path": {"250-258, T": [[926, -752], [925, -751], [924, -750], [920, -750], [920, -751], [919, -751], [918, -750], [917, -749], [917, -745], [916, -744], [916, -739], [915, -738], [914, -736], [912, -734], [911, -732], [910, -731], [910, -730], [909, -729], [908, -728], [907, -728], [906, -727], [902, -727], [902, -721], [901, -720], [900, -719], [899, -719], [899, -718], [898, -716], [898, -715], [899, -716], [902, -712], [901, -711], [901, -710], [900, -708], [899, -707], [898, -705], [898, -701], [901, -701], [901, -700], [915, -700], [922, -700], [924, -698], [924, -693], [941, -693], [941, -701], [942, -702], [941, -705], [948, -705], [948, -708], [945, -712], [950, -718], [950, -720], [949, -720], [949, -725], [946, -726], [945, -729], [945, -731], [944, -731], [944, -735], [941, -735], [939, -737], [939, -744], [937, -746], [934, -745], [934, -743], [933, -743], [931, -745], [929, -745], [928, -749], [927, -751], [925, -752]]}, "center": {"250-258, T": [927, -719]}}, {"id": 4972, "name": "Steelorse Logo", "description": "Steelorse is a quebec youtubeur/streamers.", "links": {"website": ["https://www.youtube.com/@steelorse", "https://www.twitch.tv/steelorse"], "discord": ["steelorse"]}, "path": {"26": [[166, 130], [184, 130], [184, 139], [166, 139]], "27": [[139, 130], [184, 130], [184, 133], [184, 139], [139, 139]], "28": [[185, 129], [185, 139], [130, 138], [130, 129]], "41": [[166, 130], [166, 138], [147, 138], [147, 130]], "29-35": [[184, 130], [122, 130], [122, 138], [184, 138]], "36-37": [[130, 130], [130, 138], [184, 138], [184, 130]], "38-40": [[139, 130], [139, 138], [184, 138], [183, 130]]}, "center": {"26": [175, 135], "27": [162, 135], "28": [175, 134], "41": [157, 134], "29-35": [153, 134], "36-37": [157, 134], "38-40": [162, 134]}}, -{"id": 4145, "name": "Cordillera de los Andes", "description": "The Andes Mountains or Andean Mountain Range (Spanish: Cordillera de los Andes; Quechua: Anti) are the longest continental mountain range in the world, forming a continuous highland along the western edge of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Andes", "https://es.wikipedia.org/wiki/Cordillera_de_los_Andes"]}, "path": {"250-258": [[-1200, -864], [-1176, -889], [-1162, -873], [-1153, -880], [-1145, -875], [-1126, -894], [-1109, -877], [-1092, -892], [-1064, -865], [-1046, -881], [-1023, -862], [-998, -888], [-985, -873], [-974, -885], [-960, -874], [-943, -894], [-923, -873], [-898, -895], [-870, -867], [-851, -868], [-805, -904], [-760, -869], [-744, -881], [-708, -848], [-709, -830], [-1131, -831], [-1141, -840], [-1152, -843], [-1184, -850], [-1191, -850], [-1199, -864]]}, "center": {"250-258": [-805, -863]}}, -{"id": 4147, "name": "Patriot Ralsei", "description": "Ralsei, the kind-hearted fictional character created by Toby Fox presented in the game Deltatune, depicted in an Uncle Sam based red, white, and blue outfit.", "links": {"subreddit": ["Deltarune"], "discord": ["deltarune"]}, "path": {"250-258": [[-82, 155], [-82, 159], [-76, 159], [-76, 162], [-74, 168], [-72, 175], [-61, 175], [-59, 164], [-63, 151], [-69, 151], [-74, 164], [-76, 155]]}, "center": {"250-258": [-67, 166]}}, -{"id": 4148, "name": "Carro de bomberos", "description": "Bomberos de Chile corresponde a la institución que agrupa a los Cuerpos de bomberos del país,​ formados íntegramente por voluntarios.​\n\nLos bomberos en Chile celebran su aniversario el 30 de junio,​ en conmemoración a la fundación la primera institución del tipo en Chile, el Cuerpo de Bomberos de Valparaíso, en 1851.", "links": {"website": ["https://www.bomberos.cl/"]}, "path": {"250-258": [[-1320, -774], [-1320, -788], [-1324, -789], [-1325, -794], [-1327, -794], [-1327, -792], [-1343, -792], [-1343, -789], [-1358, -789], [-1362, -787], [-1365, -786], [-1365, -783], [-1366, -773], [-1359, -773], [-1357, -770], [-1354, -770], [-1352, -772], [-1352, -773], [-1336, -773], [-1334, -770], [-1331, -770], [-1328, -773], [-1324, -773], [-1324, -774]]}, "center": {"250-258": [-1332, -782]}}, -{"id": 4149, "name": "Feñín", "description": "ESPAÑOL CHILENO\nFeñín (diminutivo de Fernando) fue un hombre de nieve creado (y destruído) el 12 de Junio del 2017, debido a las bajas temperaturas de ese tiempo, las cuales, eventualmente conllevaron a una nevazón. Estaba localizado en uno de los Institutos Profesionales de Santiago de Chile (no diré cual, para no hacerle promoción). El es un personaje que es recordado por un grupo de ex compañeros y amigos (alias \"Los Maravillosos\") de differentes sectores de la Región Metropolitana.\n\nMás que un hombre de nieve, Feñín se volvió un símbolo de amistad larga y duradera entre el grupo de estudiantes, ya las nevazones, así como las amistades largas, son raras. Especialmente con la distancia dónde vive cada uno de los cabros. \n\nENGLISH \nFeñín (diminutive of the name Fernando) was an snowman that was made (and destroyed) on June 12th, 2017, due to the cold weather of that time, which, eventually lead to a snowstorm. It was located on one of the Professional Institutes from Santiago, Chile. It is a character that is remembered by a group of ex students and friends from different locations between the Metropolitan Region.\n\nMore than just an snowman, Feñín became a symbol of long lasting friendship between a group of students, due to the fact that snowstorms, just as long lasting friendships, are rare. Specially with the distance where each of them lives.", "links": {"website": ["https://ibb.co/vDR7fzQ"]}, "path": {"250-258": [[-761, -841], [-760, -841], [-757, -841], [-755, -836], [-752, -838], [-756, -832], [-760, -831], [-766, -838], [-764, -840], [-761, -837], [-761, -841], [-762, -842]]}, "center": {"250-258": [-758, -835]}}, -{"id": 4150, "name": "Bocchi Blob", "description": "A small, cartoonized version of the introverted Guitarist, Gotou Hitori who is the main character of the Slice of life music anime and manga, \"Bocchi the Rock!\" (She's melting because there's too many people around her!)", "links": {"website": ["https://en.wikipedia.org/wiki/Bocchi_the_Rock!"], "subreddit": ["BocchiTheRock"], "discord": ["bocchi"]}, "path": {"250-258": [[1191, -785], [1178, -785], [1179, -772], [1185, -778], [1187, -779], [1189, -781], [1191, -781]]}, "center": {"250-258": [1182, -781]}}, -{"id": 4151, "name": "SHANSI SHIP", "description": "Shansi is a ship between streamers Shadoune666 and AnsiChan, this ship was created by the novelers of their communities.", "links": {"website": ["https://www.twitch.tv/Shadoune666", "https://www.twitch.tv/AnsiChan"]}, "path": {"246-258": [[79, 0], [95, 0], [95, 7], [79, 7]]}, "center": {"246-258": [87, 4]}}, -{"id": 4152, "name": "Fénix", "description": "This image shows \"Fénix\", Reborn's cat, with his beautiful eyes and ears, chewing and scratching his owner's chair not even caring if Reborn is on stream", "links": {"website": ["https://twitter.com/DonReborn2", "https://www.twitch.tv/reborn_live"]}, "path": {"250-258": [[554, -909], [554, -911], [589, -910], [590, -881], [554, -880]]}, "center": {"250-258": [570, -895]}}, -{"id": 4153, "name": "Sakamoto", "description": "A character from the gag manga and anime, Nichijou. He is a black cat that was found by Nano and Hakase. Sakamoto is able to speak while wearing a red scarf made by Hakase.", "links": {"subreddit": ["Nichijou"]}, "path": {"190-258": [[248, -863], [250, -860], [252, -863], [256, -855], [256, -850], [258, -852], [259, -851], [255, -847], [245, -847], [247, -851], [247, -853], [245, -856]]}, "center": {"190-258": [251, -852]}}, +{"id": 4145, "name": "Cordillera de los Andes", "description": "The Andes Mountains or Andean Mountain Range (Spanish: Cordillera de los Andes; Quechua: Anti) are the longest continental mountain range in the world, forming a continuous highland along the western edge of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Andes", "https://es.wikipedia.org/wiki/Cordillera_de_los_Andes"]}, "path": {"250-258, T": [[-1200, -864], [-1176, -889], [-1162, -873], [-1153, -880], [-1145, -875], [-1126, -894], [-1109, -877], [-1092, -892], [-1064, -865], [-1046, -881], [-1023, -862], [-998, -888], [-985, -873], [-974, -885], [-960, -874], [-943, -894], [-923, -873], [-898, -895], [-870, -867], [-851, -868], [-805, -904], [-760, -869], [-744, -881], [-708, -848], [-709, -830], [-1131, -831], [-1141, -840], [-1152, -843], [-1184, -850], [-1191, -850], [-1199, -864]]}, "center": {"250-258, T": [-805, -863]}}, +{"id": 4147, "name": "Patriot Ralsei", "description": "Ralsei, the kind-hearted fictional character created by Toby Fox presented in the game Deltatune, depicted in an Uncle Sam based red, white, and blue outfit.", "links": {"subreddit": ["Deltarune"], "discord": ["deltarune"]}, "path": {"250-258, T": [[-82, 155], [-82, 159], [-76, 159], [-76, 162], [-74, 168], [-72, 175], [-61, 175], [-59, 164], [-63, 151], [-69, 151], [-74, 164], [-76, 155]]}, "center": {"250-258, T": [-67, 166]}}, +{"id": 4148, "name": "Carro de bomberos", "description": "Bomberos de Chile corresponde a la institución que agrupa a los Cuerpos de bomberos del país,​ formados íntegramente por voluntarios.​\n\nLos bomberos en Chile celebran su aniversario el 30 de junio,​ en conmemoración a la fundación la primera institución del tipo en Chile, el Cuerpo de Bomberos de Valparaíso, en 1851.", "links": {"website": ["https://www.bomberos.cl/"]}, "path": {"250-258, T": [[-1320, -774], [-1320, -788], [-1324, -789], [-1325, -794], [-1327, -794], [-1327, -792], [-1343, -792], [-1343, -789], [-1358, -789], [-1362, -787], [-1365, -786], [-1365, -783], [-1366, -773], [-1359, -773], [-1357, -770], [-1354, -770], [-1352, -772], [-1352, -773], [-1336, -773], [-1334, -770], [-1331, -770], [-1328, -773], [-1324, -773], [-1324, -774]]}, "center": {"250-258, T": [-1332, -782]}}, +{"id": 4149, "name": "Feñín", "description": "ESPAÑOL CHILENO\nFeñín (diminutivo de Fernando) fue un hombre de nieve creado (y destruído) el 12 de Junio del 2017, debido a las bajas temperaturas de ese tiempo, las cuales, eventualmente conllevaron a una nevazón. Estaba localizado en uno de los Institutos Profesionales de Santiago de Chile (no diré cual, para no hacerle promoción). El es un personaje que es recordado por un grupo de ex compañeros y amigos (alias \"Los Maravillosos\") de differentes sectores de la Región Metropolitana.\n\nMás que un hombre de nieve, Feñín se volvió un símbolo de amistad larga y duradera entre el grupo de estudiantes, ya las nevazones, así como las amistades largas, son raras. Especialmente con la distancia dónde vive cada uno de los cabros. \n\nENGLISH \nFeñín (diminutive of the name Fernando) was an snowman that was made (and destroyed) on June 12th, 2017, due to the cold weather of that time, which, eventually lead to a snowstorm. It was located on one of the Professional Institutes from Santiago, Chile. It is a character that is remembered by a group of ex students and friends from different locations between the Metropolitan Region.\n\nMore than just an snowman, Feñín became a symbol of long lasting friendship between a group of students, due to the fact that snowstorms, just as long lasting friendships, are rare. Specially with the distance where each of them lives.", "links": {"website": ["https://ibb.co/vDR7fzQ"]}, "path": {"250-258, T": [[-761, -841], [-760, -841], [-757, -841], [-755, -836], [-752, -838], [-756, -832], [-760, -831], [-766, -838], [-764, -840], [-761, -837], [-761, -841], [-762, -842]]}, "center": {"250-258, T": [-758, -835]}}, +{"id": 4150, "name": "Bocchi Blob", "description": "A small, cartoonized version of the introverted Guitarist, Gotou Hitori who is the main character of the Slice of life music anime and manga, \"Bocchi the Rock!\" (She's melting because there's too many people around her!)", "links": {"website": ["https://en.wikipedia.org/wiki/Bocchi_the_Rock!"], "subreddit": ["BocchiTheRock"], "discord": ["bocchi"]}, "path": {"250-258, T": [[1191, -785], [1178, -785], [1179, -772], [1185, -778], [1187, -779], [1189, -781], [1191, -781]]}, "center": {"250-258, T": [1182, -781]}}, +{"id": 4151, "name": "SHANSI SHIP", "description": "Shansi is a ship between streamers Shadoune666 and AnsiChan, this ship was created by the novelers of their communities.", "links": {"website": ["https://www.twitch.tv/Shadoune666", "https://www.twitch.tv/AnsiChan"]}, "path": {"246-258, T": [[79, 0], [95, 0], [95, 7], [79, 7]]}, "center": {"246-258, T": [87, 4]}}, +{"id": 4152, "name": "Fénix", "description": "This image shows \"Fénix\", Reborn's cat, with his beautiful eyes and ears, chewing and scratching his owner's chair not even caring if Reborn is on stream", "links": {"website": ["https://twitter.com/DonReborn2", "https://www.twitch.tv/reborn_live"]}, "path": {"250-258, T": [[554, -909], [554, -911], [589, -910], [590, -881], [554, -880]]}, "center": {"250-258, T": [570, -895]}}, +{"id": 4153, "name": "Sakamoto", "description": "A character from the gag manga and anime, Nichijou. He is a black cat that was found by Nano and Hakase. Sakamoto is able to speak while wearing a red scarf made by Hakase.", "links": {"subreddit": ["Nichijou"]}, "path": {"190-258, T": [[248, -863], [250, -860], [252, -863], [256, -855], [256, -850], [258, -852], [259, -851], [255, -847], [245, -847], [247, -851], [247, -853], [245, -856]]}, "center": {"190-258, T": [251, -852]}}, {"id": 4154, "name": "We the People", "description": "The first three words of the U.S. Declaration of Independence.", "links": {}, "path": {"116-119": [[-184, 142], [-182, 155], [-89, 157], [-91, 144], [-140, 141]]}, "center": {"116-119": [-120, 149]}}, -{"id": 4155, "name": "NCT", "description": "NCT (Neo Culture Technology) is a 20-member K-Pop boy group under SM Entertainment. They have three main units consisting of NCT 127, NCT Dream, and NCT U. Some of their notable works include 'Kick It', 'Cherry Bomb', and 'Regular'.", "links": {"website": ["https://www.smtown.com/artist/musician/10024"], "subreddit": ["nct"], "discord": ["nct"]}, "path": {"250-258": [[404, -850], [413, -850], [413, -851], [416, -851], [416, -850], [418, -850], [418, -848], [418, -844], [403, -844], [403, -850]]}, "center": {"250-258": [415, -847]}}, -{"id": 4156, "name": "Itemlabel Peepy", "description": "After committing a dangerous and disrespectful crime, Peepy is out on bail and ready to come to your house.\n\nThank you r/Colombia for your alliance and friendship <3", "links": {"website": ["https://itemlabel.com/"], "subreddit": ["itemLabel"], "discord": ["itemlabel"]}, "path": {"206-258": [[-692, 327], [-690, 325], [-689, 324], [-688, 324], [-687, 322], [-686, 321], [-686, 320], [-687, 319], [-688, 319], [-689, 320], [-691, 320], [-692, 321], [-693, 320], [-694, 319], [-695, 320], [-697, 320], [-698, 319], [-699, 320], [-700, 321], [-700, 325], [-699, 326], [-699, 327]]}, "center": {"206-258": [-694, 324]}}, +{"id": 4155, "name": "NCT", "description": "NCT (Neo Culture Technology) is a 20-member K-Pop boy group under SM Entertainment. They have three main units consisting of NCT 127, NCT Dream, and NCT U. Some of their notable works include 'Kick It', 'Cherry Bomb', and 'Regular'.", "links": {"website": ["https://www.smtown.com/artist/musician/10024"], "subreddit": ["nct"], "discord": ["nct"]}, "path": {"250-258, T": [[404, -850], [413, -850], [413, -851], [416, -851], [416, -850], [418, -850], [418, -848], [418, -844], [403, -844], [403, -850]]}, "center": {"250-258, T": [415, -847]}}, +{"id": 4156, "name": "Itemlabel Peepy", "description": "After committing a dangerous and disrespectful crime, Peepy is out on bail and ready to come to your house.\n\nThank you r/Colombia for your alliance and friendship <3", "links": {"website": ["https://itemlabel.com/"], "subreddit": ["itemLabel"], "discord": ["itemlabel"]}, "path": {"206-258, T": [[-692, 327], [-690, 325], [-689, 324], [-688, 324], [-687, 322], [-686, 321], [-686, 320], [-687, 319], [-688, 319], [-689, 320], [-691, 320], [-692, 321], [-693, 320], [-694, 319], [-695, 320], [-697, 320], [-698, 319], [-699, 320], [-700, 321], [-700, 325], [-699, 326], [-699, 327]]}, "center": {"206-258, T": [-694, 324]}}, {"id": 4157, "name": "Blue Spirit Mask - Location 2", "description": "The Blue Spirit is the alter-ego of Prince Zuko of the Fire Nation, who is one of the main antagonists in the TV show Avatar: The Last Airbender. He uses the Blue Spirit persona to carry out secret missions and to hide his identity.", "links": {"subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["5FSXqzJkQ5"]}, "path": {"211-215": [[1416, 685], [1430, 685], [1430, 702], [1426, 702], [1426, 703], [1425, 703], [1425, 704], [1420, 704], [1420, 703], [1419, 703], [1419, 702], [1416, 702]]}, "center": {"211-215": [1423, 695]}}, -{"id": 4158, "name": "Stonehenge", "description": "Stonehenge is an ancient and iconic prehistoric monument located on Salisbury Plain in Wiltshire, England. Consisting of a circular arrangement of large standing stones, some reaching up to 30 feet tall and weighing several tons, Stonehenge is believed to have been constructed in multiple phases between 3000 BCE and 2000 BCE. \n\nIts original purpose remains a subject of speculation and fascination for historians, archaeologists, and tourists alike, with theories ranging from astronomical observatory to religious site or ceremonial center. \n\nAs one of the most significant and enigmatic megalithic structures in the world, Stonehenge continues to captivate visitors and researchers, offering insight into the ancient civilizations that once inhabited the British Isles.", "links": {"website": ["https://www.stonehenge.co.uk/"]}, "path": {"250-258": [[-319, -322], [-285, -305], [-319, -306]]}, "center": {"250-258": [-313, -312]}}, -{"id": 4159, "name": "Riolu and Lucario", "description": "Riolu and Lucario are two Fighting and Fighting/Steel type Pokémon introduced in the fourth generation. They have gained a significant level of popularity over the years primarily in part to the latter's appearance in media such as the 2005 film \"Lucario and the Mystery of Mew\" and the Super Smash Bros. franchise. Members of the subreddit r/lucario who are dedicated fans of the Pokémon species set aside a spot within r/place for two sprites of each respective evolutionary stage to show their love for the popular evolutionary line.", "links": {"subreddit": ["lucario"]}, "path": {"250-258": [[-1312, 356], [-1283, 357], [-1283, 377], [-1313, 377], [-1318, 363]]}, "center": {"250-258": [-1299, 367]}}, -{"id": 4160, "name": "Dominican baseball player", "description": "Baseball is the official sport of the Dominican Republic. Despite this island nation's tiny size relative to the United States, Dominicans account for more than ten percent of Major League players in American Major League Baseball (MLB).[1] Some famous figures include Sammy Sosa, Tatis Jr., Robinson Canó, Alfonso Soriano, David Ortiz, Pedro Martinez, Vladimir Guerrero and Juan Marichal.[2]\n\nSources:\n1. De Los Santos, A. for visitdominicanrepublic.com\n2. Omuya, K. for sportsbrief.com", "links": {"subreddit": ["Dominican"], "discord": ["zDZMdUdS"]}, "path": {"206-258": [[-326, -762], [-320, -775], [-320, -789], [-314, -790], [-306, -780], [-312, -775], [-306, -761], [-317, -761]]}, "center": {"206-258": [-316, -768]}}, -{"id": 4161, "name": "The Red Arrows", "description": "The Red Arrows, officially known as the Royal Air Force Aerobatic Team, is the aerobatics display team of the Royal Air Force (RAF) based at RAF Waddington.", "links": {"website": ["https://www.raf.mod.uk/display-teams/red-arrows/"]}, "path": {"250-258": [[-208, -310], [-196, -320], [-189, -326], [-178, -326], [-177, -287]]}, "center": {"250-258": [-189, -311]}}, -{"id": 4162, "name": "Stray cat (Jojo's Part 4)", "description": "A side character of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable. It is also a flower-cat hybrid, and it is its own stand.\n\nStand: Stray cat\n\n\"Where am I, mrowr? What am I doing here? Meow, meow.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258": [[-1057, -116], [-1058, -115], [-1058, -112], [-1057, -111], [-1055, -111], [-1054, -112], [-1054, -115], [-1055, -116]]}, "center": {"250-258": [-1056, -113]}}, -{"id": 4163, "name": "tripleS", "description": "tripleS is a South Korean girl group formed by MODHAUS. the group is currently being introduced to the public through a pre-debut project that began in May 2022, where each of the 24 members are revealed periodically.\n\neach S, or member of the group, will be performing as a solo, as various subunits (DIMENSIONs), or as a team. each DIMENSION's composition is determined through Gravity, or votes from fans.\n\nMODHAUS has created a fan-participatory governance system using blockchain technology in order to bring fans into the decision-making process. fans are given the opportunity to participate and communicate with the group by deciding the DIMENSIONs and the content through photocards called objekts and a currency called COMO.", "links": {"website": ["https://triplescosmos.com"], "subreddit": ["triples"], "discord": ["triplescosmos"]}, "path": {"250-258": [[-1424, -351], [-1418, -351], [-1418, -345], [-1424, -345]]}, "center": {"250-258": [-1421, -348]}}, -{"id": 4164, "name": "Harmony", "description": "The character Melody from the Splatoon series of video games. She is an in-universe musician as well as the de facto manager of the Hotlantis store in Splatoon 3.", "links": {"website": ["https://splatoon.nintendo.com/"]}, "path": {"215-258": [[-1166, 373], [-1171, 373], [-1171, 374], [-1173, 374], [-1173, 375], [-1174, 375], [-1174, 376], [-1175, 376], [-1175, 378], [-1179, 378], [-1179, 382], [-1180, 382], [-1180, 384], [-1176, 384], [-1176, 388], [-1175, 388], [-1175, 390], [-1176, 390], [-1176, 392], [-1177, 392], [-1177, 393], [-1178, 393], [-1178, 394], [-1179, 394], [-1179, 395], [-1180, 395], [-1180, 397], [-1179, 397], [-1179, 400], [-1178, 400], [-1178, 401], [-1174, 401], [-1174, 402], [-1172, 402], [-1172, 401], [-1170, 401], [-1170, 405], [-1171, 405], [-1171, 409], [-1170, 409], [-1170, 411], [-1169, 411], [-1169, 412], [-1165, 412], [-1165, 411], [-1163, 411], [-1163, 410], [-1162, 410], [-1162, 407], [-1163, 407], [-1163, 404], [-1164, 404], [-1164, 399], [-1163, 399], [-1163, 398], [-1162, 398], [-1161, 398], [-1161, 396], [-1160, 396], [-1160, 394], [-1161, 394], [-1161, 393], [-1162, 393], [-1162, 390], [-1161, 390], [-1161, 389], [-1161, 388], [-1160, 388], [-1160, 386], [-1160, 385], [-1161, 384], [-1161, 376], [-1161, 374], [-1166, 374]]}, "center": {"215-258": [-1168, 384]}}, +{"id": 4158, "name": "Stonehenge", "description": "Stonehenge is an ancient and iconic prehistoric monument located on Salisbury Plain in Wiltshire, England. Consisting of a circular arrangement of large standing stones, some reaching up to 30 feet tall and weighing several tons, Stonehenge is believed to have been constructed in multiple phases between 3000 BCE and 2000 BCE. \n\nIts original purpose remains a subject of speculation and fascination for historians, archaeologists, and tourists alike, with theories ranging from astronomical observatory to religious site or ceremonial center. \n\nAs one of the most significant and enigmatic megalithic structures in the world, Stonehenge continues to captivate visitors and researchers, offering insight into the ancient civilizations that once inhabited the British Isles.", "links": {"website": ["https://www.stonehenge.co.uk/"]}, "path": {"250-258, T": [[-319, -322], [-285, -305], [-319, -306]]}, "center": {"250-258, T": [-313, -312]}}, +{"id": 4159, "name": "Riolu and Lucario", "description": "Riolu and Lucario are two Fighting and Fighting/Steel type Pokémon introduced in the fourth generation. They have gained a significant level of popularity over the years primarily in part to the latter's appearance in media such as the 2005 film \"Lucario and the Mystery of Mew\" and the Super Smash Bros. franchise. Members of the subreddit r/lucario who are dedicated fans of the Pokémon species set aside a spot within r/place for two sprites of each respective evolutionary stage to show their love for the popular evolutionary line.", "links": {"subreddit": ["lucario"]}, "path": {"250-258, T": [[-1312, 356], [-1283, 357], [-1283, 377], [-1313, 377], [-1318, 363]]}, "center": {"250-258, T": [-1299, 367]}}, +{"id": 4160, "name": "Dominican baseball player", "description": "Baseball is the official sport of the Dominican Republic. Despite this island nation's tiny size relative to the United States, Dominicans account for more than ten percent of Major League players in American Major League Baseball (MLB).[1] Some famous figures include Sammy Sosa, Tatis Jr., Robinson Canó, Alfonso Soriano, David Ortiz, Pedro Martinez, Vladimir Guerrero and Juan Marichal.[2]\n\nSources:\n1. De Los Santos, A. for visitdominicanrepublic.com\n2. Omuya, K. for sportsbrief.com", "links": {"subreddit": ["Dominican"], "discord": ["zDZMdUdS"]}, "path": {"206-258, T": [[-326, -762], [-320, -775], [-320, -789], [-314, -790], [-306, -780], [-312, -775], [-306, -761], [-317, -761]]}, "center": {"206-258, T": [-316, -768]}}, +{"id": 4161, "name": "The Red Arrows", "description": "The Red Arrows, officially known as the Royal Air Force Aerobatic Team, is the aerobatics display team of the Royal Air Force (RAF) based at RAF Waddington.", "links": {"website": ["https://www.raf.mod.uk/display-teams/red-arrows/"]}, "path": {"250-258, T": [[-208, -310], [-196, -320], [-189, -326], [-178, -326], [-177, -287]]}, "center": {"250-258, T": [-189, -311]}}, +{"id": 4162, "name": "Stray cat (Jojo's Part 4)", "description": "A side character of Jojo's Bizarre Adventure Part 4: Diamond is Unbreakable. It is also a flower-cat hybrid, and it is its own stand.\n\nStand: Stray cat\n\n\"Where am I, mrowr? What am I doing here? Meow, meow.\"", "links": {"subreddit": ["JoJosBizarrePlace"], "discord": ["4HEn7YXMSZ"]}, "path": {"250-258, T": [[-1057, -116], [-1058, -115], [-1058, -112], [-1057, -111], [-1055, -111], [-1054, -112], [-1054, -115], [-1055, -116]]}, "center": {"250-258, T": [-1056, -113]}}, +{"id": 4163, "name": "tripleS", "description": "tripleS is a South Korean girl group formed by MODHAUS. the group is currently being introduced to the public through a pre-debut project that began in May 2022, where each of the 24 members are revealed periodically.\n\neach S, or member of the group, will be performing as a solo, as various subunits (DIMENSIONs), or as a team. each DIMENSION's composition is determined through Gravity, or votes from fans.\n\nMODHAUS has created a fan-participatory governance system using blockchain technology in order to bring fans into the decision-making process. fans are given the opportunity to participate and communicate with the group by deciding the DIMENSIONs and the content through photocards called objekts and a currency called COMO.", "links": {"website": ["https://triplescosmos.com"], "subreddit": ["triples"], "discord": ["triplescosmos"]}, "path": {"250-258, T": [[-1424, -351], [-1418, -351], [-1418, -345], [-1424, -345]]}, "center": {"250-258, T": [-1421, -348]}}, +{"id": 4164, "name": "Harmony", "description": "The character Melody from the Splatoon series of video games. She is an in-universe musician as well as the de facto manager of the Hotlantis store in Splatoon 3.", "links": {"website": ["https://splatoon.nintendo.com/"]}, "path": {"215-258, T": [[-1166, 373], [-1171, 373], [-1171, 374], [-1173, 374], [-1173, 375], [-1174, 375], [-1174, 376], [-1175, 376], [-1175, 378], [-1179, 378], [-1179, 382], [-1180, 382], [-1180, 384], [-1176, 384], [-1176, 388], [-1175, 388], [-1175, 390], [-1176, 390], [-1176, 392], [-1177, 392], [-1177, 393], [-1178, 393], [-1178, 394], [-1179, 394], [-1179, 395], [-1180, 395], [-1180, 397], [-1179, 397], [-1179, 400], [-1178, 400], [-1178, 401], [-1174, 401], [-1174, 402], [-1172, 402], [-1172, 401], [-1170, 401], [-1170, 405], [-1171, 405], [-1171, 409], [-1170, 409], [-1170, 411], [-1169, 411], [-1169, 412], [-1165, 412], [-1165, 411], [-1163, 411], [-1163, 410], [-1162, 410], [-1162, 407], [-1163, 407], [-1163, 404], [-1164, 404], [-1164, 399], [-1163, 399], [-1163, 398], [-1162, 398], [-1161, 398], [-1161, 396], [-1160, 396], [-1160, 394], [-1161, 394], [-1161, 393], [-1162, 393], [-1162, 390], [-1161, 390], [-1161, 389], [-1161, 388], [-1160, 388], [-1160, 386], [-1160, 385], [-1161, 384], [-1161, 376], [-1161, 374], [-1166, 374]]}, "center": {"215-258, T": [-1168, 384]}}, {"id": 4165, "name": "Billie (Billie Bust Up!)", "description": "Billie of billie bust up by: Cototo81", "links": {}, "path": {"227": [[1226, -768], [1225, -768], [1223, -768], [1214, -768], [1214, -762], [1215, -761], [1216, -760], [1225, -760], [1226, -761], [1227, -762]]}, "center": {"227": [1221, -764]}}, -{"id": 4166, "name": "BadBoyHalo", "description": "Darryl Noveschosch, also known as BadBoyHalo or simply BBH, is a Minecraft YouTuber and streamer known mainly for his content related to Minecraft servers, competitions, trolls, and collaborations with other YouTubers. He is also associated with fellow streamer and YouTuber Skeppy, who makes similar content. In 2023, he was announced as one of the participants in the QSMP.", "links": {"website": ["https://badboyhalo.com/", "https://youtube.com/@thesaintsofgames"], "subreddit": ["badboyhalo"], "discord": ["badboyhalo"]}, "path": {"250-258": [[440, 415], [451, 415], [451, 425], [440, 425]]}, "center": {"250-258": [446, 420]}}, -{"id": 4167, "name": "Great Clock of Westminster (a.k.a Big Ben or the Elizabeth Tower)", "description": "The Great Clock of Westminster, commonly known as Big Ben, is an iconic and historic timekeeping masterpiece located at the north end of the Palace of Westminster in London, England. \n\nCompleted in 1859, the clock's impressive four-faced exterior features a diameter of over 23 feet, while its colossal hour bell, also called Big Ben, weighs around 13.5 tons. \n\nThe clock's intricate mechanism, designed by Edmund Beckett Denison and George Airy, operates with remarkable accuracy and has become a symbol of British engineering and punctuality. \n\nIt chimes melodiously every quarter hour, and its deep resonant bongs, on the hour, are widely recognized and beloved around the world, making the Great Clock of Westminster an enduring emblem of London's cultural heritage and architectural history.", "links": {"website": ["https://www.parliament.uk/about/living-heritage/building/palace/big-ben/"]}, "path": {"250-258": [[-253, -267], [-244, -267], [-243, -301], [-244, -302], [-244, -306], [-245, -307], [-245, -313], [-246, -313], [-246, -316], [-247, -316], [-248, -329], [-249, -329], [-249, -316], [-251, -316], [-251, -314], [-252, -313], [-252, -308], [-253, -308], [-253, -303], [-254, -301]]}, "center": {"250-258": [-248, -290]}}, -{"id": 4168, "name": "Aang's Airbender staff", "description": "The Airbender staff from Aang, the protagonist in the TV show Avatar: The Last Airbender.\nAn airbender staff is a wooden staff used primarily by airbenders to augment their bending. These versatile instruments were a major part of Air Nomad culture and used in the execution of several complex airbending techniques. Staffs were constructed to unfold into fan-like gliders, which enabled airbenders to fly while manipulating the air currents around them.\nLetters ATLA were added as abbreviation for the TV show and corresponding subreddits.", "links": {"subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["5FSXqzJkQ5"]}, "path": {"246-258": [[-1460, 16], [-1460, 18], [-1446, 18], [-1446, 23], [-1447, 23], [-1447, 25], [-1448, 25], [-1448, 28], [-1451, 28], [-1452, 28], [-1452, 29], [-1453, 29], [-1453, 30], [-1454, 30], [-1454, 34], [-1456, 34], [-1456, 35], [-1460, 35], [-1460, 37], [-1456, 40], [-1454, 40], [-1454, 43], [-1455, 43], [-1455, 44], [-1456, 44], [-1456, 45], [-1465, 45], [-1465, 44], [-1466, 44], [-1467, 44], [-1467, 43], [-1468, 43], [-1468, 42], [-1469, 42], [-1469, 41], [-1469, 40], [-1467, 40], [-1467, 39], [-1464, 39], [-1464, 37], [-1464, 38], [-1463, 38], [-1463, 37], [-1462, 37], [-1462, 35], [-1466, 35], [-1466, 34], [-1469, 34], [-1469, 32], [-1469, 33], [-1470, 33], [-1470, 32], [-1471, 32], [-1471, 31], [-1472, 31], [-1472, 30], [-1473, 30], [-1473, 29], [-1474, 29], [-1474, 25], [-1475, 25], [-1475, 24], [-1476, 24], [-1476, 18], [-1462, 18], [-1462, 16]]}, "center": {"246-258": [-1462, 27]}}, -{"id": 4169, "name": "Mass Rapid Transit", "description": "Artwork of a train of the Mass Rapid Transit (MRT) system exiting an underground tunnel. The MRT ferries millions of Singaporeans daily on 231 km of rail across 140+ stations. This artwork was attacked by some members of r/phish for entering their territory, but was successfully defended.", "links": {"website": ["https://en.wikipedia.org/wiki/Mass_Rapid_Transit_(Singapore)", "https://www.lta.gov.sg/content/ltagov/en/getting_around/public_transport/rail_network.html"], "subreddit": ["singapore", "placeSG"]}, "path": {"137-258": [[332, -13], [332, -12], [331, -12], [331, -9], [352, -9], [352, -10], [358, -10], [358, -11], [361, -11], [361, -13]]}, "center": {"137-258": [345, -11]}}, -{"id": 4170, "name": "Itemlabel", "description": "itemLabel is a revenge-based fashion and plush company.", "links": {"website": ["https://itemlabel.com/"], "subreddit": ["itemLabel"], "discord": ["itemlabel"]}, "path": {"218-258": [[638, 850], [602, 850], [601, 879], [614, 879], [616, 876], [616, 874], [613, 874], [612, 873], [613, 871], [611, 870], [613, 869], [613, 867], [612, 867], [611, 866], [612, 865], [612, 864], [613, 864], [612, 857], [618, 857], [638, 857]]}, "center": {"218-258": [607, 861]}}, -{"id": 4171, "name": "Asriel Dreemurr", "description": "A major character in Undertale, while also mentioned in Deltarune. With a tragic story and cute appearance, he is one of the most loved characters in the game.\n\nTwo Asriel's appeared in this year's r/place. This one was mainly made by the Asriel Discord.", "links": {"website": ["https://undertale.fandom.com/wiki/Asriel_Dreemurr", "https://deltarune.fandom.com/wiki/Asriel"], "subreddit": ["AsrielUndertale"], "discord": ["Asriel"]}, "path": {"189-258": [[-1217, -510], [-1197, -510], [-1197, -491], [-1217, -491]]}, "center": {"189-258": [-1207, -500]}}, -{"id": 4172, "name": "Jaiden Animations", "description": "Jaiden Dittfach, known for her online name Jaiden Animations, is a YouTuber, streamer and animator. Her videos revolve around animated story-times and, most recently, video game stories. She is known for her love of Pokémon and birds. In 2023, she started participating in the QSMP, along with other creators of similar content.", "links": {"website": ["https://jaidenanimations.com/", "https://youtube.com/@jaidenanimations"], "subreddit": ["jaidenanimations"], "discord": ["wcrTfK8"]}, "path": {"250-258": [[428, 415], [428, 425], [439, 425], [439, 415]]}, "center": {"250-258": [434, 420]}}, -{"id": 4173, "name": "Mini Cirno and Daiyousei", "description": "Mini pixel art of the fairies Cirno (Chiruno) and Daiyousei from the Touhou Project. This specific art style is the same as the mini Cirno from the 2022 place art that gained a small cult following during the even.", "links": {"subreddit": ["touhou"]}, "path": {"86-258": [[151, 139], [151, 147], [167, 147], [167, 139]]}, "center": {"86-258": [159, 143]}}, -{"id": 4174, "name": "Yuzaki Tsukasa of Tonikaku Kawaii", "description": "Yuzaki Tsukasa of the anime and manga series Tonikaku Kawaii, She is adorned with a Scuderia Ferrari hat.", "links": {"website": ["https://tonikawa.com/"], "subreddit": ["tonikakucawaii"], "discord": ["tonikawa", "yh8PqcB"]}, "path": {"208-258": [[73, 204], [82, 204], [82, 205], [83, 205], [83, 209], [82, 209], [82, 222], [82, 223], [83, 223], [83, 227], [82, 227], [82, 233], [81, 233], [81, 234], [80, 234], [80, 233], [79, 233], [79, 231], [76, 231], [76, 233], [75, 233], [75, 234], [74, 234], [74, 233], [73, 233], [73, 227], [73, 226], [72, 226], [72, 225], [71, 225], [71, 222], [70, 222], [70, 221], [66, 221], [66, 220], [65, 220], [65, 218], [66, 218], [66, 217], [67, 217], [67, 218], [70, 218], [70, 209], [68, 209], [68, 208], [67, 208], [68, 207], [70, 207], [71, 207], [71, 206], [72, 206], [72, 205]]}, "center": {"208-258": [76, 217]}}, -{"id": 4175, "name": "Hawker Hurricane", "description": "The Hawker Hurricane was a British single-seat fighter aircraft that played a vital role in the Battle of Britain during World War II. \n\nDesigned and built by Hawker Aircraft Ltd., the Hurricane featured a sturdy fabric-covered metal structure and was powered by a Rolls-Royce Merlin engine, providing it with impressive performance and maneuverability. \n\nArmed with eight .303 inch (7.7 mm) Browning machine guns, the Hurricane became a formidable opponent for the German Luftwaffe during the intense air campaign of 1940. \n\nAlongside the Supermarine Spitfire, the Hurricane formed the backbone of the Royal Air Force's defense, engaging in relentless dogfights to protect Britain from enemy air attacks. Its versatility, reliability, and significant success rate in shooting down enemy aircraft made the Hawker Hurricane an essential asset in securing victory and repelling the Luftwaffe's attempt to gain air superiority over the UK during the critical Battle of Britain.", "links": {"website": ["https://en.wikipedia.org/wiki/Hawker_Hurricane"]}, "path": {"250-258": [[-221, -320], [-220, -319], [-217, -319], [-217, -322], [-214, -326], [-213, -326], [-211, -323], [-210, -320], [-209, -319], [-206, -319], [-206, -318], [-205, -318], [-204, -319], [-203, -320], [-202, -319], [-201, -319], [-201, -315], [-203, -313], [-205, -315], [-206, -315], [-209, -314], [-210, -313], [-210, -312], [-211, -311], [-211, -309], [-213, -307], [-214, -307], [-215, -308], [-216, -310], [-217, -311], [-216, -312], [-216, -313], [-217, -314], [-220, -314], [-220, -313], [-220, -312], [-221, -312], [-222, -312], [-222, -320]]}, "center": {"250-258": [-213, -316]}}, -{"id": 4176, "name": "Eurostar", "description": "The Eurostar is a high-speed train service that connects London in the United Kingdom with Paris and Brussels in Europe through the Channel Tunnel. \n\nOperated by Eurostar International Limited, the service revolutionized cross-channel travel when it was launched in 1994, providing a faster and more efficient alternative to air travel between these major European cities. \n\nThe Eurostar trains are known for their speed and comfort, reaching speeds of up to 186 mph (300 km/h) on dedicated high-speed rail lines. The service has expanded over the years, offering connections to other cities, such as Amsterdam, Rotterdam, Lyon, and Marseille, further enhancing the convenience and accessibility of train travel across Europe.", "links": {"website": ["http://www.eurostar.com"]}, "path": {"250-258": [[-319, -269], [-282, -269], [-277, -264], [-276, -261], [-279, -261], [-279, -260], [-319, -260]]}, "center": {"250-258": [-297, -264]}}, -{"id": 4177, "name": "Reborn Live", "description": "Reborn Live is a Spanish speaking streamer on Twitch, known for his GTA roleplay character \"Jack Conway\". Well-known variety content-creator, currently broadcasting games such as Valorant, Rust, Minecraft, and eventually some podcast sections. This image shows his channel logo and a very important date for his community: \"April 19th\", his first on-live stream on Twitch, back in 2020", "links": {"website": ["https://www.twitch.tv/reborn_live", "https://twitter.com/DonReborn2"]}, "path": {"250-258": [[592, -911], [639, -911], [640, -864], [610, -863], [607, -879], [592, -880]]}, "center": {"250-258": [621, -892]}}, -{"id": 4178, "name": "Green Lantern Corps Symbol", "description": "The Symbol Of The Green Lantern Corps, A Intergalactic Peacekeeping Force Created By The Guardians Of The Universe From Dc Comics. The Symbol Is Mostly Associated With The Heroes Hal Jordan And John Stewart Both Known As Green Lantern, But There Are Thousands Of Members With The Most Notable Being Hal Jordan, John Stewart, Guy Gardner, Kyle Rayner, Kilowog, Simon Baz, Jessica Cruz, Jo Mullein And The Former Green Lantern Thaal Sinestro. Alan Scott Is Also A Green Lantern But He Is Not Connected To The Corps.", "links": {"subreddit": ["Greenlantern"]}, "path": {"173-258": [[-442, 824], [-442, 820], [-442, 822], [-442, 823], [-441, 820], [-441, 819], [-441, 818], [-440, 817], [-439, 816], [-438, 815], [-432, 815], [-431, 816], [-430, 816], [-430, 817], [-429, 817], [-429, 818], [-429, 819], [-429, 820], [-428, 821], [-428, 822], [-428, 823], [-429, 824], [-429, 825], [-429, 826], [-430, 827], [-431, 828], [-432, 829], [-433, 829], [-434, 829], [-435, 829], [-436, 829], [-437, 829], [-438, 829], [-439, 828], [-440, 827], [-441, 826], [-441, 825], [-441, 824], [-442, 823], [-442, 822], [-442, 821], [-441, 820], [-441, 819], [-441, 818], [-441, 820]]}, "center": {"173-258": [-435, 822]}}, -{"id": 4179, "name": "Logo of Indian National football team", "description": "This football team represents India in international football and is governed by the All India Football Federation and is under the global jurisdiction of FIFA.\nIts recent underrated status deserves recognition in the artwork.", "links": {"website": ["https://www.the-aiff.com/"], "subreddit": ["IndiaPlace"]}, "path": {"250-258": [[497, -283], [474, -283], [474, -266], [475, -266], [475, -265], [476, -265], [476, -264], [477, -264], [477, -263], [478, -263], [478, -262], [479, -262], [479, -261], [480, -261], [480, -260], [481, -260], [481, -259], [482, -259], [482, -258], [483, -258], [483, -257], [489, -257], [489, -258], [490, -258], [490, -259], [491, -259], [491, -260], [492, -260], [492, -261], [493, -261], [493, -262], [494, -262], [494, -263], [495, -263], [495, -264], [496, -264], [496, -265], [497, -265]]}, "center": {"250-258": [486, -272]}}, -{"id": 4180, "name": "JRWI", "description": "An acronym standing for \"Just Roll With It\", a DND podcast starring Grizzly, Bizly, Condificion, and Slimecicle.", "links": {"subreddit": ["jrwishow"]}, "path": {"212-242": [[540, 355], [540, 358], [557, 358], [557, 355]], "243-258": [[540, 355], [540, 358], [578, 358], [578, 356], [565, 356], [564, 354], [561, 354], [561, 355]]}, "center": {"212-242": [549, 357], "243-258": [562, 356]}}, -{"id": 4181, "name": "Sakura Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.\n\nThis variant of Hatsune Miku is called Sakura Miku, which is pink cherry blossom themed.", "links": {"subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"164-258": [[-634, 336], [-632, 326], [-628, 324], [-627, 325], [-624, 324], [-615, 324], [-613, 328], [-613, 335], [-609, 342], [-620, 342], [-623, 346], [-627, 346], [-627, 337], [-634, 337]]}, "center": {"164-258": [-621, 332]}}, -{"id": 4182, "name": "Pacific Wheel - Santa Monica", "description": "The Pacific Wheel is a Ferris wheel located at Pacific Park, an amusement park on the Santa Monica Pier.", "links": {"website": ["https://pacpark.com/santa-monica-amusement-park/ferris-wheel/"], "subreddit": ["AmericanFlaginPlace"], "discord": ["afip"]}, "path": {"185-258": [[773, 897], [773, 874], [776, 874], [776, 871], [777, 871], [778, 871], [778, 869], [779, 869], [779, 867], [780, 867], [780, 866], [781, 866], [781, 865], [782, 865], [782, 864], [783, 864], [783, 863], [793, 863], [793, 864], [794, 864], [794, 865], [795, 865], [795, 866], [796, 866], [796, 867], [797, 867], [797, 869], [798, 869], [798, 873], [799, 873], [800, 872], [802, 872], [802, 873], [803, 873], [803, 874], [804, 874], [804, 875], [805, 875], [805, 877], [806, 877], [806, 897]]}, "center": {"185-258": [788, 883]}}, -{"id": 4183, "name": "Purple Guy", "description": "Is he Purple Guy from the Five Nights at Freddy's franchise", "links": {"website": ["https://es.wikipedia.org/wiki/Five_Nights_at_Freddy%27s"], "subreddit": ["fivenightsatfreddys"], "discord": ["fnafreddys"]}, "path": {"232-258": [[-1277, 182], [-1267, 219], [-1273, 250], [-1286, 251], [-1290, 231], [-1301, 232], [-1305, 223], [-1313, 218], [-1303, 216], [-1298, 206], [-1297, 181], [-1292, 181]]}, "center": {"232-258": [-1285, 216]}}, -{"id": 4184, "name": "Vancouver Canucks", "description": "National Hockey League (NHL) team from Vancouver, BC, Canada.\nThe showcased logo is the shoulder patch of the teams alternate jersey from 2008-2017, featuring a team mascot Johnny Canuck.\nThe Banners on the top left represent the retired jersey numbers: \n12 Stan Smyl\n10 Pavel Bure\n16 Trevor Linden\n19 Markus Näslund\n22 Daniel Sedin\n33 Henrik Sedin", "links": {"subreddit": ["canucks"], "discord": ["canucks"]}, "path": {"221-258": [[-1097, 456], [-1097, 424], [-1101, 424], [-1101, 417], [-1126, 417], [-1126, 456]]}, "center": {"221-258": [-1111, 437]}}, -{"id": 4185, "name": "Menorah 2", "description": "The Second Menorah was created by the r/Israel group. It was created in response to the Main Flag of Israel and the Menorah being destroyed. It was used as a backup but still stood when the original came back. The symbol of Judaism.", "links": {"subreddit": ["Israel", "Judaism"]}, "path": {"221-258": [[-1238, 133], [-1214, 133], [-1214, 154], [-1238, 154], [-1238, 153], [-1238, 134]]}, "center": {"221-258": [-1226, 144]}}, -{"id": 4186, "name": "Cowboy eagle", "description": "The bald eagle is the national bird of the United States. This eagle was given a cowboy hat to cover up its \"baldness\".", "links": {"subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"220-258": [[-85, 108], [-85, 112], [-86, 112], [-86, 113], [-87, 113], [-86, 113], [-86, 114], [-85, 114], [-85, 120], [-84, 120], [-83, 120], [-83, 122], [-82, 122], [-82, 123], [-81, 123], [-81, 124], [-80, 124], [-80, 125], [-79, 125], [-79, 126], [-78, 126], [-78, 127], [-77, 127], [-77, 128], [-76, 128], [-76, 129], [-75, 129], [-75, 130], [-74, 130], [-74, 131], [-73, 131], [-73, 132], [-72, 132], [-72, 133], [-71, 133], [-71, 134], [-70, 134], [-70, 137], [-72, 137], [-72, 138], [-75, 138], [-75, 139], [-78, 139], [-78, 140], [-79, 140], [-79, 142], [-78, 144], [-76, 144], [-76, 145], [-72, 145], [-72, 146], [-66, 146], [-66, 145], [-65, 145], [-65, 144], [-64, 144], [-64, 143], [-63, 143], [-63, 142], [-62, 142], [-62, 141], [-52, 141], [-52, 142], [-47, 142], [-47, 143], [-38, 143], [-38, 142], [-33, 142], [-33, 141], [-28, 141], [-28, 140], [-25, 140], [-25, 139], [-26, 139], [-26, 138], [-29, 138], [-29, 137], [-35, 137], [-35, 136], [-45, 136], [-45, 134], [-41, 134], [-41, 133], [-40, 133], [-40, 129], [-39, 129], [-39, 127], [-40, 127], [-40, 128], [-43, 128], [-43, 126], [-44, 126], [-44, 123], [-45, 123], [-45, 122], [-48, 122], [-48, 123], [-49, 123], [-49, 124], [-50, 124], [-50, 125], [-51, 125], [-51, 126], [-52, 126], [-53, 126], [-53, 125], [-53, 126], [-54, 126], [-54, 127], [-55, 127], [-55, 128], [-59, 128], [-59, 127], [-60, 127], [-60, 126], [-61, 126], [-61, 125], [-62, 125], [-62, 124], [-63, 124], [-63, 123], [-64, 123], [-64, 122], [-65, 122], [-65, 121], [-66, 121], [-66, 120], [-67, 120], [-67, 119], [-68, 119], [-68, 118], [-69, 118], [-69, 117], [-70, 117], [-70, 116], [-71, 116], [-71, 115], [-72, 115], [-72, 114], [-73, 114], [-73, 113], [-74, 113], [-74, 112], [-75, 112], [-75, 111], [-76, 111], [-76, 110], [-77, 110], [-77, 109], [-78, 109], [-78, 108], [-78, 107], [-78, 108], [-82, 108], [-82, 106], [-83, 106], [-83, 105], [-83, 107], [-84, 107]]}, "center": {"220-258": [-63, 134]}}, -{"id": 4187, "name": "OG (Ollitas Gaming)", "description": "Ollitas Gaming, comunidad pequeña creada por Simiblue", "links": {"discord": ["3kzkyzKM8D"]}, "path": {"212-259": [[1290, 772], [1290, 780], [1312, 780], [1312, 771], [1306, 771], [1306, 772]]}, "center": {"212-259": [1294, 776]}}, -{"id": 4188, "name": "Bocchi-Chan (Bocchi The Rock!)", "description": "One of the main protagonists of the hit 2022 anime and manga, Bocchi The Rock! It is an artwork collaboration of r/BocchiTheRock and r/jojosbizzareplace", "links": {"subreddit": ["BocchiTheRock", "JoJosBizarrePlace"], "discord": ["bocchi"]}, "path": {"247-259": [[-1201, -81], [-1201, -73], [-1197, -73], [-1196, -81], [-1201, -81], [-1200, -81]]}, "center": {"247-259": [-1199, -77]}}, +{"id": 4166, "name": "BadBoyHalo", "description": "Darryl Noveschosch, also known as BadBoyHalo or simply BBH, is a Minecraft YouTuber and streamer known mainly for his content related to Minecraft servers, competitions, trolls, and collaborations with other YouTubers. He is also associated with fellow streamer and YouTuber Skeppy, who makes similar content. In 2023, he was announced as one of the participants in the QSMP.", "links": {"website": ["https://badboyhalo.com/", "https://youtube.com/@thesaintsofgames"], "subreddit": ["badboyhalo"], "discord": ["badboyhalo"]}, "path": {"250-258, T": [[440, 415], [451, 415], [451, 425], [440, 425]]}, "center": {"250-258, T": [446, 420]}}, +{"id": 4167, "name": "Great Clock of Westminster (a.k.a Big Ben or the Elizabeth Tower)", "description": "The Great Clock of Westminster, commonly known as Big Ben, is an iconic and historic timekeeping masterpiece located at the north end of the Palace of Westminster in London, England. \n\nCompleted in 1859, the clock's impressive four-faced exterior features a diameter of over 23 feet, while its colossal hour bell, also called Big Ben, weighs around 13.5 tons. \n\nThe clock's intricate mechanism, designed by Edmund Beckett Denison and George Airy, operates with remarkable accuracy and has become a symbol of British engineering and punctuality. \n\nIt chimes melodiously every quarter hour, and its deep resonant bongs, on the hour, are widely recognized and beloved around the world, making the Great Clock of Westminster an enduring emblem of London's cultural heritage and architectural history.", "links": {"website": ["https://www.parliament.uk/about/living-heritage/building/palace/big-ben/"]}, "path": {"250-258, T": [[-253, -267], [-244, -267], [-243, -301], [-244, -302], [-244, -306], [-245, -307], [-245, -313], [-246, -313], [-246, -316], [-247, -316], [-248, -329], [-249, -329], [-249, -316], [-251, -316], [-251, -314], [-252, -313], [-252, -308], [-253, -308], [-253, -303], [-254, -301]]}, "center": {"250-258, T": [-248, -290]}}, +{"id": 4168, "name": "Aang's Airbender staff", "description": "The Airbender staff from Aang, the protagonist in the TV show Avatar: The Last Airbender.\nAn airbender staff is a wooden staff used primarily by airbenders to augment their bending. These versatile instruments were a major part of Air Nomad culture and used in the execution of several complex airbending techniques. Staffs were constructed to unfold into fan-like gliders, which enabled airbenders to fly while manipulating the air currents around them.\nLetters ATLA were added as abbreviation for the TV show and corresponding subreddits.", "links": {"subreddit": ["TheLastAirbender", "placeATLA"], "discord": ["5FSXqzJkQ5"]}, "path": {"246-258, T": [[-1460, 16], [-1460, 18], [-1446, 18], [-1446, 23], [-1447, 23], [-1447, 25], [-1448, 25], [-1448, 28], [-1451, 28], [-1452, 28], [-1452, 29], [-1453, 29], [-1453, 30], [-1454, 30], [-1454, 34], [-1456, 34], [-1456, 35], [-1460, 35], [-1460, 37], [-1456, 40], [-1454, 40], [-1454, 43], [-1455, 43], [-1455, 44], [-1456, 44], [-1456, 45], [-1465, 45], [-1465, 44], [-1466, 44], [-1467, 44], [-1467, 43], [-1468, 43], [-1468, 42], [-1469, 42], [-1469, 41], [-1469, 40], [-1467, 40], [-1467, 39], [-1464, 39], [-1464, 37], [-1464, 38], [-1463, 38], [-1463, 37], [-1462, 37], [-1462, 35], [-1466, 35], [-1466, 34], [-1469, 34], [-1469, 32], [-1469, 33], [-1470, 33], [-1470, 32], [-1471, 32], [-1471, 31], [-1472, 31], [-1472, 30], [-1473, 30], [-1473, 29], [-1474, 29], [-1474, 25], [-1475, 25], [-1475, 24], [-1476, 24], [-1476, 18], [-1462, 18], [-1462, 16]]}, "center": {"246-258, T": [-1462, 27]}}, +{"id": 4169, "name": "Mass Rapid Transit", "description": "Artwork of a train of the Mass Rapid Transit (MRT) system exiting an underground tunnel. The MRT ferries millions of Singaporeans daily on 231 km of rail across 140+ stations. This artwork was attacked by some members of r/phish for entering their territory, but was successfully defended.", "links": {"website": ["https://en.wikipedia.org/wiki/Mass_Rapid_Transit_(Singapore)", "https://www.lta.gov.sg/content/ltagov/en/getting_around/public_transport/rail_network.html"], "subreddit": ["singapore", "placeSG"]}, "path": {"137-258, T": [[332, -13], [332, -12], [331, -12], [331, -9], [352, -9], [352, -10], [358, -10], [358, -11], [361, -11], [361, -13]]}, "center": {"137-258, T": [345, -11]}}, +{"id": 4170, "name": "Itemlabel", "description": "itemLabel is a revenge-based fashion and plush company.", "links": {"website": ["https://itemlabel.com/"], "subreddit": ["itemLabel"], "discord": ["itemlabel"]}, "path": {"218-258, T": [[638, 850], [602, 850], [601, 879], [614, 879], [616, 876], [616, 874], [613, 874], [612, 873], [613, 871], [611, 870], [613, 869], [613, 867], [612, 867], [611, 866], [612, 865], [612, 864], [613, 864], [612, 857], [618, 857], [638, 857]]}, "center": {"218-258, T": [607, 861]}}, +{"id": 4171, "name": "Asriel Dreemurr", "description": "A major character in Undertale, while also mentioned in Deltarune. With a tragic story and cute appearance, he is one of the most loved characters in the game.\n\nTwo Asriel's appeared in this year's r/place. This one was mainly made by the Asriel Discord.", "links": {"website": ["https://undertale.fandom.com/wiki/Asriel_Dreemurr", "https://deltarune.fandom.com/wiki/Asriel"], "subreddit": ["AsrielUndertale"], "discord": ["Asriel"]}, "path": {"189-258, T": [[-1217, -510], [-1197, -510], [-1197, -491], [-1217, -491]]}, "center": {"189-258, T": [-1207, -500]}}, +{"id": 4172, "name": "Jaiden Animations", "description": "Jaiden Dittfach, known for her online name Jaiden Animations, is a YouTuber, streamer and animator. Her videos revolve around animated story-times and, most recently, video game stories. She is known for her love of Pokémon and birds. In 2023, she started participating in the QSMP, along with other creators of similar content.", "links": {"website": ["https://jaidenanimations.com/", "https://youtube.com/@jaidenanimations"], "subreddit": ["jaidenanimations"], "discord": ["wcrTfK8"]}, "path": {"250-258, T": [[428, 415], [428, 425], [439, 425], [439, 415]]}, "center": {"250-258, T": [434, 420]}}, +{"id": 4173, "name": "Mini Cirno and Daiyousei", "description": "Mini pixel art of the fairies Cirno (Chiruno) and Daiyousei from the Touhou Project. This specific art style is the same as the mini Cirno from the 2022 place art that gained a small cult following during the even.", "links": {"subreddit": ["touhou"]}, "path": {"86-258, T": [[151, 139], [151, 147], [167, 147], [167, 139]]}, "center": {"86-258, T": [159, 143]}}, +{"id": 4174, "name": "Yuzaki Tsukasa of Tonikaku Kawaii", "description": "Yuzaki Tsukasa of the anime and manga series Tonikaku Kawaii, She is adorned with a Scuderia Ferrari hat.", "links": {"website": ["https://tonikawa.com/"], "subreddit": ["tonikakucawaii"], "discord": ["tonikawa", "yh8PqcB"]}, "path": {"208-258, T": [[73, 204], [82, 204], [82, 205], [83, 205], [83, 209], [82, 209], [82, 222], [82, 223], [83, 223], [83, 227], [82, 227], [82, 233], [81, 233], [81, 234], [80, 234], [80, 233], [79, 233], [79, 231], [76, 231], [76, 233], [75, 233], [75, 234], [74, 234], [74, 233], [73, 233], [73, 227], [73, 226], [72, 226], [72, 225], [71, 225], [71, 222], [70, 222], [70, 221], [66, 221], [66, 220], [65, 220], [65, 218], [66, 218], [66, 217], [67, 217], [67, 218], [70, 218], [70, 209], [68, 209], [68, 208], [67, 208], [68, 207], [70, 207], [71, 207], [71, 206], [72, 206], [72, 205]]}, "center": {"208-258, T": [76, 217]}}, +{"id": 4175, "name": "Hawker Hurricane", "description": "The Hawker Hurricane was a British single-seat fighter aircraft that played a vital role in the Battle of Britain during World War II. \n\nDesigned and built by Hawker Aircraft Ltd., the Hurricane featured a sturdy fabric-covered metal structure and was powered by a Rolls-Royce Merlin engine, providing it with impressive performance and maneuverability. \n\nArmed with eight .303 inch (7.7 mm) Browning machine guns, the Hurricane became a formidable opponent for the German Luftwaffe during the intense air campaign of 1940. \n\nAlongside the Supermarine Spitfire, the Hurricane formed the backbone of the Royal Air Force's defense, engaging in relentless dogfights to protect Britain from enemy air attacks. Its versatility, reliability, and significant success rate in shooting down enemy aircraft made the Hawker Hurricane an essential asset in securing victory and repelling the Luftwaffe's attempt to gain air superiority over the UK during the critical Battle of Britain.", "links": {"website": ["https://en.wikipedia.org/wiki/Hawker_Hurricane"]}, "path": {"250-258, T": [[-221, -320], [-220, -319], [-217, -319], [-217, -322], [-214, -326], [-213, -326], [-211, -323], [-210, -320], [-209, -319], [-206, -319], [-206, -318], [-205, -318], [-204, -319], [-203, -320], [-202, -319], [-201, -319], [-201, -315], [-203, -313], [-205, -315], [-206, -315], [-209, -314], [-210, -313], [-210, -312], [-211, -311], [-211, -309], [-213, -307], [-214, -307], [-215, -308], [-216, -310], [-217, -311], [-216, -312], [-216, -313], [-217, -314], [-220, -314], [-220, -313], [-220, -312], [-221, -312], [-222, -312], [-222, -320]]}, "center": {"250-258, T": [-213, -316]}}, +{"id": 4176, "name": "Eurostar", "description": "The Eurostar is a high-speed train service that connects London in the United Kingdom with Paris and Brussels in Europe through the Channel Tunnel. \n\nOperated by Eurostar International Limited, the service revolutionized cross-channel travel when it was launched in 1994, providing a faster and more efficient alternative to air travel between these major European cities. \n\nThe Eurostar trains are known for their speed and comfort, reaching speeds of up to 186 mph (300 km/h) on dedicated high-speed rail lines. The service has expanded over the years, offering connections to other cities, such as Amsterdam, Rotterdam, Lyon, and Marseille, further enhancing the convenience and accessibility of train travel across Europe.", "links": {"website": ["http://www.eurostar.com"]}, "path": {"250-258, T": [[-319, -269], [-282, -269], [-277, -264], [-276, -261], [-279, -261], [-279, -260], [-319, -260]]}, "center": {"250-258, T": [-297, -264]}}, +{"id": 4177, "name": "Reborn Live", "description": "Reborn Live is a Spanish speaking streamer on Twitch, known for his GTA roleplay character \"Jack Conway\". Well-known variety content-creator, currently broadcasting games such as Valorant, Rust, Minecraft, and eventually some podcast sections. This image shows his channel logo and a very important date for his community: \"April 19th\", his first on-live stream on Twitch, back in 2020", "links": {"website": ["https://www.twitch.tv/reborn_live", "https://twitter.com/DonReborn2"]}, "path": {"250-258, T": [[592, -911], [639, -911], [640, -864], [610, -863], [607, -879], [592, -880]]}, "center": {"250-258, T": [621, -892]}}, +{"id": 4178, "name": "Green Lantern Corps Symbol", "description": "The Symbol Of The Green Lantern Corps, A Intergalactic Peacekeeping Force Created By The Guardians Of The Universe From Dc Comics. The Symbol Is Mostly Associated With The Heroes Hal Jordan And John Stewart Both Known As Green Lantern, But There Are Thousands Of Members With The Most Notable Being Hal Jordan, John Stewart, Guy Gardner, Kyle Rayner, Kilowog, Simon Baz, Jessica Cruz, Jo Mullein And The Former Green Lantern Thaal Sinestro. Alan Scott Is Also A Green Lantern But He Is Not Connected To The Corps.", "links": {"subreddit": ["Greenlantern"]}, "path": {"173-258, T": [[-442, 824], [-442, 820], [-442, 822], [-442, 823], [-441, 820], [-441, 819], [-441, 818], [-440, 817], [-439, 816], [-438, 815], [-432, 815], [-431, 816], [-430, 816], [-430, 817], [-429, 817], [-429, 818], [-429, 819], [-429, 820], [-428, 821], [-428, 822], [-428, 823], [-429, 824], [-429, 825], [-429, 826], [-430, 827], [-431, 828], [-432, 829], [-433, 829], [-434, 829], [-435, 829], [-436, 829], [-437, 829], [-438, 829], [-439, 828], [-440, 827], [-441, 826], [-441, 825], [-441, 824], [-442, 823], [-442, 822], [-442, 821], [-441, 820], [-441, 819], [-441, 818], [-441, 820]]}, "center": {"173-258, T": [-435, 822]}}, +{"id": 4179, "name": "Logo of Indian National football team", "description": "This football team represents India in international football and is governed by the All India Football Federation and is under the global jurisdiction of FIFA.\nIts recent underrated status deserves recognition in the artwork.", "links": {"website": ["https://www.the-aiff.com/"], "subreddit": ["IndiaPlace"]}, "path": {"250-258, T": [[497, -283], [474, -283], [474, -266], [475, -266], [475, -265], [476, -265], [476, -264], [477, -264], [477, -263], [478, -263], [478, -262], [479, -262], [479, -261], [480, -261], [480, -260], [481, -260], [481, -259], [482, -259], [482, -258], [483, -258], [483, -257], [489, -257], [489, -258], [490, -258], [490, -259], [491, -259], [491, -260], [492, -260], [492, -261], [493, -261], [493, -262], [494, -262], [494, -263], [495, -263], [495, -264], [496, -264], [496, -265], [497, -265]]}, "center": {"250-258, T": [486, -272]}}, +{"id": 4180, "name": "JRWI", "description": "An acronym standing for \"Just Roll With It\", a DND podcast starring Grizzly, Bizly, Condificion, and Slimecicle.", "links": {"subreddit": ["jrwishow"]}, "path": {"212-242": [[540, 355], [540, 358], [557, 358], [557, 355]], "243-258, T": [[540, 355], [540, 358], [578, 358], [578, 356], [565, 356], [564, 354], [561, 354], [561, 355]]}, "center": {"212-242": [549, 357], "243-258, T": [562, 356]}}, +{"id": 4181, "name": "Sakura Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.\n\nThis variant of Hatsune Miku is called Sakura Miku, which is pink cherry blossom themed.", "links": {"subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"164-258, T": [[-634, 336], [-632, 326], [-628, 324], [-627, 325], [-624, 324], [-615, 324], [-613, 328], [-613, 335], [-609, 342], [-620, 342], [-623, 346], [-627, 346], [-627, 337], [-634, 337]]}, "center": {"164-258, T": [-621, 332]}}, +{"id": 4182, "name": "Pacific Wheel - Santa Monica", "description": "The Pacific Wheel is a Ferris wheel located at Pacific Park, an amusement park on the Santa Monica Pier.", "links": {"website": ["https://pacpark.com/santa-monica-amusement-park/ferris-wheel/"], "subreddit": ["AmericanFlaginPlace"], "discord": ["afip"]}, "path": {"185-258, T": [[773, 897], [773, 874], [776, 874], [776, 871], [777, 871], [778, 871], [778, 869], [779, 869], [779, 867], [780, 867], [780, 866], [781, 866], [781, 865], [782, 865], [782, 864], [783, 864], [783, 863], [793, 863], [793, 864], [794, 864], [794, 865], [795, 865], [795, 866], [796, 866], [796, 867], [797, 867], [797, 869], [798, 869], [798, 873], [799, 873], [800, 872], [802, 872], [802, 873], [803, 873], [803, 874], [804, 874], [804, 875], [805, 875], [805, 877], [806, 877], [806, 897]]}, "center": {"185-258, T": [788, 883]}}, +{"id": 4183, "name": "Purple Guy", "description": "Is he Purple Guy from the Five Nights at Freddy's franchise", "links": {"website": ["https://es.wikipedia.org/wiki/Five_Nights_at_Freddy%27s"], "subreddit": ["fivenightsatfreddys"], "discord": ["fnafreddys"]}, "path": {"232-258, T": [[-1277, 182], [-1267, 219], [-1273, 250], [-1286, 251], [-1290, 231], [-1301, 232], [-1305, 223], [-1313, 218], [-1303, 216], [-1298, 206], [-1297, 181], [-1292, 181]]}, "center": {"232-258, T": [-1285, 216]}}, +{"id": 4184, "name": "Vancouver Canucks", "description": "National Hockey League (NHL) team from Vancouver, BC, Canada.\nThe showcased logo is the shoulder patch of the teams alternate jersey from 2008-2017, featuring a team mascot Johnny Canuck.\nThe Banners on the top left represent the retired jersey numbers: \n12 Stan Smyl\n10 Pavel Bure\n16 Trevor Linden\n19 Markus Näslund\n22 Daniel Sedin\n33 Henrik Sedin", "links": {"subreddit": ["canucks"], "discord": ["canucks"]}, "path": {"221-258, T": [[-1097, 456], [-1097, 424], [-1101, 424], [-1101, 417], [-1126, 417], [-1126, 456]]}, "center": {"221-258, T": [-1111, 437]}}, +{"id": 4185, "name": "Menorah 2", "description": "The Second Menorah was created by the r/Israel group. It was created in response to the Main Flag of Israel and the Menorah being destroyed. It was used as a backup but still stood when the original came back. The symbol of Judaism.", "links": {"subreddit": ["Israel", "Judaism"]}, "path": {"221-258, T": [[-1238, 133], [-1214, 133], [-1214, 154], [-1238, 154], [-1238, 153], [-1238, 134]]}, "center": {"221-258, T": [-1226, 144]}}, +{"id": 4186, "name": "Cowboy eagle", "description": "The bald eagle is the national bird of the United States. This eagle was given a cowboy hat to cover up its \"baldness\".", "links": {"subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"220-258, T": [[-85, 108], [-85, 112], [-86, 112], [-86, 113], [-87, 113], [-86, 113], [-86, 114], [-85, 114], [-85, 120], [-84, 120], [-83, 120], [-83, 122], [-82, 122], [-82, 123], [-81, 123], [-81, 124], [-80, 124], [-80, 125], [-79, 125], [-79, 126], [-78, 126], [-78, 127], [-77, 127], [-77, 128], [-76, 128], [-76, 129], [-75, 129], [-75, 130], [-74, 130], [-74, 131], [-73, 131], [-73, 132], [-72, 132], [-72, 133], [-71, 133], [-71, 134], [-70, 134], [-70, 137], [-72, 137], [-72, 138], [-75, 138], [-75, 139], [-78, 139], [-78, 140], [-79, 140], [-79, 142], [-78, 144], [-76, 144], [-76, 145], [-72, 145], [-72, 146], [-66, 146], [-66, 145], [-65, 145], [-65, 144], [-64, 144], [-64, 143], [-63, 143], [-63, 142], [-62, 142], [-62, 141], [-52, 141], [-52, 142], [-47, 142], [-47, 143], [-38, 143], [-38, 142], [-33, 142], [-33, 141], [-28, 141], [-28, 140], [-25, 140], [-25, 139], [-26, 139], [-26, 138], [-29, 138], [-29, 137], [-35, 137], [-35, 136], [-45, 136], [-45, 134], [-41, 134], [-41, 133], [-40, 133], [-40, 129], [-39, 129], [-39, 127], [-40, 127], [-40, 128], [-43, 128], [-43, 126], [-44, 126], [-44, 123], [-45, 123], [-45, 122], [-48, 122], [-48, 123], [-49, 123], [-49, 124], [-50, 124], [-50, 125], [-51, 125], [-51, 126], [-52, 126], [-53, 126], [-53, 125], [-53, 126], [-54, 126], [-54, 127], [-55, 127], [-55, 128], [-59, 128], [-59, 127], [-60, 127], [-60, 126], [-61, 126], [-61, 125], [-62, 125], [-62, 124], [-63, 124], [-63, 123], [-64, 123], [-64, 122], [-65, 122], [-65, 121], [-66, 121], [-66, 120], [-67, 120], [-67, 119], [-68, 119], [-68, 118], [-69, 118], [-69, 117], [-70, 117], [-70, 116], [-71, 116], [-71, 115], [-72, 115], [-72, 114], [-73, 114], [-73, 113], [-74, 113], [-74, 112], [-75, 112], [-75, 111], [-76, 111], [-76, 110], [-77, 110], [-77, 109], [-78, 109], [-78, 108], [-78, 107], [-78, 108], [-82, 108], [-82, 106], [-83, 106], [-83, 105], [-83, 107], [-84, 107]]}, "center": {"220-258, T": [-63, 134]}}, +{"id": 4187, "name": "OG (Ollitas Gaming)", "description": "Ollitas Gaming, comunidad pequeña creada por Simiblue", "links": {"discord": ["3kzkyzKM8D"]}, "path": {"212-259, T": [[1290, 772], [1290, 780], [1312, 780], [1312, 771], [1306, 771], [1306, 772]]}, "center": {"212-259, T": [1294, 776]}}, +{"id": 4188, "name": "Bocchi-Chan (Bocchi The Rock!)", "description": "One of the main protagonists of the hit 2022 anime and manga, Bocchi The Rock! It is an artwork collaboration of r/BocchiTheRock and r/jojosbizzareplace", "links": {"subreddit": ["BocchiTheRock", "JoJosBizarrePlace"], "discord": ["bocchi"]}, "path": {"247-259, T": [[-1201, -81], [-1201, -73], [-1197, -73], [-1196, -81], [-1201, -81], [-1200, -81]]}, "center": {"247-259, T": [-1199, -77]}}, {"id": 4189, "name": "Public buses of Singapore", "description": "Public buses form a significant part of public transport covering almost every part of Singapore, with over 3.6 million rides taken per day on average as of December 2021.", "links": {"website": ["https://en.wikipedia.org/wiki/Public_buses_of_Singapore"]}, "path": {"160": [[314, -18], [323, -18], [323, -16], [323, -14], [314, -14]]}, "center": {"160": [319, -16]}}, -{"id": 4190, "name": "Among Us Crewmate", "description": "Among Us is a popular online multiplayer social deduction game developed by InnerSloth. Set on a spaceship or a space-themed setting, players take on the roles of Crewmates and Impostors. \n\nCrewmates must complete tasks to maintain the ship's functionality, while Impostors secretly try to sabotage tasks and eliminate Crewmates without being identified. After a body is discovered or an emergency meeting is called, players discuss suspicions and vote on who they believe is the Impostor. \n\nThe game's success lies in its engaging gameplay, requiring players to use deduction, deception, and interpersonal skills to determine the Impostors and achieve their respective objectives. Among Us has become a cultural phenomenon, fostering a thriving online community and gaining popularity through streaming platforms and social media.\n\nAs /r/place 2023 was ongoing it became a popular joke to scatter tiny crewmates wherever possible, either filling solid colours or replacing hatching with little crewmates.", "links": {"website": ["https://www.innersloth.com/games/among-us/"], "subreddit": ["AmongUs"]}, "path": {"250-258": [[-1480, 756], [-1479, 755], [-1478, 754], [-1472, 754], [-1471, 755], [-1470, 756], [-1469, 758], [-1469, 761], [-1470, 762], [-1470, 771], [-1471, 772], [-1473, 772], [-1474, 771], [-1474, 768], [-1476, 768], [-1476, 771], [-1477, 772], [-1479, 772], [-1480, 771], [-1480, 768], [-1482, 768], [-1483, 767], [-1483, 760], [-1482, 759], [-1480, 759], [-1480, 757]]}, "center": {"250-258": [-1476, 763]}}, +{"id": 4190, "name": "Among Us Crewmate", "description": "Among Us is a popular online multiplayer social deduction game developed by InnerSloth. Set on a spaceship or a space-themed setting, players take on the roles of Crewmates and Impostors. \n\nCrewmates must complete tasks to maintain the ship's functionality, while Impostors secretly try to sabotage tasks and eliminate Crewmates without being identified. After a body is discovered or an emergency meeting is called, players discuss suspicions and vote on who they believe is the Impostor. \n\nThe game's success lies in its engaging gameplay, requiring players to use deduction, deception, and interpersonal skills to determine the Impostors and achieve their respective objectives. Among Us has become a cultural phenomenon, fostering a thriving online community and gaining popularity through streaming platforms and social media.\n\nAs /r/place 2023 was ongoing it became a popular joke to scatter tiny crewmates wherever possible, either filling solid colours or replacing hatching with little crewmates.", "links": {"website": ["https://www.innersloth.com/games/among-us/"], "subreddit": ["AmongUs"]}, "path": {"250-258, T": [[-1480, 756], [-1479, 755], [-1478, 754], [-1472, 754], [-1471, 755], [-1470, 756], [-1469, 758], [-1469, 761], [-1470, 762], [-1470, 771], [-1471, 772], [-1473, 772], [-1474, 771], [-1474, 768], [-1476, 768], [-1476, 771], [-1477, 772], [-1479, 772], [-1480, 771], [-1480, 768], [-1482, 768], [-1483, 767], [-1483, 760], [-1482, 759], [-1480, 759], [-1480, 757]]}, "center": {"250-258, T": [-1476, 763]}}, {"id": 4191, "name": "Forever e Nelsinho", "description": "São os emojis do chat do streamer e youtuber brasileiro de minecraft Forever e de seu cachorro Nelsinho.", "links": {"website": ["https://www.twitch.tv/forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"221": [[-39, 375], [-40, 399], [29, 400], [28, 383], [16, 373], [-40, 374]]}, "center": {"221": [1, 387]}}, {"id": 4192, "name": "Ms. Pac-Man", "description": "Ms.Pac-Man from the arcade game in 1982", "links": {"subreddit": ["pacman"]}, "path": {"130-134": [[-681, -986], [-688, -989], [-686, -992], [-685, -992], [-684, -993], [-680, -993], [-678, -992], [-677, -993], [-675, -991], [-673, -990], [-673, -989], [-674, -988], [-675, -987], [-675, -984], [-676, -983], [-677, -981], [-679, -980], [-684, -979], [-685, -980], [-688, -982], [-688, -983], [-684, -984], [-682, -985]]}, "center": {"130-134": [-679, -988]}}, -{"id": 4193, "name": "Duolingo", "description": "Duolingo is a web platform created by the Guatemalan Luis Von Ahn in the United States. Produces learning apps and provides language certification.", "links": {"website": ["https://es.duolingo.com"]}, "path": {"205-208": [[-1064, 600], [-1065, 595], [-1069, 591], [-1077, 591], [-1077, 589], [-1068, 581], [-1068, 574], [-1070, 571], [-1070, 568], [-1065, 570], [-1052, 570], [-1046, 567], [-1046, 582], [-1041, 586], [-1041, 588], [-1046, 588], [-1050, 594], [-1050, 599], [-1055, 599], [-1055, 597], [-1061, 597], [-1061, 600]], "210-258": [[-1082, 604], [-1059, 601], [-1045, 596], [-1037, 590], [-1031, 582], [-1033, 579], [-1035, 578], [-1036, 571], [-1037, 571], [-1038, 571], [-1038, 578], [-1041, 579], [-1044, 582], [-1046, 583], [-1046, 582], [-1045, 577], [-1044, 565], [-1044, 560], [-1046, 558], [-1048, 558], [-1052, 561], [-1053, 562], [-1062, 562], [-1067, 557], [-1070, 554], [-1074, 553], [-1077, 554], [-1078, 557], [-1080, 561], [-1082, 563]]}, "center": {"205-208": [-1057, 584], "210-258": [-1064, 580]}}, -{"id": 4194, "name": "Hatsune Miku (25-ji, Project Sekai)", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.\n\nThis Hatsune Miku variant is as portrayed in the mobile game \"Project SEKAI,\" where she appears in the Empty SEKAI to sing alongside members of the \"25-ji, Nightcord de.\" music circle.", "links": {"website": ["https://projectsekai.fandom.com/wiki/25-ji,_Nightcord_de."], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"250-258": [[-1353, 102], [-1338, 102], [-1338, 119], [-1353, 119]]}, "center": {"250-258": [-1345, 111]}}, -{"id": 4195, "name": "vtCherry", "description": "Cherry is a german Vtuber and Artist who streams on Twitch!", "links": {"website": ["https://www.twitch.tv/vtcherry"]}, "path": {"250-258": [[1228, -831], [1228, -812], [1247, -812], [1247, -831]]}, "center": {"250-258": [1238, -821]}}, +{"id": 4193, "name": "Duolingo", "description": "Duolingo is a web platform created by the Guatemalan Luis Von Ahn in the United States. Produces learning apps and provides language certification.", "links": {"website": ["https://es.duolingo.com"]}, "path": {"205-208": [[-1064, 600], [-1065, 595], [-1069, 591], [-1077, 591], [-1077, 589], [-1068, 581], [-1068, 574], [-1070, 571], [-1070, 568], [-1065, 570], [-1052, 570], [-1046, 567], [-1046, 582], [-1041, 586], [-1041, 588], [-1046, 588], [-1050, 594], [-1050, 599], [-1055, 599], [-1055, 597], [-1061, 597], [-1061, 600]], "210-258, T": [[-1082, 604], [-1059, 601], [-1045, 596], [-1037, 590], [-1031, 582], [-1033, 579], [-1035, 578], [-1036, 571], [-1037, 571], [-1038, 571], [-1038, 578], [-1041, 579], [-1044, 582], [-1046, 583], [-1046, 582], [-1045, 577], [-1044, 565], [-1044, 560], [-1046, 558], [-1048, 558], [-1052, 561], [-1053, 562], [-1062, 562], [-1067, 557], [-1070, 554], [-1074, 553], [-1077, 554], [-1078, 557], [-1080, 561], [-1082, 563]]}, "center": {"205-208": [-1057, 584], "210-258, T": [-1064, 580]}}, +{"id": 4194, "name": "Hatsune Miku (25-ji, Project Sekai)", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.\n\nThis Hatsune Miku variant is as portrayed in the mobile game \"Project SEKAI,\" where she appears in the Empty SEKAI to sing alongside members of the \"25-ji, Nightcord de.\" music circle.", "links": {"website": ["https://projectsekai.fandom.com/wiki/25-ji,_Nightcord_de."], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"250-258, T": [[-1353, 102], [-1338, 102], [-1338, 119], [-1353, 119]]}, "center": {"250-258, T": [-1345, 111]}}, +{"id": 4195, "name": "vtCherry", "description": "Cherry is a german Vtuber and Artist who streams on Twitch!", "links": {"website": ["https://www.twitch.tv/vtcherry"]}, "path": {"250-258, T": [[1228, -831], [1228, -812], [1247, -812], [1247, -831]]}, "center": {"250-258, T": [1238, -821]}}, {"id": 4196, "name": "Terri Claus", "description": "Christmas version of the Mexican streamer erickterri's Minecraft skin", "links": {"website": ["https://www.twitch.tv/erickterri/about"], "discord": ["Et3pFaBJ"]}, "path": {"27-39": [[-251, -487], [-251, -488], [-253, -490], [-253, -491], [-254, -492], [-254, -494], [-256, -494], [-256, -495], [-257, -495], [-258, -495], [-258, -496], [-262, -496], [-263, -495], [-264, -494], [-265, -494], [-266, -493], [-267, -493], [-267, -491], [-268, -491], [-268, -490], [-267, -490], [-267, -485], [-268, -485], [-268, -484], [-267, -484], [-267, -483], [-266, -483], [-266, -482], [-264, -480], [-259, -480], [-255, -484], [-256, -485], [-256, -487], [-255, -488], [-254, -487], [-254, -486], [-252, -486]]}, "center": {"27-39": [-261, -487]}}, {"id": 4197, "name": "Sonichu", "description": "A fusion of Sonic The Hedgehog and Pikachu, created by the true and honest Christine Weston Chandler", "links": {"subreddit": ["ChrisChanSonichu"]}, "path": {"251-258": [[-1241, 271], [-1240, 266], [-1238, 264], [-1238, 256], [-1247, 255], [-1255, 261], [-1254, 266], [-1250, 272], [-1240, 271]]}, "center": {"251-258": [-1247, 264]}}, -{"id": 4198, "name": "Hatsune Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.", "links": {"subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"225-258": [[-1089, 131], [-1089, 127], [-1077, 127], [-1077, 131], [-1071, 131], [-1075, 116], [-1091, 116], [-1093, 124], [-1092, 126]]}, "center": {"225-258": [-1082, 121]}}, -{"id": 4199, "name": "El Chapulín Colorado", "description": "Character from the Mexican comedy created by Roberto Gomez Bolaños (Chespirito), this pixelart was made by a furry rabbit with dinosaur pajamas (Conterstine).", "links": {"website": ["https://es.wikipedia.org/wiki/El_Chapul%C3%ADn_Colorado", "https://www.twitch.tv/conterstine"]}, "path": {"126-258": [[48, -849], [41, -859], [41, -864], [45, -861], [45, -858], [50, -857], [51, -861], [42, -869], [42, -879], [34, -894], [31, -893], [30, -888], [22, -882], [23, -878], [28, -878], [29, -875], [28, -867], [29, -865], [29, -862], [24, -862], [23, -867], [15, -867], [12, -862], [12, -857], [14, -853], [24, -852], [26, -849]]}, "center": {"126-258": [34, -857]}}, -{"id": 4200, "name": "OttLight (u/my_name_is_------) Profile Picture", "description": "A downscaled minimalistic image of OttLights profile picture that they decided to make on place 2023.", "links": {}, "path": {"222-258": [[1282, 355], [1285, 355], [1285, 358], [1282, 358]]}, "center": {"222-258": [1284, 357]}}, -{"id": 4201, "name": "BysTaXx", "description": "bysTaXx es uno de los youtubers españoles más importante y querido de la comunidad hispanohablante. Su carrera en youtube comenzó en el año 2011, siendo considerado por muchos la leyenda del Call of Duty y gracias a la calidad de sus videos, constancia y esfuerzo logró sumar más de 12 millones de seguidores en sus dos canales: bysTaXx y sTaXxCraft, este último dedicado a minecraft donde participó de series famosas como Karmaland o Diminutos. En la actualidad hace streams en Twitch y su contenido se centra en su mayoría en Counter Strike (en 2021 creó un exitoso torneo llamado \"Titan Cup\" en CSGO).", "links": {"website": ["https://www.youtube.com/@bysTaXx", "https://www.youtube.com/@sTaXxCraft", "https://www.twitch.tv/bystaxx", "https://twitter.com/bysTaXx"], "discord": ["bystaxx"]}, "path": {"250-258": [[511, 561], [511, 582], [536, 582], [537, 561]]}, "center": {"250-258": [524, 572]}}, +{"id": 4198, "name": "Hatsune Miku", "description": "Hatsune Miku (Japanese: 初音ミク), officially code-named CV01, is a Vocaloid software voicebank developed by Crypton Future Media. Miku's personification, a 16-year-old girl with long, turquoise twintails, has been marketed as a virtual idol and has performed at live virtual concerts onstage as an animated projection.", "links": {"subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"225-258, T": [[-1089, 131], [-1089, 127], [-1077, 127], [-1077, 131], [-1071, 131], [-1075, 116], [-1091, 116], [-1093, 124], [-1092, 126]]}, "center": {"225-258, T": [-1082, 121]}}, +{"id": 4199, "name": "El Chapulín Colorado", "description": "Character from the Mexican comedy created by Roberto Gomez Bolaños (Chespirito), this pixelart was made by a furry rabbit with dinosaur pajamas (Conterstine).", "links": {"website": ["https://es.wikipedia.org/wiki/El_Chapul%C3%ADn_Colorado", "https://www.twitch.tv/conterstine"]}, "path": {"126-258, T": [[48, -849], [41, -859], [41, -864], [45, -861], [45, -858], [50, -857], [51, -861], [42, -869], [42, -879], [34, -894], [31, -893], [30, -888], [22, -882], [23, -878], [28, -878], [29, -875], [28, -867], [29, -865], [29, -862], [24, -862], [23, -867], [15, -867], [12, -862], [12, -857], [14, -853], [24, -852], [26, -849]]}, "center": {"126-258, T": [34, -857]}}, +{"id": 4200, "name": "OttLight (u/my_name_is_------) Profile Picture", "description": "A downscaled minimalistic image of OttLights profile picture that they decided to make on place 2023.", "links": {}, "path": {"222-258, T": [[1282, 355], [1285, 355], [1285, 358], [1282, 358]]}, "center": {"222-258, T": [1284, 357]}}, +{"id": 4201, "name": "BysTaXx", "description": "bysTaXx es uno de los youtubers españoles más importante y querido de la comunidad hispanohablante. Su carrera en youtube comenzó en el año 2011, siendo considerado por muchos la leyenda del Call of Duty y gracias a la calidad de sus videos, constancia y esfuerzo logró sumar más de 12 millones de seguidores en sus dos canales: bysTaXx y sTaXxCraft, este último dedicado a minecraft donde participó de series famosas como Karmaland o Diminutos. En la actualidad hace streams en Twitch y su contenido se centra en su mayoría en Counter Strike (en 2021 creó un exitoso torneo llamado \"Titan Cup\" en CSGO).", "links": {"website": ["https://www.youtube.com/@bysTaXx", "https://www.youtube.com/@sTaXxCraft", "https://www.twitch.tv/bystaxx", "https://twitter.com/bysTaXx"], "discord": ["bystaxx"]}, "path": {"250-258, T": [[511, 561], [511, 582], [536, 582], [537, 561]]}, "center": {"250-258, T": [524, 572]}}, {"id": 4202, "name": "House", "description": "This is built by the House discord community, a community where each member of a house-themed group, called Rooms, compete with other Rooms in war games. There are 6 rooms and 2 floors in the House. The House is known for being infinitely big and the location of the house is unknown", "links": {"subreddit": ["housediscordunoffica"], "discord": ["jX9D7FyW7P"]}, "path": {"1-8": [[-246, 217], [-247, 217], [-238, 217], [-242, 213], [-243, 213], [-247, 217], [-245, 217], [-245, 220], [-240, 220], [-240, 218]]}, "center": {"1-8": [-242, 215]}}, -{"id": 4203, "name": "London Police box / The TARDIS", "description": "The iconic blue police box, widely recognized as a symbol of British culture, was originally introduced in London as part of the police call box system in the 1920s. However, it became most famous through its association with the long-running British science fiction television series, Doctor Who. \n\nIn the show, the blue box is known as the TARDIS (Time And Relative Dimension In Space) and serves as the time-traveling spaceship of the titular character, the Doctor. Despite its small exterior appearance, the TARDIS is much larger on the inside, allowing the Doctor and companions to explore various times and places throughout the universe. \n\nThe TARDIS is a central element of the show's mythology, and its iconic design, along with the distinctive \"wheezing, groaning\" sound it makes while dematerializing and rematerializing, has captured the imagination of fans worldwide. Doctor Who has become a cultural phenomenon, influencing generations and turning the blue police box into a beloved and enduring symbol of science fiction and British television history.", "links": {"website": ["https://www.doctorwho.tv/", "http://www.themindrobber.co.uk/real-police-box-history.html"], "subreddit": ["doctorwho", "gallifrey", "DoctorWhumour", "TARDISplace"], "discord": ["3P2kPYzkNs"]}, "path": {"250-258": [[1011, 818], [1012, 818], [1012, 816], [1013, 816], [1013, 815], [1016, 815], [1018, 812], [1020, 815], [1023, 815], [1024, 816], [1024, 817], [1025, 818], [1025, 820], [1024, 820], [1024, 835], [1025, 836], [1025, 838], [1011, 838], [1011, 836], [1012, 836], [1012, 820], [1011, 820]]}, "center": {"250-258": [1018, 825]}}, +{"id": 4203, "name": "London Police box / The TARDIS", "description": "The iconic blue police box, widely recognized as a symbol of British culture, was originally introduced in London as part of the police call box system in the 1920s. However, it became most famous through its association with the long-running British science fiction television series, Doctor Who. \n\nIn the show, the blue box is known as the TARDIS (Time And Relative Dimension In Space) and serves as the time-traveling spaceship of the titular character, the Doctor. Despite its small exterior appearance, the TARDIS is much larger on the inside, allowing the Doctor and companions to explore various times and places throughout the universe. \n\nThe TARDIS is a central element of the show's mythology, and its iconic design, along with the distinctive \"wheezing, groaning\" sound it makes while dematerializing and rematerializing, has captured the imagination of fans worldwide. Doctor Who has become a cultural phenomenon, influencing generations and turning the blue police box into a beloved and enduring symbol of science fiction and British television history.", "links": {"website": ["https://www.doctorwho.tv/", "http://www.themindrobber.co.uk/real-police-box-history.html"], "subreddit": ["doctorwho", "gallifrey", "DoctorWhumour", "TARDISplace"], "discord": ["3P2kPYzkNs"]}, "path": {"250-258, T": [[1011, 818], [1012, 818], [1012, 816], [1013, 816], [1013, 815], [1016, 815], [1018, 812], [1020, 815], [1023, 815], [1024, 816], [1024, 817], [1025, 818], [1025, 820], [1024, 820], [1024, 835], [1025, 836], [1025, 838], [1011, 838], [1011, 836], [1012, 836], [1012, 820], [1011, 820]]}, "center": {"250-258, T": [1018, 825]}}, {"id": 4204, "name": "Saibot", "description": "Saibot or \"SaibotDice\" is a content creator and digital artist, best known on the internet as a modder for Friday Night Funkin who is currently developing big projects like Friday Night Dashing and Mortimer's Night.", "links": {"website": ["https://www.youtube.com/channel/UCDQaWfx0znQw7Ljolhxe6GQ", "https://twitter.com/SaibotDice", "https://gamebanana.com/mods/399300"]}, "path": {"176-236": [[-608, 839], [-592, 839], [-592, 854], [-608, 854]]}, "center": {"176-236": [-600, 847]}}, -{"id": 4205, "name": "Mouse Cursor", "description": "Mouse cursor", "links": {"subreddit": ["placestart"]}, "path": {"227-258": [[1415, -972], [1425, -981], [1425, -966], [1422, -970], [1419, -965], [1417, -966], [1419, -970], [1415, -971]]}, "center": {"227-258": [1421, -973]}}, -{"id": 4206, "name": "Logo of Rec Room", "description": "Rec Room is a popular cross-platform social game!", "links": {"website": ["https://rec.net"], "subreddit": ["recroom"], "discord": ["recroom"]}, "path": {"161-252": [[-948, -287], [-940, -287], [-940, -273], [-948, -273]]}, "center": {"161-252": [-944, -280]}}, -{"id": 4207, "name": "Giant Grapu", "description": "Grapu is the mascot of Green Lattice. This version in Grapu in particular is giant and yelling. This was made after streamer Spreen helped expand the area of green lattice.\n\nA heart is included in to show the community's love for the character.", "links": {"subreddit": ["greenlattice"]}, "path": {"250-258": [[1047, -794], [1046, -804], [1069, -820], [1082, -819], [1100, -803], [1099, -777], [1091, -767], [1101, -767], [1101, -762], [1088, -762], [1085, -765], [1083, -765], [1082, -761], [1067, -762], [1061, -764], [1056, -765], [1055, -771], [1051, -772], [1051, -777], [1057, -780], [1049, -780], [1048, -784], [1046, -786]]}, "center": {"250-258": [1076, -793]}}, -{"id": 4208, "name": "Tunisia", "description": "Tunisian territory with a traditional blue door", "links": {"subreddit": ["tunisia"]}, "path": {"250-258": [[-280, 827], [-280, 828], [-280, 825], [-279, 822], [-280, 822], [-280, 820], [-280, 818], [-279, 816], [-277, 816], [-280, 817], [-274, 817], [-271, 815], [-270, 816], [-267, 816], [-264, 816], [-261, 816], [-259, 817], [-257, 818], [-254, 817], [-254, 819], [-254, 821], [-253, 822], [-252, 823], [-251, 823], [-250, 823], [-249, 824], [-249, 826], [-250, 826], [-249, 828], [-252, 829], [-251, 828], [-254, 828], [-254, 829], [-256, 829], [-255, 828], [-257, 830], [-257, 831], [-259, 833], [-260, 834], [-261, 835], [-261, 837], [-262, 835], [-263, 835], [-265, 835], [-267, 835], [-268, 835], [-267, 834], [-270, 835], [-270, 833], [-269, 832], [-269, 831], [-269, 829], [-270, 827], [-272, 828], [-273, 828], [-275, 828], [-276, 828], [-278, 827], [-280, 828], [-281, 825], [-281, 823], [-281, 821], [-281, 818], [-281, 817], [-281, 816], [-281, 815], [-281, 814], [-257, 815], [-255, 818], [-251, 821], [-249, 824], [-249, 828], [-250, 829], [-252, 829], [-253, 829], [-253, 830], [-255, 830], [-255, 832], [-255, 833], [-256, 833], [-256, 834], [-257, 834], [-259, 834], [-259, 835], [-259, 836], [-261, 836], [-262, 836], [-265, 836], [-266, 836], [-269, 836], [-270, 836], [-270, 835], [-270, 831], [-270, 829], [-272, 829], [-273, 829], [-278, 829], [-280, 829], [-281, 829], [-280, 823], [-281, 814], [-268, 815], [-261, 815]]}, "center": {"250-258": [-276, 820]}}, -{"id": 4209, "name": "WJSN", "description": "WJSN (also known as Cosmic Girls) is a South Korean girl group under Starship Entertainment. They debuted on February 25, 2016. The group's current lineup is composed of 10 members: Seola, Bona, Exy, Soobin, Luda, Dawon, Eunseo, Yeoreum, Dayoung and Yeonjung.", "links": {"website": ["http://starship-ent.com/profile/musician/wjsn.php"], "subreddit": ["cosmicgirls"], "discord": ["wjsn"]}, "path": {"250-258": [[-1418, -352], [-1410, -352], [-1410, -343], [-1418, -343]]}, "center": {"250-258": [-1414, -347]}}, -{"id": 4210, "name": "Astolfo", "description": "Originating from the Japanese light novel and anime series \"Fate/Apocrypha,\" Astolfo is depicted as a male character, but his appearance and personality have led to the \"femboy\" interpretation within fandoms. The pixel art was created from r/femboy and r/astolfo. Jojo Bizaree's Adventure community was offering Chibi Sanctuary for multiple fandoms, one of them including femboys.", "links": {"subreddit": ["femboy", "astolfo"]}, "path": {"214-258": [[-1122, -99], [-1115, -99], [-1115, -91], [-1122, -90]]}, "center": {"214-258": [-1118, -94]}}, -{"id": 4211, "name": "Beach landscape, a tourism symbol.", "description": "A coconut tree, an umbrella, sand, and the sun shining are things you can find on this landscape. The Dominican Republic is known for its white-sand, turquoise-water, pristine beaches, and tropical landscapes that make the country's tourism its main economic sector. Accounting for 15% of the country's gross domestic product as of 2022,—a 3.8% increase on prepandemic figures—tourism managed to bring home a whooping $16 billion dollars for the Dominican GDP.\n\nSource: World Travel & Tourism Council (2023).", "links": {"subreddit": ["Dominican"], "discord": ["zDZMdUdS"]}, "path": {"250-258": [[-338, -816], [-302, -816], [-302, -792], [-338, -792]]}, "center": {"250-258": [-320, -804]}}, -{"id": 4212, "name": "ReksonGames Fox", "description": "ReksonGames a Content creator know for trolling Filian and stalling", "links": {"website": ["https://www.twitch.tv/reksongames"]}, "path": {"250-258": [[-1193, 103], [-1192, 102], [-1191, 102], [-1189, 104], [-1188, 104], [-1186, 102], [-1185, 102], [-1184, 103], [-1184, 111], [-1185, 111], [-1185, 112], [-1186, 113], [-1186, 114], [-1187, 115], [-1188, 116], [-1189, 116], [-1191, 114], [-1191, 113], [-1192, 112], [-1192, 111], [-1193, 110]]}, "center": {"250-258": [-1188, 108]}}, +{"id": 4205, "name": "Mouse Cursor", "description": "Mouse cursor", "links": {"subreddit": ["placestart"]}, "path": {"227-258, T": [[1415, -972], [1425, -981], [1425, -966], [1422, -970], [1419, -965], [1417, -966], [1419, -970], [1415, -971]]}, "center": {"227-258, T": [1421, -973]}}, +{"id": 4206, "name": "Logo of Rec Room", "description": "Rec Room is a popular cross-platform social game!", "links": {"website": ["https://rec.net"], "subreddit": ["recroom"], "discord": ["recroom"]}, "path": {"161-252, T": [[-948, -287], [-940, -287], [-940, -273], [-948, -273]]}, "center": {"161-252, T": [-944, -280]}}, +{"id": 4207, "name": "Giant Grapu", "description": "Grapu is the mascot of Green Lattice. This version in Grapu in particular is giant and yelling. This was made after streamer Spreen helped expand the area of green lattice.\n\nA heart is included in to show the community's love for the character.", "links": {"subreddit": ["greenlattice"]}, "path": {"250-258, T": [[1047, -794], [1046, -804], [1069, -820], [1082, -819], [1100, -803], [1099, -777], [1091, -767], [1101, -767], [1101, -762], [1088, -762], [1085, -765], [1083, -765], [1082, -761], [1067, -762], [1061, -764], [1056, -765], [1055, -771], [1051, -772], [1051, -777], [1057, -780], [1049, -780], [1048, -784], [1046, -786]]}, "center": {"250-258, T": [1076, -793]}}, +{"id": 4208, "name": "Tunisia", "description": "Tunisian territory with a traditional blue door", "links": {"subreddit": ["tunisia"]}, "path": {"250-258, T": [[-280, 827], [-280, 828], [-280, 825], [-279, 822], [-280, 822], [-280, 820], [-280, 818], [-279, 816], [-277, 816], [-280, 817], [-274, 817], [-271, 815], [-270, 816], [-267, 816], [-264, 816], [-261, 816], [-259, 817], [-257, 818], [-254, 817], [-254, 819], [-254, 821], [-253, 822], [-252, 823], [-251, 823], [-250, 823], [-249, 824], [-249, 826], [-250, 826], [-249, 828], [-252, 829], [-251, 828], [-254, 828], [-254, 829], [-256, 829], [-255, 828], [-257, 830], [-257, 831], [-259, 833], [-260, 834], [-261, 835], [-261, 837], [-262, 835], [-263, 835], [-265, 835], [-267, 835], [-268, 835], [-267, 834], [-270, 835], [-270, 833], [-269, 832], [-269, 831], [-269, 829], [-270, 827], [-272, 828], [-273, 828], [-275, 828], [-276, 828], [-278, 827], [-280, 828], [-281, 825], [-281, 823], [-281, 821], [-281, 818], [-281, 817], [-281, 816], [-281, 815], [-281, 814], [-257, 815], [-255, 818], [-251, 821], [-249, 824], [-249, 828], [-250, 829], [-252, 829], [-253, 829], [-253, 830], [-255, 830], [-255, 832], [-255, 833], [-256, 833], [-256, 834], [-257, 834], [-259, 834], [-259, 835], [-259, 836], [-261, 836], [-262, 836], [-265, 836], [-266, 836], [-269, 836], [-270, 836], [-270, 835], [-270, 831], [-270, 829], [-272, 829], [-273, 829], [-278, 829], [-280, 829], [-281, 829], [-280, 823], [-281, 814], [-268, 815], [-261, 815]]}, "center": {"250-258, T": [-276, 820]}}, +{"id": 4209, "name": "WJSN", "description": "WJSN (also known as Cosmic Girls) is a South Korean girl group under Starship Entertainment. They debuted on February 25, 2016. The group's current lineup is composed of 10 members: Seola, Bona, Exy, Soobin, Luda, Dawon, Eunseo, Yeoreum, Dayoung and Yeonjung.", "links": {"website": ["http://starship-ent.com/profile/musician/wjsn.php"], "subreddit": ["cosmicgirls"], "discord": ["wjsn"]}, "path": {"250-258, T": [[-1418, -352], [-1410, -352], [-1410, -343], [-1418, -343]]}, "center": {"250-258, T": [-1414, -347]}}, +{"id": 4210, "name": "Astolfo", "description": "Originating from the Japanese light novel and anime series \"Fate/Apocrypha,\" Astolfo is depicted as a male character, but his appearance and personality have led to the \"femboy\" interpretation within fandoms. The pixel art was created from r/femboy and r/astolfo. Jojo Bizaree's Adventure community was offering Chibi Sanctuary for multiple fandoms, one of them including femboys.", "links": {"subreddit": ["femboy", "astolfo"]}, "path": {"214-258, T": [[-1122, -99], [-1115, -99], [-1115, -91], [-1122, -90]]}, "center": {"214-258, T": [-1118, -94]}}, +{"id": 4211, "name": "Beach landscape, a tourism symbol.", "description": "A coconut tree, an umbrella, sand, and the sun shining are things you can find on this landscape. The Dominican Republic is known for its white-sand, turquoise-water, pristine beaches, and tropical landscapes that make the country's tourism its main economic sector. Accounting for 15% of the country's gross domestic product as of 2022,—a 3.8% increase on prepandemic figures—tourism managed to bring home a whooping $16 billion dollars for the Dominican GDP.\n\nSource: World Travel & Tourism Council (2023).", "links": {"subreddit": ["Dominican"], "discord": ["zDZMdUdS"]}, "path": {"250-258, T": [[-338, -816], [-302, -816], [-302, -792], [-338, -792]]}, "center": {"250-258, T": [-320, -804]}}, +{"id": 4212, "name": "ReksonGames Fox", "description": "ReksonGames a Content creator know for trolling Filian and stalling", "links": {"website": ["https://www.twitch.tv/reksongames"]}, "path": {"250-258, T": [[-1193, 103], [-1192, 102], [-1191, 102], [-1189, 104], [-1188, 104], [-1186, 102], [-1185, 102], [-1184, 103], [-1184, 111], [-1185, 111], [-1185, 112], [-1186, 113], [-1186, 114], [-1187, 115], [-1188, 116], [-1189, 116], [-1191, 114], [-1191, 113], [-1192, 112], [-1192, 111], [-1193, 110]]}, "center": {"250-258, T": [-1188, 108]}}, {"id": 4213, "name": "Lance Reddick", "description": "A beloved voice actor known for portraying the character \"Commander Zavala\" in the popular game franchise Destiny. Reddick passed away on March 17th 2023 due to heart and artery disease. The Destiny community still mourns his death and honors his memory with a pixelated tribute that reads: \"Through boldness to the stars.\"", "links": {"website": ["https://en.wikipedia.org/wiki/Lance_Reddick#Early_life"], "subreddit": ["DestinyTheGame"]}, "path": {"223-239": [[-805, 481], [-710, 481], [-710, 500], [-805, 499]]}, "center": {"223-239": [-719, 491]}}, -{"id": 4214, "name": "Paçoca", "description": "Paçoca is a traditional Brazilian candy made of peanuts.", "links": {}, "path": {"250-258": [[-712, -669], [-702, -669], [-702, -656], [-714, -655]]}, "center": {"250-258": [-707, -661]}}, -{"id": 4215, "name": "Completo (Chilean Hot-Dog)", "description": "The \"Completo\" is a type of Chilean hot-dog, considered one of the most important meals in the country, un manjars.", "links": {"website": ["https://es.wikipedia.org/wiki/Completo_(gastronomía)"]}, "path": {"250-258": [[-942, -812], [-945, -810], [-945, -807], [-943, -805], [-932, -795], [-929, -796], [-927, -798], [-927, -800], [-938, -811]]}, "center": {"250-258": [-938, -806]}}, -{"id": 4216, "name": "r/Starwars_Place finds refuge", "description": "After their main drawing was destroyed, and unable to gain a foothold, r/Starwars_Place found an ally. The Ireland flag allowed them to leave their mark on the canvas, their first step into regaining their place on the canvas.", "links": {"subreddit": ["StarWars_Place"], "discord": ["TheGalacticRepublic"]}, "path": {"250-258": [[282, -151], [281, -132], [318, -133], [317, -151]]}, "center": {"250-258": [299, -142]}}, -{"id": 4217, "name": "Incredibox", "description": "Incredibox is a music video game, developed and published by the French company So Far So Good (SFSG). The concept of the game is users dragging and dropping sound icons on different characters to make music. The character depicted is from Incredibox Version 9 named 8-Bit.", "links": {"website": ["https://www.incredibox.com", "https://www.youtube.com/@incredibox"], "subreddit": ["IncrediboxSFSG"]}, "path": {"180-258": [[-1445, 557], [-1427, 557], [-1427, 574], [-1445, 574]]}, "center": {"180-258": [-1436, 566]}}, -{"id": 4218, "name": "Wheatley (Portal)", "description": "Wheatley is a fictional artificial intelligence from the Portal franchise. Wheatley first appeared in the 2011 video game Portal 2.", "links": {"subreddit": ["portal"]}, "path": {"250-258": [[58, -712], [58, -710], [59, -709], [59, -699], [58, -699], [58, -696], [70, -697], [72, -709], [69, -712]]}, "center": {"250-258": [65, -706]}}, -{"id": 4219, "name": "Camiseta Alexis Sánchez (Olympique de Marsella)", "description": "Shirt worn by the Chilean soccer player Alexis Sánchez, in his current club, Olympique de Marseille.", "links": {"website": ["https://www.emol.com/noticias/Deportes/2022/08/14/1069872/alexis-sanchez-debut-olympique-marsella.html"]}, "path": {"250-258": [[-1365, -827], [-1360, -829], [-1346, -828], [-1340, -825], [-1337, -814], [-1338, -811], [-1341, -811], [-1342, -790], [-1366, -790], [-1366, -812], [-1370, -812], [-1372, -814], [-1374, -818], [-1369, -822], [-1365, -828], [-1360, -828]]}, "center": {"250-258": [-1353, -815]}}, -{"id": 4220, "name": "Noelle Holiday", "description": "A major Character in Deltarune, here depicted in doll form. She is the daughter of the Mayor of Hometown, as well as the neighbor and classmate of Kris. She has a crush on Susie that is barely disguised, and has a knack for finding game glitches as well as an interest in cryptids and all things Christmas. Her older sister is currently missing.\n\nIn chapter 2 of Deltarune she becomes a party member when she is pulled into a Dark World formed in the Librarby (spelled correctly). She joins Kris, and can be led to do some very chilling things.", "links": {}, "path": {"227-259": [[310, 963], [310, 961], [312, 960], [313, 960], [313, 958], [312, 957], [311, 956], [311, 954], [312, 951], [311, 950], [311, 946], [315, 944], [320, 944], [321, 945], [322, 946], [323, 945], [325, 945], [325, 946], [325, 948], [324, 948], [324, 953], [325, 952], [325, 954], [324, 954], [324, 958], [323, 959], [322, 962], [321, 963], [320, 964], [321, 965], [314, 965], [313, 964], [311, 964]]}, "center": {"227-259": [318, 954]}}, -{"id": 4221, "name": "Minichi 1", "description": "A small depiction of \"Machi\", an oc by the trans digital-artist with the same moniker.\n\nThis pixelart was initially mistaken for Marisa Kirisame from 東方Project (despite having a different color-palette and suspiciously feline features.)\n\nA second Minichi can be found at -717, 242", "links": {"subreddit": ["transplace"]}, "path": {"250-258": [[176, 77], [176, 85], [184, 85], [184, 78]]}, "center": {"250-258": [180, 81]}}, -{"id": 4222, "name": "Flag of Senegal", "description": "Senegal (Officially known as the Republic of Senegal) is a country in west Africa that lies on the Atlantic Ocean coastline. \n\nThis artwork depicts its current flag.", "links": {"subreddit": ["senegal"]}, "path": {"250-258": [[432, -324], [432, -304], [452, -304], [452, -324]]}, "center": {"250-258": [442, -314]}}, +{"id": 4214, "name": "Paçoca", "description": "Paçoca is a traditional Brazilian candy made of peanuts.", "links": {}, "path": {"250-258, T": [[-712, -669], [-702, -669], [-702, -656], [-714, -655]]}, "center": {"250-258, T": [-707, -661]}}, +{"id": 4215, "name": "Completo (Chilean Hot-Dog)", "description": "The \"Completo\" is a type of Chilean hot-dog, considered one of the most important meals in the country, un manjars.", "links": {"website": ["https://es.wikipedia.org/wiki/Completo_(gastronomía)"]}, "path": {"250-258, T": [[-942, -812], [-945, -810], [-945, -807], [-943, -805], [-932, -795], [-929, -796], [-927, -798], [-927, -800], [-938, -811]]}, "center": {"250-258, T": [-938, -806]}}, +{"id": 4216, "name": "r/Starwars_Place finds refuge", "description": "After their main drawing was destroyed, and unable to gain a foothold, r/Starwars_Place found an ally. The Ireland flag allowed them to leave their mark on the canvas, their first step into regaining their place on the canvas.", "links": {"subreddit": ["StarWars_Place"], "discord": ["TheGalacticRepublic"]}, "path": {"250-258, T": [[282, -151], [281, -132], [318, -133], [317, -151]]}, "center": {"250-258, T": [299, -142]}}, +{"id": 4217, "name": "Incredibox", "description": "Incredibox is a music video game, developed and published by the French company So Far So Good (SFSG). The concept of the game is users dragging and dropping sound icons on different characters to make music. The character depicted is from Incredibox Version 9 named 8-Bit.", "links": {"website": ["https://www.incredibox.com", "https://www.youtube.com/@incredibox"], "subreddit": ["IncrediboxSFSG"]}, "path": {"180-258, T": [[-1445, 557], [-1427, 557], [-1427, 574], [-1445, 574]]}, "center": {"180-258, T": [-1436, 566]}}, +{"id": 4218, "name": "Wheatley (Portal)", "description": "Wheatley is a fictional artificial intelligence from the Portal franchise. Wheatley first appeared in the 2011 video game Portal 2.", "links": {"subreddit": ["portal"]}, "path": {"250-258, T": [[58, -712], [58, -710], [59, -709], [59, -699], [58, -699], [58, -696], [70, -697], [72, -709], [69, -712]]}, "center": {"250-258, T": [65, -706]}}, +{"id": 4219, "name": "Camiseta Alexis Sánchez (Olympique de Marsella)", "description": "Shirt worn by the Chilean soccer player Alexis Sánchez, in his current club, Olympique de Marseille.", "links": {"website": ["https://www.emol.com/noticias/Deportes/2022/08/14/1069872/alexis-sanchez-debut-olympique-marsella.html"]}, "path": {"250-258, T": [[-1365, -827], [-1360, -829], [-1346, -828], [-1340, -825], [-1337, -814], [-1338, -811], [-1341, -811], [-1342, -790], [-1366, -790], [-1366, -812], [-1370, -812], [-1372, -814], [-1374, -818], [-1369, -822], [-1365, -828], [-1360, -828]]}, "center": {"250-258, T": [-1353, -815]}}, +{"id": 4220, "name": "Noelle Holiday", "description": "A major Character in Deltarune, here depicted in doll form. She is the daughter of the Mayor of Hometown, as well as the neighbor and classmate of Kris. She has a crush on Susie that is barely disguised, and has a knack for finding game glitches as well as an interest in cryptids and all things Christmas. Her older sister is currently missing.\n\nIn chapter 2 of Deltarune she becomes a party member when she is pulled into a Dark World formed in the Librarby (spelled correctly). She joins Kris, and can be led to do some very chilling things.", "links": {}, "path": {"227-259, T": [[310, 963], [310, 961], [312, 960], [313, 960], [313, 958], [312, 957], [311, 956], [311, 954], [312, 951], [311, 950], [311, 946], [315, 944], [320, 944], [321, 945], [322, 946], [323, 945], [325, 945], [325, 946], [325, 948], [324, 948], [324, 953], [325, 952], [325, 954], [324, 954], [324, 958], [323, 959], [322, 962], [321, 963], [320, 964], [321, 965], [314, 965], [313, 964], [311, 964]]}, "center": {"227-259, T": [318, 954]}}, +{"id": 4221, "name": "Minichi 1", "description": "A small depiction of \"Machi\", an oc by the trans digital-artist with the same moniker.\n\nThis pixelart was initially mistaken for Marisa Kirisame from 東方Project (despite having a different color-palette and suspiciously feline features.)\n\nA second Minichi can be found at -717, 242", "links": {"subreddit": ["transplace"]}, "path": {"250-258, T": [[176, 77], [176, 85], [184, 85], [184, 78]]}, "center": {"250-258, T": [180, 81]}}, +{"id": 4222, "name": "Flag of Senegal", "description": "Senegal (Officially known as the Republic of Senegal) is a country in west Africa that lies on the Atlantic Ocean coastline. \n\nThis artwork depicts its current flag.", "links": {"subreddit": ["senegal"]}, "path": {"250-258, T": [[432, -324], [432, -304], [452, -304], [452, -324]]}, "center": {"250-258, T": [442, -314]}}, {"id": 4223, "name": "Nordic Ralsei", "description": "A version of Ralsei from Toby Fox's Deltarune that was drawn on the Danish flag while the Danes were asleep. Operation Grasslight was enacted in hopes of preserving him, but thanks to many members of the Nordic discord taking a liking to him, he was allowed to live even after the plan failed. Ultimately, however, he was erased by members of the Danish subreddit; a dark day in History.", "links": {"subreddit": ["Deltarune"], "discord": ["deltarune"]}, "path": {"122-157": [[-162, -228], [-163, -230], [-163, -232], [-162, -233], [-161, -234], [-163, -235], [-164, -236], [-164, -238], [-167, -240], [-167, -241], [-164, -242], [-162, -241], [-163, -245], [-160, -248], [-159, -246], [-158, -247], [-155, -248], [-154, -247], [-152, -247], [-151, -244], [-152, -242], [-151, -242], [-150, -241], [-149, -238], [-150, -237], [-151, -236], [-152, -236], [-152, -233], [-151, -232], [-150, -230], [-151, -229], [-152, -229], [-153, -228], [-156, -228], [-157, -229], [-158, -229], [-159, -228]]}, "center": {"122-157": [-157, -238]}}, -{"id": 4224, "name": "r/Polaroid", "description": "The company founded by Edwin H. Land that pioneered integral film, also known as instant film. Which eventually became a catch-all name to all instant films. Although the company floundered after the 2001 bankruptcy, a dedicated team of engineers, chemists and enthusiasts resurrected the company from the ashes via \"The Impossible Project\", which eventually brought back the Polaroid namesake, as well as the iconic square instant film to the market.", "links": {"website": ["https://www.polaroid.com/"], "subreddit": ["polaroid"]}, "path": {"209-258": [[-1006, -323], [-1000, -323], [-1000, -316], [-1006, -316]]}, "center": {"209-258": [-1003, -319]}}, -{"id": 4225, "name": "Artwork of Violet Evergarden", "description": "A smaller and chibi version of Violet Evergarden with her brooch. The background this year is orange instead of blue, like in r/place 2022.", "links": {"website": ["https://violet-evergarden.fandom.com/wiki/Violet_Evergarden_Wikia"], "subreddit": ["VioletEvergarden"]}, "path": {"241-253": [[-362, -968], [-344, -968], [-344, -949], [-362, -949]]}, "center": {"241-253": [-353, -958]}}, -{"id": 4226, "name": "Cóndor", "description": "It is considered the national bird of Chile (being represented in the national shield). It symbolizes majesty and freedom.\n\nThis type of bird lives along the Andes Mountains.", "links": {"website": ["https://es.wikipedia.org/wiki/Vultur_gryphus"]}, "path": {"250-258": [[-745, -906], [-743, -901], [-734, -892], [-729, -895], [-727, -894], [-721, -892], [-721, -890], [-712, -892], [-711, -894], [-709, -892], [-709, -888], [-718, -882], [-724, -880], [-736, -882], [-741, -879], [-748, -881], [-749, -884], [-743, -886], [-741, -887], [-748, -893], [-753, -896], [-751, -899], [-750, -903], [-750, -906]]}, "center": {"250-258": [-727, -887]}}, -{"id": 4227, "name": "Jevil", "description": "The secret boss of Deltarune's first chapter, a jester who was imprisoned for causing chaos (though he'd have you believe it was everyone else who was imprisoned instead).", "links": {"subreddit": ["deltarune"]}, "path": {"208-258": [[301, 947], [300, 947], [300, 943], [301, 942], [302, 941], [301, 939], [303, 939], [302, 937], [302, 935], [301, 932], [302, 931], [304, 932], [304, 928], [301, 929], [300, 930], [300, 928], [303, 925], [307, 925], [308, 926], [309, 927], [310, 926], [311, 926], [312, 925], [316, 925], [317, 926], [318, 927], [318, 928], [319, 929], [319, 931], [320, 931], [320, 932], [321, 933], [320, 934], [319, 933], [318, 933], [316, 933], [316, 936], [315, 937], [314, 938], [314, 939], [315, 939], [315, 940], [314, 941], [313, 941], [313, 942], [314, 943], [318, 944], [318, 942], [317, 942], [317, 940], [319, 940], [320, 941], [322, 941], [322, 943], [320, 943], [320, 944], [315, 944], [313, 945], [312, 946], [311, 947], [310, 950], [308, 949], [306, 948], [305, 949], [302, 949], [301, 948]]}, "center": {"208-258": [310, 933]}}, -{"id": 4228, "name": "18/03", "description": "03/18/2023 It was an emotional day. It is the date where ElGlogloKing declared his love to Emikukis.", "links": {"website": ["https://www.twitch.tv/elglogloking", "https://www.twitch.tv/emikukis", "https://www.youtube.com/watch?v=MFkSW_6xwnU"], "discord": ["glogloarmy"]}, "path": {"250-258": [[-1458, -619], [-1458, -611], [-1427, -611], [-1427, -618], [-1442, -621], [-1442, -618], [-1442, -617], [-1441, -619]]}, "center": {"250-258": [-1438, -616]}}, -{"id": 4229, "name": "Ibishu Pigeon", "description": "An Ibishu Pigeon from the vehicle simulation game BeamNG.drive. The windshield contains the BeamNG logo and an outline of an 'A', serving as a tribute to a deceased BeamNG player named Auggie. It is also holding an orange heart, after an alliance with the pixel art beside it.", "links": {"website": ["https://www.beamng.com/game/"], "subreddit": ["BeamNG"], "discord": ["YKcSWAy"]}, "path": {"172-258": [[-1069, -5], [-1073, -1], [-1073, 8], [-1069, 12], [-1060, 12], [-1056, 8], [-1056, -1], [-1060, -5]]}, "center": {"172-258": [-1064, 4]}}, +{"id": 4224, "name": "r/Polaroid", "description": "The company founded by Edwin H. Land that pioneered integral film, also known as instant film. Which eventually became a catch-all name to all instant films. Although the company floundered after the 2001 bankruptcy, a dedicated team of engineers, chemists and enthusiasts resurrected the company from the ashes via \"The Impossible Project\", which eventually brought back the Polaroid namesake, as well as the iconic square instant film to the market.", "links": {"website": ["https://www.polaroid.com/"], "subreddit": ["polaroid"]}, "path": {"209-258, T": [[-1006, -323], [-1000, -323], [-1000, -316], [-1006, -316]]}, "center": {"209-258, T": [-1003, -319]}}, +{"id": 4225, "name": "Artwork of Violet Evergarden", "description": "A smaller and chibi version of Violet Evergarden with her brooch. The background this year is orange instead of blue, like in r/place 2022.", "links": {"website": ["https://violet-evergarden.fandom.com/wiki/Violet_Evergarden_Wikia"], "subreddit": ["VioletEvergarden"]}, "path": {"241-253, T": [[-362, -968], [-344, -968], [-344, -949], [-362, -949]]}, "center": {"241-253, T": [-353, -958]}}, +{"id": 4226, "name": "Cóndor", "description": "It is considered the national bird of Chile (being represented in the national shield). It symbolizes majesty and freedom.\n\nThis type of bird lives along the Andes Mountains.", "links": {"website": ["https://es.wikipedia.org/wiki/Vultur_gryphus"]}, "path": {"250-258, T": [[-745, -906], [-743, -901], [-734, -892], [-729, -895], [-727, -894], [-721, -892], [-721, -890], [-712, -892], [-711, -894], [-709, -892], [-709, -888], [-718, -882], [-724, -880], [-736, -882], [-741, -879], [-748, -881], [-749, -884], [-743, -886], [-741, -887], [-748, -893], [-753, -896], [-751, -899], [-750, -903], [-750, -906]]}, "center": {"250-258, T": [-727, -887]}}, +{"id": 4227, "name": "Jevil", "description": "The secret boss of Deltarune's first chapter, a jester who was imprisoned for causing chaos (though he'd have you believe it was everyone else who was imprisoned instead).", "links": {"subreddit": ["deltarune"]}, "path": {"208-258, T": [[301, 947], [300, 947], [300, 943], [301, 942], [302, 941], [301, 939], [303, 939], [302, 937], [302, 935], [301, 932], [302, 931], [304, 932], [304, 928], [301, 929], [300, 930], [300, 928], [303, 925], [307, 925], [308, 926], [309, 927], [310, 926], [311, 926], [312, 925], [316, 925], [317, 926], [318, 927], [318, 928], [319, 929], [319, 931], [320, 931], [320, 932], [321, 933], [320, 934], [319, 933], [318, 933], [316, 933], [316, 936], [315, 937], [314, 938], [314, 939], [315, 939], [315, 940], [314, 941], [313, 941], [313, 942], [314, 943], [318, 944], [318, 942], [317, 942], [317, 940], [319, 940], [320, 941], [322, 941], [322, 943], [320, 943], [320, 944], [315, 944], [313, 945], [312, 946], [311, 947], [310, 950], [308, 949], [306, 948], [305, 949], [302, 949], [301, 948]]}, "center": {"208-258, T": [310, 933]}}, +{"id": 4228, "name": "18/03", "description": "03/18/2023 It was an emotional day. It is the date where ElGlogloKing declared his love to Emikukis.", "links": {"website": ["https://www.twitch.tv/elglogloking", "https://www.twitch.tv/emikukis", "https://www.youtube.com/watch?v=MFkSW_6xwnU"], "discord": ["glogloarmy"]}, "path": {"250-258, T": [[-1458, -619], [-1458, -611], [-1427, -611], [-1427, -618], [-1442, -621], [-1442, -618], [-1442, -617], [-1441, -619]]}, "center": {"250-258, T": [-1438, -616]}}, +{"id": 4229, "name": "Ibishu Pigeon", "description": "An Ibishu Pigeon from the vehicle simulation game BeamNG.drive. The windshield contains the BeamNG logo and an outline of an 'A', serving as a tribute to a deceased BeamNG player named Auggie. It is also holding an orange heart, after an alliance with the pixel art beside it.", "links": {"website": ["https://www.beamng.com/game/"], "subreddit": ["BeamNG"], "discord": ["YKcSWAy"]}, "path": {"172-258, T": [[-1069, -5], [-1073, -1], [-1073, 8], [-1069, 12], [-1060, 12], [-1056, 8], [-1056, -1], [-1060, -5]]}, "center": {"172-258, T": [-1064, 4]}}, {"id": 4230, "name": "Operation Grasslight", "description": "A plan executed by members of the Deltarune discord (proposed by user dstyKetchip) to fill a sectioned off chunk of Denmark's flag with green \"grass\" in hopes of gaslighting them into forgetting that it was ever part of their territory so that the Ralsei they drew there might survive. Ultimately ended in failure.", "links": {"subreddit": ["deltarune"], "discord": ["C5GTZZbE"]}, "path": {"120-147": [[-196, -178], [-145, -178], [-145, -250], [-196, -251]]}, "center": {"120-147": [-170, -214]}}, -{"id": 4231, "name": "Car frog", "description": "*hop* Save your game?\n\nIn Mother 3, players can save their progress by talking to frogs. This frog in particular has become renowned among fans, thanks to it's driving skills.\n\nOriginally situated to the right, alongside a Mother 3 logo and mini Mr.Saturn, this frog was rebuilt by kind strangers after being destroyed by a streamer.", "links": {"website": ["https://starmen.net/"], "subreddit": ["earthbound"]}, "path": {"250-258": [[-789, -293], [-789, -290], [-787, -289], [-785, -287], [-784, -286], [-782, -285], [-781, -286], [-774, -286], [-774, -290], [-776, -290], [-777, -291], [-777, -293], [-776, -294], [-776, -298], [-781, -298], [-782, -297], [-783, -297], [-783, -294], [-788, -294], [-789, -294]]}, "center": {"250-258": [-781, -290]}}, -{"id": 4232, "name": "TULA (La bebida de todos los Chilenos)", "description": "During 2007, a group of young students achieved digital immortality thanks to a viral video that continues to be viewed by thousands of people to this day.\n\nIt is about the well-known commercial for a fantasy drink called Tula, whose slogan - \"¿Qué importa el nombre?\" (What does the name matter?) - marked an entire generation.", "links": {"website": ["https://www.latercera.com/mouse/tula-bebida-energetica/"]}, "path": {"250-258": [[-859, -784], [-863, -781], [-863, -762], [-859, -759], [-852, -759], [-849, -762], [-849, -781], [-854, -785]]}, "center": {"250-258": [-856, -772]}}, -{"id": 4233, "name": "BTS \"You never walk alone\"", "description": "The bus stop from BTS' 2nd special album's cover. The album is titled \"You never walk alone\"", "links": {"website": ["https://ibighit.com/bts/eng/discography/detail/you_never_walk_alone.html"], "subreddit": ["bangtan"]}, "path": {"243-258": [[-1271, 407], [-1261, 407], [-1261, 405], [-1256, 406], [-1255, 412], [-1255, 414], [-1256, 414], [-1256, 419], [-1260, 420], [-1266, 427], [-1266, 428], [-1287, 428], [-1287, 422], [-1272, 407]]}, "center": {"243-258": [-1270, 418]}}, -{"id": 4234, "name": "University of the Philippines", "description": "University of the Philippines (UP) is the national university of the Philippines. \n\nThe colors maroon and forest green are the university's official colors, while the sunflower is a prominent symbol which represents devotion and loyalty for the UP community and for the country.", "links": {"website": ["https://up.edu.ph/"], "subreddit": ["peyups", "Philippines"]}, "path": {"250-258": [[-1222, 28], [-1222, 35], [-1208, 35], [-1208, 28]]}, "center": {"250-258": [-1215, 32]}}, -{"id": 4235, "name": "Nightcord Hatsune Miku", "description": "Niigo Miku (also 25 Miku), who is a variant of Hatsune Miku from the music game, Hatsune Miku: Colorful Stage!. There are five groups (she belongs to 25ji at nightcord, 25時、ナイトコードで) in this game, every group has its own Sekai (世界) and virtual singer design. One of the five Sekai is the Empty SEKAI where she lives in. In Empty SEKAI, her appearance and personality are somewhat different. Initially, as the group's sole VIRTUAL SINGER, she comforts its members and helps resolve their problems. She is quite mellow, and has a particularly close relationship with Mafuyu; she motivates the group members to recognize their true feelings.", "links": {"website": ["https://www.sekaipedia.org/wiki/25-ji,_Nightcord_de."], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"250-258": [[-1353, 102], [-1339, 102], [-1339, 119], [-1353, 119]]}, "center": {"250-258": [-1346, 111]}}, -{"id": 4236, "name": "TuYo", "description": "Chilean wafer, filled with peanut butter and covered with a chocolate coating.", "links": {"website": ["https://es.wikipedia.org/wiki/Costa_(empresa)"]}, "path": {"250-258": [[-897, -817], [-870, -817], [-870, -808], [-897, -808]]}, "center": {"250-258": [-883, -812]}}, -{"id": 4237, "name": "Super8", "description": "One of the most famous sweets in Chile.\nIt is a wafer and cream dipped in chocolate.\n\n\"Lo que le da el nombre son sus ocho capas de oblea y crema bañada en chocolate\". (Pedro Magni, consumer Marketing manager de Chocholate Nestlé)", "links": {"website": ["https://www.nestle.cl/brands/allbrands/super-ocho", "https://www.soychile.cl/Santiago/Sociedad/2016/09/20/418936/Por-que-el-Super-8-se-llama-asi.aspx"]}, "path": {"250-258": [[-906, -827], [-906, -819], [-870, -819], [-870, -827]]}, "center": {"250-258": [-888, -823]}}, -{"id": 4238, "name": "Kris Dreemur", "description": "The main protagonist of Deltarune. Controlled by the player. \n\nHere Kris is depicted in their Dark World form. Headphones added in collaberation with the music group logo to Kris' right.", "links": {"subreddit": ["deltarune"]}, "path": {"220-259": [[331, 965], [330, 964], [330, 955], [342, 955], [343, 957], [343, 964], [342, 965]]}, "center": {"220-259": [337, 960]}}, +{"id": 4231, "name": "Car frog", "description": "*hop* Save your game?\n\nIn Mother 3, players can save their progress by talking to frogs. This frog in particular has become renowned among fans, thanks to it's driving skills.\n\nOriginally situated to the right, alongside a Mother 3 logo and mini Mr.Saturn, this frog was rebuilt by kind strangers after being destroyed by a streamer.", "links": {"website": ["https://starmen.net/"], "subreddit": ["earthbound"]}, "path": {"250-258, T": [[-789, -293], [-789, -290], [-787, -289], [-785, -287], [-784, -286], [-782, -285], [-781, -286], [-774, -286], [-774, -290], [-776, -290], [-777, -291], [-777, -293], [-776, -294], [-776, -298], [-781, -298], [-782, -297], [-783, -297], [-783, -294], [-788, -294], [-789, -294]]}, "center": {"250-258, T": [-781, -290]}}, +{"id": 4232, "name": "TULA (La bebida de todos los Chilenos)", "description": "During 2007, a group of young students achieved digital immortality thanks to a viral video that continues to be viewed by thousands of people to this day.\n\nIt is about the well-known commercial for a fantasy drink called Tula, whose slogan - \"¿Qué importa el nombre?\" (What does the name matter?) - marked an entire generation.", "links": {"website": ["https://www.latercera.com/mouse/tula-bebida-energetica/"]}, "path": {"250-258, T": [[-859, -784], [-863, -781], [-863, -762], [-859, -759], [-852, -759], [-849, -762], [-849, -781], [-854, -785]]}, "center": {"250-258, T": [-856, -772]}}, +{"id": 4233, "name": "BTS \"You never walk alone\"", "description": "The bus stop from BTS' 2nd special album's cover. The album is titled \"You never walk alone\"", "links": {"website": ["https://ibighit.com/bts/eng/discography/detail/you_never_walk_alone.html"], "subreddit": ["bangtan"]}, "path": {"243-258, T": [[-1271, 407], [-1261, 407], [-1261, 405], [-1256, 406], [-1255, 412], [-1255, 414], [-1256, 414], [-1256, 419], [-1260, 420], [-1266, 427], [-1266, 428], [-1287, 428], [-1287, 422], [-1272, 407]]}, "center": {"243-258, T": [-1270, 418]}}, +{"id": 4234, "name": "University of the Philippines", "description": "University of the Philippines (UP) is the national university of the Philippines. \n\nThe colors maroon and forest green are the university's official colors, while the sunflower is a prominent symbol which represents devotion and loyalty for the UP community and for the country.", "links": {"website": ["https://up.edu.ph/"], "subreddit": ["peyups", "Philippines"]}, "path": {"250-258, T": [[-1222, 28], [-1222, 35], [-1208, 35], [-1208, 28]]}, "center": {"250-258, T": [-1215, 32]}}, +{"id": 4235, "name": "Nightcord Hatsune Miku", "description": "Niigo Miku (also 25 Miku), who is a variant of Hatsune Miku from the music game, Hatsune Miku: Colorful Stage!. There are five groups (she belongs to 25ji at nightcord, 25時、ナイトコードで) in this game, every group has its own Sekai (世界) and virtual singer design. One of the five Sekai is the Empty SEKAI where she lives in. In Empty SEKAI, her appearance and personality are somewhat different. Initially, as the group's sole VIRTUAL SINGER, she comforts its members and helps resolve their problems. She is quite mellow, and has a particularly close relationship with Mafuyu; she motivates the group members to recognize their true feelings.", "links": {"website": ["https://www.sekaipedia.org/wiki/25-ji,_Nightcord_de."], "subreddit": ["hatsune"], "discord": ["hatsune"]}, "path": {"250-258, T": [[-1353, 102], [-1339, 102], [-1339, 119], [-1353, 119]]}, "center": {"250-258, T": [-1346, 111]}}, +{"id": 4236, "name": "TuYo", "description": "Chilean wafer, filled with peanut butter and covered with a chocolate coating.", "links": {"website": ["https://es.wikipedia.org/wiki/Costa_(empresa)"]}, "path": {"250-258, T": [[-897, -817], [-870, -817], [-870, -808], [-897, -808]]}, "center": {"250-258, T": [-883, -812]}}, +{"id": 4237, "name": "Super8", "description": "One of the most famous sweets in Chile.\nIt is a wafer and cream dipped in chocolate.\n\n\"Lo que le da el nombre son sus ocho capas de oblea y crema bañada en chocolate\". (Pedro Magni, consumer Marketing manager de Chocholate Nestlé)", "links": {"website": ["https://www.nestle.cl/brands/allbrands/super-ocho", "https://www.soychile.cl/Santiago/Sociedad/2016/09/20/418936/Por-que-el-Super-8-se-llama-asi.aspx"]}, "path": {"250-258, T": [[-906, -827], [-906, -819], [-870, -819], [-870, -827]]}, "center": {"250-258, T": [-888, -823]}}, +{"id": 4238, "name": "Kris Dreemur", "description": "The main protagonist of Deltarune. Controlled by the player. \n\nHere Kris is depicted in their Dark World form. Headphones added in collaberation with the music group logo to Kris' right.", "links": {"subreddit": ["deltarune"]}, "path": {"220-259, T": [[331, 965], [330, 964], [330, 955], [342, 955], [343, 957], [343, 964], [342, 965]]}, "center": {"220-259, T": [337, 960]}}, {"id": 4239, "name": "The Original Starwalker", "description": "Secret character in Deltarune. \nHe is the original.", "links": {"subreddit": ["Deltarune"]}, "path": {"206-247": [[299, 966], [300, 963], [302, 963], [302, 959], [301, 958], [299, 957], [300, 955], [301, 955], [302, 954], [303, 953], [304, 952], [305, 951], [309, 956], [311, 957], [310, 958], [309, 958], [308, 959], [308, 963], [309, 963], [310, 964], [311, 965], [311, 966], [306, 966], [306, 961], [305, 960], [304, 961], [304, 966]]}, "center": {"206-247": [305, 956]}}, -{"id": 4240, "name": "SHINee", "description": "SHINee is a K-pop group that debuted on May 25, 2008 under SM Entertainment. Their fandom name is the SHINee World, shortened as Shawol, and their official color is pearl aqua green. SHINee was the very first group to win the rookie grandslam.\n\nThis design highlights the group's lightstick, the Shatting Star. To the left are the colors representing each member, from eldest to maknae:\nYellow - Onew\nBlue - Jonghyun\nPink - Key\nRed - Minho\nGreen - Taemin\n\nSHINee is also the first K-pop group where each member has reached #1 on the Worldwide iTunes Album Chart as solo artists. The colors at the top of this design represents the members' solo debut albums, known in the fandom as the plagiarism series. From the first release to the latest:\nWhite - Taemin's Ace\nGreen - Jonghyun's Base\nLime - Key's Face\nBlue - Onew's Voice\nBlack - Minho's Chase\n\nThank you to the r/kpop, r/bangtan, and r/twice communities for this spot in this year's pixel war.", "links": {"website": ["https://www.twitter.com/SHINee"], "subreddit": ["SHINee"]}, "path": {"250-258": [[-80, -873], [-79, -873], [-78, -873], [-77, -873], [-76, -873], [-75, -873], [-74, -873], [-73, -873], [-72, -873], [-71, -873], [-71, -872], [-71, -871], [-71, -870], [-71, -869], [-71, -868], [-71, -867], [-71, -866], [-71, -865], [-71, -864], [-72, -864], [-73, -864], [-74, -864], [-75, -864], [-76, -864], [-77, -864], [-78, -864], [-79, -864], [-80, -864], [-80, -865], [-80, -866], [-80, -867], [-80, -868], [-80, -869], [-80, -870], [-80, -871], [-80, -872]]}, "center": {"250-258": [-75, -868]}}, -{"id": 4241, "name": "choking hawks scoreboard from r/saints & r/patriots", "description": "r/saints & r/patriots choking hawks marker (logos located at 1471, -676)", "links": {"subreddit": ["saints", "patriots"]}, "path": {"166-258": [[-529, 957], [-530, 957], [-511, 957], [-510, 957], [-510, 965], [-531, 965], [-531, 957]]}, "center": {"166-258": [-520, 961]}}, -{"id": 4242, "name": "Hyouka", "description": "Hyouka is a 2001 Japanese mystery novel written by Honobu Yonezawa. It is the first volume of the Classic Literature Club series. A manga adaptation drawn by Taskohna began serialization in the March 2012 issue of Kadokawa Shoten's Shōnen Ace. A 22-episode anime adaptation produced by Kyoto Animation and directed by Yasuhiro Takemoto aired from April 22 to September 16, 2012.", "links": {"website": ["https://hyouka.fandom.com/wiki/Hyouka_Wiki"], "subreddit": ["hyouka"]}, "path": {"250-258": [[-1289, -661], [-1307, -661], [-1307, -660], [-1333, -660], [-1333, -650], [-1289, -650]]}, "center": {"250-258": [-1294, -655]}}, -{"id": 4243, "name": "BMO", "description": "The Robot character \"BMO\" from popular cartoon \"Adventure Time\"", "links": {"website": ["https://www.cartoonnetworkhq.com/"], "subreddit": ["adventuretime"]}, "path": {"250-258": [[1206, -875], [1215, -875], [1215, -864], [1206, -864]]}, "center": {"250-258": [1211, -869]}}, -{"id": 4244, "name": "Lucas", "description": "Lucas is the main protagonist of the 2006 GBA game, Mother 3. A gentle boy, he is forced to mature quickly, as his quaint life takes a turn following the arrival of strange people in pig costumes. \n\nThis is one of two Lucas sprites present on the canvas.", "links": {"website": ["https://starmen.net/"], "subreddit": ["earthbound"]}, "path": {"250-258": [[-1087, -966], [-1086, -966], [-1085, -965], [-1081, -965], [-1078, -961], [-1077, -957], [-1081, -953], [-1085, -943], [-1088, -942], [-1089, -943], [-1088, -945], [-1090, -947], [-1090, -949], [-1087, -953], [-1091, -957], [-1091, -958], [-1090, -961], [-1088, -965]]}, "center": {"250-258": [-1084, -959]}}, -{"id": 4245, "name": "Concerned Ape Logo", "description": "Logo for video game developer Eric Barone, otherwise known as ConcernedApe.", "links": {"website": ["https://www.stardewvalley.net/author/concernedape/"], "subreddit": ["StardewValley", "hauntedchocolatier"]}, "path": {"250-258": [[1286, 224], [1286, 193], [1327, 193], [1327, 224]]}, "center": {"250-258": [1307, 209]}}, -{"id": 4246, "name": "Ame-chan (Needy Streamer Overload)", "description": "The main protagonist's profile picture from the game \"Needy Streamer Overload\" (also known as \"Needy Girl Overdose\").\n\nNeedy Streamer Overload is a 2022 denpa-themed adventure visual novel created by Japanese developer Xemono and published by WSS Playground for macOS, Microsoft Windows, and Nintendo Switch.\n\nAme-chan is her true identity off-camera; by night she streams as \"OMGkawaiiAngel\" (or \"kAngel\" for short).\n\n🙏BLESS🙏", "links": {"website": ["https://store.steampowered.com/app/1451940/NEEDY_STREAMER_OVERLOAD/"], "subreddit": ["needystreameroverload"]}, "path": {"163-258": [[-805, 537], [-805, 562], [-830, 562], [-830, 537]]}, "center": {"163-258": [-817, 550]}}, -{"id": 4247, "name": "Italian Mare in the Moon", "description": "A small portrait depicting the \"Mare in the Moon\" from the show My Little Pony: Friendship is Magic.\n\nThe Mare in the Moon is a play on words referring to both \"mare\", Latin for \"sea\", which is what a dark area of a moon is called, and the unicorn/alicorn silhouette pattern in which the spots form.\n\nThe pattern appeared after the villain Nightmare Moon was banished to the moon. She stayed imprisoned for 1000 years before freeing herself, after which the pattern disappeared. \n\nHere the colors are edited in support of Italy, who graciously allowed the art to sit on their flag.", "links": {"subreddit": ["mylittlepony"]}, "path": {"213-215, 219-258": [[66, 86], [60, 90], [57, 93], [54, 101], [53, 108], [55, 115], [64, 121], [73, 121], [81, 115], [82, 108], [77, 106], [77, 91], [70, 86], [68, 86]]}, "center": {"213-215, 219-258": [65, 107]}}, -{"id": 4248, "name": "Carbie", "description": "The sneezing emote of Twitch Streamer Carbie!", "links": {"website": ["https://www.twitch.tv/carbie"]}, "path": {"250-258": [[272, 271], [270, 273], [270, 275], [271, 275], [271, 280], [270, 281], [280, 281], [279, 280], [280, 272], [279, 271], [278, 271], [277, 272], [273, 272]]}, "center": {"250-258": [275, 276]}}, -{"id": 4249, "name": "Pintura corporal Selk'nam", "description": "They are probably the most characteristic indigenous group of the southern zone of Chile. Their body painting, which they used to accompany their rites, has attracted the attention of various artists.", "links": {"website": ["https://laderasur.com/articulo/una-mirada-al-mundo-selknam-desde-la-pintura-corporal/"]}, "path": {"250-258": [[-929, -865], [-906, -865], [-906, -862], [-913, -862], [-915, -857], [-909, -856], [-907, -854], [-907, -846], [-910, -846], [-911, -850], [-913, -852], [-914, -834], [-912, -834], [-912, -831], [-922, -831], [-922, -833], [-921, -834], [-921, -844], [-920, -848], [-920, -849], [-923, -852], [-924, -851], [-925, -846], [-929, -846], [-928, -848], [-928, -852], [-926, -855], [-923, -856], [-922, -856], [-920, -858], [-921, -859], [-923, -862], [-929, -863]]}, "center": {"250-258": [-918, -853]}}, -{"id": 4250, "name": "P-chan (Needy Streamer Overload)", "description": "The representation of P-chan from the game \"Needy Streamer Overload\" (also known as \"Needy Girl Overdose\").\n\nNeedy Streamer Overload is a 2022 denpa-themed adventure visual novel created by Japanese developer Xemono and published by WSS Playground for macOS, Microsoft Windows, and Nintendo Switch.\n\nP-chan is represented as a small, pink cat. They serve as the player character - and is Ame-chan's partner and producer for her streams.\n\n🙏BLESS🙏", "links": {"website": ["https://store.steampowered.com/app/1451940/NEEDY_STREAMER_OVERLOAD/"], "subreddit": ["needystreameroverload"]}, "path": {"161-258": [[-664, 337], [-664, 342], [-671, 342], [-671, 337]]}, "center": {"161-258": [-667, 340]}}, -{"id": 4251, "name": "r/truscum", "description": "The term \"truscum\" (\"true transsexual scum\"), also known as transmedicalism, is used to describe a specific viewpoint within the trans community. The r/truscum community believes gender dysphoria is required to be considered transgender/transsexual.", "links": {"website": ["https://en.wikipedia.org/wiki/Transmedicalism"], "subreddit": ["truscum"]}, "path": {"250-258": [[-1171, -720], [-1166, -718], [-1166, -720], [-1170, -718], [-1169, -720], [-1168, -720]]}, "center": {"250-258": [-1167, -719]}}, -{"id": 4252, "name": "Fortress Izakaya", "description": "After the initial Touhou Hijack was taken over by xQc's Pokemon card, it was relocated to the right side of the canvas but few people stayed on and made her again from scratch, becoming one of the first artwork made in the chaos area. She survived till the whiteout and will be remembered by all the active participants of Touhou r/place.", "links": {"website": ["https://en.touhouwiki.net/wiki/Touhou_Wiki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"194-258": [[-1323, 6], [-1314, 6], [-1314, 2], [-1305, 2], [-1305, 7], [-1301, 7], [-1303, 7], [-1303, 21], [-1302, 21], [-1302, 22], [-1301, 22], [-1301, 24], [-1302, 24], [-1302, 25], [-1305, 25], [-1305, 26], [-1306, 26], [-1306, 27], [-1327, 27], [-1327, 17], [-1325, 17], [-1324, 17], [-1324, 16], [-1323, 16]]}, "center": {"194-258": [-1313, 16]}}, +{"id": 4240, "name": "SHINee", "description": "SHINee is a K-pop group that debuted on May 25, 2008 under SM Entertainment. Their fandom name is the SHINee World, shortened as Shawol, and their official color is pearl aqua green. SHINee was the very first group to win the rookie grandslam.\n\nThis design highlights the group's lightstick, the Shatting Star. To the left are the colors representing each member, from eldest to maknae:\nYellow - Onew\nBlue - Jonghyun\nPink - Key\nRed - Minho\nGreen - Taemin\n\nSHINee is also the first K-pop group where each member has reached #1 on the Worldwide iTunes Album Chart as solo artists. The colors at the top of this design represents the members' solo debut albums, known in the fandom as the plagiarism series. From the first release to the latest:\nWhite - Taemin's Ace\nGreen - Jonghyun's Base\nLime - Key's Face\nBlue - Onew's Voice\nBlack - Minho's Chase\n\nThank you to the r/kpop, r/bangtan, and r/twice communities for this spot in this year's pixel war.", "links": {"website": ["https://www.twitter.com/SHINee"], "subreddit": ["SHINee"]}, "path": {"250-258, T": [[-80, -873], [-79, -873], [-78, -873], [-77, -873], [-76, -873], [-75, -873], [-74, -873], [-73, -873], [-72, -873], [-71, -873], [-71, -872], [-71, -871], [-71, -870], [-71, -869], [-71, -868], [-71, -867], [-71, -866], [-71, -865], [-71, -864], [-72, -864], [-73, -864], [-74, -864], [-75, -864], [-76, -864], [-77, -864], [-78, -864], [-79, -864], [-80, -864], [-80, -865], [-80, -866], [-80, -867], [-80, -868], [-80, -869], [-80, -870], [-80, -871], [-80, -872]]}, "center": {"250-258, T": [-75, -868]}}, +{"id": 4241, "name": "choking hawks scoreboard from r/saints & r/patriots", "description": "r/saints & r/patriots choking hawks marker (logos located at 1471, -676)", "links": {"subreddit": ["saints", "patriots"]}, "path": {"166-258, T": [[-529, 957], [-530, 957], [-511, 957], [-510, 957], [-510, 965], [-531, 965], [-531, 957]]}, "center": {"166-258, T": [-520, 961]}}, +{"id": 4242, "name": "Hyouka", "description": "Hyouka is a 2001 Japanese mystery novel written by Honobu Yonezawa. It is the first volume of the Classic Literature Club series. A manga adaptation drawn by Taskohna began serialization in the March 2012 issue of Kadokawa Shoten's Shōnen Ace. A 22-episode anime adaptation produced by Kyoto Animation and directed by Yasuhiro Takemoto aired from April 22 to September 16, 2012.", "links": {"website": ["https://hyouka.fandom.com/wiki/Hyouka_Wiki"], "subreddit": ["hyouka"]}, "path": {"250-258, T": [[-1289, -661], [-1307, -661], [-1307, -660], [-1333, -660], [-1333, -650], [-1289, -650]]}, "center": {"250-258, T": [-1294, -655]}}, +{"id": 4243, "name": "BMO", "description": "The Robot character \"BMO\" from popular cartoon \"Adventure Time\"", "links": {"website": ["https://www.cartoonnetworkhq.com/"], "subreddit": ["adventuretime"]}, "path": {"250-258, T": [[1206, -875], [1215, -875], [1215, -864], [1206, -864]]}, "center": {"250-258, T": [1211, -869]}}, +{"id": 4244, "name": "Lucas", "description": "Lucas is the main protagonist of the 2006 GBA game, Mother 3. A gentle boy, he is forced to mature quickly, as his quaint life takes a turn following the arrival of strange people in pig costumes. \n\nThis is one of two Lucas sprites present on the canvas.", "links": {"website": ["https://starmen.net/"], "subreddit": ["earthbound"]}, "path": {"250-258, T": [[-1087, -966], [-1086, -966], [-1085, -965], [-1081, -965], [-1078, -961], [-1077, -957], [-1081, -953], [-1085, -943], [-1088, -942], [-1089, -943], [-1088, -945], [-1090, -947], [-1090, -949], [-1087, -953], [-1091, -957], [-1091, -958], [-1090, -961], [-1088, -965]]}, "center": {"250-258, T": [-1084, -959]}}, +{"id": 4245, "name": "Concerned Ape Logo", "description": "Logo for video game developer Eric Barone, otherwise known as ConcernedApe.", "links": {"website": ["https://www.stardewvalley.net/author/concernedape/"], "subreddit": ["StardewValley", "hauntedchocolatier"]}, "path": {"250-258, T": [[1286, 224], [1286, 193], [1327, 193], [1327, 224]]}, "center": {"250-258, T": [1307, 209]}}, +{"id": 4246, "name": "Ame-chan (Needy Streamer Overload)", "description": "The main protagonist's profile picture from the game \"Needy Streamer Overload\" (also known as \"Needy Girl Overdose\").\n\nNeedy Streamer Overload is a 2022 denpa-themed adventure visual novel created by Japanese developer Xemono and published by WSS Playground for macOS, Microsoft Windows, and Nintendo Switch.\n\nAme-chan is her true identity off-camera; by night she streams as \"OMGkawaiiAngel\" (or \"kAngel\" for short).\n\n🙏BLESS🙏", "links": {"website": ["https://store.steampowered.com/app/1451940/NEEDY_STREAMER_OVERLOAD/"], "subreddit": ["needystreameroverload"]}, "path": {"163-258, T": [[-805, 537], [-805, 562], [-830, 562], [-830, 537]]}, "center": {"163-258, T": [-817, 550]}}, +{"id": 4247, "name": "Italian Mare in the Moon", "description": "A small portrait depicting the \"Mare in the Moon\" from the show My Little Pony: Friendship is Magic.\n\nThe Mare in the Moon is a play on words referring to both \"mare\", Latin for \"sea\", which is what a dark area of a moon is called, and the unicorn/alicorn silhouette pattern in which the spots form.\n\nThe pattern appeared after the villain Nightmare Moon was banished to the moon. She stayed imprisoned for 1000 years before freeing herself, after which the pattern disappeared. \n\nHere the colors are edited in support of Italy, who graciously allowed the art to sit on their flag.", "links": {"subreddit": ["mylittlepony"]}, "path": {"213-215, 219-258, T": [[66, 86], [60, 90], [57, 93], [54, 101], [53, 108], [55, 115], [64, 121], [73, 121], [81, 115], [82, 108], [77, 106], [77, 91], [70, 86], [68, 86]]}, "center": {"213-215, 219-258, T": [65, 107]}}, +{"id": 4248, "name": "Carbie", "description": "The sneezing emote of Twitch Streamer Carbie!", "links": {"website": ["https://www.twitch.tv/carbie"]}, "path": {"250-258, T": [[272, 271], [270, 273], [270, 275], [271, 275], [271, 280], [270, 281], [280, 281], [279, 280], [280, 272], [279, 271], [278, 271], [277, 272], [273, 272]]}, "center": {"250-258, T": [275, 276]}}, +{"id": 4249, "name": "Pintura corporal Selk'nam", "description": "They are probably the most characteristic indigenous group of the southern zone of Chile. Their body painting, which they used to accompany their rites, has attracted the attention of various artists.", "links": {"website": ["https://laderasur.com/articulo/una-mirada-al-mundo-selknam-desde-la-pintura-corporal/"]}, "path": {"250-258, T": [[-929, -865], [-906, -865], [-906, -862], [-913, -862], [-915, -857], [-909, -856], [-907, -854], [-907, -846], [-910, -846], [-911, -850], [-913, -852], [-914, -834], [-912, -834], [-912, -831], [-922, -831], [-922, -833], [-921, -834], [-921, -844], [-920, -848], [-920, -849], [-923, -852], [-924, -851], [-925, -846], [-929, -846], [-928, -848], [-928, -852], [-926, -855], [-923, -856], [-922, -856], [-920, -858], [-921, -859], [-923, -862], [-929, -863]]}, "center": {"250-258, T": [-918, -853]}}, +{"id": 4250, "name": "P-chan (Needy Streamer Overload)", "description": "The representation of P-chan from the game \"Needy Streamer Overload\" (also known as \"Needy Girl Overdose\").\n\nNeedy Streamer Overload is a 2022 denpa-themed adventure visual novel created by Japanese developer Xemono and published by WSS Playground for macOS, Microsoft Windows, and Nintendo Switch.\n\nP-chan is represented as a small, pink cat. They serve as the player character - and is Ame-chan's partner and producer for her streams.\n\n🙏BLESS🙏", "links": {"website": ["https://store.steampowered.com/app/1451940/NEEDY_STREAMER_OVERLOAD/"], "subreddit": ["needystreameroverload"]}, "path": {"161-258, T": [[-664, 337], [-664, 342], [-671, 342], [-671, 337]]}, "center": {"161-258, T": [-667, 340]}}, +{"id": 4251, "name": "r/truscum", "description": "The term \"truscum\" (\"true transsexual scum\"), also known as transmedicalism, is used to describe a specific viewpoint within the trans community. The r/truscum community believes gender dysphoria is required to be considered transgender/transsexual.", "links": {"website": ["https://en.wikipedia.org/wiki/Transmedicalism"], "subreddit": ["truscum"]}, "path": {"250-258, T": [[-1171, -720], [-1166, -718], [-1166, -720], [-1170, -718], [-1169, -720], [-1168, -720]]}, "center": {"250-258, T": [-1167, -719]}}, +{"id": 4252, "name": "Fortress Izakaya", "description": "After the initial Touhou Hijack was taken over by xQc's Pokemon card, it was relocated to the right side of the canvas but few people stayed on and made her again from scratch, becoming one of the first artwork made in the chaos area. She survived till the whiteout and will be remembered by all the active participants of Touhou r/place.", "links": {"website": ["https://en.touhouwiki.net/wiki/Touhou_Wiki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"194-258, T": [[-1323, 6], [-1314, 6], [-1314, 2], [-1305, 2], [-1305, 7], [-1301, 7], [-1303, 7], [-1303, 21], [-1302, 21], [-1302, 22], [-1301, 22], [-1301, 24], [-1302, 24], [-1302, 25], [-1305, 25], [-1305, 26], [-1306, 26], [-1306, 27], [-1327, 27], [-1327, 17], [-1325, 17], [-1324, 17], [-1324, 16], [-1323, 16]]}, "center": {"194-258, T": [-1313, 16]}}, {"id": 4253, "name": "Felps", "description": "The face of a brazilian streamer on twitch known as Felps, who loves the '-' <3", "links": {"website": ["https://www.twitch.tv/felps"], "subreddit": ["Felps"], "discord": ["felps"]}, "path": {"209-228": [[1094, 373], [1169, 313], [1255, 426], [1219, 510], [1177, 510], [1154, 510], [1112, 445]]}, "center": {"209-228": [1180, 433]}}, -{"id": 4254, "name": "Machu Picchu", "description": "Machu Picchu is an Inca citadel located high in the Andes mountains of Peru and one of the 7 Wonders of the Modern World.\n\nThis piece was created by Frente Army.", "links": {"website": ["https://www.twitch.tv/elzeein"], "discord": ["lafrentearmy"]}, "path": {"129-170": [[-1000, -611], [-785, -611], [-788, -614], [-789, -614], [-790, -615], [-790, -617], [-793, -620], [-793, -621], [-795, -623], [-797, -623], [-800, -626], [-801, -626], [-802, -627], [-803, -627], [-804, -626], [-810, -626], [-810, -631], [-812, -633], [-812, -636], [-813, -637], [-813, -639], [-812, -639], [-811, -640], [-811, -641], [-812, -642], [-812, -646], [-813, -650], [-814, -651], [-815, -651], [-815, -652], [-816, -653], [-816, -655], [-817, -656], [-818, -655], [-818, -657], [-821, -660], [-820, -661], [-821, -662], [-822, -662], [-822, -663], [-824, -665], [-824, -666], [-825, -667], [-824, -668], [-824, -669], [-825, -670], [-824, -671], [-826, -673], [-825, -674], [-825, -676], [-827, -678], [-828, -677], [-828, -679], [-830, -681], [-830, -682], [-831, -683], [-831, -685], [-832, -686], [-833, -686], [-833, -687], [-836, -690], [-838, -690], [-839, -691], [-841, -691], [-842, -692], [-844, -692], [-845, -691], [-845, -681], [-846, -680], [-845, -679], [-846, -678], [-846, -676], [-847, -675], [-846, -674], [-846, -673], [-845, -672], [-844, -672], [-844, -666], [-843, -665], [-843, -661], [-844, -660], [-844, -652], [-845, -651], [-845, -649], [-846, -648], [-846, -647], [-849, -644], [-849, -643], [-850, -643], [-851, -642], [-852, -641], [-853, -641], [-854, -640], [-858, -640], [-859, -639], [-870, -639], [-871, -640], [-874, -640], [-875, -641], [-877, -641], [-878, -640], [-880, -640], [-882, -638], [-889, -638], [-890, -637], [-896, -637], [-897, -636], [-907, -636], [-909, -637], [-911, -637], [-912, -638], [-913, -638], [-913, -639], [-914, -640], [-915, -640], [-916, -641], [-917, -641], [-920, -644], [-922, -644], [-923, -646], [-923, -647], [-924, -648], [-924, -649], [-926, -651], [-926, -652], [-927, -653], [-927, -655], [-928, -656], [-928, -657], [-929, -658], [-929, -664], [-930, -665], [-930, -673], [-928, -675], [-928, -676], [-927, -677], [-927, -681], [-928, -682], [-928, -683], [-929, -684], [-929, -690], [-927, -692], [-927, -693], [-924, -696], [-925, -697], [-925, -699], [-923, -701], [-922, -701], [-921, -702], [-920, -702], [-918, -704], [-918, -707], [-919, -708], [-919, -715], [-918, -716], [-918, -717], [-917, -718], [-917, -719], [-912, -724], [-912, -725], [-906, -725], [-905, -724], [-905, -726], [-906, -727], [-907, -727], [-908, -728], [-909, -728], [-914, -733], [-914, -734], [-916, -735], [-919, -738], [-920, -738], [-920, -739], [-921, -740], [-922, -740], [-923, -741], [-924, -740], [-925, -739], [-925, -738], [-927, -738], [-931, -734], [-931, -732], [-934, -729], [-934, -727], [-936, -725], [-936, -723], [-937, -723], [-938, -722], [-938, -721], [-939, -720], [-939, -718], [-941, -716], [-941, -715], [-943, -713], [-943, -712], [-945, -710], [-945, -708], [-947, -706], [-947, -705], [-948, -704], [-948, -702], [-950, -700], [-950, -699], [-951, -698], [-952, -698], [-953, -697], [-952, -696], [-953, -695], [-953, -694], [-956, -691], [-956, -690], [-957, -689], [-958, -689], [-959, -688], [-959, -687], [-960, -686], [-960, -685], [-964, -685], [-968, -689], [-970, -689], [-974, -693], [-978, -693], [-979, -692], [-980, -692], [-983, -689], [-983, -688], [-985, -686], [-985, -685], [-986, -685], [-987, -684], [-986, -683], [-988, -681], [-988, -680], [-989, -679], [-989, -678], [-990, -677], [-990, -676], [-991, -675], [-991, -674], [-992, -673], [-992, -671], [-995, -668], [-995, -667], [-996, -666], [-996, -664], [-997, -663], [-997, -662], [-998, -661], [-998, -660], [-1000, -658]], "171-258": [[-1145, -611], [-784, -611], [-790, -617], [-790, -618], [-791, -619], [-791, -620], [-792, -621], [-792, -622], [-793, -623], [-794, -623], [-796, -625], [-799, -625], [-801, -627], [-803, -627], [-804, -626], [-809, -626], [-810, -627], [-810, -631], [-812, -633], [-812, -636], [-812, -647], [-813, -648], [-814, -651], [-815, -651], [-819, -655], [-819, -656], [-822, -659], [-822, -663], [-825, -667], [-825, -674], [-826, -675], [-826, -676], [-830, -680], [-830, -682], [-831, -683], [-831, -684], [-832, -685], [-832, -686], [-834, -688], [-835, -688], [-836, -689], [-837, -689], [-839, -691], [-842, -691], [-842, -692], [-843, -692], [-844, -693], [-845, -693], [-845, -683], [-846, -682], [-846, -678], [-847, -677], [-847, -674], [-846, -673], [-846, -671], [-844, -669], [-844, -666], [-843, -665], [-843, -662], [-844, -661], [-844, -655], [-845, -654], [-845, -653], [-844, -652], [-845, -651], [-845, -649], [-846, -648], [-846, -647], [-851, -642], [-852, -642], [-854, -640], [-858, -640], [-859, -639], [-870, -639], [-871, -640], [-873, -640], [-874, -641], [-879, -641], [-880, -640], [-882, -640], [-884, -638], [-894, -638], [-895, -637], [-908, -637], [-910, -639], [-911, -639], [-912, -640], [-913, -640], [-915, -642], [-915, -643], [-917, -643], [-920, -646], [-921, -646], [-922, -647], [-923, -647], [-924, -648], [-924, -649], [-926, -651], [-926, -652], [-927, -653], [-927, -655], [-928, -656], [-928, -657], [-929, -658], [-929, -662], [-930, -663], [-930, -671], [-929, -672], [-929, -674], [-927, -676], [-927, -681], [-928, -682], [-928, -689], [-927, -690], [-927, -692], [-926, -693], [-926, -694], [-925, -694], [-924, -695], [-924, -696], [-920, -700], [-919, -701], [-919, -704], [-918, -705], [-918, -707], [-919, -708], [-919, -714], [-918, -715], [-918, -717], [-917, -718], [-917, -719], [-916, -719], [-915, -720], [-915, -721], [-913, -723], [-912, -723], [-911, -724], [-911, -725], [-907, -725], [-906, -724], [-903, -722], [-902, -721], [-902, -722], [-909, -729], [-910, -729], [-920, -739], [-921, -740], [-924, -740], [-927, -737], [-928, -737], [-930, -735], [-930, -734], [-931, -733], [-931, -732], [-933, -730], [-933, -729], [-934, -729], [-934, -727], [-936, -725], [-936, -723], [-937, -722], [-937, -721], [-938, -720], [-938, -719], [-940, -717], [-940, -716], [-942, -714], [-942, -713], [-945, -710], [-945, -708], [-946, -707], [-946, -706], [-948, -704], [-948, -701], [-951, -698], [-952, -698], [-952, -697], [-953, -696], [-953, -694], [-962, -685], [-963, -685], [-964, -686], [-965, -686], [-968, -689], [-969, -689], [-970, -690], [-971, -690], [-971, -692], [-975, -696], [-976, -695], [-977, -695], [-980, -692], [-980, -691], [-984, -687], [-984, -686], [-985, -685], [-989, -680], [-989, -676], [-990, -675], [-990, -674], [-991, -673], [-991, -672], [-995, -668], [-995, -666], [-996, -665], [-996, -663], [-997, -662], [-997, -661], [-1001, -657], [-1001, -656], [-1009, -648], [-1009, -646], [-1008, -645], [-1009, -644], [-1009, -642], [-1010, -641], [-1015, -641], [-1015, -640], [-1013, -638], [-1013, -635], [-1012, -634], [-1011, -634], [-1009, -636], [-1008, -636], [-1007, -637], [-1004, -637], [-1004, -633], [-1005, -632], [-1006, -632], [-1007, -631], [-1009, -631], [-1010, -632], [-1012, -632], [-1015, -629], [-1020, -625], [-1020, -623], [-1021, -623], [-1023, -621], [-1023, -619], [-1024, -618], [-1024, -613], [-1034, -613], [-1037, -616], [-1043, -616], [-1045, -614], [-1045, -613], [-1054, -613], [-1055, -614], [-1055, -616], [-1056, -617], [-1056, -619], [-1058, -621], [-1059, -621], [-1060, -622], [-1061, -622], [-1062, -623], [-1064, -623], [-1066, -625], [-1067, -625], [-1069, -627], [-1070, -627], [-1070, -628], [-1073, -631], [-1073, -632], [-1076, -635], [-1076, -637], [-1078, -639], [-1078, -641], [-1079, -642], [-1082, -639], [-1082, -637], [-1083, -636], [-1087, -636], [-1088, -637], [-1091, -634], [-1092, -634], [-1099, -641], [-1101, -641], [-1105, -637], [-1106, -637], [-1108, -635], [-1108, -634], [-1109, -633], [-1109, -631], [-1110, -630], [-1110, -629], [-1109, -628], [-1109, -625], [-1110, -624], [-1110, -623], [-1109, -622], [-1107, -622], [-1104, -619], [-1104, -617], [-1103, -616], [-1102, -617], [-1102, -619], [-1100, -621], [-1099, -621], [-1099, -618], [-1100, -617], [-1101, -617], [-1102, -616], [-1104, -616], [-1107, -615], [-1107, -612], [-1115, -612], [-1115, -614], [-1117, -616], [-1117, -620], [-1118, -621], [-1121, -621], [-1123, -619], [-1124, -619], [-1125, -618], [-1125, -617], [-1126, -616], [-1124, -614], [-1124, -613], [-1127, -613], [-1128, -612], [-1137, -612], [-1138, -613], [-1139, -613], [-1146, -620], [-1148, -618], [-1147, -617], [-1146, -617], [-1146, -615], [-1145, -614]]}, "center": {"129-170": [-964, -647], "171-258": [-963, -648]}}, -{"id": 4255, "name": "Ben 10 Logo", "description": "Ben 10 is an American media franchise created by Man of Action Studios. The franchise revolves around Ben Tennyson who obtains the power of the Omnitrix which is a device that contains the DNA of different aliens. Using the Omnitrix he can transform into various aliens with different abilities.", "links": {"subreddit": ["ben10"]}, "path": {"250-258": [[-1163, -188], [-1165, -175], [-1162, -172], [-1161, -167], [-1155, -167], [-1154, -170], [-1146, -167], [-1142, -172], [-1142, -176], [-1139, -173], [-1133, -174], [-1131, -178], [-1132, -183], [-1136, -185], [-1140, -184], [-1142, -182], [-1143, -188]]}, "center": {"250-258": [-1151, -178]}}, -{"id": 4256, "name": "Castle Crashers", "description": "Castle Crashers is a hack-and-slash video game originally released in 2008. The game revolves around 4 knights on a journey to rescue four princesses who have been captured by a dark wizard. \n\nThis artwork features the 4 knights from top to bottom (Green Knight, Yellow Knight, Blue Knight, & Red Knight.)", "links": {"subreddit": ["castlecrashers"]}, "path": {"250-258": [[-1031, -321], [-1031, -281], [-1024, -281], [-1024, -321]]}, "center": {"250-258": [-1027, -301]}}, +{"id": 4254, "name": "Machu Picchu", "description": "Machu Picchu is an Inca citadel located high in the Andes mountains of Peru and one of the 7 Wonders of the Modern World.\n\nThis piece was created by Frente Army.", "links": {"website": ["https://www.twitch.tv/elzeein"], "discord": ["lafrentearmy"]}, "path": {"129-170": [[-1000, -611], [-785, -611], [-788, -614], [-789, -614], [-790, -615], [-790, -617], [-793, -620], [-793, -621], [-795, -623], [-797, -623], [-800, -626], [-801, -626], [-802, -627], [-803, -627], [-804, -626], [-810, -626], [-810, -631], [-812, -633], [-812, -636], [-813, -637], [-813, -639], [-812, -639], [-811, -640], [-811, -641], [-812, -642], [-812, -646], [-813, -650], [-814, -651], [-815, -651], [-815, -652], [-816, -653], [-816, -655], [-817, -656], [-818, -655], [-818, -657], [-821, -660], [-820, -661], [-821, -662], [-822, -662], [-822, -663], [-824, -665], [-824, -666], [-825, -667], [-824, -668], [-824, -669], [-825, -670], [-824, -671], [-826, -673], [-825, -674], [-825, -676], [-827, -678], [-828, -677], [-828, -679], [-830, -681], [-830, -682], [-831, -683], [-831, -685], [-832, -686], [-833, -686], [-833, -687], [-836, -690], [-838, -690], [-839, -691], [-841, -691], [-842, -692], [-844, -692], [-845, -691], [-845, -681], [-846, -680], [-845, -679], [-846, -678], [-846, -676], [-847, -675], [-846, -674], [-846, -673], [-845, -672], [-844, -672], [-844, -666], [-843, -665], [-843, -661], [-844, -660], [-844, -652], [-845, -651], [-845, -649], [-846, -648], [-846, -647], [-849, -644], [-849, -643], [-850, -643], [-851, -642], [-852, -641], [-853, -641], [-854, -640], [-858, -640], [-859, -639], [-870, -639], [-871, -640], [-874, -640], [-875, -641], [-877, -641], [-878, -640], [-880, -640], [-882, -638], [-889, -638], [-890, -637], [-896, -637], [-897, -636], [-907, -636], [-909, -637], [-911, -637], [-912, -638], [-913, -638], [-913, -639], [-914, -640], [-915, -640], [-916, -641], [-917, -641], [-920, -644], [-922, -644], [-923, -646], [-923, -647], [-924, -648], [-924, -649], [-926, -651], [-926, -652], [-927, -653], [-927, -655], [-928, -656], [-928, -657], [-929, -658], [-929, -664], [-930, -665], [-930, -673], [-928, -675], [-928, -676], [-927, -677], [-927, -681], [-928, -682], [-928, -683], [-929, -684], [-929, -690], [-927, -692], [-927, -693], [-924, -696], [-925, -697], [-925, -699], [-923, -701], [-922, -701], [-921, -702], [-920, -702], [-918, -704], [-918, -707], [-919, -708], [-919, -715], [-918, -716], [-918, -717], [-917, -718], [-917, -719], [-912, -724], [-912, -725], [-906, -725], [-905, -724], [-905, -726], [-906, -727], [-907, -727], [-908, -728], [-909, -728], [-914, -733], [-914, -734], [-916, -735], [-919, -738], [-920, -738], [-920, -739], [-921, -740], [-922, -740], [-923, -741], [-924, -740], [-925, -739], [-925, -738], [-927, -738], [-931, -734], [-931, -732], [-934, -729], [-934, -727], [-936, -725], [-936, -723], [-937, -723], [-938, -722], [-938, -721], [-939, -720], [-939, -718], [-941, -716], [-941, -715], [-943, -713], [-943, -712], [-945, -710], [-945, -708], [-947, -706], [-947, -705], [-948, -704], [-948, -702], [-950, -700], [-950, -699], [-951, -698], [-952, -698], [-953, -697], [-952, -696], [-953, -695], [-953, -694], [-956, -691], [-956, -690], [-957, -689], [-958, -689], [-959, -688], [-959, -687], [-960, -686], [-960, -685], [-964, -685], [-968, -689], [-970, -689], [-974, -693], [-978, -693], [-979, -692], [-980, -692], [-983, -689], [-983, -688], [-985, -686], [-985, -685], [-986, -685], [-987, -684], [-986, -683], [-988, -681], [-988, -680], [-989, -679], [-989, -678], [-990, -677], [-990, -676], [-991, -675], [-991, -674], [-992, -673], [-992, -671], [-995, -668], [-995, -667], [-996, -666], [-996, -664], [-997, -663], [-997, -662], [-998, -661], [-998, -660], [-1000, -658]], "171-258, T": [[-1145, -611], [-784, -611], [-790, -617], [-790, -618], [-791, -619], [-791, -620], [-792, -621], [-792, -622], [-793, -623], [-794, -623], [-796, -625], [-799, -625], [-801, -627], [-803, -627], [-804, -626], [-809, -626], [-810, -627], [-810, -631], [-812, -633], [-812, -636], [-812, -647], [-813, -648], [-814, -651], [-815, -651], [-819, -655], [-819, -656], [-822, -659], [-822, -663], [-825, -667], [-825, -674], [-826, -675], [-826, -676], [-830, -680], [-830, -682], [-831, -683], [-831, -684], [-832, -685], [-832, -686], [-834, -688], [-835, -688], [-836, -689], [-837, -689], [-839, -691], [-842, -691], [-842, -692], [-843, -692], [-844, -693], [-845, -693], [-845, -683], [-846, -682], [-846, -678], [-847, -677], [-847, -674], [-846, -673], [-846, -671], [-844, -669], [-844, -666], [-843, -665], [-843, -662], [-844, -661], [-844, -655], [-845, -654], [-845, -653], [-844, -652], [-845, -651], [-845, -649], [-846, -648], [-846, -647], [-851, -642], [-852, -642], [-854, -640], [-858, -640], [-859, -639], [-870, -639], [-871, -640], [-873, -640], [-874, -641], [-879, -641], [-880, -640], [-882, -640], [-884, -638], [-894, -638], [-895, -637], [-908, -637], [-910, -639], [-911, -639], [-912, -640], [-913, -640], [-915, -642], [-915, -643], [-917, -643], [-920, -646], [-921, -646], [-922, -647], [-923, -647], [-924, -648], [-924, -649], [-926, -651], [-926, -652], [-927, -653], [-927, -655], [-928, -656], [-928, -657], [-929, -658], [-929, -662], [-930, -663], [-930, -671], [-929, -672], [-929, -674], [-927, -676], [-927, -681], [-928, -682], [-928, -689], [-927, -690], [-927, -692], [-926, -693], [-926, -694], [-925, -694], [-924, -695], [-924, -696], [-920, -700], [-919, -701], [-919, -704], [-918, -705], [-918, -707], [-919, -708], [-919, -714], [-918, -715], [-918, -717], [-917, -718], [-917, -719], [-916, -719], [-915, -720], [-915, -721], [-913, -723], [-912, -723], [-911, -724], [-911, -725], [-907, -725], [-906, -724], [-903, -722], [-902, -721], [-902, -722], [-909, -729], [-910, -729], [-920, -739], [-921, -740], [-924, -740], [-927, -737], [-928, -737], [-930, -735], [-930, -734], [-931, -733], [-931, -732], [-933, -730], [-933, -729], [-934, -729], [-934, -727], [-936, -725], [-936, -723], [-937, -722], [-937, -721], [-938, -720], [-938, -719], [-940, -717], [-940, -716], [-942, -714], [-942, -713], [-945, -710], [-945, -708], [-946, -707], [-946, -706], [-948, -704], [-948, -701], [-951, -698], [-952, -698], [-952, -697], [-953, -696], [-953, -694], [-962, -685], [-963, -685], [-964, -686], [-965, -686], [-968, -689], [-969, -689], [-970, -690], [-971, -690], [-971, -692], [-975, -696], [-976, -695], [-977, -695], [-980, -692], [-980, -691], [-984, -687], [-984, -686], [-985, -685], [-989, -680], [-989, -676], [-990, -675], [-990, -674], [-991, -673], [-991, -672], [-995, -668], [-995, -666], [-996, -665], [-996, -663], [-997, -662], [-997, -661], [-1001, -657], [-1001, -656], [-1009, -648], [-1009, -646], [-1008, -645], [-1009, -644], [-1009, -642], [-1010, -641], [-1015, -641], [-1015, -640], [-1013, -638], [-1013, -635], [-1012, -634], [-1011, -634], [-1009, -636], [-1008, -636], [-1007, -637], [-1004, -637], [-1004, -633], [-1005, -632], [-1006, -632], [-1007, -631], [-1009, -631], [-1010, -632], [-1012, -632], [-1015, -629], [-1020, -625], [-1020, -623], [-1021, -623], [-1023, -621], [-1023, -619], [-1024, -618], [-1024, -613], [-1034, -613], [-1037, -616], [-1043, -616], [-1045, -614], [-1045, -613], [-1054, -613], [-1055, -614], [-1055, -616], [-1056, -617], [-1056, -619], [-1058, -621], [-1059, -621], [-1060, -622], [-1061, -622], [-1062, -623], [-1064, -623], [-1066, -625], [-1067, -625], [-1069, -627], [-1070, -627], [-1070, -628], [-1073, -631], [-1073, -632], [-1076, -635], [-1076, -637], [-1078, -639], [-1078, -641], [-1079, -642], [-1082, -639], [-1082, -637], [-1083, -636], [-1087, -636], [-1088, -637], [-1091, -634], [-1092, -634], [-1099, -641], [-1101, -641], [-1105, -637], [-1106, -637], [-1108, -635], [-1108, -634], [-1109, -633], [-1109, -631], [-1110, -630], [-1110, -629], [-1109, -628], [-1109, -625], [-1110, -624], [-1110, -623], [-1109, -622], [-1107, -622], [-1104, -619], [-1104, -617], [-1103, -616], [-1102, -617], [-1102, -619], [-1100, -621], [-1099, -621], [-1099, -618], [-1100, -617], [-1101, -617], [-1102, -616], [-1104, -616], [-1107, -615], [-1107, -612], [-1115, -612], [-1115, -614], [-1117, -616], [-1117, -620], [-1118, -621], [-1121, -621], [-1123, -619], [-1124, -619], [-1125, -618], [-1125, -617], [-1126, -616], [-1124, -614], [-1124, -613], [-1127, -613], [-1128, -612], [-1137, -612], [-1138, -613], [-1139, -613], [-1146, -620], [-1148, -618], [-1147, -617], [-1146, -617], [-1146, -615], [-1145, -614]]}, "center": {"129-170": [-964, -647], "171-258, T": [-963, -648]}}, +{"id": 4255, "name": "Ben 10 Logo", "description": "Ben 10 is an American media franchise created by Man of Action Studios. The franchise revolves around Ben Tennyson who obtains the power of the Omnitrix which is a device that contains the DNA of different aliens. Using the Omnitrix he can transform into various aliens with different abilities.", "links": {"subreddit": ["ben10"]}, "path": {"250-258, T": [[-1163, -188], [-1165, -175], [-1162, -172], [-1161, -167], [-1155, -167], [-1154, -170], [-1146, -167], [-1142, -172], [-1142, -176], [-1139, -173], [-1133, -174], [-1131, -178], [-1132, -183], [-1136, -185], [-1140, -184], [-1142, -182], [-1143, -188]]}, "center": {"250-258, T": [-1151, -178]}}, +{"id": 4256, "name": "Castle Crashers", "description": "Castle Crashers is a hack-and-slash video game originally released in 2008. The game revolves around 4 knights on a journey to rescue four princesses who have been captured by a dark wizard. \n\nThis artwork features the 4 knights from top to bottom (Green Knight, Yellow Knight, Blue Knight, & Red Knight.)", "links": {"subreddit": ["castlecrashers"]}, "path": {"250-258, T": [[-1031, -321], [-1031, -281], [-1024, -281], [-1024, -321]]}, "center": {"250-258, T": [-1027, -301]}}, {"id": 4257, "name": "Map of Europe (PlaceEU)", "description": "The Map of Europe (PlaceEU) created by r/placede.\n\nThe map excludes Russia, Belarus has the people's flag and Crimea is with it's rightful owner and the United Kingdom is divided into England, Scotland and Wales. There are also active disputes about some autonomous regions and regions with their own cultural traditions and language that differ from the national state to which they belong, for example, Catalonia, Bavaria, South Tyrol or Corsica.\n\nHistorically important regions are also disputed, such as Alsace or Kaliningrad. For the Germans, Kaliningrad is called \"Königsberg\", which is also claimed by the Polish as \"Królewiec\".", "links": {"subreddit": ["placede"]}, "path": {"166-220": [[-367, 617], [-367, 829], [-154, 829], [-154, 648], [-193, 648], [-193, 631], [-195, 631], [-195, 616], [-241, 616], [-242, 616], [-242, 617], [-243, 617], [-244, 617], [-244, 618], [-244, 619], [-244, 620], [-244, 621], [-244, 622], [-299, 622], [-299, 616]]}, "center": {"166-220": [-262, 726]}}, {"id": 4258, "name": "Transgender Flag", "description": "A pride flag representing the transgender community. Transgender people have a gender identity different from their sex assigned at birth.", "links": {}, "path": {"206": [[-1483, -58], [-1480, -54], [-1483, -54], [-1483, -58], [-1480, -58], [-1482, -58], [-1482, -57], [-1482, -56], [-1482, -58], [-1482, -56], [-1482, -54], [-1480, -54], [-1480, -55]], "207": [[-1483, -58], [-1479, -58], [-1479, -54], [-1483, -54]], "210-231": [[-1484, -58], [-1477, -58], [-1477, -54], [-1484, -54]], "208, 209": [[-1477, -54], [-1477, -58], [-1483, -58], [-1483, -54]]}, "center": {"206": [-1482, -56], "207": [-1481, -56], "210-231": [-1480, -56], "208, 209": [-1480, -56]}}, {"id": 4259, "name": "Ness", "description": "Fuzzy Pickles! \n\nThis Ness is ready for a picture! The main protagonist of 1994's Earthbound (Mother 2 in Japan), Ness takes this pose when the friendly neighbourhood camera man descends from the sky to snap a photo.\n\nThis is one of two Ness sprites located on the canvas.", "links": {"website": ["https://starmen.net"], "subreddit": ["earthbound"]}, "path": {"249": [[-1236, 295], [-1232, 295], [-1232, 294], [-1225, 293], [-1221, 297], [-1221, 302], [-1225, 305], [-1222, 309], [-1223, 312], [-1224, 314], [-1223, 315], [-1226, 316], [-1228, 314], [-1231, 316], [-1233, 315], [-1233, 311], [-1236, 308], [-1235, 303], [-1235, 299], [-1234, 297]]}, "center": {"249": [-1229, 300]}}, {"id": 4260, "name": "flaiDERP - Flaiveth", "description": "Este es un emote representativo de la comunidad de Flaiveth, Creadora de contenido, Cosplayer desde 2011, Seraphine oficial de Riot", "links": {"website": ["https://www.twitch.tv/flaiveth"]}, "path": {"235": [[-1018, -622], [-1015, -623], [-1018, -624], [-1013, -626], [-1010, -612], [-1023, -613], [-1022, -621], [-1010, -625], [-1010, -613]]}, "center": {"235": [-1018, -616]}}, -{"id": 4261, "name": "VfB Stuttgart Wappen", "description": "The Logo of Stuttgarts biggest Football (Soccer) Team. VfB Stuttgart", "links": {"website": ["https://www.vfb.de"], "subreddit": ["VfBStuttgart"]}, "path": {"165-258": [[562, -913], [562, -934], [602, -934], [602, -912], [582, -912], [576, -912], [568, -912]]}, "center": {"165-258": [582, -923]}}, -{"id": 4262, "name": "Coqui", "description": "The Coqui is Puerto Rico's national animal. It is a frog species that gets its name due to the distinct sound it makes: \"Co-kee\"", "links": {"website": ["https://en.wikipedia.org/wiki/Coqu%C3%AD"], "subreddit": ["PuertoRico"], "discord": ["EZ4C9FR3"]}, "path": {"250-258": [[144, -10], [142, -13], [142, -15], [146, -21], [154, -21], [155, -20], [158, -14], [158, -13], [156, -10]]}, "center": {"250-258": [150, -15]}}, +{"id": 4261, "name": "VfB Stuttgart Wappen", "description": "The Logo of Stuttgarts biggest Football (Soccer) Team. VfB Stuttgart", "links": {"website": ["https://www.vfb.de"], "subreddit": ["VfBStuttgart"]}, "path": {"165-258, T": [[562, -913], [562, -934], [602, -934], [602, -912], [582, -912], [576, -912], [568, -912]]}, "center": {"165-258, T": [582, -923]}}, +{"id": 4262, "name": "Coqui", "description": "The Coqui is Puerto Rico's national animal. It is a frog species that gets its name due to the distinct sound it makes: \"Co-kee\"", "links": {"website": ["https://en.wikipedia.org/wiki/Coqu%C3%AD"], "subreddit": ["PuertoRico"], "discord": ["EZ4C9FR3"]}, "path": {"250-258, T": [[144, -10], [142, -13], [142, -15], [146, -21], [154, -21], [155, -20], [158, -14], [158, -13], [156, -10]]}, "center": {"250-258, T": [150, -15]}}, {"id": 4263, "name": "r/truscum", "description": "The term \"truscum\" (\"true transsexual scum\"), also known as transmedicalism, is used to describe a specific viewpoint within the trans community. The r/truscum community believes gender dysphoria is required to be considered transgender/transsexual.", "links": {"website": ["https://en.wikipedia.org/wiki/Transmedicalism"], "subreddit": ["truscum"]}, "path": {"255-258": [[612, -41], [612, -37], [619, -37], [619, -41]]}, "center": {"255-258": [616, -39]}}, {"id": 4264, "name": "Webos Community (1st Attempt)", "description": "Our community has Hispanic Dumb Guys, but they have a lot of WEBOS✊🥚", "links": {}, "path": {"83-92": [[45, -368], [93, -368], [93, -358], [45, -358]]}, "center": {"83-92": [69, -363]}}, -{"id": 4265, "name": "Red Pikmin", "description": "by r/pikmin\ntogether with blue squere alliances \n\n(WIP)", "links": {"subreddit": ["Pikmin"]}, "path": {"250-258": [[215, -809], [241, -809], [240, -832], [227, -830], [228, -830]]}, "center": {"250-258": [231, -818]}}, +{"id": 4265, "name": "Red Pikmin", "description": "by r/pikmin\ntogether with blue squere alliances \n\n(WIP)", "links": {"subreddit": ["Pikmin"]}, "path": {"250-258, T": [[215, -809], [241, -809], [240, -832], [227, -830], [228, -830]]}, "center": {"250-258, T": [231, -818]}}, {"id": 4266, "name": "Justice for Nahel", "description": "An hommage to Nahel Merzouk a French 17-year-old who was shot at point-blank range and killed by a police officer, on 27 June 2023.", "links": {}, "path": {"188-198": [[-185, 887], [-185, 904], [-142, 904], [-142, 887]]}, "center": {"188-198": [-163, 896]}}, -{"id": 4267, "name": "Ame-chan (Needy Streamer Overload)", "description": "The main protagonist's full body appearance from the game \"Needy Streamer Overload\" (also known as \"Needy Girl Overdose\").\n\nNeedy Streamer Overload is a 2022 denpa-themed adventure visual novel created by Japanese developer Xemono and published by WSS Playground for macOS, Microsoft Windows, and Nintendo Switch.\n\nAme-chan is her true identity off-camera; by night she streams as \"OMGkawaiiAngel\" (or \"kAngel\" for short).\n\n🙏BLESS🙏", "links": {"website": ["https://store.steampowered.com/app/1451940/NEEDY_STREAMER_OVERLOAD/"], "subreddit": ["needystreameroverload"]}, "path": {"171-258": [[-812, 840], [-812, 841], [-809, 841], [-809, 838], [-807, 838], [-807, 837], [-806, 837], [-806, 834], [-807, 834], [-807, 833], [-808, 833], [-808, 832], [-807, 832], [-807, 831], [-806, 831], [-806, 825], [-806, 835], [-805, 835], [-805, 836], [-803, 836], [-803, 835], [-802, 835], [-802, 825], [-803, 825], [-803, 822], [-804, 822], [-804, 821], [-820, 821], [-820, 822], [-821, 822], [-821, 825], [-822, 825], [-822, 835], [-821, 835], [-821, 836], [-819, 836], [-819, 835], [-818, 835], [-818, 825], [-818, 831], [-817, 831], [-817, 833], [-816, 833], [-817, 833], [-817, 834], [-818, 834], [-818, 837], [-816, 837], [-816, 838], [-815, 838], [-815, 841], [-812, 841]]}, "center": {"171-258": [-812, 828]}}, -{"id": 4268, "name": "Ness (Earthbound 2)", "description": "Ness is the main protagonist of the video game \"EarthBound\" (known as \"Mother 2\" in Japan). He is a kind-hearted, brave, and determined young boy with psychic abilities. The game follows his journey, along with a group of friends, to save the world from an alien invasion known as \"Giygas.\"\n\nNess starts his adventure when a meteor crashes near his home in the town of Onett, and he receives a message from a being from the future called Buzz Buzz. This message reveals that he is the chosen one to stop Giygas from destroying the world. Throughout the game, Ness travels to various locations, battles bizarre enemies, and gains new friends with unique abilities, such as Paula, Jeff, and Poo.\n\nAs the game progresses, Ness's psychic powers grow stronger, allowing him to use PSI (Psychic Points) to perform special attacks and heal his party members. His courage and determination play a significant role in defeating Giygas and saving the world.\n\nOverall, Ness is characterized by his bravery, psychic abilities, and the strong bond he forms with his friends, making him a beloved and iconic character in the EarthBound series.", "links": {"subreddit": ["earthbound"]}, "path": {"240-258": [[-1235, 299], [-1235, 295], [-1231, 293], [-1225, 293], [-1223, 294], [-1222, 295], [-1221, 296], [-1221, 297], [-1222, 298], [-1221, 299], [-1221, 302], [-1222, 302], [-1225, 305], [-1222, 310], [-1222, 311], [-1223, 312], [-1223, 315], [-1224, 316], [-1226, 316], [-1227, 314], [-1228, 314], [-1230, 316], [-1232, 316], [-1233, 315], [-1232, 314], [-1232, 313], [-1233, 312], [-1233, 311], [-1234, 310], [-1235, 309], [-1236, 308], [-1235, 306], [-1234, 303], [-1234, 302], [-1235, 301]]}, "center": {"240-258": [-1228, 299]}}, -{"id": 4269, "name": "Nail & Gear", "description": "The \"Nail & Gear\", the official flag of the Hello Internet podcast, which is currently on hiatus, by CGP Grey and Brady Haran. The flag was chosen by the podcast's listeners in a 2015 mail-in election.", "links": {"website": ["http://www.hellointernet.fm/"], "subreddit": ["HelloInternet"]}, "path": {"245-258": [[51, 973], [51, 996], [74, 996], [74, 973]]}, "center": {"245-258": [63, 985]}}, +{"id": 4267, "name": "Ame-chan (Needy Streamer Overload)", "description": "The main protagonist's full body appearance from the game \"Needy Streamer Overload\" (also known as \"Needy Girl Overdose\").\n\nNeedy Streamer Overload is a 2022 denpa-themed adventure visual novel created by Japanese developer Xemono and published by WSS Playground for macOS, Microsoft Windows, and Nintendo Switch.\n\nAme-chan is her true identity off-camera; by night she streams as \"OMGkawaiiAngel\" (or \"kAngel\" for short).\n\n🙏BLESS🙏", "links": {"website": ["https://store.steampowered.com/app/1451940/NEEDY_STREAMER_OVERLOAD/"], "subreddit": ["needystreameroverload"]}, "path": {"171-258, T": [[-812, 840], [-812, 841], [-809, 841], [-809, 838], [-807, 838], [-807, 837], [-806, 837], [-806, 834], [-807, 834], [-807, 833], [-808, 833], [-808, 832], [-807, 832], [-807, 831], [-806, 831], [-806, 825], [-806, 835], [-805, 835], [-805, 836], [-803, 836], [-803, 835], [-802, 835], [-802, 825], [-803, 825], [-803, 822], [-804, 822], [-804, 821], [-820, 821], [-820, 822], [-821, 822], [-821, 825], [-822, 825], [-822, 835], [-821, 835], [-821, 836], [-819, 836], [-819, 835], [-818, 835], [-818, 825], [-818, 831], [-817, 831], [-817, 833], [-816, 833], [-817, 833], [-817, 834], [-818, 834], [-818, 837], [-816, 837], [-816, 838], [-815, 838], [-815, 841], [-812, 841]]}, "center": {"171-258, T": [-812, 828]}}, +{"id": 4268, "name": "Ness (Earthbound 2)", "description": "Ness is the main protagonist of the video game \"EarthBound\" (known as \"Mother 2\" in Japan). He is a kind-hearted, brave, and determined young boy with psychic abilities. The game follows his journey, along with a group of friends, to save the world from an alien invasion known as \"Giygas.\"\n\nNess starts his adventure when a meteor crashes near his home in the town of Onett, and he receives a message from a being from the future called Buzz Buzz. This message reveals that he is the chosen one to stop Giygas from destroying the world. Throughout the game, Ness travels to various locations, battles bizarre enemies, and gains new friends with unique abilities, such as Paula, Jeff, and Poo.\n\nAs the game progresses, Ness's psychic powers grow stronger, allowing him to use PSI (Psychic Points) to perform special attacks and heal his party members. His courage and determination play a significant role in defeating Giygas and saving the world.\n\nOverall, Ness is characterized by his bravery, psychic abilities, and the strong bond he forms with his friends, making him a beloved and iconic character in the EarthBound series.", "links": {"subreddit": ["earthbound"]}, "path": {"240-258, T": [[-1235, 299], [-1235, 295], [-1231, 293], [-1225, 293], [-1223, 294], [-1222, 295], [-1221, 296], [-1221, 297], [-1222, 298], [-1221, 299], [-1221, 302], [-1222, 302], [-1225, 305], [-1222, 310], [-1222, 311], [-1223, 312], [-1223, 315], [-1224, 316], [-1226, 316], [-1227, 314], [-1228, 314], [-1230, 316], [-1232, 316], [-1233, 315], [-1232, 314], [-1232, 313], [-1233, 312], [-1233, 311], [-1234, 310], [-1235, 309], [-1236, 308], [-1235, 306], [-1234, 303], [-1234, 302], [-1235, 301]]}, "center": {"240-258, T": [-1228, 299]}}, +{"id": 4269, "name": "Nail & Gear", "description": "The \"Nail & Gear\", the official flag of the Hello Internet podcast, which is currently on hiatus, by CGP Grey and Brady Haran. The flag was chosen by the podcast's listeners in a 2015 mail-in election.", "links": {"website": ["http://www.hellointernet.fm/"], "subreddit": ["HelloInternet"]}, "path": {"245-258, T": [[51, 973], [51, 996], [74, 996], [74, 973]]}, "center": {"245-258, T": [63, 985]}}, {"id": 4270, "name": "Ness", "description": "Fuzzy Pickles! \n\nThis Ness is ready for a picture! The main protagonist of 1994's Earthbound (Mother 2 in Japan), Ness takes this pose when the friendly neighbourhood camera man descends from the sky to snap a photo.\n\nThis is one of two Ness sprites located on the canvas.", "links": {"website": ["https://starmen.net"], "subreddit": ["earthbound"]}, "path": {"249": [[-1236, 295], [-1232, 295], [-1232, 294], [-1225, 293], [-1221, 297], [-1221, 302], [-1225, 305], [-1222, 309], [-1223, 312], [-1224, 314], [-1223, 315], [-1226, 316], [-1228, 314], [-1231, 316], [-1233, 315], [-1233, 311], [-1236, 308], [-1235, 303], [-1235, 299], [-1234, 297]]}, "center": {"249": [-1229, 300]}}, -{"id": 4271, "name": "Italy and Mochi Italy", "description": "North Italy is a main character in Hetalia. The series features various countries represented by human-like characters.", "links": {"website": ["https://hetalia.fandom.com/wiki/Hetalia_Archives"], "subreddit": ["hetalia"]}, "path": {"250-258": [[-1, 550], [28, 550], [27, 572], [-1, 573], [-1, 551]]}, "center": {"250-258": [13, 561]}}, -{"id": 4272, "name": "New Twice City", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nr/Twice settled their 2nd area on the canvas here just after the 5th expansion. Bringing r/KpopPlace along with them, who eventually settled to the west of r/Twice. The art here includes \"Zone\" (Twice member Jihyo's first debut mini-album), \"MiSaMo\" (a Twice sub-unit consisting of Twice's three Japanese members Mina, Sana, and Momo), \"Pop!\" (Twice member Nayeon's first solo debut single and the first solo debut of any Twice member), 4 Lovelyz (The 4 remaining member's mascots in their individual colors: Dayhun, Jeongyeon, Chaeyoung, and Tzuyu), as well as the Twice logo.\n\nOnce (Twice's fandom), who were not in communication with r/Twice, discovered the location and began manipulating the area around r/Twice's original design plan, eventually adding member Nayeon's bunny, a heart, and forcing a fourth Lovely to appear. These rogue Once were so powerful r/Twice decided to adopt these designs. Trouble arose as the rogue Once started pushing into \"Fuck Boz\" territory to the west. r/Twice was forced to quickly form an alliance with \"Fuck Boz\" to stop the advancement. In the wake of the advancement west, r/Twice now had room to add the 4th and final Lovely to the canvas; allowing r/Twice to represent all 9 members of Twice in this area.", "links": {"subreddit": ["Twice"]}, "path": {"172-177": [[-1382, -370], [-1382, -327], [-1361, -327], [-1361, -370]], "178-205": [[-1382, -370], [-1382, -352], [-1387, -352], [-1388, -352], [-1388, -343], [-1389, -343], [-1389, -344], [-1395, -344], [-1396, -343], [-1396, -342], [-1397, -342], [-1397, -340], [-1396, -340], [-1396, -339], [-1395, -339], [-1395, -338], [-1394, -338], [-1394, -337], [-1390, -337], [-1390, -328], [-1361, -327], [-1361, -370]], "206-258": [[-1382, -369], [-1361, -369], [-1361, -349], [-1352, -349], [-1352, -327], [-1390, -327], [-1390, -337], [-1394, -337], [-1394, -338], [-1395, -338], [-1395, -339], [-1396, -339], [-1397, -339], [-1397, -340], [-1397, -342], [-1397, -343], [-1395, -343], [-1395, -344], [-1388, -344], [-1388, -352], [-1382, -352]]}, "center": {"172-177": [-1371, -348], "178-205": [-1374, -341], "206-258": [-1373, -341]}}, +{"id": 4271, "name": "Italy and Mochi Italy", "description": "North Italy is a main character in Hetalia. The series features various countries represented by human-like characters.", "links": {"website": ["https://hetalia.fandom.com/wiki/Hetalia_Archives"], "subreddit": ["hetalia"]}, "path": {"250-258, T": [[-1, 550], [28, 550], [27, 572], [-1, 573], [-1, 551]]}, "center": {"250-258, T": [13, 561]}}, +{"id": 4272, "name": "New Twice City", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nr/Twice settled their 2nd area on the canvas here just after the 5th expansion. Bringing r/KpopPlace along with them, who eventually settled to the west of r/Twice. The art here includes \"Zone\" (Twice member Jihyo's first debut mini-album), \"MiSaMo\" (a Twice sub-unit consisting of Twice's three Japanese members Mina, Sana, and Momo), \"Pop!\" (Twice member Nayeon's first solo debut single and the first solo debut of any Twice member), 4 Lovelyz (The 4 remaining member's mascots in their individual colors: Dayhun, Jeongyeon, Chaeyoung, and Tzuyu), as well as the Twice logo.\n\nOnce (Twice's fandom), who were not in communication with r/Twice, discovered the location and began manipulating the area around r/Twice's original design plan, eventually adding member Nayeon's bunny, a heart, and forcing a fourth Lovely to appear. These rogue Once were so powerful r/Twice decided to adopt these designs. Trouble arose as the rogue Once started pushing into \"Fuck Boz\" territory to the west. r/Twice was forced to quickly form an alliance with \"Fuck Boz\" to stop the advancement. In the wake of the advancement west, r/Twice now had room to add the 4th and final Lovely to the canvas; allowing r/Twice to represent all 9 members of Twice in this area.", "links": {"subreddit": ["Twice"]}, "path": {"172-177": [[-1382, -370], [-1382, -327], [-1361, -327], [-1361, -370]], "178-205": [[-1382, -370], [-1382, -352], [-1387, -352], [-1388, -352], [-1388, -343], [-1389, -343], [-1389, -344], [-1395, -344], [-1396, -343], [-1396, -342], [-1397, -342], [-1397, -340], [-1396, -340], [-1396, -339], [-1395, -339], [-1395, -338], [-1394, -338], [-1394, -337], [-1390, -337], [-1390, -328], [-1361, -327], [-1361, -370]], "206-258, T": [[-1382, -369], [-1361, -369], [-1361, -349], [-1352, -349], [-1352, -327], [-1390, -327], [-1390, -337], [-1394, -337], [-1394, -338], [-1395, -338], [-1395, -339], [-1396, -339], [-1397, -339], [-1397, -340], [-1397, -342], [-1397, -343], [-1395, -343], [-1395, -344], [-1388, -344], [-1388, -352], [-1382, -352]]}, "center": {"172-177": [-1371, -348], "178-205": [-1374, -341], "206-258, T": [-1373, -341]}}, {"id": 4273, "name": "Webos Community (2nd Attempt)", "description": "Second Attempt raided by a certain treacherous endygamingpro. Our community has Hispanic Dumb Guys, but they have a lot of WEBOS✊🥚", "links": {}, "path": {"160-168": [[-317, -816], [-300, -816], [-300, -797], [-317, -797]]}, "center": {"160-168": [-308, -806]}}, -{"id": 4274, "name": "Ness (Side View)", "description": "Ness is the main protagonist of the 1994 SNES game, Earthbound (Mother 2 in Japan).\n\nA baseball lovin' boy from Onett, Eagleland, Ness must set off on an journey to defeat Giygas and put a stop to his evil influences.\n\nThis is one of two Ness sprites that can be found on the canvas.", "links": {"website": ["https://starmen.net"], "subreddit": ["earthbound"]}, "path": {"209-258": [[-156, 885], [-156, 882], [-155, 881], [-152, 877], [-154, 874], [-151, 870], [-151, 866], [-156, 863], [-160, 863], [-162, 865], [-165, 866], [-163, 868], [-164, 871], [-160, 876], [-161, 881], [-160, 883], [-161, 884], [-160, 885]]}, "center": {"209-258": [-157, 869]}}, -{"id": 4275, "name": "Awesome Face / Epic Smiley", "description": "Awesome Face, also known as \"epic smiley\", refers to a drawing of a round (or in this case, square) yellow-colored smiley face with upturned eyes. It has been predominantly used on sites and web forums like Something Awful and 4chan as a reaction face indicating approval, but can also be used ironically to convey disdain.\n\nIt started gaining popularity in early 2007 and grew in usage from there. According to Chris Ainsworth of the gaming blog Driph, the Awesome Face was part of a series of emoticons designed and illustrated for the Pokemon-related web forum Pokemopolis.", "links": {}, "path": {"250-258": [[-1309, 543], [-1303, 543], [-1303, 549], [-1309, 549]]}, "center": {"250-258": [-1306, 546]}}, -{"id": 4276, "name": "r/truscum", "description": "The term \"truscum\" (\"true transsexual scum\"), also known as transmedicalism, is used to describe a specific viewpoint within the trans community. The r/truscum community believes gender dysphoria is required to be considered transgender/transsexual.", "links": {"website": ["https://en.wikipedia.org/wiki/Transmedicalism"], "subreddit": ["truscum"]}, "path": {"250-258": [[-1022, -600], [-1025, -606], [-1019, -606], [-1019, -603], [-1025, -604], [-1020, -602]]}, "center": {"250-258": [-1021, -605]}}, -{"id": 4277, "name": "Rem and Ram", "description": "The characters Rem and Ram from the light novel and anime Re:Zero", "links": {"subreddit": ["Re_Zero"], "discord": ["rezero"]}, "path": {"177-258": [[-139, -757], [-137, -759], [-124, -759], [-123, -758], [-122, -758], [-121, -757], [-121, -756], [-120, -755], [-120, -751], [-121, -750], [-122, -749], [-122, -748], [-123, -748], [-123, -747], [-123, -746], [-139, -746], [-139, -749], [-140, -750], [-141, -751], [-141, -755], [-140, -756]]}, "center": {"177-258": [-130, -752]}}, +{"id": 4274, "name": "Ness (Side View)", "description": "Ness is the main protagonist of the 1994 SNES game, Earthbound (Mother 2 in Japan).\n\nA baseball lovin' boy from Onett, Eagleland, Ness must set off on an journey to defeat Giygas and put a stop to his evil influences.\n\nThis is one of two Ness sprites that can be found on the canvas.", "links": {"website": ["https://starmen.net"], "subreddit": ["earthbound"]}, "path": {"209-258, T": [[-156, 885], [-156, 882], [-155, 881], [-152, 877], [-154, 874], [-151, 870], [-151, 866], [-156, 863], [-160, 863], [-162, 865], [-165, 866], [-163, 868], [-164, 871], [-160, 876], [-161, 881], [-160, 883], [-161, 884], [-160, 885]]}, "center": {"209-258, T": [-157, 869]}}, +{"id": 4275, "name": "Awesome Face / Epic Smiley", "description": "Awesome Face, also known as \"epic smiley\", refers to a drawing of a round (or in this case, square) yellow-colored smiley face with upturned eyes. It has been predominantly used on sites and web forums like Something Awful and 4chan as a reaction face indicating approval, but can also be used ironically to convey disdain.\n\nIt started gaining popularity in early 2007 and grew in usage from there. According to Chris Ainsworth of the gaming blog Driph, the Awesome Face was part of a series of emoticons designed and illustrated for the Pokemon-related web forum Pokemopolis.", "links": {}, "path": {"250-258, T": [[-1309, 543], [-1303, 543], [-1303, 549], [-1309, 549]]}, "center": {"250-258, T": [-1306, 546]}}, +{"id": 4276, "name": "r/truscum", "description": "The term \"truscum\" (\"true transsexual scum\"), also known as transmedicalism, is used to describe a specific viewpoint within the trans community. The r/truscum community believes gender dysphoria is required to be considered transgender/transsexual.", "links": {"website": ["https://en.wikipedia.org/wiki/Transmedicalism"], "subreddit": ["truscum"]}, "path": {"250-258, T": [[-1022, -600], [-1025, -606], [-1019, -606], [-1019, -603], [-1025, -604], [-1020, -602]]}, "center": {"250-258, T": [-1021, -605]}}, +{"id": 4277, "name": "Rem and Ram", "description": "The characters Rem and Ram from the light novel and anime Re:Zero", "links": {"subreddit": ["Re_Zero"], "discord": ["rezero"]}, "path": {"177-258, T": [[-139, -757], [-137, -759], [-124, -759], [-123, -758], [-122, -758], [-121, -757], [-121, -756], [-120, -755], [-120, -751], [-121, -750], [-122, -749], [-122, -748], [-123, -748], [-123, -747], [-123, -746], [-139, -746], [-139, -749], [-140, -750], [-141, -751], [-141, -755], [-140, -756]]}, "center": {"177-258, T": [-130, -752]}}, {"id": 4278, "name": "Map of Europe (PlaceEU)", "description": "The Map of Europe (PlaceEU) created by r/placede.\n\nThe map excludes Russia, Belarus has the people's flag and Crimea is with it's rightful owner and the United Kingdom is divided into England, Scotland and Wales. There are also active disputes about some autonomous regions and regions with their own cultural traditions and language that differ from the national state to which they belong, for example, Catalonia, Bavaria, South Tyrol or Corsica.\n\nHistorically important regions are also disputed, such as Alsace or Kaliningrad. For the Germans, Kaliningrad is called \"Königsberg\", which is also claimed by the Polish as \"Królewiec\".", "links": {"subreddit": ["placede"]}, "path": {"166-220": [[-367, 617], [-367, 829], [-154, 829], [-154, 648], [-193, 648], [-193, 631], [-195, 631], [-195, 616], [-241, 616], [-242, 616], [-242, 617], [-243, 617], [-244, 617], [-244, 618], [-244, 619], [-244, 620], [-244, 621], [-244, 622], [-299, 622], [-299, 616]]}, "center": {"166-220": [-262, 726]}}, {"id": 4279, "name": "flaiDERP - Flaiveth", "description": "Es un emote representativo de la comunidad de Flaiveth (Streamer desde 2017, Cosplayer desde 2011 y Seraphine oficial de riot", "links": {"website": ["https://www.twitch.tv/flaiveth"]}, "path": {"226-247": [[-1011, -626], [-1011, -612], [-1024, -612], [-1021, -622], [-1018, -625], [-1018, -626]]}, "center": {"226-247": [-1016, -618]}}, -{"id": 4280, "name": "Goomba (Super Mario)", "description": "Goomba is a fictional species in the Super Mario franchise. In the series they serve as an easy enemy for the player to defeat. They have become an iconic part of the franchise appearing in most Super Mario media. \n\nThis artwork in particular is taken from the 1985 video game Super Mario Bros for the NES. Their color palette has been modified to resemble the goomba's more modern appearance.", "links": {"subreddit": ["mario"]}, "path": {"250-258": [[-1251, 200], [-1251, 204], [-1249, 206], [-1249, 208], [-1249, 210], [-1242, 211], [-1242, 210], [-1241, 210], [-1239, 211], [-1234, 211], [-1234, 210], [-1233, 205], [-1232, 200], [-1234, 197], [-1235, 197], [-1236, 195], [-1238, 193], [-1239, 192], [-1244, 192]]}, "center": {"250-258": [-1242, 202]}}, -{"id": 4281, "name": "Autism pride flag w/ infinity symbol", "description": "This is the autism flag with the autism infinity symbol inside, despite getting some hate directed at it got to the true final canvas!", "links": {"subreddit": ["placeautism"], "discord": ["MbNB4CzV9h"]}, "path": {"250-258": [[114, 90], [124, 90], [124, 98], [114, 98]]}, "center": {"250-258": [119, 94]}}, -{"id": 4282, "name": "Europe", "description": "This map of Europe was created by r/PlaceEU with help from r/placede.\n\nThe map excludes Russia, Belarus has the people's flag, and Crimea is with its rightful owner. The United Kingdom is divided into England, Scotland and Wales. There are also active disputes about some autonomous regions and regions with their own cultural traditions and language that differ from the national state to which they belong; for example, Catalonia, Bavaria, South Tyrol, or Corsica.\n\nHistorically important regions are also disputed, such as Alsace or Kaliningrad. For the Germans, Kaliningrad is called \"Königsberg\", which is also claimed by the Polish as \"Królewiec\".\n\nThe area originally stopped at the edge of Ukraine and part of Turkey, but later with permission, expanded to include the rest of Turkey, Georgia, and Armenia. Geo-cultural ethnicities living in southern Russia that were not Russian, such as Chechnya and Circassia, also got represented in the extension.", "links": {"website": ["https://en.wikipedia.org/wiki/Europe"], "subreddit": ["PlaceEU"]}, "path": {"158-168": [[-368, 616], [-368, 830], [-153, 830], [-153, 807], [-126, 783], [-123, 784], [-117, 775], [-119, 768], [-130, 759], [-132, 759], [-138, 766], [-147, 766], [-151, 771], [-153, 771], [-154, 648], [-193, 648], [-193, 631], [-195, 631], [-195, 616], [-244, 616], [-244, 622], [-300, 622], [-300, 616]], "169-258": [[-282, 634], [-282, 644], [-284, 644], [-284, 648], [-287, 648], [-287, 665], [-283, 665], [-283, 674], [-323, 674], [-323, 664], [-319, 664], [-319, 653], [-326, 651], [-331, 651], [-331, 646], [-337, 649], [-337, 651], [-339, 651], [-339, 653], [-336, 656], [-336, 658], [-338, 658], [-339, 659], [-332, 665], [-332, 666], [-336, 670], [-333, 673], [-333, 678], [-335, 682], [-335, 687], [-338, 689], [-330, 693], [-330, 699], [-332, 704], [-332, 739], [-329, 739], [-329, 769], [-337, 769], [-337, 773], [-341, 789], [-341, 795], [-343, 795], [-343, 798], [-345, 798], [-345, 804], [-367, 804], [-367, 826], [-316, 826], [-316, 828], [-305, 828], [-305, 825], [-295, 816], [-261, 816], [-251, 823], [-251, 831], [-235, 831], [-235, 825], [-225, 825], [-225, 828], [-215, 828], [-215, 827], [-207, 827], [-207, 824], [-196, 824], [-196, 826], [-155, 826], [-155, 835], [-132, 835], [-132, 814], [-112, 814], [-112, 745], [-153, 745], [-153, 729], [-175, 729], [-175, 701], [-154, 701], [-154, 648], [-193, 648], [-193, 631], [-238, 631], [-238, 633]]}, "center": {"158-168": [-264, 726], "169-258": [-249, 742]}}, +{"id": 4280, "name": "Goomba (Super Mario)", "description": "Goomba is a fictional species in the Super Mario franchise. In the series they serve as an easy enemy for the player to defeat. They have become an iconic part of the franchise appearing in most Super Mario media. \n\nThis artwork in particular is taken from the 1985 video game Super Mario Bros for the NES. Their color palette has been modified to resemble the goomba's more modern appearance.", "links": {"subreddit": ["mario"]}, "path": {"250-258, T": [[-1251, 200], [-1251, 204], [-1249, 206], [-1249, 208], [-1249, 210], [-1242, 211], [-1242, 210], [-1241, 210], [-1239, 211], [-1234, 211], [-1234, 210], [-1233, 205], [-1232, 200], [-1234, 197], [-1235, 197], [-1236, 195], [-1238, 193], [-1239, 192], [-1244, 192]]}, "center": {"250-258, T": [-1242, 202]}}, +{"id": 4281, "name": "Autism pride flag w/ infinity symbol", "description": "This is the autism flag with the autism infinity symbol inside, despite getting some hate directed at it got to the true final canvas!", "links": {"subreddit": ["placeautism"], "discord": ["MbNB4CzV9h"]}, "path": {"250-258, T": [[114, 90], [124, 90], [124, 98], [114, 98]]}, "center": {"250-258, T": [119, 94]}}, +{"id": 4282, "name": "Europe", "description": "This map of Europe was created by r/PlaceEU with help from r/placede.\n\nThe map excludes Russia, Belarus has the people's flag, and Crimea is with its rightful owner. The United Kingdom is divided into England, Scotland and Wales. There are also active disputes about some autonomous regions and regions with their own cultural traditions and language that differ from the national state to which they belong; for example, Catalonia, Bavaria, South Tyrol, or Corsica.\n\nHistorically important regions are also disputed, such as Alsace or Kaliningrad. For the Germans, Kaliningrad is called \"Königsberg\", which is also claimed by the Polish as \"Królewiec\".\n\nThe area originally stopped at the edge of Ukraine and part of Turkey, but later with permission, expanded to include the rest of Turkey, Georgia, and Armenia. Geo-cultural ethnicities living in southern Russia that were not Russian, such as Chechnya and Circassia, also got represented in the extension.", "links": {"website": ["https://en.wikipedia.org/wiki/Europe"], "subreddit": ["PlaceEU"]}, "path": {"158-168": [[-368, 616], [-368, 830], [-153, 830], [-153, 807], [-126, 783], [-123, 784], [-117, 775], [-119, 768], [-130, 759], [-132, 759], [-138, 766], [-147, 766], [-151, 771], [-153, 771], [-154, 648], [-193, 648], [-193, 631], [-195, 631], [-195, 616], [-244, 616], [-244, 622], [-300, 622], [-300, 616]], "169-258, T": [[-282, 634], [-282, 644], [-284, 644], [-284, 648], [-287, 648], [-287, 665], [-283, 665], [-283, 674], [-323, 674], [-323, 664], [-319, 664], [-319, 653], [-326, 651], [-331, 651], [-331, 646], [-337, 649], [-337, 651], [-339, 651], [-339, 653], [-336, 656], [-336, 658], [-338, 658], [-339, 659], [-332, 665], [-332, 666], [-336, 670], [-333, 673], [-333, 678], [-335, 682], [-335, 687], [-338, 689], [-330, 693], [-330, 699], [-332, 704], [-332, 739], [-329, 739], [-329, 769], [-337, 769], [-337, 773], [-341, 789], [-341, 795], [-343, 795], [-343, 798], [-345, 798], [-345, 804], [-367, 804], [-367, 826], [-316, 826], [-316, 828], [-305, 828], [-305, 825], [-295, 816], [-261, 816], [-251, 823], [-251, 831], [-235, 831], [-235, 825], [-225, 825], [-225, 828], [-215, 828], [-215, 827], [-207, 827], [-207, 824], [-196, 824], [-196, 826], [-155, 826], [-155, 835], [-132, 835], [-132, 814], [-112, 814], [-112, 745], [-153, 745], [-153, 729], [-175, 729], [-175, 701], [-154, 701], [-154, 648], [-193, 648], [-193, 631], [-238, 631], [-238, 633]]}, "center": {"158-168": [-264, 726], "169-258, T": [-249, 742]}}, {"id": 4283, "name": "flaiDERP - Flaiveth", "description": "Es un emote representativo de la comunidad de Flaiveth (Streamer desde 2017, Cosplayer desde 2011 y Seraphine oficial de riot", "links": {"website": ["https://www.twitch.tv/flaiveth"]}, "path": {"226-247": [[-1011, -626], [-1011, -612], [-1024, -612], [-1021, -622], [-1018, -625], [-1018, -626]]}, "center": {"226-247": [-1016, -618]}}, {"id": 4284, "name": "Map of Europe (PlaceEU)", "description": "The Map of Europe (PlaceEU) created by r/placede.\n\nThe map excludes Russia, Belarus has the people's flag and Crimea is with it's rightful owner and the United Kingdom is divided into England, Scotland and Wales. There are also active disputes about some autonomous regions and regions with their own cultural traditions and language that differ from the national state to which they belong, for example, Catalonia, Bavaria, South Tyrol or Corsica.\n\nHistorically important regions are also disputed, such as Alsace or Kaliningrad. For the Germans, Kaliningrad is called \"Königsberg\", which is also claimed by the Polish as \"Królewiec\".", "links": {"subreddit": ["placede"]}, "path": {"166-220": [[-367, 617], [-367, 829], [-154, 829], [-154, 648], [-193, 648], [-193, 631], [-195, 631], [-195, 616], [-241, 616], [-242, 616], [-242, 617], [-243, 617], [-244, 617], [-244, 618], [-244, 619], [-244, 620], [-244, 621], [-244, 622], [-299, 622], [-299, 616]]}, "center": {"166-220": [-262, 726]}}, {"id": 4285, "name": "flaiDERP - Flaiveth", "description": "Es un emote representativo de la comunidad de Flaiveth (Streamer desde 2017, Cosplayer desde 2011 y Seraphine oficial de riot", "links": {"website": ["https://www.twitch.tv/flaiveth"]}, "path": {"226-247": [[-1011, -626], [-1011, -612], [-1024, -612], [-1021, -622], [-1018, -625], [-1018, -626]]}, "center": {"226-247": [-1016, -618]}}, -{"id": 4286, "name": "Geometry Dash", "description": "Geometry Dash is a music platforming video games developed by Robert \"RobTop\" Topala. It is popular on Steam, especially with PC players.", "links": {"website": ["https://en.wikipedia.org/wiki/Geometry_Dash"], "subreddit": ["geometrydash"], "discord": ["hZj5evMRZr"]}, "path": {"236-258": [[11, 972], [11, 996], [34, 996], [34, 972]]}, "center": {"236-258": [23, 984]}}, -{"id": 4287, "name": "Breadbug", "description": "Breadbug\nare enemy in Pikmin/Pikmin2/Pikmin4\n\nIs are meme in the community", "links": {"subreddit": ["Pikmin"]}, "path": {"250-258": [[1453, 387], [1461, 387], [1461, 394], [1453, 394]]}, "center": {"250-258": [1457, 391]}}, -{"id": 4288, "name": "La Garita (The Watchtower)", "description": "The \"Garita\" is representative of Puerto Rico's old spanish forts and national monuments: \"El Morro\" and \"Castillo San Cristobal\". These forts are the largest and some of the oldest built by the spanish in the new world.", "links": {"website": ["https://www.nps.gov/teachers/classrooms/60sanjuan.htm"], "subreddit": ["PuertoRico"], "discord": ["EZ4C9FR3"]}, "path": {"250-258": [[196, -25], [194, -25], [191, -22], [191, -16], [195, -12], [196, -12]]}, "center": {"250-258": [194, -18]}}, -{"id": 4289, "name": "Makoto Yuki (Persona 3)", "description": "\"Persona 3\" is a role-playing video game in the Shin Megami Tensei series. The game follows the protagonist, a high school student who transfers to Gekkoukan High in the city of Iwatodai. The protagonist discovers that he has the ability to summon Personas, manifestations of his inner psyche, to fight against creatures called Shadows during a hidden hour known as the Dark Hour. \n\nAlongside a group of classmates who share the same power, they form a special group called SEES (Specialized Extracurricular Execution Squad) and aim to eliminate the Shadows and prevent a mysterious phenomenon called the \"The Fall\" from occurring on a specific date. \n\nAs the story unfolds, the protagonist and his friends face personal struggles, forming strong bonds, and uncovering dark secrets about themselves and the enigmatic Tartarus tower, where the Shadows lurk. The game combines dungeon-crawling and social simulation elements, emphasizing the importance of balancing daily life and fighting the impending threat.\n\nA remake of Persona 3, entitled Persona 3: Reload, will release in early 2024.", "links": {"website": ["https://persona.atlus.com/"], "subreddit": ["persona"]}, "path": {"250-258": [[-1097, 458], [-1097, 441], [-1082, 441], [-1082, 459], [-1097, 459]]}, "center": {"250-258": [-1089, 450]}}, -{"id": 4290, "name": "OKAMI & Fech The Ferret", "description": "OKAMI is a very popular german chatbotproject on Whatsapp that exists since August 2020.\nAfter being wiped 4x, the r/Greenlattice provided a space next to \"Fech the ferret\".\n\nFech The Ferret is a 3D platformer being developed by Aucritas and led by RaoulWB.\n\nAs a thank you, the OKAMI community included the videogame character into the artwork.", "links": {"website": ["https://playfe.ch", "https://playfe.ch"], "subreddit": ["ookami", "ookami_v2"], "discord": ["9QKKx6X"]}, "path": {"233-237": [[-791, -983], [-791, -1000], [-770, -1000], [-770, -983]], "238-258": [[-791, -982], [-791, -1000], [-769, -1000], [-770, -981]]}, "center": {"233-237": [-780, -991], "238-258": [-780, -991]}}, -{"id": 4291, "name": "Freminet's Penguin", "description": "Freminet is character from the Fontaine region in the game, Genshin Impact. He has a cute mechanical penguin companion!", "links": {"subreddit": ["lyney", "Freminetmains_"]}, "path": {"250-258": [[-354, 688], [-355, 690], [-355, 697], [-352, 697], [-352, 693], [-352, 692], [-351, 692], [-351, 690], [-350, 690], [-350, 689], [-351, 689], [-351, 688], [-352, 687], [-354, 687], [-355, 688], [-355, 691]]}, "center": {"250-258": [-353, 690]}}, -{"id": 4292, "name": "Steiff Teddy Bear", "description": "Steiff is a German-based plush toy company, that claims to have have made the world's first factory-made teddy bear", "links": {"website": ["https://en.wikipedia.org/wiki/Steiff"], "subreddit": ["placeDE"]}, "path": {"250-258": [[187, -551], [217, -551], [217, -566], [212, -572], [212, -579], [215, -582], [215, -590], [210, -590], [208, -587], [191, -587], [192, -571], [187, -568]]}, "center": {"250-258": [202, -564]}}, -{"id": 4293, "name": "Winged Pikmin", "description": "A Pikmin within the Pikmin series who, as the name implies, has the ability to fly. The art expresses the alliance between r/Pikmin and the Blue Square.", "links": {"subreddit": ["Pikmin"]}, "path": {"160-258": [[295, -884], [303, -884], [303, -890], [300, -891], [302, -894], [300, -896], [295, -890]]}, "center": {"160-258": [299, -888]}}, -{"id": 4294, "name": "Logo of the IBS IT & Business School Oldenburg", "description": "Represents the logo of IBS IT & Business School Oldenburg, a private university specializing in dual study programs. The logo was drawn by the business informatics students of the class of 2020.", "links": {"website": ["https://www.ibs-ol.de"]}, "path": {"189-258": [[-179, -971], [-169, -971], [-160, -979], [-167, -989], [-175, -983], [-179, -982], [-183, -979], [-183, -974]]}, "center": {"189-258": [-171, -978]}}, -{"id": 4295, "name": "Special Week", "description": "Special Week is based off on a real life Japanese Racehorse and is one of the three main protagonists of Uma Musume: Pretty Derby and the character used to promote Uma Musume as a whole.", "links": {"website": ["https://umamusume.fandom.com/wiki/Special_Week"], "subreddit": ["UmaMusume"], "discord": ["umamusume"]}, "path": {"46-258": [[-193, 203], [-195, 197], [-191, 187], [-188, 185], [-186, 179], [-175, 184], [-169, 185], [-168, 182], [-165, 182], [-165, 193], [-166, 210], [-173, 202], [-175, 203], [-181, 201], [-184, 202], [-186, 202], [-188, 200]]}, "center": {"46-258": [-181, 191]}}, -{"id": 4296, "name": "Final Canvas Lewd Shego", "description": "Proudly and shamelessly depicted is the villain/antihero Shego from the Disney Channel series \"Kim Possible\" in a lewd pose and without any clothes. \n\nHer creation represented the 7th and final attempt to bring her on the canvas and would prove to be successful surviving until the great whiteout. \n\nAlthough originally slated to be a suggestive but SFW (safe for work) design, several random users would ultimately make her explicitly sexual in depiction. \n\nModerators of r/place were unwilling to delete her in entirety. Instead they would repeatedly censor her nipples and vagina. This resulted in a fierce 12 hour long battle of censorship against a rebellious user-base that valued freedom of expression. \n\nUltimately the coalition of Reddit users would overwhelm the censorship leading to it becoming one of the few explicitly sexual artworks to survive in r/place history.\n\nDespite the disorganized nature of her body, the head and hair were coordinated by the r/196x2 Discord server. Its members are a collection of users who either had initially worked on the 1st Shego led by streamers or joined during the later Shegos led and coordinated by the server.\n\nIn celebration of her successful placement, in the few remaining hours a crown would placed on her head as well as text depicting her name and subreddit. To most users amusement, in cooperation with a group of lesbian pride flag placers the phrase \"iS HOT\" follows.", "links": {"subreddit": ["shego"], "discord": ["Wcsya8Gh"]}, "path": {"226-258": [[-1402, 246], [-1402, 243], [-1403, 242], [-1403, 239], [-1402, 239], [-1401, 238], [-1401, 236], [-1402, 236], [-1402, 235], [-1406, 231], [-1406, 226], [-1406, 224], [-1405, 218], [-1394, 208], [-1406, 205], [-1406, 198], [-1355, 198], [-1355, 204], [-1380, 204], [-1380, 210], [-1374, 218], [-1371, 225], [-1362, 231], [-1362, 237], [-1370, 244], [-1373, 244], [-1371, 247], [-1374, 251], [-1377, 253], [-1371, 261], [-1369, 263], [-1372, 269], [-1373, 280], [-1371, 284], [-1374, 287], [-1376, 287], [-1381, 283], [-1381, 264], [-1383, 261], [-1384, 264], [-1387, 280], [-1386, 283], [-1390, 287], [-1394, 287], [-1395, 282], [-1396, 280], [-1393, 277], [-1395, 273], [-1396, 265], [-1392, 259]]}, "center": {"226-258": [-1388, 226]}}, -{"id": 4297, "name": "The Puerto Rican Parrot", "description": "The Puerto Rican Amazon is a critically endangered bird that lives all throughout the Puerto Rican archipelago.", "links": {"website": ["https://en.wikipedia.org/wiki/Puerto_Rican_amazon"], "subreddit": ["PuertoRico"], "discord": ["EZ4C9FR3"]}, "path": {"250-258": [[161, -25], [159, -23], [162, -10], [171, -10], [169, -13], [169, -15], [164, -24], [163, -25]]}, "center": {"250-258": [165, -15]}}, -{"id": 4298, "name": "Nahel", "description": "Another hommage to Nahel Merzouk a French 17-year-old who was shot at point-blank range and killed by a police officer, on 27 June 2023.", "links": {}, "path": {"250-253": [[-1108, 998], [-1106, 993], [-1107, 991], [-1119, 990], [-1121, 991], [-1131, 991], [-1129, 998]]}, "center": {"250-253": [-1118, 994]}}, -{"id": 4299, "name": "Botan (ボタン)", "description": "Kyou's pet boar from the visual novel later adapted to anime Clannad.", "links": {"website": ["https://clannad.fandom.com/wiki/Botan"], "subreddit": ["Clannad"]}, "path": {"227-258": [[-1500, 81], [-1495, 81], [-1493, 81], [-1492, 82], [-1490, 83], [-1489, 84], [-1488, 86], [-1487, 87], [-1487, 88], [-1486, 89], [-1486, 90], [-1485, 91], [-1484, 91], [-1484, 89], [-1483, 88], [-1482, 87], [-1463, 87], [-1462, 88], [-1461, 89], [-1461, 96], [-1462, 96], [-1462, 97], [-1482, 97], [-1482, 99], [-1483, 99], [-1483, 100], [-1484, 101], [-1488, 101], [-1488, 103], [-1489, 104], [-1490, 104], [-1491, 103], [-1491, 102], [-1492, 102], [-1493, 103], [-1493, 104], [-1493, 105], [-1494, 106], [-1495, 106], [-1496, 105], [-1497, 104], [-1500, 104]]}, "center": {"227-258": [-1492, 94]}}, -{"id": 4300, "name": "Ferb", "description": "This is art by Russian streamer dkincc, created by his subscribers! The art show us a Ferb, the hero of the animated series \"Phineas and Ferb\". This is one of the most favorite animated series dkincc, so Ferb is redrawn under it.", "links": {"website": ["https://www.twitch.tv/dkincc"]}, "path": {"192-258": [[-1159, 259], [-1159, 260], [-1160, 260], [-1160, 262], [-1159, 262], [-1159, 269], [-1160, 270], [-1160, 273], [-1155, 273], [-1155, 271], [-1157, 268], [-1157, 259], [-1155, 258], [-1153, 254], [-1153, 246], [-1154, 240], [-1152, 239], [-1151, 244], [-1148, 241], [-1146, 240], [-1146, 242], [-1146, 238], [-1145, 237], [-1145, 235], [-1144, 230], [-1147, 228], [-1149, 230], [-1150, 229], [-1151, 227], [-1154, 227], [-1156, 225], [-1156, 223], [-1156, 221], [-1157, 218], [-1150, 213], [-1150, 210], [-1154, 209], [-1154, 205], [-1151, 204], [-1149, 206], [-1149, 202], [-1153, 197], [-1152, 194], [-1153, 193], [-1158, 196], [-1159, 197], [-1163, 197], [-1166, 193], [-1165, 197], [-1170, 197], [-1167, 200], [-1168, 202], [-1169, 203], [-1169, 204], [-1167, 203], [-1166, 211], [-1166, 216], [-1168, 218], [-1165, 219], [-1165, 225], [-1167, 227], [-1171, 227], [-1172, 229], [-1173, 231], [-1171, 234], [-1171, 250], [-1172, 252], [-1173, 253], [-1172, 254], [-1169, 254], [-1166, 258], [-1165, 258], [-1165, 260], [-1166, 261], [-1166, 262], [-1165, 263], [-1165, 269], [-1169, 272], [-1169, 273], [-1162, 273], [-1162, 270], [-1163, 270], [-1163, 262], [-1162, 262], [-1162, 261], [-1163, 261], [-1163, 259]]}, "center": {"192-258": [-1161, 234]}}, -{"id": 4301, "name": "KEMIST_C10H15 flask", "description": "A potion to represent Mr KEMIST_C10H15N who always dresses as a chemist during these streams (he mainly does speedrun)", "links": {"website": ["https://www.twitch.tv/kemist_c10h15n"], "discord": ["HsBtFcFmt5"]}, "path": {"241-258": [[-1178, 65], [-1191, 65], [-1191, 64], [-1192, 64], [-1192, 60], [-1191, 60], [-1191, 58], [-1190, 58], [-1190, 56], [-1189, 56], [-1189, 54], [-1188, 54], [-1188, 52], [-1187, 52], [-1187, 47], [-1188, 47], [-1181, 47], [-1182, 47], [-1182, 52], [-1181, 52], [-1181, 54], [-1180, 54], [-1180, 56], [-1179, 56], [-1179, 58], [-1178, 58], [-1178, 60], [-1177, 60], [-1177, 64], [-1178, 64]]}, "center": {"241-258": [-1185, 59]}}, -{"id": 4302, "name": "Lion Head - National Symbol of Singapore", "description": "The lion head symbol, designed by Michael Lee, was published in 1986 by the government of Singapore. It symbolises courage, excellence and strength. On r/place 2023, it was overwritten by Bolivian streamers and later rebuilt further south.", "links": {"website": ["https://en.wikipedia.org/wiki/Lion_head_symbol_of_Singapore", "https://www.nhb.gov.sg/what-we-do/our-work/community-engagement/education/resources/national-symbols/the-lion-head-symbol"], "subreddit": ["singapore", "placeSG"]}, "path": {"56-75": [[339, -35], [339, -37], [342, -37], [342, -39], [351, -39], [351, -38], [353, -38], [353, -37], [354, -37], [354, -36], [355, -36], [355, -31], [354, -31], [354, -30], [353, -30], [353, -28], [352, -28], [352, -27], [350, -27], [350, -26], [348, -26], [348, -25], [346, -25], [346, -24], [345, -24], [345, -23], [342, -23], [342, -24], [341, -24], [341, -25], [340, -25], [340, -30], [341, -30], [341, -31], [342, -31], [342, -32], [340, -32], [340, -34], [339, -34]], "188-258": [[331, -25], [331, -23], [328, -23], [328, -20], [329, -20], [329, -18], [330, -18], [330, -15], [331, -15], [331, -13], [341, -13], [341, -15], [342, -15], [342, -22], [342, -23], [341, -23], [341, -24], [339, -24], [339, -25]]}, "center": {"56-75": [348, -33], "188-258": [336, -19]}}, -{"id": 4303, "name": "Flag of North Macedonia", "description": "North Macedonia (Officially the Republic of North Macedonia) is a country located in southeastern Europe.\n\nThis artwork depicts its flag which was adopted in 1995.", "links": {"subreddit": ["mkd"]}, "path": {"250-258": [[-1480, 139], [-1480, 154], [-1460, 154], [-1460, 139]]}, "center": {"250-258": [-1470, 147]}}, -{"id": 4304, "name": "Smooth-coated Otter of Singapore", "description": "Due to a lack of natural predators, the smooth-coated otter population in Singapore increased to 170 in 2022. Despite being cute, some of these otters have attacked pedestrians and killed many ornamental pet fish. This artwork was attacked by some members of r/phish for entering their territory, but was successfully defended.", "links": {"website": ["https://en.wikipedia.org/wiki/Bishan_otter_family", "https://www.nparks.gov.sg/gardens-parks-and-nature/dos-and-donts/animal-advisories/otters"], "subreddit": ["singapore", "place"]}, "path": {"239-258": [[313, -7], [313, -13], [314, -13], [314, -14], [318, -14], [318, -13], [319, -13], [319, -11], [318, -11], [318, -10], [317, -10], [317, -9], [316, -9], [316, -8], [315, -8], [315, -7]]}, "center": {"239-258": [315, -12]}}, -{"id": 4305, "name": "South Korea Postcard", "description": "r/Korea_Place was invited to have its artwork included on the French Lattice. The postcard depicts a picture of Gyeongbok Palace and the N Seoul Tower, both in Central Seoul. It was supposed to have two small Flags of France at the bottom, which is unfortunately missing on the final canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Gyeongbokgung", "https://en.wikipedia.org/wiki/N_Seoul_Tower"], "subreddit": ["Korea_Place", "placeFR", "france"], "discord": ["NDGSVQasUK", "placeFR"]}, "path": {"157-169": [[-498, 552], [-498, 578], [-467, 578], [-467, 552]], "170-185": [[-498, 552], [-498, 578], [-468, 578], [-468, 552]], "186-258": [[-499, 551], [-499, 579], [-467, 579], [-467, 551]]}, "center": {"157-169": [-482, 565], "170-185": [-483, 565], "186-258": [-483, 565]}}, -{"id": 4306, "name": "Longshork eating the flag of Chile", "description": "A shark was created by the private LuschenServer Discord community (a group of friends). Creators of the Chilean flag attempted to invade the shark, but its defenders managed to protect it. Subsequently, the shark was modified to appear as though it was biting into the Chilean flag. The aim was to design a shark with an exceptionally elongated body, fondly referred to as a 'longboy' or 'longshork'. Although the event 'r/place' concluded before the 'longshork' could reach its intended size, it still achieved a respectable length.", "links": {}, "path": {"244-258": [[-160, 823], [-163, 823], [-164, 824], [-169, 830], [-169, 832], [-172, 835], [-172, 836], [-169, 836], [-169, 837], [-168, 837], [-168, 852], [-166, 852], [-159, 845], [-159, 833], [-159, 832], [-156, 832], [-156, 827], [-159, 827], [-159, 825], [-160, 824]]}, "center": {"244-258": [-164, 834]}}, -{"id": 4307, "name": "Tyne Bridge", "description": "The Tyne Bridge is a through arch bridge over the River Tyne in North East England, linking Newcastle upon Tyne and Gateshead. The bridge was designed by the engineering firm Mott, Hay and Anderson, who later designed the Forth Road Bridge, and was built by Dorman Long and Co. of Middlesbrough. The bridge was officially opened on 10 October 1928 by King George V and has since become a defining symbol of Tyneside. It is ranked as the tenth tallest structure in Newcastle.", "links": {"website": ["https://en.wikipedia.org/wiki/Tyne_Bridge"]}, "path": {"218-258": [[-307, -278], [-319, -278], [-319, -282], [-313, -282], [-310, -278], [-308, -278], [-308, -281], [-307, -281]]}, "center": {"218-258": [-317, -280]}}, -{"id": 4308, "name": "Tikal", "description": "Tikal is the ruin of an ancient city, which was likely to have been called Yax Mutal. It is one of the largest archeological sites and urban centers of the pre-Columbian Maya civilization. \n\nIt is located in the archeological region of the Petén Basin in what is now northern Guatemala. Situated in the department of El Petén, the site is part of Guatemala's Tikal National Park and in 1979 it was declared a UNESCO World Heritage Site.", "links": {"website": ["https://en.wikipedia.org/wiki/Tikal"]}, "path": {"215-258": [[-976, 619], [-976, 608], [-981, 608], [-982, 607], [-982, 599], [-985, 599], [-986, 598], [-987, 598], [-987, 590], [-995, 590], [-996, 589], [-996, 582], [-1003, 582], [-1004, 581], [-1004, 571], [-1006, 571], [-1007, 570], [-1007, 561], [-1011, 561], [-1012, 560], [-1012, 557], [-1017, 555], [-1018, 554], [-1018, 546], [-1019, 546], [-1019, 527], [-1021, 527], [-1021, 524], [-1023, 524], [-1023, 521], [-1025, 521], [-1025, 516], [-1026, 516], [-1026, 510], [-1036, 501], [-1037, 501], [-1043, 507], [-1045, 507], [-1045, 509], [-1047, 509], [-1047, 516], [-1048, 516], [-1048, 521], [-1050, 521], [-1050, 524], [-1052, 524], [-1052, 527], [-1054, 527], [-1054, 547], [-1055, 547], [-1055, 554], [-1056, 555], [-1059, 555], [-1061, 557], [-1061, 562], [-1053, 562], [-1049, 558], [-1045, 558], [-1044, 559], [-1044, 565], [-1045, 566], [-1045, 577], [-1046, 578], [-1046, 581], [-1047, 582], [-1047, 583], [-1046, 584], [-1042, 580], [-1042, 579], [-1041, 578], [-1038, 578], [-1037, 577], [-1037, 576], [-1035, 578], [-1033, 578], [-1032, 579], [-1032, 585], [-1033, 585], [-1034, 586], [-1034, 587], [-1043, 596], [-1042, 597], [-1039, 597], [-1035, 593], [-1034, 593], [-1033, 592], [-1032, 592], [-1031, 591], [-1031, 590], [-1030, 589], [-1029, 589], [-1026, 586], [-1025, 587], [-1024, 587], [-1023, 586], [-1023, 595], [-1024, 596], [-1024, 606], [-1025, 607], [-1025, 614], [-1027, 616], [-1026, 617], [-1027, 618], [-1027, 619]]}, "center": {"215-258": [-1037, 535]}}, -{"id": 4309, "name": "Complementation Windows Tasklist", "description": "The list of \"minimize\", \"open windows\", \"close\" and \"mouse pointer\" was added by r/placeDE in collaboration with r/placeNL to complement the Windows Vista tasklist on the bottom of the canvas.\n\nThe design was first created when placeNL held the top right corner of the canvas. It then was adapted when placeDE held the top right corner after the final extension of the canvas.", "links": {"subreddit": ["placeDE", "placeNL"]}, "path": {"213-252": [[1444, -1000], [1443, -982], [1443, -980], [1422, -980], [1413, -970], [1415, -968], [1415, -962], [1418, -962], [1423, -968], [1426, -967], [1427, -979], [1446, -980], [1498, -982], [1498, -1000]]}, "center": {"213-252": [1456, -990]}}, +{"id": 4286, "name": "Geometry Dash", "description": "Geometry Dash is a music platforming video games developed by Robert \"RobTop\" Topala. It is popular on Steam, especially with PC players.", "links": {"website": ["https://en.wikipedia.org/wiki/Geometry_Dash"], "subreddit": ["geometrydash"], "discord": ["hZj5evMRZr"]}, "path": {"236-258, T": [[11, 972], [11, 996], [34, 996], [34, 972]]}, "center": {"236-258, T": [23, 984]}}, +{"id": 4287, "name": "Breadbug", "description": "Breadbug\nare enemy in Pikmin/Pikmin2/Pikmin4\n\nIs are meme in the community", "links": {"subreddit": ["Pikmin"]}, "path": {"250-258, T": [[1453, 387], [1461, 387], [1461, 394], [1453, 394]]}, "center": {"250-258, T": [1457, 391]}}, +{"id": 4288, "name": "La Garita (The Watchtower)", "description": "The \"Garita\" is representative of Puerto Rico's old spanish forts and national monuments: \"El Morro\" and \"Castillo San Cristobal\". These forts are the largest and some of the oldest built by the spanish in the new world.", "links": {"website": ["https://www.nps.gov/teachers/classrooms/60sanjuan.htm"], "subreddit": ["PuertoRico"], "discord": ["EZ4C9FR3"]}, "path": {"250-258, T": [[196, -25], [194, -25], [191, -22], [191, -16], [195, -12], [196, -12]]}, "center": {"250-258, T": [194, -18]}}, +{"id": 4289, "name": "Makoto Yuki (Persona 3)", "description": "\"Persona 3\" is a role-playing video game in the Shin Megami Tensei series. The game follows the protagonist, a high school student who transfers to Gekkoukan High in the city of Iwatodai. The protagonist discovers that he has the ability to summon Personas, manifestations of his inner psyche, to fight against creatures called Shadows during a hidden hour known as the Dark Hour. \n\nAlongside a group of classmates who share the same power, they form a special group called SEES (Specialized Extracurricular Execution Squad) and aim to eliminate the Shadows and prevent a mysterious phenomenon called the \"The Fall\" from occurring on a specific date. \n\nAs the story unfolds, the protagonist and his friends face personal struggles, forming strong bonds, and uncovering dark secrets about themselves and the enigmatic Tartarus tower, where the Shadows lurk. The game combines dungeon-crawling and social simulation elements, emphasizing the importance of balancing daily life and fighting the impending threat.\n\nA remake of Persona 3, entitled Persona 3: Reload, will release in early 2024.", "links": {"website": ["https://persona.atlus.com/"], "subreddit": ["persona"]}, "path": {"250-258, T": [[-1097, 458], [-1097, 441], [-1082, 441], [-1082, 459], [-1097, 459]]}, "center": {"250-258, T": [-1089, 450]}}, +{"id": 4290, "name": "OKAMI & Fech The Ferret", "description": "OKAMI is a very popular german chatbotproject on Whatsapp that exists since August 2020.\nAfter being wiped 4x, the r/Greenlattice provided a space next to \"Fech the ferret\".\n\nFech The Ferret is a 3D platformer being developed by Aucritas and led by RaoulWB.\n\nAs a thank you, the OKAMI community included the videogame character into the artwork.", "links": {"website": ["https://playfe.ch", "https://playfe.ch"], "subreddit": ["ookami", "ookami_v2"], "discord": ["9QKKx6X"]}, "path": {"233-237": [[-791, -983], [-791, -1000], [-770, -1000], [-770, -983]], "238-258, T": [[-791, -982], [-791, -1000], [-769, -1000], [-770, -981]]}, "center": {"233-237": [-780, -991], "238-258, T": [-780, -991]}}, +{"id": 4291, "name": "Freminet's Penguin", "description": "Freminet is character from the Fontaine region in the game, Genshin Impact. He has a cute mechanical penguin companion!", "links": {"subreddit": ["lyney", "Freminetmains_"]}, "path": {"250-258, T": [[-354, 688], [-355, 690], [-355, 697], [-352, 697], [-352, 693], [-352, 692], [-351, 692], [-351, 690], [-350, 690], [-350, 689], [-351, 689], [-351, 688], [-352, 687], [-354, 687], [-355, 688], [-355, 691]]}, "center": {"250-258, T": [-353, 690]}}, +{"id": 4292, "name": "Steiff Teddy Bear", "description": "Steiff is a German-based plush toy company, that claims to have have made the world's first factory-made teddy bear", "links": {"website": ["https://en.wikipedia.org/wiki/Steiff"], "subreddit": ["placeDE"]}, "path": {"250-258, T": [[187, -551], [217, -551], [217, -566], [212, -572], [212, -579], [215, -582], [215, -590], [210, -590], [208, -587], [191, -587], [192, -571], [187, -568]]}, "center": {"250-258, T": [202, -564]}}, +{"id": 4293, "name": "Winged Pikmin", "description": "A Pikmin within the Pikmin series who, as the name implies, has the ability to fly. The art expresses the alliance between r/Pikmin and the Blue Square.", "links": {"subreddit": ["Pikmin"]}, "path": {"160-258, T": [[295, -884], [303, -884], [303, -890], [300, -891], [302, -894], [300, -896], [295, -890]]}, "center": {"160-258, T": [299, -888]}}, +{"id": 4294, "name": "Logo of the IBS IT & Business School Oldenburg", "description": "Represents the logo of IBS IT & Business School Oldenburg, a private university specializing in dual study programs. The logo was drawn by the business informatics students of the class of 2020.", "links": {"website": ["https://www.ibs-ol.de"]}, "path": {"189-258, T": [[-179, -971], [-169, -971], [-160, -979], [-167, -989], [-175, -983], [-179, -982], [-183, -979], [-183, -974]]}, "center": {"189-258, T": [-171, -978]}}, +{"id": 4295, "name": "Special Week", "description": "Special Week is based off on a real life Japanese Racehorse and is one of the three main protagonists of Uma Musume: Pretty Derby and the character used to promote Uma Musume as a whole.", "links": {"website": ["https://umamusume.fandom.com/wiki/Special_Week"], "subreddit": ["UmaMusume"], "discord": ["umamusume"]}, "path": {"46-258, T": [[-193, 203], [-195, 197], [-191, 187], [-188, 185], [-186, 179], [-175, 184], [-169, 185], [-168, 182], [-165, 182], [-165, 193], [-166, 210], [-173, 202], [-175, 203], [-181, 201], [-184, 202], [-186, 202], [-188, 200]]}, "center": {"46-258, T": [-181, 191]}}, +{"id": 4296, "name": "Final Canvas Lewd Shego", "description": "Proudly and shamelessly depicted is the villain/antihero Shego from the Disney Channel series \"Kim Possible\" in a lewd pose and without any clothes. \n\nHer creation represented the 7th and final attempt to bring her on the canvas and would prove to be successful surviving until the great whiteout. \n\nAlthough originally slated to be a suggestive but SFW (safe for work) design, several random users would ultimately make her explicitly sexual in depiction. \n\nModerators of r/place were unwilling to delete her in entirety. Instead they would repeatedly censor her nipples and vagina. This resulted in a fierce 12 hour long battle of censorship against a rebellious user-base that valued freedom of expression. \n\nUltimately the coalition of Reddit users would overwhelm the censorship leading to it becoming one of the few explicitly sexual artworks to survive in r/place history.\n\nDespite the disorganized nature of her body, the head and hair were coordinated by the r/196x2 Discord server. Its members are a collection of users who either had initially worked on the 1st Shego led by streamers or joined during the later Shegos led and coordinated by the server.\n\nIn celebration of her successful placement, in the few remaining hours a crown would placed on her head as well as text depicting her name and subreddit. To most users amusement, in cooperation with a group of lesbian pride flag placers the phrase \"iS HOT\" follows.", "links": {"subreddit": ["shego"], "discord": ["Wcsya8Gh"]}, "path": {"226-258, T": [[-1402, 246], [-1402, 243], [-1403, 242], [-1403, 239], [-1402, 239], [-1401, 238], [-1401, 236], [-1402, 236], [-1402, 235], [-1406, 231], [-1406, 226], [-1406, 224], [-1405, 218], [-1394, 208], [-1406, 205], [-1406, 198], [-1355, 198], [-1355, 204], [-1380, 204], [-1380, 210], [-1374, 218], [-1371, 225], [-1362, 231], [-1362, 237], [-1370, 244], [-1373, 244], [-1371, 247], [-1374, 251], [-1377, 253], [-1371, 261], [-1369, 263], [-1372, 269], [-1373, 280], [-1371, 284], [-1374, 287], [-1376, 287], [-1381, 283], [-1381, 264], [-1383, 261], [-1384, 264], [-1387, 280], [-1386, 283], [-1390, 287], [-1394, 287], [-1395, 282], [-1396, 280], [-1393, 277], [-1395, 273], [-1396, 265], [-1392, 259]]}, "center": {"226-258, T": [-1388, 226]}}, +{"id": 4297, "name": "The Puerto Rican Parrot", "description": "The Puerto Rican Amazon is a critically endangered bird that lives all throughout the Puerto Rican archipelago.", "links": {"website": ["https://en.wikipedia.org/wiki/Puerto_Rican_amazon"], "subreddit": ["PuertoRico"], "discord": ["EZ4C9FR3"]}, "path": {"250-258, T": [[161, -25], [159, -23], [162, -10], [171, -10], [169, -13], [169, -15], [164, -24], [163, -25]]}, "center": {"250-258, T": [165, -15]}}, +{"id": 4298, "name": "Nahel", "description": "Another hommage to Nahel Merzouk a French 17-year-old who was shot at point-blank range and killed by a police officer, on 27 June 2023.", "links": {}, "path": {"250-253, T": [[-1108, 998], [-1106, 993], [-1107, 991], [-1119, 990], [-1121, 991], [-1131, 991], [-1129, 998]]}, "center": {"250-253, T": [-1118, 994]}}, +{"id": 4299, "name": "Botan (ボタン)", "description": "Kyou's pet boar from the visual novel later adapted to anime Clannad.", "links": {"website": ["https://clannad.fandom.com/wiki/Botan"], "subreddit": ["Clannad"]}, "path": {"227-258, T": [[-1500, 81], [-1495, 81], [-1493, 81], [-1492, 82], [-1490, 83], [-1489, 84], [-1488, 86], [-1487, 87], [-1487, 88], [-1486, 89], [-1486, 90], [-1485, 91], [-1484, 91], [-1484, 89], [-1483, 88], [-1482, 87], [-1463, 87], [-1462, 88], [-1461, 89], [-1461, 96], [-1462, 96], [-1462, 97], [-1482, 97], [-1482, 99], [-1483, 99], [-1483, 100], [-1484, 101], [-1488, 101], [-1488, 103], [-1489, 104], [-1490, 104], [-1491, 103], [-1491, 102], [-1492, 102], [-1493, 103], [-1493, 104], [-1493, 105], [-1494, 106], [-1495, 106], [-1496, 105], [-1497, 104], [-1500, 104]]}, "center": {"227-258, T": [-1492, 94]}}, +{"id": 4300, "name": "Ferb", "description": "This is art by Russian streamer dkincc, created by his subscribers! The art show us a Ferb, the hero of the animated series \"Phineas and Ferb\". This is one of the most favorite animated series dkincc, so Ferb is redrawn under it.", "links": {"website": ["https://www.twitch.tv/dkincc"]}, "path": {"192-258, T": [[-1159, 259], [-1159, 260], [-1160, 260], [-1160, 262], [-1159, 262], [-1159, 269], [-1160, 270], [-1160, 273], [-1155, 273], [-1155, 271], [-1157, 268], [-1157, 259], [-1155, 258], [-1153, 254], [-1153, 246], [-1154, 240], [-1152, 239], [-1151, 244], [-1148, 241], [-1146, 240], [-1146, 242], [-1146, 238], [-1145, 237], [-1145, 235], [-1144, 230], [-1147, 228], [-1149, 230], [-1150, 229], [-1151, 227], [-1154, 227], [-1156, 225], [-1156, 223], [-1156, 221], [-1157, 218], [-1150, 213], [-1150, 210], [-1154, 209], [-1154, 205], [-1151, 204], [-1149, 206], [-1149, 202], [-1153, 197], [-1152, 194], [-1153, 193], [-1158, 196], [-1159, 197], [-1163, 197], [-1166, 193], [-1165, 197], [-1170, 197], [-1167, 200], [-1168, 202], [-1169, 203], [-1169, 204], [-1167, 203], [-1166, 211], [-1166, 216], [-1168, 218], [-1165, 219], [-1165, 225], [-1167, 227], [-1171, 227], [-1172, 229], [-1173, 231], [-1171, 234], [-1171, 250], [-1172, 252], [-1173, 253], [-1172, 254], [-1169, 254], [-1166, 258], [-1165, 258], [-1165, 260], [-1166, 261], [-1166, 262], [-1165, 263], [-1165, 269], [-1169, 272], [-1169, 273], [-1162, 273], [-1162, 270], [-1163, 270], [-1163, 262], [-1162, 262], [-1162, 261], [-1163, 261], [-1163, 259]]}, "center": {"192-258, T": [-1161, 234]}}, +{"id": 4301, "name": "KEMIST_C10H15 flask", "description": "A potion to represent Mr KEMIST_C10H15N who always dresses as a chemist during these streams (he mainly does speedrun)", "links": {"website": ["https://www.twitch.tv/kemist_c10h15n"], "discord": ["HsBtFcFmt5"]}, "path": {"241-258, T": [[-1178, 65], [-1191, 65], [-1191, 64], [-1192, 64], [-1192, 60], [-1191, 60], [-1191, 58], [-1190, 58], [-1190, 56], [-1189, 56], [-1189, 54], [-1188, 54], [-1188, 52], [-1187, 52], [-1187, 47], [-1188, 47], [-1181, 47], [-1182, 47], [-1182, 52], [-1181, 52], [-1181, 54], [-1180, 54], [-1180, 56], [-1179, 56], [-1179, 58], [-1178, 58], [-1178, 60], [-1177, 60], [-1177, 64], [-1178, 64]]}, "center": {"241-258, T": [-1185, 59]}}, +{"id": 4302, "name": "Lion Head - National Symbol of Singapore", "description": "The lion head symbol, designed by Michael Lee, was published in 1986 by the government of Singapore. It symbolises courage, excellence and strength. On r/place 2023, it was overwritten by Bolivian streamers and later rebuilt further south.", "links": {"website": ["https://en.wikipedia.org/wiki/Lion_head_symbol_of_Singapore", "https://www.nhb.gov.sg/what-we-do/our-work/community-engagement/education/resources/national-symbols/the-lion-head-symbol"], "subreddit": ["singapore", "placeSG"]}, "path": {"56-75": [[339, -35], [339, -37], [342, -37], [342, -39], [351, -39], [351, -38], [353, -38], [353, -37], [354, -37], [354, -36], [355, -36], [355, -31], [354, -31], [354, -30], [353, -30], [353, -28], [352, -28], [352, -27], [350, -27], [350, -26], [348, -26], [348, -25], [346, -25], [346, -24], [345, -24], [345, -23], [342, -23], [342, -24], [341, -24], [341, -25], [340, -25], [340, -30], [341, -30], [341, -31], [342, -31], [342, -32], [340, -32], [340, -34], [339, -34]], "188-258, T": [[331, -25], [331, -23], [328, -23], [328, -20], [329, -20], [329, -18], [330, -18], [330, -15], [331, -15], [331, -13], [341, -13], [341, -15], [342, -15], [342, -22], [342, -23], [341, -23], [341, -24], [339, -24], [339, -25]]}, "center": {"56-75": [348, -33], "188-258, T": [336, -19]}}, +{"id": 4303, "name": "Flag of North Macedonia", "description": "North Macedonia (Officially the Republic of North Macedonia) is a country located in southeastern Europe.\n\nThis artwork depicts its flag which was adopted in 1995.", "links": {"subreddit": ["mkd"]}, "path": {"250-258, T": [[-1480, 139], [-1480, 154], [-1460, 154], [-1460, 139]]}, "center": {"250-258, T": [-1470, 147]}}, +{"id": 4304, "name": "Smooth-coated Otter of Singapore", "description": "Due to a lack of natural predators, the smooth-coated otter population in Singapore increased to 170 in 2022. Despite being cute, some of these otters have attacked pedestrians and killed many ornamental pet fish. This artwork was attacked by some members of r/phish for entering their territory, but was successfully defended.", "links": {"website": ["https://en.wikipedia.org/wiki/Bishan_otter_family", "https://www.nparks.gov.sg/gardens-parks-and-nature/dos-and-donts/animal-advisories/otters"], "subreddit": ["singapore", "place"]}, "path": {"239-258, T": [[313, -7], [313, -13], [314, -13], [314, -14], [318, -14], [318, -13], [319, -13], [319, -11], [318, -11], [318, -10], [317, -10], [317, -9], [316, -9], [316, -8], [315, -8], [315, -7]]}, "center": {"239-258, T": [315, -12]}}, +{"id": 4305, "name": "South Korea Postcard", "description": "r/Korea_Place was invited to have its artwork included on the French Lattice. The postcard depicts a picture of Gyeongbok Palace and the N Seoul Tower, both in Central Seoul. It was supposed to have two small Flags of France at the bottom, which is unfortunately missing on the final canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Gyeongbokgung", "https://en.wikipedia.org/wiki/N_Seoul_Tower"], "subreddit": ["Korea_Place", "placeFR", "france"], "discord": ["NDGSVQasUK", "placeFR"]}, "path": {"157-169": [[-498, 552], [-498, 578], [-467, 578], [-467, 552]], "170-185": [[-498, 552], [-498, 578], [-468, 578], [-468, 552]], "186-258, T": [[-499, 551], [-499, 579], [-467, 579], [-467, 551]]}, "center": {"157-169": [-482, 565], "170-185": [-483, 565], "186-258, T": [-483, 565]}}, +{"id": 4306, "name": "Longshork eating the flag of Chile", "description": "A shark was created by the private LuschenServer Discord community (a group of friends). Creators of the Chilean flag attempted to invade the shark, but its defenders managed to protect it. Subsequently, the shark was modified to appear as though it was biting into the Chilean flag. The aim was to design a shark with an exceptionally elongated body, fondly referred to as a 'longboy' or 'longshork'. Although the event 'r/place' concluded before the 'longshork' could reach its intended size, it still achieved a respectable length.", "links": {}, "path": {"244-258, T": [[-160, 823], [-163, 823], [-164, 824], [-169, 830], [-169, 832], [-172, 835], [-172, 836], [-169, 836], [-169, 837], [-168, 837], [-168, 852], [-166, 852], [-159, 845], [-159, 833], [-159, 832], [-156, 832], [-156, 827], [-159, 827], [-159, 825], [-160, 824]]}, "center": {"244-258, T": [-164, 834]}}, +{"id": 4307, "name": "Tyne Bridge", "description": "The Tyne Bridge is a through arch bridge over the River Tyne in North East England, linking Newcastle upon Tyne and Gateshead. The bridge was designed by the engineering firm Mott, Hay and Anderson, who later designed the Forth Road Bridge, and was built by Dorman Long and Co. of Middlesbrough. The bridge was officially opened on 10 October 1928 by King George V and has since become a defining symbol of Tyneside. It is ranked as the tenth tallest structure in Newcastle.", "links": {"website": ["https://en.wikipedia.org/wiki/Tyne_Bridge"]}, "path": {"218-258, T": [[-307, -278], [-319, -278], [-319, -282], [-313, -282], [-310, -278], [-308, -278], [-308, -281], [-307, -281]]}, "center": {"218-258, T": [-317, -280]}}, +{"id": 4308, "name": "Tikal", "description": "Tikal is the ruin of an ancient city, which was likely to have been called Yax Mutal. It is one of the largest archeological sites and urban centers of the pre-Columbian Maya civilization. \n\nIt is located in the archeological region of the Petén Basin in what is now northern Guatemala. Situated in the department of El Petén, the site is part of Guatemala's Tikal National Park and in 1979 it was declared a UNESCO World Heritage Site.", "links": {"website": ["https://en.wikipedia.org/wiki/Tikal"]}, "path": {"215-258, T": [[-976, 619], [-976, 608], [-981, 608], [-982, 607], [-982, 599], [-985, 599], [-986, 598], [-987, 598], [-987, 590], [-995, 590], [-996, 589], [-996, 582], [-1003, 582], [-1004, 581], [-1004, 571], [-1006, 571], [-1007, 570], [-1007, 561], [-1011, 561], [-1012, 560], [-1012, 557], [-1017, 555], [-1018, 554], [-1018, 546], [-1019, 546], [-1019, 527], [-1021, 527], [-1021, 524], [-1023, 524], [-1023, 521], [-1025, 521], [-1025, 516], [-1026, 516], [-1026, 510], [-1036, 501], [-1037, 501], [-1043, 507], [-1045, 507], [-1045, 509], [-1047, 509], [-1047, 516], [-1048, 516], [-1048, 521], [-1050, 521], [-1050, 524], [-1052, 524], [-1052, 527], [-1054, 527], [-1054, 547], [-1055, 547], [-1055, 554], [-1056, 555], [-1059, 555], [-1061, 557], [-1061, 562], [-1053, 562], [-1049, 558], [-1045, 558], [-1044, 559], [-1044, 565], [-1045, 566], [-1045, 577], [-1046, 578], [-1046, 581], [-1047, 582], [-1047, 583], [-1046, 584], [-1042, 580], [-1042, 579], [-1041, 578], [-1038, 578], [-1037, 577], [-1037, 576], [-1035, 578], [-1033, 578], [-1032, 579], [-1032, 585], [-1033, 585], [-1034, 586], [-1034, 587], [-1043, 596], [-1042, 597], [-1039, 597], [-1035, 593], [-1034, 593], [-1033, 592], [-1032, 592], [-1031, 591], [-1031, 590], [-1030, 589], [-1029, 589], [-1026, 586], [-1025, 587], [-1024, 587], [-1023, 586], [-1023, 595], [-1024, 596], [-1024, 606], [-1025, 607], [-1025, 614], [-1027, 616], [-1026, 617], [-1027, 618], [-1027, 619]]}, "center": {"215-258, T": [-1037, 535]}}, +{"id": 4309, "name": "Complementation Windows Tasklist", "description": "The list of \"minimize\", \"open windows\", \"close\" and \"mouse pointer\" was added by r/placeDE in collaboration with r/placeNL to complement the Windows Vista tasklist on the bottom of the canvas.\n\nThe design was first created when placeNL held the top right corner of the canvas. It then was adapted when placeDE held the top right corner after the final extension of the canvas.", "links": {"subreddit": ["placeDE", "placeNL"]}, "path": {"213-252, T": [[1444, -1000], [1443, -982], [1443, -980], [1422, -980], [1413, -970], [1415, -968], [1415, -962], [1418, -962], [1423, -968], [1426, -967], [1427, -979], [1446, -980], [1498, -982], [1498, -1000]]}, "center": {"213-252, T": [1456, -990]}}, {"id": 4310, "name": "Lockcard Logo", "description": "A small German startup that focuses on minimalistic wallets that are made from recycled materials. The Logo was pixeled by the Lockcard Discord community.", "links": {"website": ["https://lockcard.com/"], "discord": ["ujy2KDZGyP"]}, "path": {"67-83": [[38, 204], [44, 197], [49, 198], [52, 205], [52, 212], [38, 212]]}, "center": {"67-83": [45, 206]}}, -{"id": 4311, "name": "r/ainbowroad", "description": "r/ainbowroad was a project for creating the Rainbow Road in r/place.", "links": {"subreddit": ["ainbowroad"], "discord": ["2hwab34"]}, "path": {"114-116": [[-613, 278], [-613, 290], [-571, 290], [-571, 282], [-529, 282], [-529, 271], [-590, 271], [-590, 278], [-613, 278], [-618, 278], [-618, 290], [-613, 290]], "120-258": [[-613, 278], [-613, 290], [-571, 290], [-571, 282], [-529, 282], [-529, 271], [-590, 271], [-590, 278]]}, "center": {"114-116": [-580, 280], "120-258": [-580, 280]}}, -{"id": 4312, "name": "Stony Brook University", "description": "The Stony Brook University logo, alongside the abbreviation \"SBU.\"\n\nStony Brook University is a public research university located in Stony Brook, NY. It opened in 1957 and is a part of the SUNY (State University of New York) system.", "links": {"subreddit": ["SBU"]}, "path": {"250-258": [[1499, 344], [1485, 344], [1485, 365], [1499, 365]]}, "center": {"250-258": [1492, 355]}}, -{"id": 4313, "name": "Flying Scotsman", "description": "60103/4472 Flying Scotsman is a famous LNER steam locomotive built in the UK. It was the first locomotive recorded to reach 100mph in passenger service, and to this day remains in service. This year was it's 100 year anniversary.", "links": {"website": ["https://en.wikipedia.org/wiki/LNER_Class_A3_4472_Flying_Scotsman"]}, "path": {"65-258": [[-273, -260], [-273, -262], [-274, -262], [-274, -265], [-273, -265], [-273, -266], [-258, -266], [-258, -267], [-255, -267], [-255, -266], [-251, -266], [-251, -267], [-249, -267], [-249, -266], [-244, -266], [-244, -267], [-243, -267], [-243, -266], [-242, -266], [-242, -262], [-241, -262], [-241, -260]]}, "center": {"65-258": [-246, -263]}}, -{"id": 4314, "name": "Fubuki fishing Bocchi", "description": "The Hololive affiliated VTuber Shirakami Fubuki (Japanese naming order) fishing a depiction of the Bocchi The Rock character Hitori Gotou (also Japanese naming order), commonly referred to as simply \"Bocchi\". Bocchi is in \"blob\" depiction here. \n\nThe artwork is a collaboration between the Bocchi The Rock and VTubers Place Discord servers.\n\nOriginally, the artwork had Fubuki fishing a \"Takodachi\", the companion character of another Hololive VTuber Ninomae Ina'nis, but this was changed quickly before building began into Bocchi by request of one of the VTubers Place members. The reason behind this collaboration was the (at that time) sparse presence of the Bocchi The Rock characters on the canvas and a close relationship between the two communities because of the close proximity of their original starting locations on the initial canvas (next to the Turkish flag).", "links": {"subreddit": ["Hololive", "BocchiTheRock", "KessokuBand"], "discord": ["vtubersplace", "bocchi"]}, "path": {"95-258": [[-631, -318], [-629, -318], [-626, -321], [-623, -318], [-626, -315], [-625, -314], [-624, -310], [-626, -308], [-624, -306], [-613, -313], [-610, -277], [-606, -276], [-603, -270], [-604, -264], [-616, -268], [-614, -275], [-618, -288], [-624, -294], [-626, -297], [-633, -299], [-636, -300], [-644, -299], [-645, -302], [-641, -303], [-638, -304], [-636, -305], [-636, -307], [-634, -307], [-635, -310], [-633, -314], [-634, -319], [-632, -319]]}, "center": {"95-258": [-619, -300]}}, -{"id": 4315, "name": "VTubers Place (second location)", "description": "The VTubers Place Discord server is a Discord location of dedicated VTuber fans established in 2022 for the r/place event that year.\nThis location contains lots of builds of the VTuber community, but also a lot of allied communities, such as Chelsea FC, Sabaton + Warthunder + Battefield, Star Wars Turkey, The Final Clean and more.\n\nWhen r/place began, the original location of the VTubers Place artwork was next to the Turkish flag. Eventually they were forced to move, due to expansions of the Azerbaijani and Turkish flags over their artworks and the wish for a strong alliance with Germany. This is their second location and the longest surviving.", "links": {"subreddit": ["vtubersplace"], "discord": ["vtubersplace"]}, "path": {"250-258": [[-670, -368], [-670, -309], [-669, -248], [-620, -249], [-621, -253], [-618, -253], [-617, -249], [-615, -247], [-603, -247], [-587, -247], [-587, -264], [-582, -264], [-581, -250], [-538, -251], [-538, -256], [-527, -257], [-533, -263], [-538, -264], [-538, -290], [-540, -293], [-540, -314], [-540, -315], [-529, -315], [-529, -335], [-501, -335], [-501, -368]]}, "center": {"250-258": [-614, -312]}}, +{"id": 4311, "name": "r/ainbowroad", "description": "r/ainbowroad was a project for creating the Rainbow Road in r/place.", "links": {"subreddit": ["ainbowroad"], "discord": ["2hwab34"]}, "path": {"114-116": [[-613, 278], [-613, 290], [-571, 290], [-571, 282], [-529, 282], [-529, 271], [-590, 271], [-590, 278], [-613, 278], [-618, 278], [-618, 290], [-613, 290]], "120-258, T": [[-613, 278], [-613, 290], [-571, 290], [-571, 282], [-529, 282], [-529, 271], [-590, 271], [-590, 278]]}, "center": {"114-116": [-580, 280], "120-258, T": [-580, 280]}}, +{"id": 4312, "name": "Stony Brook University", "description": "The Stony Brook University logo, alongside the abbreviation \"SBU.\"\n\nStony Brook University is a public research university located in Stony Brook, NY. It opened in 1957 and is a part of the SUNY (State University of New York) system.", "links": {"subreddit": ["SBU"]}, "path": {"250-258, T": [[1499, 344], [1485, 344], [1485, 365], [1499, 365]]}, "center": {"250-258, T": [1492, 355]}}, +{"id": 4313, "name": "Flying Scotsman", "description": "60103/4472 Flying Scotsman is a famous LNER steam locomotive built in the UK. It was the first locomotive recorded to reach 100mph in passenger service, and to this day remains in service. This year was it's 100 year anniversary.", "links": {"website": ["https://en.wikipedia.org/wiki/LNER_Class_A3_4472_Flying_Scotsman"]}, "path": {"65-258, T": [[-273, -260], [-273, -262], [-274, -262], [-274, -265], [-273, -265], [-273, -266], [-258, -266], [-258, -267], [-255, -267], [-255, -266], [-251, -266], [-251, -267], [-249, -267], [-249, -266], [-244, -266], [-244, -267], [-243, -267], [-243, -266], [-242, -266], [-242, -262], [-241, -262], [-241, -260]]}, "center": {"65-258, T": [-246, -263]}}, +{"id": 4314, "name": "Fubuki fishing Bocchi", "description": "The Hololive affiliated VTuber Shirakami Fubuki (Japanese naming order) fishing a depiction of the Bocchi The Rock character Hitori Gotou (also Japanese naming order), commonly referred to as simply \"Bocchi\". Bocchi is in \"blob\" depiction here. \n\nThe artwork is a collaboration between the Bocchi The Rock and VTubers Place Discord servers.\n\nOriginally, the artwork had Fubuki fishing a \"Takodachi\", the companion character of another Hololive VTuber Ninomae Ina'nis, but this was changed quickly before building began into Bocchi by request of one of the VTubers Place members. The reason behind this collaboration was the (at that time) sparse presence of the Bocchi The Rock characters on the canvas and a close relationship between the two communities because of the close proximity of their original starting locations on the initial canvas (next to the Turkish flag).", "links": {"subreddit": ["Hololive", "BocchiTheRock", "KessokuBand"], "discord": ["vtubersplace", "bocchi"]}, "path": {"95-258, T": [[-631, -318], [-629, -318], [-626, -321], [-623, -318], [-626, -315], [-625, -314], [-624, -310], [-626, -308], [-624, -306], [-613, -313], [-610, -277], [-606, -276], [-603, -270], [-604, -264], [-616, -268], [-614, -275], [-618, -288], [-624, -294], [-626, -297], [-633, -299], [-636, -300], [-644, -299], [-645, -302], [-641, -303], [-638, -304], [-636, -305], [-636, -307], [-634, -307], [-635, -310], [-633, -314], [-634, -319], [-632, -319]]}, "center": {"95-258, T": [-619, -300]}}, +{"id": 4315, "name": "VTubers Place (second location)", "description": "The VTubers Place Discord server is a Discord location of dedicated VTuber fans established in 2022 for the r/place event that year.\nThis location contains lots of builds of the VTuber community, but also a lot of allied communities, such as Chelsea FC, Sabaton + Warthunder + Battefield, Star Wars Turkey, The Final Clean and more.\n\nWhen r/place began, the original location of the VTubers Place artwork was next to the Turkish flag. Eventually they were forced to move, due to expansions of the Azerbaijani and Turkish flags over their artworks and the wish for a strong alliance with Germany. This is their second location and the longest surviving.", "links": {"subreddit": ["vtubersplace"], "discord": ["vtubersplace"]}, "path": {"250-258, T": [[-670, -368], [-670, -309], [-669, -248], [-620, -249], [-621, -253], [-618, -253], [-617, -249], [-615, -247], [-603, -247], [-587, -247], [-587, -264], [-582, -264], [-581, -250], [-538, -251], [-538, -256], [-527, -257], [-533, -263], [-538, -264], [-538, -290], [-540, -293], [-540, -314], [-540, -315], [-529, -315], [-529, -335], [-501, -335], [-501, -368]]}, "center": {"250-258, T": [-614, -312]}}, {"id": 4316, "name": "Écoles Normales Supérieures", "description": "A mix of the logos of the Écoles Normales Supérieures (also known as ENS or Normale Sup'). An ENS is a French higher education institution.", "links": {"website": ["https://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure"]}, "path": {"147-153": [[851, -699], [866, -699], [866, -706], [880, -707], [879, -714], [892, -714], [892, -727], [851, -727]]}, "center": {"147-153": [862, -716]}}, {"id": 4317, "name": "Kienlabadao's Logo", "description": "This is Kienlabadao's original logo, which was made a long time ago and is still being used nowadays. This was built all by himself, without any support. It survived for 3 hours and 30 minutes before eventually destroyed.", "links": {"website": ["https://www.youtube.com/@itzkienlabadao4237", "https://www.reddit.com/user/Kienlabadao/"]}, "path": {"229-234": [[1490, -596], [1496, -596], [1496, -590], [1490, -590]]}, "center": {"229-234": [1493, -593]}}, -{"id": 4318, "name": "Logo of Hwa Chong Institution", "description": "(the logo can be viewed in its undamaged state between 25 Jul 2023 ~16:30 GMT to 25 Jul 2023 ~17:00 GMT)\n\nHwa Chong Institution (HCI) is an independent secondary educational institution in Singapore. The Institution is the culmination of the watershed merger in 2005 between the former Chinese High School (TCHS) founded by Mr Tan Kah Kee in 1919 to cater to the needs of primary school leavers of the Chinese community in the region, and Hwa Chong Junior College (HCJC), which was set up in 1974 as the first government-aided junior college offering pre-university education in Singapore.\n\nThe school logo is a highly stylised flaming torch that symbolises not only a burning passion for knowledge and drive for excellence, but also a deep respect for progress and tradition. The logo is rendered in the school colour, red, in keeping with Chinese notions of symbolism, depicting life, vitality and strength. It takes its inspiration from the Chinese character '华' (meaning 'Chinese'), which represents the school's name and origin (华中). The logo also reflects a passion for the school's rich cultural heritage, and its mission of nurturing bicultural leaders for Singapore.", "links": {"website": ["https://www.hci.edu.sg/"]}, "path": {"246-258": [[1488, 712], [1499, 712], [1499, 723], [1488, 723]]}, "center": {"246-258": [1494, 718]}}, +{"id": 4318, "name": "Logo of Hwa Chong Institution", "description": "(the logo can be viewed in its undamaged state between 25 Jul 2023 ~16:30 GMT to 25 Jul 2023 ~17:00 GMT)\n\nHwa Chong Institution (HCI) is an independent secondary educational institution in Singapore. The Institution is the culmination of the watershed merger in 2005 between the former Chinese High School (TCHS) founded by Mr Tan Kah Kee in 1919 to cater to the needs of primary school leavers of the Chinese community in the region, and Hwa Chong Junior College (HCJC), which was set up in 1974 as the first government-aided junior college offering pre-university education in Singapore.\n\nThe school logo is a highly stylised flaming torch that symbolises not only a burning passion for knowledge and drive for excellence, but also a deep respect for progress and tradition. The logo is rendered in the school colour, red, in keeping with Chinese notions of symbolism, depicting life, vitality and strength. It takes its inspiration from the Chinese character '华' (meaning 'Chinese'), which represents the school's name and origin (华中). The logo also reflects a passion for the school's rich cultural heritage, and its mission of nurturing bicultural leaders for Singapore.", "links": {"website": ["https://www.hci.edu.sg/"]}, "path": {"246-258, T": [[1488, 712], [1499, 712], [1499, 723], [1488, 723]]}, "center": {"246-258, T": [1494, 718]}}, {"id": 4319, "name": "Switzerland Flag", "description": "The flag of Switzerland, which is a white cross in a red square.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "Switzerland"]}, "path": {"248": [[-544, 209], [-544, 202], [-539, 202], [-539, 206], [-544, 206]]}, "center": {"248": [-541, 204]}}, {"id": 4320, "name": "Blue and green tortoises", "description": "The tortoises first started appearing when the canvas expanded for the penultimate time. The german community from r/placeDE, helding the flag behind the tortoises, first decided to keep them. The tortoises were replaced by one of the last artworks of the r/placeDE community, the \"Geschwister Scholl\". However, some tortoises on the very left of the flag made it to the final canvas.", "links": {"subreddit": ["placeDE"]}, "path": {"173-249": [[-1009, -391], [-1009, -399], [-1041, -398], [-1041, -390], [-1007, -392], [-1007, -393], [-969, -391], [-971, -401], [-1010, -399], [-1092, -397], [-1092, -390], [-1024, -390], [-1027, -428], [-1019, -429], [-1018, -399], [-1046, -397]]}, "center": {"173-249": [-976, -396]}}, {"id": 4321, "name": "Gabibbo", "description": "Gabibbo is an Italian mascot for the television channel Canale 5, created in 1990 by Antonio Ricci. \nGabibbo's main role has been in the programs Paperissima and Striscia la notizia. \nGabibbo quickly gained popularity among viewers due to its unique appearance and comedic antics. The character's success led to various merchandise and spin-offs, making it a well-recognized figure beyond television. \nOver the years, Gabibbo became more than just a character: it became a cultural icon, representing Italian humor and satire. It has been referenced in various media, memes, and pop culture, further solidifying its iconic status. \n\nUnfortunately, just like last year, Gabibbo has been removed either by admins or bots, because some funny Gabibbo fans (Besughi) started drawing a phallic shaft under his head, with \"random colored pixels\" spurting from the tip. In this Atlas, you can still see the remainders of this phenomenon in the frames surrounding his removal.", "links": {}, "path": {"102-103": [[-645, 75], [-635, 75], [-628, 82], [-628, 84], [-625, 87], [-625, 91], [-624, 92], [-624, 94], [-625, 95], [-625, 97], [-626, 98], [-626, 99], [-627, 99], [-629, 101], [-631, 101], [-632, 102], [-645, 102], [-646, 101], [-650, 101], [-652, 99], [-654, 99], [-655, 98], [-655, 97], [-656, 96], [-656, 87], [-654, 85], [-654, 84], [-652, 82], [-652, 81], [-647, 76], [-646, 76]]}, "center": {"102-103": [-641, 89]}}, -{"id": 4322, "name": "forevi1Amor", "description": "forevi1Amor is an emote of Forever's character holding a heart. Forever is a brazilian Minecraft streamer and YouTuber known for doing humanly impossible challenges in his Survival series. Recently, he was invited to be a participant in the QSMP Minecraft Server.", "links": {"website": ["https://www.twitch.tv/forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"250-258": [[-32, 375], [-21, 375], [-21, 376], [-19, 376], [-19, 377], [-16, 377], [-16, 378], [-16, 379], [-14, 379], [-14, 380], [-13, 380], [-14, 381], [-13, 382], [-13, 383], [-12, 383], [-12, 386], [-11, 386], [-11, 388], [-13, 388], [-13, 391], [-13, 392], [-12, 392], [-12, 393], [-10, 393], [-10, 399], [-34, 399], [-34, 401], [-36, 400], [-36, 397], [-36, 396], [-37, 396], [-37, 395], [-36, 395], [-36, 394], [-35, 394], [-35, 392], [-36, 393], [-36, 390], [-37, 390], [-37, 389], [-38, 389], [-38, 388], [-39, 388], [-39, 386], [-37, 384], [-38, 381], [-37, 381], [-37, 379], [-38, 379], [-36, 379], [-36, 378], [-35, 377], [-34, 377], [-33, 376], [-32, 376]]}, "center": {"250-258": [-25, 387]}}, -{"id": 4323, "name": "Le Havre AC", "description": "Le Havre Athletic Club, commonly known simply as Le Havre, is a French professional association football club based in Le Havre, Normandy. The football club was founded in 1894 as a section of the sports club of the same name, founded in 1884. Le Havre plays in Ligue 1, the first tier of French football, after securing promotion from Ligue 2 as winners of the 2022–23 season, and plays its home matches at the Stade Océane.", "links": {"website": ["https://en.wikipedia.org/wiki/Le_Havre_AC"]}, "path": {"208-258": [[905, -837], [905, -802], [933, -802], [933, -837]]}, "center": {"208-258": [919, -819]}}, -{"id": 4324, "name": "forevi1Nelsamor", "description": "forevi1Nelsamor is an emote of Forever's dog named Nelsinho holding a heart. Forever is a brazilian Minecraft streamer and YouTuber known for doing humanly impossible challenges in his Survival series. Recently, he was invited to be a participant in the QSMP Minecraft Server.", "links": {"website": ["https://www.twitch.tv/forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"250-258": [[0, 381], [0, 380], [0, 379], [-1, 379], [-1, 378], [-2, 378], [-2, 377], [-3, 377], [-2, 377], [-2, 376], [-1, 376], [-1, 375], [3, 375], [3, 376], [4, 376], [5, 375], [8, 375], [8, 376], [9, 376], [12, 376], [12, 378], [14, 377], [14, 376], [16, 376], [16, 375], [27, 375], [27, 376], [27, 377], [26, 377], [26, 378], [25, 379], [25, 380], [24, 380], [24, 383], [26, 383], [26, 385], [26, 386], [27, 386], [27, 389], [26, 389], [26, 390], [25, 390], [25, 392], [24, 392], [24, 393], [23, 393], [23, 394], [23, 397], [24, 397], [24, 398], [25, 398], [27, 398], [28, 395], [29, 395], [30, 395], [30, 400], [1, 400], [1, 399], [0, 399], [0, 398], [-1, 398], [-1, 397], [-2, 397], [-2, 396], [-3, 396], [-3, 391], [-2, 391], [-2, 390], [-1, 390], [-1, 389], [1, 389], [0, 388], [1, 388], [1, 387], [2, 387], [2, 389], [3, 388], [3, 389], [4, 390], [4, 379], [3, 379]]}, "center": {"250-258": [14, 388]}}, -{"id": 4325, "name": "Écoles Normales Supérieures", "description": "A mix of the logos of the Écoles Normales Supérieures (also known as ENS or Normale Sup'). An ENS is a French higher education institution.", "links": {"website": ["https://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure"]}, "path": {"212-258": [[1449, 21], [1446, 39], [1493, 40], [1492, 25], [1493, 18]]}, "center": {"212-258": [1481, 29]}}, -{"id": 4326, "name": "Omori Lightbulb", "description": "OMORI is a psychological horror indie role-playing game made by OMOCAT and released on Steam on December 25, 2020 after six years of development. In the EarthBound-inspired game, the main character and his colorful group of friends venture through a dream-like world.", "links": {"website": ["http://www.omori-game.com/", "https://store.steampowered.com/app/1150690/OMORI/"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"190-258": [[-471, 972], [-471, 996], [-445, 996], [-445, 972]]}, "center": {"190-258": [-458, 984]}}, -{"id": 2653, "name": "Flag of South Korea", "description": "South Korea is a country in East Asia. Its flag is known as the Taegeukgi.\n\nAfter r/Korea_Place fought together with r/UKOnPlace against an attack on the previous Korean flag and the Greggs logo by a rouge Swedish streamer called Perrababy, this flag was given a place on the Union Jack, held by Paddington Bear. It served as the final home of r/Korea_Place.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Korea", "https://en.wikipedia.org/wiki/Flag_of_South_Korea"], "subreddit": ["Korea_Place", "UKOnPlace"], "discord": ["NDGSVQasUK"]}, "path": {"209-259": [[1012, 780], [1012, 797], [1035, 797], [1035, 780]]}, "center": {"209-259": [1024, 789]}}, -{"id": 4327, "name": "Flat Eric, from Mr. Oizo's \"Flat Beat\" music video", "description": "Quentin Dupieux (French pronunciation: ​[kɑ̃tɛ̃ dypjø], born 14 April 1974), also known by his musical stage name Mr. Oizo (French: [wazo]), is a French filmmaker, electronic musician, and DJ.\n\nDupieux released \"Flat Beat\" in January 1999, a track consisting mainly of a repeated bass loop and a drum sample from \"Put Your Love in My Tender Care\" by The Fatback Band.\nFlat Beat became a hit throughout Europe in 1999, becoming the best-known Mr. Oizo release.\n\nThe track was featured in a series of Levi's jeans TV commercials, which featured a yellow puppet named Flat Eric nodding his head to the rhythm while riding in an old, beat-up Chevelle. Flat Eric was also featured in the song's music video. The Flat Beat EP has sold over three million copies. The song reached number 1 in the UK.", "links": {"website": ["https://en.wikipedia.org/wiki/Quentin_Dupieux", "https://en.wikipedia.org/wiki/Flat_Eric"]}, "path": {"103-258": [[-500, 67], [-493, 67], [-488, 73], [-487, 78], [-484, 81], [-479, 87], [-500, 87]]}, "center": {"103-258": [-493, 80]}}, -{"id": 4328, "name": "Lida duck", "description": "This is art by Russian EDM and happy hardcore artist Lida, created by subscribers of Russian streamer dkincc. The art show us a duck, the cover of one of Lida's albums.", "links": {"website": ["https://www.twitch.tv/dkincc", "https://www.twitch.tv/lida_stream"]}, "path": {"150-258": [[-767, 177], [-756, 177], [-754, 175], [-754, 173], [-753, 172], [-753, 170], [-757, 166], [-757, 165], [-754, 165], [-751, 162], [-753, 160], [-755, 160], [-755, 158], [-757, 156], [-763, 155], [-765, 157], [-768, 159], [-766, 165], [-765, 166], [-767, 167], [-769, 167], [-771, 165], [-772, 165], [-774, 167], [-773, 168], [-773, 172]]}, "center": {"150-258": [-762, 171]}}, -{"id": 4329, "name": "OGC Nice", "description": "Olympique Gymnaste Club de Nice, commonly referred to as OGC Nice or simply Nice, is a French professional football club based in Nice. The club was founded in 1904 and currently plays in Ligue 1, the top tier of French football. Nice plays its home matches at the Allianz Riviera.", "links": {"website": ["https://en.wikipedia.org/wiki/OGC_Nice", "https://www.ogcnice.com/en/"]}, "path": {"240-258": [[935, -768], [935, -760], [918, -760], [918, -768]]}, "center": {"240-258": [927, -764]}}, +{"id": 4322, "name": "forevi1Amor", "description": "forevi1Amor is an emote of Forever's character holding a heart. Forever is a brazilian Minecraft streamer and YouTuber known for doing humanly impossible challenges in his Survival series. Recently, he was invited to be a participant in the QSMP Minecraft Server.", "links": {"website": ["https://www.twitch.tv/forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"250-258, T": [[-32, 375], [-21, 375], [-21, 376], [-19, 376], [-19, 377], [-16, 377], [-16, 378], [-16, 379], [-14, 379], [-14, 380], [-13, 380], [-14, 381], [-13, 382], [-13, 383], [-12, 383], [-12, 386], [-11, 386], [-11, 388], [-13, 388], [-13, 391], [-13, 392], [-12, 392], [-12, 393], [-10, 393], [-10, 399], [-34, 399], [-34, 401], [-36, 400], [-36, 397], [-36, 396], [-37, 396], [-37, 395], [-36, 395], [-36, 394], [-35, 394], [-35, 392], [-36, 393], [-36, 390], [-37, 390], [-37, 389], [-38, 389], [-38, 388], [-39, 388], [-39, 386], [-37, 384], [-38, 381], [-37, 381], [-37, 379], [-38, 379], [-36, 379], [-36, 378], [-35, 377], [-34, 377], [-33, 376], [-32, 376]]}, "center": {"250-258, T": [-25, 387]}}, +{"id": 4323, "name": "Le Havre AC", "description": "Le Havre Athletic Club, commonly known simply as Le Havre, is a French professional association football club based in Le Havre, Normandy. The football club was founded in 1894 as a section of the sports club of the same name, founded in 1884. Le Havre plays in Ligue 1, the first tier of French football, after securing promotion from Ligue 2 as winners of the 2022–23 season, and plays its home matches at the Stade Océane.", "links": {"website": ["https://en.wikipedia.org/wiki/Le_Havre_AC"]}, "path": {"208-258, T": [[905, -837], [905, -802], [933, -802], [933, -837]]}, "center": {"208-258, T": [919, -819]}}, +{"id": 4324, "name": "forevi1Nelsamor", "description": "forevi1Nelsamor is an emote of Forever's dog named Nelsinho holding a heart. Forever is a brazilian Minecraft streamer and YouTuber known for doing humanly impossible challenges in his Survival series. Recently, he was invited to be a participant in the QSMP Minecraft Server.", "links": {"website": ["https://www.twitch.tv/forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"250-258, T": [[0, 381], [0, 380], [0, 379], [-1, 379], [-1, 378], [-2, 378], [-2, 377], [-3, 377], [-2, 377], [-2, 376], [-1, 376], [-1, 375], [3, 375], [3, 376], [4, 376], [5, 375], [8, 375], [8, 376], [9, 376], [12, 376], [12, 378], [14, 377], [14, 376], [16, 376], [16, 375], [27, 375], [27, 376], [27, 377], [26, 377], [26, 378], [25, 379], [25, 380], [24, 380], [24, 383], [26, 383], [26, 385], [26, 386], [27, 386], [27, 389], [26, 389], [26, 390], [25, 390], [25, 392], [24, 392], [24, 393], [23, 393], [23, 394], [23, 397], [24, 397], [24, 398], [25, 398], [27, 398], [28, 395], [29, 395], [30, 395], [30, 400], [1, 400], [1, 399], [0, 399], [0, 398], [-1, 398], [-1, 397], [-2, 397], [-2, 396], [-3, 396], [-3, 391], [-2, 391], [-2, 390], [-1, 390], [-1, 389], [1, 389], [0, 388], [1, 388], [1, 387], [2, 387], [2, 389], [3, 388], [3, 389], [4, 390], [4, 379], [3, 379]]}, "center": {"250-258, T": [14, 388]}}, +{"id": 4325, "name": "Écoles Normales Supérieures", "description": "A mix of the logos of the Écoles Normales Supérieures (also known as ENS or Normale Sup'). An ENS is a French higher education institution.", "links": {"website": ["https://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure"]}, "path": {"212-258, T": [[1449, 21], [1446, 39], [1493, 40], [1492, 25], [1493, 18]]}, "center": {"212-258, T": [1481, 29]}}, +{"id": 4326, "name": "Omori Lightbulb", "description": "OMORI is a psychological horror indie role-playing game made by OMOCAT and released on Steam on December 25, 2020 after six years of development. In the EarthBound-inspired game, the main character and his colorful group of friends venture through a dream-like world.", "links": {"website": ["http://www.omori-game.com/", "https://store.steampowered.com/app/1150690/OMORI/"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"190-258, T": [[-471, 972], [-471, 996], [-445, 996], [-445, 972]]}, "center": {"190-258, T": [-458, 984]}}, +{"id": 2653, "name": "Flag of South Korea", "description": "South Korea is a country in East Asia. Its flag is known as the Taegeukgi.\n\nAfter r/Korea_Place fought together with r/UKOnPlace against an attack on the previous Korean flag and the Greggs logo by a rouge Swedish streamer called Perrababy, this flag was given a place on the Union Jack, held by Paddington Bear. It served as the final home of r/Korea_Place.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Korea", "https://en.wikipedia.org/wiki/Flag_of_South_Korea"], "subreddit": ["Korea_Place", "UKOnPlace"], "discord": ["NDGSVQasUK"]}, "path": {"209-259, T": [[1012, 780], [1012, 797], [1035, 797], [1035, 780]]}, "center": {"209-259, T": [1024, 789]}}, +{"id": 4327, "name": "Flat Eric, from Mr. Oizo's \"Flat Beat\" music video", "description": "Quentin Dupieux (French pronunciation: ​[kɑ̃tɛ̃ dypjø], born 14 April 1974), also known by his musical stage name Mr. Oizo (French: [wazo]), is a French filmmaker, electronic musician, and DJ.\n\nDupieux released \"Flat Beat\" in January 1999, a track consisting mainly of a repeated bass loop and a drum sample from \"Put Your Love in My Tender Care\" by The Fatback Band.\nFlat Beat became a hit throughout Europe in 1999, becoming the best-known Mr. Oizo release.\n\nThe track was featured in a series of Levi's jeans TV commercials, which featured a yellow puppet named Flat Eric nodding his head to the rhythm while riding in an old, beat-up Chevelle. Flat Eric was also featured in the song's music video. The Flat Beat EP has sold over three million copies. The song reached number 1 in the UK.", "links": {"website": ["https://en.wikipedia.org/wiki/Quentin_Dupieux", "https://en.wikipedia.org/wiki/Flat_Eric"]}, "path": {"103-258, T": [[-500, 67], [-493, 67], [-488, 73], [-487, 78], [-484, 81], [-479, 87], [-500, 87]]}, "center": {"103-258, T": [-493, 80]}}, +{"id": 4328, "name": "Lida duck", "description": "This is art by Russian EDM and happy hardcore artist Lida, created by subscribers of Russian streamer dkincc. The art show us a duck, the cover of one of Lida's albums.", "links": {"website": ["https://www.twitch.tv/dkincc", "https://www.twitch.tv/lida_stream"]}, "path": {"150-258, T": [[-767, 177], [-756, 177], [-754, 175], [-754, 173], [-753, 172], [-753, 170], [-757, 166], [-757, 165], [-754, 165], [-751, 162], [-753, 160], [-755, 160], [-755, 158], [-757, 156], [-763, 155], [-765, 157], [-768, 159], [-766, 165], [-765, 166], [-767, 167], [-769, 167], [-771, 165], [-772, 165], [-774, 167], [-773, 168], [-773, 172]]}, "center": {"150-258, T": [-762, 171]}}, +{"id": 4329, "name": "OGC Nice", "description": "Olympique Gymnaste Club de Nice, commonly referred to as OGC Nice or simply Nice, is a French professional football club based in Nice. The club was founded in 1904 and currently plays in Ligue 1, the top tier of French football. Nice plays its home matches at the Allianz Riviera.", "links": {"website": ["https://en.wikipedia.org/wiki/OGC_Nice", "https://www.ogcnice.com/en/"]}, "path": {"240-258, T": [[935, -768], [935, -760], [918, -760], [918, -768]]}, "center": {"240-258, T": [927, -764]}}, {"id": 4330, "name": "KEMIST_C10H15 flask", "description": "A potion to represent Mr KEMIST_C10H15N who always dresses as a chemist during these streams (he mainly does speedrun)", "links": {"website": ["https://www.twitch.tv/kemist_c10h15n"], "discord": ["HsBtFcFmt5"]}, "path": {"256-258": [[-1178, 65], [-1191, 65], [-1191, 64], [-1192, 64], [-1192, 60], [-1191, 60], [-1191, 58], [-1190, 58], [-1190, 56], [-1189, 56], [-1189, 54], [-1188, 54], [-1188, 52], [-1187, 52], [-1187, 47], [-1188, 47], [-1181, 47], [-1182, 47], [-1182, 52], [-1181, 52], [-1181, 54], [-1180, 54], [-1180, 56], [-1179, 56], [-1179, 58], [-1178, 58], [-1178, 60], [-1177, 60], [-1177, 64], [-1178, 64]]}, "center": {"256-258": [-1185, 59]}}, {"id": 4331, "name": "Kienlabadao's Logo", "description": "This is Kienlabadao's original logo, which was made a long time ago and is still being used nowadays. This was built all by himself, without any support. It survived for 4 hours before eventually destroyed.", "links": {"website": ["https://www.youtube.com/@itzkienlabadao4237", "https://www.reddit.com/user/Kienlabadao/"]}, "path": {"234-242": [[-164, 905], [-158, 905], [-158, 911], [-164, 911]]}, "center": {"234-242": [-161, 908]}}, -{"id": 4332, "name": "Cocogoat", "description": "The Cocogoat, a meme animal which represents Ganyu, a playable character in Genshin Impact.", "links": {"subreddit": ["Genshin_Impact"]}, "path": {"201-258": [[-44, 356], [-40, 356], [-40, 363], [-43, 363], [-43, 360], [-44, 360]]}, "center": {"201-258": [-42, 358]}}, -{"id": 4333, "name": "Britannia", "description": "Britannia is the national personification of Britain as a helmeted female warrior holding a trident and shield. An image first used in classical antiquity, the Latin Britannia was the name variously applied to the British Isles, Great Britain, and the Roman province of Britain during the Roman Empire. Typically depicted reclining or seated with spear and shield since appearing thus on Roman coins of the 2nd century AD, the classical national allegory was revived in the early modern period. On coins of the pound sterling issued by Charles II of England, Scotland, and Ireland, Britannia appears with her shield bearing the Union Flag. To symbolise the Royal Navy's victories, Britannia's spear became the characteristic trident in 1797, and a helmet was added to the coinage in 1825.", "links": {"website": ["https://en.wikipedia.org/wiki/Britannia"]}, "path": {"205-258": [[1202, 796], [1202, 797], [1201, 798], [1201, 799], [1200, 800], [1199, 801], [1204, 802], [1204, 804], [1203, 805], [1202, 806], [1202, 808], [1203, 809], [1204, 811], [1205, 812], [1208, 813], [1209, 814], [1209, 815], [1208, 816], [1205, 816], [1204, 817], [1203, 817], [1202, 818], [1201, 819], [1201, 820], [1196, 820], [1195, 821], [1191, 821], [1190, 822], [1188, 822], [1187, 823], [1184, 823], [1183, 822], [1181, 822], [1180, 821], [1177, 821], [1176, 820], [1173, 820], [1172, 819], [1171, 819], [1171, 818], [1170, 817], [1170, 816], [1169, 815], [1168, 814], [1167, 813], [1166, 813], [1165, 812], [1165, 808], [1164, 807], [1164, 805], [1165, 804], [1165, 802], [1164, 801], [1166, 801], [1167, 800], [1169, 800], [1170, 799], [1170, 795], [1169, 794], [1169, 788], [1170, 787], [1170, 786], [1169, 785], [1168, 784], [1167, 784], [1166, 783], [1165, 783], [1164, 784], [1163, 785], [1163, 786], [1162, 787], [1162, 788], [1163, 789], [1163, 790], [1163, 791], [1164, 792], [1164, 793], [1164, 795], [1163, 795], [1163, 793], [1162, 792], [1162, 789], [1162, 787], [1161, 786], [1160, 785], [1159, 784], [1158, 783], [1157, 783], [1156, 786], [1155, 787], [1155, 790], [1156, 791], [1156, 792], [1157, 793], [1157, 797], [1155, 797], [1155, 793], [1154, 792], [1154, 791], [1155, 790], [1155, 789], [1154, 788], [1153, 788], [1152, 787], [1151, 786], [1150, 785], [1149, 786], [1149, 787], [1148, 788], [1147, 789], [1147, 791], [1148, 792], [1149, 793], [1149, 796], [1150, 797], [1150, 801], [1151, 802], [1152, 803], [1155, 803], [1156, 802], [1157, 802], [1157, 803], [1158, 804], [1159, 805], [1159, 809], [1160, 810], [1160, 813], [1159, 813], [1158, 814], [1158, 816], [1157, 817], [1157, 819], [1158, 820], [1159, 821], [1159, 823], [1160, 824], [1163, 825], [1163, 826], [1164, 827], [1164, 832], [1165, 833], [1165, 837], [1166, 838], [1166, 841], [1167, 842], [1167, 846], [1168, 847], [1168, 852], [1169, 853], [1169, 856], [1168, 857], [1167, 858], [1167, 866], [1168, 867], [1168, 870], [1169, 871], [1169, 880], [1168, 881], [1168, 884], [1167, 885], [1166, 887], [1166, 889], [1165, 890], [1165, 898], [1230, 898], [1231, 897], [1232, 896], [1233, 895], [1234, 894], [1235, 892], [1236, 891], [1236, 890], [1237, 889], [1237, 886], [1238, 883], [1239, 880], [1240, 876], [1241, 874], [1242, 873], [1243, 872], [1244, 871], [1244, 867], [1243, 866], [1243, 865], [1242, 864], [1242, 859], [1241, 858], [1241, 851], [1240, 850], [1240, 844], [1239, 843], [1239, 838], [1238, 837], [1238, 832], [1237, 831], [1237, 826], [1236, 825], [1236, 823], [1235, 822], [1235, 821], [1234, 820], [1233, 819], [1232, 818], [1231, 817], [1230, 816], [1229, 815], [1227, 815], [1226, 814], [1226, 810], [1228, 809], [1229, 808], [1229, 807], [1228, 806], [1230, 805], [1230, 804], [1231, 803], [1231, 802], [1232, 801], [1232, 795], [1231, 794], [1231, 791], [1230, 790], [1230, 789], [1229, 788], [1228, 787], [1227, 786], [1226, 785], [1225, 784], [1224, 784], [1223, 783], [1221, 782], [1220, 782], [1219, 781], [1217, 781], [1217, 780], [1213, 780], [1212, 781], [1211, 781], [1210, 782], [1208, 783], [1206, 784], [1205, 785], [1204, 786], [1205, 787], [1205, 789], [1206, 789], [1205, 790], [1204, 791], [1202, 793], [1201, 795]]}, "center": {"205-258": [1205, 862]}}, -{"id": 4334, "name": "Tama", "description": "Tama gets infected by a virus.\n\nAnime: Gintama", "links": {"subreddit": ["Gintama"]}, "path": {"216-258": [[1189, -781], [1193, -781], [1195, -779], [1195, -778], [1197, -778], [1201, -774], [1202, -773], [1202, -765], [1203, -765], [1204, -766], [1205, -765], [1205, -764], [1204, -763], [1204, -762], [1202, -760], [1202, -758], [1199, -755], [1199, -754], [1205, -748], [1205, -747], [1206, -746], [1206, -743], [1205, -742], [1205, -740], [1204, -739], [1203, -739], [1202, -738], [1202, -737], [1200, -735], [1200, -734], [1199, -733], [1199, -732], [1197, -730], [1194, -730], [1193, -731], [1193, -733], [1192, -734], [1192, -736], [1191, -736], [1190, -735], [1190, -734], [1189, -733], [1189, -731], [1188, -730], [1185, -730], [1183, -732], [1183, -733], [1182, -734], [1181, -735], [1177, -735], [1190, -735], [1191, -736], [1192, -736], [1192, -744], [1176, -744], [1191, -744], [1191, -754], [1190, -755], [1190, -758], [1189, -759], [1186, -759], [1185, -760], [1183, -760], [1183, -761], [1182, -762], [1179, -762], [1179, -760], [1181, -760], [1179, -760], [1179, -762], [1177, -764], [1177, -765], [1178, -766], [1179, -765], [1180, -766], [1180, -773], [1185, -778], [1187, -778]]}, "center": {"216-258": [1192, -769]}}, -{"id": 4335, "name": "Bus of SBS Transit", "description": "The signature red-white-purple bus of the largest public bus operator in Singapore.", "links": {"website": ["https://en.wikipedia.org/wiki/SBS_Transit", "https://www.sbstransit.com.sg/", "https://commons.wikimedia.org/wiki/File:B10M-Mk3.JPG"], "subreddit": ["singapore", "placeSG"]}, "path": {"95-258": [[313, -19], [324, -19], [324, -13], [313, -13]]}, "center": {"95-258": [319, -16]}}, +{"id": 4332, "name": "Cocogoat", "description": "The Cocogoat, a meme animal which represents Ganyu, a playable character in Genshin Impact.", "links": {"subreddit": ["Genshin_Impact"]}, "path": {"201-258, T": [[-44, 356], [-40, 356], [-40, 363], [-43, 363], [-43, 360], [-44, 360]]}, "center": {"201-258, T": [-42, 358]}}, +{"id": 4333, "name": "Britannia", "description": "Britannia is the national personification of Britain as a helmeted female warrior holding a trident and shield. An image first used in classical antiquity, the Latin Britannia was the name variously applied to the British Isles, Great Britain, and the Roman province of Britain during the Roman Empire. Typically depicted reclining or seated with spear and shield since appearing thus on Roman coins of the 2nd century AD, the classical national allegory was revived in the early modern period. On coins of the pound sterling issued by Charles II of England, Scotland, and Ireland, Britannia appears with her shield bearing the Union Flag. To symbolise the Royal Navy's victories, Britannia's spear became the characteristic trident in 1797, and a helmet was added to the coinage in 1825.", "links": {"website": ["https://en.wikipedia.org/wiki/Britannia"]}, "path": {"205-258, T": [[1202, 796], [1202, 797], [1201, 798], [1201, 799], [1200, 800], [1199, 801], [1204, 802], [1204, 804], [1203, 805], [1202, 806], [1202, 808], [1203, 809], [1204, 811], [1205, 812], [1208, 813], [1209, 814], [1209, 815], [1208, 816], [1205, 816], [1204, 817], [1203, 817], [1202, 818], [1201, 819], [1201, 820], [1196, 820], [1195, 821], [1191, 821], [1190, 822], [1188, 822], [1187, 823], [1184, 823], [1183, 822], [1181, 822], [1180, 821], [1177, 821], [1176, 820], [1173, 820], [1172, 819], [1171, 819], [1171, 818], [1170, 817], [1170, 816], [1169, 815], [1168, 814], [1167, 813], [1166, 813], [1165, 812], [1165, 808], [1164, 807], [1164, 805], [1165, 804], [1165, 802], [1164, 801], [1166, 801], [1167, 800], [1169, 800], [1170, 799], [1170, 795], [1169, 794], [1169, 788], [1170, 787], [1170, 786], [1169, 785], [1168, 784], [1167, 784], [1166, 783], [1165, 783], [1164, 784], [1163, 785], [1163, 786], [1162, 787], [1162, 788], [1163, 789], [1163, 790], [1163, 791], [1164, 792], [1164, 793], [1164, 795], [1163, 795], [1163, 793], [1162, 792], [1162, 789], [1162, 787], [1161, 786], [1160, 785], [1159, 784], [1158, 783], [1157, 783], [1156, 786], [1155, 787], [1155, 790], [1156, 791], [1156, 792], [1157, 793], [1157, 797], [1155, 797], [1155, 793], [1154, 792], [1154, 791], [1155, 790], [1155, 789], [1154, 788], [1153, 788], [1152, 787], [1151, 786], [1150, 785], [1149, 786], [1149, 787], [1148, 788], [1147, 789], [1147, 791], [1148, 792], [1149, 793], [1149, 796], [1150, 797], [1150, 801], [1151, 802], [1152, 803], [1155, 803], [1156, 802], [1157, 802], [1157, 803], [1158, 804], [1159, 805], [1159, 809], [1160, 810], [1160, 813], [1159, 813], [1158, 814], [1158, 816], [1157, 817], [1157, 819], [1158, 820], [1159, 821], [1159, 823], [1160, 824], [1163, 825], [1163, 826], [1164, 827], [1164, 832], [1165, 833], [1165, 837], [1166, 838], [1166, 841], [1167, 842], [1167, 846], [1168, 847], [1168, 852], [1169, 853], [1169, 856], [1168, 857], [1167, 858], [1167, 866], [1168, 867], [1168, 870], [1169, 871], [1169, 880], [1168, 881], [1168, 884], [1167, 885], [1166, 887], [1166, 889], [1165, 890], [1165, 898], [1230, 898], [1231, 897], [1232, 896], [1233, 895], [1234, 894], [1235, 892], [1236, 891], [1236, 890], [1237, 889], [1237, 886], [1238, 883], [1239, 880], [1240, 876], [1241, 874], [1242, 873], [1243, 872], [1244, 871], [1244, 867], [1243, 866], [1243, 865], [1242, 864], [1242, 859], [1241, 858], [1241, 851], [1240, 850], [1240, 844], [1239, 843], [1239, 838], [1238, 837], [1238, 832], [1237, 831], [1237, 826], [1236, 825], [1236, 823], [1235, 822], [1235, 821], [1234, 820], [1233, 819], [1232, 818], [1231, 817], [1230, 816], [1229, 815], [1227, 815], [1226, 814], [1226, 810], [1228, 809], [1229, 808], [1229, 807], [1228, 806], [1230, 805], [1230, 804], [1231, 803], [1231, 802], [1232, 801], [1232, 795], [1231, 794], [1231, 791], [1230, 790], [1230, 789], [1229, 788], [1228, 787], [1227, 786], [1226, 785], [1225, 784], [1224, 784], [1223, 783], [1221, 782], [1220, 782], [1219, 781], [1217, 781], [1217, 780], [1213, 780], [1212, 781], [1211, 781], [1210, 782], [1208, 783], [1206, 784], [1205, 785], [1204, 786], [1205, 787], [1205, 789], [1206, 789], [1205, 790], [1204, 791], [1202, 793], [1201, 795]]}, "center": {"205-258, T": [1205, 862]}}, +{"id": 4334, "name": "Tama", "description": "Tama gets infected by a virus.\n\nAnime: Gintama", "links": {"subreddit": ["Gintama"]}, "path": {"216-258, T": [[1189, -781], [1193, -781], [1195, -779], [1195, -778], [1197, -778], [1201, -774], [1202, -773], [1202, -765], [1203, -765], [1204, -766], [1205, -765], [1205, -764], [1204, -763], [1204, -762], [1202, -760], [1202, -758], [1199, -755], [1199, -754], [1205, -748], [1205, -747], [1206, -746], [1206, -743], [1205, -742], [1205, -740], [1204, -739], [1203, -739], [1202, -738], [1202, -737], [1200, -735], [1200, -734], [1199, -733], [1199, -732], [1197, -730], [1194, -730], [1193, -731], [1193, -733], [1192, -734], [1192, -736], [1191, -736], [1190, -735], [1190, -734], [1189, -733], [1189, -731], [1188, -730], [1185, -730], [1183, -732], [1183, -733], [1182, -734], [1181, -735], [1177, -735], [1190, -735], [1191, -736], [1192, -736], [1192, -744], [1176, -744], [1191, -744], [1191, -754], [1190, -755], [1190, -758], [1189, -759], [1186, -759], [1185, -760], [1183, -760], [1183, -761], [1182, -762], [1179, -762], [1179, -760], [1181, -760], [1179, -760], [1179, -762], [1177, -764], [1177, -765], [1178, -766], [1179, -765], [1180, -766], [1180, -773], [1185, -778], [1187, -778]]}, "center": {"216-258, T": [1192, -769]}}, +{"id": 4335, "name": "Bus of SBS Transit", "description": "The signature red-white-purple bus of the largest public bus operator in Singapore.", "links": {"website": ["https://en.wikipedia.org/wiki/SBS_Transit", "https://www.sbstransit.com.sg/", "https://commons.wikimedia.org/wiki/File:B10M-Mk3.JPG"], "subreddit": ["singapore", "placeSG"]}, "path": {"95-258, T": [[313, -19], [324, -19], [324, -13], [313, -13]]}, "center": {"95-258, T": [319, -16]}}, {"id": 4336, "name": "Flag of South Korea", "description": "South Korea is a country in East Asia. Its flag is known as the Taegeukgi.\n\nThis fourth flag of r/Korea_Place was involved in the Greggs-Korea vs. Perrababy war at its final moment, repeatedly resisting a large, rouge Swedish streamer called Perrababy who insisted on expanding over the flag as well as the Greggs logo, which was built by r/UKOnPlace who the South Korea formed a strong alliance with. The flag was later moved to the main UK flag.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Korea", "https://en.wikipedia.org/wiki/Flag_of_South_Korea", "https://en.wikipedia.org/wiki/Greggs"], "subreddit": ["Korea_Place", "UKOnPlace"], "discord": ["NDGSVQasUK"]}, "path": {"152-164": [[-801, 447], [-781, 447], [-781, 464], [-801, 464]], "165-201": [[-801, 447], [-801, 464], [-780, 464], [-780, 447]]}, "center": {"152-164": [-791, 456], "165-201": [-790, 456]}}, {"id": 4337, "name": "Flag of South Korea (Nordic Asylum)", "description": "South Korea is a country in East Asia. Its flag is known as the Taegeukgi.\n\nSweden provided asylum for Koreans while they were flag-less soon after their third elimination by a rogue Swede, the first elimination perpetrated by CyrusTwo, and the latter two by perrababy. However, this was followed by perrababy's attack on Korea, Sweden, Sami, and Denmark on the final day, making this perrababy's third overall elimination of a Korean flag for this year. This conflict dragged in the UK, which supported their allies' defense against perrababy due to the Greggs war. Fortunately by the time of perrababy's third attack, Korea had survived through the UK and France, therefore was not completely eliminated as was the case after his first two attacks. Sweden, Denmark, and Sami were rebuilt before the ending of place, though not to their pre-attack designs.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Korea", "https://en.wikipedia.org/wiki/Flag_of_South_Korea"], "subreddit": ["Korea_Place", "sweden", "place_nordicunion"], "discord": ["NDGSVQasUK"]}, "path": {"215-234": [[48, -222], [48, -235], [50, -237], [57, -237], [59, -235], [60, -235], [61, -234], [67, -234], [67, -233], [66, -233], [65, -232], [65, -231], [62, -228], [62, -227], [61, -226], [61, -225], [60, -224], [53, -224], [52, -223], [51, -223], [50, -222]]}, "center": {"215-234": [55, -230]}}, -{"id": 4338, "name": "Treasure Planet: Battle at Procyon", "description": "The icon of the video game Treasure Planet: Battle at Procyon", "links": {}, "path": {"194-258": [[999, 297], [999, 282], [984, 282], [984, 297]]}, "center": {"194-258": [992, 290]}}, -{"id": 4339, "name": "Ontario Provincial Flag", "description": "Ontario is one of the provinces of Canada. The flag features the Royal Union Flag and the Ontario shield of arms, and is derived from the Canadian Red Ensign which was the national flag of Canada from 1867 to 1965", "links": {"subreddit": ["placecanada"]}, "path": {"137-258": [[97, 189], [101, 189], [101, 191], [97, 191]]}, "center": {"137-258": [99, 190]}}, +{"id": 4338, "name": "Treasure Planet: Battle at Procyon", "description": "The icon of the video game Treasure Planet: Battle at Procyon", "links": {}, "path": {"194-258, T": [[999, 297], [999, 282], [984, 282], [984, 297]]}, "center": {"194-258, T": [992, 290]}}, +{"id": 4339, "name": "Ontario Provincial Flag", "description": "Ontario is one of the provinces of Canada. The flag features the Royal Union Flag and the Ontario shield of arms, and is derived from the Canadian Red Ensign which was the national flag of Canada from 1867 to 1965", "links": {"subreddit": ["placecanada"]}, "path": {"137-258, T": [[97, 189], [101, 189], [101, 191], [97, 191]]}, "center": {"137-258, T": [99, 190]}}, {"id": 4340, "name": "King Laugh Emote (Clash Royale)", "description": "Clash Royale is a free, real time strategy mobile game developed and published by Supercell. The game is a spinoff of supercell's earlier mobile game Clash of Clans and features characters from said game. The game combines elements of card collecting, multiplayer battles, & tower defense.\n\nThe text \"LVL 15\" & \"P2W\" were added after recent controversy surrounding the game being pay-to-win.", "links": {"subreddit": ["clashroyale"]}, "path": {"190": [[-1367, 618], [-1294, 618], [-1294, 564], [-1357, 565], [-1368, 580], [-1368, 616]]}, "center": {"190": [-1327, 591]}}, {"id": 4341, "name": "Kienlabadao's Logo", "description": "This is Kienlabadao's original logo, which was made a long time ago and is still being used nowadays. This was built all by himself, without any support. It survived for 9 hours and 30 minutes while being attacked (even got turned into an among us character at some point) before eventually destroyed.", "links": {"website": ["https://www.youtube.com/@itzkienlabadao4237", "https://www.reddit.com/user/Kienlabadao/"]}, "path": {"212-231": [[-118, 701], [-112, 701], [-112, 706], [-118, 706]]}, "center": {"212-231": [-115, 704]}}, -{"id": 4342, "name": "Flag of India", "description": "India is a country in South Asia.", "links": {"website": ["https://en.m.wikipedia.org/wiki/India", "https://en.m.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["india", "IndiaPlace"]}, "path": {"250-258": [[672, -193], [884, -193], [885, -287], [672, -286]]}, "center": {"250-258": [778, -240]}}, -{"id": 4343, "name": "AJ Auxerre", "description": "Association de la Jeunesse Auxerroise, commonly known as AJ Auxerre or simply Auxerre, is a French professional football club based in the commune of Auxerre in Burgundy. The club was founded in 1905 and currently plays in Ligue 2, the second division of French football.", "links": {"website": ["https://en.wikipedia.org/wiki/AJ_Auxerre", "https://www.aja.fr/"]}, "path": {"209-258": [[858, -831], [858, -818], [859, -818], [859, -817], [860, -816], [861, -815], [862, -815], [863, -814], [866, -813], [867, -814], [868, -815], [869, -815], [870, -816], [871, -817], [871, -818], [872, -818], [872, -831]]}, "center": {"209-258": [865, -824]}}, -{"id": 4344, "name": "Logo of Playstation", "description": "The Logo of PlayStation was created in 1994 by Manabu Sakamoto. The logo has been used by PlayStation ever since but has fallen out of favor", "links": {"subreddit": ["playstation"]}, "path": {"250-258": [[-1295, 42], [-1305, 46], [-1305, 50], [-1294, 52], [-1288, 53], [-1288, 55], [-1275, 49], [-1275, 44], [-1280, 42], [-1281, 35], [-1287, 34], [-1292, 35], [-1294, 40]]}, "center": {"250-258": [-1288, 45]}}, -{"id": 4345, "name": "ArtScience Museum of Singapore", "description": "The lotus-flower shaped museum in Singapore, owned by the Marina Bay Sands resort, showcasing art, science, culture and technology.", "links": {"website": ["https://www.marinabaysands.com/museum.html", "https://commons.wikimedia.org/wiki/File:ArtScience_Museum_from_Esplanade.jpg"], "subreddit": ["singapore", "placeSG"]}, "path": {"188-258": [[325, -19], [325, -15], [326, -15], [326, -14], [327, -14], [327, -13], [332, -13], [332, -14], [333, -14], [333, -17], [331, -17], [331, -18], [327, -18], [327, -19]]}, "center": {"188-258": [329, -15]}}, -{"id": 4346, "name": "Forever's Community", "description": "Forever is a streamer and YouTuber known for playing the game Minecraft. He is known for his YouTube series Humanly Impossible, where he performs superhuman feats like breaking an entire mountain in Minecraft.\n\nThe art represents its community, featuring two emotes of his Twitch channel (forevi1Amor & forevi1Nelsamor) with his name in the middle (4ever).", "links": {"website": ["https://www.twitch.tv/forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"250-258": [[7, 389], [-39, 375], [30, 376], [30, 400], [-39, 399], [-39, 375]]}, "center": {"250-258": [19, 388]}}, -{"id": 4347, "name": "HSV logo", "description": "The logo of the German soccer club Hamburger SV and its founding year 1887. The club is known internationally especially for the successes in the 80s to which also the victory of the European Cup of Champions, today championsleagze, 1983 belongs.", "links": {"website": ["https://www.hsv.de/uebersicht"], "subreddit": ["hsv"], "discord": ["hsv"]}, "path": {"250-258": [[-1188, 412], [-1171, 412], [-1171, 436], [-1175, 436], [-1181, 437], [-1193, 437], [-1193, 435], [-1196, 435], [-1196, 429], [-1198, 429], [-1198, 428], [-1200, 428], [-1200, 415], [-1188, 415]]}, "center": {"250-258": [-1183, 425]}}, -{"id": 4348, "name": "Kienlabadao's Logo", "description": "This is Kienlabadao's original logo, which was made a long time ago and is still being used nowadays. This logo was built and defended with the support from u/Tuanviet1243, a close friend of his (located on top of the logo).", "links": {"website": ["https://www.youtube.com/@itzkienlabadao4237", "https://www.reddit.com/user/Kienlabadao/"]}, "path": {"248-259": [[-1205, 597], [-1199, 597], [-1199, 603], [-1205, 603]]}, "center": {"248-259": [-1202, 600]}}, -{"id": 4349, "name": "SBB CFF FFS Logo", "description": "Swiss Federal Railways (German: Schweizerische Bundesbahnen, SBB; French: Chemins de fer fédéraux suisses, CFF; Italian: Ferrovie federali svizzere, FFS)[1] is the national railway company of Switzerland. It is usually referred to by the initials of its three official names", "links": {"website": ["https://en.wikipedia.org/wiki/Swiss_Federal_Railways", "https://www.sbb.ch/de"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"219-258": [[-538, 904], [-538, 908], [-528, 908], [-528, 904]]}, "center": {"219-258": [-533, 906]}}, -{"id": 4350, "name": "(M)ein kleiner grüner Kaktus", "description": "\"my small green cactus\":\na tribute to the 1930's german hit song \"Mein kleiner grüner Kaktus\" from the group \"Comedian Harmonists\".", "links": {"website": ["https://www.youtube.com/watch?v=HyqzJTNcygE&ab_channel=KlarName"], "subreddit": ["placeDE"]}, "path": {"238-258": [[1146, -411], [1142, -408], [1143, -401], [1144, -399], [1142, -397], [1142, -390], [1155, -390], [1154, -399], [1154, -405], [1154, -408], [1151, -411]]}, "center": {"238-258": [1148, -405]}}, -{"id": 4351, "name": "HaxeFlixel", "description": "HaxeFlixel is an open source 2D game library written in the Haxe Language and powered by OpenFL.\n\nMost noticeable by Friday Night Funkin'", "links": {"website": ["https://haxeflixel.com/"]}, "path": {"210-258": [[-393, -830], [-391, -830], [-391, -828], [-393, -828]]}, "center": {"210-258": [-392, -829]}}, -{"id": 4352, "name": "Nyan Cat watching flowey", "description": "Nyan Cat is a meme first published in 2009. On the canvas, it was created during the german nighttime. However, on the final day the PlaceDE community decided to adopt the cat in their artwork.\nAlso shown is flowey, a character from Undertale a game by Tobi Fox", "links": {"website": ["https://de.wikipedia.org/wiki/Nyan_Cat", "https://de.wikipedia.org/wiki/Undertale?wprov=sfla1"], "subreddit": ["placeDE"]}, "path": {"228-258": [[1078, -420], [1077, -417], [1075, -415], [1072, -415], [1071, -413], [1071, -409], [1074, -408], [1072, -406], [1072, -403], [1075, -401], [1078, -401], [1080, -397], [1080, -395], [1079, -393], [1081, -391], [1085, -394], [1083, -399], [1087, -403], [1089, -403], [1092, -398], [1096, -393], [1099, -393], [1101, -393], [1103, -394], [1104, -394], [1106, -393], [1108, -393], [1108, -394], [1110, -394], [1112, -392], [1115, -392], [1115, -395], [1129, -397], [1136, -398], [1135, -412], [1124, -410], [1113, -409], [1112, -410], [1098, -410], [1097, -409], [1097, -407], [1094, -406], [1093, -405], [1091, -400], [1090, -403], [1091, -406], [1088, -410], [1091, -414], [1088, -416], [1085, -416], [1081, -420]]}, "center": {"228-258": [1103, -402]}}, -{"id": 4353, "name": "Singapore River", "description": "The 3.2km Singapore River is found in the south of Singapore, flowing into Marina Reservoir. It is known for riverside eateries at Robertson Quay, Boat Quay and Clarke Quay. This artwork was attacked by some members of r/phish for entering their territory, but was successfully defended.", "links": {"website": ["https://en.wikipedia.org/wiki/Singapore_River", "https://www.visitsingapore.com/see-do-singapore/places-to-see/singapore-river/"], "subreddit": ["singapore", "placeSG"]}, "path": {"239-258": [[325, -14], [332, -14], [332, -12], [331, -12], [331, -9], [327, -9], [327, -10], [326, -10], [326, -11], [325, -11]]}, "center": {"239-258": [328, -12]}}, -{"id": 4354, "name": "Star Wars Türkiye", "description": "A small artwork created by a dedicated Turkish fanbase of Star Wars. On the initial canvas at the star of r/place, they were also located under the Hololive logo next to the big Turkish flag. They allied with the VTubers Place community to secure them a spot, and once the VTubers Place community moved after the Turkish and Azerbaijani aggression they decided to come along and got another place secured. Together, they made it to the final canvas.", "links": {"discord": ["vtubersplace"]}, "path": {"250-258": [[-623, -327], [-623, -315], [-607, -315], [-606, -327]]}, "center": {"250-258": [-614, -321]}}, -{"id": 4355, "name": "some mammals mumbling", "description": "An artwork from the German r/muemmler_iel community, using to share pictures and more or less relevant information about rodents and lagomorpha.\n\nThe word \"Mümmler\" translates as \"those who mumble\". In the early 2020ish years, some members of r/ich_iel (German r/me_irl) used to post small mumbling mammals to celebrate Monday (\"Es ist Montag, meine Mümmler.\", that is: \"It is monday, my mumblers.\"). In early 2022, this ritual was no longer desired by r/ich_iel leading the mumbler-lovers to split off. They decided to create their own community where they could post guinea pigs, rabbits and hamsters every day of the week.", "links": {"subreddit": ["muemmler_iel"]}, "path": {"248-258": [[1387, -421], [1383, -411], [1388, -404], [1455, -404], [1453, -407], [1457, -411], [1454, -415], [1454, -427], [1427, -428], [1427, -433], [1424, -438], [1416, -438], [1410, -432], [1415, -426], [1409, -420], [1401, -426], [1392, -426]]}, "center": {"248-258": [1424, -416]}}, -{"id": 4356, "name": "Viji pig", "description": "This is art by Russian streamer and musician viji.", "links": {"website": ["https://www.twitch.tv/viji_ttown"]}, "path": {"158-258": [[-722, 123], [-721, 128], [-719, 129], [-712, 129], [-710, 127], [-709, 123], [-708, 122], [-701, 122], [-700, 122], [-700, 113], [-731, 113], [-731, 123]]}, "center": {"158-258": [-716, 120]}}, -{"id": 4357, "name": "Fruchtzwergeeis", "description": "\"Fruchtzwerge\", a very popular german joghurt for children, is used in many families to make ice cream in the summer. For this purpose, reusable popsicle sticks or spoons are inserted directly into the yogurt packs. The entire package is put in the freezer.\n\nThe design was created by r/placeDE.", "links": {"website": ["https://www.fruchtzwerge.de/Selbstmach-Eis.html"], "subreddit": ["placeDE"]}, "path": {"200-258": [[-699, -568], [-697, -570], [-695, -570], [-694, -571], [-692, -571], [-692, -577], [-690, -579], [-689, -579], [-687, -577], [-687, -573], [-685, -573], [-684, -574], [-684, -575], [-683, -576], [-683, -580], [-681, -582], [-680, -582], [-678, -580], [-678, -576], [-677, -576], [-675, -578], [-675, -582], [-673, -584], [-672, -584], [-670, -582], [-670, -578], [-669, -577], [-668, -577], [-668, -581], [-666, -583], [-665, -583], [-663, -581], [-663, -576], [-662, -576], [-661, -575], [-660, -575], [-658, -573], [-660, -571], [-660, -562], [-661, -561], [-661, -560], [-664, -557], [-668, -557], [-668, -556], [-671, -553], [-675, -553], [-676, -554], [-676, -553], [-679, -550], [-684, -550], [-686, -552], [-692, -552], [-695, -555], [-695, -556], [-696, -557], [-696, -565]]}, "center": {"200-258": [-675, -565]}}, -{"id": 4358, "name": "Crescent Moon and Stars of Singapore", "description": "Part of the Flag of Singapore. The crescent moon represents a young nation on the ascendant, and the five stars depict Singapore's ideals of democracy, peace, progress, justice and equality. Red stands for universal brotherhood and equality of man. White symbolises pervading and everlasting purity and virtue.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Singapore", "https://www.nhb.gov.sg/what-we-do/our-work/community-engagement/education/resources/national-symbols/national-flag"], "subreddit": ["singapore", "placeSG"]}, "path": {"81-146": [[313, -26], [325, -26], [325, -19], [313, -19]], "50-75": [[338, -40], [338, -47], [350, -47], [350, -39], [338, -39]], "148-258": [[314, -26], [314, -18], [326, -18], [326, -26]]}, "center": {"81-146": [319, -22], "50-75": [344, -43], "148-258": [320, -22]}}, -{"id": 4359, "name": "Niederegger Marzipan", "description": "\"Niederegger\" is a German brand based in the city of Lübeck producing marzipan. The term \"Lübecker Marzipan\" is a EU-protected designation of origin.\n\nThe design was realized by r/placeDE.", "links": {"website": ["https://de.wikipedia.org/wiki/L%C3%BCbecker_Marzipan"], "subreddit": ["placeDE"]}, "path": {"250-253": [[1483, -424], [1482, -450], [1498, -449], [1497, -415], [1486, -415], [1486, -410], [1471, -409], [1468, -416], [1466, -422], [1469, -429], [1477, -429], [1483, -423], [1481, -450]]}, "center": {"250-253": [1476, -418]}}, -{"id": 4360, "name": "Singapore Flyer", "description": "The Singapore Flyer is a Ferris wheel which is 165 metres tall. It was the world's tallest Ferris wheel when it opened in 2008, but has since been overtaken by High Roller and Ain Dubai.", "links": {"website": ["https://en.wikipedia.org/wiki/Singapore_Flyer", "https://www.singaporeflyer.com/en"], "subreddit": ["singapore", "placeSG"]}, "path": {"95-258": [[336, -13], [336, -16], [335, -16], [335, -21], [336, -21], [336, -22], [337, -22], [337, -23], [342, -23], [342, -22], [343, -22], [343, -20], [342, -20], [342, -14], [341, -14], [341, -13]]}, "center": {"95-258": [339, -18]}}, -{"id": 4361, "name": "Celeste", "description": "Celeste is a 2018 platform game developed and published by indie studio Maddy Makes Games. The player controls Madeline, a young trans woman with anxiety and depression who aims to climb Celeste Mountain.", "links": {"website": ["https://www.celestegame.com"], "subreddit": ["celestegame"], "discord": ["celeste"]}, "path": {"202-224": [[-112, -792], [-65, -792], [-65, -785], [-89, -785], [-89, -781], [-113, -781]], "232-258": [[-112, -793], [-65, -793], [-65, -784], [-70, -784], [-70, -745], [-101, -745], [-101, -776], [-112, -775]]}, "center": {"202-224": [-96, -786], "232-258": [-86, -772]}}, +{"id": 4342, "name": "Flag of India", "description": "India is a country in South Asia.", "links": {"website": ["https://en.m.wikipedia.org/wiki/India", "https://en.m.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["india", "IndiaPlace"]}, "path": {"250-258, T": [[672, -193], [884, -193], [885, -287], [672, -286]]}, "center": {"250-258, T": [778, -240]}}, +{"id": 4343, "name": "AJ Auxerre", "description": "Association de la Jeunesse Auxerroise, commonly known as AJ Auxerre or simply Auxerre, is a French professional football club based in the commune of Auxerre in Burgundy. The club was founded in 1905 and currently plays in Ligue 2, the second division of French football.", "links": {"website": ["https://en.wikipedia.org/wiki/AJ_Auxerre", "https://www.aja.fr/"]}, "path": {"209-258, T": [[858, -831], [858, -818], [859, -818], [859, -817], [860, -816], [861, -815], [862, -815], [863, -814], [866, -813], [867, -814], [868, -815], [869, -815], [870, -816], [871, -817], [871, -818], [872, -818], [872, -831]]}, "center": {"209-258, T": [865, -824]}}, +{"id": 4344, "name": "Logo of Playstation", "description": "The Logo of PlayStation was created in 1994 by Manabu Sakamoto. The logo has been used by PlayStation ever since but has fallen out of favor", "links": {"subreddit": ["playstation"]}, "path": {"250-258, T": [[-1295, 42], [-1305, 46], [-1305, 50], [-1294, 52], [-1288, 53], [-1288, 55], [-1275, 49], [-1275, 44], [-1280, 42], [-1281, 35], [-1287, 34], [-1292, 35], [-1294, 40]]}, "center": {"250-258, T": [-1288, 45]}}, +{"id": 4345, "name": "ArtScience Museum of Singapore", "description": "The lotus-flower shaped museum in Singapore, owned by the Marina Bay Sands resort, showcasing art, science, culture and technology.", "links": {"website": ["https://www.marinabaysands.com/museum.html", "https://commons.wikimedia.org/wiki/File:ArtScience_Museum_from_Esplanade.jpg"], "subreddit": ["singapore", "placeSG"]}, "path": {"188-258, T": [[325, -19], [325, -15], [326, -15], [326, -14], [327, -14], [327, -13], [332, -13], [332, -14], [333, -14], [333, -17], [331, -17], [331, -18], [327, -18], [327, -19]]}, "center": {"188-258, T": [329, -15]}}, +{"id": 4346, "name": "Forever's Community", "description": "Forever is a streamer and YouTuber known for playing the game Minecraft. He is known for his YouTube series Humanly Impossible, where he performs superhuman feats like breaking an entire mountain in Minecraft.\n\nThe art represents its community, featuring two emotes of his Twitch channel (forevi1Amor & forevi1Nelsamor) with his name in the middle (4ever).", "links": {"website": ["https://www.twitch.tv/forever"], "subreddit": ["foreverplayer"], "discord": ["forever"]}, "path": {"250-258, T": [[7, 389], [-39, 375], [30, 376], [30, 400], [-39, 399], [-39, 375]]}, "center": {"250-258, T": [19, 388]}}, +{"id": 4347, "name": "HSV logo", "description": "The logo of the German soccer club Hamburger SV and its founding year 1887. The club is known internationally especially for the successes in the 80s to which also the victory of the European Cup of Champions, today championsleagze, 1983 belongs.", "links": {"website": ["https://www.hsv.de/uebersicht"], "subreddit": ["hsv"], "discord": ["hsv"]}, "path": {"250-258, T": [[-1188, 412], [-1171, 412], [-1171, 436], [-1175, 436], [-1181, 437], [-1193, 437], [-1193, 435], [-1196, 435], [-1196, 429], [-1198, 429], [-1198, 428], [-1200, 428], [-1200, 415], [-1188, 415]]}, "center": {"250-258, T": [-1183, 425]}}, +{"id": 4348, "name": "Kienlabadao's Logo", "description": "This is Kienlabadao's original logo, which was made a long time ago and is still being used nowadays. This logo was built and defended with the support from u/Tuanviet1243, a close friend of his (located on top of the logo).", "links": {"website": ["https://www.youtube.com/@itzkienlabadao4237", "https://www.reddit.com/user/Kienlabadao/"]}, "path": {"248-259, T": [[-1205, 597], [-1199, 597], [-1199, 603], [-1205, 603]]}, "center": {"248-259, T": [-1202, 600]}}, +{"id": 4349, "name": "SBB CFF FFS Logo", "description": "Swiss Federal Railways (German: Schweizerische Bundesbahnen, SBB; French: Chemins de fer fédéraux suisses, CFF; Italian: Ferrovie federali svizzere, FFS)[1] is the national railway company of Switzerland. It is usually referred to by the initials of its three official names", "links": {"website": ["https://en.wikipedia.org/wiki/Swiss_Federal_Railways", "https://www.sbb.ch/de"], "subreddit": ["placeCH"], "discord": ["placech"]}, "path": {"219-258, T": [[-538, 904], [-538, 908], [-528, 908], [-528, 904]]}, "center": {"219-258, T": [-533, 906]}}, +{"id": 4350, "name": "(M)ein kleiner grüner Kaktus", "description": "\"my small green cactus\":\na tribute to the 1930's german hit song \"Mein kleiner grüner Kaktus\" from the group \"Comedian Harmonists\".", "links": {"website": ["https://www.youtube.com/watch?v=HyqzJTNcygE&ab_channel=KlarName"], "subreddit": ["placeDE"]}, "path": {"238-258, T": [[1146, -411], [1142, -408], [1143, -401], [1144, -399], [1142, -397], [1142, -390], [1155, -390], [1154, -399], [1154, -405], [1154, -408], [1151, -411]]}, "center": {"238-258, T": [1148, -405]}}, +{"id": 4351, "name": "HaxeFlixel", "description": "HaxeFlixel is an open source 2D game library written in the Haxe Language and powered by OpenFL.\n\nMost noticeable by Friday Night Funkin'", "links": {"website": ["https://haxeflixel.com/"]}, "path": {"210-258, T": [[-393, -830], [-391, -830], [-391, -828], [-393, -828]]}, "center": {"210-258, T": [-392, -829]}}, +{"id": 4352, "name": "Nyan Cat watching flowey", "description": "Nyan Cat is a meme first published in 2009. On the canvas, it was created during the german nighttime. However, on the final day the PlaceDE community decided to adopt the cat in their artwork.\nAlso shown is flowey, a character from Undertale a game by Tobi Fox", "links": {"website": ["https://de.wikipedia.org/wiki/Nyan_Cat", "https://de.wikipedia.org/wiki/Undertale?wprov=sfla1"], "subreddit": ["placeDE"]}, "path": {"228-258, T": [[1078, -420], [1077, -417], [1075, -415], [1072, -415], [1071, -413], [1071, -409], [1074, -408], [1072, -406], [1072, -403], [1075, -401], [1078, -401], [1080, -397], [1080, -395], [1079, -393], [1081, -391], [1085, -394], [1083, -399], [1087, -403], [1089, -403], [1092, -398], [1096, -393], [1099, -393], [1101, -393], [1103, -394], [1104, -394], [1106, -393], [1108, -393], [1108, -394], [1110, -394], [1112, -392], [1115, -392], [1115, -395], [1129, -397], [1136, -398], [1135, -412], [1124, -410], [1113, -409], [1112, -410], [1098, -410], [1097, -409], [1097, -407], [1094, -406], [1093, -405], [1091, -400], [1090, -403], [1091, -406], [1088, -410], [1091, -414], [1088, -416], [1085, -416], [1081, -420]]}, "center": {"228-258, T": [1103, -402]}}, +{"id": 4353, "name": "Singapore River", "description": "The 3.2km Singapore River is found in the south of Singapore, flowing into Marina Reservoir. It is known for riverside eateries at Robertson Quay, Boat Quay and Clarke Quay. This artwork was attacked by some members of r/phish for entering their territory, but was successfully defended.", "links": {"website": ["https://en.wikipedia.org/wiki/Singapore_River", "https://www.visitsingapore.com/see-do-singapore/places-to-see/singapore-river/"], "subreddit": ["singapore", "placeSG"]}, "path": {"239-258, T": [[325, -14], [332, -14], [332, -12], [331, -12], [331, -9], [327, -9], [327, -10], [326, -10], [326, -11], [325, -11]]}, "center": {"239-258, T": [328, -12]}}, +{"id": 4354, "name": "Star Wars Türkiye", "description": "A small artwork created by a dedicated Turkish fanbase of Star Wars. On the initial canvas at the star of r/place, they were also located under the Hololive logo next to the big Turkish flag. They allied with the VTubers Place community to secure them a spot, and once the VTubers Place community moved after the Turkish and Azerbaijani aggression they decided to come along and got another place secured. Together, they made it to the final canvas.", "links": {"discord": ["vtubersplace"]}, "path": {"250-258, T": [[-623, -327], [-623, -315], [-607, -315], [-606, -327]]}, "center": {"250-258, T": [-614, -321]}}, +{"id": 4355, "name": "some mammals mumbling", "description": "An artwork from the German r/muemmler_iel community, using to share pictures and more or less relevant information about rodents and lagomorpha.\n\nThe word \"Mümmler\" translates as \"those who mumble\". In the early 2020ish years, some members of r/ich_iel (German r/me_irl) used to post small mumbling mammals to celebrate Monday (\"Es ist Montag, meine Mümmler.\", that is: \"It is monday, my mumblers.\"). In early 2022, this ritual was no longer desired by r/ich_iel leading the mumbler-lovers to split off. They decided to create their own community where they could post guinea pigs, rabbits and hamsters every day of the week.", "links": {"subreddit": ["muemmler_iel"]}, "path": {"248-258, T": [[1387, -421], [1383, -411], [1388, -404], [1455, -404], [1453, -407], [1457, -411], [1454, -415], [1454, -427], [1427, -428], [1427, -433], [1424, -438], [1416, -438], [1410, -432], [1415, -426], [1409, -420], [1401, -426], [1392, -426]]}, "center": {"248-258, T": [1424, -416]}}, +{"id": 4356, "name": "Viji pig", "description": "This is art by Russian streamer and musician viji.", "links": {"website": ["https://www.twitch.tv/viji_ttown"]}, "path": {"158-258, T": [[-722, 123], [-721, 128], [-719, 129], [-712, 129], [-710, 127], [-709, 123], [-708, 122], [-701, 122], [-700, 122], [-700, 113], [-731, 113], [-731, 123]]}, "center": {"158-258, T": [-716, 120]}}, +{"id": 4357, "name": "Fruchtzwergeeis", "description": "\"Fruchtzwerge\", a very popular german joghurt for children, is used in many families to make ice cream in the summer. For this purpose, reusable popsicle sticks or spoons are inserted directly into the yogurt packs. The entire package is put in the freezer.\n\nThe design was created by r/placeDE.", "links": {"website": ["https://www.fruchtzwerge.de/Selbstmach-Eis.html"], "subreddit": ["placeDE"]}, "path": {"200-258, T": [[-699, -568], [-697, -570], [-695, -570], [-694, -571], [-692, -571], [-692, -577], [-690, -579], [-689, -579], [-687, -577], [-687, -573], [-685, -573], [-684, -574], [-684, -575], [-683, -576], [-683, -580], [-681, -582], [-680, -582], [-678, -580], [-678, -576], [-677, -576], [-675, -578], [-675, -582], [-673, -584], [-672, -584], [-670, -582], [-670, -578], [-669, -577], [-668, -577], [-668, -581], [-666, -583], [-665, -583], [-663, -581], [-663, -576], [-662, -576], [-661, -575], [-660, -575], [-658, -573], [-660, -571], [-660, -562], [-661, -561], [-661, -560], [-664, -557], [-668, -557], [-668, -556], [-671, -553], [-675, -553], [-676, -554], [-676, -553], [-679, -550], [-684, -550], [-686, -552], [-692, -552], [-695, -555], [-695, -556], [-696, -557], [-696, -565]]}, "center": {"200-258, T": [-675, -565]}}, +{"id": 4358, "name": "Crescent Moon and Stars of Singapore", "description": "Part of the Flag of Singapore. The crescent moon represents a young nation on the ascendant, and the five stars depict Singapore's ideals of democracy, peace, progress, justice and equality. Red stands for universal brotherhood and equality of man. White symbolises pervading and everlasting purity and virtue.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Singapore", "https://www.nhb.gov.sg/what-we-do/our-work/community-engagement/education/resources/national-symbols/national-flag"], "subreddit": ["singapore", "placeSG"]}, "path": {"81-146": [[313, -26], [325, -26], [325, -19], [313, -19]], "50-75": [[338, -40], [338, -47], [350, -47], [350, -39], [338, -39]], "148-258, T": [[314, -26], [314, -18], [326, -18], [326, -26]]}, "center": {"81-146": [319, -22], "50-75": [344, -43], "148-258, T": [320, -22]}}, +{"id": 4359, "name": "Niederegger Marzipan", "description": "\"Niederegger\" is a German brand based in the city of Lübeck producing marzipan. The term \"Lübecker Marzipan\" is a EU-protected designation of origin.\n\nThe design was realized by r/placeDE.", "links": {"website": ["https://de.wikipedia.org/wiki/L%C3%BCbecker_Marzipan"], "subreddit": ["placeDE"]}, "path": {"250-253, T": [[1483, -424], [1482, -450], [1498, -449], [1497, -415], [1486, -415], [1486, -410], [1471, -409], [1468, -416], [1466, -422], [1469, -429], [1477, -429], [1483, -423], [1481, -450]]}, "center": {"250-253, T": [1476, -418]}}, +{"id": 4360, "name": "Singapore Flyer", "description": "The Singapore Flyer is a Ferris wheel which is 165 metres tall. It was the world's tallest Ferris wheel when it opened in 2008, but has since been overtaken by High Roller and Ain Dubai.", "links": {"website": ["https://en.wikipedia.org/wiki/Singapore_Flyer", "https://www.singaporeflyer.com/en"], "subreddit": ["singapore", "placeSG"]}, "path": {"95-258, T": [[336, -13], [336, -16], [335, -16], [335, -21], [336, -21], [336, -22], [337, -22], [337, -23], [342, -23], [342, -22], [343, -22], [343, -20], [342, -20], [342, -14], [341, -14], [341, -13]]}, "center": {"95-258, T": [339, -18]}}, +{"id": 4361, "name": "Celeste", "description": "Celeste is a 2018 platform game developed and published by indie studio Maddy Makes Games. The player controls Madeline, a young trans woman with anxiety and depression who aims to climb Celeste Mountain.", "links": {"website": ["https://www.celestegame.com"], "subreddit": ["celestegame"], "discord": ["celeste"]}, "path": {"202-224": [[-112, -792], [-65, -792], [-65, -785], [-89, -785], [-89, -781], [-113, -781]], "232-258, T": [[-112, -793], [-65, -793], [-65, -784], [-70, -784], [-70, -745], [-101, -745], [-101, -776], [-112, -775]]}, "center": {"202-224": [-96, -786], "232-258, T": [-86, -772]}}, {"id": 4362, "name": "BeamNG.drive Logo", "description": "The logo of the vehicle simulation game BeamNG.drive consisting of 3 orange circles joined by 3 lines in a triangle.", "links": {"website": ["https://www.beamng.com/game/"], "subreddit": ["BeamNG"], "discord": ["YKcSWAy"]}, "path": {"1-12": [[-11, 43], [-10, 44], [-8, 44], [1, 35], [1, 30], [5, 26], [8, 26], [11, 29], [11, 30], [12, 31], [12, 37], [13, 38], [13, 40], [14, 41], [14, 42], [15, 43], [16, 44], [16, 45], [17, 45], [18, 46], [21, 46], [22, 47], [24, 47], [25, 48], [25, 50], [26, 51], [26, 58], [23, 62], [22, 63], [21, 63], [20, 64], [12, 64], [7, 60], [7, 59], [6, 58], [4, 58], [3, 59], [1, 59], [0, 58], [-2, 58], [-2, 59], [-4, 61], [-4, 62], [-7, 65], [-9, 65], [-11, 67], [-16, 67], [-17, 66], [-18, 66], [-19, 65], [-20, 65], [-22, 63], [-22, 62], [-23, 62], [-26, 58], [-26, 51], [-25, 50], [-25, 49], [-23, 47], [-22, 47], [-21, 46], [-20, 46], [-19, 45], [-18, 44], [-17, 43]]}, "center": {"1-12": [-13, 55]}}, -{"id": 4363, "name": "Terrene Protectorate Symbol", "description": "The symbol that represents the Terrene Protectorate, a group that the player character belongs to in Starbound. Starbound is a 2D action-adventure / sandbox game created by Chucklefish that officially released in 2016.", "links": {"website": ["https://starbounder.org/Terrene_Protectorate"], "subreddit": ["Starbound"]}, "path": {"221-258": [[1480, 117], [1493, 117], [1493, 125], [1479, 125], [1479, 117]]}, "center": {"221-258": [1486, 121]}}, +{"id": 4363, "name": "Terrene Protectorate Symbol", "description": "The symbol that represents the Terrene Protectorate, a group that the player character belongs to in Starbound. Starbound is a 2D action-adventure / sandbox game created by Chucklefish that officially released in 2016.", "links": {"website": ["https://starbounder.org/Terrene_Protectorate"], "subreddit": ["Starbound"]}, "path": {"221-258, T": [[1480, 117], [1493, 117], [1493, 125], [1479, 125], [1479, 117]]}, "center": {"221-258, T": [1486, 121]}}, {"id": 4364, "name": "Red Velvet's 'ReVebot', with heart", "description": "A robot mascot of the K-Pop group, Red Velvet, named 'ReVe'. After it was wiped by the Anime Pixel Faction, it was relocated between the words of 'Fuck Spez' (flag version) by the members of the Red Velvet Discord Server.\n\nTo Uaena's and K-Pop place: thank you for letting us share a space with you!", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"115-175": [[-676, -100], [-676, -81], [-662, -81], [-660, -86], [-660, -101], [-676, -101]]}, "center": {"115-175": [-668, -91]}}, {"id": 4365, "name": "Richter Mask From Hotline Miami", "description": "Richter Berg, also known as The Rat, is a side character and an antagonist in Hotline Miami and a playable character in Hotline Miami 2: Wrong Number.", "links": {"subreddit": ["HotlineMiami"], "discord": ["6gawWXyU"]}, "path": {"251": [[-301, -864], [-301, -856], [-294, -864], [-294, -856], [-301, -856], [-301, -864], [-295, -864]]}, "center": {"251": [-296, -858]}}, -{"id": 4366, "name": "Ducktan Sonyeondan", "description": "Ducktan Sonyeondan, aka DTS is the BTS members as ducks (in colors matching their mic colors)", "links": {"subreddit": ["bangtan"]}, "path": {"201-258": [[-1094, 541], [-1082, 541], [-1082, 605], [-1094, 605]]}, "center": {"201-258": [-1088, 573]}}, -{"id": 4367, "name": "Eru ∇", "description": "Eru es una vtuber ángel androide que ha venido a salvarnos. Su nombre completo es Eru Nabura y el símbolo que está junto a su nombre es el Nabla ∇. Ella normalmente escribe su nombre junto con este peculiar símbolo.", "links": {"website": ["https://sites.google.com/view/erunabura/"]}, "path": {"126-258": [[-628, 279], [-628, 306], [-663, 306], [-663, 286], [-653, 282], [-653, 279]]}, "center": {"126-258": [-645, 293]}}, -{"id": 4368, "name": "Tabbyling", "description": "A character from a canceled game by tabdroid.", "links": {"website": ["https://github.com/tabdroid-1"], "subreddit": ["GreenLattice"], "discord": ["y2qeb7sm"]}, "path": {"211-258": [[1116, -647], [1116, -636], [1117, -636], [1117, -635], [1127, -635], [1127, -636], [1128, -636], [1128, -647], [1123, -647], [1123, -646], [1121, -646], [1121, -647]]}, "center": {"211-258": [1122, -640]}}, -{"id": 4369, "name": "Krakowiak", "description": "Krakowiak is is a fast, syncopated Polish folk dance in duple time. It origins from Cracow (Kraków), Poland.", "links": {"website": ["https://en.wikipedia.org/wiki/Krakowiak"], "subreddit": ["Poland", "Polska"]}, "path": {"250-258": [[784, -102], [788, -102], [790, -100], [792, -101], [795, -100], [794, -98], [795, -96], [793, -94], [796, -93], [795, -96], [797, -97], [799, -97], [800, -94], [801, -91], [802, -89], [801, -87], [801, -80], [802, -76], [802, -74], [800, -74], [799, -72], [797, -72], [798, -74], [789, -75], [788, -74], [788, -75], [789, -76], [785, -81], [783, -80], [781, -80], [781, -82], [783, -82], [785, -83], [786, -85], [787, -88], [788, -88], [788, -90], [788, -91], [787, -93], [787, -95], [789, -96], [788, -97], [788, -98], [786, -100]]}, "center": {"250-258": [793, -83]}}, +{"id": 4366, "name": "Ducktan Sonyeondan", "description": "Ducktan Sonyeondan, aka DTS is the BTS members as ducks (in colors matching their mic colors)", "links": {"subreddit": ["bangtan"]}, "path": {"201-258, T": [[-1094, 541], [-1082, 541], [-1082, 605], [-1094, 605]]}, "center": {"201-258, T": [-1088, 573]}}, +{"id": 4367, "name": "Eru ∇", "description": "Eru es una vtuber ángel androide que ha venido a salvarnos. Su nombre completo es Eru Nabura y el símbolo que está junto a su nombre es el Nabla ∇. Ella normalmente escribe su nombre junto con este peculiar símbolo.", "links": {"website": ["https://sites.google.com/view/erunabura/"]}, "path": {"126-258, T": [[-628, 279], [-628, 306], [-663, 306], [-663, 286], [-653, 282], [-653, 279]]}, "center": {"126-258, T": [-645, 293]}}, +{"id": 4368, "name": "Tabbyling", "description": "A character from a canceled game by tabdroid.", "links": {"website": ["https://github.com/tabdroid-1"], "subreddit": ["GreenLattice"], "discord": ["y2qeb7sm"]}, "path": {"211-258, T": [[1116, -647], [1116, -636], [1117, -636], [1117, -635], [1127, -635], [1127, -636], [1128, -636], [1128, -647], [1123, -647], [1123, -646], [1121, -646], [1121, -647]]}, "center": {"211-258, T": [1122, -640]}}, +{"id": 4369, "name": "Krakowiak", "description": "Krakowiak is is a fast, syncopated Polish folk dance in duple time. It origins from Cracow (Kraków), Poland.", "links": {"website": ["https://en.wikipedia.org/wiki/Krakowiak"], "subreddit": ["Poland", "Polska"]}, "path": {"250-258, T": [[784, -102], [788, -102], [790, -100], [792, -101], [795, -100], [794, -98], [795, -96], [793, -94], [796, -93], [795, -96], [797, -97], [799, -97], [800, -94], [801, -91], [802, -89], [801, -87], [801, -80], [802, -76], [802, -74], [800, -74], [799, -72], [797, -72], [798, -74], [789, -75], [788, -74], [788, -75], [789, -76], [785, -81], [783, -80], [781, -80], [781, -82], [783, -82], [785, -83], [786, -85], [787, -88], [788, -88], [788, -90], [788, -91], [787, -93], [787, -95], [789, -96], [788, -97], [788, -98], [786, -100]]}, "center": {"250-258, T": [793, -83]}}, {"id": 4370, "name": "Pusheen", "description": "Pusheen is a cat who debuted in the comic strip 'Pusheen Things' on the website Everyday Cute. It gained popularity from its appearance in Facebook and Android message stickers.", "links": {"website": ["https://en.wikipedia.org/wiki/Pusheen"], "subreddit": ["pusheen"]}, "path": {"248": [[-379, -604], [-362, -604], [-358, -608], [-358, -612], [-361, -616], [-361, -619], [-363, -619], [-363, -618], [-369, -618], [-370, -619], [-370, -620], [-372, -620], [-372, -619], [-373, -619], [-373, -620], [-375, -620], [-375, -619], [-376, -619], [-377, -620], [-380, -616], [-380, -605], [-380, -616], [-381, -606], [-381, -615], [-381, -606]]}, "center": {"248": [-368, -611]}}, -{"id": 4371, "name": "Blackjack", "description": "The main character of the book Fallout: Equestria - Project Horizons", "links": {"website": ["https://www.fimfiction.net/story/208056/fallout-equestria-project-horizons"], "subreddit": ["falloutequestria"], "discord": ["bronyplace"]}, "path": {"183-258": [[-306, 828], [-306, 827], [-304, 825], [-303, 824], [-302, 824], [-302, 823], [-298, 819], [-297, 819], [-296, 818], [-295, 817], [-293, 817], [-289, 821], [-289, 822], [-284, 827], [-284, 828], [-305, 828]]}, "center": {"183-258": [-294, 823]}}, -{"id": 4372, "name": "PrinceWhateverer Logo", "description": "PrinceWhateverer is a brony (fan of My Little Pony series) musician from the United Kingdom who specializes in rock and metal.", "links": {"website": ["https://www.youtube.com/channel/UCrZ4hH-LfQES7GHvXlZot3w", "https://www.twitch.tv/prince_whateverer/"], "discord": ["8F4yWS6"]}, "path": {"250-258": [[-1406, 372], [-1391, 372], [-1391, 385], [-1406, 385]]}, "center": {"250-258": [-1398, 379]}}, -{"id": 4373, "name": "necoSus", "description": "Neco-Arc + Among Us Crewmate\n\nA common emote in the Source2 Zombie Escape discord server.\n\nThe original art was created during Neco-Arcs popularity.", "links": {"website": ["https://twitter.com/cocart64/status/1434918130233511937"]}, "path": {"241-258": [[307, -833], [307, -805], [335, -805], [335, -833]]}, "center": {"241-258": [321, -819]}}, -{"id": 4374, "name": "A little love storie", "description": "Just a little token of love from a French redditor for his girlfriend.\n\nA long two-day battle to keep their pixels !\n\nChloé + Loïc <3", "links": {}, "path": {"182-210": [[973, -624], [980, -631], [980, -634], [977, -637], [975, -637], [973, -635], [971, -637], [969, -637], [966, -634], [966, -631]], "226-232, 243-258": [[973, -624], [974, -624], [981, -631], [981, -634], [978, -637], [975, -637], [974, -636], [973, -636], [972, -637], [969, -637], [966, -634], [966, -631]]}, "center": {"182-210": [973, -630], "226-232, 243-258": [974, -631]}}, +{"id": 4371, "name": "Blackjack", "description": "The main character of the book Fallout: Equestria - Project Horizons", "links": {"website": ["https://www.fimfiction.net/story/208056/fallout-equestria-project-horizons"], "subreddit": ["falloutequestria"], "discord": ["bronyplace"]}, "path": {"183-258, T": [[-306, 828], [-306, 827], [-304, 825], [-303, 824], [-302, 824], [-302, 823], [-298, 819], [-297, 819], [-296, 818], [-295, 817], [-293, 817], [-289, 821], [-289, 822], [-284, 827], [-284, 828], [-305, 828]]}, "center": {"183-258, T": [-294, 823]}}, +{"id": 4372, "name": "PrinceWhateverer Logo", "description": "PrinceWhateverer is a brony (fan of My Little Pony series) musician from the United Kingdom who specializes in rock and metal.", "links": {"website": ["https://www.youtube.com/channel/UCrZ4hH-LfQES7GHvXlZot3w", "https://www.twitch.tv/prince_whateverer/"], "discord": ["8F4yWS6"]}, "path": {"250-258, T": [[-1406, 372], [-1391, 372], [-1391, 385], [-1406, 385]]}, "center": {"250-258, T": [-1398, 379]}}, +{"id": 4373, "name": "necoSus", "description": "Neco-Arc + Among Us Crewmate\n\nA common emote in the Source2 Zombie Escape discord server.\n\nThe original art was created during Neco-Arcs popularity.", "links": {"website": ["https://twitter.com/cocart64/status/1434918130233511937"]}, "path": {"241-258, T": [[307, -833], [307, -805], [335, -805], [335, -833]]}, "center": {"241-258, T": [321, -819]}}, +{"id": 4374, "name": "A little love storie", "description": "Just a little token of love from a French redditor for his girlfriend.\n\nA long two-day battle to keep their pixels !\n\nChloé + Loïc <3", "links": {}, "path": {"182-210": [[973, -624], [980, -631], [980, -634], [977, -637], [975, -637], [973, -635], [971, -637], [969, -637], [966, -634], [966, -631]], "226-232, 243-258, T": [[973, -624], [974, -624], [981, -631], [981, -634], [978, -637], [975, -637], [974, -636], [973, -636], [972, -637], [969, -637], [966, -634], [966, -631]]}, "center": {"182-210": [973, -630], "226-232, 243-258, T": [974, -631]}}, {"id": 4375, "name": "CoupCritique.fr", "description": "CoupCritique.fr is the prime french reference website in competitive Pokémon. Funded and co-created by french streamer and youtuber Redemption, the website allows users and visitors to create, submit and rent teams build for competitive play on Pokémon Showdown or VGC and BSS on consoles, as well as being informed on all the latest competitive news and meta change, all with a supportive and active french community. The logo represents a Pidgeot set up like a chess piece.", "links": {"website": ["https://www.coupcritique.fr/entity/actualities"], "subreddit": ["coupcritique"]}, "path": {"162-172": [[-188, -817], [-175, -817], [-174, -799], [-189, -799], [-189, -816]]}, "center": {"162-172": [-182, -808]}}, -{"id": 4376, "name": "Rivers_GG", "description": "Samantha Rivera Treviño, better known as Rivers, is a Mexican YouTuber and streamer who used to do live streams on Facebook until she decided to move to Twitch in November 2021. Currently, she is one of the influencers with the highest growth on the platform. Also, you can see the logo of her channel and the iconic 'Los Pollitos,' which is how she calls her community.", "links": {"website": ["https://www.twitch.tv/river_gg"]}, "path": {"155-258": [[-383, 501], [-447, 501], [-447, 483], [-383, 483]]}, "center": {"155-258": [-415, 492]}}, +{"id": 4376, "name": "Rivers_GG", "description": "Samantha Rivera Treviño, better known as Rivers, is a Mexican YouTuber and streamer who used to do live streams on Facebook until she decided to move to Twitch in November 2021. Currently, she is one of the influencers with the highest growth on the platform. Also, you can see the logo of her channel and the iconic 'Los Pollitos,' which is how she calls her community.", "links": {"website": ["https://www.twitch.tv/river_gg"]}, "path": {"155-258, T": [[-383, 501], [-447, 501], [-447, 483], [-383, 483]]}, "center": {"155-258, T": [-415, 492]}}, {"id": 4377, "name": "Foxhole Relocation", "description": "When rebuilding after being placed over by the streamer ElZeein, the Foxhole template was accidentally misplaced, making it overlap with Black Company's sign (located to the right). After negotiations between the two factions and Peru (to the left), Foxhole decided to shift their artwork over two pixels in order to return to their original location. Black Company members aided in this valiant effort, and in return Foxhole members later helped Black Company rebuild their r/blind snoo.", "links": {}, "path": {"93-98": [[-142, -27], [-142, 61], [-78, 62], [-78, -26]]}, "center": {"93-98": [-110, 18]}}, -{"id": 4378, "name": "Project F Logo", "description": "A logo of Project・F also known as Project Foundation which is a Virtual Talent agency based in Asia (Singapore and Indonesia).\nThe color below corresponds to each of the talents of Gen 1 Celestia;Aozora Furia, Solus Ataraxia, Kawakami Kuwa, and Xin Asura.", "links": {"website": ["https://www.vproject-f.com/", "https://virtualyoutuber.fandom.com/wiki/Project_F", "https://twitter.com/vprojectf"], "discord": ["vprojectf"]}, "path": {"225-258": [[1283, -845], [1283, -836], [1291, -836], [1291, -845]]}, "center": {"225-258": [1287, -840]}}, -{"id": 4379, "name": "France", "description": "The country of France as it appears on a map, with the flag of France as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france", "PlaceEU"], "discord": ["placeFR"]}, "path": {"158-258": [[-287, 746], [-289, 748], [-290, 749], [-290, 750], [-291, 751], [-294, 751], [-295, 752], [-296, 752], [-297, 753], [-297, 756], [-299, 756], [-299, 766], [-304, 766], [-304, 768], [-303, 769], [-303, 772], [-302, 773], [-302, 774], [-303, 775], [-303, 778], [-305, 778], [-306, 779], [-304, 781], [-304, 782], [-302, 784], [-301, 785], [-301, 787], [-299, 789], [-298, 789], [-297, 788], [-296, 789], [-295, 788], [-294, 789], [-293, 788], [-291, 788], [-290, 789], [-289, 788], [-288, 788], [-287, 789], [-286, 788], [-280, 788], [-279, 789], [-276, 789], [-275, 790], [-273, 788], [-272, 788], [-272, 786], [-271, 785], [-271, 784], [-273, 782], [-273, 780], [-274, 779], [-272, 777], [-273, 776], [-271, 774], [-271, 773], [-273, 771], [-274, 770], [-274, 769], [-273, 768], [-273, 767], [-271, 767], [-271, 765], [-270, 765], [-270, 761], [-276, 755], [-278, 755], [-281, 752], [-283, 750], [-283, 749], [-285, 747], [-286, 747]]}, "center": {"158-258": [-288, 774]}}, -{"id": 4380, "name": "Georgian Legion Insignia", "description": "The Georgian National Legion or Georgian Legion. is a military unit formed by mostly ethnic Georgian volunteers fighting on the side of Ukraine in the war in Donbas and the Russo-Ukrainian War. The unit was organized in 2014, and in 2016 it was made part of the Ukrainian Army, under the 25th Mechanized Infantry Battalion \"Kyiv Rus\".", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Georgian_Legion_(Ukraine)](https://en.wikipedia.org/wiki/Georgian_Legion_(Ukraine))"]}, "path": {"181-258": [[-288, -144], [-290, -145], [-293, -147], [-295, -150], [-297, -153], [-297, -156], [-296, -157], [-297, -158], [-297, -162], [-296, -163], [-296, -164], [-290, -167], [-284, -167], [-278, -164], [-278, -163], [-277, -162], [-277, -158], [-278, -157], [-277, -156], [-277, -153], [-280, -149], [-281, -148], [-285, -144]]}, "center": {"181-258": [-287, -157]}}, -{"id": 4381, "name": "Winged Sussar", "description": "A winged hussar but he is, well... sus. In r/place 2022 people constantly replaced the hussar with a crewmate, so this time it was part of the official layout.\nWinged hussars were the elite polish heavy cavarly formation.", "links": {"website": ["https://en.wikipedia.org/wiki/Polish_hussars"], "subreddit": ["poland", "polska"], "discord": ["YXYfnQgEyg"]}, "path": {"250-258": [[723, -128], [718, -132], [720, -148], [727, -151], [730, -148], [732, -141], [746, -154], [748, -154], [748, -147], [742, -143], [741, -147], [733, -139], [737, -139], [738, -136], [737, -135], [734, -134], [732, -128], [724, -128]]}, "center": {"250-258": [726, -136]}}, -{"id": 4382, "name": "Don't Nod", "description": "Don't Nod entertainment is a french video game developer and Publisher based in Paris. Don't Nod developed the games Life Is Strange 1 and 2 among others.", "links": {"website": ["https://en.wikipedia.org/wiki/Don%27t_Nod", "https://dont-nod.com/en"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"202-258": [[887, -55], [887, -67], [893, -67], [894, -66], [898, -66], [902, -61], [902, -60], [897, -55]]}, "center": {"202-258": [893, -60]}}, -{"id": 4383, "name": "Biker", "description": "Biker, also known as Helmet or Hacker, is the deuteragonist of Hotline Miami and a side character in Hotline Miami 2: Wrong Number. He is a former 50 Blessings agent.", "links": {"subreddit": ["HotlineMiami"], "discord": ["6gawWXyU"]}, "path": {"250-258": [[-279, -854], [-268, -854], [-268, -844], [-279, -844]]}, "center": {"250-258": [-273, -849]}}, +{"id": 4378, "name": "Project F Logo", "description": "A logo of Project・F also known as Project Foundation which is a Virtual Talent agency based in Asia (Singapore and Indonesia).\nThe color below corresponds to each of the talents of Gen 1 Celestia;Aozora Furia, Solus Ataraxia, Kawakami Kuwa, and Xin Asura.", "links": {"website": ["https://www.vproject-f.com/", "https://virtualyoutuber.fandom.com/wiki/Project_F", "https://twitter.com/vprojectf"], "discord": ["vprojectf"]}, "path": {"225-258, T": [[1283, -845], [1283, -836], [1291, -836], [1291, -845]]}, "center": {"225-258, T": [1287, -840]}}, +{"id": 4379, "name": "France", "description": "The country of France as it appears on a map, with the flag of France as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france", "PlaceEU"], "discord": ["placeFR"]}, "path": {"158-258, T": [[-287, 746], [-289, 748], [-290, 749], [-290, 750], [-291, 751], [-294, 751], [-295, 752], [-296, 752], [-297, 753], [-297, 756], [-299, 756], [-299, 766], [-304, 766], [-304, 768], [-303, 769], [-303, 772], [-302, 773], [-302, 774], [-303, 775], [-303, 778], [-305, 778], [-306, 779], [-304, 781], [-304, 782], [-302, 784], [-301, 785], [-301, 787], [-299, 789], [-298, 789], [-297, 788], [-296, 789], [-295, 788], [-294, 789], [-293, 788], [-291, 788], [-290, 789], [-289, 788], [-288, 788], [-287, 789], [-286, 788], [-280, 788], [-279, 789], [-276, 789], [-275, 790], [-273, 788], [-272, 788], [-272, 786], [-271, 785], [-271, 784], [-273, 782], [-273, 780], [-274, 779], [-272, 777], [-273, 776], [-271, 774], [-271, 773], [-273, 771], [-274, 770], [-274, 769], [-273, 768], [-273, 767], [-271, 767], [-271, 765], [-270, 765], [-270, 761], [-276, 755], [-278, 755], [-281, 752], [-283, 750], [-283, 749], [-285, 747], [-286, 747]]}, "center": {"158-258, T": [-288, 774]}}, +{"id": 4380, "name": "Georgian Legion Insignia", "description": "The Georgian National Legion or Georgian Legion. is a military unit formed by mostly ethnic Georgian volunteers fighting on the side of Ukraine in the war in Donbas and the Russo-Ukrainian War. The unit was organized in 2014, and in 2016 it was made part of the Ukrainian Army, under the 25th Mechanized Infantry Battalion \"Kyiv Rus\".", "links": {"website": ["https://[https://en.wikipedia.org/wiki/Georgian_Legion_(Ukraine)](https://en.wikipedia.org/wiki/Georgian_Legion_(Ukraine))"]}, "path": {"181-258, T": [[-288, -144], [-290, -145], [-293, -147], [-295, -150], [-297, -153], [-297, -156], [-296, -157], [-297, -158], [-297, -162], [-296, -163], [-296, -164], [-290, -167], [-284, -167], [-278, -164], [-278, -163], [-277, -162], [-277, -158], [-278, -157], [-277, -156], [-277, -153], [-280, -149], [-281, -148], [-285, -144]]}, "center": {"181-258, T": [-287, -157]}}, +{"id": 4381, "name": "Winged Sussar", "description": "A winged hussar but he is, well... sus. In r/place 2022 people constantly replaced the hussar with a crewmate, so this time it was part of the official layout.\nWinged hussars were the elite polish heavy cavarly formation.", "links": {"website": ["https://en.wikipedia.org/wiki/Polish_hussars"], "subreddit": ["poland", "polska"], "discord": ["YXYfnQgEyg"]}, "path": {"250-258, T": [[723, -128], [718, -132], [720, -148], [727, -151], [730, -148], [732, -141], [746, -154], [748, -154], [748, -147], [742, -143], [741, -147], [733, -139], [737, -139], [738, -136], [737, -135], [734, -134], [732, -128], [724, -128]]}, "center": {"250-258, T": [726, -136]}}, +{"id": 4382, "name": "Don't Nod", "description": "Don't Nod entertainment is a french video game developer and Publisher based in Paris. Don't Nod developed the games Life Is Strange 1 and 2 among others.", "links": {"website": ["https://en.wikipedia.org/wiki/Don%27t_Nod", "https://dont-nod.com/en"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"202-258, T": [[887, -55], [887, -67], [893, -67], [894, -66], [898, -66], [902, -61], [902, -60], [897, -55]]}, "center": {"202-258, T": [893, -60]}}, +{"id": 4383, "name": "Biker", "description": "Biker, also known as Helmet or Hacker, is the deuteragonist of Hotline Miami and a side character in Hotline Miami 2: Wrong Number. He is a former 50 Blessings agent.", "links": {"subreddit": ["HotlineMiami"], "discord": ["6gawWXyU"]}, "path": {"250-258, T": [[-279, -854], [-268, -854], [-268, -844], [-279, -844]]}, "center": {"250-258, T": [-273, -849]}}, {"id": 4384, "name": "Madagascar flag", "description": "Madagascar yeah", "links": {}, "path": {"244-245": [[296, 952], [299, 952], [299, 954], [296, 954], [296, 952], [297, 953], [296, 951], [298, 951], [296, 952], [296, 951], [298, 952], [296, 951], [296, 953], [298, 953], [297, 952], [296, 951]]}, "center": {"244-245": [298, 953]}}, -{"id": 4385, "name": "Lübecker Marzipan", "description": "Lübeck Marzipan (German: Lübecker Marzipan) refers to marzipan originating from the city of Lübeck in northern Germany and has been protected by an EU Council Directive as a \"Protected Geographical Indication\" (PGI) since 1996.\n\nThe quality requirements of Lübeck Marzipan are set higher than those of conventional marzipan and are regulated by the RAL German Institute for Quality Assurance and Classification. For a product to qualify as Lübeck Marzipan, a product must contain no more than 30% sugar, while the Lübeck Fine Marzipan must contain up to 10% sugar.\n\nLübeck, as the capital of the Hanseatic League, was an important trading hub, which ensured a steady supply of ingredients. Consequently, in the 18th century, the marzipan produced in Lübeck started becoming well known for its high quality, due to its high almond content.\n\nToday, Lübeck is host to several attractions that reference the city's association with marzipan. The most notable of these is the Niederegger Marzipan Museum, which includes amongst its exhibits: historical accounts of the production of marzipan, the original 1806 Niederegger recipe and various historical figures sculpted in marzipan.", "links": {"website": ["https://en.wikipedia.org/wiki/L%C3%BCbeck_Marzipan", "https://www.niederegger.de/"]}, "path": {"250-258": [[1496, -447], [1497, -417], [1486, -417], [1485, -410], [1474, -410], [1471, -412], [1468, -419], [1468, -425], [1470, -427], [1478, -427], [1481, -424], [1482, -447]]}, "center": {"250-258": [1489, -425]}}, +{"id": 4385, "name": "Lübecker Marzipan", "description": "Lübeck Marzipan (German: Lübecker Marzipan) refers to marzipan originating from the city of Lübeck in northern Germany and has been protected by an EU Council Directive as a \"Protected Geographical Indication\" (PGI) since 1996.\n\nThe quality requirements of Lübeck Marzipan are set higher than those of conventional marzipan and are regulated by the RAL German Institute for Quality Assurance and Classification. For a product to qualify as Lübeck Marzipan, a product must contain no more than 30% sugar, while the Lübeck Fine Marzipan must contain up to 10% sugar.\n\nLübeck, as the capital of the Hanseatic League, was an important trading hub, which ensured a steady supply of ingredients. Consequently, in the 18th century, the marzipan produced in Lübeck started becoming well known for its high quality, due to its high almond content.\n\nToday, Lübeck is host to several attractions that reference the city's association with marzipan. The most notable of these is the Niederegger Marzipan Museum, which includes amongst its exhibits: historical accounts of the production of marzipan, the original 1806 Niederegger recipe and various historical figures sculpted in marzipan.", "links": {"website": ["https://en.wikipedia.org/wiki/L%C3%BCbeck_Marzipan", "https://www.niederegger.de/"]}, "path": {"250-258, T": [[1496, -447], [1497, -417], [1486, -417], [1485, -410], [1474, -410], [1471, -412], [1468, -419], [1468, -425], [1470, -427], [1478, -427], [1481, -424], [1482, -447]]}, "center": {"250-258, T": [1489, -425]}}, {"id": 4386, "name": "Belpiu emoji", "description": "A minimalistic recriation of the \"Belpiu\" emote from the brazillian streamer \"Bel Rodrigue's\" twitch channel. It was made by her community and then an alliance between the emote and the \"FC Nantes\" football team was created, reunating both arts. There's also a bigger version of the emote in 32, 535 (coordninates), along with another emote from the same twitch channel.", "links": {"website": ["https://www.twitch.tv/belrodrigues"], "discord": ["bel"]}, "path": {"221": [[-23, 425], [-16, 431], [-16, 425], [-23, 425], [-23, 431], [-16, 431], [-19, 428]]}, "center": {"221": [-21, 429]}}, -{"id": 4387, "name": "Fiddlebert Portrait", "description": "An inside joke within the Pikmin community, Fiddlebert is a made-up character that veteran fans try to convince newer players actually existed. \n\nHe supposedly appeared only in the original gamecube edition of the first Pikmin game as the second captain there. He randomly spoke in Lithuanian, was violently racist, made terrible puns involving the word \"fiddle,\" and said incredibly controversial and bigoted statements. His model was just a tiny green Olimar and most players hated him. Due to the backlash, Nintendo scrubbed him from the record and he didn't appear in either the Wii or Switch ports of the game.", "links": {"subreddit": ["Pikmin"]}, "path": {"206-258": [[1463, 380], [1477, 380], [1477, 384], [1481, 384], [1481, 394], [1463, 394]]}, "center": {"206-258": [1470, 387]}}, +{"id": 4387, "name": "Fiddlebert Portrait", "description": "An inside joke within the Pikmin community, Fiddlebert is a made-up character that veteran fans try to convince newer players actually existed. \n\nHe supposedly appeared only in the original gamecube edition of the first Pikmin game as the second captain there. He randomly spoke in Lithuanian, was violently racist, made terrible puns involving the word \"fiddle,\" and said incredibly controversial and bigoted statements. His model was just a tiny green Olimar and most players hated him. Due to the backlash, Nintendo scrubbed him from the record and he didn't appear in either the Wii or Switch ports of the game.", "links": {"subreddit": ["Pikmin"]}, "path": {"206-258, T": [[1463, 380], [1477, 380], [1477, 384], [1481, 384], [1481, 394], [1463, 394]]}, "center": {"206-258, T": [1470, 387]}}, {"id": 4388, "name": "Lancer", "description": "Lancer is a character from Deltarune.", "links": {}, "path": {"15": [[329, 464], [336, 458], [343, 466], [343, 472], [339, 476], [329, 476]]}, "center": {"15": [336, 468]}}, -{"id": 4389, "name": "Puck", "description": "Puck is a character from the manga Berserk. He is the first companion Guts makes during the latter's days as the Black Swordsman. Here he is shown in his chibi chestnut form. \n\nThe drawing was made by the Berserk community in cooperation with the PlaceRO community.", "links": {"website": ["https://berserk.fandom.com/wiki/Puck"], "subreddit": ["Berserk"], "discord": ["placero"]}, "path": {"250-258": [[-307, 173], [-309, 170], [-304, 166], [-304, 162], [-312, 151], [-318, 150], [-323, 151], [-328, 158], [-330, 162], [-328, 167], [-323, 171], [-322, 174]]}, "center": {"250-258": [-317, 162]}}, -{"id": 4390, "name": "KoroGlouton from DOIGT", "description": "This is a tribute to the Belgium streamer DOIGT and his character the KoroGlouton from the game Burger Saga (made by DOIGT).\nThis KoroGlouton is a skin for the initial character the Glouton.", "links": {"website": ["https://twitch.tv/doigt"]}, "path": {"241-258": [[-1130, 490], [-1112, 490], [-1112, 473], [-1116, 473], [-1116, 472], [-1117, 472], [-1117, 471], [-1118, 471], [-1118, 466], [-1119, 466], [-1119, 464], [-1122, 464], [-1122, 463], [-1131, 463], [-1131, 464], [-1132, 464], [-1132, 465], [-1134, 465], [-1134, 466], [-1135, 466], [-1135, 475], [-1134, 475], [-1134, 476], [-1133, 476], [-1133, 481], [-1132, 481], [-1132, 482], [-1131, 482], [-1131, 483], [-1130, 483]]}, "center": {"241-258": [-1121, 481]}}, -{"id": 4391, "name": "r/AnimalJam Butterfly", "description": "This butterfly is from the logo of Animal Jam, an online virtual world game. Released in 2010, Animal Jam is known for it's in-game trading scene, art community, and YouTube videos. The butterfly represents the 3D version of Animal Jam released in 2015, formerly known as Animal Jam: Play Wild.\n\nAfter struggling to find a home on the canvas, r/AnimalJam eventually was able to build their artwork within this r/place_brff piece, to compliment the other cute creatures.", "links": {"website": ["https://www.animaljam.com/en", "https://en.wikipedia.org/wiki/Animal_Jam_Classic"], "subreddit": ["AnimalJam"], "discord": ["clubgeoz"]}, "path": {"176-251": [[-306, 197], [-306, 205], [-305, 205], [-305, 208], [-304, 208], [-304, 209], [-303, 209], [-303, 212], [-304, 212], [-304, 213], [-305, 213], [-305, 214], [-306, 214], [-306, 217], [-305, 217], [-305, 218], [-304, 218], [-304, 219], [-302, 219], [-302, 220], [-299, 220], [-299, 219], [-298, 219], [-298, 220], [-295, 220], [-295, 218], [-294, 218], [-294, 219], [-285, 219], [-285, 212], [-286, 212], [-286, 211], [-287, 211], [-287, 210], [-288, 210], [-288, 209], [-289, 209], [-289, 207], [-288, 207], [-288, 205], [-287, 205], [-287, 201], [-288, 201], [-288, 198], [-289, 198], [-289, 197], [-290, 197], [-290, 195], [-291, 195], [-291, 194], [-292, 194], [-292, 193], [-293, 193], [-293, 192], [-296, 192], [-296, 193], [-297, 193], [-297, 194], [-298, 194], [-298, 195], [-299, 195], [-299, 196], [-300, 196], [-300, 197], [-301, 197], [-301, 199], [-302, 199], [-302, 202], [-303, 201], [-303, 199], [-304, 199], [-304, 197]]}, "center": {"176-251": [-296, 211]}}, -{"id": 4392, "name": "Fippy Gaming tribute", "description": "Fippy Gaming is a france-based youtuber doing funny stuff with his friends, never forget that FG is here", "links": {"website": ["https://www.youtube.com/channel/UCtfa6yF9PFU2bteay9xScZA?app=desktop"]}, "path": {"207-258": [[-1093, 261], [-1084, 261], [-1084, 267], [-1093, 267], [-1093, 261], [-1084, 267], [-1084, 262], [-1093, 268], [-1093, 261], [-1086, 264]]}, "center": {"207-258": [-1088, 262]}}, -{"id": 4393, "name": "Jacket from hotline miami", "description": "Jacket, also referred to in game files as Player or P, is the main protagonist and player character of Hotline Miami, and a side character in Hotline Miami 2: Wrong Number. He received this fan nickname because of his distinctive letterman jacket.Jacket, also referred to in game files as Player or P, is the main protagonist and player character of Hotline Miami, and a side character in Hotline Miami 2: Wrong Number. He received this fan nickname because of his distinctive letterman jacket.", "links": {"subreddit": ["HotlineMiami"], "discord": ["6gawWXyU"]}, "path": {"250-258": [[-301, -855], [-292, -855], [-292, -844], [-301, -844]]}, "center": {"250-258": [-296, -849]}}, +{"id": 4389, "name": "Puck", "description": "Puck is a character from the manga Berserk. He is the first companion Guts makes during the latter's days as the Black Swordsman. Here he is shown in his chibi chestnut form. \n\nThe drawing was made by the Berserk community in cooperation with the PlaceRO community.", "links": {"website": ["https://berserk.fandom.com/wiki/Puck"], "subreddit": ["Berserk"], "discord": ["placero"]}, "path": {"250-258, T": [[-307, 173], [-309, 170], [-304, 166], [-304, 162], [-312, 151], [-318, 150], [-323, 151], [-328, 158], [-330, 162], [-328, 167], [-323, 171], [-322, 174]]}, "center": {"250-258, T": [-317, 162]}}, +{"id": 4390, "name": "KoroGlouton from DOIGT", "description": "This is a tribute to the Belgium streamer DOIGT and his character the KoroGlouton from the game Burger Saga (made by DOIGT).\nThis KoroGlouton is a skin for the initial character the Glouton.", "links": {"website": ["https://twitch.tv/doigt"]}, "path": {"241-258, T": [[-1130, 490], [-1112, 490], [-1112, 473], [-1116, 473], [-1116, 472], [-1117, 472], [-1117, 471], [-1118, 471], [-1118, 466], [-1119, 466], [-1119, 464], [-1122, 464], [-1122, 463], [-1131, 463], [-1131, 464], [-1132, 464], [-1132, 465], [-1134, 465], [-1134, 466], [-1135, 466], [-1135, 475], [-1134, 475], [-1134, 476], [-1133, 476], [-1133, 481], [-1132, 481], [-1132, 482], [-1131, 482], [-1131, 483], [-1130, 483]]}, "center": {"241-258, T": [-1121, 481]}}, +{"id": 4391, "name": "r/AnimalJam Butterfly", "description": "This butterfly is from the logo of Animal Jam, an online virtual world game. Released in 2010, Animal Jam is known for it's in-game trading scene, art community, and YouTube videos. The butterfly represents the 3D version of Animal Jam released in 2015, formerly known as Animal Jam: Play Wild.\n\nAfter struggling to find a home on the canvas, r/AnimalJam eventually was able to build their artwork within this r/place_brff piece, to compliment the other cute creatures.", "links": {"website": ["https://www.animaljam.com/en", "https://en.wikipedia.org/wiki/Animal_Jam_Classic"], "subreddit": ["AnimalJam"], "discord": ["clubgeoz"]}, "path": {"176-251, T": [[-306, 197], [-306, 205], [-305, 205], [-305, 208], [-304, 208], [-304, 209], [-303, 209], [-303, 212], [-304, 212], [-304, 213], [-305, 213], [-305, 214], [-306, 214], [-306, 217], [-305, 217], [-305, 218], [-304, 218], [-304, 219], [-302, 219], [-302, 220], [-299, 220], [-299, 219], [-298, 219], [-298, 220], [-295, 220], [-295, 218], [-294, 218], [-294, 219], [-285, 219], [-285, 212], [-286, 212], [-286, 211], [-287, 211], [-287, 210], [-288, 210], [-288, 209], [-289, 209], [-289, 207], [-288, 207], [-288, 205], [-287, 205], [-287, 201], [-288, 201], [-288, 198], [-289, 198], [-289, 197], [-290, 197], [-290, 195], [-291, 195], [-291, 194], [-292, 194], [-292, 193], [-293, 193], [-293, 192], [-296, 192], [-296, 193], [-297, 193], [-297, 194], [-298, 194], [-298, 195], [-299, 195], [-299, 196], [-300, 196], [-300, 197], [-301, 197], [-301, 199], [-302, 199], [-302, 202], [-303, 201], [-303, 199], [-304, 199], [-304, 197]]}, "center": {"176-251, T": [-296, 211]}}, +{"id": 4392, "name": "Fippy Gaming tribute", "description": "Fippy Gaming is a france-based youtuber doing funny stuff with his friends, never forget that FG is here", "links": {"website": ["https://www.youtube.com/channel/UCtfa6yF9PFU2bteay9xScZA?app=desktop"]}, "path": {"207-258, T": [[-1093, 261], [-1084, 261], [-1084, 267], [-1093, 267], [-1093, 261], [-1084, 267], [-1084, 262], [-1093, 268], [-1093, 261], [-1086, 264]]}, "center": {"207-258, T": [-1088, 262]}}, +{"id": 4393, "name": "Jacket from hotline miami", "description": "Jacket, also referred to in game files as Player or P, is the main protagonist and player character of Hotline Miami, and a side character in Hotline Miami 2: Wrong Number. He received this fan nickname because of his distinctive letterman jacket.Jacket, also referred to in game files as Player or P, is the main protagonist and player character of Hotline Miami, and a side character in Hotline Miami 2: Wrong Number. He received this fan nickname because of his distinctive letterman jacket.", "links": {"subreddit": ["HotlineMiami"], "discord": ["6gawWXyU"]}, "path": {"250-258, T": [[-301, -855], [-292, -855], [-292, -844], [-301, -844]]}, "center": {"250-258, T": [-296, -849]}}, {"id": 4394, "name": "Polish cow meme", "description": "A depiction of a cow from Polish cow meme. The original video consists a poorly animated dancing cow with the song \"Gdzie Jest Biały Węgorz? (Zejście)\" by Polish musician Cypis playing in the background. The song itself became a popular meme after some models of Taiwanese children's toy, a dancing cactus, were discovered to play the not-particularly-kid-friendly song instead of the \"intended\" one.", "links": {"website": ["https://www.youtube.com/watch?v=9hhMUT2U2L4"]}, "path": {"247": [[759, -84], [760, -84], [761, -87], [765, -88], [766, -84], [768, -83], [770, -88], [773, -90], [777, -86], [780, -85], [780, -87], [776, -92], [776, -98], [779, -98], [780, -102], [778, -103], [778, -104], [779, -104], [779, -107], [776, -107], [776, -106], [773, -106], [772, -108], [770, -106], [768, -106], [768, -104], [769, -103], [767, -103], [766, -102], [764, -102], [763, -101], [760, -101], [759, -99], [758, -98], [757, -97], [757, -93], [758, -93], [758, -84]]}, "center": {"247": [767, -95]}}, -{"id": 4395, "name": "Tony", "description": "Tony, also known as The Tiger, is a playable protagonist in Hotline Miami 2: Wrong Number. He is a member of The Fans, and is the second playable Fan that is unlocked upon completion of the level Down Under after Corey.\n\nFeaturing a bloody tiger mask, Tony wears a black t-shirt with tan body armor, knee pads, gray combat pants, and cowboy boots with spurs. His hands sport black gloves and spiked knuckles.", "links": {"subreddit": ["HotlineMiami"], "discord": ["6gawWXyU"]}, "path": {"250-258": [[-293, -864], [-287, -864], [-287, -856], [-293, -856]]}, "center": {"250-258": [-290, -860]}}, -{"id": 4396, "name": "Grand Mountain Adventure", "description": "A mountain gondola, similar to those found in ski resorts all over Switzerland.\nThis particular gondola is the (old) logo of Grand Mountain Adventure, an indie skiing game.\nThe game was developed by Toppluva, a small studio consisting of three brothers from Sweden.\n\nIn the game, the player can complete a variety of different challenges on (fictional) skiing resorts from all over the world.\n\nThe game is available on mobile as well as on Steam and the Nintendo Switch.\n\nThe artwork was designed and realized by Avel and the GMA Discord in collaboration with r/placech.", "links": {"website": ["https://www.toppluva.com/GrandMountainAdventure/"], "subreddit": ["grandmountainadv"], "discord": ["qRNvhv8WNg"]}, "path": {"186-258": [[-520, 806], [-518, 806], [-503, 798], [-510, 803], [-510, 808], [-506, 811], [-506, 816], [-510, 817], [-515, 818], [-518, 816], [-519, 811], [-515, 809], [-513, 808], [-513, 805]]}, "center": {"186-258": [-512, 813]}}, -{"id": 4397, "name": "Mini 2B and 9S", "description": "A pair of tiny heads of Unit 2B and 9S: main characters from the 2017 game NieR: Automata at its 2023 anime adaptation. After being relocated for half a dozen times, they finally escaped the cycle of life and death and found peace till the end of the canvas.", "links": {"website": ["https://nierautomata-anime.com/"], "subreddit": ["nier"]}, "path": {"38": [[205, -276], [215, -276], [215, -268], [205, -268]], "42": [[399, -4], [408, -3], [409, -4], [409, 4], [398, 4], [398, -4]], "184-236": [[-709, 713], [-687, 713], [-687, 725], [-709, 725]], "88-93": [[649, -298], [664, -298], [664, -288], [663, -289], [649, -288]], "57-60": [[714, -127], [724, -127], [724, -117], [713, -117], [713, -127]], "247-258": [[-1398, 30], [-1379, 30], [-1379, 45], [-1399, 45], [-1399, 31]]}, "center": {"38": [210, -272], "42": [403, 0], "184-236": [-698, 719], "88-93": [656, -293], "57-60": [719, -122], "247-258": [-1389, 38]}}, -{"id": 4399, "name": "Philippine Flag", "description": "One of the small Philippine flags scattered across the canvas, as r/Philippines did not participate in this year's r/place.", "links": {}, "path": {"208-258": [[-207, 824], [-207, 831], [-196, 831], [-196, 824]]}, "center": {"208-258": [-201, 828]}}, +{"id": 4395, "name": "Tony", "description": "Tony, also known as The Tiger, is a playable protagonist in Hotline Miami 2: Wrong Number. He is a member of The Fans, and is the second playable Fan that is unlocked upon completion of the level Down Under after Corey.\n\nFeaturing a bloody tiger mask, Tony wears a black t-shirt with tan body armor, knee pads, gray combat pants, and cowboy boots with spurs. His hands sport black gloves and spiked knuckles.", "links": {"subreddit": ["HotlineMiami"], "discord": ["6gawWXyU"]}, "path": {"250-258, T": [[-293, -864], [-287, -864], [-287, -856], [-293, -856]]}, "center": {"250-258, T": [-290, -860]}}, +{"id": 4396, "name": "Grand Mountain Adventure", "description": "A mountain gondola, similar to those found in ski resorts all over Switzerland.\nThis particular gondola is the (old) logo of Grand Mountain Adventure, an indie skiing game.\nThe game was developed by Toppluva, a small studio consisting of three brothers from Sweden.\n\nIn the game, the player can complete a variety of different challenges on (fictional) skiing resorts from all over the world.\n\nThe game is available on mobile as well as on Steam and the Nintendo Switch.\n\nThe artwork was designed and realized by Avel and the GMA Discord in collaboration with r/placech.", "links": {"website": ["https://www.toppluva.com/GrandMountainAdventure/"], "subreddit": ["grandmountainadv"], "discord": ["qRNvhv8WNg"]}, "path": {"186-258, T": [[-520, 806], [-518, 806], [-503, 798], [-510, 803], [-510, 808], [-506, 811], [-506, 816], [-510, 817], [-515, 818], [-518, 816], [-519, 811], [-515, 809], [-513, 808], [-513, 805]]}, "center": {"186-258, T": [-512, 813]}}, +{"id": 4397, "name": "Mini 2B and 9S", "description": "A pair of tiny heads of Unit 2B and 9S: main characters from the 2017 game NieR: Automata at its 2023 anime adaptation. After being relocated for half a dozen times, they finally escaped the cycle of life and death and found peace till the end of the canvas.", "links": {"website": ["https://nierautomata-anime.com/"], "subreddit": ["nier"]}, "path": {"38": [[205, -276], [215, -276], [215, -268], [205, -268]], "42": [[399, -4], [408, -3], [409, -4], [409, 4], [398, 4], [398, -4]], "184-236": [[-709, 713], [-687, 713], [-687, 725], [-709, 725]], "88-93": [[649, -298], [664, -298], [664, -288], [663, -289], [649, -288]], "57-60": [[714, -127], [724, -127], [724, -117], [713, -117], [713, -127]], "247-258, T": [[-1398, 30], [-1379, 30], [-1379, 45], [-1399, 45], [-1399, 31]]}, "center": {"38": [210, -272], "42": [403, 0], "184-236": [-698, 719], "88-93": [656, -293], "57-60": [719, -122], "247-258, T": [-1389, 38]}}, +{"id": 4399, "name": "Philippine Flag", "description": "One of the small Philippine flags scattered across the canvas, as r/Philippines did not participate in this year's r/place.", "links": {}, "path": {"208-258, T": [[-207, 824], [-207, 831], [-196, 831], [-196, 824]]}, "center": {"208-258, T": [-201, 828]}}, {"id": 4400, "name": "Red Velvet's Logo", "description": "Red Velvet is a 5-member k-pop group consisting of Irene, Seulgi, Wendy, Joy, and Yeri. This logo was made by members in the linked Red Velvet discord group in coordination with the k-pop place discord.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"43-54": [[97, -16], [97, -10], [104, -10], [104, -16]]}, "center": {"43-54": [101, -13]}}, -{"id": 4401, "name": "N7 Armor Stripe 1", "description": "Iconic stripe from Commander Shepard's armor in the game Mass Effect", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"181-259": [[-895, -1000], [-891, -1000], [-891, -966], [-895, -966]]}, "center": {"181-259": [-893, -983]}}, -{"id": 4402, "name": "Kx5", "description": "Kx5 is a collaborative project between Kaskade and Deadmau5", "links": {"website": ["https://kx5official.com/"]}, "path": {"93-107": [[-519, 74], [-543, 74], [-543, 89], [-535, 89], [-532, 92], [-526, 92], [-526, 89], [-519, 89]], "108-258": [[-541, 88], [-541, 75], [-538, 75], [-538, 78], [-535, 75], [-532, 75], [-532, 77], [-533, 79], [-532, 81], [-531, 79], [-529, 79], [-529, 75], [-520, 75], [-520, 78], [-521, 78], [-521, 80], [-520, 80], [-520, 86], [-521, 86], [-521, 87], [-522, 87], [-522, 88], [-528, 88], [-528, 91], [-531, 91], [-538, 83], [-538, 88]]}, "center": {"93-107": [-531, 82], "108-258": [-525, 83]}}, -{"id": 4403, "name": "Team Fortress 2", "description": "Team Fortress 2 is a 2007 multiplayer first-person shooter game developed and published by Valve Corporation.", "links": {"website": ["https://www.teamfortress.com/", "https://en.wikipedia.org/wiki/Team_Fortress_2"], "subreddit": ["tf2"], "discord": ["tf2"]}, "path": {"250-258": [[-613, 290], [-571, 290], [-571, 294], [-559, 294], [-559, 316], [-613, 316]]}, "center": {"250-258": [-586, 303]}}, -{"id": 4404, "name": "Badger from Mauerstrassenwetten", "description": "MauerStrassenWetten is the german version of Wallstreetbets, the name is a word for word translation and is shortened to MSW.\nThe text on the blackboard (Grün bei Schließung MSW) translates to \"green when/by closing MSW\"\n\nThis was a collaboration between mauerstrassenwetten und placeDe.", "links": {"subreddit": ["mauerstrassenwetten", "placeDE"]}, "path": {"199-258": [[-1313, -591], [-1316, -586], [-1319, -578], [-1321, -572], [-1321, -560], [-1319, -554], [-1325, -552], [-1325, -551], [-1290, -550], [-1292, -554], [-1296, -556], [-1295, -558], [-1295, -562], [-1298, -566], [-1299, -569], [-1296, -570], [-1295, -567], [-1294, -566], [-1284, -566], [-1291, -554], [-1290, -551], [-1288, -551], [-1280, -565], [-1268, -566], [-1260, -552], [-1258, -552], [-1258, -555], [-1264, -566], [-1254, -566], [-1252, -568], [-1252, -570], [-1253, -571], [-1253, -605], [-1256, -608], [-1292, -608], [-1296, -605], [-1296, -597], [-1297, -598], [-1301, -598], [-1302, -597], [-1307, -597], [-1308, -597], [-1310, -599], [-1314, -599], [-1315, -597], [-1316, -596], [-1316, -594], [-1315, -592], [-1314, -590], [-1314, -589]]}, "center": {"199-258": [-1275, -587]}}, -{"id": 4405, "name": "Mordovia", "description": "The Republic of Mordovia is a republic within Russia. Mordovia is drawn here with its flag as the background. As the actual location of Mordovia is out of the bounds of r/PlaceEU territory, Mordovia was drawn in the eastern Black Sea instead.", "links": {"website": ["https://en.wikipedia.org/wiki/Mordovia", "https://en.wikipedia.org/wiki/Flag_of_Mordovia"]}, "path": {"232-258": [[-165, 763], [-165, 765], [-169, 768], [-174, 768], [-174, 775], [-172, 779], [-169, 779], [-168, 780], [-167, 780], [-164, 777], [-154, 777], [-152, 775], [-152, 771], [-155, 767], [-156, 764], [-163, 764]]}, "center": {"232-258": [-162, 771]}}, -{"id": 4406, "name": "Omnisexual Flag", "description": "The flag of the omnisexual community who have attraction to people of all genders.", "links": {"subreddit": ["omnisexual"]}, "path": {"250-258": [[670, -967], [674, -967], [674, -960], [670, -960]]}, "center": {"250-258": [672, -963]}}, -{"id": 4407, "name": "Emu Otori", "description": "A character from the 2021 mobile rhythm game Project Sekai. She's a loud and energetic member of the theater troupe Wonderlands x Showtime and a first year student at Miyamasuzaka. Wonderhoy!", "links": {"subreddit": ["projectsekai", "ainbowroad"]}, "path": {"204-258": [[-1308, 522], [-1321, 522], [-1322, 523], [-1324, 523], [-1324, 524], [-1325, 525], [-1326, 526], [-1327, 526], [-1327, 528], [-1328, 528], [-1328, 529], [-1328, 530], [-1327, 530], [-1327, 537], [-1325, 537], [-1325, 536], [-1323, 536], [-1321, 537], [-1323, 538], [-1323, 539], [-1324, 540], [-1324, 543], [-1323, 543], [-1323, 546], [-1322, 546], [-1322, 548], [-1323, 548], [-1323, 550], [-1311, 551], [-1312, 550], [-1312, 548], [-1313, 548], [-1313, 546], [-1312, 546], [-1312, 545], [-1310, 545], [-1310, 544], [-1310, 543], [-1309, 542], [-1309, 541], [-1310, 540], [-1312, 539], [-1312, 536], [-1310, 536], [-1309, 537], [-1308, 538]]}, "center": {"204-258": [-1317, 530]}}, -{"id": 4408, "name": "Ender-beer (Enderman #13)", "description": "The 13th iteration of u/EnderSmite's enderman, except this time it took the form of beer.", "links": {"discord": ["PnnmsdX2hT"]}, "path": {"250-258": [[-9, -1000], [-9, -997], [-2, -997], [-2, -1000]]}, "center": {"250-258": [-5, -998]}}, +{"id": 4401, "name": "N7 Armor Stripe 1", "description": "Iconic stripe from Commander Shepard's armor in the game Mass Effect", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"181-259, T": [[-895, -1000], [-891, -1000], [-891, -966], [-895, -966]]}, "center": {"181-259, T": [-893, -983]}}, +{"id": 4402, "name": "Kx5", "description": "Kx5 is a collaborative project between Kaskade and Deadmau5", "links": {"website": ["https://kx5official.com/"]}, "path": {"93-107": [[-519, 74], [-543, 74], [-543, 89], [-535, 89], [-532, 92], [-526, 92], [-526, 89], [-519, 89]], "108-258, T": [[-541, 88], [-541, 75], [-538, 75], [-538, 78], [-535, 75], [-532, 75], [-532, 77], [-533, 79], [-532, 81], [-531, 79], [-529, 79], [-529, 75], [-520, 75], [-520, 78], [-521, 78], [-521, 80], [-520, 80], [-520, 86], [-521, 86], [-521, 87], [-522, 87], [-522, 88], [-528, 88], [-528, 91], [-531, 91], [-538, 83], [-538, 88]]}, "center": {"93-107": [-531, 82], "108-258, T": [-525, 83]}}, +{"id": 4403, "name": "Team Fortress 2", "description": "Team Fortress 2 is a 2007 multiplayer first-person shooter game developed and published by Valve Corporation.", "links": {"website": ["https://www.teamfortress.com/", "https://en.wikipedia.org/wiki/Team_Fortress_2"], "subreddit": ["tf2"], "discord": ["tf2"]}, "path": {"250-258, T": [[-613, 290], [-571, 290], [-571, 294], [-559, 294], [-559, 316], [-613, 316]]}, "center": {"250-258, T": [-586, 303]}}, +{"id": 4404, "name": "Badger from Mauerstrassenwetten", "description": "MauerStrassenWetten is the german version of Wallstreetbets, the name is a word for word translation and is shortened to MSW.\nThe text on the blackboard (Grün bei Schließung MSW) translates to \"green when/by closing MSW\"\n\nThis was a collaboration between mauerstrassenwetten und placeDe.", "links": {"subreddit": ["mauerstrassenwetten", "placeDE"]}, "path": {"199-258, T": [[-1313, -591], [-1316, -586], [-1319, -578], [-1321, -572], [-1321, -560], [-1319, -554], [-1325, -552], [-1325, -551], [-1290, -550], [-1292, -554], [-1296, -556], [-1295, -558], [-1295, -562], [-1298, -566], [-1299, -569], [-1296, -570], [-1295, -567], [-1294, -566], [-1284, -566], [-1291, -554], [-1290, -551], [-1288, -551], [-1280, -565], [-1268, -566], [-1260, -552], [-1258, -552], [-1258, -555], [-1264, -566], [-1254, -566], [-1252, -568], [-1252, -570], [-1253, -571], [-1253, -605], [-1256, -608], [-1292, -608], [-1296, -605], [-1296, -597], [-1297, -598], [-1301, -598], [-1302, -597], [-1307, -597], [-1308, -597], [-1310, -599], [-1314, -599], [-1315, -597], [-1316, -596], [-1316, -594], [-1315, -592], [-1314, -590], [-1314, -589]]}, "center": {"199-258, T": [-1275, -587]}}, +{"id": 4405, "name": "Mordovia", "description": "The Republic of Mordovia is a republic within Russia. Mordovia is drawn here with its flag as the background. As the actual location of Mordovia is out of the bounds of r/PlaceEU territory, Mordovia was drawn in the eastern Black Sea instead.", "links": {"website": ["https://en.wikipedia.org/wiki/Mordovia", "https://en.wikipedia.org/wiki/Flag_of_Mordovia"]}, "path": {"232-258, T": [[-165, 763], [-165, 765], [-169, 768], [-174, 768], [-174, 775], [-172, 779], [-169, 779], [-168, 780], [-167, 780], [-164, 777], [-154, 777], [-152, 775], [-152, 771], [-155, 767], [-156, 764], [-163, 764]]}, "center": {"232-258, T": [-162, 771]}}, +{"id": 4406, "name": "Omnisexual Flag", "description": "The flag of the omnisexual community who have attraction to people of all genders.", "links": {"subreddit": ["omnisexual"]}, "path": {"250-258, T": [[670, -967], [674, -967], [674, -960], [670, -960]]}, "center": {"250-258, T": [672, -963]}}, +{"id": 4407, "name": "Emu Otori", "description": "A character from the 2021 mobile rhythm game Project Sekai. She's a loud and energetic member of the theater troupe Wonderlands x Showtime and a first year student at Miyamasuzaka. Wonderhoy!", "links": {"subreddit": ["projectsekai", "ainbowroad"]}, "path": {"204-258, T": [[-1308, 522], [-1321, 522], [-1322, 523], [-1324, 523], [-1324, 524], [-1325, 525], [-1326, 526], [-1327, 526], [-1327, 528], [-1328, 528], [-1328, 529], [-1328, 530], [-1327, 530], [-1327, 537], [-1325, 537], [-1325, 536], [-1323, 536], [-1321, 537], [-1323, 538], [-1323, 539], [-1324, 540], [-1324, 543], [-1323, 543], [-1323, 546], [-1322, 546], [-1322, 548], [-1323, 548], [-1323, 550], [-1311, 551], [-1312, 550], [-1312, 548], [-1313, 548], [-1313, 546], [-1312, 546], [-1312, 545], [-1310, 545], [-1310, 544], [-1310, 543], [-1309, 542], [-1309, 541], [-1310, 540], [-1312, 539], [-1312, 536], [-1310, 536], [-1309, 537], [-1308, 538]]}, "center": {"204-258, T": [-1317, 530]}}, +{"id": 4408, "name": "Ender-beer (Enderman #13)", "description": "The 13th iteration of u/EnderSmite's enderman, except this time it took the form of beer.", "links": {"discord": ["PnnmsdX2hT"]}, "path": {"250-258, T": [[-9, -1000], [-9, -997], [-2, -997], [-2, -1000]]}, "center": {"250-258, T": [-5, -998]}}, {"id": 4409, "name": "Flag of Thailand", "description": "Flag of Thailand, officially known as the Kingdom of Thailand, a country in south-east Asia bordering Myanmar, Laos, Cambodia, and Malaysia.\n\nBottom left coordinates of the flag (24, 75) signifies the Siamese revolution of 1932 (B.E. 2475) changing Siam (today's Thailand) into a democratic country.\n\nThe flag featured text in Thai, \n - translated to \"Fuck the Senate\" - and three vertical lines.\n\nThe three vertical lines, resembling three-finger salute - as well as the text mentioned above - are to protest current events in Thai politics.", "links": {"website": ["https://en.wikipedia.org/wiki/Thailand"], "subreddit": ["thaithai", "thailand"], "discord": ["d2JbbbJWes"]}, "path": {"3-5": [[24, 75], [48, 75], [48, 57], [24, 57]], "6-14": [[20, 76], [72, 76], [71, 72], [68, 72], [68, 56], [25, 56], [25, 67], [20, 67]]}, "center": {"3-5": [36, 66], "6-14": [46, 66]}}, -{"id": 4410, "name": "Spez EXPLOSION !!!", "description": "\"Macron Explosion\" is a popular french meme, referencing a famous video from October 2020 portraying a woman hysterically screaming during the Yellow Vests protests\n\n\"Macron DESTITUTION !! Macron DECAPITATION !! Macron ... *stop to think* putain ... EXPLOSION !!!\"\n\nIt quickly changed to \"Spez Explosion !!!\" in protest to the changes Reddit made to its API.", "links": {"website": ["https://youtu.be/BO-pNmfojao"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"220-258": [[1046, -210], [1046, -203], [1125, -203], [1125, -210]]}, "center": {"220-258": [1086, -206]}}, -{"id": 4411, "name": "Philippine Flag", "description": "Philippines is a country in Southeast Asia. Known for its food, islands, beaches, Constant raining and hot days, diverse cultures, 3 major islands.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines"]}, "path": {"250-258": [[1453, 737], [1453, 739], [1452, 740], [1452, 743], [1452, 744], [1456, 744], [1456, 745], [1454, 745], [1454, 746], [1453, 747], [1452, 747], [1452, 749], [1452, 750], [1451, 750], [1451, 757], [1451, 758], [1452, 758], [1452, 760], [1451, 760], [1451, 761], [1451, 762], [1452, 762], [1453, 762], [1453, 761], [1454, 762], [1454, 763], [1455, 763], [1456, 763], [1456, 780], [1399, 780], [1399, 736]]}, "center": {"250-258": [1426, 758]}}, -{"id": 4412, "name": "Incomplete Flag of Britanny", "description": "Since the inception of this location under the canvas, a millennium-old war for the ownership of \"Mont Saint Michel\" has persisted on r/place between Brittany and Normandy.\n\nConstruction of the Mont began around the year 708. Its allegiance fluctuated for over 200 years between the Normans and Bretons, but in 933, William the First of Normandy secured it in a pledge to the king, he acquired the \"Avranchin\" and \"Cotentin\" counties, and the mont within it has been since considered Norman land.\n\nHowever, the Bretons are still salty about it and attempt to overcompensate by insisting that it is still theirs. They don't miss an opportunity to spread propaganda about it, and r/place is no exception.\n\nAs you can see, the flag is still not fully completed since some Normans are here to fight for it too.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Brittany"]}, "path": {"250-258": [[-463, 486], [-463, 484], [-472, 484], [-472, 486]]}, "center": {"250-258": [-467, 485]}}, -{"id": 4413, "name": "Blokkat Harvesters Flag", "description": "The flag of the Blokkat Harvesters, a galaxy-devouring K4 civilization serving as the final crisis of the Gigastructural Engineering & More mod for Stellaris. Consisting of septillions of geometrical cat-like entities made out of smart matter, they seek to amalgamate the entirety of the universe into a singular structure, the Blokkonstrukt, in order to halt the Heath Death of the universe. In the mod, the player must fight against and repel a Blokkat-Vester, the main vessel utilized by the Blokkats when harvesting the energy of galaxies to build the Blokkonstrukt.", "links": {"website": ["http://gigastructural-engineering-lore.wikidot.com/wiki:blokkat-harvesters"], "discord": ["xUrG9wh"]}, "path": {"250-258": [[-328, -833], [-314, -833], [-314, -819], [-328, -819], [-328, -832]]}, "center": {"250-258": [-321, -826]}}, -{"id": 4414, "name": "Spectre symbol from Mass Effect", "description": "The symbol representing the Special Tactics and Reconnaissance operatives of the Citadel Council. Commander Shepard becomes the first Human Spectre in the game Mass Effect 1.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"178-193": [[-890, -1000], [-860, -1000], [-860, -967], [-890, -967]], "199-259": [[-942, -1000], [-912, -1000], [-912, -967], [-942, -967]]}, "center": {"178-193": [-875, -983], "199-259": [-927, -983]}}, -{"id": 4415, "name": "Curt Boettcher", "description": "Sixties American sunshine pop musician and producer most notable for work with The Association, Sagittarius, and The Millennium.", "links": {"website": ["https://en.wikipedia.org/wiki/Curt_Boettcher"], "subreddit": ["CurtBoettcher"]}, "path": {"249-258": [[-1222, 181], [-1226, 181], [-1226, 188], [-1222, 190], [-1217, 186]]}, "center": {"249-258": [-1222, 186]}}, -{"id": 4416, "name": "OpenSoldat", "description": "OpenSoldat is a unique 2D multiplayer action game now Open Source and Community Driven", "links": {"website": ["https://github.com/opensoldat"], "subreddit": ["opensoldat"], "discord": ["AnySx84"]}, "path": {"190-258": [[-1215, -629], [-1215, -622], [-1209, -622], [-1209, -629]]}, "center": {"190-258": [-1212, -625]}}, -{"id": 4417, "name": "Samson & Gert", "description": "Samson & Gert is a popular and loved Flemish children's television series in Belgium. \nThe series revolve around a talking dog Samson and his owner Gert who live in a town where a lot of chaotic and funny situations take place.\n\nThey also made a lot of children's songs", "links": {}, "path": {"166-258": [[837, 515], [827, 522], [822, 534], [826, 556], [836, 561], [847, 561], [861, 555], [867, 544], [869, 533], [871, 520], [867, 512], [858, 514], [846, 514], [840, 514], [829, 520]]}, "center": {"166-258": [846, 537]}}, +{"id": 4410, "name": "Spez EXPLOSION !!!", "description": "\"Macron Explosion\" is a popular french meme, referencing a famous video from October 2020 portraying a woman hysterically screaming during the Yellow Vests protests\n\n\"Macron DESTITUTION !! Macron DECAPITATION !! Macron ... *stop to think* putain ... EXPLOSION !!!\"\n\nIt quickly changed to \"Spez Explosion !!!\" in protest to the changes Reddit made to its API.", "links": {"website": ["https://youtu.be/BO-pNmfojao"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"220-258, T": [[1046, -210], [1046, -203], [1125, -203], [1125, -210]]}, "center": {"220-258, T": [1086, -206]}}, +{"id": 4411, "name": "Philippine Flag", "description": "Philippines is a country in Southeast Asia. Known for its food, islands, beaches, Constant raining and hot days, diverse cultures, 3 major islands.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines"]}, "path": {"250-258, T": [[1453, 737], [1453, 739], [1452, 740], [1452, 743], [1452, 744], [1456, 744], [1456, 745], [1454, 745], [1454, 746], [1453, 747], [1452, 747], [1452, 749], [1452, 750], [1451, 750], [1451, 757], [1451, 758], [1452, 758], [1452, 760], [1451, 760], [1451, 761], [1451, 762], [1452, 762], [1453, 762], [1453, 761], [1454, 762], [1454, 763], [1455, 763], [1456, 763], [1456, 780], [1399, 780], [1399, 736]]}, "center": {"250-258, T": [1426, 758]}}, +{"id": 4412, "name": "Incomplete Flag of Britanny", "description": "Since the inception of this location under the canvas, a millennium-old war for the ownership of \"Mont Saint Michel\" has persisted on r/place between Brittany and Normandy.\n\nConstruction of the Mont began around the year 708. Its allegiance fluctuated for over 200 years between the Normans and Bretons, but in 933, William the First of Normandy secured it in a pledge to the king, he acquired the \"Avranchin\" and \"Cotentin\" counties, and the mont within it has been since considered Norman land.\n\nHowever, the Bretons are still salty about it and attempt to overcompensate by insisting that it is still theirs. They don't miss an opportunity to spread propaganda about it, and r/place is no exception.\n\nAs you can see, the flag is still not fully completed since some Normans are here to fight for it too.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Brittany"]}, "path": {"250-258, T": [[-463, 486], [-463, 484], [-472, 484], [-472, 486]]}, "center": {"250-258, T": [-467, 485]}}, +{"id": 4413, "name": "Blokkat Harvesters Flag", "description": "The flag of the Blokkat Harvesters, a galaxy-devouring K4 civilization serving as the final crisis of the Gigastructural Engineering & More mod for Stellaris. Consisting of septillions of geometrical cat-like entities made out of smart matter, they seek to amalgamate the entirety of the universe into a singular structure, the Blokkonstrukt, in order to halt the Heath Death of the universe. In the mod, the player must fight against and repel a Blokkat-Vester, the main vessel utilized by the Blokkats when harvesting the energy of galaxies to build the Blokkonstrukt.", "links": {"website": ["http://gigastructural-engineering-lore.wikidot.com/wiki:blokkat-harvesters"], "discord": ["xUrG9wh"]}, "path": {"250-258, T": [[-328, -833], [-314, -833], [-314, -819], [-328, -819], [-328, -832]]}, "center": {"250-258, T": [-321, -826]}}, +{"id": 4414, "name": "Spectre symbol from Mass Effect", "description": "The symbol representing the Special Tactics and Reconnaissance operatives of the Citadel Council. Commander Shepard becomes the first Human Spectre in the game Mass Effect 1.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"178-193": [[-890, -1000], [-860, -1000], [-860, -967], [-890, -967]], "199-259, T": [[-942, -1000], [-912, -1000], [-912, -967], [-942, -967]]}, "center": {"178-193": [-875, -983], "199-259, T": [-927, -983]}}, +{"id": 4415, "name": "Curt Boettcher", "description": "Sixties American sunshine pop musician and producer most notable for work with The Association, Sagittarius, and The Millennium.", "links": {"website": ["https://en.wikipedia.org/wiki/Curt_Boettcher"], "subreddit": ["CurtBoettcher"]}, "path": {"249-258, T": [[-1222, 181], [-1226, 181], [-1226, 188], [-1222, 190], [-1217, 186]]}, "center": {"249-258, T": [-1222, 186]}}, +{"id": 4416, "name": "OpenSoldat", "description": "OpenSoldat is a unique 2D multiplayer action game now Open Source and Community Driven", "links": {"website": ["https://github.com/opensoldat"], "subreddit": ["opensoldat"], "discord": ["AnySx84"]}, "path": {"190-258, T": [[-1215, -629], [-1215, -622], [-1209, -622], [-1209, -629]]}, "center": {"190-258, T": [-1212, -625]}}, +{"id": 4417, "name": "Samson & Gert", "description": "Samson & Gert is a popular and loved Flemish children's television series in Belgium. \nThe series revolve around a talking dog Samson and his owner Gert who live in a town where a lot of chaotic and funny situations take place.\n\nThey also made a lot of children's songs", "links": {}, "path": {"166-258, T": [[837, 515], [827, 522], [822, 534], [826, 556], [836, 561], [847, 561], [861, 555], [867, 544], [869, 533], [871, 520], [867, 512], [858, 514], [846, 514], [840, 514], [829, 520]]}, "center": {"166-258, T": [846, 537]}}, {"id": 4418, "name": "Flag of Sweden", "description": "Sweden is a country in Northern Europe.\n\nIt is unclear whether r/sweden or any other r/place_nordicunion member approved of this expansion since it was created by a Swedish streamer named CyrusTwo.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden", "https://en.wikipedia.org/wiki/Flag_of_Sweden"]}, "path": {"149": [[-690, 481], [-654, 481], [-654, 500], [-690, 500]], "150": [[-690, 462], [-654, 462], [-654, 500], [-690, 500]], "165": [[-693, 446], [-671, 446], [-671, 452], [-654, 452], [-654, 498], [-690, 498], [-690, 481], [-710, 481], [-710, 463], [-693, 463]], "169": [[-693, 446], [-661, 446], [-661, 452], [-654, 452], [-654, 498], [-690, 498], [-690, 479], [-707, 479], [-707, 463], [-693, 463]], "173": [[-676, 446], [-661, 446], [-661, 452], [-654, 452], [-654, 498], [-690, 498], [-690, 479], [-693, 479], [-693, 464], [-676, 464]], "174": [[-693, 464], [-669, 464], [-669, 454], [-661, 454], [-661, 452], [-654, 452], [-654, 492], [-660, 492], [-660, 498], [-690, 498], [-690, 479], [-693, 479]], "151-153": [[-690, 446], [-654, 446], [-654, 500], [-690, 500]], "154-155": [[-690, 446], [-654, 446], [-654, 500], [-690, 500], [-690, 481], [-710, 481], [-710, 462], [-690, 462]], "156-164": [[-710, 446], [-654, 446], [-654, 616], [-709, 616], [-709, 500], [-690, 500], [-690, 481], [-710, 481]], "166-168": [[-693, 446], [-671, 446], [-671, 452], [-654, 452], [-654, 498], [-690, 498], [-690, 479], [-710, 479], [-710, 463], [-693, 463]], "170-172": [[-693, 446], [-661, 446], [-661, 452], [-654, 452], [-654, 498], [-690, 498], [-690, 479], [-707, 479], [-707, 464], [-693, 464]], "175-180": [[-693, 464], [-654, 464], [-654, 492], [-660, 492], [-660, 498], [-690, 498], [-690, 479], [-693, 479]]}, "center": {"149": [-672, 491], "150": [-672, 481], "165": [-674, 471], "169": [-674, 468], "173": [-671, 480], "174": [-673, 481], "151-153": [-672, 473], "154-155": [-673, 472], "156-164": [-681, 588], "166-168": [-673, 471], "170-172": [-674, 468], "175-180": [-673, 481]}}, -{"id": 4419, "name": "The SCP Foundation", "description": "The logo for the Special Containment Procedures Foundation, a fictional organization that investigates, captures, and contains paranormal phenomena.", "links": {"website": ["https://the-scp.foundation/"], "subreddit": ["SCP"], "discord": ["scpsl"]}, "path": {"231-258": [[-1500, 12], [-1484, 12], [-1484, 22], [-1500, 22]]}, "center": {"231-258": [-1492, 17]}}, -{"id": 4420, "name": "Rise of Nations [Roblox]", "description": "A Roblox game about conquering the world. Orchestrated by the Discord server, an attempt to construct a mural was made in the final hours, however by the end only a portion of the outline had been completed.", "links": {"website": ["https://www.roblox.com/games/2569453732/Rise-of-Nations"], "subreddit": ["riseofnationsroblox"], "discord": ["YAy9Gdk"]}, "path": {"240-258": [[7, 994], [-3, 994], [-8, 988], [-8, 986], [10, 989], [9, 992]]}, "center": {"240-258": [-1, 991]}}, -{"id": 4421, "name": "Map of Italy", "description": "Map of the italian peninsula made with the colors of the flag.", "links": {"subreddit": ["italy"], "discord": ["yvfHmyVUs2"]}, "path": {"141-258": [[-655, 31], [-645, 28], [-633, 28], [-632, 29], [-632, 35], [-636, 35], [-638, 37], [-638, 39], [-633, 43], [-628, 49], [-625, 49], [-624, 52], [-620, 55], [-620, 58], [-621, 59], [-623, 59], [-623, 57], [-626, 55], [-628, 55], [-628, 61], [-630, 64], [-633, 64], [-636, 67], [-636, 69], [-638, 71], [-640, 71], [-643, 69], [-647, 66], [-647, 63], [-643, 63], [-642, 64], [-637, 64], [-636, 63], [-632, 63], [-632, 59], [-631, 58], [-632, 56], [-635, 53], [-639, 48], [-643, 46], [-646, 43], [-647, 40], [-650, 40], [-651, 43], [-650, 46], [-647, 49], [-647, 51], [-648, 52], [-648, 57], [-650, 59], [-652, 59], [-654, 57], [-654, 55], [-653, 55], [-653, 51], [-655, 50], [-655, 48], [-652, 48], [-650, 46], [-652, 43], [-655, 40], [-656, 37], [-657, 34]]}, "center": {"141-258": [-644, 35]}}, -{"id": 4422, "name": "BrazilBall", "description": "Representation of brazil in the countryballs universe", "links": {}, "path": {"184-258": [[-747, -623], [-740, -623], [-735, -625], [-732, -630], [-731, -637], [-734, -642], [-739, -645], [-747, -646], [-752, -643], [-755, -638], [-756, -630], [-752, -625]]}, "center": {"184-258": [-744, -634]}}, +{"id": 4419, "name": "The SCP Foundation", "description": "The logo for the Special Containment Procedures Foundation, a fictional organization that investigates, captures, and contains paranormal phenomena.", "links": {"website": ["https://the-scp.foundation/"], "subreddit": ["SCP"], "discord": ["scpsl"]}, "path": {"231-258, T": [[-1500, 12], [-1484, 12], [-1484, 22], [-1500, 22]]}, "center": {"231-258, T": [-1492, 17]}}, +{"id": 4420, "name": "Rise of Nations [Roblox]", "description": "A Roblox game about conquering the world. Orchestrated by the Discord server, an attempt to construct a mural was made in the final hours, however by the end only a portion of the outline had been completed.", "links": {"website": ["https://www.roblox.com/games/2569453732/Rise-of-Nations"], "subreddit": ["riseofnationsroblox"], "discord": ["YAy9Gdk"]}, "path": {"240-258, T": [[7, 994], [-3, 994], [-8, 988], [-8, 986], [10, 989], [9, 992]]}, "center": {"240-258, T": [-1, 991]}}, +{"id": 4421, "name": "Map of Italy", "description": "Map of the italian peninsula made with the colors of the flag.", "links": {"subreddit": ["italy"], "discord": ["yvfHmyVUs2"]}, "path": {"141-258, T": [[-655, 31], [-645, 28], [-633, 28], [-632, 29], [-632, 35], [-636, 35], [-638, 37], [-638, 39], [-633, 43], [-628, 49], [-625, 49], [-624, 52], [-620, 55], [-620, 58], [-621, 59], [-623, 59], [-623, 57], [-626, 55], [-628, 55], [-628, 61], [-630, 64], [-633, 64], [-636, 67], [-636, 69], [-638, 71], [-640, 71], [-643, 69], [-647, 66], [-647, 63], [-643, 63], [-642, 64], [-637, 64], [-636, 63], [-632, 63], [-632, 59], [-631, 58], [-632, 56], [-635, 53], [-639, 48], [-643, 46], [-646, 43], [-647, 40], [-650, 40], [-651, 43], [-650, 46], [-647, 49], [-647, 51], [-648, 52], [-648, 57], [-650, 59], [-652, 59], [-654, 57], [-654, 55], [-653, 55], [-653, 51], [-655, 50], [-655, 48], [-652, 48], [-650, 46], [-652, 43], [-655, 40], [-656, 37], [-657, 34]]}, "center": {"141-258, T": [-644, 35]}}, +{"id": 4422, "name": "BrazilBall", "description": "Representation of brazil in the countryballs universe", "links": {}, "path": {"184-258, T": [[-747, -623], [-740, -623], [-735, -625], [-732, -630], [-731, -637], [-734, -642], [-739, -645], [-747, -646], [-752, -643], [-755, -638], [-756, -630], [-752, -625]]}, "center": {"184-258, T": [-744, -634]}}, {"id": 4423, "name": ".Rapid8", "description": "The logo of a small German gaming clan called .Rapid8", "links": {"website": ["https://rapid8.de/"]}, "path": {"159": [[-650, 965], [-644, 965], [-642, 966], [-641, 967], [-640, 969], [-640, 975], [-641, 977], [-643, 978], [-644, 979], [-650, 979], [-652, 978], [-653, 977], [-654, 975], [-654, 969], [-653, 967], [-652, 966]]}, "center": {"159": [-647, 972]}}, {"id": 4424, "name": "SOREI BALLS 😭", "description": "On the fourth day of the canvas, during a particularly long and gruelling battle against Bratishkinoff to maintain Genshin's art on the canvas, the United Gacha Alliance started inexplicably rallying around the battle cry of \"SOREI BALLS\", in reference to one of the alliance's leaders (it makes just as much sense in context). This would then spread into the communities of Yashiro Miuna and Genshin, and, after repelling the raid, the UGA briefly fought to put the battle cry on the canvas, enraging and frustrating a very confused Swarm. After taking screenshots they would leave it to be consumed by the Void once and for all, leaving it as hardly a blip on the radar in most timelapses.", "links": {"subreddit": ["gachagaming"], "discord": ["unitedgacha", "BHeuKQaG", "sumeru"]}, "path": {"222": [[1247, 223], [1264, 223], [1264, 221], [1272, 221], [1272, 215], [1271, 214], [1264, 214], [1264, 213], [1247, 213]]}, "center": {"222": [1260, 218]}}, -{"id": 4425, "name": "Shirakami Fubuki's corn", "description": "Shirakami Fubuki is a virtual YouTuber and fox associated with Hololive as part of 1st Gen and hololive GAMERS. Corn is her oshi mark, due to the Japanese onomatopoeia for foxes, \"kon,\" sounding like \"corn.\"", "links": {"website": ["https://www.youtube.com/channel/UCdn5BQ06XqgXoAxIhbqw5Rg", "https://hololive.hololivepro.com/en/talents/shirakami-fubuki/", "https://virtualyoutuber.fandom.com/wiki/Shirakami_Fubuki", "https://hololivevtuber.fandom.com/wiki/Shirakami_Fubuki", "https://hololivevtuber.fandom.com/wiki/Shirakami_Fubuki"], "subreddit": ["Hololive", "ShirakamiFubuki"], "discord": ["25XPZBmDHs"]}, "path": {"250-258": [[-560, -287], [-561, -288], [-561, -294], [-560, -295], [-559, -294], [-559, -288]]}, "center": {"250-258": [-560, -291]}}, -{"id": 4426, "name": "Lixa / Bear", "description": "Artwork maintained by mainly 4 people.\nu/G4ndur\nu/4llster\nAllies with Epic Pawl (Artwork above)", "links": {}, "path": {"250-258": [[102, 998], [102, 985], [113, 985], [116, 988], [119, 985], [133, 985], [133, 998]]}, "center": {"250-258": [109, 992]}}, -{"id": 4427, "name": "XO; The Weeknd", "description": "XO is the record label of the Canadian R&B singer The Weeknd.", "links": {"subreddit": ["TheWeeknd"], "discord": ["theweeknd"]}, "path": {"99-259": [[-531, -222], [-530, -222], [-501, -222], [-502, -204], [-531, -204], [-531, -218], [-531, -221], [-531, -224], [-502, -224], [-501, -220]]}, "center": {"99-259": [-522, -213]}}, +{"id": 4425, "name": "Shirakami Fubuki's corn", "description": "Shirakami Fubuki is a virtual YouTuber and fox associated with Hololive as part of 1st Gen and hololive GAMERS. Corn is her oshi mark, due to the Japanese onomatopoeia for foxes, \"kon,\" sounding like \"corn.\"", "links": {"website": ["https://www.youtube.com/channel/UCdn5BQ06XqgXoAxIhbqw5Rg", "https://hololive.hololivepro.com/en/talents/shirakami-fubuki/", "https://virtualyoutuber.fandom.com/wiki/Shirakami_Fubuki", "https://hololivevtuber.fandom.com/wiki/Shirakami_Fubuki", "https://hololivevtuber.fandom.com/wiki/Shirakami_Fubuki"], "subreddit": ["Hololive", "ShirakamiFubuki"], "discord": ["25XPZBmDHs"]}, "path": {"250-258, T": [[-560, -287], [-561, -288], [-561, -294], [-560, -295], [-559, -294], [-559, -288]]}, "center": {"250-258, T": [-560, -291]}}, +{"id": 4426, "name": "Lixa / Bear", "description": "Artwork maintained by mainly 4 people.\nu/G4ndur\nu/4llster\nAllies with Epic Pawl (Artwork above)", "links": {}, "path": {"250-258, T": [[102, 998], [102, 985], [113, 985], [116, 988], [119, 985], [133, 985], [133, 998]]}, "center": {"250-258, T": [109, 992]}}, +{"id": 4427, "name": "XO; The Weeknd", "description": "XO is the record label of the Canadian R&B singer The Weeknd.", "links": {"subreddit": ["TheWeeknd"], "discord": ["theweeknd"]}, "path": {"99-259, T": [[-531, -222], [-530, -222], [-501, -222], [-502, -204], [-531, -204], [-531, -218], [-531, -221], [-531, -224], [-502, -224], [-501, -220]]}, "center": {"99-259, T": [-522, -213]}}, {"id": 4428, "name": "Red Velvet's 'R to V' Logo, Ver 2", "description": "Red Velvet is a 5-member k-pop group consisting of Irene, Seulgi, Wendy, Joy, and Yeri.\n\nThis logo is from their 4th concert tour, 'R to V', and relocated from it's original location underneath the Flag of Finland. The art was made and coordinated by members in the linked Red Velvet discord group.\n\nUnfortunately, it was wiped away by the Vietnam Mixi Gaming Expansion", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"215-230": [[1258, 477], [1241, 477], [1241, 496], [1258, 496]]}, "center": {"215-230": [1250, 487]}}, {"id": 4429, "name": "Flag of France", "description": "France is a country in Western Europe.\n\nThis flag was created on the remains of another French Flag which was previously taken over.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"151-152": [[-1000, 87], [-902, 88], [-913, 421], [-1000, 423]], "153-165": [[-999, 277], [-903, 277], [-909, 421], [-1000, 420], [-1001, 420]]}, "center": {"151-152": [-952, 137], "153-165": [-952, 325]}}, -{"id": 4430, "name": "1PAIS's Villager", "description": "This villager represents the icon of 1PAIS, an Argentinian Discord server of friends composed of toposqui, putindeer, Manchitacat, DrunkenStinkin, DarkTiger330, Zyrovich and BunnyOwO.", "links": {}, "path": {"241-258": [[-1461, -267], [-1461, -260], [-1454, -260], [-1454, -267]]}, "center": {"241-258": [-1457, -263]}}, -{"id": 4431, "name": "Stade Malherbe Caen", "description": "Zone built by fans of the Stade Malherbe Caen (SMC) and their famous ultras MNK96. SMC is also home of the famous WeAreMalherbe team highly active in the social network (Twitter etc)", "links": {"website": ["https://fr.wikipedia.org/wiki/Stade_Malherbe_Caen"]}, "path": {"163-258": [[-501, 90], [-501, 106], [-455, 105], [-455, 90]]}, "center": {"163-258": [-485, 98]}}, -{"id": 4432, "name": "Super Animal Royale", "description": "A top-down battle royale game created by Pixile Studios that feature cute animals as playable characters. \n\nPictured is the skullcat, the breed of the first ever successful super animal.", "links": {"website": ["https://animalroyale.com/"], "subreddit": ["animalroyale"], "discord": ["animalroyale"]}, "path": {"133-153": [[-456, 345], [-456, 362], [-441, 362], [-441, 345]], "155-258": [[-411, 347], [-411, 365], [-393, 365], [-393, 347]]}, "center": {"133-153": [-448, 354], "155-258": [-402, 356]}}, -{"id": 4433, "name": "Deportivo Cali", "description": "Asociación Deportivo Cali, also known as Deportivo Cali, is a Colombian sports club based in Cali, best known for its football team which currently competes in Colombia's premier football tournament, Categora Primera A.", "links": {"website": ["https://en.wikipedia.org/wiki/Deportivo_Cali", "https://deportivocali.com.co/"]}, "path": {"250-258": [[-1292, 878], [-1273, 878], [-1274, 891], [-1276, 896], [-1279, 898], [-1282, 899], [-1284, 899], [-1287, 898], [-1292, 895]]}, "center": {"250-258": [-1283, 888]}}, -{"id": 4434, "name": "small white Pikmin", "description": "Its a withe Pikmin, they are immunity to poison.", "links": {"subreddit": ["Pikmin"]}, "path": {"250-258": [[1478, 395], [1482, 395], [1482, 388], [1479, 389]]}, "center": {"250-258": [1480, 392]}}, -{"id": 4435, "name": "Circle-A", "description": "A symbol representing anarchism. Started by u/eibhlinrose, a member of r/transplace", "links": {"subreddit": ["transplace"]}, "path": {"250-258": [[1209, 32], [1212, 19], [1227, 18], [1226, 33], [1223, 33], [1218, 33]]}, "center": {"250-258": [1219, 26]}}, -{"id": 4436, "name": "Ecoles Normales Supérieures (ENS ou Normale Sup')", "description": "Group of French \"Grandes Ecoles\" (called ENS) uniting the 4 ENS : ENS Ulm, ENS Paris-Saclay, ENS Lyon & ENS Rennes\n\nDrawing : Fusion of the logos of the 4 ENS\n\nHelped by Bocchinoco community and Students from Ecole Polytechnique", "links": {"website": ["https://www.ens.psl.eu/", "https://www.ens-paris-saclay.fr/", "https://www.ens-lyon.fr/", "https://www.ens-rennes.fr/"], "subreddit": ["ENSCachan", "CRANS"]}, "path": {"250-258": [[1446, 20], [1473, 20], [1474, 23], [1491, 23], [1491, 29], [1493, 30], [1493, 40], [1446, 40]]}, "center": {"250-258": [1456, 30]}}, +{"id": 4430, "name": "1PAIS's Villager", "description": "This villager represents the icon of 1PAIS, an Argentinian Discord server of friends composed of toposqui, putindeer, Manchitacat, DrunkenStinkin, DarkTiger330, Zyrovich and BunnyOwO.", "links": {}, "path": {"241-258, T": [[-1461, -267], [-1461, -260], [-1454, -260], [-1454, -267]]}, "center": {"241-258, T": [-1457, -263]}}, +{"id": 4431, "name": "Stade Malherbe Caen", "description": "Zone built by fans of the Stade Malherbe Caen (SMC) and their famous ultras MNK96. SMC is also home of the famous WeAreMalherbe team highly active in the social network (Twitter etc)", "links": {"website": ["https://fr.wikipedia.org/wiki/Stade_Malherbe_Caen"]}, "path": {"163-258, T": [[-501, 90], [-501, 106], [-455, 105], [-455, 90]]}, "center": {"163-258, T": [-485, 98]}}, +{"id": 4432, "name": "Super Animal Royale", "description": "A top-down battle royale game created by Pixile Studios that feature cute animals as playable characters. \n\nPictured is the skullcat, the breed of the first ever successful super animal.", "links": {"website": ["https://animalroyale.com/"], "subreddit": ["animalroyale"], "discord": ["animalroyale"]}, "path": {"133-153": [[-456, 345], [-456, 362], [-441, 362], [-441, 345]], "155-258, T": [[-411, 347], [-411, 365], [-393, 365], [-393, 347]]}, "center": {"133-153": [-448, 354], "155-258, T": [-402, 356]}}, +{"id": 4433, "name": "Deportivo Cali", "description": "Asociación Deportivo Cali, also known as Deportivo Cali, is a Colombian sports club based in Cali, best known for its football team which currently competes in Colombia's premier football tournament, Categora Primera A.", "links": {"website": ["https://en.wikipedia.org/wiki/Deportivo_Cali", "https://deportivocali.com.co/"]}, "path": {"250-258, T": [[-1292, 878], [-1273, 878], [-1274, 891], [-1276, 896], [-1279, 898], [-1282, 899], [-1284, 899], [-1287, 898], [-1292, 895]]}, "center": {"250-258, T": [-1283, 888]}}, +{"id": 4434, "name": "small white Pikmin", "description": "Its a withe Pikmin, they are immunity to poison.", "links": {"subreddit": ["Pikmin"]}, "path": {"250-258, T": [[1478, 395], [1482, 395], [1482, 388], [1479, 389]]}, "center": {"250-258, T": [1480, 392]}}, +{"id": 4435, "name": "Circle-A", "description": "A symbol representing anarchism. Started by u/eibhlinrose, a member of r/transplace", "links": {"subreddit": ["transplace"]}, "path": {"250-258, T": [[1209, 32], [1212, 19], [1227, 18], [1226, 33], [1223, 33], [1218, 33]]}, "center": {"250-258, T": [1219, 26]}}, +{"id": 4436, "name": "Ecoles Normales Supérieures (ENS ou Normale Sup')", "description": "Group of French \"Grandes Ecoles\" (called ENS) uniting the 4 ENS : ENS Ulm, ENS Paris-Saclay, ENS Lyon & ENS Rennes\n\nDrawing : Fusion of the logos of the 4 ENS\n\nHelped by Bocchinoco community and Students from Ecole Polytechnique", "links": {"website": ["https://www.ens.psl.eu/", "https://www.ens-paris-saclay.fr/", "https://www.ens-lyon.fr/", "https://www.ens-rennes.fr/"], "subreddit": ["ENSCachan", "CRANS"]}, "path": {"250-258, T": [[1446, 20], [1473, 20], [1474, 23], [1491, 23], [1491, 29], [1493, 30], [1493, 40], [1446, 40]]}, "center": {"250-258, T": [1456, 30]}}, {"id": 4437, "name": "Flag of Normandy", "description": "Flag of Normandy, old Duchy who conquered England in 1066 thanks to William the Conquerors. Also land of the most famous battle of WWII.\nCurrently the most beautiful region of France", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_and_coat_of_arms_of_Normandy"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"244": [[-413, 272], [-413, 279], [-403, 279], [-403, 272]]}, "center": {"244": [-408, 276]}}, -{"id": 4438, "name": "Ozen", "description": "Ozen is a character from the manga Made in Abyss created by Akihito Tsukushi", "links": {"subreddit": ["madeinabyss"]}, "path": {"245-258": [[33, -735], [39, -734], [39, -736], [39, -734], [42, -732], [42, -727], [40, -725], [40, -723], [40, -725], [37, -724], [37, -723], [39, -721], [39, -720], [40, -719], [43, -717], [41, -717], [40, -714], [39, -716], [32, -716], [30, -714], [30, -715], [27, -717], [28, -717], [28, -718], [29, -719], [31, -719], [31, -721], [32, -722], [33, -723], [33, -724], [31, -725], [30, -725], [30, -723], [30, -725], [28, -727], [28, -731], [31, -734], [31, -736], [31, -734], [33, -734]]}, "center": {"245-258": [35, -729]}}, +{"id": 4438, "name": "Ozen", "description": "Ozen is a character from the manga Made in Abyss created by Akihito Tsukushi", "links": {"subreddit": ["madeinabyss"]}, "path": {"245-258, T": [[33, -735], [39, -734], [39, -736], [39, -734], [42, -732], [42, -727], [40, -725], [40, -723], [40, -725], [37, -724], [37, -723], [39, -721], [39, -720], [40, -719], [43, -717], [41, -717], [40, -714], [39, -716], [32, -716], [30, -714], [30, -715], [27, -717], [28, -717], [28, -718], [29, -719], [31, -719], [31, -721], [32, -722], [33, -723], [33, -724], [31, -725], [30, -725], [30, -723], [30, -725], [28, -727], [28, -731], [31, -734], [31, -736], [31, -734], [33, -734]]}, "center": {"245-258, T": [35, -729]}}, {"id": 4439, "name": "iRoier", "description": "Roier, su apodo de internet, es un streamer Mexicano, el cual ha sido una revelación este año al alcanzar varias cifras nuevas y muchísimo apoyo. Su canal trata de videojuegos y just chatting, hace directos de lunes a viernes y últimamente ha estado transmitiendo mucho Minecraft debido a su participación en el primer servidor de Minecraft multilingüe del mundo \"QSMP\".", "links": {"website": ["https://www.twitch.tv/Roier"]}, "path": {"251": [[452, 488], [463, 488], [463, 499], [452, 499]]}, "center": {"251": [458, 494]}}, -{"id": 4440, "name": "Frecciarossa 1000", "description": "The Frecciarossa 1000 (ETR 400) is a high speed train operated by Trenitalia in Italy and also in France and Spain.", "links": {"subreddit": ["italy"], "discord": ["yvfHmyVUs2"]}, "path": {"250-258": [[-693, 97], [-646, 97], [-630, 105], [-624, 110], [-624, 111], [-626, 113], [-693, 113]]}, "center": {"250-258": [-658, 105]}}, +{"id": 4440, "name": "Frecciarossa 1000", "description": "The Frecciarossa 1000 (ETR 400) is a high speed train operated by Trenitalia in Italy and also in France and Spain.", "links": {"subreddit": ["italy"], "discord": ["yvfHmyVUs2"]}, "path": {"250-258, T": [[-693, 97], [-646, 97], [-630, 105], [-624, 110], [-624, 111], [-626, 113], [-693, 113]]}, "center": {"250-258, T": [-658, 105]}}, {"id": 4441, "name": "Die STRÄHNE (AWARE)", "description": "German streamer Stegi read out a message suggesting that a green streak should be added to the shego to clarify the similarity to Stegi's crush (di1araa.s). Stegi laughed and said that this would be quite dishonorable and should not be done. Just reading this message was enough to convince his chat. The strand was created and supported by the Hivemind.\n\nExplaining this to di1araa.s seems to be a challenge.", "links": {"website": ["https://www.twitch.tv/stegi", "https://www.tiktok.com/@di1araa.s"]}, "path": {"115-139": [[-936, 98], [-945, 107], [-957, 115], [-968, 127], [-975, 139], [-980, 151], [-981, 159], [-980, 159], [-981, 168], [-977, 153], [-967, 136]]}, "center": {"115-139": [-956, 118]}}, -{"id": 4442, "name": "Genoese tower", "description": "The Genoese tower are coastal towers arranged along the coastline and were use by the Republic of Genoa when they had the island, they exist everywhere in the Mediterranean sea, but it is indeed in Corsica that they are the most numerous (84)", "links": {"subreddit": ["placeCorse"], "discord": ["5zBBNrAJbN"]}, "path": {"163-258": [[-129, 498], [-119, 498], [-119, 496], [-120, 496], [-120, 495], [-121, 495], [-121, 494], [-121, 493], [-120, 493], [-120, 492], [-120, 491], [-120, 490], [-120, 489], [-119, 489], [-119, 488], [-129, 488], [-129, 489], [-128, 489], [-128, 493], [-127, 494], [-128, 495], [-128, 496], [-129, 496]]}, "center": {"163-258": [-124, 491]}}, -{"id": 4443, "name": "Yuri (DDLC)", "description": "Yuri from Doki Doki Literature Club. She was already depicted in DDLC's main build location, but this other tiny Yuri was hidden here after a canvas expansion.", "links": {"subreddit": ["DDLC"], "discord": ["ddlc"]}, "path": {"250-258": [[-863, 553], [-856, 553], [-856, 561], [-863, 561]]}, "center": {"250-258": [-859, 557]}}, -{"id": 4444, "name": "PostNL Van", "description": "PostNL, is a mail, parcel and e-commerce corporation with operations in the Netherlands, Germany, Italy, Belgium, and the United Kingdom. It provides universal delivery in the Netherlands. This is a recreation of the vans they use.", "links": {"website": ["https://www.postnl.nl/"], "subreddit": ["PlaceNL"]}, "path": {"196-258": [[-1293, -471], [-1327, -470], [-1327, -451], [-1293, -451]]}, "center": {"196-258": [-1310, -461]}}, -{"id": 4445, "name": "HECTOR", "description": "The pet rock of KEL from OMORI.", "links": {"website": ["https://omori.fandom.com/wiki/HECTOR"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"119-258": [[-230, -228], [-233, -227], [-234, -226], [-235, -225], [-236, -224], [-236, -221], [-235, -220], [-234, -219], [-225, -219], [-224, -220], [-223, -221], [-223, -224], [-224, -225], [-225, -226], [-226, -227], [-227, -228]]}, "center": {"119-258": [-229, -223]}}, -{"id": 4447, "name": "Games For Life", "description": "A multi-gaming community, mostly focused on the Source Engine", "links": {"website": ["https://gflclan.com/"], "discord": ["vBetupUbNZ"]}, "path": {"152-258": [[267, -804], [267, -796], [280, -796], [280, -804]]}, "center": {"152-258": [274, -800]}}, -{"id": 4448, "name": "Tiny Snail", "description": "A little snail made by two friends to celebrate a pet snail's eggs hatching, creating an adorable little baby snail! :)", "links": {}, "path": {"250-258": [[658, 680], [658, 679], [658, 678], [659, 678], [660, 678], [661, 678], [661, 679], [661, 680], [662, 679], [663, 679], [663, 680], [662, 681], [662, 682], [661, 682], [659, 682], [658, 682], [657, 682], [657, 681], [657, 680]]}, "center": {"250-258": [660, 681]}}, -{"id": 4449, "name": "niquetings", "description": "Was supposed to spell \"Uniquetings\", which is a minecraft server (uniquetings.aternos.me) created by Zombinho in 2019, however, the server has been discontinued due to multiple reasons, and now a new server is being worked on from scratch.", "links": {"subreddit": ["uniquetings"], "discord": ["WFewV4KhX6"]}, "path": {"250-258": [[-773, 199], [-773, 203], [-745, 203], [-745, 199]]}, "center": {"250-258": [-759, 201]}}, -{"id": 4450, "name": "Absol !!!", "description": "Absol is a Basic Dark-type Pokémon introduced in Generation III. It is said of him that he is a harbinger of disaster. Absol lives in the mountains, far from civilization, and rarely ventures beyond his alpine territory. Using his horn, Absol allows one to sense subtle changes in the earth and sky to warn of natural disasters, and tries to warn people who approach them. However, this has the effect of blaming Absol for the disaster, becoming a \"cursed\" Pokémon. I will also add, it's the fav pokemon of the goat Lana Desu", "links": {"website": ["https://www.coupcritique.fr/entity/pokemons/5244"], "subreddit": ["coupcritique"]}, "path": {"250-258": [[-1432, 191], [-1405, 201], [-1427, 225], [-1436, 211], [-1432, 191], [-1437, 212], [-1431, 191], [-1432, 192]]}, "center": {"250-258": [-1424, 206]}}, -{"id": 4451, "name": "Chuu Strawberry", "description": "A tiny Chuu (a member of the K-Pop group LOONA) wearing a strawberry costume to pay homage to the various Chuu memes, specifically Strawberry Chuu. \n\nShe was generously allowed a place inside the Gigachad Oppa block, much like the K-Pop Hangul sign above.", "links": {"website": ["https://www.youtube.com/channel/UCOJplhB0wGQWv9OuRmMT-4g"], "discord": ["tpA3NruzYB"]}, "path": {"250-258": [[-73, -804], [-71, -804], [-71, -803], [-70, -804], [-69, -805], [-68, -804], [-69, -803], [-68, -802], [-67, -802], [-66, -802], [-66, -801], [-65, -801], [-65, -799], [-65, -798], [-65, -796], [-66, -796], [-66, -795], [-67, -795], [-67, -794], [-72, -794], [-72, -795], [-73, -795], [-73, -796], [-74, -796], [-75, -796], [-75, -797], [-75, -798], [-74, -798], [-74, -800], [-74, -801], [-73, -801], [-72, -802], [-73, -803]]}, "center": {"250-258": [-70, -798]}}, -{"id": 4452, "name": "LOSC (lille olympique sporting club)", "description": "Lille Olympique Sporting Club , commonly referred to as LOSC, LOSC Lille or simply Lille, is a French professional football club based in Lille, Hauts-de-France that competes in Ligue 1, the top division of French football. Lille has played its home matches since 2012 at the Stade Pierre-Mauroy. The 50,186-capacity retractable roof venue is the fourth-largest football stadium in France.Lille was founded as a result of a merger between Olympique Lillois and SC Fives in 1944.", "links": {"subreddit": ["losc"], "discord": ["ZEbjMB9s", "sBHgH8P2Fs"]}, "path": {"199-259": [[-1000, 123], [-1000, 153], [-1039, 154], [-1038, 126], [-1018, 125], [-1018, 124], [-1019, 124]]}, "center": {"199-259": [-1015, 139]}}, -{"id": 4453, "name": "Baseball", "description": "Baseball, is the most popular sport in Venezuela and is said that the country produces skilled baseball players such as Luis Aparicio and Miguel Cabrera.", "links": {"subreddit": ["vzla"]}, "path": {"250-258": [[-1107, 311], [-1105, 311], [-1102, 314], [-1102, 316], [-1105, 319], [-1107, 319], [-1110, 316], [-1110, 314]]}, "center": {"250-258": [-1106, 315]}}, -{"id": 4454, "name": "Coat of arms of Kashubia", "description": "The coat of arms of Kashubia (Kashubian: pòznaka Kaszëb) is the coat of arms representing Kashubians. It usually is a black griffin with a crown on a yellow background, which used to symbolise the House of Griffin.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Kashubia"]}, "path": {"233-258": [[587, -132], [595, -132], [595, -126], [592, -123], [590, -123], [587, -126], [587, -132], [595, -132]]}, "center": {"233-258": [591, -128]}}, -{"id": 4455, "name": "NAZCA", "description": "This is Nazca. A little witch Discord emoji, memed by a small french Geometry Dash community, le Serveur des Maîtres. They also made a level dedicated to her; Nazca Circles. We can also sometimes see her hidden in some levels, such as Hallucinate by Vayulena and Touching Grass by Kr4t.", "links": {}, "path": {"250-258": [[1299, -876], [1300, -877], [1301, -876], [1302, -875], [1301, -874], [1301, -873], [1301, -872], [1302, -872], [1302, -873], [1302, -874], [1303, -874], [1303, -875], [1304, -876], [1304, -877], [1305, -878], [1306, -877], [1307, -876], [1307, -875], [1308, -874], [1308, -873], [1309, -872], [1310, -872], [1311, -872], [1311, -871], [1311, -870], [1310, -870], [1309, -870], [1309, -867], [1310, -866], [1310, -865], [1310, -864], [1298, -864], [1298, -867], [1299, -867], [1299, -874], [1298, -875]]}, "center": {"250-258": [1304, -868]}}, -{"id": 4456, "name": "Party Poison mask - My Chemical Romance", "description": "\"Danger Days - The True Lives of the Fabulous Killjoys\" is the fourth album of american rock band My Chemical Romance. In the music videos the band members are featured playing characters, each having their own name and distinct outfit. This mask is the one that the lead singer is seen wearing. These characters are also featured in the comic \"The True Lives of the Fabulous Killjoys: National Anthem\", written by Gerard Way and Shaun Simons.", "links": {"subreddit": ["MyChemicalRomance"]}, "path": {"210-258": [[1353, -6], [1391, -6], [1390, 6], [1353, 6]]}, "center": {"210-258": [1372, 0]}}, +{"id": 4442, "name": "Genoese tower", "description": "The Genoese tower are coastal towers arranged along the coastline and were use by the Republic of Genoa when they had the island, they exist everywhere in the Mediterranean sea, but it is indeed in Corsica that they are the most numerous (84)", "links": {"subreddit": ["placeCorse"], "discord": ["5zBBNrAJbN"]}, "path": {"163-258, T": [[-129, 498], [-119, 498], [-119, 496], [-120, 496], [-120, 495], [-121, 495], [-121, 494], [-121, 493], [-120, 493], [-120, 492], [-120, 491], [-120, 490], [-120, 489], [-119, 489], [-119, 488], [-129, 488], [-129, 489], [-128, 489], [-128, 493], [-127, 494], [-128, 495], [-128, 496], [-129, 496]]}, "center": {"163-258, T": [-124, 491]}}, +{"id": 4443, "name": "Yuri (DDLC)", "description": "Yuri from Doki Doki Literature Club. She was already depicted in DDLC's main build location, but this other tiny Yuri was hidden here after a canvas expansion.", "links": {"subreddit": ["DDLC"], "discord": ["ddlc"]}, "path": {"250-258, T": [[-863, 553], [-856, 553], [-856, 561], [-863, 561]]}, "center": {"250-258, T": [-859, 557]}}, +{"id": 4444, "name": "PostNL Van", "description": "PostNL, is a mail, parcel and e-commerce corporation with operations in the Netherlands, Germany, Italy, Belgium, and the United Kingdom. It provides universal delivery in the Netherlands. This is a recreation of the vans they use.", "links": {"website": ["https://www.postnl.nl/"], "subreddit": ["PlaceNL"]}, "path": {"196-258, T": [[-1293, -471], [-1327, -470], [-1327, -451], [-1293, -451]]}, "center": {"196-258, T": [-1310, -461]}}, +{"id": 4445, "name": "HECTOR", "description": "The pet rock of KEL from OMORI.", "links": {"website": ["https://omori.fandom.com/wiki/HECTOR"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"119-258, T": [[-230, -228], [-233, -227], [-234, -226], [-235, -225], [-236, -224], [-236, -221], [-235, -220], [-234, -219], [-225, -219], [-224, -220], [-223, -221], [-223, -224], [-224, -225], [-225, -226], [-226, -227], [-227, -228]]}, "center": {"119-258, T": [-229, -223]}}, +{"id": 4447, "name": "Games For Life", "description": "A multi-gaming community, mostly focused on the Source Engine", "links": {"website": ["https://gflclan.com/"], "discord": ["vBetupUbNZ"]}, "path": {"152-258, T": [[267, -804], [267, -796], [280, -796], [280, -804]]}, "center": {"152-258, T": [274, -800]}}, +{"id": 4448, "name": "Tiny Snail", "description": "A little snail made by two friends to celebrate a pet snail's eggs hatching, creating an adorable little baby snail! :)", "links": {}, "path": {"250-258, T": [[658, 680], [658, 679], [658, 678], [659, 678], [660, 678], [661, 678], [661, 679], [661, 680], [662, 679], [663, 679], [663, 680], [662, 681], [662, 682], [661, 682], [659, 682], [658, 682], [657, 682], [657, 681], [657, 680]]}, "center": {"250-258, T": [660, 681]}}, +{"id": 4449, "name": "niquetings", "description": "Was supposed to spell \"Uniquetings\", which is a minecraft server (uniquetings.aternos.me) created by Zombinho in 2019, however, the server has been discontinued due to multiple reasons, and now a new server is being worked on from scratch.", "links": {"subreddit": ["uniquetings"], "discord": ["WFewV4KhX6"]}, "path": {"250-258, T": [[-773, 199], [-773, 203], [-745, 203], [-745, 199]]}, "center": {"250-258, T": [-759, 201]}}, +{"id": 4450, "name": "Absol !!!", "description": "Absol is a Basic Dark-type Pokémon introduced in Generation III. It is said of him that he is a harbinger of disaster. Absol lives in the mountains, far from civilization, and rarely ventures beyond his alpine territory. Using his horn, Absol allows one to sense subtle changes in the earth and sky to warn of natural disasters, and tries to warn people who approach them. However, this has the effect of blaming Absol for the disaster, becoming a \"cursed\" Pokémon. I will also add, it's the fav pokemon of the goat Lana Desu", "links": {"website": ["https://www.coupcritique.fr/entity/pokemons/5244"], "subreddit": ["coupcritique"]}, "path": {"250-258, T": [[-1432, 191], [-1405, 201], [-1427, 225], [-1436, 211], [-1432, 191], [-1437, 212], [-1431, 191], [-1432, 192]]}, "center": {"250-258, T": [-1424, 206]}}, +{"id": 4451, "name": "Chuu Strawberry", "description": "A tiny Chuu (a member of the K-Pop group LOONA) wearing a strawberry costume to pay homage to the various Chuu memes, specifically Strawberry Chuu. \n\nShe was generously allowed a place inside the Gigachad Oppa block, much like the K-Pop Hangul sign above.", "links": {"website": ["https://www.youtube.com/channel/UCOJplhB0wGQWv9OuRmMT-4g"], "discord": ["tpA3NruzYB"]}, "path": {"250-258, T": [[-73, -804], [-71, -804], [-71, -803], [-70, -804], [-69, -805], [-68, -804], [-69, -803], [-68, -802], [-67, -802], [-66, -802], [-66, -801], [-65, -801], [-65, -799], [-65, -798], [-65, -796], [-66, -796], [-66, -795], [-67, -795], [-67, -794], [-72, -794], [-72, -795], [-73, -795], [-73, -796], [-74, -796], [-75, -796], [-75, -797], [-75, -798], [-74, -798], [-74, -800], [-74, -801], [-73, -801], [-72, -802], [-73, -803]]}, "center": {"250-258, T": [-70, -798]}}, +{"id": 4452, "name": "LOSC (lille olympique sporting club)", "description": "Lille Olympique Sporting Club , commonly referred to as LOSC, LOSC Lille or simply Lille, is a French professional football club based in Lille, Hauts-de-France that competes in Ligue 1, the top division of French football. Lille has played its home matches since 2012 at the Stade Pierre-Mauroy. The 50,186-capacity retractable roof venue is the fourth-largest football stadium in France.Lille was founded as a result of a merger between Olympique Lillois and SC Fives in 1944.", "links": {"subreddit": ["losc"], "discord": ["ZEbjMB9s", "sBHgH8P2Fs"]}, "path": {"199-259, T": [[-1000, 123], [-1000, 153], [-1039, 154], [-1038, 126], [-1018, 125], [-1018, 124], [-1019, 124]]}, "center": {"199-259, T": [-1015, 139]}}, +{"id": 4453, "name": "Baseball", "description": "Baseball, is the most popular sport in Venezuela and is said that the country produces skilled baseball players such as Luis Aparicio and Miguel Cabrera.", "links": {"subreddit": ["vzla"]}, "path": {"250-258, T": [[-1107, 311], [-1105, 311], [-1102, 314], [-1102, 316], [-1105, 319], [-1107, 319], [-1110, 316], [-1110, 314]]}, "center": {"250-258, T": [-1106, 315]}}, +{"id": 4454, "name": "Coat of arms of Kashubia", "description": "The coat of arms of Kashubia (Kashubian: pòznaka Kaszëb) is the coat of arms representing Kashubians. It usually is a black griffin with a crown on a yellow background, which used to symbolise the House of Griffin.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Kashubia"]}, "path": {"233-258, T": [[587, -132], [595, -132], [595, -126], [592, -123], [590, -123], [587, -126], [587, -132], [595, -132]]}, "center": {"233-258, T": [591, -128]}}, +{"id": 4455, "name": "NAZCA", "description": "This is Nazca. A little witch Discord emoji, memed by a small french Geometry Dash community, le Serveur des Maîtres. They also made a level dedicated to her; Nazca Circles. We can also sometimes see her hidden in some levels, such as Hallucinate by Vayulena and Touching Grass by Kr4t.", "links": {}, "path": {"250-258, T": [[1299, -876], [1300, -877], [1301, -876], [1302, -875], [1301, -874], [1301, -873], [1301, -872], [1302, -872], [1302, -873], [1302, -874], [1303, -874], [1303, -875], [1304, -876], [1304, -877], [1305, -878], [1306, -877], [1307, -876], [1307, -875], [1308, -874], [1308, -873], [1309, -872], [1310, -872], [1311, -872], [1311, -871], [1311, -870], [1310, -870], [1309, -870], [1309, -867], [1310, -866], [1310, -865], [1310, -864], [1298, -864], [1298, -867], [1299, -867], [1299, -874], [1298, -875]]}, "center": {"250-258, T": [1304, -868]}}, +{"id": 4456, "name": "Party Poison mask - My Chemical Romance", "description": "\"Danger Days - The True Lives of the Fabulous Killjoys\" is the fourth album of american rock band My Chemical Romance. In the music videos the band members are featured playing characters, each having their own name and distinct outfit. This mask is the one that the lead singer is seen wearing. These characters are also featured in the comic \"The True Lives of the Fabulous Killjoys: National Anthem\", written by Gerard Way and Shaun Simons.", "links": {"subreddit": ["MyChemicalRomance"]}, "path": {"210-258, T": [[1353, -6], [1391, -6], [1390, 6], [1353, 6]]}, "center": {"210-258, T": [1372, 0]}}, {"id": 4457, "name": "The 4th Doctor scarf", "description": "This is supposed to be The scarf pattern of the 4th Doctors scarf", "links": {"subreddit": ["PlacePurpleHeart", "DoctorWhumour", "TARDISplace"]}, "path": {"236": [[-503, 331], [-504, 333], [-504, 336], [-503, 336], [-504, 339], [-502, 351], [-505, 349], [-502, 329], [-505, 329], [-505, 332], [-505, 338], [-505, 341], [-505, 342], [-505, 343], [-502, 335], [-502, 339], [-502, 341], [-502, 343], [-502, 345], [-502, 347], [-502, 349], [-502, 341], [-502, 338], [-502, 337], [-504, 351], [-503, 341], [-502, 338], [-502, 339], [-502, 344]]}, "center": {"236": [-504, 330]}}, -{"id": 4458, "name": "APOBANGPO", "description": "APOBANGPO (meaning ARMY forever, bangtan forever) written in Korean, the ARMY logo and finger hearts", "links": {"subreddit": ["bangtan"]}, "path": {"230-258": [[339, -176], [339, -154], [398, -154], [398, -173], [378, -173], [378, -176]]}, "center": {"230-258": [369, -165]}}, +{"id": 4458, "name": "APOBANGPO", "description": "APOBANGPO (meaning ARMY forever, bangtan forever) written in Korean, the ARMY logo and finger hearts", "links": {"subreddit": ["bangtan"]}, "path": {"230-258, T": [[339, -176], [339, -154], [398, -154], [398, -173], [378, -173], [378, -176]]}, "center": {"230-258, T": [369, -165]}}, {"id": 4459, "name": "Red Velvet Member Heart Logo Card", "description": "Red Velvet is a 5-member k-pop group consisting of Irene, Seulgi, Wendy, Joy, and Yeri. Their member colors are pink, orange, blue, green, and purple, respectively.\n\nThe logo card, using the colors of the members in the shape of a heart, was the longest standing piece of art Reveluvs (the group's fandom) held onto during r/place this year. It was wiped out by the Windows Taskbar expansion and relocated to just below the Flag of Hungary to be included in the official final canvas. (See Red Velvet, The Last Stand.)\n\nTo the BP community just above us: It was great sharing the canvas with y'all!", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"160-233": [[651, 967], [651, 980], [678, 980], [678, 967]]}, "center": {"160-233": [665, 974]}}, -{"id": 4460, "name": "Ozen", "description": "Ozen is a character from the manga Made in Abyss created by Akihito Tsukushi.\n\nShe was created as a last minute expansion when this free space was discovered.\n\nDue to her grey scale colour scheme she was one of the last Made in Abyss arts to go during the whiteout. The immovable sovereign living up to her name, smug right up to the end.", "links": {"subreddit": ["madeinabyss"]}, "path": {"249-258": [[27, -717], [30, -714], [32, -716], [34, -715], [36, -715], [38, -716], [40, -714], [43, -717], [39, -720], [37, -723], [37, -725], [40, -723], [42, -727], [42, -732], [39, -736], [31, -736], [28, -731], [28, -727], [30, -723], [32, -722]]}, "center": {"249-258": [34, -730]}}, -{"id": 4461, "name": "San Francisco 49ers", "description": "The San Francisco 49ers are a professional American football team based in the San Francisco Bay Area.", "links": {"website": ["https://en.wikipedia.org/wiki/San_Francisco_49ers"], "subreddit": ["49ers"]}, "path": {"250-258": [[-52, -773], [-15, -773], [-15, -746], [-52, -746]]}, "center": {"250-258": [-33, -759]}}, +{"id": 4460, "name": "Ozen", "description": "Ozen is a character from the manga Made in Abyss created by Akihito Tsukushi.\n\nShe was created as a last minute expansion when this free space was discovered.\n\nDue to her grey scale colour scheme she was one of the last Made in Abyss arts to go during the whiteout. The immovable sovereign living up to her name, smug right up to the end.", "links": {"subreddit": ["madeinabyss"]}, "path": {"249-258, T": [[27, -717], [30, -714], [32, -716], [34, -715], [36, -715], [38, -716], [40, -714], [43, -717], [39, -720], [37, -723], [37, -725], [40, -723], [42, -727], [42, -732], [39, -736], [31, -736], [28, -731], [28, -727], [30, -723], [32, -722]]}, "center": {"249-258, T": [34, -730]}}, +{"id": 4461, "name": "San Francisco 49ers", "description": "The San Francisco 49ers are a professional American football team based in the San Francisco Bay Area.", "links": {"website": ["https://en.wikipedia.org/wiki/San_Francisco_49ers"], "subreddit": ["49ers"]}, "path": {"250-258, T": [[-52, -773], [-15, -773], [-15, -746], [-52, -746]]}, "center": {"250-258, T": [-33, -759]}}, {"id": 4462, "name": "N, V, & Uzi (Murder Drones)", "description": "A depiction of N, V and Uzi, who are all characters in Murder Drones, a web series on Youtube created by Glitch Productions.\nAs evident by the timeline, V appeared later as an addition to this drawing.", "links": {"subreddit": ["MurderDrones"], "discord": ["g9T4JbyDar"]}, "path": {"96-104": [[674, 414], [674, 464], [673, 465], [629, 465], [628, 464], [628, 439], [629, 438], [652, 438], [652, 414], [653, 413], [674, 413]], "57-95": [[628, 439], [674, 439], [674, 465], [628, 465]]}, "center": {"96-104": [659, 451], "57-95": [651, 452]}}, -{"id": 4463, "name": "Epic Pawl x Lixa / Bear Ally Heart", "description": "Heart symbolising the Alliance between Epic Pawl and Lixa / Bear", "links": {}, "path": {"250-258": [[114, 985], [116, 987], [118, 985], [117, 984], [116, 985], [115, 984]]}, "center": {"250-258": [116, 986]}}, -{"id": 4464, "name": "Bill Cipher", "description": "Bill Cipher is the main antagonist of Gravity Falls. He is a Dream-Demon with mysterious motives and seems to have a vendetta against the Pines family, especially his old rival Stanford Pines.", "links": {"website": ["https://gravityfalls.fandom.com/wiki/Bill_Cipher"]}, "path": {"230-258": [[-923, -37], [-921, -39], [-920, -46], [-924, -42], [-926, -48], [-928, -42], [-933, -47], [-931, -39], [-929, -37]]}, "center": {"230-258": [-926, -40]}}, -{"id": 4465, "name": "WiFi", "description": "It was in the 1990s that the idea for wireless connectivity between devices was introduced by Dutch engineer Dr. Jaap Haartsen.", "links": {}, "path": {"247-258": [[98, -528], [98, -524], [101, -521], [105, -521], [108, -518], [114, -518], [117, -520], [121, -521], [124, -524], [124, -528], [121, -531], [117, -532], [115, -533], [123, -543], [116, -546], [106, -546], [100, -543], [107, -534], [105, -532], [101, -531]]}, "center": {"247-258": [112, -526]}}, +{"id": 4463, "name": "Epic Pawl x Lixa / Bear Ally Heart", "description": "Heart symbolising the Alliance between Epic Pawl and Lixa / Bear", "links": {}, "path": {"250-258, T": [[114, 985], [116, 987], [118, 985], [117, 984], [116, 985], [115, 984]]}, "center": {"250-258, T": [116, 986]}}, +{"id": 4464, "name": "Bill Cipher", "description": "Bill Cipher is the main antagonist of Gravity Falls. He is a Dream-Demon with mysterious motives and seems to have a vendetta against the Pines family, especially his old rival Stanford Pines.", "links": {"website": ["https://gravityfalls.fandom.com/wiki/Bill_Cipher"]}, "path": {"230-258, T": [[-923, -37], [-921, -39], [-920, -46], [-924, -42], [-926, -48], [-928, -42], [-933, -47], [-931, -39], [-929, -37]]}, "center": {"230-258, T": [-926, -40]}}, +{"id": 4465, "name": "WiFi", "description": "It was in the 1990s that the idea for wireless connectivity between devices was introduced by Dutch engineer Dr. Jaap Haartsen.", "links": {}, "path": {"247-258, T": [[98, -528], [98, -524], [101, -521], [105, -521], [108, -518], [114, -518], [117, -520], [121, -521], [124, -524], [124, -528], [121, -531], [117, -532], [115, -533], [123, -543], [116, -546], [106, -546], [100, -543], [107, -534], [105, -532], [101, -531]]}, "center": {"247-258, T": [112, -526]}}, {"id": 4466, "name": "PepeW", "description": "Nymns community", "links": {"subreddit": ["RedditAndChill"]}, "path": {"4": [[310, 402], [363, 403], [364, 457], [311, 456]]}, "center": {"4": [337, 430]}}, -{"id": 4467, "name": "P3ACE (Place 3 Aprilknights Collaboration Enterprise)", "description": "The logo of P3ACE, the largest alliance of factions on /r/place (as organised by the April Knights).", "links": {"website": ["https://join.aprilknights.org"], "subreddit": ["AprilKnights"], "discord": ["aprilknights"]}, "path": {"220-259": [[1001, -47], [1036, -47], [1036, -18], [1027, -18], [1027, -16], [1001, -16]]}, "center": {"220-259": [1019, -31]}}, -{"id": 4468, "name": "Bibi Blocksberg", "description": "Bibi Blocksberg is a German children's radio drama series. The main character Bibi is a witch. There are also books, an animated series, and a spin-off series. Bibi Blocksberg is from the same universe as Benjamin Blühmchen.", "links": {"website": ["https://en.wikipedia.org/wiki/Bibi_Blocksberg"], "subreddit": ["placeDE"]}, "path": {"250-258": [[1210, -958], [1218, -952], [1225, -952], [1225, -951], [1227, -954], [1236, -957], [1239, -958], [1241, -950], [1244, -951], [1248, -957], [1259, -946], [1260, -946], [1264, -954], [1264, -956], [1261, -959], [1259, -958], [1260, -958], [1260, -959], [1259, -958], [1259, -954], [1258, -953], [1256, -954], [1249, -961], [1250, -964], [1258, -972], [1256, -973], [1249, -967], [1239, -974], [1239, -982], [1241, -982], [1241, -986], [1246, -993], [1249, -994], [1250, -994], [1250, -996], [1249, -997], [1246, -995], [1244, -996], [1243, -995], [1243, -993], [1239, -987], [1238, -990], [1236, -994], [1232, -994], [1227, -994], [1226, -996], [1222, -994], [1219, -994], [1212, -986], [1211, -983], [1222, -985], [1224, -985], [1225, -981], [1227, -979], [1229, -980], [1231, -979], [1229, -975], [1233, -971], [1233, -967], [1230, -962], [1225, -961], [1219, -961], [1216, -960]]}, "center": {"250-258": [1231, -987]}}, -{"id": 4469, "name": "VisitusComplex_Ka", "description": "\"Visiotertilia Numeral Virzotuoza Desconocil\" or \"Visi\", is a small streamer Spanish-speaking mostly to do art and talk whispering on Twitch. \n\nbasically visi is a worm according to this with the appearance of a mannequin and with the community in stream they made a girl with dress black and white. \n\nit had 3 attempts to make the pixel art.", "links": {"website": ["https://www.twitch.tv/visituscomplex_ka"]}, "path": {"68-87": [[137, -335], [138, -336], [139, -336], [140, -337], [143, -337], [144, -336], [145, -337], [149, -337], [151, -336], [151, -335], [152, -333], [153, -332], [153, -328], [150, -325], [150, -320], [151, -319], [152, -318], [152, -316], [149, -313], [152, -313], [152, -309], [152, -308], [131, -308], [131, -313], [140, -313], [139, -313], [136, -316], [136, -318], [137, -318], [137, -320], [138, -320], [138, -325], [139, -325], [136, -327], [136, -334]], "160-183": [[-164, 600], [-144, 600], [-144, 616], [-164, 616]], "225-258": [[-381, -972], [-367, -972], [-366, -971], [-365, -970], [-365, -968], [-364, -967], [-364, -964], [-365, -963], [-366, -962], [-367, -961], [-367, -956], [-366, -955], [-365, -954], [-365, -952], [-369, -948], [-379, -948], [-380, -949], [-381, -950], [-382, -951], [-383, -952], [-380, -955], [-380, -956], [-384, -956], [-384, -957], [-385, -958], [-386, -959], [-388, -957], [-392, -961], [-392, -962], [-388, -966], [-387, -966], [-383, -962], [-382, -962], [-383, -963], [-384, -964], [-384, -967], [-383, -968], [-383, -970], [-382, -971]]}, "center": {"68-87": [144, -329], "160-183": [-154, 608], "225-258": [-374, -964]}}, -{"id": 4470, "name": "The Puerto Rican Archipelago", "description": "Depiction of the island of Puerto Rico and its 3 largest islands (Not including main): Vieques, Culebra, and Mona", "links": {"website": ["https://en.enciclopediapr.org/content/archipelago-puerto-rico-synthesis/"], "subreddit": ["PuertoRico"], "discord": ["EZ4C9FR3"]}, "path": {"250-258": [[176, -20], [173, -21], [170, -19], [169, -16], [172, -11], [184, -11], [186, -13], [193, -13], [189, -16], [191, -19], [190, -20], [185, -20], [181, -21]]}, "center": {"250-258": [181, -16]}}, -{"id": 4471, "name": "r/place Poland discord link", "description": "Discord of polish group responsible for organizing Polish flag on r/place", "links": {"discord": ["9U59fCSF7m"]}, "path": {"100-157": [[631, -140], [682, -140], [682, -136], [631, -136]], "158-213": [[676, -152], [725, -152], [725, -148], [676, -148]], "231-240": [[632, -145], [681, -145], [681, -141], [632, -141]], "241-258": [[630, -133], [682, -133], [682, -141], [630, -141]]}, "center": {"100-157": [657, -138], "158-213": [701, -150], "231-240": [657, -143], "241-258": [656, -137]}}, -{"id": 4472, "name": "Hivemind Hearts", "description": "What began as a granted Czech-Heart developed into the Hivemind making Hearts and putting their flag on it. Over the time the Hivemind had a battle over what flags stand in the Hearts. At the end these Flags were standing:\n- Morocco\n- Bolivia\n- Czech Republic\n- Chile\n- non-Binary Flag", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Czech_Republic", "https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Non-binary_gender#:~:text=The%20non%2Dbinary%20pride%20flag,embrace%20many%20or%20all%20genders.", "https://en.wikipedia.org/wiki/Morocco"]}, "path": {"117-258": [[-1000, -61], [-1000, -72], [-901, -72], [-901, -61]]}, "center": {"117-258": [-950, -66]}}, -{"id": 4473, "name": "EroFights", "description": "18+ website to roleplay erotic scenes online, meet people, and give BDSM instructions through a game. Very active and friendly community gathered over the last years on Discord.", "links": {"website": ["https://www.erofights.com/"], "subreddit": ["EroFightsOfficial"], "discord": ["erofights"]}, "path": {"208-258": [[-1390, 457], [-1390, 465], [-1379, 465], [-1379, 466], [-1375, 466], [-1375, 465], [-1367, 465], [-1367, 457]]}, "center": {"208-258": [-1376, 461]}}, +{"id": 4467, "name": "P3ACE (Place 3 Aprilknights Collaboration Enterprise)", "description": "The logo of P3ACE, the largest alliance of factions on /r/place (as organised by the April Knights).", "links": {"website": ["https://join.aprilknights.org"], "subreddit": ["AprilKnights"], "discord": ["aprilknights"]}, "path": {"220-259, T": [[1001, -47], [1036, -47], [1036, -18], [1027, -18], [1027, -16], [1001, -16]]}, "center": {"220-259, T": [1019, -31]}}, +{"id": 4468, "name": "Bibi Blocksberg", "description": "Bibi Blocksberg is a German children's radio drama series. The main character Bibi is a witch. There are also books, an animated series, and a spin-off series. Bibi Blocksberg is from the same universe as Benjamin Blühmchen.", "links": {"website": ["https://en.wikipedia.org/wiki/Bibi_Blocksberg"], "subreddit": ["placeDE"]}, "path": {"250-258, T": [[1210, -958], [1218, -952], [1225, -952], [1225, -951], [1227, -954], [1236, -957], [1239, -958], [1241, -950], [1244, -951], [1248, -957], [1259, -946], [1260, -946], [1264, -954], [1264, -956], [1261, -959], [1259, -958], [1260, -958], [1260, -959], [1259, -958], [1259, -954], [1258, -953], [1256, -954], [1249, -961], [1250, -964], [1258, -972], [1256, -973], [1249, -967], [1239, -974], [1239, -982], [1241, -982], [1241, -986], [1246, -993], [1249, -994], [1250, -994], [1250, -996], [1249, -997], [1246, -995], [1244, -996], [1243, -995], [1243, -993], [1239, -987], [1238, -990], [1236, -994], [1232, -994], [1227, -994], [1226, -996], [1222, -994], [1219, -994], [1212, -986], [1211, -983], [1222, -985], [1224, -985], [1225, -981], [1227, -979], [1229, -980], [1231, -979], [1229, -975], [1233, -971], [1233, -967], [1230, -962], [1225, -961], [1219, -961], [1216, -960]]}, "center": {"250-258, T": [1231, -987]}}, +{"id": 4469, "name": "VisitusComplex_Ka", "description": "\"Visiotertilia Numeral Virzotuoza Desconocil\" or \"Visi\", is a small streamer Spanish-speaking mostly to do art and talk whispering on Twitch. \n\nbasically visi is a worm according to this with the appearance of a mannequin and with the community in stream they made a girl with dress black and white. \n\nit had 3 attempts to make the pixel art.", "links": {"website": ["https://www.twitch.tv/visituscomplex_ka"]}, "path": {"68-87": [[137, -335], [138, -336], [139, -336], [140, -337], [143, -337], [144, -336], [145, -337], [149, -337], [151, -336], [151, -335], [152, -333], [153, -332], [153, -328], [150, -325], [150, -320], [151, -319], [152, -318], [152, -316], [149, -313], [152, -313], [152, -309], [152, -308], [131, -308], [131, -313], [140, -313], [139, -313], [136, -316], [136, -318], [137, -318], [137, -320], [138, -320], [138, -325], [139, -325], [136, -327], [136, -334]], "160-183": [[-164, 600], [-144, 600], [-144, 616], [-164, 616]], "225-258, T": [[-381, -972], [-367, -972], [-366, -971], [-365, -970], [-365, -968], [-364, -967], [-364, -964], [-365, -963], [-366, -962], [-367, -961], [-367, -956], [-366, -955], [-365, -954], [-365, -952], [-369, -948], [-379, -948], [-380, -949], [-381, -950], [-382, -951], [-383, -952], [-380, -955], [-380, -956], [-384, -956], [-384, -957], [-385, -958], [-386, -959], [-388, -957], [-392, -961], [-392, -962], [-388, -966], [-387, -966], [-383, -962], [-382, -962], [-383, -963], [-384, -964], [-384, -967], [-383, -968], [-383, -970], [-382, -971]]}, "center": {"68-87": [144, -329], "160-183": [-154, 608], "225-258, T": [-374, -964]}}, +{"id": 4470, "name": "The Puerto Rican Archipelago", "description": "Depiction of the island of Puerto Rico and its 3 largest islands (Not including main): Vieques, Culebra, and Mona", "links": {"website": ["https://en.enciclopediapr.org/content/archipelago-puerto-rico-synthesis/"], "subreddit": ["PuertoRico"], "discord": ["EZ4C9FR3"]}, "path": {"250-258, T": [[176, -20], [173, -21], [170, -19], [169, -16], [172, -11], [184, -11], [186, -13], [193, -13], [189, -16], [191, -19], [190, -20], [185, -20], [181, -21]]}, "center": {"250-258, T": [181, -16]}}, +{"id": 4471, "name": "r/place Poland discord link", "description": "Discord of polish group responsible for organizing Polish flag on r/place", "links": {"discord": ["9U59fCSF7m"]}, "path": {"100-157": [[631, -140], [682, -140], [682, -136], [631, -136]], "158-213": [[676, -152], [725, -152], [725, -148], [676, -148]], "231-240": [[632, -145], [681, -145], [681, -141], [632, -141]], "241-258, T": [[630, -133], [682, -133], [682, -141], [630, -141]]}, "center": {"100-157": [657, -138], "158-213": [701, -150], "231-240": [657, -143], "241-258, T": [656, -137]}}, +{"id": 4472, "name": "Hivemind Hearts", "description": "What began as a granted Czech-Heart developed into the Hivemind making Hearts and putting their flag on it. Over the time the Hivemind had a battle over what flags stand in the Hearts. At the end these Flags were standing:\n- Morocco\n- Bolivia\n- Czech Republic\n- Chile\n- non-Binary Flag", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Czech_Republic", "https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Non-binary_gender#:~:text=The%20non%2Dbinary%20pride%20flag,embrace%20many%20or%20all%20genders.", "https://en.wikipedia.org/wiki/Morocco"]}, "path": {"117-258, T": [[-1000, -61], [-1000, -72], [-901, -72], [-901, -61]]}, "center": {"117-258, T": [-950, -66]}}, +{"id": 4473, "name": "EroFights", "description": "18+ website to roleplay erotic scenes online, meet people, and give BDSM instructions through a game. Very active and friendly community gathered over the last years on Discord.", "links": {"website": ["https://www.erofights.com/"], "subreddit": ["EroFightsOfficial"], "discord": ["erofights"]}, "path": {"208-258, T": [[-1390, 457], [-1390, 465], [-1379, 465], [-1379, 466], [-1375, 466], [-1375, 465], [-1367, 465], [-1367, 457]]}, "center": {"208-258, T": [-1376, 461]}}, {"id": 4474, "name": "Šakotis", "description": "Šakotis is a Polish, Lithuanian and Belarusian traditional spit cake, similar to the German Baumkuchen. It is a cake made of butter, egg whites and yolks, flour, sugar, and cream, cooked on a rotating spit in an oven or over an open fire. Made by LTURepublic", "links": {"website": ["https://en.wikipedia.org/wiki/Šakotis"], "subreddit": ["ltu_republic"]}, "path": {"197-215": [[-135, 40], [-139, 35], [-139, 19], [-126, 16], [-120, 18], [-119, 22], [-119, 28], [-118, 33], [-121, 38], [-126, 40], [-130, 40], [-132, 40]]}, "center": {"197-215": [-129, 29]}}, -{"id": 4475, "name": "Trakai Island Castle", "description": "Trakai Island Castle (Lithuanian: Trakų salos pilis;) is an island castle located in Trakai, Lithuania, on an island in Lake Galvė. The construction of the stone castle was begun in the 14th century by Kęstutis, and around 1409 major works were completed by his son Vytautas the Great, who died in this castle in 1430. Trakai was one of the main centers of the Grand Duchy of Lithuania and the castle held great strategic importance. The castle was rebuilt in the 1950s–1960s by Lithuanian initiative, although it had received resistance from Soviet authorities.", "links": {"website": ["https://en.wikipedia.org/wiki/Trakai_Island_Castle"]}, "path": {"194-216": [[-141, 13], [-80, 13], [-80, 6], [-81, 6], [-81, -5], [-84, -9], [-84, -11], [-85, -12], [-86, -12], [-87, -13], [-88, -12], [-89, -11], [-89, -8], [-91, -7], [-91, -5], [-92, -5], [-92, 1], [-95, 1], [-95, -7], [-96, -8], [-108, -8], [-108, -11], [-100, -11], [-100, -16], [-108, -16], [-108, -8], [-110, -8], [-110, -14], [-116, -14], [-118, -12], [-118, -8], [-119, -8], [-120, -9], [-123, -5], [-123, 0], [-124, 0], [-124, 1], [-128, 1], [-128, 0], [-129, 0], [-129, -5], [-131, -8], [-132, -8], [-132, -11], [-134, -13], [-135, -13], [-137, -10], [-138, -8], [-139, -7], [-140, -5], [-140, 6], [-141, 7]], "236-258": [[-140, 30], [-81, 30], [-81, 12], [-86, 2], [-92, 12], [-92, 18], [-95, 18], [-95, 11], [-96, 10], [-97, 9], [-107, 9], [-108, 9], [-108, 6], [-100, 6], [-100, 1], [-108, 1], [-108, 9], [-110, 9], [-110, 3], [-116, 3], [-116, 5], [-118, 5], [-118, 9], [-121, 9], [-122, 10], [-123, 12], [-123, 18], [-129, 18], [-129, 12], [-130, 10], [-132, 8], [-133, 8], [-133, 5], [-134, 4], [-135, 4], [-136, 5], [-137, 6], [-137, 9], [-138, 9], [-139, 10], [-140, 12]]}, "center": {"194-216": [-112, 2], "236-258": [-112, 19]}}, +{"id": 4475, "name": "Trakai Island Castle", "description": "Trakai Island Castle (Lithuanian: Trakų salos pilis;) is an island castle located in Trakai, Lithuania, on an island in Lake Galvė. The construction of the stone castle was begun in the 14th century by Kęstutis, and around 1409 major works were completed by his son Vytautas the Great, who died in this castle in 1430. Trakai was one of the main centers of the Grand Duchy of Lithuania and the castle held great strategic importance. The castle was rebuilt in the 1950s–1960s by Lithuanian initiative, although it had received resistance from Soviet authorities.", "links": {"website": ["https://en.wikipedia.org/wiki/Trakai_Island_Castle"]}, "path": {"194-216": [[-141, 13], [-80, 13], [-80, 6], [-81, 6], [-81, -5], [-84, -9], [-84, -11], [-85, -12], [-86, -12], [-87, -13], [-88, -12], [-89, -11], [-89, -8], [-91, -7], [-91, -5], [-92, -5], [-92, 1], [-95, 1], [-95, -7], [-96, -8], [-108, -8], [-108, -11], [-100, -11], [-100, -16], [-108, -16], [-108, -8], [-110, -8], [-110, -14], [-116, -14], [-118, -12], [-118, -8], [-119, -8], [-120, -9], [-123, -5], [-123, 0], [-124, 0], [-124, 1], [-128, 1], [-128, 0], [-129, 0], [-129, -5], [-131, -8], [-132, -8], [-132, -11], [-134, -13], [-135, -13], [-137, -10], [-138, -8], [-139, -7], [-140, -5], [-140, 6], [-141, 7]], "236-258, T": [[-140, 30], [-81, 30], [-81, 12], [-86, 2], [-92, 12], [-92, 18], [-95, 18], [-95, 11], [-96, 10], [-97, 9], [-107, 9], [-108, 9], [-108, 6], [-100, 6], [-100, 1], [-108, 1], [-108, 9], [-110, 9], [-110, 3], [-116, 3], [-116, 5], [-118, 5], [-118, 9], [-121, 9], [-122, 10], [-123, 12], [-123, 18], [-129, 18], [-129, 12], [-130, 10], [-132, 8], [-133, 8], [-133, 5], [-134, 4], [-135, 4], [-136, 5], [-137, 6], [-137, 9], [-138, 9], [-139, 10], [-140, 12]]}, "center": {"194-216": [-112, 2], "236-258, T": [-112, 19]}}, {"id": 4476, "name": "The Golden Path", "description": "The Golden Path is the path that will offer the player the best gameplay, story, rewards and/or secrets the game has to offer. The Golden Path usually leads to the Golden Ending in Multiple Endings games, and sometimes is the only way to get there, although this is not always the case.", "links": {"website": ["https://store.steampowered.com/app/553420/TUNIC/"], "subreddit": ["TunicGame"], "discord": ["YpqUYfdE"]}, "path": {"253-258": [[1169, 17], [1170, 17], [1170, 12], [1168, 12], [1168, 11], [1171, 11], [1171, 10], [1208, 10], [1208, -5], [1203, -5], [1202, 0], [1199, 0], [1199, 3], [1139, 3], [1139, 2], [1138, 2], [1138, -3], [1139, -3], [1139, -4], [1199, -4], [1198, -4], [1198, 0], [1202, 0], [1202, -4], [1201, -4], [1201, -6], [1138, -6], [1137, -6], [1137, -5], [1136, -5], [1136, 4], [1137, 4], [1137, 5], [1202, 5], [1201, 2], [1204, 2], [1204, -3], [1206, -3], [1206, 8], [1166, 8], [1166, 14], [1168, 14], [1168, 17], [1170, 17]]}, "center": {"253-258": [1200, -2]}}, {"id": 4477, "name": "Unicum", "description": "Unicum is one of the national drinks in Hungary. Is a bitter herbal liqueur, often drunk as a digestif and apéritif.", "links": {"website": ["https://www.zwackunicum.hu/hu/eletkor-ellenorzes/"], "subreddit": ["hungary"]}, "path": {"249": [[-1186, -8], [-1189, -13], [-1183, -18], [-1183, -25], [-1180, -25], [-1179, -18], [-1175, -13], [-1177, -8], [-1179, -7], [-1184, -7]]}, "center": {"249": [-1181, -13]}}, -{"id": 4478, "name": "0 and ∞", "description": "The Artwork of 2 extreme numbers: 0 and ∞. However, This was griefed by advanced bots ruining this and many other arts across the canvas.", "links": {"subreddit": ["IndiaPlace"]}, "path": {"247-258": [[815, -192], [811, -192], [810, -191], [809, -191], [809, -190], [808, -190], [807, -189], [806, -188], [805, -187], [796, -187], [796, -186], [793, -186], [793, -185], [792, -184], [791, -183], [790, -183], [790, -182], [789, -182], [789, -181], [789, -180], [788, -180], [788, -171], [789, -171], [789, -168], [790, -168], [791, -167], [793, -165], [793, -164], [796, -164], [795, -163], [805, -163], [808, -159], [809, -159], [810, -158], [821, -158], [824, -161], [824, -163], [834, -163], [834, -164], [836, -164], [840, -170], [840, -180], [839, -180], [839, -182], [838, -182], [838, -183], [837, -183], [837, -184], [836, -184], [836, -185], [835, -185], [835, -186], [833, -186], [833, -187], [823, -187], [822, -188], [821, -189], [821, -190], [820, -190], [819, -191], [818, -191], [818, -192], [814, -192]]}, "center": {"247-258": [814, -175]}}, -{"id": 4479, "name": "Golosina Lunar Toffee", "description": "Este es un dulce de toffee que aparece en el cómic Las Golosinas, se caracteriza por su envoltura blanca con lunares azules.\nLas Golosinas es un cómic peruano que nos zambulle en las aventuras circenses de tres payasitas Chupetina, Granelina y Serpentina.", "links": {"website": ["https://www.webtoons.com/es/challenge/las-golosinas-/list?title_no=798177"]}, "path": {"178-259": [[-709, -764], [-698, -764], [-698, -760], [-709, -760]]}, "center": {"178-259": [-703, -762]}}, +{"id": 4478, "name": "0 and ∞", "description": "The Artwork of 2 extreme numbers: 0 and ∞. However, This was griefed by advanced bots ruining this and many other arts across the canvas.", "links": {"subreddit": ["IndiaPlace"]}, "path": {"247-258, T": [[815, -192], [811, -192], [810, -191], [809, -191], [809, -190], [808, -190], [807, -189], [806, -188], [805, -187], [796, -187], [796, -186], [793, -186], [793, -185], [792, -184], [791, -183], [790, -183], [790, -182], [789, -182], [789, -181], [789, -180], [788, -180], [788, -171], [789, -171], [789, -168], [790, -168], [791, -167], [793, -165], [793, -164], [796, -164], [795, -163], [805, -163], [808, -159], [809, -159], [810, -158], [821, -158], [824, -161], [824, -163], [834, -163], [834, -164], [836, -164], [840, -170], [840, -180], [839, -180], [839, -182], [838, -182], [838, -183], [837, -183], [837, -184], [836, -184], [836, -185], [835, -185], [835, -186], [833, -186], [833, -187], [823, -187], [822, -188], [821, -189], [821, -190], [820, -190], [819, -191], [818, -191], [818, -192], [814, -192]]}, "center": {"247-258, T": [814, -175]}}, +{"id": 4479, "name": "Golosina Lunar Toffee", "description": "Este es un dulce de toffee que aparece en el cómic Las Golosinas, se caracteriza por su envoltura blanca con lunares azules.\nLas Golosinas es un cómic peruano que nos zambulle en las aventuras circenses de tres payasitas Chupetina, Granelina y Serpentina.", "links": {"website": ["https://www.webtoons.com/es/challenge/las-golosinas-/list?title_no=798177"]}, "path": {"178-259, T": [[-709, -764], [-698, -764], [-698, -760], [-709, -760]]}, "center": {"178-259, T": [-703, -762]}}, {"id": 4480, "name": "Lonely Wizard", "description": "Lonely Wizard is a character from the indie game Inscryption. Known the community as Stimmy.", "links": {"website": ["https://store.steampowered.com/app/1092790/Inscryption/"], "subreddit": ["inscryption"], "discord": ["danielmullinsgames"]}, "path": {"248": [[-1013, -318], [-1009, -316], [-1007, -317], [-1004, -317], [-1000, -313], [-1002, -305], [-1008, -299], [-1006, -295], [-1005, -289], [-1010, -286], [-1011, -289], [-1008, -291], [-1012, -294], [-1014, -294], [-1010, -282], [-1013, -282], [-1017, -292], [-1016, -297], [-1023, -307], [-1023, -315], [-1017, -319], [-1012, -318], [-1013, -307]]}, "center": {"248": [-1007, -310]}}, -{"id": 4481, "name": "Bocchi Hitori (Hitori Bocchi no Marumaru Seikatsu)", "description": "A girl with social anxiety who has difficulty communicating with others. Has a goal to befriending everyone in her class before graduation.", "links": {"website": ["https://en.wikipedia.org/wiki/Hitori_Bocchi_no_Marumaru_Seikatsu"]}, "path": {"250-258": [[-1054, -5], [-1040, -5], [-1040, 12], [-1054, 12]]}, "center": {"250-258": [-1047, 4]}}, +{"id": 4481, "name": "Bocchi Hitori (Hitori Bocchi no Marumaru Seikatsu)", "description": "A girl with social anxiety who has difficulty communicating with others. Has a goal to befriending everyone in her class before graduation.", "links": {"website": ["https://en.wikipedia.org/wiki/Hitori_Bocchi_no_Marumaru_Seikatsu"]}, "path": {"250-258, T": [[-1054, -5], [-1040, -5], [-1040, 12], [-1054, 12]]}, "center": {"250-258, T": [-1047, 4]}}, {"id": 4482, "name": "Kremówka", "description": "Favorite sweet of the polish pope", "links": {}, "path": {"32": [[-166, -192], [-165, -192], [-166, -184], [-156, -182], [-149, -186], [-149, -192], [-155, -195], [-163, -193]]}, "center": {"32": [-156, -189]}}, -{"id": 4483, "name": "Tama", "description": "Tama gets infected by a virus.\n\nAnime: Gintama", "links": {"subreddit": ["Gintama"]}, "path": {"216-258": [[1189, -781], [1193, -781], [1195, -779], [1195, -778], [1197, -778], [1201, -774], [1202, -773], [1202, -765], [1203, -765], [1204, -766], [1205, -765], [1205, -764], [1204, -763], [1204, -762], [1202, -760], [1202, -758], [1199, -755], [1199, -754], [1205, -748], [1205, -747], [1206, -746], [1206, -743], [1205, -742], [1205, -740], [1204, -739], [1203, -739], [1202, -738], [1202, -737], [1200, -735], [1200, -734], [1199, -733], [1199, -732], [1197, -730], [1194, -730], [1193, -731], [1193, -733], [1192, -734], [1192, -736], [1191, -736], [1190, -735], [1190, -734], [1189, -733], [1189, -731], [1188, -730], [1185, -730], [1183, -732], [1183, -733], [1182, -734], [1181, -735], [1177, -735], [1190, -735], [1191, -736], [1192, -736], [1192, -744], [1176, -744], [1191, -744], [1191, -754], [1190, -755], [1190, -758], [1189, -759], [1186, -759], [1185, -760], [1183, -760], [1183, -761], [1182, -762], [1179, -762], [1179, -760], [1181, -760], [1179, -760], [1179, -762], [1177, -764], [1177, -765], [1178, -766], [1179, -765], [1180, -766], [1180, -773], [1185, -778], [1187, -778]]}, "center": {"216-258": [1192, -769]}}, +{"id": 4483, "name": "Tama", "description": "Tama gets infected by a virus.\n\nAnime: Gintama", "links": {"subreddit": ["Gintama"]}, "path": {"216-258, T": [[1189, -781], [1193, -781], [1195, -779], [1195, -778], [1197, -778], [1201, -774], [1202, -773], [1202, -765], [1203, -765], [1204, -766], [1205, -765], [1205, -764], [1204, -763], [1204, -762], [1202, -760], [1202, -758], [1199, -755], [1199, -754], [1205, -748], [1205, -747], [1206, -746], [1206, -743], [1205, -742], [1205, -740], [1204, -739], [1203, -739], [1202, -738], [1202, -737], [1200, -735], [1200, -734], [1199, -733], [1199, -732], [1197, -730], [1194, -730], [1193, -731], [1193, -733], [1192, -734], [1192, -736], [1191, -736], [1190, -735], [1190, -734], [1189, -733], [1189, -731], [1188, -730], [1185, -730], [1183, -732], [1183, -733], [1182, -734], [1181, -735], [1177, -735], [1190, -735], [1191, -736], [1192, -736], [1192, -744], [1176, -744], [1191, -744], [1191, -754], [1190, -755], [1190, -758], [1189, -759], [1186, -759], [1185, -760], [1183, -760], [1183, -761], [1182, -762], [1179, -762], [1179, -760], [1181, -760], [1179, -760], [1179, -762], [1177, -764], [1177, -765], [1178, -766], [1179, -765], [1180, -766], [1180, -773], [1185, -778], [1187, -778]]}, "center": {"216-258, T": [1192, -769]}}, {"id": 4484, "name": "Shura Hiwa", "description": "Vtuber hispanohablante", "links": {"website": ["https://shurahiwafansite.live/", "https://twitter.com/ShuraHiwa", "https://www.youtube.com/@ShuraHiwa"]}, "path": {"246": [[-1292, -61], [-1291, -59], [-1294, -59], [-1295, -60], [-1297, -61], [-1298, -62], [-1298, -69], [-1297, -73], [-1294, -76], [-1294, -74], [-1293, -74], [-1292, -75], [-1288, -75], [-1287, -74], [-1286, -74], [-1286, -76], [-1285, -75], [-1284, -74], [-1283, -73], [-1283, -70], [-1282, -69], [-1282, -62], [-1283, -61], [-1284, -61], [-1285, -60], [-1286, -59], [-1289, -59], [-1289, -60], [-1290, -60], [-1296, -60]]}, "center": {"246": [-1290, -68]}}, -{"id": 4485, "name": "Pepe", "description": "Lil pepe high asf", "links": {}, "path": {"250-258": [[496, -889], [505, -889], [506, -881], [496, -881]]}, "center": {"250-258": [501, -885]}}, -{"id": 4486, "name": "Melk", "description": "Melk made a triumphant return from r/place 2022, luckily Melk's sworn enemy Poland was nowhere in sight allowing Melk to live a full life next to his new bff Niko from Oneshot", "links": {"website": ["https://roing.us/"]}, "path": {"208-258": [[-1427, 585], [-1420, 585], [-1420, 577], [-1427, 577]]}, "center": {"208-258": [-1423, 581]}}, -{"id": 4487, "name": "Flags of the Dutch Provinces", "description": "The flags of the 12 Dutch provinces. From top left to bottom right: Friesland, Groningen, Drenthe, Overijssel, Gelderland, Utrecht, Noord-Holland, Zuid-Holland, Zeeland, Noord-Brabant, Limburg, Flevoland.", "links": {}, "path": {"250-258": [[99, -500], [99, -480], [173, -480], [173, -500]]}, "center": {"250-258": [136, -490]}}, -{"id": 4489, "name": "Bobby ✞", "description": "Bobby a.k.a Patitas de cheeto, es un personaje del servidor QSMP. Se trata de un huevito de dragon, hijo adoptivo de Jaiden y Roier, el cual tiene de mejor amigo a Richarlyson. Al ser dibujado se le representara con un halo de angel, ya que este huevito tristemente se fue a los cielos. ✞", "links": {}, "path": {"74-251": [[405, 437], [408, 437], [408, 436], [409, 436], [409, 435], [410, 435], [410, 430], [409, 430], [409, 429], [409, 427], [410, 427], [409, 427], [409, 426], [404, 426], [404, 427], [403, 427], [404, 427], [404, 428], [404, 430], [403, 430], [403, 435], [404, 435], [404, 436], [405, 436]]}, "center": {"74-251": [406, 432]}}, -{"id": 4490, "name": "Shiny Swablu", "description": "Flying above tropical waters, this is the shiny form of the cotton bird pokemon swablu. This normal-flying type was built by the pokemonplace2 community and allied with the Bluey community.", "links": {"subreddit": ["pokemonplace2"], "discord": ["TZeRPaFZ"]}, "path": {"250-258": [[-97, 215], [-97, 217], [-96, 217], [-95, 217], [-95, 218], [-93, 218], [-93, 219], [-92, 219], [-92, 220], [-91, 220], [-91, 221], [-89, 221], [-89, 222], [-84, 222], [-84, 223], [-83, 223], [-83, 224], [-81, 224], [-81, 223], [-80, 223], [-80, 221], [-79, 221], [-80, 221], [-80, 220], [-81, 220], [-81, 219], [-83, 219], [-83, 217], [-82, 217], [-82, 216], [-81, 216], [-81, 215], [-82, 215], [-82, 216], [-85, 216], [-85, 215], [-86, 215], [-86, 214], [-87, 214], [-87, 212], [-85, 212], [-85, 211], [-84, 211], [-85, 211], [-85, 210], [-86, 210], [-86, 211], [-89, 211], [-89, 210], [-90, 210], [-90, 209], [-91, 209], [-91, 210], [-92, 210], [-92, 211], [-90, 211], [-90, 212], [-89, 212], [-89, 214], [-90, 214], [-90, 215], [-92, 215], [-92, 214], [-93, 214], [-93, 213], [-95, 213], [-95, 214], [-96, 214], [-96, 215], [-97, 215], [-97, 217]]}, "center": {"250-258": [-88, 218]}}, -{"id": 4491, "name": "Fortnite Battle Bus", "description": "A battle bus from the popular game \"Fortnite Battle Royale\". Made by r/FortNiteBR and r/FORTnITE", "links": {"subreddit": ["FORTnITE", "FortNiteBR"]}, "path": {"166-258": [[-891, 542], [-866, 542], [-866, 552], [-866, 561], [-891, 561]]}, "center": {"166-258": [-878, 552]}}, -{"id": 4492, "name": "Meltryllis", "description": "Meltryllis (メルトリリス, also romanized as Meltlilith), Class Name Alter Ego S (アルターエゴ S), is an Alter Ego-class High-Servant of BB in the CCC Incidents of Fate/EXTRA CCC and Fate/EXTRA CCC Fox Tail. She is one of the Servants of Ritsuka Fujimaru in the Grand Order conflicts of Fate/Grand Order.\n\nThis is the simplified form of her ascension 1 of her swimsuit version in Fate/Grand Order", "links": {"website": ["https://typemoon.fandom.com/wiki/Meltryllis"], "subreddit": ["fatestaynightplace"], "discord": ["RRAjUqwXm9"]}, "path": {"208-258": [[854, -203], [862, -203], [862, -193], [854, -193]]}, "center": {"208-258": [858, -198]}}, -{"id": 4493, "name": "Super Shiny Sword", "description": "The Super Shiny Sword is a Custom Sword from the Minecraft Server \"Uniquetings\". This sword is made from every ore in Minecraft's 1.15 version. It was known for a very long time as the Strongest Sword on the server, and became it's most iconic item.", "links": {"subreddit": ["uniquetings"], "discord": ["WFewV4KhX6"]}, "path": {"250-258": [[-760, 198], [-760, 186], [-752, 186], [-746, 181], [-744, 181], [-744, 186], [-750, 192], [-748, 194], [-748, 198]]}, "center": {"250-258": [-755, 192]}}, +{"id": 4485, "name": "Pepe", "description": "Lil pepe high asf", "links": {}, "path": {"250-258, T": [[496, -889], [505, -889], [506, -881], [496, -881]]}, "center": {"250-258, T": [501, -885]}}, +{"id": 4486, "name": "Melk", "description": "Melk made a triumphant return from r/place 2022, luckily Melk's sworn enemy Poland was nowhere in sight allowing Melk to live a full life next to his new bff Niko from Oneshot", "links": {"website": ["https://roing.us/"]}, "path": {"208-258, T": [[-1427, 585], [-1420, 585], [-1420, 577], [-1427, 577]]}, "center": {"208-258, T": [-1423, 581]}}, +{"id": 4487, "name": "Flags of the Dutch Provinces", "description": "The flags of the 12 Dutch provinces. From top left to bottom right: Friesland, Groningen, Drenthe, Overijssel, Gelderland, Utrecht, Noord-Holland, Zuid-Holland, Zeeland, Noord-Brabant, Limburg, Flevoland.", "links": {}, "path": {"250-258, T": [[99, -500], [99, -480], [173, -480], [173, -500]]}, "center": {"250-258, T": [136, -490]}}, +{"id": 4489, "name": "Bobby ✞", "description": "Bobby a.k.a Patitas de cheeto, es un personaje del servidor QSMP. Se trata de un huevito de dragon, hijo adoptivo de Jaiden y Roier, el cual tiene de mejor amigo a Richarlyson. Al ser dibujado se le representara con un halo de angel, ya que este huevito tristemente se fue a los cielos. ✞", "links": {}, "path": {"74-251, T": [[405, 437], [408, 437], [408, 436], [409, 436], [409, 435], [410, 435], [410, 430], [409, 430], [409, 429], [409, 427], [410, 427], [409, 427], [409, 426], [404, 426], [404, 427], [403, 427], [404, 427], [404, 428], [404, 430], [403, 430], [403, 435], [404, 435], [404, 436], [405, 436]]}, "center": {"74-251, T": [406, 432]}}, +{"id": 4490, "name": "Shiny Swablu", "description": "Flying above tropical waters, this is the shiny form of the cotton bird pokemon swablu. This normal-flying type was built by the pokemonplace2 community and allied with the Bluey community.", "links": {"subreddit": ["pokemonplace2"], "discord": ["TZeRPaFZ"]}, "path": {"250-258, T": [[-97, 215], [-97, 217], [-96, 217], [-95, 217], [-95, 218], [-93, 218], [-93, 219], [-92, 219], [-92, 220], [-91, 220], [-91, 221], [-89, 221], [-89, 222], [-84, 222], [-84, 223], [-83, 223], [-83, 224], [-81, 224], [-81, 223], [-80, 223], [-80, 221], [-79, 221], [-80, 221], [-80, 220], [-81, 220], [-81, 219], [-83, 219], [-83, 217], [-82, 217], [-82, 216], [-81, 216], [-81, 215], [-82, 215], [-82, 216], [-85, 216], [-85, 215], [-86, 215], [-86, 214], [-87, 214], [-87, 212], [-85, 212], [-85, 211], [-84, 211], [-85, 211], [-85, 210], [-86, 210], [-86, 211], [-89, 211], [-89, 210], [-90, 210], [-90, 209], [-91, 209], [-91, 210], [-92, 210], [-92, 211], [-90, 211], [-90, 212], [-89, 212], [-89, 214], [-90, 214], [-90, 215], [-92, 215], [-92, 214], [-93, 214], [-93, 213], [-95, 213], [-95, 214], [-96, 214], [-96, 215], [-97, 215], [-97, 217]]}, "center": {"250-258, T": [-88, 218]}}, +{"id": 4491, "name": "Fortnite Battle Bus", "description": "A battle bus from the popular game \"Fortnite Battle Royale\". Made by r/FortNiteBR and r/FORTnITE", "links": {"subreddit": ["FORTnITE", "FortNiteBR"]}, "path": {"166-258, T": [[-891, 542], [-866, 542], [-866, 552], [-866, 561], [-891, 561]]}, "center": {"166-258, T": [-878, 552]}}, +{"id": 4492, "name": "Meltryllis", "description": "Meltryllis (メルトリリス, also romanized as Meltlilith), Class Name Alter Ego S (アルターエゴ S), is an Alter Ego-class High-Servant of BB in the CCC Incidents of Fate/EXTRA CCC and Fate/EXTRA CCC Fox Tail. She is one of the Servants of Ritsuka Fujimaru in the Grand Order conflicts of Fate/Grand Order.\n\nThis is the simplified form of her ascension 1 of her swimsuit version in Fate/Grand Order", "links": {"website": ["https://typemoon.fandom.com/wiki/Meltryllis"], "subreddit": ["fatestaynightplace"], "discord": ["RRAjUqwXm9"]}, "path": {"208-258, T": [[854, -203], [862, -203], [862, -193], [854, -193]]}, "center": {"208-258, T": [858, -198]}}, +{"id": 4493, "name": "Super Shiny Sword", "description": "The Super Shiny Sword is a Custom Sword from the Minecraft Server \"Uniquetings\". This sword is made from every ore in Minecraft's 1.15 version. It was known for a very long time as the Strongest Sword on the server, and became it's most iconic item.", "links": {"subreddit": ["uniquetings"], "discord": ["WFewV4KhX6"]}, "path": {"250-258, T": [[-760, 198], [-760, 186], [-752, 186], [-746, 181], [-744, 181], [-744, 186], [-750, 192], [-748, 194], [-748, 198]]}, "center": {"250-258, T": [-755, 192]}}, {"id": 4494, "name": "French Flag", "description": "A French flag created by Xiroz on 5:45am and join by ErwannLaylee, a french streamer who expend with followers.", "links": {"website": ["https://twitch.tv/erwannlaylee"], "discord": ["KJ4gezGUCS"]}, "path": {"236": [[1110, -847], [1110, -822], [1113, -822], [1113, -847]]}, "center": {"236": [1112, -834]}}, -{"id": 4495, "name": "Royal Monogram of King Philippe", "description": "Official Royal Monogram of the King of the Belgians since July 2013, King Philippe of Belgium (AKA Filip in Flemish).\n\nDrawn to celebrate 21 July, the National Day of Belgium, also coinciding with the 10-year anniversary of the King's accession to the throne.", "links": {"website": ["https://commons.wikimedia.org/wiki/File:Royal_Monogram_of_Philippe_of_Belgium.svg"], "subreddit": ["Belgium"], "discord": ["Belgium"]}, "path": {"21-258": [[-352, -129], [-349, -128], [-349, -124], [-341, -123], [-341, -116], [-343, -113], [-343, -111], [-337, -106], [-339, -101], [-341, -98], [-346, -97], [-349, -90], [-342, -86], [-341, -89], [-338, -88], [-338, -80], [-347, -80], [-351, -85], [-357, -81], [-368, -81], [-368, -89], [-364, -88], [-364, -86], [-357, -90], [-359, -97], [-359, -98], [-364, -101], [-360, -105], [-365, -106], [-363, -111], [-361, -111], [-363, -123], [-356, -124]]}, "center": {"21-258": [-352, -115]}}, -{"id": 4496, "name": "Bart Simpson", "description": "\"The Simpsons\" is an American series very famous all over the world. \n\nThis Bart Simpson is te result of the french user (u/trentsistrent) who is a very big fan of the show", "links": {"subreddit": ["simpsonspixel"]}, "path": {"250-258": [[352, -963], [352, -965], [353, -965], [353, -973], [353, -972], [355, -972], [355, -973], [355, -972], [357, -972], [357, -973], [357, -968], [357, -967], [358, -966], [358, -963]]}, "center": {"250-258": [355, -966]}}, -{"id": 4497, "name": "Pal the stickman (REAL)", "description": "Pal is a funny little stickman with blue sleeves made by u/QuantaQuark\n(This was made possible with the help of the one submitting this and a few other friends of his)", "links": {"subreddit": ["palthestickman"]}, "path": {"206-227": [[-1099, 536], [-1099, 538], [-1101, 538], [-1101, 535], [-1100, 535], [-1100, 534], [-1100, 535], [-1102, 535], [-1102, 533], [-1101, 533], [-1101, 529], [-1097, 529], [-1097, 533], [-1096, 533], [-1096, 535], [-1098, 535], [-1098, 534], [-1098, 535], [-1097, 535], [-1097, 538], [-1099, 538]], "184-204": [[-1110, 507], [-1110, 509], [-1112, 509], [-1112, 506], [-1111, 506], [-1111, 505], [-1111, 506], [-1113, 506], [-1113, 504], [-1112, 504], [-1112, 500], [-1108, 500], [-1108, 503], [-1107, 503], [-1107, 506], [-1109, 506], [-1109, 505], [-1109, 506], [-1108, 506], [-1108, 509], [-1110, 509]], "176-180": [[-1323, 277], [-1323, 279], [-1325, 279], [-1325, 276], [-1324, 276], [-1324, 275], [-1324, 276], [-1326, 276], [-1326, 274], [-1325, 274], [-1325, 270], [-1321, 270], [-1321, 274], [-1320, 274], [-1320, 276], [-1322, 276], [-1322, 275], [-1322, 276], [-1321, 276], [-1321, 279], [-1323, 279]], "237-258": [[-1316, 969], [-1316, 971], [-1318, 971], [-1318, 968], [-1317, 968], [-1317, 967], [-1317, 968], [-1319, 968], [-1319, 966], [-1318, 966], [-1318, 962], [-1314, 962], [-1314, 966], [-1313, 966], [-1313, 968], [-1315, 968], [-1315, 967], [-1315, 968], [-1314, 968], [-1314, 971], [-1316, 971]]}, "center": {"206-227": [-1099, 532], "184-204": [-1110, 503], "176-180": [-1323, 273], "237-258": [-1316, 965]}}, -{"id": 4498, "name": "The Unwanted Heart", "description": "Nobody really wanted this heart in r/deltarune's piece but it stayed anyway.\n\nI guess you could say... it refused hehehehehehehehehe *gunshot*", "links": {}, "path": {"159-258": [[372, 944], [371, 943], [369, 943], [368, 944], [368, 947], [372, 951], [373, 951], [377, 947], [377, 944], [376, 943], [374, 943], [373, 944]]}, "center": {"159-258": [373, 947]}}, -{"id": 4499, "name": "MLP Pet Totem", "description": "This is a totem pole featuring the pets of the main characters in My Little Pony: Friendship is Magic. From top to bottom, they are Owlowiscious (owl), Opalescence (cat), Gummy (alligator), Tank (tortoise), Angel (rabbit), and Winona (dog).", "links": {"website": ["https://mlp.fandom.com/wiki/Owlowiscious", "https://mlp.fandom.com/wiki/Opalescence", "https://mlp.fandom.com/wiki/Gummy", "https://mlp.fandom.com/wiki/Tank", "https://mlp.fandom.com/wiki/Angel", "https://mlp.fandom.com/wiki/Winona"], "subreddit": ["mylittlepony"]}, "path": {"123-258": [[-940, 9], [-931, 9], [-928, 15], [-926, 17], [-925, 55], [-939, 55], [-941, 49], [-941, 39], [-943, 38], [-943, 24], [-942, 24], [-942, 13]]}, "center": {"123-258": [-934, 33]}}, -{"id": 4500, "name": "I Brought You My Bullets, You Brought Me Your Love - My Chemical Romance", "description": "The album cover of \"I Brought You My Bullets, You Brought Me Your Love\" (commonly referred to as \"Bullets\"), the debut album of My Chemical Romance.", "links": {"subreddit": ["MyChemicalRomance"]}, "path": {"250-258": [[1309, -994], [1329, -994], [1329, -969], [1309, -969]]}, "center": {"250-258": [1319, -981]}}, +{"id": 4495, "name": "Royal Monogram of King Philippe", "description": "Official Royal Monogram of the King of the Belgians since July 2013, King Philippe of Belgium (AKA Filip in Flemish).\n\nDrawn to celebrate 21 July, the National Day of Belgium, also coinciding with the 10-year anniversary of the King's accession to the throne.", "links": {"website": ["https://commons.wikimedia.org/wiki/File:Royal_Monogram_of_Philippe_of_Belgium.svg"], "subreddit": ["Belgium"], "discord": ["Belgium"]}, "path": {"21-258, T": [[-352, -129], [-349, -128], [-349, -124], [-341, -123], [-341, -116], [-343, -113], [-343, -111], [-337, -106], [-339, -101], [-341, -98], [-346, -97], [-349, -90], [-342, -86], [-341, -89], [-338, -88], [-338, -80], [-347, -80], [-351, -85], [-357, -81], [-368, -81], [-368, -89], [-364, -88], [-364, -86], [-357, -90], [-359, -97], [-359, -98], [-364, -101], [-360, -105], [-365, -106], [-363, -111], [-361, -111], [-363, -123], [-356, -124]]}, "center": {"21-258, T": [-352, -115]}}, +{"id": 4496, "name": "Bart Simpson", "description": "\"The Simpsons\" is an American series very famous all over the world. \n\nThis Bart Simpson is te result of the french user (u/trentsistrent) who is a very big fan of the show", "links": {"subreddit": ["simpsonspixel"]}, "path": {"250-258, T": [[352, -963], [352, -965], [353, -965], [353, -973], [353, -972], [355, -972], [355, -973], [355, -972], [357, -972], [357, -973], [357, -968], [357, -967], [358, -966], [358, -963]]}, "center": {"250-258, T": [355, -966]}}, +{"id": 4497, "name": "Pal the stickman (REAL)", "description": "Pal is a funny little stickman with blue sleeves made by u/QuantaQuark\n(This was made possible with the help of the one submitting this and a few other friends of his)", "links": {"subreddit": ["palthestickman"]}, "path": {"206-227": [[-1099, 536], [-1099, 538], [-1101, 538], [-1101, 535], [-1100, 535], [-1100, 534], [-1100, 535], [-1102, 535], [-1102, 533], [-1101, 533], [-1101, 529], [-1097, 529], [-1097, 533], [-1096, 533], [-1096, 535], [-1098, 535], [-1098, 534], [-1098, 535], [-1097, 535], [-1097, 538], [-1099, 538]], "184-204": [[-1110, 507], [-1110, 509], [-1112, 509], [-1112, 506], [-1111, 506], [-1111, 505], [-1111, 506], [-1113, 506], [-1113, 504], [-1112, 504], [-1112, 500], [-1108, 500], [-1108, 503], [-1107, 503], [-1107, 506], [-1109, 506], [-1109, 505], [-1109, 506], [-1108, 506], [-1108, 509], [-1110, 509]], "176-180": [[-1323, 277], [-1323, 279], [-1325, 279], [-1325, 276], [-1324, 276], [-1324, 275], [-1324, 276], [-1326, 276], [-1326, 274], [-1325, 274], [-1325, 270], [-1321, 270], [-1321, 274], [-1320, 274], [-1320, 276], [-1322, 276], [-1322, 275], [-1322, 276], [-1321, 276], [-1321, 279], [-1323, 279]], "237-258, T": [[-1316, 969], [-1316, 971], [-1318, 971], [-1318, 968], [-1317, 968], [-1317, 967], [-1317, 968], [-1319, 968], [-1319, 966], [-1318, 966], [-1318, 962], [-1314, 962], [-1314, 966], [-1313, 966], [-1313, 968], [-1315, 968], [-1315, 967], [-1315, 968], [-1314, 968], [-1314, 971], [-1316, 971]]}, "center": {"206-227": [-1099, 532], "184-204": [-1110, 503], "176-180": [-1323, 273], "237-258, T": [-1316, 965]}}, +{"id": 4498, "name": "The Unwanted Heart", "description": "Nobody really wanted this heart in r/deltarune's piece but it stayed anyway.\n\nI guess you could say... it refused hehehehehehehehehe *gunshot*", "links": {}, "path": {"159-258, T": [[372, 944], [371, 943], [369, 943], [368, 944], [368, 947], [372, 951], [373, 951], [377, 947], [377, 944], [376, 943], [374, 943], [373, 944]]}, "center": {"159-258, T": [373, 947]}}, +{"id": 4499, "name": "MLP Pet Totem", "description": "This is a totem pole featuring the pets of the main characters in My Little Pony: Friendship is Magic. From top to bottom, they are Owlowiscious (owl), Opalescence (cat), Gummy (alligator), Tank (tortoise), Angel (rabbit), and Winona (dog).", "links": {"website": ["https://mlp.fandom.com/wiki/Owlowiscious", "https://mlp.fandom.com/wiki/Opalescence", "https://mlp.fandom.com/wiki/Gummy", "https://mlp.fandom.com/wiki/Tank", "https://mlp.fandom.com/wiki/Angel", "https://mlp.fandom.com/wiki/Winona"], "subreddit": ["mylittlepony"]}, "path": {"123-258, T": [[-940, 9], [-931, 9], [-928, 15], [-926, 17], [-925, 55], [-939, 55], [-941, 49], [-941, 39], [-943, 38], [-943, 24], [-942, 24], [-942, 13]]}, "center": {"123-258, T": [-934, 33]}}, +{"id": 4500, "name": "I Brought You My Bullets, You Brought Me Your Love - My Chemical Romance", "description": "The album cover of \"I Brought You My Bullets, You Brought Me Your Love\" (commonly referred to as \"Bullets\"), the debut album of My Chemical Romance.", "links": {"subreddit": ["MyChemicalRomance"]}, "path": {"250-258, T": [[1309, -994], [1329, -994], [1329, -969], [1309, -969]]}, "center": {"250-258, T": [1319, -981]}}, {"id": 4501, "name": "Shotbow Network", "description": "Shotbow Network is a server network for the game Minecraft. It is home to classic game modes like MineZ, Annihilation, and Smash.\n\nThis text was written by a bot net. According to Shotbow Network, the bots were orchestrated by a user who had been hacking on Shotbow for years.", "links": {"website": ["https://shotbow.net", "https://twitter.com/ShotbowNetwork/status/1683922584767987712"]}, "path": {"251-258": [[688, -257], [672, -237], [672, -154], [1036, -153], [1060, -213], [1067, -261], [1060, -264], [702, -262]]}, "center": {"251-258": [990, -208]}}, -{"id": 4502, "name": "High-Speed Train Frecciarossa", "description": "Frecciarossa is a high-speed train of the Italian national train operator, Trenitalia, as well as a member of the train category Le Frecce.", "links": {"website": ["https://en.wikipedia.org/wiki/Frecciarossa"], "subreddit": ["italy", "italia"]}, "path": {"145-258": [[-694, 96], [-647, 97], [-624, 109], [-624, 111], [-625, 113], [-694, 114]]}, "center": {"145-258": [-685, 105]}}, +{"id": 4502, "name": "High-Speed Train Frecciarossa", "description": "Frecciarossa is a high-speed train of the Italian national train operator, Trenitalia, as well as a member of the train category Le Frecce.", "links": {"website": ["https://en.wikipedia.org/wiki/Frecciarossa"], "subreddit": ["italy", "italia"]}, "path": {"145-258, T": [[-694, 96], [-647, 97], [-624, 109], [-624, 111], [-625, 113], [-694, 114]]}, "center": {"145-258, T": [-685, 105]}}, {"id": 4503, "name": "Printful, Inc.", "description": "Latvian company Printful", "links": {"website": ["https://www.printful.com/"]}, "path": {"224": [[-32, 565], [-3, 565], [-2, 586], [-32, 586], [-32, 576]]}, "center": {"224": [-17, 576]}}, -{"id": 4504, "name": "Ozen (Made in Abyss)", "description": "The character Ozen from the manga series \"Made in Abyss\"", "links": {"subreddit": ["MadeInAbyss"]}, "path": {"250-258": [[32, -715], [38, -715], [40, -714], [43, -717], [39, -721], [42, -727], [42, -732], [39, -736], [38, -734], [37, -735], [33, -735], [32, -734], [31, -736], [28, -731], [28, -727], [30, -725], [31, -720], [27, -717], [30, -714]]}, "center": {"250-258": [35, -728]}}, -{"id": 4505, "name": "Vivy and Matsumoto", "description": "This art features Vivy and Matsumoto, the leads of the 2021 anime \"Vivy -Fluorite Eye's Song\". Vivy is the girl, Matsumoto is the cube-shaped robot.", "links": {"website": ["https://vivy-portal.com/"], "subreddit": ["Vivy"], "discord": ["V6n7NSVRCE"]}, "path": {"250-258": [[101, -5], [101, -4], [98, -9], [118, -9], [118, 33], [98, 33], [98, -9]]}, "center": {"250-258": [108, 12]}}, +{"id": 4504, "name": "Ozen (Made in Abyss)", "description": "The character Ozen from the manga series \"Made in Abyss\"", "links": {"subreddit": ["MadeInAbyss"]}, "path": {"250-258, T": [[32, -715], [38, -715], [40, -714], [43, -717], [39, -721], [42, -727], [42, -732], [39, -736], [38, -734], [37, -735], [33, -735], [32, -734], [31, -736], [28, -731], [28, -727], [30, -725], [31, -720], [27, -717], [30, -714]]}, "center": {"250-258, T": [35, -728]}}, +{"id": 4505, "name": "Vivy and Matsumoto", "description": "This art features Vivy and Matsumoto, the leads of the 2021 anime \"Vivy -Fluorite Eye's Song\". Vivy is the girl, Matsumoto is the cube-shaped robot.", "links": {"website": ["https://vivy-portal.com/"], "subreddit": ["Vivy"], "discord": ["V6n7NSVRCE"]}, "path": {"250-258, T": [[101, -5], [101, -4], [98, -9], [118, -9], [118, 33], [98, 33], [98, -9]]}, "center": {"250-258, T": [108, 12]}}, {"id": 4506, "name": "Gssspotted", "description": "Gssspotted, a streamer known as \"Uncle Night\" (ลุงไนท์ in Thai) from Thailand. The image being drawn here is from his shirt design.\n\nOn Friday night, the 21st of July, Gssspotted discovered r/place at the exact moment the canvas expanded. He then ordered an army of \"apes\" to colonize an area as one of his viewers suggests to use his T-shirt logo.\n\nAfter 40 minutes of struggle, the face of \"Caesar\"(His alias) has been inscribed upon a canvas, for the world to remember that monkeys too, can do anything just like humans.\n\nGssspotted then ordered that a Banana should be placed to the left between his face and the Indian flag, though little does he know that it will lead to his downfall.\n\nAs the banana is being made, the Indians took that as an attack and start raiding the holy face of Caesar, his majesty then quickly made the decision to turn a banana into a heart to calm things down, it was a success as both sides call the heart as a truce treaty between the monkeys and the Indians...until it wasn't.\n\nAfter Gssspotted loses interest in the tapestry, the Indians started betraying him and colonizing his land by slowly turning the face into their flag. Many apes fled back to their forest, any monkeys that were left defending the area were forcefully fed Tikka Masala and ended up only able to speak in Hindi. A tragic fate for sure.\n\nBut all in all, his efforts were not in vain. For 3 seconds, the face of Caesar appeared in the official timelapse for the world to see. A beautiful moment that proves apes can live amongst humans, just like anyone.\n\nUntil Lord Caesar witnessed that his greatness is memorized, I will post this site on his discord for apes to see their efforts and acclaim them unto eternity.\n\nเพื่อซีซ่าร์.", "links": {"website": ["https://www.facebook.com/gssspotted", "https://www.twitch.tv/gssspotted", "https://www.youtube.com/channel/UC8uxFKMADMhYn80nkfpPa-w"], "discord": ["gssspotted"]}, "path": {"55-58": [[803, -287], [844, -287], [844, -238], [803, -239]]}, "center": {"55-58": [824, -262]}}, -{"id": 4507, "name": "Jaden Williams' Chicken", "description": "A YouTuber and TikToker named Jaden Williams had called to pixel a prepared chicken, simply because funny.", "links": {"website": ["http://youtu.be/lOB8gLtYA-w?t=6321"], "discord": ["qnZbzvm4hc"]}, "path": {"204-258": [[1113, -843], [1113, -836], [1117, -836], [1117, -835], [1118, -835], [1118, -833], [1117, -833], [1117, -832], [1116, -832], [1116, -831], [1117, -831], [1117, -828], [1114, -828], [1114, -827], [1113, -827], [1113, -826], [1112, -826], [1112, -825], [1111, -825], [1111, -823], [1112, -823], [1112, -822], [1113, -822], [1113, -821], [1114, -821], [1114, -820], [1149, -820], [1149, -821], [1149, -822], [1150, -822], [1150, -823], [1151, -823], [1151, -824], [1152, -824], [1152, -825], [1151, -825], [1151, -827], [1148, -827], [1148, -828], [1147, -828], [1147, -833], [1146, -833], [1146, -835], [1145, -835], [1145, -836], [1144, -836], [1144, -837], [1143, -837], [1143, -839], [1142, -839], [1142, -840], [1141, -840], [1141, -841], [1140, -841], [1140, -842], [1115, -842], [1115, -843]]}, "center": {"204-258": [1131, -831]}}, +{"id": 4507, "name": "Jaden Williams' Chicken", "description": "A YouTuber and TikToker named Jaden Williams had called to pixel a prepared chicken, simply because funny.", "links": {"website": ["http://youtu.be/lOB8gLtYA-w?t=6321"], "discord": ["qnZbzvm4hc"]}, "path": {"204-258, T": [[1113, -843], [1113, -836], [1117, -836], [1117, -835], [1118, -835], [1118, -833], [1117, -833], [1117, -832], [1116, -832], [1116, -831], [1117, -831], [1117, -828], [1114, -828], [1114, -827], [1113, -827], [1113, -826], [1112, -826], [1112, -825], [1111, -825], [1111, -823], [1112, -823], [1112, -822], [1113, -822], [1113, -821], [1114, -821], [1114, -820], [1149, -820], [1149, -821], [1149, -822], [1150, -822], [1150, -823], [1151, -823], [1151, -824], [1152, -824], [1152, -825], [1151, -825], [1151, -827], [1148, -827], [1148, -828], [1147, -828], [1147, -833], [1146, -833], [1146, -835], [1145, -835], [1145, -836], [1144, -836], [1144, -837], [1143, -837], [1143, -839], [1142, -839], [1142, -840], [1141, -840], [1141, -841], [1140, -841], [1140, -842], [1115, -842], [1115, -843]]}, "center": {"204-258, T": [1131, -831]}}, {"id": 4508, "name": "Hollow Knight & Rain World", "description": "Collaborative artwork between the Rain World and Hollow Knight communities, depicting the player characters from both games. The left is the Knight from Hollow Knight and the right is the survivor campaign slugcat (also known as a scug) alongside some karma symbols from the game. These two communities are known to have a substantial crossover in player base.", "links": {}, "path": {"18": [[270, 118], [270, 142], [329, 142], [330, 118]]}, "center": {"18": [300, 130]}}, -{"id": 4509, "name": "Coat of arms of the Silesian", "description": "The coat of arms, that serves as the symbol of the Silesian Voivodeship, Poland, features a yellow (golden) eagle on a blue background. The current version of the coat of arms was adopted in 2001, and based on the historical coats of arms of Upper Silesia.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_the_Silesian_Voivodeship"]}, "path": {"232-258": [[575, -132], [583, -132], [583, -126], [580, -123], [578, -123], [575, -126], [575, -132], [583, -132], [583, -126]]}, "center": {"232-258": [578, -126]}}, -{"id": 4511, "name": "Spekulatius", "description": "Spekulatius (Speculaas) is a type of spiced shortcrust biscuit baked with speculaas spices, that is especially popular during the time of Advent. It is usually flat and has a specific design like a windmill in this case.", "links": {"website": ["https://en.wikipedia.org/wiki/Speculaas"], "subreddit": ["placeDE"]}, "path": {"250-258": [[-542, -941], [-542, -969], [-539, -972], [-535, -973], [-530, -973], [-523, -971], [-523, -941]]}, "center": {"250-258": [-532, -957]}}, -{"id": 4512, "name": "Asuka & Rei", "description": "Asuka Langley Soryu (Bottom) and Rei Ayanami (Top) are a pair of mech pilots from the anime \"Neon Genesis Evangelion.\"\n\nAsuka's German heritage led the Evangelion community to collaborate with the country and its large control over r/place.", "links": {"subreddit": ["Asuka", "PlaceDE"]}, "path": {"229-245": [[1189, -571], [1188, -570], [1186, -570], [1185, -571], [1185, -572], [1184, -573], [1183, -574], [1183, -575], [1185, -577], [1183, -579], [1183, -580], [1182, -581], [1182, -583], [1183, -584], [1183, -585], [1185, -587], [1186, -587], [1187, -588], [1191, -588], [1192, -587], [1193, -587], [1195, -585], [1195, -584], [1196, -583], [1196, -581], [1195, -580], [1195, -579], [1193, -577], [1195, -575], [1195, -574], [1193, -572], [1193, -571], [1192, -570], [1190, -570]], "245-258": [[1189, -571], [1188, -570], [1186, -570], [1185, -571], [1185, -572], [1184, -573], [1183, -574], [1183, -575], [1185, -577], [1183, -579], [1183, -580], [1182, -581], [1182, -583], [1183, -584], [1183, -585], [1185, -587], [1186, -587], [1187, -588], [1191, -588], [1192, -587], [1193, -587], [1195, -585], [1195, -584], [1196, -583], [1196, -581], [1195, -580], [1195, -579], [1193, -577], [1195, -575], [1195, -574], [1193, -572], [1193, -571], [1192, -570], [1190, -570], [1189, -571], [1189, -568], [1187, -568], [1186, -567], [1184, -567], [1184, -565], [1183, -564], [1183, -561], [1184, -560], [1184, -559], [1183, -558], [1183, -556], [1184, -555], [1185, -554], [1185, -553], [1186, -552], [1192, -552], [1193, -553], [1193, -554], [1195, -556], [1195, -558], [1194, -559], [1194, -560], [1195, -561], [1195, -564], [1194, -565], [1194, -567], [1192, -567], [1191, -568], [1189, -568]]}, "center": {"229-245": [1189, -582], "245-258": [1189, -582]}}, -{"id": 4513, "name": "Source2 Zombie Escape", "description": "A community driven project, aiming to create Zombie Escape on Counter-Strike 2", "links": {"discord": ["QsSGf9ZEVs"]}, "path": {"150-258": [[250, -804], [250, -796], [266, -796], [266, -804]]}, "center": {"150-258": [258, -800]}}, +{"id": 4509, "name": "Coat of arms of the Silesian", "description": "The coat of arms, that serves as the symbol of the Silesian Voivodeship, Poland, features a yellow (golden) eagle on a blue background. The current version of the coat of arms was adopted in 2001, and based on the historical coats of arms of Upper Silesia.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_the_Silesian_Voivodeship"]}, "path": {"232-258, T": [[575, -132], [583, -132], [583, -126], [580, -123], [578, -123], [575, -126], [575, -132], [583, -132], [583, -126]]}, "center": {"232-258, T": [578, -126]}}, +{"id": 4511, "name": "Spekulatius", "description": "Spekulatius (Speculaas) is a type of spiced shortcrust biscuit baked with speculaas spices, that is especially popular during the time of Advent. It is usually flat and has a specific design like a windmill in this case.", "links": {"website": ["https://en.wikipedia.org/wiki/Speculaas"], "subreddit": ["placeDE"]}, "path": {"250-258, T": [[-542, -941], [-542, -969], [-539, -972], [-535, -973], [-530, -973], [-523, -971], [-523, -941]]}, "center": {"250-258, T": [-532, -957]}}, +{"id": 4512, "name": "Asuka & Rei", "description": "Asuka Langley Soryu (Bottom) and Rei Ayanami (Top) are a pair of mech pilots from the anime \"Neon Genesis Evangelion.\"\n\nAsuka's German heritage led the Evangelion community to collaborate with the country and its large control over r/place.", "links": {"subreddit": ["Asuka", "PlaceDE"]}, "path": {"229-245": [[1189, -571], [1188, -570], [1186, -570], [1185, -571], [1185, -572], [1184, -573], [1183, -574], [1183, -575], [1185, -577], [1183, -579], [1183, -580], [1182, -581], [1182, -583], [1183, -584], [1183, -585], [1185, -587], [1186, -587], [1187, -588], [1191, -588], [1192, -587], [1193, -587], [1195, -585], [1195, -584], [1196, -583], [1196, -581], [1195, -580], [1195, -579], [1193, -577], [1195, -575], [1195, -574], [1193, -572], [1193, -571], [1192, -570], [1190, -570]], "245-258, T": [[1189, -571], [1188, -570], [1186, -570], [1185, -571], [1185, -572], [1184, -573], [1183, -574], [1183, -575], [1185, -577], [1183, -579], [1183, -580], [1182, -581], [1182, -583], [1183, -584], [1183, -585], [1185, -587], [1186, -587], [1187, -588], [1191, -588], [1192, -587], [1193, -587], [1195, -585], [1195, -584], [1196, -583], [1196, -581], [1195, -580], [1195, -579], [1193, -577], [1195, -575], [1195, -574], [1193, -572], [1193, -571], [1192, -570], [1190, -570], [1189, -571], [1189, -568], [1187, -568], [1186, -567], [1184, -567], [1184, -565], [1183, -564], [1183, -561], [1184, -560], [1184, -559], [1183, -558], [1183, -556], [1184, -555], [1185, -554], [1185, -553], [1186, -552], [1192, -552], [1193, -553], [1193, -554], [1195, -556], [1195, -558], [1194, -559], [1194, -560], [1195, -561], [1195, -564], [1194, -565], [1194, -567], [1192, -567], [1191, -568], [1189, -568]]}, "center": {"229-245": [1189, -582], "245-258, T": [1189, -582]}}, +{"id": 4513, "name": "Source2 Zombie Escape", "description": "A community driven project, aiming to create Zombie Escape on Counter-Strike 2", "links": {"discord": ["QsSGf9ZEVs"]}, "path": {"150-258, T": [[250, -804], [250, -796], [266, -796], [266, -804]]}, "center": {"150-258, T": [258, -800]}}, {"id": 4514, "name": "r/LCFC", "description": "The subreddit for Leicester City Football Club", "links": {"subreddit": ["lcfc"]}, "path": {"46": [[141, 257], [147, 257], [147, 275], [141, 275]]}, "center": {"46": [144, 266]}}, -{"id": 4515, "name": "EVE Online", "description": "Eve Online is a space-based, persistent world massively multiplayer online role-playing game developed and published by CCP Games. Players of Eve Online can participate in a number of in-game professions and activities, including mining, piracy, manufacturing, trading, exploration, and combat", "links": {"website": ["https://www.eveonline.com"], "subreddit": ["Eve"], "discord": ["eveonline"]}, "path": {"157-258": [[-157, 428], [-157, 439], [-133, 439], [-133, 428]]}, "center": {"157-258": [-145, 434]}}, -{"id": 4516, "name": "Fiddlebert", "description": "Its are green colored Olimar \n\nIt´s are meme in the community", "links": {"subreddit": ["Pikmin"]}, "path": {"250-258": [[1467, 394], [1463, 386], [1470, 380], [1478, 381], [1479, 394]]}, "center": {"250-258": [1472, 387]}}, -{"id": 4517, "name": "Dolly the Dinosaur", "description": "Dolly is a tiny plush dinosaur that streams games on Twitch. The channel is all about adventure and being comfortable.\nCome join us for Rimworld, Story/Adventure games and more.\nThis is dolly as a bard. One of the emotes on the channel.", "links": {"website": ["https://www.twitch.tv/dolly_the_dinosaur"]}, "path": {"198-259": [[-757, -999], [-757, -983], [-741, -983], [-741, -999]]}, "center": {"198-259": [-749, -991]}}, -{"id": 4518, "name": "Humulus", "description": "Humulus is a small genus of flowering plants in the family Cannabaceae. Hops are the female flowers which is a main flavor and aroma ingredient in many beer styles. Art originally created by Czech community, then continued by Polish community on their flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Humulus"], "subreddit": ["Czech", "Cesky", "Polska", "Poland"]}, "path": {"250-258": [[471, -120], [471, -123], [476, -124], [479, -127], [483, -128], [486, -126], [489, -124], [491, -126], [490, -132], [492, -134], [496, -134], [499, -134], [502, -135], [505, -134], [508, -133], [509, -130], [510, -129], [510, -126], [511, -125], [512, -124], [513, -126], [514, -127], [517, -125], [519, -123], [520, -120]]}, "center": {"250-258": [502, -127]}}, -{"id": 4519, "name": "Mapeadores", "description": "A Counter-Strike community server, mainly focused on Zombie Escape", "links": {"website": ["https://mapeadores.com/"], "discord": ["pZ4RHSGp"]}, "path": {"141-258": [[203, -796], [249, -796], [249, -804], [203, -804]]}, "center": {"141-258": [226, -800]}}, -{"id": 4520, "name": "Cerberus symbol from Mass Effect", "description": "Cerberus is a pro-human interest group led by the Illusive Man and is responsible for Commander Shepard's resurrection in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"174-194": [[-860, -1000], [-844, -1000], [-844, -967], [-859, -967]], "196-259": [[-912, -1000], [-895, -1000], [-896, -967], [-912, -967]]}, "center": {"174-194": [-852, -984], "196-259": [-904, -984]}}, +{"id": 4515, "name": "EVE Online", "description": "Eve Online is a space-based, persistent world massively multiplayer online role-playing game developed and published by CCP Games. Players of Eve Online can participate in a number of in-game professions and activities, including mining, piracy, manufacturing, trading, exploration, and combat", "links": {"website": ["https://www.eveonline.com"], "subreddit": ["Eve"], "discord": ["eveonline"]}, "path": {"157-258, T": [[-157, 428], [-157, 439], [-133, 439], [-133, 428]]}, "center": {"157-258, T": [-145, 434]}}, +{"id": 4516, "name": "Fiddlebert", "description": "Its are green colored Olimar \n\nIt´s are meme in the community", "links": {"subreddit": ["Pikmin"]}, "path": {"250-258, T": [[1467, 394], [1463, 386], [1470, 380], [1478, 381], [1479, 394]]}, "center": {"250-258, T": [1472, 387]}}, +{"id": 4517, "name": "Dolly the Dinosaur", "description": "Dolly is a tiny plush dinosaur that streams games on Twitch. The channel is all about adventure and being comfortable.\nCome join us for Rimworld, Story/Adventure games and more.\nThis is dolly as a bard. One of the emotes on the channel.", "links": {"website": ["https://www.twitch.tv/dolly_the_dinosaur"]}, "path": {"198-259, T": [[-757, -999], [-757, -983], [-741, -983], [-741, -999]]}, "center": {"198-259, T": [-749, -991]}}, +{"id": 4518, "name": "Humulus", "description": "Humulus is a small genus of flowering plants in the family Cannabaceae. Hops are the female flowers which is a main flavor and aroma ingredient in many beer styles. Art originally created by Czech community, then continued by Polish community on their flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Humulus"], "subreddit": ["Czech", "Cesky", "Polska", "Poland"]}, "path": {"250-258, T": [[471, -120], [471, -123], [476, -124], [479, -127], [483, -128], [486, -126], [489, -124], [491, -126], [490, -132], [492, -134], [496, -134], [499, -134], [502, -135], [505, -134], [508, -133], [509, -130], [510, -129], [510, -126], [511, -125], [512, -124], [513, -126], [514, -127], [517, -125], [519, -123], [520, -120]]}, "center": {"250-258, T": [502, -127]}}, +{"id": 4519, "name": "Mapeadores", "description": "A Counter-Strike community server, mainly focused on Zombie Escape", "links": {"website": ["https://mapeadores.com/"], "discord": ["pZ4RHSGp"]}, "path": {"141-258, T": [[203, -796], [249, -796], [249, -804], [203, -804]]}, "center": {"141-258, T": [226, -800]}}, +{"id": 4520, "name": "Cerberus symbol from Mass Effect", "description": "Cerberus is a pro-human interest group led by the Illusive Man and is responsible for Commander Shepard's resurrection in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"174-194": [[-860, -1000], [-844, -1000], [-844, -967], [-859, -967]], "196-259, T": [[-912, -1000], [-895, -1000], [-896, -967], [-912, -967]]}, "center": {"174-194": [-852, -984], "196-259, T": [-904, -984]}}, {"id": 4521, "name": "Steam icon", "description": "The icon of Steam, a video game digital distribution service and storefront from Valve.", "links": {"website": ["https://steampowered.com/"], "subreddit": ["Steam"]}, "path": {"251-258": [[-1432, 978], [-1423, 978], [-1420, 981], [-1420, 990], [-1423, 993], [-1432, 993], [-1435, 990], [-1435, 981]]}, "center": {"251-258": [-1427, 986]}}, -{"id": 4522, "name": "Owls", "description": "Owls", "links": {}, "path": {"247-258": [[307, -838], [307, -834], [336, -834], [336, -804], [300, -804], [300, -796], [369, -796], [369, -802], [348, -802], [348, -804], [342, -804], [342, -838]]}, "center": {"247-258": [339, -801]}}, -{"id": 4523, "name": "Senko's Lab", "description": "This is the logo for Senko's Lab, a series of short (≈1 minute) educational videos that were created by Reddit user u/Vesicool starting in May 2020.\n\nThe videos star the character Senko from the Anime/Manga series The Helpful Fox Senko-san (世話やき狐の仙狐さん) as she teaches the viewers about various scientific phenomena in an easy to digest manner.", "links": {"website": ["https://youtube.com/playlist?list=PL6ZfamVfSZA6Tksn6Y7U0MUw5Vmm5Dy3k", "https://www.reddit.com/r/Animemes/comments/gbg7i1/oc_welcome_to_senkos_lab/"], "subreddit": ["animeducation", "SenkoPlace"], "discord": ["senkoplace"]}, "path": {"196-258": [[-426, 977], [-426, 976], [-431, 976], [-431, 977], [-432, 977], [-432, 979], [-431, 979], [-431, 980], [-433, 980], [-433, 981], [-434, 981], [-434, 982], [-435, 982], [-435, 985], [-436, 985], [-436, 990], [-435, 990], [-435, 991], [-434, 991], [-434, 992], [-433, 992], [-433, 993], [-425, 993], [-425, 992], [-422, 992], [-422, 991], [-421, 991], [-421, 990], [-420, 990], [-420, 989], [-419, 989], [-419, 984], [-420, 984], [-420, 982], [-421, 982], [-421, 981], [-423, 981], [-423, 980], [-426, 980], [-426, 979], [-425, 979], [-425, 978], [-425, 977]]}, "center": {"196-258": [-427, 986]}}, +{"id": 4522, "name": "Owls", "description": "Owls", "links": {}, "path": {"247-258, T": [[307, -838], [307, -834], [336, -834], [336, -804], [300, -804], [300, -796], [369, -796], [369, -802], [348, -802], [348, -804], [342, -804], [342, -838]]}, "center": {"247-258, T": [339, -801]}}, +{"id": 4523, "name": "Senko's Lab", "description": "This is the logo for Senko's Lab, a series of short (≈1 minute) educational videos that were created by Reddit user u/Vesicool starting in May 2020.\n\nThe videos star the character Senko from the Anime/Manga series The Helpful Fox Senko-san (世話やき狐の仙狐さん) as she teaches the viewers about various scientific phenomena in an easy to digest manner.", "links": {"website": ["https://youtube.com/playlist?list=PL6ZfamVfSZA6Tksn6Y7U0MUw5Vmm5Dy3k", "https://www.reddit.com/r/Animemes/comments/gbg7i1/oc_welcome_to_senkos_lab/"], "subreddit": ["animeducation", "SenkoPlace"], "discord": ["senkoplace"]}, "path": {"196-258, T": [[-426, 977], [-426, 976], [-431, 976], [-431, 977], [-432, 977], [-432, 979], [-431, 979], [-431, 980], [-433, 980], [-433, 981], [-434, 981], [-434, 982], [-435, 982], [-435, 985], [-436, 985], [-436, 990], [-435, 990], [-435, 991], [-434, 991], [-434, 992], [-433, 992], [-433, 993], [-425, 993], [-425, 992], [-422, 992], [-422, 991], [-421, 991], [-421, 990], [-420, 990], [-420, 989], [-419, 989], [-419, 984], [-420, 984], [-420, 982], [-421, 982], [-421, 981], [-423, 981], [-423, 980], [-426, 980], [-426, 979], [-425, 979], [-425, 978], [-425, 977]]}, "center": {"196-258, T": [-427, 986]}}, {"id": 4524, "name": "BLEHHHHH :P Cat / I Am Not Doing That Cat", "description": "BLEHHHHH :P Cat is a photo by fatfatmillycat (Instagram). \nThe Photo gets used to post Memes about people not doing somehing that they should.\n-Example-\nTeacher: \"Do your Homework\"\nMe: \"Bleeeehhhh :P. I am not doing that! U can't make me!!! :P", "links": {"website": ["https://knowyourmeme.com/memes/blehhhhh-p-cat"]}, "path": {"215": [[1393, 779], [1392, 732], [1448, 732], [1447, 779], [1408, 778]]}, "center": {"215": [1424, 755]}}, -{"id": 4525, "name": "50 Blessings", "description": "They are the ones who leave messages on the answering machines of operatives", "links": {"subreddit": ["HotlineMiami"], "discord": ["6gawWXyU"]}, "path": {"250-258": [[-291, -854], [-279, -854], [-279, -844], [-291, -844]]}, "center": {"250-258": [-285, -849]}}, +{"id": 4525, "name": "50 Blessings", "description": "They are the ones who leave messages on the answering machines of operatives", "links": {"subreddit": ["HotlineMiami"], "discord": ["6gawWXyU"]}, "path": {"250-258, T": [[-291, -854], [-279, -854], [-279, -844], [-291, -844]]}, "center": {"250-258, T": [-285, -849]}}, {"id": 4526, "name": "Universitario De Deportes (Peru)", "description": "Club Universitario de Deportes, popularly known as Universitario or simply as La \"U\", is a Peruvian football club located in Lima. The club was founded in 7 August 1924 under the name Federación Universitaria by students of the National University of San Marcos but was forced to rename in 1931. Since 1928, the club competes in the top tier of Peruvian football.\n\nThe club won its first Peruvian title in 1929, one year after its debut in the first division. The club won its first double in the 1945 and 1946 seasons and won its only treble after conquering the 2000 season. Since then, Universitario has won twenty-six first division titles becoming the most successful club in Peru and was the first Peruvian club to reach the final of the Copa Libertadores. Universitario is one of the two most popular teams in Peru. In 2010, South American Football Confederation (Conmebol) stated that Universitario is the most popular team in Perú.\n\nCreated by ___The__Doctor___\nSpecial Thanks to Gort Industries for the help in defending :)", "links": {"website": ["https://universitario.pe"]}, "path": {"205-221": [[-1374, -738], [-1359, -738], [-1359, -722], [-1374, -724]]}, "center": {"205-221": [-1366, -730]}}, -{"id": 4527, "name": "Flag of India", "description": "The Flag of India featuring some of their messiest artworks and a few good ones too.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace", "india"]}, "path": {"171-179": [[-1278, -191], [-1278, -120], [-1142, -120], [-1142, -191]], "180-258": [[-1200, -191], [-1200, -117], [-1001, -117], [-1001, -152], [-1000, -152], [-1000, -191]]}, "center": {"171-179": [-1210, -155], "180-258": [-1100, -154]}}, +{"id": 4527, "name": "Flag of India", "description": "The Flag of India featuring some of their messiest artworks and a few good ones too.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace", "india"]}, "path": {"171-179": [[-1278, -191], [-1278, -120], [-1142, -120], [-1142, -191]], "180-258, T": [[-1200, -191], [-1200, -117], [-1001, -117], [-1001, -152], [-1000, -152], [-1000, -191]]}, "center": {"171-179": [-1210, -155], "180-258, T": [-1100, -154]}}, {"id": 4528, "name": "\"The Black Parade\" Pepe - My Chemical Romance", "description": "A drawing of Pepe, the skeleton featured the cover of My Chemical Romance's third album \"The Black Parade\", largely considered a mascot of the MCR community.", "links": {"subreddit": ["MyChemicalRomance"]}, "path": {"151-202": [[-821, 457], [-801, 457], [-801, 481], [-821, 481]]}, "center": {"151-202": [-811, 469]}}, -{"id": 4529, "name": "Swiss Federal Railways (SBB/CFF/FFS)", "description": "Swiss Federal Railways is the national railway company of Switzerland.", "links": {"website": ["http://www.sbb.ch/en/"], "subreddit": ["placech"], "discord": ["placeCH"]}, "path": {"220-258": [[-536, 904], [-538, 906], [-536, 908], [-530, 908], [-528, 906], [-530, 904]]}, "center": {"220-258": [-533, 906]}}, -{"id": 4530, "name": "The emblems of the lands forming Czech Republic", "description": "Small emblems of historical territories that exist for more than over thousand years, forming the current Czech Republic. From left to right, these emblems represent Moravia, Bohemia and Silesia.", "links": {"subreddit": ["czech"], "discord": ["95fmfxNv"]}, "path": {"61-258": [[464, -184], [464, -176], [468, -173], [493, -173], [496, -177], [496, -184]]}, "center": {"61-258": [480, -178]}}, -{"id": 4531, "name": "Herzenssöhne", "description": "This heart was build by a group called \"Herzenssöhne\". This little german community was formed during r/place 2023. The goal behind this projekt was to spread love between diffrent countrys on the canvas.", "links": {"subreddit": ["herzenssohn"], "discord": ["xDaaxZE5"]}, "path": {"69-89": [[-443, -347], [-453, -357], [-453, -362], [-448, -367], [-445, -367], [-443, -365], [-442, -365], [-440, -367], [-437, -367], [-432, -362], [-432, -357], [-442, -347]], "214-258": [[984, -837], [998, -849], [998, -856], [992, -862], [989, -862], [985, -859], [981, -862], [977, -861], [972, -856], [971, -851], [984, -838]]}, "center": {"69-89": [-443, -357], "214-258": [985, -850]}}, -{"id": 4532, "name": "Skial", "description": "A Team Fortress 2 multi-server community", "links": {"website": ["https://www.skial.com/"], "discord": ["AytrCaBbAK"]}, "path": {"154-258": [[280, -804], [280, -796], [300, -796], [300, -804]]}, "center": {"154-258": [290, -800]}}, -{"id": 4533, "name": "French Flag", "description": "A french flag created by Xiroz on 5am and joined by ErwannLaylee, a French Streamer on twitch.", "links": {"website": ["https://twitch.tv/erwannlaylee"]}, "path": {"217-253": [[1110, -847], [1110, -823], [1114, -823], [1114, -847]]}, "center": {"217-253": [1112, -835]}}, +{"id": 4529, "name": "Swiss Federal Railways (SBB/CFF/FFS)", "description": "Swiss Federal Railways is the national railway company of Switzerland.", "links": {"website": ["http://www.sbb.ch/en/"], "subreddit": ["placech"], "discord": ["placeCH"]}, "path": {"220-258, T": [[-536, 904], [-538, 906], [-536, 908], [-530, 908], [-528, 906], [-530, 904]]}, "center": {"220-258, T": [-533, 906]}}, +{"id": 4530, "name": "The emblems of the lands forming Czech Republic", "description": "Small emblems of historical territories that exist for more than over thousand years, forming the current Czech Republic. From left to right, these emblems represent Moravia, Bohemia and Silesia.", "links": {"subreddit": ["czech"], "discord": ["95fmfxNv"]}, "path": {"61-258, T": [[464, -184], [464, -176], [468, -173], [493, -173], [496, -177], [496, -184]]}, "center": {"61-258, T": [480, -178]}}, +{"id": 4531, "name": "Herzenssöhne", "description": "This heart was build by a group called \"Herzenssöhne\". This little german community was formed during r/place 2023. The goal behind this projekt was to spread love between diffrent countrys on the canvas.", "links": {"subreddit": ["herzenssohn"], "discord": ["xDaaxZE5"]}, "path": {"69-89": [[-443, -347], [-453, -357], [-453, -362], [-448, -367], [-445, -367], [-443, -365], [-442, -365], [-440, -367], [-437, -367], [-432, -362], [-432, -357], [-442, -347]], "214-258, T": [[984, -837], [998, -849], [998, -856], [992, -862], [989, -862], [985, -859], [981, -862], [977, -861], [972, -856], [971, -851], [984, -838]]}, "center": {"69-89": [-443, -357], "214-258, T": [985, -850]}}, +{"id": 4532, "name": "Skial", "description": "A Team Fortress 2 multi-server community", "links": {"website": ["https://www.skial.com/"], "discord": ["AytrCaBbAK"]}, "path": {"154-258, T": [[280, -804], [280, -796], [300, -796], [300, -804]]}, "center": {"154-258, T": [290, -800]}}, +{"id": 4533, "name": "French Flag", "description": "A french flag created by Xiroz on 5am and joined by ErwannLaylee, a French Streamer on twitch.", "links": {"website": ["https://twitch.tv/erwannlaylee"]}, "path": {"217-253, T": [[1110, -847], [1110, -823], [1114, -823], [1114, -847]]}, "center": {"217-253, T": [1112, -835]}}, {"id": 4534, "name": "The Magnus Archives", "description": "Due to its plot twist nature the line \"Hello Jon (Apologies for the deception)\" has become the Rick Roll of The Magnus Archives, a horror podcast distributed by Rusty Quill. You can listen to The Magnus Archives on YouTube or wherever you find your podcasts.", "links": {"website": ["https://rustyquill.com/show/the-magnus-archives/"], "subreddit": ["TheMagnusArchives"]}, "path": {"162-205": [[-189, -63], [-189, -58], [-49, -58], [-49, -63]]}, "center": {"162-205": [-119, -60]}}, -{"id": 4535, "name": "Clueless and TRU smoking blunts.", "description": "The Clueless and TRU Twitch emotes chilling and smoking blunts.\nAlso, in the top left corner there's a Life Twitch emote including two pepes.\nThis artwork was made by the community of the Argentinian Twitch streamer rageylo0 better known as \"lolomorales\"", "links": {"website": ["https://www.twitch.tv/rageylo0"], "discord": ["4EPh59Tq8B"]}, "path": {"250-258": [[553, -912], [510, -912], [510, -919], [489, -919], [489, -912], [495, -912], [495, -880], [553, -880]]}, "center": {"250-258": [522, -896]}}, +{"id": 4535, "name": "Clueless and TRU smoking blunts.", "description": "The Clueless and TRU Twitch emotes chilling and smoking blunts.\nAlso, in the top left corner there's a Life Twitch emote including two pepes.\nThis artwork was made by the community of the Argentinian Twitch streamer rageylo0 better known as \"lolomorales\"", "links": {"website": ["https://www.twitch.tv/rageylo0"], "discord": ["4EPh59Tq8B"]}, "path": {"250-258, T": [[553, -912], [510, -912], [510, -919], [489, -919], [489, -912], [495, -912], [495, -880], [553, -880]]}, "center": {"250-258, T": [522, -896]}}, {"id": 4536, "name": "Guapozer's", "description": "Here is an area dedicated to representing community union with their joint name 'Guapozer' taken from The Guapísimos (Vegetta's community) and The Doozer's (Foolish's community). \nIt depicts the ship between q!Vegetta and q!Foolish, with their egg child Leonarda, situated between them. This ship was formed within the QSMP Minecraft series. The characters, having made a great first impression, subsequently grew closer due to the parental bond that developed when they were paired to care for their egg child, Leonarda. Their fondness for each other growing as they worked together to nurture Leo.\nBeneath the Leo egg lies a cat in a shark onesie, symbolising both Foolish and Vegetta's communities - the shark being associated with Foolish and the cat with Vegetta. \nThis is a nod to the fact that the square was, in-fact, created created collaboratively by both communities - The Tankies/Doozer's and The Guapísimos.", "links": {}, "path": {"120-200": [[-284, -550], [-283, -501], [-248, -502], [-248, -542], [-245, -542], [-246, -549]]}, "center": {"120-200": [-266, -527]}}, {"id": 4537, "name": "Red Velvet's 'ReVe Cat'", "description": "The shape-shifting cat mascot, named 'ReVe', of the 5-member K-pop girl group Red Velvet. Made and coordinated by members in the linked Red Velvet discord group. The art was relocated twice before reaching it's final location at the end of r/place. (See Red Velvet Alley.)", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"199-209": [[608, 976], [626, 976], [626, 994], [608, 994]]}, "center": {"199-209": [617, 985]}}, -{"id": 4538, "name": "Greg and Serrif", "description": "Mural for the contacts at discord who provided a server extension for the german /placede discord", "links": {"discord": ["placede"]}, "path": {"250-258": [[-1176, -443], [-1176, -414], [-1117, -414], [-1117, -443], [-1139, -443], [-1139, -446], [-1140, -447], [-1141, -448], [-1142, -449], [-1144, -449], [-1146, -447], [-1147, -447], [-1149, -449], [-1151, -449], [-1154, -446], [-1154, -443]]}, "center": {"250-258": [-1146, -429]}}, -{"id": 4539, "name": "Taoqan", "description": "TAOQAN is a popular french Youtuber who makes videos on history, geography, geopolitics and international relations with an countryball style. \n\nTAOQAN is the founder of Qanistan (discord server). He founded the server on March 01, 2022, after launching his YouTube channel and TikTok account in February 2022.\n\nHe also founded QAN RP on June 20, 2022.\n\nHe organizes several events on the server, including \"Create your country\" in June-July 2022, for which he publishes a video on his YouTube channel. After the democratic revolution of July 2022, he founded six factions to fairly represent the server's members. This marked the start of the Faction War arc, in which the factions of Qanistan fought each other in competitive events throughout the summer of 2022.", "links": {"website": ["https://www.youtube.com/c/TAOQAN"]}, "path": {"160-164": [[-385, 607], [-384, 608], [-383, 609], [-382, 610], [-381, 610], [-380, 611], [-378, 611], [-377, 610], [-376, 610], [-375, 610], [-375, 609], [-374, 609], [-374, 608], [-373, 608], [-373, 607], [-372, 607], [-372, 603], [-373, 603], [-373, 601], [-374, 600], [-375, 600], [-375, 598], [-377, 598], [-377, 595], [-379, 595], [-379, 594], [-380, 595], [-381, 595], [-382, 595], [-382, 596], [-383, 596], [-383, 597], [-382, 597], [-382, 599], [-383, 599], [-384, 600], [-385, 601], [-385, 602], [-386, 603], [-386, 606], [-385, 606]], "165-258": [[-422, 553], [-418, 553], [-415, 554], [-414, 556], [-411, 557], [-411, 567], [-418, 572], [-427, 567], [-427, 562], [-424, 558], [-424, 555], [-423, 554]]}, "center": {"160-164": [-379, 604], "165-258": [-419, 563]}}, -{"id": 4540, "name": "Thanks to Discord Staff", "description": "Thursday (20.07.2023 DD/MM/YYYY), due to the incredible growth from under 20k Member to over 110k Member, the r/PlaceDE Discord was unusable for around 3 hours. The server was completely offline, new members could not join and most members were not able to see the server at all. Greg and Serrif, who both work at Discord, helped the Server and moved it to a stronger Cluster. Due to the work of Greg and Serrif, it was able to continue the operation, without having to wait 15 minutes to join a VC or send out an annoucement.\n\nThe pineapple is taken from Gregs profil picture. The N stands for the University which Serrif attended.", "links": {"discord": ["placede"]}, "path": {"250-258": [[-1176, -444], [-1154, -443], [-1154, -446], [-1151, -449], [-1148, -449], [-1146, -447], [-1144, -449], [-1142, -449], [-1139, -446], [-1139, -443], [-1116, -443], [-1117, -413], [-1176, -413]]}, "center": {"250-258": [-1146, -429]}}, +{"id": 4538, "name": "Greg and Serrif", "description": "Mural for the contacts at discord who provided a server extension for the german /placede discord", "links": {"discord": ["placede"]}, "path": {"250-258, T": [[-1176, -443], [-1176, -414], [-1117, -414], [-1117, -443], [-1139, -443], [-1139, -446], [-1140, -447], [-1141, -448], [-1142, -449], [-1144, -449], [-1146, -447], [-1147, -447], [-1149, -449], [-1151, -449], [-1154, -446], [-1154, -443]]}, "center": {"250-258, T": [-1146, -429]}}, +{"id": 4539, "name": "Taoqan", "description": "TAOQAN is a popular french Youtuber who makes videos on history, geography, geopolitics and international relations with an countryball style. \n\nTAOQAN is the founder of Qanistan (discord server). He founded the server on March 01, 2022, after launching his YouTube channel and TikTok account in February 2022.\n\nHe also founded QAN RP on June 20, 2022.\n\nHe organizes several events on the server, including \"Create your country\" in June-July 2022, for which he publishes a video on his YouTube channel. After the democratic revolution of July 2022, he founded six factions to fairly represent the server's members. This marked the start of the Faction War arc, in which the factions of Qanistan fought each other in competitive events throughout the summer of 2022.", "links": {"website": ["https://www.youtube.com/c/TAOQAN"]}, "path": {"160-164": [[-385, 607], [-384, 608], [-383, 609], [-382, 610], [-381, 610], [-380, 611], [-378, 611], [-377, 610], [-376, 610], [-375, 610], [-375, 609], [-374, 609], [-374, 608], [-373, 608], [-373, 607], [-372, 607], [-372, 603], [-373, 603], [-373, 601], [-374, 600], [-375, 600], [-375, 598], [-377, 598], [-377, 595], [-379, 595], [-379, 594], [-380, 595], [-381, 595], [-382, 595], [-382, 596], [-383, 596], [-383, 597], [-382, 597], [-382, 599], [-383, 599], [-384, 600], [-385, 601], [-385, 602], [-386, 603], [-386, 606], [-385, 606]], "165-258, T": [[-422, 553], [-418, 553], [-415, 554], [-414, 556], [-411, 557], [-411, 567], [-418, 572], [-427, 567], [-427, 562], [-424, 558], [-424, 555], [-423, 554]]}, "center": {"160-164": [-379, 604], "165-258, T": [-419, 563]}}, +{"id": 4540, "name": "Thanks to Discord Staff", "description": "Thursday (20.07.2023 DD/MM/YYYY), due to the incredible growth from under 20k Member to over 110k Member, the r/PlaceDE Discord was unusable for around 3 hours. The server was completely offline, new members could not join and most members were not able to see the server at all. Greg and Serrif, who both work at Discord, helped the Server and moved it to a stronger Cluster. Due to the work of Greg and Serrif, it was able to continue the operation, without having to wait 15 minutes to join a VC or send out an annoucement.\n\nThe pineapple is taken from Gregs profil picture. The N stands for the University which Serrif attended.", "links": {"discord": ["placede"]}, "path": {"250-258, T": [[-1176, -444], [-1154, -443], [-1154, -446], [-1151, -449], [-1148, -449], [-1146, -447], [-1144, -449], [-1142, -449], [-1139, -446], [-1139, -443], [-1116, -443], [-1117, -413], [-1176, -413]]}, "center": {"250-258, T": [-1146, -429]}}, {"id": 4541, "name": "Red Velvet's Stylized Text, Ver 1", "description": "Red Velvet is a 5-member k-pop group consisting of Irene, Seulgi, Wendy, Joy, and Yeri. Their member colors are pink, orange, blue, green, and purple, respectively.\n\nThis logo was the first of two to spell out the group name using the group members' colors. It was relocated to 'Red Velvet Alley' after it was wiped out by the Flag of Finland.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"68-92": [[34, -369], [46, -369], [46, -351], [34, -351]]}, "center": {"68-92": [40, -360]}}, -{"id": 4542, "name": "Hector", "description": "Hector is kel's pet rock in the indie video game omori. its a representation of ke'ls real dog (hector) in sunny's mind aka headspace.", "links": {"subreddit": ["omori"], "discord": ["omori"]}, "path": {"127-258": [[-234, -226], [-235, -225], [-236, -224], [-236, -223], [-236, -221], [-233, -219], [-231, -219], [-229, -219], [-226, -219], [-225, -219], [-224, -220], [-223, -222], [-223, -223], [-223, -224], [-225, -225], [-225, -226], [-229, -228], [-232, -227]]}, "center": {"127-258": [-230, -223]}}, -{"id": 4543, "name": "Kenny McCormick", "description": "A character from South Park, and is infamous because he died multiple times in the entire series.", "links": {"subreddit": ["southpark"]}, "path": {"250-258": [[-1272, 5], [-1266, 5], [-1263, 8], [-1263, 12], [-1265, 14], [-1265, 19], [-1266, 20], [-1270, 20], [-1272, 19], [-1273, 18], [-1273, 14], [-1275, 12], [-1275, 8]]}, "center": {"250-258": [-1269, 11]}}, -{"id": 4544, "name": "ZUTOMAYO", "description": "Zutto Mayonaka De Iinoni. (Japanese: ずっと真夜中でいいのに。, lit. \"I wish it was midnight all the time\"), stylized as ZUTOMAYO, is a Japanese rock group that debuted in 2018. Secretive by nature, the group has never released a full member list, crediting different people for music, arrangements, and music video production each time. The only member reoccurring in all of the group's output is the vocalist, an unidentified woman named \"ACA-Ne\" (ACAね, a-kah-neh).\n\nDespite the little information released, the group is commercially successful. Zutomayo's three EP's have reached 8th, 1st, and 2nd on the Oricon Albums Chart, respectively. The group was also invited to perform at the 2019 Fuji Rock Festival a year after their debut.", "links": {"website": ["https://zutomayo.net"], "subreddit": ["ZUTOMAYO"], "discord": ["zutomayo"]}, "path": {"250-258": [[-336, 883], [-308, 883], [-308, 918], [-336, 918]]}, "center": {"250-258": [-322, 901]}}, +{"id": 4542, "name": "Hector", "description": "Hector is kel's pet rock in the indie video game omori. its a representation of ke'ls real dog (hector) in sunny's mind aka headspace.", "links": {"subreddit": ["omori"], "discord": ["omori"]}, "path": {"127-258, T": [[-234, -226], [-235, -225], [-236, -224], [-236, -223], [-236, -221], [-233, -219], [-231, -219], [-229, -219], [-226, -219], [-225, -219], [-224, -220], [-223, -222], [-223, -223], [-223, -224], [-225, -225], [-225, -226], [-229, -228], [-232, -227]]}, "center": {"127-258, T": [-230, -223]}}, +{"id": 4543, "name": "Kenny McCormick", "description": "A character from South Park, and is infamous because he died multiple times in the entire series.", "links": {"subreddit": ["southpark"]}, "path": {"250-258, T": [[-1272, 5], [-1266, 5], [-1263, 8], [-1263, 12], [-1265, 14], [-1265, 19], [-1266, 20], [-1270, 20], [-1272, 19], [-1273, 18], [-1273, 14], [-1275, 12], [-1275, 8]]}, "center": {"250-258, T": [-1269, 11]}}, +{"id": 4544, "name": "ZUTOMAYO", "description": "Zutto Mayonaka De Iinoni. (Japanese: ずっと真夜中でいいのに。, lit. \"I wish it was midnight all the time\"), stylized as ZUTOMAYO, is a Japanese rock group that debuted in 2018. Secretive by nature, the group has never released a full member list, crediting different people for music, arrangements, and music video production each time. The only member reoccurring in all of the group's output is the vocalist, an unidentified woman named \"ACA-Ne\" (ACAね, a-kah-neh).\n\nDespite the little information released, the group is commercially successful. Zutomayo's three EP's have reached 8th, 1st, and 2nd on the Oricon Albums Chart, respectively. The group was also invited to perform at the 2019 Fuji Rock Festival a year after their debut.", "links": {"website": ["https://zutomayo.net"], "subreddit": ["ZUTOMAYO"], "discord": ["zutomayo"]}, "path": {"250-258, T": [[-336, 883], [-308, 883], [-308, 918], [-336, 918]]}, "center": {"250-258, T": [-322, 901]}}, {"id": 4545, "name": "Georgia (PlaceEU)", "description": "/r/sakartvelo's place. Several communities added themselves onto the PlaceEU map after the official template was finalized. Georgia is an applicant to join the European Union. Although Georgia lost many pixels and became difficult to maintain, it remained recognizable until the whiteout.", "links": {"subreddit": ["sakartvelo"]}, "path": {"255-258": [[-154, 762], [-128, 767], [-129, 778], [-151, 781], [-151, 773]]}, "center": {"255-258": [-143, 772]}}, -{"id": 4547, "name": "Pesky Bird", "description": "A Minecraft red parrot.\nThis is a reference to Minecraft Youtuber Grian, who on the Hermitcraft server.", "links": {"website": ["https://hermitcraft.com"], "subreddit": ["HermitCraft"]}, "path": {"250-258": [[-1065, -527], [-1066, -528], [-1068, -526], [-1069, -527], [-1069, -528], [-1070, -529], [-1070, -530], [-1071, -531], [-1071, -534], [-1072, -533], [-1073, -534], [-1073, -537], [-1070, -537], [-1069, -539], [-1069, -540], [-1065, -540], [-1065, -530], [-1063, -530], [-1063, -527]]}, "center": {"250-258": [-1068, -533]}}, +{"id": 4547, "name": "Pesky Bird", "description": "A Minecraft red parrot.\nThis is a reference to Minecraft Youtuber Grian, who on the Hermitcraft server.", "links": {"website": ["https://hermitcraft.com"], "subreddit": ["HermitCraft"]}, "path": {"250-258, T": [[-1065, -527], [-1066, -528], [-1068, -526], [-1069, -527], [-1069, -528], [-1070, -529], [-1070, -530], [-1071, -531], [-1071, -534], [-1072, -533], [-1073, -534], [-1073, -537], [-1070, -537], [-1069, -539], [-1069, -540], [-1065, -540], [-1065, -530], [-1063, -530], [-1063, -527]]}, "center": {"250-258, T": [-1068, -533]}}, {"id": 4548, "name": "Red Velvet's 'R to V' Logo, Ver 1", "description": "Red Velvet is a 5-member k-pop group consisting of Irene, Seulgi, Wendy, Joy, and Yeri. Their member colors are pink, orange, blue, green, and purple, respectively.\n\nThis logo is from their 4th concert tour, 'R to V', and included additional markings using the members' colors. The art was made and coordinated by members in the linked Red Velvet discord group.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"99-102": [[-782, 128], [-782, 149], [-765, 149], [-765, 128]]}, "center": {"99-102": [-773, 139]}}, -{"id": 4549, "name": "Chechen Republic of Ichkeria", "description": "The Chechen Republic of Ichkeria was a state that controlled the North Caucasus region that is now the Russian republic of Chechnya. The region has a lengthy history of resistance against Russian and Soviet rule. From the rebellions of Sheik Mansur to Hasan Israilov, the nation has always longed for its right to self-determination. After achieving independence in 1991, it was conquered by Russian forces less than a decade later. This map shows an independent Chechnya, and the flag used to represent it is the flag of this former republic. After the republic's fall, many emigres fled the vanquished nation, and have continued the campaign for its independence. The PlaceEU community that made this map agreed to give them a place.\n\nThis flag is sometimes a depicted with the state seal. Although a different flag has been used by the government in the Chechen capital of Grozny since 2004, the flag of the Chechen Republic of Ichkeria remains a symbol of independence and is used by Chechens abroad. In r/place, Chechnya began between Holy Dirt, Georgia, and Dagestan. In the final map, Dagestan has been obscured by part of the Chechen flag.", "links": {"website": ["https://en.wikipedia.org/wiki/History_of_Chechnya"], "subreddit": ["Chechnya", "PlaceEU"]}, "path": {"210-258": [[-132, 745], [-132, 757], [-120, 761], [-113, 761], [-112, 761], [-112, 745]]}, "center": {"210-258": [-120, 753]}}, -{"id": 4550, "name": "DessT3", "description": "Dess is a spanish streamer with more than 350k followers on the platform, known for role-playing content on the game Grand Theft Auto V on Twitch. He also plays Minecraft and Just Chatting.\n\nThis art represents his Minecraft Skin that he used in Tortillaland, Squid Craft Game and Minecraft Extremo.", "links": {"website": ["https://www.twitch.tv/desst3", "https://www.instagram.com/desst3/", "https://twitter.com/Dess_t3"], "discord": ["EGR4v6KF"]}, "path": {"221-258": [[639, -921], [639, -913], [648, -913], [647, -921], [639, -921], [639, -922]]}, "center": {"221-258": [643, -917]}}, -{"id": 4551, "name": "Musée du Louvre", "description": "The Louvre, or the Louvre Museum is a national art museum in Paris, France.\n\nThis area of the canvas was dedicated to host art pieces in frames, to imitate paintings in a museum.\n\nArt pieces are either from french culture, or from collaboration with smaller communities.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"116-212": [[888, -288], [1000, -287], [1000, -135], [977, -136], [961, -149], [950, -147], [946, -142], [943, -132], [888, -133]], "213-258": [[889, -289], [999, -286], [1056, -285], [1056, -212], [1034, -211], [1036, -130], [993, -134], [972, -138], [957, -160], [949, -145], [944, -137], [892, -137], [888, -137]]}, "center": {"116-212": [944, -210], "213-258": [967, -223]}}, -{"id": 4552, "name": "Sucre Dinosaur", "description": "Dinosaur footprints and bone fragments have been discovered in Sucre and Toro Toro town, this gave rise to dinosaurs being an economic (tourism) and cultural part of these places.", "links": {"website": ["https://talesfromthelens.com/cal-orcko-dinosaur-footprints-sucre-bolivia/", "https://theculturetrip.com/south-america/bolivia/articles/the-ultimate-guide-to-torotoro-bolivias-jurassic-park/"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[338, -43], [338, -41], [333, -38], [330, -41], [327, -41], [326, -36], [329, -32], [332, -27], [341, -26], [342, -32], [345, -34], [345, -38], [347, -41], [349, -43], [345, -45], [340, -45]]}, "center": {"250-258": [336, -33]}}, -{"id": 4553, "name": "Vegas Golden Knights", "description": "The Golden Knights are the city of Vegas' ice hockey team in the NHL. In the 22-33 NHL season, they won the Stanley Cup.", "links": {"website": ["https://en.wikipedia.org/wiki/Vegas_Golden_Knights"], "subreddit": ["goldenknights"]}, "path": {"203-215": [[-1222, -638], [-1197, -638], [-1198, -671], [-1205, -678], [-1205, -689], [-1201, -693], [-1201, -699], [-1219, -699], [-1219, -693], [-1214, -689], [-1215, -679], [-1222, -671]], "185-202": [[-1220, -669], [-1220, -649], [-1210, -639], [-1209, -639], [-1199, -649], [-1199, -669], [-1208, -669], [-1210, -673], [-1212, -669]], "216-258": [[-1226, -699], [-1226, -638], [-1195, -638], [-1195, -699]]}, "center": {"203-215": [-1210, -655], "185-202": [-1209, -656], "216-258": [-1210, -668]}}, -{"id": 4554, "name": "Bluetooth", "description": "Bluetooth, a staple in modern-day technology, has roots in the Netherlands. It was in the 1990s that the idea for wireless connectivity between devices was introduced by Dutch engineer Dr. Jaap Haartsen.", "links": {}, "path": {"247-258": [[132, -541], [143, -541], [148, -536], [148, -521], [145, -516], [143, -515], [132, -515], [128, -518], [127, -521], [127, -535], [129, -539]]}, "center": {"247-258": [138, -528]}}, -{"id": 4555, "name": "Winged hussar", "description": "The Polish Hussars (Husaria in polish) were the elite heavy cavalry formation best remembered for the extravagant wings attached to their armor. They were formed in the 16th century. Here the rider is an Among Us crewmate and was called \"susarz\" by the community (instead of polish \"Husarz\").", "links": {"website": ["https://en.wikipedia.org/wiki/Polish_hussars"], "subreddit": ["Polska", "Poland"]}, "path": {"250-258": [[722, -135], [720, -138], [719, -144], [723, -149], [727, -150], [730, -148], [727, -144], [730, -144], [730, -140], [744, -153], [744, -155], [747, -153], [747, -147], [742, -143], [742, -149], [734, -140], [737, -137], [736, -135], [733, -134], [732, -128], [729, -128], [729, -133], [726, -132], [726, -128], [724, -128], [724, -132], [720, -131], [719, -132], [722, -134]]}, "center": {"250-258": [725, -139]}}, -{"id": 4556, "name": "Map of the Soul: 7", "description": "Cover of the BTS album Map of the Soul: 7", "links": {"subreddit": ["bangtan"]}, "path": {"213-258": [[-1094, 573], [-1094, 589], [-1110, 589], [-1110, 573]]}, "center": {"213-258": [-1102, 581]}}, -{"id": 4557, "name": "Axolotl", "description": "Small community building a minecraft axolotl as a memorial for a lost pet", "links": {}, "path": {"250-258": [[1206, 349], [1206, 358], [1217, 358], [1217, 349]]}, "center": {"250-258": [1212, 354]}}, -{"id": 4558, "name": "Kamikatze", "description": "Emote of the famous german Streamer named Kamikatze. It describes his love for ironing.", "links": {"website": ["https://www.twitch.tv/kamikatze"]}, "path": {"198-258": [[-1015, -550], [-1015, -558], [-1018, -562], [-1019, -566], [-1019, -571], [-1016, -575], [-1018, -581], [-1018, -587], [-1003, -587], [-1006, -590], [-1006, -592], [-1004, -594], [-1000, -594], [-997, -591], [-1001, -587], [-986, -587], [-986, -580], [-988, -575], [-985, -571], [-985, -566], [-987, -560], [-989, -558], [-989, -550]]}, "center": {"198-258": [-1002, -567]}}, -{"id": 4559, "name": "Nekomata Okayu's onigiri", "description": "Nekomata Okayu is a Japanese virtual YouTuber and cat associated with Hololive as part of hololive GAMERS. Onigiri is Okayu's favorite food and is used as her oshi mark, as well as tying in to her lore as a cat raised by an old woman who runs an onigiri shop.", "links": {"website": ["https://www.youtube.com/channel/UCvaTdHTWBGv3MKj3KVqJVCw", "https://hololive.hololivepro.com/en/talents/nekomata-okayu/", "https://virtualyoutuber.fandom.com/wiki/Nekomata_Okayu", "https://hololive.wiki/wiki/Nekomata_Okayu"], "subreddit": ["Hololive"], "discord": ["ukc6xJ6"]}, "path": {"250-258": [[-559, -274], [-564, -274], [-564, -275], [-563, -277], [-562, -278], [-561, -278], [-560, -277], [-559, -275]]}, "center": {"250-258": [-561, -276]}}, -{"id": 4560, "name": "Polish, Kaszubian and Silesian coat of arms", "description": "Kashubians (coat of arms shows a black griffin with a crown on a yellow background) and Silesians (coat of arms shows fellow eagle on blue background) are a Polish minority. Polish coat of arms shows white eagle with a crown of red background)", "links": {}, "path": {"250-258": [[579, -150], [579, -138], [579, -133], [592, -133], [592, -150], [580, -150], [575, -132], [583, -132], [583, -123], [575, -123], [575, -132], [595, -132], [595, -123], [587, -123], [587, -132]]}, "center": {"250-258": [587, -145]}}, -{"id": 4561, "name": "Bem-te-vi", "description": "Bem-te-vi, in english Great Kiskadee, is a bird species native from Latin-America; being very common in Brazil. \nIts name in portuguese translates to 'I saw you well' and is a onomatopoeia from the sound they make.", "links": {"website": ["https://pt.wikipedia.org/wiki/Bem-te-vi", "https://en.wikipedia.org/wiki/Great_kiskadee"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"164-258": [[171, 327], [173, 327], [173, 328], [176, 328], [176, 327], [177, 327], [177, 324], [178, 324], [178, 323], [182, 323], [182, 324], [184, 324], [184, 325], [185, 325], [183, 325], [183, 326], [182, 326], [182, 330], [181, 330], [181, 331], [179, 331], [179, 332], [174, 332], [174, 330], [173, 330], [173, 329], [172, 329], [172, 328], [172, 327]]}, "center": {"164-258": [180, 326]}}, -{"id": 4562, "name": "Kekec", "description": "Kekec is a Slovenian fictional literature character, created by Josip Vandot in 1918. He is a young shepherd boy living in the Julian Alps in Slovenia. He is very brave and, with the help of his friends Rožle and Mojca, is fighting an evil wild hunter, called Bedanec, and an evil herbalist woman who is stealing children, called Pehta. He was the main character in a trilogy of short novels, written by Vandot, and was later also the main character of three movies, created by Jože Gale in the 1950s and 60s.", "links": {"website": ["https://en.wikipedia.org/wiki/Kekec"], "subreddit": ["Slovenia"], "discord": ["N8y3mNez"]}, "path": {"250-258": [[420, -77], [420, -79], [420, -80], [419, -80], [420, -80], [420, -82], [421, -82], [421, -84], [422, -84], [422, -85], [422, -84], [423, -84], [423, -82], [424, -82], [424, -80], [425, -80], [424, -80], [424, -77], [428, -77], [428, -82], [430, -82], [430, -81], [430, -82], [429, -82], [428, -82], [428, -77], [429, -77]]}, "center": {"250-258": [422, -80]}}, -{"id": 4563, "name": "Stüssy S, aka Cool S or Super S", "description": "The \"Stüssy S,\" also known as \"Cool S\" or \"Super S,\" is a popular hand-drawn symbol that became a cultural icon, particularly among students. \n\nIt is a stylized version of the letter \"S,\" consisting of interconnected and overlapping lines, forming a flowing and intricate design. \n\nIt gained prominence in the late 20th century and has since spread through schools, graffiti, and internet culture. The Stüssy S has no specific meaning and is often drawn for its aesthetic appeal or as a form of creative expression, making it a recognizable and nostalgic symbol for many.", "links": {}, "path": {"212-258": [[-1392, 413], [-1387, 408], [-1382, 413], [-1382, 417], [-1384, 419], [-1382, 423], [-1382, 427], [-1387, 432], [-1392, 427], [-1392, 423], [-1391, 422], [-1392, 417]]}, "center": {"212-258": [-1387, 415]}}, -{"id": 4564, "name": "Groupe INSA", "description": "We are INSA, the National Institutes of Applied Sciences.\nA distinctive French group of graduate engineering schools that promotes the core values of the INSA model such as diversity, humanism, excellence, innovation and strategic foresight.", "links": {"website": ["https://www.groupe-insa.fr/en"], "subreddit": ["insa"]}, "path": {"246-258": [[-412, 388], [-396, 388], [-396, 392], [-412, 392]]}, "center": {"246-258": [-404, 390]}}, +{"id": 4549, "name": "Chechen Republic of Ichkeria", "description": "The Chechen Republic of Ichkeria was a state that controlled the North Caucasus region that is now the Russian republic of Chechnya. The region has a lengthy history of resistance against Russian and Soviet rule. From the rebellions of Sheik Mansur to Hasan Israilov, the nation has always longed for its right to self-determination. After achieving independence in 1991, it was conquered by Russian forces less than a decade later. This map shows an independent Chechnya, and the flag used to represent it is the flag of this former republic. After the republic's fall, many emigres fled the vanquished nation, and have continued the campaign for its independence. The PlaceEU community that made this map agreed to give them a place.\n\nThis flag is sometimes a depicted with the state seal. Although a different flag has been used by the government in the Chechen capital of Grozny since 2004, the flag of the Chechen Republic of Ichkeria remains a symbol of independence and is used by Chechens abroad. In r/place, Chechnya began between Holy Dirt, Georgia, and Dagestan. In the final map, Dagestan has been obscured by part of the Chechen flag.", "links": {"website": ["https://en.wikipedia.org/wiki/History_of_Chechnya"], "subreddit": ["Chechnya", "PlaceEU"]}, "path": {"210-258, T": [[-132, 745], [-132, 757], [-120, 761], [-113, 761], [-112, 761], [-112, 745]]}, "center": {"210-258, T": [-120, 753]}}, +{"id": 4550, "name": "DessT3", "description": "Dess is a spanish streamer with more than 350k followers on the platform, known for role-playing content on the game Grand Theft Auto V on Twitch. He also plays Minecraft and Just Chatting.\n\nThis art represents his Minecraft Skin that he used in Tortillaland, Squid Craft Game and Minecraft Extremo.", "links": {"website": ["https://www.twitch.tv/desst3", "https://www.instagram.com/desst3/", "https://twitter.com/Dess_t3"], "discord": ["EGR4v6KF"]}, "path": {"221-258, T": [[639, -921], [639, -913], [648, -913], [647, -921], [639, -921], [639, -922]]}, "center": {"221-258, T": [643, -917]}}, +{"id": 4551, "name": "Musée du Louvre", "description": "The Louvre, or the Louvre Museum is a national art museum in Paris, France.\n\nThis area of the canvas was dedicated to host art pieces in frames, to imitate paintings in a museum.\n\nArt pieces are either from french culture, or from collaboration with smaller communities.", "links": {"subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"116-212": [[888, -288], [1000, -287], [1000, -135], [977, -136], [961, -149], [950, -147], [946, -142], [943, -132], [888, -133]], "213-258, T": [[889, -289], [999, -286], [1056, -285], [1056, -212], [1034, -211], [1036, -130], [993, -134], [972, -138], [957, -160], [949, -145], [944, -137], [892, -137], [888, -137]]}, "center": {"116-212": [944, -210], "213-258, T": [967, -223]}}, +{"id": 4552, "name": "Sucre Dinosaur", "description": "Dinosaur footprints and bone fragments have been discovered in Sucre and Toro Toro town, this gave rise to dinosaurs being an economic (tourism) and cultural part of these places.", "links": {"website": ["https://talesfromthelens.com/cal-orcko-dinosaur-footprints-sucre-bolivia/", "https://theculturetrip.com/south-america/bolivia/articles/the-ultimate-guide-to-torotoro-bolivias-jurassic-park/"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[338, -43], [338, -41], [333, -38], [330, -41], [327, -41], [326, -36], [329, -32], [332, -27], [341, -26], [342, -32], [345, -34], [345, -38], [347, -41], [349, -43], [345, -45], [340, -45]]}, "center": {"250-258, T": [336, -33]}}, +{"id": 4553, "name": "Vegas Golden Knights", "description": "The Golden Knights are the city of Vegas' ice hockey team in the NHL. In the 22-33 NHL season, they won the Stanley Cup.", "links": {"website": ["https://en.wikipedia.org/wiki/Vegas_Golden_Knights"], "subreddit": ["goldenknights"]}, "path": {"203-215": [[-1222, -638], [-1197, -638], [-1198, -671], [-1205, -678], [-1205, -689], [-1201, -693], [-1201, -699], [-1219, -699], [-1219, -693], [-1214, -689], [-1215, -679], [-1222, -671]], "185-202": [[-1220, -669], [-1220, -649], [-1210, -639], [-1209, -639], [-1199, -649], [-1199, -669], [-1208, -669], [-1210, -673], [-1212, -669]], "216-258, T": [[-1226, -699], [-1226, -638], [-1195, -638], [-1195, -699]]}, "center": {"203-215": [-1210, -655], "185-202": [-1209, -656], "216-258, T": [-1210, -668]}}, +{"id": 4554, "name": "Bluetooth", "description": "Bluetooth, a staple in modern-day technology, has roots in the Netherlands. It was in the 1990s that the idea for wireless connectivity between devices was introduced by Dutch engineer Dr. Jaap Haartsen.", "links": {}, "path": {"247-258, T": [[132, -541], [143, -541], [148, -536], [148, -521], [145, -516], [143, -515], [132, -515], [128, -518], [127, -521], [127, -535], [129, -539]]}, "center": {"247-258, T": [138, -528]}}, +{"id": 4555, "name": "Winged hussar", "description": "The Polish Hussars (Husaria in polish) were the elite heavy cavalry formation best remembered for the extravagant wings attached to their armor. They were formed in the 16th century. Here the rider is an Among Us crewmate and was called \"susarz\" by the community (instead of polish \"Husarz\").", "links": {"website": ["https://en.wikipedia.org/wiki/Polish_hussars"], "subreddit": ["Polska", "Poland"]}, "path": {"250-258, T": [[722, -135], [720, -138], [719, -144], [723, -149], [727, -150], [730, -148], [727, -144], [730, -144], [730, -140], [744, -153], [744, -155], [747, -153], [747, -147], [742, -143], [742, -149], [734, -140], [737, -137], [736, -135], [733, -134], [732, -128], [729, -128], [729, -133], [726, -132], [726, -128], [724, -128], [724, -132], [720, -131], [719, -132], [722, -134]]}, "center": {"250-258, T": [725, -139]}}, +{"id": 4556, "name": "Map of the Soul: 7", "description": "Cover of the BTS album Map of the Soul: 7", "links": {"subreddit": ["bangtan"]}, "path": {"213-258, T": [[-1094, 573], [-1094, 589], [-1110, 589], [-1110, 573]]}, "center": {"213-258, T": [-1102, 581]}}, +{"id": 4557, "name": "Axolotl", "description": "Small community building a minecraft axolotl as a memorial for a lost pet", "links": {}, "path": {"250-258, T": [[1206, 349], [1206, 358], [1217, 358], [1217, 349]]}, "center": {"250-258, T": [1212, 354]}}, +{"id": 4558, "name": "Kamikatze", "description": "Emote of the famous german Streamer named Kamikatze. It describes his love for ironing.", "links": {"website": ["https://www.twitch.tv/kamikatze"]}, "path": {"198-258, T": [[-1015, -550], [-1015, -558], [-1018, -562], [-1019, -566], [-1019, -571], [-1016, -575], [-1018, -581], [-1018, -587], [-1003, -587], [-1006, -590], [-1006, -592], [-1004, -594], [-1000, -594], [-997, -591], [-1001, -587], [-986, -587], [-986, -580], [-988, -575], [-985, -571], [-985, -566], [-987, -560], [-989, -558], [-989, -550]]}, "center": {"198-258, T": [-1002, -567]}}, +{"id": 4559, "name": "Nekomata Okayu's onigiri", "description": "Nekomata Okayu is a Japanese virtual YouTuber and cat associated with Hololive as part of hololive GAMERS. Onigiri is Okayu's favorite food and is used as her oshi mark, as well as tying in to her lore as a cat raised by an old woman who runs an onigiri shop.", "links": {"website": ["https://www.youtube.com/channel/UCvaTdHTWBGv3MKj3KVqJVCw", "https://hololive.hololivepro.com/en/talents/nekomata-okayu/", "https://virtualyoutuber.fandom.com/wiki/Nekomata_Okayu", "https://hololive.wiki/wiki/Nekomata_Okayu"], "subreddit": ["Hololive"], "discord": ["ukc6xJ6"]}, "path": {"250-258, T": [[-559, -274], [-564, -274], [-564, -275], [-563, -277], [-562, -278], [-561, -278], [-560, -277], [-559, -275]]}, "center": {"250-258, T": [-561, -276]}}, +{"id": 4560, "name": "Polish, Kaszubian and Silesian coat of arms", "description": "Kashubians (coat of arms shows a black griffin with a crown on a yellow background) and Silesians (coat of arms shows fellow eagle on blue background) are a Polish minority. Polish coat of arms shows white eagle with a crown of red background)", "links": {}, "path": {"250-258, T": [[579, -150], [579, -138], [579, -133], [592, -133], [592, -150], [580, -150], [575, -132], [583, -132], [583, -123], [575, -123], [575, -132], [595, -132], [595, -123], [587, -123], [587, -132]]}, "center": {"250-258, T": [587, -145]}}, +{"id": 4561, "name": "Bem-te-vi", "description": "Bem-te-vi, in english Great Kiskadee, is a bird species native from Latin-America; being very common in Brazil. \nIts name in portuguese translates to 'I saw you well' and is a onomatopoeia from the sound they make.", "links": {"website": ["https://pt.wikipedia.org/wiki/Bem-te-vi", "https://en.wikipedia.org/wiki/Great_kiskadee"], "subreddit": ["brasil"], "discord": ["r-br"]}, "path": {"164-258, T": [[171, 327], [173, 327], [173, 328], [176, 328], [176, 327], [177, 327], [177, 324], [178, 324], [178, 323], [182, 323], [182, 324], [184, 324], [184, 325], [185, 325], [183, 325], [183, 326], [182, 326], [182, 330], [181, 330], [181, 331], [179, 331], [179, 332], [174, 332], [174, 330], [173, 330], [173, 329], [172, 329], [172, 328], [172, 327]]}, "center": {"164-258, T": [180, 326]}}, +{"id": 4562, "name": "Kekec", "description": "Kekec is a Slovenian fictional literature character, created by Josip Vandot in 1918. He is a young shepherd boy living in the Julian Alps in Slovenia. He is very brave and, with the help of his friends Rožle and Mojca, is fighting an evil wild hunter, called Bedanec, and an evil herbalist woman who is stealing children, called Pehta. He was the main character in a trilogy of short novels, written by Vandot, and was later also the main character of three movies, created by Jože Gale in the 1950s and 60s.", "links": {"website": ["https://en.wikipedia.org/wiki/Kekec"], "subreddit": ["Slovenia"], "discord": ["N8y3mNez"]}, "path": {"250-258, T": [[420, -77], [420, -79], [420, -80], [419, -80], [420, -80], [420, -82], [421, -82], [421, -84], [422, -84], [422, -85], [422, -84], [423, -84], [423, -82], [424, -82], [424, -80], [425, -80], [424, -80], [424, -77], [428, -77], [428, -82], [430, -82], [430, -81], [430, -82], [429, -82], [428, -82], [428, -77], [429, -77]]}, "center": {"250-258, T": [422, -80]}}, +{"id": 4563, "name": "Stüssy S, aka Cool S or Super S", "description": "The \"Stüssy S,\" also known as \"Cool S\" or \"Super S,\" is a popular hand-drawn symbol that became a cultural icon, particularly among students. \n\nIt is a stylized version of the letter \"S,\" consisting of interconnected and overlapping lines, forming a flowing and intricate design. \n\nIt gained prominence in the late 20th century and has since spread through schools, graffiti, and internet culture. The Stüssy S has no specific meaning and is often drawn for its aesthetic appeal or as a form of creative expression, making it a recognizable and nostalgic symbol for many.", "links": {}, "path": {"212-258, T": [[-1392, 413], [-1387, 408], [-1382, 413], [-1382, 417], [-1384, 419], [-1382, 423], [-1382, 427], [-1387, 432], [-1392, 427], [-1392, 423], [-1391, 422], [-1392, 417]]}, "center": {"212-258, T": [-1387, 415]}}, +{"id": 4564, "name": "Groupe INSA", "description": "We are INSA, the National Institutes of Applied Sciences.\nA distinctive French group of graduate engineering schools that promotes the core values of the INSA model such as diversity, humanism, excellence, innovation and strategic foresight.", "links": {"website": ["https://www.groupe-insa.fr/en"], "subreddit": ["insa"]}, "path": {"246-258, T": [[-412, 388], [-396, 388], [-396, 392], [-412, 392]]}, "center": {"246-258, T": [-404, 390]}}, {"id": 4565, "name": "👽HellaClan👽", "description": "Comunidad de HellaNella\nDe Lima, PERU 🇵🇪", "links": {"website": ["https://www.twitch.tv/hellanella", "https://www.instagram.com/nelladesu/"]}, "path": {"243": [[1179, -973], [1186, -969], [1183, -971], [1179, -969], [1186, -969], [1186, -973], [1179, -973], [1179, -970], [1182, -970], [1180, -972], [1184, -969], [1182, -970], [1180, -970], [1182, -970], [1184, -971], [1180, -970], [1181, -972], [1182, -972], [1182, -971], [1181, -971], [1180, -970], [1182, -970], [1183, -969], [1185, -970], [1183, -971], [1182, -971], [1183, -970], [1181, -972], [1180, -972], [1180, -971], [1182, -970], [1182, -971], [1182, -972], [1183, -972], [1182, -972], [1180, -972], [1182, -970], [1180, -970], [1180, -971], [1180, -972], [1180, -971], [1180, -970], [1181, -969], [1182, -970], [1181, -971], [1180, -971], [1180, -972], [1181, -972], [1180, -972], [1180, -971], [1180, -972], [1180, -970]]}, "center": {"243": [1184, -972]}}, -{"id": 4566, "name": "Frecciarossa high speed train", "description": "Frecciarossa is a high-speed train of the Italian national train operator, Trenitalia, as well as a member of the train category Le Frecce. The name, which, if spelled \"Freccia rossa\" means \"Red arrow\" in English, was introduced in 2008 after it had previously been known as Eurostar Italia.", "links": {}, "path": {"250-258": [[-694, 113], [-694, 97], [-646, 97], [-646, 98], [-644, 98], [-644, 99], [-642, 99], [-641, 100], [-640, 100], [-639, 101], [-638, 101], [-637, 102], [-635, 102], [-635, 103], [-634, 103], [-633, 104], [-632, 104], [-631, 105], [-630, 105], [-629, 106], [-628, 106], [-624, 110], [-624, 111], [-626, 113]]}, "center": {"250-258": [-659, 105]}}, -{"id": 4567, "name": "DBS", "description": "The logo of a german school in Weinheim, which is a city near Heidelberg.", "links": {"website": ["https://dbsweinheim.de/"]}, "path": {"250-258": [[136, -982], [136, -991], [147, -991], [147, -982]]}, "center": {"250-258": [142, -986]}}, +{"id": 4566, "name": "Frecciarossa high speed train", "description": "Frecciarossa is a high-speed train of the Italian national train operator, Trenitalia, as well as a member of the train category Le Frecce. The name, which, if spelled \"Freccia rossa\" means \"Red arrow\" in English, was introduced in 2008 after it had previously been known as Eurostar Italia.", "links": {}, "path": {"250-258, T": [[-694, 113], [-694, 97], [-646, 97], [-646, 98], [-644, 98], [-644, 99], [-642, 99], [-641, 100], [-640, 100], [-639, 101], [-638, 101], [-637, 102], [-635, 102], [-635, 103], [-634, 103], [-633, 104], [-632, 104], [-631, 105], [-630, 105], [-629, 106], [-628, 106], [-624, 110], [-624, 111], [-626, 113]]}, "center": {"250-258, T": [-659, 105]}}, +{"id": 4567, "name": "DBS", "description": "The logo of a german school in Weinheim, which is a city near Heidelberg.", "links": {"website": ["https://dbsweinheim.de/"]}, "path": {"250-258, T": [[136, -982], [136, -991], [147, -991], [147, -982]]}, "center": {"250-258, T": [142, -986]}}, {"id": 4568, "name": "Ecoles Normales Supérieures (ENS ou Normale Sup')", "description": "Group of French \"Grandes Ecoles\" (called ENS) uniting the 4 ENS : ENS Ulm, ENS Paris-Saclay, ENS Lyon & ENS Rennes\n\nDrawing : Fusion of the logos of the 4 ENS\n\nHelped by students from Ecole Polytechnique\nRekted by some French streamers", "links": {"website": ["https://www.ens.psl.eu/", "https://www.ens-paris-saclay.fr/", "https://www.ens-lyon.fr/", "https://www.ens-rennes.fr/"], "subreddit": ["ENSCachan", "CRANS"]}, "path": {"153-154": [[849, -727], [890, -727], [891, -713], [879, -706], [866, -706], [859, -696], [849, -696]]}, "center": {"153-154": [860, -716]}}, {"id": 4569, "name": "Smoking Cannabis Leaf", "description": "", "links": {"subreddit": ["trees"]}, "path": {"50-112": [[0, 378], [30, 378], [30, 400], [0, 400]]}, "center": {"50-112": [15, 389]}}, -{"id": 4570, "name": "Otori Emu", "description": "Emu is a fictional character from the japanese game \"Project Sekai: Colorful Stage! featuring: Hatsune Miku\". She is mostly popular for her cheerful personality and for her iconic word-choice when greeting: Wonderhoy!", "links": {"website": ["https://projectsekai.fandom.com/wiki/Otori_Emu"], "subreddit": ["ProjectSekai"]}, "path": {"198-258": [[-1317, 522], [-1321, 522], [-1327, 524], [-1328, 527], [-1328, 533], [-1327, 533], [-1327, 537], [-1325, 537], [-1325, 536], [-1323, 536], [-1323, 540], [-1324, 540], [-1324, 543], [-1323, 543], [-1323, 548], [-1324, 550], [-1324, 551], [-1312, 551], [-1312, 550], [-1312, 548], [-1312, 544], [-1310, 545], [-1309, 542], [-1311, 541], [-1313, 538], [-1312, 536], [-1310, 536], [-1309, 537], [-1308, 536], [-1308, 530], [-1307, 530], [-1307, 528], [-1308, 528], [-1308, 522], [-1312, 522], [-1314, 522], [-1318, 522]]}, "center": {"198-258": [-1317, 530]}}, -{"id": 4571, "name": "pelle_327", "description": "Owner of the Outcasts Discord server.\nGlory to Ecuador.", "links": {}, "path": {"250-258": [[-390, -887], [-400, -887], [-400, -889], [-399, -889], [-399, -890], [-399, -891], [-399, -892], [-400, -892], [-400, -893], [-401, -893], [-402, -893], [-402, -895], [-401, -895], [-401, -896], [-400, -896], [-400, -897], [-399, -897], [-399, -898], [-399, -899], [-400, -899], [-400, -901], [-401, -901], [-401, -902], [-400, -902], [-400, -904], [-399, -904], [-399, -906], [-398, -906], [-398, -907], [-392, -907], [-392, -906], [-391, -906], [-391, -905], [-391, -904], [-390, -904], [-390, -903], [-390, -902], [-389, -902], [-389, -901], [-390, -901], [-390, -900], [-390, -899], [-391, -899], [-391, -898], [-391, -897], [-390, -897], [-390, -896], [-389, -896], [-389, -895], [-389, -894], [-388, -894], [-388, -893], [-389, -893], [-390, -893], [-390, -892], [-391, -892], [-391, -891], [-391, -890], [-391, -889], [-390, -889], [-390, -888]]}, "center": {"250-258": [-395, -895]}}, +{"id": 4570, "name": "Otori Emu", "description": "Emu is a fictional character from the japanese game \"Project Sekai: Colorful Stage! featuring: Hatsune Miku\". She is mostly popular for her cheerful personality and for her iconic word-choice when greeting: Wonderhoy!", "links": {"website": ["https://projectsekai.fandom.com/wiki/Otori_Emu"], "subreddit": ["ProjectSekai"]}, "path": {"198-258, T": [[-1317, 522], [-1321, 522], [-1327, 524], [-1328, 527], [-1328, 533], [-1327, 533], [-1327, 537], [-1325, 537], [-1325, 536], [-1323, 536], [-1323, 540], [-1324, 540], [-1324, 543], [-1323, 543], [-1323, 548], [-1324, 550], [-1324, 551], [-1312, 551], [-1312, 550], [-1312, 548], [-1312, 544], [-1310, 545], [-1309, 542], [-1311, 541], [-1313, 538], [-1312, 536], [-1310, 536], [-1309, 537], [-1308, 536], [-1308, 530], [-1307, 530], [-1307, 528], [-1308, 528], [-1308, 522], [-1312, 522], [-1314, 522], [-1318, 522]]}, "center": {"198-258, T": [-1317, 530]}}, +{"id": 4571, "name": "pelle_327", "description": "Owner of the Outcasts Discord server.\nGlory to Ecuador.", "links": {}, "path": {"250-258, T": [[-390, -887], [-400, -887], [-400, -889], [-399, -889], [-399, -890], [-399, -891], [-399, -892], [-400, -892], [-400, -893], [-401, -893], [-402, -893], [-402, -895], [-401, -895], [-401, -896], [-400, -896], [-400, -897], [-399, -897], [-399, -898], [-399, -899], [-400, -899], [-400, -901], [-401, -901], [-401, -902], [-400, -902], [-400, -904], [-399, -904], [-399, -906], [-398, -906], [-398, -907], [-392, -907], [-392, -906], [-391, -906], [-391, -905], [-391, -904], [-390, -904], [-390, -903], [-390, -902], [-389, -902], [-389, -901], [-390, -901], [-390, -900], [-390, -899], [-391, -899], [-391, -898], [-391, -897], [-390, -897], [-390, -896], [-389, -896], [-389, -895], [-389, -894], [-388, -894], [-388, -893], [-389, -893], [-390, -893], [-390, -892], [-391, -892], [-391, -891], [-391, -890], [-391, -889], [-390, -889], [-390, -888]]}, "center": {"250-258, T": [-395, -895]}}, {"id": 4572, "name": "Zombao Lives", "description": "Zombao was Zombinho's grandpa, he used to play videogames, mostly Minecraft, with him and his friends. This is a Memorial to remind everyone how great of a person he was!", "links": {"subreddit": ["zombinho"]}, "path": {"253-258": [[-786, 188], [-786, 198], [-760, 198], [-760, 188]]}, "center": {"253-258": [-773, 193]}}, -{"id": 4573, "name": "Buster Sword", "description": "The iconic weapon wielded by Cloud Strife, protagonist of Square Enix's 1997 RPG Final Fantasy VII. It is a massive sword passed on to Cloud by his friend Zack Fair during Zack's final moments.", "links": {"subreddit": ["finalfantasyVII"]}, "path": {"204-259": [[-528, -60], [-527, -62], [-526, -65], [-517, -74], [-514, -77], [-512, -77], [-512, -70], [-521, -61], [-524, -61], [-527, -58], [-529, -60], [-527, -62]]}, "center": {"204-259": [-520, -67]}}, +{"id": 4573, "name": "Buster Sword", "description": "The iconic weapon wielded by Cloud Strife, protagonist of Square Enix's 1997 RPG Final Fantasy VII. It is a massive sword passed on to Cloud by his friend Zack Fair during Zack's final moments.", "links": {"subreddit": ["finalfantasyVII"]}, "path": {"204-259, T": [[-528, -60], [-527, -62], [-526, -65], [-517, -74], [-514, -77], [-512, -77], [-512, -70], [-521, -61], [-524, -61], [-527, -58], [-529, -60], [-527, -62]]}, "center": {"204-259, T": [-520, -67]}}, {"id": 4574, "name": "bigger Madagascar flag", "description": "an little bit bigger madagascar flag", "links": {}, "path": {"203-207": [[-1500, 867], [-1492, 867], [-1492, 873], [-1500, 873], [-1500, 866], [-1490, 866], [-1490, 873], [-1500, 873]]}, "center": {"203-207": [-1491, 870]}}, -{"id": 4575, "name": "Sloth", "description": "The second try to get a Sloth on the map after the first one at -30 428 got overpainted Fri, 21 Jul 2023 18:29 GMT", "links": {"subreddit": ["sloths"]}, "path": {"200-258": [[287, -638], [287, -625], [307, -625], [307, -638]]}, "center": {"200-258": [297, -631]}}, -{"id": 4576, "name": "Adorable Audrey (2014-2023)", "description": "A depiction of podcaster and YouTube producer Brady Haran's chihuahua Audrey. \n\nA regular feature on the Hello Internet podcast and star of instagram, Audrey sadly died on the 10th July 2023, aged 9.", "links": {"website": ["https://www.instagram.com/adorable_audrey/"], "subreddit": ["HelloInternet"]}, "path": {"1-258": [[233, 146], [239, 146], [239, 139], [232, 140], [232, 144]]}, "center": {"1-258": [236, 143]}}, -{"id": 4577, "name": "Mini AEsir Logo", "description": "AEsir is one of the main antagonist of Cytus 2. He is responsible for most of the events that happened in the story.", "links": {"website": ["https://rayark.com/g/cytus2/"], "subreddit": ["Cytus"]}, "path": {"250-258": [[1456, -43], [1458, -43], [1458, -39], [1456, -39], [1456, -40]]}, "center": {"250-258": [1457, -41]}}, -{"id": 4578, "name": "OMORI Icon", "description": "Icon for the video game \"OMORI\", an indie RPG released in 2020.", "links": {"website": ["https://store.steampowered.com/app/1150690/OMORI/"], "subreddit": ["OMORI"], "discord": ["omori"]}, "path": {"250-258": [[-469, 973], [-446, 973], [-445, 996], [-469, 996], [-469, 989]]}, "center": {"250-258": [-457, 985]}}, -{"id": 4579, "name": "The Atomium", "description": "The Atomium is a landmark modernist building in Brussels, Belgium, originally constructed as the centerpiece of the 1958 Brussels World's Fair. \n\nDesigned by the engineer André Waterkeyn and the architects André and Jean Polak as a tribute to scientific progress, as well as to symbolize Belgian engineering skills at the time. \n\nIt is the city's most popular tourist attraction, and serves as a museum, an art center and a cultural destination.", "links": {"website": ["https://en.wikipedia.org/wiki/Atomium"], "subreddit": ["Belgium"], "discord": ["Belgium"]}, "path": {"212-229, 241-258": [[1129, 780], [1175, 780], [1175, 779], [1173, 777], [1171, 777], [1170, 776], [1169, 776], [1168, 775], [1165, 775], [1164, 774], [1159, 774], [1159, 773], [1158, 772], [1158, 765], [1160, 763], [1161, 763], [1163, 761], [1164, 761], [1165, 760], [1166, 760], [1168, 758], [1169, 758], [1170, 757], [1175, 757], [1179, 753], [1179, 750], [1175, 746], [1175, 736], [1179, 732], [1179, 729], [1177, 727], [1177, 726], [1175, 724], [1174, 725], [1171, 725], [1170, 724], [1167, 724], [1165, 722], [1164, 722], [1162, 720], [1161, 720], [1160, 719], [1159, 719], [1159, 715], [1157, 713], [1157, 709], [1156, 708], [1153, 708], [1152, 709], [1152, 711], [1148, 715], [1148, 719], [1147, 720], [1144, 720], [1143, 721], [1142, 721], [1139, 724], [1137, 724], [1136, 725], [1136, 726], [1134, 726], [1133, 725], [1132, 725], [1131, 726], [1130, 726], [1129, 726], [1128, 727], [1128, 733], [1130, 735], [1131, 735], [1132, 736], [1132, 737], [1132, 746], [1128, 750], [1128, 753], [1132, 757], [1137, 757], [1138, 758], [1139, 758], [1141, 760], [1142, 760], [1143, 761], [1144, 761], [1146, 763], [1147, 763], [1148, 764], [1148, 765], [1149, 766], [1148, 773], [1148, 774], [1141, 774], [1140, 775], [1139, 775], [1138, 776], [1136, 776], [1135, 777], [1134, 777], [1132, 779], [1129, 779]]}, "center": {"212-229, 241-258": [1153, 742]}}, +{"id": 4575, "name": "Sloth", "description": "The second try to get a Sloth on the map after the first one at -30 428 got overpainted Fri, 21 Jul 2023 18:29 GMT", "links": {"subreddit": ["sloths"]}, "path": {"200-258, T": [[287, -638], [287, -625], [307, -625], [307, -638]]}, "center": {"200-258, T": [297, -631]}}, +{"id": 4576, "name": "Adorable Audrey (2014-2023)", "description": "A depiction of podcaster and YouTube producer Brady Haran's chihuahua Audrey. \n\nA regular feature on the Hello Internet podcast and star of instagram, Audrey sadly died on the 10th July 2023, aged 9.", "links": {"website": ["https://www.instagram.com/adorable_audrey/"], "subreddit": ["HelloInternet"]}, "path": {"1-258, T": [[233, 146], [239, 146], [239, 139], [232, 140], [232, 144]]}, "center": {"1-258, T": [236, 143]}}, +{"id": 4577, "name": "Mini AEsir Logo", "description": "AEsir is one of the main antagonist of Cytus 2. He is responsible for most of the events that happened in the story.", "links": {"website": ["https://rayark.com/g/cytus2/"], "subreddit": ["Cytus"]}, "path": {"250-258, T": [[1456, -43], [1458, -43], [1458, -39], [1456, -39], [1456, -40]]}, "center": {"250-258, T": [1457, -41]}}, +{"id": 4578, "name": "OMORI Icon", "description": "Icon for the video game \"OMORI\", an indie RPG released in 2020.", "links": {"website": ["https://store.steampowered.com/app/1150690/OMORI/"], "subreddit": ["OMORI"], "discord": ["omori"]}, "path": {"250-258, T": [[-469, 973], [-446, 973], [-445, 996], [-469, 996], [-469, 989]]}, "center": {"250-258, T": [-457, 985]}}, +{"id": 4579, "name": "The Atomium", "description": "The Atomium is a landmark modernist building in Brussels, Belgium, originally constructed as the centerpiece of the 1958 Brussels World's Fair. \n\nDesigned by the engineer André Waterkeyn and the architects André and Jean Polak as a tribute to scientific progress, as well as to symbolize Belgian engineering skills at the time. \n\nIt is the city's most popular tourist attraction, and serves as a museum, an art center and a cultural destination.", "links": {"website": ["https://en.wikipedia.org/wiki/Atomium"], "subreddit": ["Belgium"], "discord": ["Belgium"]}, "path": {"212-229, 241-258, T": [[1129, 780], [1175, 780], [1175, 779], [1173, 777], [1171, 777], [1170, 776], [1169, 776], [1168, 775], [1165, 775], [1164, 774], [1159, 774], [1159, 773], [1158, 772], [1158, 765], [1160, 763], [1161, 763], [1163, 761], [1164, 761], [1165, 760], [1166, 760], [1168, 758], [1169, 758], [1170, 757], [1175, 757], [1179, 753], [1179, 750], [1175, 746], [1175, 736], [1179, 732], [1179, 729], [1177, 727], [1177, 726], [1175, 724], [1174, 725], [1171, 725], [1170, 724], [1167, 724], [1165, 722], [1164, 722], [1162, 720], [1161, 720], [1160, 719], [1159, 719], [1159, 715], [1157, 713], [1157, 709], [1156, 708], [1153, 708], [1152, 709], [1152, 711], [1148, 715], [1148, 719], [1147, 720], [1144, 720], [1143, 721], [1142, 721], [1139, 724], [1137, 724], [1136, 725], [1136, 726], [1134, 726], [1133, 725], [1132, 725], [1131, 726], [1130, 726], [1129, 726], [1128, 727], [1128, 733], [1130, 735], [1131, 735], [1132, 736], [1132, 737], [1132, 746], [1128, 750], [1128, 753], [1132, 757], [1137, 757], [1138, 758], [1139, 758], [1141, 760], [1142, 760], [1143, 761], [1144, 761], [1146, 763], [1147, 763], [1148, 764], [1148, 765], [1149, 766], [1148, 773], [1148, 774], [1141, 774], [1140, 775], [1139, 775], [1138, 776], [1136, 776], [1135, 777], [1134, 777], [1132, 779], [1129, 779]]}, "center": {"212-229, 241-258, T": [1153, 742]}}, {"id": 4580, "name": "Team Fortress 2 Logo", "description": "The first thing that was orgainzed by the r/TF2 r/place discord", "links": {"subreddit": ["tf2"], "discord": ["gEdmGgBTs8"]}, "path": {"30-64": [[-94, 216], [-92, 218], [-87, 219], [-85, 217], [-83, 216], [-83, 213], [-83, 211], [-84, 210], [-80, 210], [-80, 202], [-94, 202]]}, "center": {"30-64": [-89, 207]}}, -{"id": 4581, "name": "Fluttershy", "description": "Fluttershy is one of the six main characters from the My Little Pony: Friendship is Magic TV show.", "links": {}, "path": {"250-258": [[1043, -864], [1043, -846], [1059, -846], [1059, -848], [1063, -848], [1063, -864]]}, "center": {"250-258": [1053, -855]}}, -{"id": 4582, "name": "VC 1", "description": "VC 1 was a voice chat channel on r/placede's Discord, known for its vibrant and tight-knit community. The channel's beloved mascot is Colin, and members often enjoyed Mett, a traditional German breakfast food. When r/placede's community came to an end, VC 1 took the initiative to create its own Discord server, continuing the camaraderie and connections that had been forged during their time together.", "links": {"subreddit": ["placede"], "discord": ["placede"]}, "path": {"250-258": [[-851, -609], [-851, -595], [-827, -594], [-827, -609]]}, "center": {"250-258": [-839, -602]}}, -{"id": 4583, "name": "My little Pony X Brasil", "description": "A minimalist representation of the union between the My little Pony community (r/mylittlepony) and Brazil.", "links": {"subreddit": ["mylittlepony"], "discord": ["bronyplace"]}, "path": {"250-258": [[-629, -641], [-618, -641], [-618, -636], [-629, -636]]}, "center": {"250-258": [-623, -638]}}, -{"id": 4584, "name": "AmoKings", "description": "A French and a Romanian crowned amogi staring at each other.", "links": {}, "path": {"250-258": [[-371, 79], [-365, 79], [-364, 76], [-365, 73], [-371, 73], [-372, 76]]}, "center": {"250-258": [-368, 76]}}, +{"id": 4581, "name": "Fluttershy", "description": "Fluttershy is one of the six main characters from the My Little Pony: Friendship is Magic TV show.", "links": {}, "path": {"250-258, T": [[1043, -864], [1043, -846], [1059, -846], [1059, -848], [1063, -848], [1063, -864]]}, "center": {"250-258, T": [1053, -855]}}, +{"id": 4582, "name": "VC 1", "description": "VC 1 was a voice chat channel on r/placede's Discord, known for its vibrant and tight-knit community. The channel's beloved mascot is Colin, and members often enjoyed Mett, a traditional German breakfast food. When r/placede's community came to an end, VC 1 took the initiative to create its own Discord server, continuing the camaraderie and connections that had been forged during their time together.", "links": {"subreddit": ["placede"], "discord": ["placede"]}, "path": {"250-258, T": [[-851, -609], [-851, -595], [-827, -594], [-827, -609]]}, "center": {"250-258, T": [-839, -602]}}, +{"id": 4583, "name": "My little Pony X Brasil", "description": "A minimalist representation of the union between the My little Pony community (r/mylittlepony) and Brazil.", "links": {"subreddit": ["mylittlepony"], "discord": ["bronyplace"]}, "path": {"250-258, T": [[-629, -641], [-618, -641], [-618, -636], [-629, -636]]}, "center": {"250-258, T": [-623, -638]}}, +{"id": 4584, "name": "AmoKings", "description": "A French and a Romanian crowned amogi staring at each other.", "links": {}, "path": {"250-258, T": [[-371, 79], [-365, 79], [-364, 76], [-365, 73], [-371, 73], [-372, 76]]}, "center": {"250-258, T": [-368, 76]}}, {"id": 4585, "name": "Deltarune chile heart", "description": "This heart was created with the help of chile and deltarune in order to make sure that the chilean hivemind doesnt accidentaly take over their mural", "links": {}, "path": {"168": [[326, 942], [322, 938], [325, 935], [326, 936], [329, 935], [331, 938], [327, 942], [325, 942]]}, "center": {"168": [327, 939]}}, -{"id": 4586, "name": "Hooky!", "description": "This artwork depicts the mascot of the r/HypnoHookup subreddit. Hypnohookup is for people to post personals searching for partners to engage in Erotic Hypnosis with.\n\nShe is named \"Hooky\" as a namesake to the HypnoHookup subreddit. She is the first of several \"Hooky girls\", a series of mascots / characters which are the faces of the discord server's bots.\n\nHooky is the first and most recogniseable of these. She has a sassy attitude and bratty personality. She was on the canvas in 2022, and made a return for the 2023 canvas with an improved design, an added mind control/mind interface chip due to an agreement with the Starset group, and the subreddit's name beneath her. \n\nShe is the 2nd piece of art from r/HypnoHookup on the canvas this year, the 1st being Hooky Police who is located on the r/placepride flag (trans sector). \n\nAfter her completion, the leader of the effort to build her and Hooky Police was promoted to Field Marshal after a community vote in the Discord (from General).", "links": {"subreddit": ["hypnohookup"], "discord": ["hypnohookup"]}, "path": {"250-258": [[1391, -1], [1403, -1], [1403, 11], [1406, 11], [1406, 23], [1431, 23], [1431, 27], [1383, 27], [1383, 23], [1390, 23], [1390, 2], [1391, 2]]}, "center": {"250-258": [1398, 18]}}, -{"id": 4587, "name": "Geoguessr", "description": "GeoGuessr is a browser-based geography game in which players are tasked to guess locations from Google Street View imagery.\n\nLogo was originally supposed to be \"Geoguessr\", but after realizing there was not enough space for \"guessr\", goose was drawn instead.", "links": {"website": ["https://www.geoguessr.com/"], "subreddit": ["geoguessr"], "discord": ["BkP6sRH3vP"]}, "path": {"250-258": [[-42, 929], [-29, 929], [-29, 928], [-23, 928], [-23, 926], [-22, 926], [-22, 925], [-19, 925], [-19, 926], [-18, 926], [-18, 930], [-15, 930], [-15, 933], [-14, 933], [-14, 934], [-15, 934], [-15, 935], [-16, 935], [-16, 937], [-23, 937], [-23, 940], [-24, 940], [-24, 941], [-25, 941], [-25, 942], [-28, 942], [-28, 941], [-29, 941], [-29, 940], [-30, 940], [-30, 939], [-42, 939], [-42, 938], [-43, 938], [-43, 930], [-42, 930]]}, "center": {"250-258": [-28, 934]}}, -{"id": 4588, "name": "Stade Malherbe Caen", "description": "Logo of a French soccer team based in Caen, which plays in Ligue 2.", "links": {"website": ["https://fr.wikipedia.org/wiki/Stade_Malherbe_Caen"]}, "path": {"250-258": [[-501, 90], [-455, 90], [-455, 106], [-501, 106]]}, "center": {"250-258": [-478, 98]}}, -{"id": 4589, "name": "N7 Armor Stripe 2", "description": "Iconic stripe from Commander Shepard's armor in the game series Mass Effect.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"179-197": [[-843, -1000], [-839, -1000], [-839, -966], [-843, -966]], "198-259": [[-947, -1000], [-943, -1000], [-943, -967], [-947, -967]]}, "center": {"179-197": [-841, -983], "198-259": [-945, -983]}}, -{"id": 4590, "name": "Sitting Swablu", "description": "This is the cotton bird Pokémon swablu as it appears in Pokémon Ruby/Sapphire/Emerald as a placeable secret base plush.", "links": {"subreddit": ["pokemonplace2"], "discord": ["TZeRPaFZ"]}, "path": {"220-258": [[-1204, 370], [-1195, 370], [-1195, 369], [-1193, 369], [-1193, 368], [-1192, 368], [-1192, 365], [-1193, 365], [-1193, 364], [-1194, 364], [-1194, 363], [-1195, 363], [-1195, 362], [-1196, 362], [-1196, 361], [-1197, 361], [-1197, 359], [-1194, 359], [-1194, 358], [-1195, 358], [-1195, 357], [-1197, 357], [-1197, 358], [-1198, 358], [-1198, 359], [-1201, 359], [-1201, 358], [-1202, 358], [-1202, 357], [-1205, 357], [-1205, 358], [-1204, 358], [-1204, 359], [-1202, 359], [-1202, 361], [-1203, 361], [-1203, 362], [-1204, 362], [-1204, 363], [-1205, 363], [-1205, 364], [-1206, 364], [-1206, 365], [-1207, 365], [-1207, 368], [-1206, 368], [-1206, 369], [-1205, 369], [-1204, 369]]}, "center": {"220-258": [-1199, 365]}}, -{"id": 4591, "name": "Inugami Korone's yubi", "description": "Inugami Korone is a Japanese virtual YouTuber and dog associated with Hololive as part of hololive GAMERS. One of her catchphrases is \"Yubi! Yubi!\", encouraging listeners to give their yubi/fingers.", "links": {"website": ["https://www.youtube.com/channel/UChAnqc_AY5_I3Px5dig3X1Q", "https://hololive.hololivepro.com/en/talents/inugami-korone/", "https://virtualyoutuber.fandom.com/wiki/Inugami_Korone", "https://hololive.wiki/wiki/Inugami_Korone", "https://hololivevtuber.fandom.com/wiki/Inugami_Korone"], "subreddit": ["Hololive", "InugamiKorone"], "discord": ["korofans"]}, "path": {"250-258": [[-561, -280], [-561, -284], [-560, -285], [-559, -284], [-559, -280]]}, "center": {"250-258": [-560, -282]}}, -{"id": 4592, "name": "Thank you Greg, Thank you Serrif", "description": "On Thursday, the start of r/place 2023, due to the incredible growth from under 20k to over 110k Member, the r/PlaceDE Discord was unusable for around 3 hours. The server was completely offline, new members could not join and most members were not able to see the server at all. Greg and Serrif, who both work at Discord, helped and moved the Discord-Server to a stronger Cluster.\nThe pineapple is taken from Gregs profil picture. The N stands for the University which Serrif attended.", "links": {"subreddit": ["placeDE"]}, "path": {"250-258": [[-1176, -414], [-1176, -443], [-1154, -443], [-1154, -449], [-1139, -449], [-1139, -443], [-1117, -443], [-1117, -414]]}, "center": {"250-258": [-1146, -429]}}, -{"id": 4593, "name": "Krteček and Reksio holding beer", "description": "/r/place saw a delightful display of Czech-Polish camaraderie; Krteček and Reksio, clinking beers in unity, became the perfect symbol of their strong relations and cooperation", "links": {"subreddit": ["czech", "polska", "poland"], "discord": ["39J5zwpfha"]}, "path": {"250-258": [[444, -160], [443, -120], [544, -121], [541, -147], [499, -152], [492, -167], [478, -163], [476, -154], [444, -156]]}, "center": {"250-258": [486, -139]}}, -{"id": 4594, "name": "Harvey Alibastor", "description": "\"A shifty Fishman lawyer. For whatever reason he speaks great English, but not Fishman...\"\nHarvey is a party member from the game LISA: The Painful. Located near OMORI, due to both games being RPGs inspired in Earthbound.", "links": {"subreddit": ["lisathepainfulrpg"]}, "path": {"167-258": [[-648, 365], [-646, 373], [-638, 374], [-638, 377], [-624, 376], [-624, 363], [-632, 362], [-632, 358], [-641, 358], [-641, 362], [-642, 362], [-645, 366]]}, "center": {"167-258": [-632, 370]}}, -{"id": 4595, "name": "r/LCFC", "description": "The subreddit for Leicester City Football Club", "links": {"subreddit": ["lcfc"], "discord": ["eTSmjDPArz"]}, "path": {"215-258": [[-1174, 275], [-1168, 275], [-1168, 295], [-1174, 295]]}, "center": {"215-258": [-1171, 285]}}, +{"id": 4586, "name": "Hooky!", "description": "This artwork depicts the mascot of the r/HypnoHookup subreddit. Hypnohookup is for people to post personals searching for partners to engage in Erotic Hypnosis with.\n\nShe is named \"Hooky\" as a namesake to the HypnoHookup subreddit. She is the first of several \"Hooky girls\", a series of mascots / characters which are the faces of the discord server's bots.\n\nHooky is the first and most recogniseable of these. She has a sassy attitude and bratty personality. She was on the canvas in 2022, and made a return for the 2023 canvas with an improved design, an added mind control/mind interface chip due to an agreement with the Starset group, and the subreddit's name beneath her. \n\nShe is the 2nd piece of art from r/HypnoHookup on the canvas this year, the 1st being Hooky Police who is located on the r/placepride flag (trans sector). \n\nAfter her completion, the leader of the effort to build her and Hooky Police was promoted to Field Marshal after a community vote in the Discord (from General).", "links": {"subreddit": ["hypnohookup"], "discord": ["hypnohookup"]}, "path": {"250-258, T": [[1391, -1], [1403, -1], [1403, 11], [1406, 11], [1406, 23], [1431, 23], [1431, 27], [1383, 27], [1383, 23], [1390, 23], [1390, 2], [1391, 2]]}, "center": {"250-258, T": [1398, 18]}}, +{"id": 4587, "name": "Geoguessr", "description": "GeoGuessr is a browser-based geography game in which players are tasked to guess locations from Google Street View imagery.\n\nLogo was originally supposed to be \"Geoguessr\", but after realizing there was not enough space for \"guessr\", goose was drawn instead.", "links": {"website": ["https://www.geoguessr.com/"], "subreddit": ["geoguessr"], "discord": ["BkP6sRH3vP"]}, "path": {"250-258, T": [[-42, 929], [-29, 929], [-29, 928], [-23, 928], [-23, 926], [-22, 926], [-22, 925], [-19, 925], [-19, 926], [-18, 926], [-18, 930], [-15, 930], [-15, 933], [-14, 933], [-14, 934], [-15, 934], [-15, 935], [-16, 935], [-16, 937], [-23, 937], [-23, 940], [-24, 940], [-24, 941], [-25, 941], [-25, 942], [-28, 942], [-28, 941], [-29, 941], [-29, 940], [-30, 940], [-30, 939], [-42, 939], [-42, 938], [-43, 938], [-43, 930], [-42, 930]]}, "center": {"250-258, T": [-28, 934]}}, +{"id": 4588, "name": "Stade Malherbe Caen", "description": "Logo of a French soccer team based in Caen, which plays in Ligue 2.", "links": {"website": ["https://fr.wikipedia.org/wiki/Stade_Malherbe_Caen"]}, "path": {"250-258, T": [[-501, 90], [-455, 90], [-455, 106], [-501, 106]]}, "center": {"250-258, T": [-478, 98]}}, +{"id": 4589, "name": "N7 Armor Stripe 2", "description": "Iconic stripe from Commander Shepard's armor in the game series Mass Effect.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"179-197": [[-843, -1000], [-839, -1000], [-839, -966], [-843, -966]], "198-259, T": [[-947, -1000], [-943, -1000], [-943, -967], [-947, -967]]}, "center": {"179-197": [-841, -983], "198-259, T": [-945, -983]}}, +{"id": 4590, "name": "Sitting Swablu", "description": "This is the cotton bird Pokémon swablu as it appears in Pokémon Ruby/Sapphire/Emerald as a placeable secret base plush.", "links": {"subreddit": ["pokemonplace2"], "discord": ["TZeRPaFZ"]}, "path": {"220-258, T": [[-1204, 370], [-1195, 370], [-1195, 369], [-1193, 369], [-1193, 368], [-1192, 368], [-1192, 365], [-1193, 365], [-1193, 364], [-1194, 364], [-1194, 363], [-1195, 363], [-1195, 362], [-1196, 362], [-1196, 361], [-1197, 361], [-1197, 359], [-1194, 359], [-1194, 358], [-1195, 358], [-1195, 357], [-1197, 357], [-1197, 358], [-1198, 358], [-1198, 359], [-1201, 359], [-1201, 358], [-1202, 358], [-1202, 357], [-1205, 357], [-1205, 358], [-1204, 358], [-1204, 359], [-1202, 359], [-1202, 361], [-1203, 361], [-1203, 362], [-1204, 362], [-1204, 363], [-1205, 363], [-1205, 364], [-1206, 364], [-1206, 365], [-1207, 365], [-1207, 368], [-1206, 368], [-1206, 369], [-1205, 369], [-1204, 369]]}, "center": {"220-258, T": [-1199, 365]}}, +{"id": 4591, "name": "Inugami Korone's yubi", "description": "Inugami Korone is a Japanese virtual YouTuber and dog associated with Hololive as part of hololive GAMERS. One of her catchphrases is \"Yubi! Yubi!\", encouraging listeners to give their yubi/fingers.", "links": {"website": ["https://www.youtube.com/channel/UChAnqc_AY5_I3Px5dig3X1Q", "https://hololive.hololivepro.com/en/talents/inugami-korone/", "https://virtualyoutuber.fandom.com/wiki/Inugami_Korone", "https://hololive.wiki/wiki/Inugami_Korone", "https://hololivevtuber.fandom.com/wiki/Inugami_Korone"], "subreddit": ["Hololive", "InugamiKorone"], "discord": ["korofans"]}, "path": {"250-258, T": [[-561, -280], [-561, -284], [-560, -285], [-559, -284], [-559, -280]]}, "center": {"250-258, T": [-560, -282]}}, +{"id": 4592, "name": "Thank you Greg, Thank you Serrif", "description": "On Thursday, the start of r/place 2023, due to the incredible growth from under 20k to over 110k Member, the r/PlaceDE Discord was unusable for around 3 hours. The server was completely offline, new members could not join and most members were not able to see the server at all. Greg and Serrif, who both work at Discord, helped and moved the Discord-Server to a stronger Cluster.\nThe pineapple is taken from Gregs profil picture. The N stands for the University which Serrif attended.", "links": {"subreddit": ["placeDE"]}, "path": {"250-258, T": [[-1176, -414], [-1176, -443], [-1154, -443], [-1154, -449], [-1139, -449], [-1139, -443], [-1117, -443], [-1117, -414]]}, "center": {"250-258, T": [-1146, -429]}}, +{"id": 4593, "name": "Krteček and Reksio holding beer", "description": "/r/place saw a delightful display of Czech-Polish camaraderie; Krteček and Reksio, clinking beers in unity, became the perfect symbol of their strong relations and cooperation", "links": {"subreddit": ["czech", "polska", "poland"], "discord": ["39J5zwpfha"]}, "path": {"250-258, T": [[444, -160], [443, -120], [544, -121], [541, -147], [499, -152], [492, -167], [478, -163], [476, -154], [444, -156]]}, "center": {"250-258, T": [486, -139]}}, +{"id": 4594, "name": "Harvey Alibastor", "description": "\"A shifty Fishman lawyer. For whatever reason he speaks great English, but not Fishman...\"\nHarvey is a party member from the game LISA: The Painful. Located near OMORI, due to both games being RPGs inspired in Earthbound.", "links": {"subreddit": ["lisathepainfulrpg"]}, "path": {"167-258, T": [[-648, 365], [-646, 373], [-638, 374], [-638, 377], [-624, 376], [-624, 363], [-632, 362], [-632, 358], [-641, 358], [-641, 362], [-642, 362], [-645, 366]]}, "center": {"167-258, T": [-632, 370]}}, +{"id": 4595, "name": "r/LCFC", "description": "The subreddit for Leicester City Football Club", "links": {"subreddit": ["lcfc"], "discord": ["eTSmjDPArz"]}, "path": {"215-258, T": [[-1174, 275], [-1168, 275], [-1168, 295], [-1174, 295]]}, "center": {"215-258, T": [-1171, 285]}}, {"id": 4596, "name": "Red Velvet's Logo, the Prototype", "description": "Red Velvet is a 5-member k-pop group consisting of Irene, Seulgi, Wendy, Joy, and Yeri. This prototype logo was the fans' first mark onto r/place for this year. Made and coordinated by members in the linked Red Velvet discord group.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"16-17": [[293, 204], [293, 218], [311, 218], [311, 204]]}, "center": {"16-17": [302, 211]}}, {"id": 4597, "name": "Arfozy", "description": "(''Arfozy'' minecraft player, youtuber). Plays minigames very well most often on bedrock edition. (real name is Mason)", "links": {"website": ["https://www.youtube.com/@Arfozy"], "subreddit": ["Arfozy"], "discord": ["Arfozy"]}, "path": {"126-132": [[-1000, -356], [-1000, -361], [-979, -361], [-979, -356]]}, "center": {"126-132": [-989, -358]}}, -{"id": 4598, "name": "Heart of Luxembourg", "description": "A heart made by the catalan community for his good relations with the Luxembourger community.", "links": {"website": ["https://en.wikipedia.org/wiki/Luxembourg", "https://en.wikipedia.org/wiki/Catalonia"], "subreddit": ["Luxembourg", "catalunya"]}, "path": {"250-258": [[642, 121], [640, 124], [643, 126], [644, 128], [645, 129], [647, 127], [649, 125], [650, 123], [648, 121], [645, 123]]}, "center": {"250-258": [645, 125]}}, -{"id": 4599, "name": "BT21", "description": "The BT21 characters made by BTS, along with Wootteo, a character made by BTS's Jin for his pre-enlistment song The Astronaut", "links": {"subreddit": ["bangtan"]}, "path": {"162-258": [[-89, -911], [-89, -885], [-65, -885], [-65, -911]]}, "center": {"162-258": [-77, -898]}}, +{"id": 4598, "name": "Heart of Luxembourg", "description": "A heart made by the catalan community for his good relations with the Luxembourger community.", "links": {"website": ["https://en.wikipedia.org/wiki/Luxembourg", "https://en.wikipedia.org/wiki/Catalonia"], "subreddit": ["Luxembourg", "catalunya"]}, "path": {"250-258, T": [[642, 121], [640, 124], [643, 126], [644, 128], [645, 129], [647, 127], [649, 125], [650, 123], [648, 121], [645, 123]]}, "center": {"250-258, T": [645, 125]}}, +{"id": 4599, "name": "BT21", "description": "The BT21 characters made by BTS, along with Wootteo, a character made by BTS's Jin for his pre-enlistment song The Astronaut", "links": {"subreddit": ["bangtan"]}, "path": {"162-258, T": [[-89, -911], [-89, -885], [-65, -885], [-65, -911]]}, "center": {"162-258, T": [-77, -898]}}, {"id": 4600, "name": "Flag of Auvergne", "description": "Auvergne is a cultural region in central France.", "links": {"website": ["https://en.wikipedia.org/wiki/Auvergne"], "subreddit": ["france", "placeFR", "Auvergne"], "discord": ["placeFR"]}, "path": {"200-249": [[-412, 279], [-402, 279], [-402, 286], [-412, 286]]}, "center": {"200-249": [-407, 283]}}, -{"id": 4601, "name": "Flag of Pays de la Loire", "description": "Pays de la Loire (Departments: Loire-Atlantique; Maine-et-Loire; Mayenne; Sarthe; Vendée) is a region in western France with a coastline on the Bay of Biscay, and encompasses part of the Loire Valley, famed for its vineyards.", "links": {"website": ["https://en.wikipedia.org/wiki/Pays_de_la_Loire"], "subreddit": ["paysdelaloire", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"169-258, 24-46, 94-101": [[-480, 279], [-470, 279], [-470, 286], [-479, 286], [-479, 279]]}, "center": {"169-258, 24-46, 94-101": [-474, 283]}}, +{"id": 4601, "name": "Flag of Pays de la Loire", "description": "Pays de la Loire (Departments: Loire-Atlantique; Maine-et-Loire; Mayenne; Sarthe; Vendée) is a region in western France with a coastline on the Bay of Biscay, and encompasses part of the Loire Valley, famed for its vineyards.", "links": {"website": ["https://en.wikipedia.org/wiki/Pays_de_la_Loire"], "subreddit": ["paysdelaloire", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"169-258, 24-46, 94-101, T": [[-480, 279], [-470, 279], [-470, 286], [-479, 286], [-479, 279]]}, "center": {"169-258, 24-46, 94-101, T": [-474, 283]}}, {"id": 4602, "name": "Red Velvet's 'ReVebot', with colors", "description": "A robot mascot of the K-Pop group, Red Velvet, named 'ReVe'. Originally part of K-pop Place's West Block, it was relocated here by the members of the Red Velvet Discord Server after being covered by the expansion by the Pixel Anime Faction. Shortly after it formed, it was covered and replaced about 25 pixels to the left.", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"208-230": [[1342, 5], [1358, 5], [1358, 24], [1342, 24]]}, "center": {"208-230": [1350, 15]}}, -{"id": 4603, "name": "Occitan cross", "description": "The occitan cross is a flag related to Occitania, a cultural space mainly in France (but also Val of Aran in Spain, and some parts of Italian Alps) where is spoken the occitan language since the middle ages.", "links": {}, "path": {"193-259": [[985, -612], [986, -613], [984, -611], [983, -610], [983, -609], [982, -609], [982, -608], [984, -609], [982, -609], [981, -609], [980, -609], [979, -609], [987, -607], [986, -605], [985, -605], [986, -604], [986, -603], [987, -604], [981, -605], [980, -605], [991, -611], [991, -612], [987, -614], [986, -615], [982, -614], [983, -614], [979, -612], [980, -612], [980, -610], [994, -604], [994, -603], [994, -609], [994, -613], [993, -613], [993, -615], [993, -614], [994, -614], [991, -615], [990, -615], [989, -605], [988, -604], [990, -603], [991, -603], [992, -603], [993, -603], [981, -604], [980, -604], [980, -603], [982, -603], [985, -603], [980, -607], [982, -615], [979, -615], [979, -614], [979, -613], [979, -610], [979, -603], [985, -610], [989, -615], [983, -614], [994, -615]]}, "center": {"193-259": [992, -608]}}, -{"id": 4604, "name": "Initial 130 hearts", "description": "The first 130 hearts of the tribute, one for each victims of the attack of 13 November 2015 in France.\n\nIt was initially supposed to stop at 130, but the hive-mind was too strong and the hearts eventually covered the entire flag.", "links": {"website": ["https://en.wikipedia.org/wiki/November_2015_Paris_attacks"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"195-258": [[813, -794], [814, -676], [850, -676], [849, -794]]}, "center": {"195-258": [832, -735]}}, -{"id": 4605, "name": "Love Yourself Albums", "description": "The covers for the Love Yourself albums series by BTS", "links": {"subreddit": ["bangtan"]}, "path": {"154-161": [[-89, -817], [-89, -840], [-158, -840], [-158, -817]], "148-150": [[-78, -752], [-78, -729], [-56, -729], [-56, -752]], "162-258": [[-158, -911], [-158, -885], [-89, -886], [-89, -910]]}, "center": {"154-161": [-123, -828], "148-150": [-67, -740], "162-258": [-145, -898]}}, -{"id": 4606, "name": "Occitan Cross", "description": "The Occitan Cross is a symbol related to Occitania, a cultural region mostly located the south of France but also in Val d'Aran, Spain, and some parts of Italian Alps)\n\nThis region has spoke the local Occitan language since the middle ages.", "links": {}, "path": {"197-258": [[986, -601], [984, -604], [982, -603], [985, -607], [983, -607], [981, -605], [980, -606], [981, -607], [977, -609], [980, -610], [981, -611], [980, -613], [983, -611], [984, -611], [982, -615], [984, -614], [986, -617], [988, -614], [990, -615], [988, -612], [988, -611], [992, -613], [991, -611], [993, -609], [991, -607], [992, -605], [989, -607], [988, -606], [990, -604], [989, -603], [988, -604]]}, "center": {"197-258": [986, -609]}}, +{"id": 4603, "name": "Occitan cross", "description": "The occitan cross is a flag related to Occitania, a cultural space mainly in France (but also Val of Aran in Spain, and some parts of Italian Alps) where is spoken the occitan language since the middle ages.", "links": {}, "path": {"193-259, T": [[985, -612], [986, -613], [984, -611], [983, -610], [983, -609], [982, -609], [982, -608], [984, -609], [982, -609], [981, -609], [980, -609], [979, -609], [987, -607], [986, -605], [985, -605], [986, -604], [986, -603], [987, -604], [981, -605], [980, -605], [991, -611], [991, -612], [987, -614], [986, -615], [982, -614], [983, -614], [979, -612], [980, -612], [980, -610], [994, -604], [994, -603], [994, -609], [994, -613], [993, -613], [993, -615], [993, -614], [994, -614], [991, -615], [990, -615], [989, -605], [988, -604], [990, -603], [991, -603], [992, -603], [993, -603], [981, -604], [980, -604], [980, -603], [982, -603], [985, -603], [980, -607], [982, -615], [979, -615], [979, -614], [979, -613], [979, -610], [979, -603], [985, -610], [989, -615], [983, -614], [994, -615]]}, "center": {"193-259, T": [992, -608]}}, +{"id": 4604, "name": "Initial 130 hearts", "description": "The first 130 hearts of the tribute, one for each victims of the attack of 13 November 2015 in France.\n\nIt was initially supposed to stop at 130, but the hive-mind was too strong and the hearts eventually covered the entire flag.", "links": {"website": ["https://en.wikipedia.org/wiki/November_2015_Paris_attacks"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"195-258, T": [[813, -794], [814, -676], [850, -676], [849, -794]]}, "center": {"195-258, T": [832, -735]}}, +{"id": 4605, "name": "Love Yourself Albums", "description": "The covers for the Love Yourself albums series by BTS", "links": {"subreddit": ["bangtan"]}, "path": {"154-161": [[-89, -817], [-89, -840], [-158, -840], [-158, -817]], "148-150": [[-78, -752], [-78, -729], [-56, -729], [-56, -752]], "162-258, T": [[-158, -911], [-158, -885], [-89, -886], [-89, -910]]}, "center": {"154-161": [-123, -828], "148-150": [-67, -740], "162-258, T": [-145, -898]}}, +{"id": 4606, "name": "Occitan Cross", "description": "The Occitan Cross is a symbol related to Occitania, a cultural region mostly located the south of France but also in Val d'Aran, Spain, and some parts of Italian Alps)\n\nThis region has spoke the local Occitan language since the middle ages.", "links": {}, "path": {"197-258, T": [[986, -601], [984, -604], [982, -603], [985, -607], [983, -607], [981, -605], [980, -606], [981, -607], [977, -609], [980, -610], [981, -611], [980, -613], [983, -611], [984, -611], [982, -615], [984, -614], [986, -617], [988, -614], [990, -615], [988, -612], [988, -611], [992, -613], [991, -611], [993, -609], [991, -607], [992, -605], [989, -607], [988, -606], [990, -604], [989, -603], [988, -604]]}, "center": {"197-258, T": [986, -609]}}, {"id": 4607, "name": "Forever", "description": "Made by the brazilian stramer Forever, the drawing is two emotes of his chat, his skin in minecraft and his dog Nelsinho holding hearts", "links": {"website": ["https://www.twitch.tv/forever"]}, "path": {"165": [[-39, 374], [-40, 398], [29, 400], [32, 376], [30, 375], [-18, 374]]}, "center": {"165": [18, 387]}}, -{"id": 4608, "name": "Derby County Football Club", "description": "Founded in 1884, Derby County (a.k.a The Rams), are one of the twelve founding members of the English Football League.", "links": {"website": ["https://www.dcfc.co.uk/"], "subreddit": ["derbycounty"]}, "path": {"250-258": [[-1345, 8], [-1345, 13], [-1329, 13], [-1329, 8]]}, "center": {"250-258": [-1337, 11]}}, -{"id": 4609, "name": "Bill Cipher", "description": "Bill Cipher is an inter-dimensional demon that can be summoned and released into a person's mind. He resembles a one-eyed yellow triangle that wears a top hat and a bow tie. \n\nHe is one of the main antagonist of the series \"Gravity Falls\" an American mystery comedy animated television series created by Alex Hirsch for Disney between 2012 and 2016\n\nthere's another Bill Cipher up on this flag", "links": {"subreddit": ["gravityfalls"]}, "path": {"52-252": [[-389, 451], [-388, 451], [-387, 450], [-386, 450], [-386, 452], [-386, 451], [-386, 450], [-383, 450], [-382, 450], [-382, 451], [-381, 451], [-381, 452], [-381, 451], [-382, 451], [-382, 450], [-379, 450], [-379, 451], [-378, 451], [-378, 452], [-378, 450], [-376, 450], [-376, 451], [-376, 452], [-376, 450], [-370, 450], [-370, 449], [-378, 441], [-377, 440], [-380, 440], [-380, 434], [-381, 435], [-382, 434], [-382, 440], [-385, 440], [-383, 440], [-390, 447], [-390, 450]]}, "center": {"52-252": [-381, 445]}}, +{"id": 4608, "name": "Derby County Football Club", "description": "Founded in 1884, Derby County (a.k.a The Rams), are one of the twelve founding members of the English Football League.", "links": {"website": ["https://www.dcfc.co.uk/"], "subreddit": ["derbycounty"]}, "path": {"250-258, T": [[-1345, 8], [-1345, 13], [-1329, 13], [-1329, 8]]}, "center": {"250-258, T": [-1337, 11]}}, +{"id": 4609, "name": "Bill Cipher", "description": "Bill Cipher is an inter-dimensional demon that can be summoned and released into a person's mind. He resembles a one-eyed yellow triangle that wears a top hat and a bow tie. \n\nHe is one of the main antagonist of the series \"Gravity Falls\" an American mystery comedy animated television series created by Alex Hirsch for Disney between 2012 and 2016\n\nthere's another Bill Cipher up on this flag", "links": {"subreddit": ["gravityfalls"]}, "path": {"52-252, T": [[-389, 451], [-388, 451], [-387, 450], [-386, 450], [-386, 452], [-386, 451], [-386, 450], [-383, 450], [-382, 450], [-382, 451], [-381, 451], [-381, 452], [-381, 451], [-382, 451], [-382, 450], [-379, 450], [-379, 451], [-378, 451], [-378, 452], [-378, 450], [-376, 450], [-376, 451], [-376, 452], [-376, 450], [-370, 450], [-370, 449], [-378, 441], [-377, 440], [-380, 440], [-380, 434], [-381, 435], [-382, 434], [-382, 440], [-385, 440], [-383, 440], [-390, 447], [-390, 450]]}, "center": {"52-252, T": [-381, 445]}}, {"id": 4610, "name": "Highman shark", "description": "The green shark mascon of the Romanian youtuber and streamer Highman. It was placed over a Vietnamese flag during the last hour of r/place.", "links": {"website": ["https://www.youtube.com/c/highman/featured"], "discord": ["rechinii"]}, "path": {"251-258": [[-1320, 83], [-1319, 138], [-1231, 139], [-1232, 83]]}, "center": {"251-258": [-1275, 111]}}, -{"id": 4611, "name": "Maiden's Tower", "description": "The Maiden's Tower (Turkish: Kız Kulesi), also known as Leander's Tower (Tower of Leandros) since the Byzantine period, is a tower on a small islet at the southern entrance of the Bosphorus strait, 200 m (220 yd) from the coast of Üsküdar in Istanbul, Turkey.", "links": {"website": ["https://en.wikipedia.org/wiki/Maiden%27s_Tower"], "subreddit": ["turkey"]}, "path": {"250-258": [[-569, 447], [-502, 447], [-502, 502], [-569, 502]]}, "center": {"250-258": [-535, 475]}}, -{"id": 4612, "name": "Tiny Punpun", "description": "A small scale Punpun made by the Oyasumi Punpun community", "links": {"website": ["https://en.wikipedia.org/wiki/Goodnight_Punpun"], "subreddit": ["OyasumiPunpun"], "discord": ["EaJfDYPG"]}, "path": {"231-258": [[1423, -21], [1436, -21], [1436, -12], [1423, -12]]}, "center": {"231-258": [1430, -16]}}, -{"id": 4613, "name": "Palestinian heart", "description": "The Irish people are known for being very symapthic towards the Palestinians. in their eyes: both people (Irish and the Palestinians), were and are being oppressed by powerful regimes (Palestine by Israel and Ireland by UK)\n\nfor that reason, and because the Israeli flag was so close to Ireland flag which caused tensions and vandal attempts, Ireland decided to show solidarity to the Palestinin people by making a Palestinian heart flag.", "links": {"subreddit": ["ireland"]}, "path": {"250-258": [[330, -186], [328, -188], [326, -188], [323, -184], [323, -181], [330, -174], [337, -181], [337, -184], [332, -188]]}, "center": {"250-258": [330, -181]}}, -{"id": 4614, "name": "Gigastructural Engineering Logo", "description": "The logo of Gigastructural Engineering & More, a popular mod for the Paradox Grand Strategy game Stellaris. The mod was originally created by Elowiny in 2017 and is currently maintained by TTFTCUTS, with contributions from numerous others. With over 433k subscribers as of July 2023, it is the most subscribed gameplay mod for Stellaris and adds over forty new megastructures as well as four new crises to the game.", "links": {"website": ["https://steamcommunity.com/sharedfiles/filedetails/?id=1121692237"], "discord": ["xUrG9wh"]}, "path": {"250-258": [[-326, -864], [-310, -864], [-311, -863], [-308, -863], [-308, -862], [-307, -862], [-307, -861], [-306, -861], [-306, -860], [-305, -860], [-305, -859], [-304, -859], [-304, -857], [-304, -856], [-303, -856], [-303, -853], [-303, -852], [-302, -852], [-302, -844], [-303, -844], [-303, -842], [-304, -842], [-304, -841], [-305, -841], [-305, -840], [-306, -840], [-307, -839], [-307, -838], [-308, -838], [-308, -837], [-309, -837], [-310, -837], [-310, -836], [-311, -836], [-311, -835], [-313, -835], [-313, -834], [-325, -834], [-325, -835], [-327, -835], [-327, -836], [-328, -836], [-328, -837], [-330, -837], [-330, -838], [-330, -839], [-331, -839], [-331, -841], [-332, -841], [-333, -842], [-333, -843], [-333, -844], [-334, -844], [-334, -852], [-333, -851], [-333, -856], [-332, -856], [-332, -859], [-331, -859], [-331, -860], [-330, -860], [-330, -861], [-329, -861], [-328, -862], [-328, -863], [-327, -863], [-326, -863]]}, "center": {"250-258": [-318, -849]}}, +{"id": 4611, "name": "Maiden's Tower", "description": "The Maiden's Tower (Turkish: Kız Kulesi), also known as Leander's Tower (Tower of Leandros) since the Byzantine period, is a tower on a small islet at the southern entrance of the Bosphorus strait, 200 m (220 yd) from the coast of Üsküdar in Istanbul, Turkey.", "links": {"website": ["https://en.wikipedia.org/wiki/Maiden%27s_Tower"], "subreddit": ["turkey"]}, "path": {"250-258, T": [[-569, 447], [-502, 447], [-502, 502], [-569, 502]]}, "center": {"250-258, T": [-535, 475]}}, +{"id": 4612, "name": "Tiny Punpun", "description": "A small scale Punpun made by the Oyasumi Punpun community", "links": {"website": ["https://en.wikipedia.org/wiki/Goodnight_Punpun"], "subreddit": ["OyasumiPunpun"], "discord": ["EaJfDYPG"]}, "path": {"231-258, T": [[1423, -21], [1436, -21], [1436, -12], [1423, -12]]}, "center": {"231-258, T": [1430, -16]}}, +{"id": 4613, "name": "Palestinian heart", "description": "The Irish people are known for being very symapthic towards the Palestinians. in their eyes: both people (Irish and the Palestinians), were and are being oppressed by powerful regimes (Palestine by Israel and Ireland by UK)\n\nfor that reason, and because the Israeli flag was so close to Ireland flag which caused tensions and vandal attempts, Ireland decided to show solidarity to the Palestinin people by making a Palestinian heart flag.", "links": {"subreddit": ["ireland"]}, "path": {"250-258, T": [[330, -186], [328, -188], [326, -188], [323, -184], [323, -181], [330, -174], [337, -181], [337, -184], [332, -188]]}, "center": {"250-258, T": [330, -181]}}, +{"id": 4614, "name": "Gigastructural Engineering Logo", "description": "The logo of Gigastructural Engineering & More, a popular mod for the Paradox Grand Strategy game Stellaris. The mod was originally created by Elowiny in 2017 and is currently maintained by TTFTCUTS, with contributions from numerous others. With over 433k subscribers as of July 2023, it is the most subscribed gameplay mod for Stellaris and adds over forty new megastructures as well as four new crises to the game.", "links": {"website": ["https://steamcommunity.com/sharedfiles/filedetails/?id=1121692237"], "discord": ["xUrG9wh"]}, "path": {"250-258, T": [[-326, -864], [-310, -864], [-311, -863], [-308, -863], [-308, -862], [-307, -862], [-307, -861], [-306, -861], [-306, -860], [-305, -860], [-305, -859], [-304, -859], [-304, -857], [-304, -856], [-303, -856], [-303, -853], [-303, -852], [-302, -852], [-302, -844], [-303, -844], [-303, -842], [-304, -842], [-304, -841], [-305, -841], [-305, -840], [-306, -840], [-307, -839], [-307, -838], [-308, -838], [-308, -837], [-309, -837], [-310, -837], [-310, -836], [-311, -836], [-311, -835], [-313, -835], [-313, -834], [-325, -834], [-325, -835], [-327, -835], [-327, -836], [-328, -836], [-328, -837], [-330, -837], [-330, -838], [-330, -839], [-331, -839], [-331, -841], [-332, -841], [-333, -842], [-333, -843], [-333, -844], [-334, -844], [-334, -852], [-333, -851], [-333, -856], [-332, -856], [-332, -859], [-331, -859], [-331, -860], [-330, -860], [-330, -861], [-329, -861], [-328, -862], [-328, -863], [-327, -863], [-326, -863]]}, "center": {"250-258, T": [-318, -849]}}, {"id": 4615, "name": "Otter", "description": "A couple otter lovers trying to build a pixelart otter, sadly not getting finished in time for the whiteout", "links": {"subreddit": ["otters"]}, "path": {"253-258": [[1407, -921], [1406, -922], [1406, -923], [1407, -924], [1408, -924], [1409, -925], [1409, -926], [1408, -927], [1408, -928], [1408, -929], [1408, -937], [1409, -938], [1408, -939], [1407, -940], [1407, -944], [1406, -945], [1406, -946], [1407, -947], [1406, -948], [1407, -949], [1408, -950], [1408, -953], [1406, -955], [1409, -958], [1412, -958], [1413, -959], [1423, -959], [1428, -958], [1431, -952], [1432, -951], [1432, -939], [1430, -939], [1430, -937], [1429, -936], [1428, -935], [1428, -929], [1429, -928], [1429, -924], [1431, -924], [1432, -923], [1432, -921], [1427, -921], [1426, -922], [1425, -921], [1413, -921], [1412, -922], [1411, -921]]}, "center": {"253-258": [1420, -946]}}, -{"id": 4616, "name": "Flag of Puno", "description": "Puno is a city in southeastern Peru, located on the shore of Lake Titicaca. It is the capital city of the Puno Region and the Puno Province. The blue stripe represents Lake Titicaca and the white stripe represents hope & the citizens of Puno.", "links": {}, "path": {"250-258": [[-582, -770], [-536, -770], [-536, -757], [-582, -757], [-582, -759]]}, "center": {"250-258": [-559, -763]}}, +{"id": 4616, "name": "Flag of Puno", "description": "Puno is a city in southeastern Peru, located on the shore of Lake Titicaca. It is the capital city of the Puno Region and the Puno Province. The blue stripe represents Lake Titicaca and the white stripe represents hope & the citizens of Puno.", "links": {}, "path": {"250-258, T": [[-582, -770], [-536, -770], [-536, -757], [-582, -757], [-582, -759]]}, "center": {"250-258, T": [-559, -763]}}, {"id": 4617, "name": "Northstar logo", "description": "Titanfall 2 modding and custom server framework.", "links": {"website": ["https://northstar.tf"], "discord": ["northstar"]}, "path": {"251": [[-882, -273], [-884, -271], [-884, -269], [-883, -267], [-882, -266], [-880, -266], [-879, -267], [-879, -268], [-878, -269], [-878, -271], [-879, -272], [-880, -273]]}, "center": {"251": [-881, -270]}}, -{"id": 4618, "name": "The Dominican Republic and Puerto Rico", "description": "Smaller flags for two island countries in the Caribbean Sea with a shared early history and a close brotherhood throughout modern history.", "links": {"subreddit": ["Caribbean"], "discord": ["xhTf79pj"]}, "path": {"168-215": [[-566, 605], [-566, 594], [-581, 594], [-581, 568], [-567, 568], [-567, 559], [-581, 559], [-581, 605]], "216-258": [[-581, 564], [-581, 605], [-551, 605], [-551, 594], [-581, 594], [-581, 574], [-563, 574], [-563, 564]]}, "center": {"168-215": [-573, 600], "216-258": [-566, 599]}}, -{"id": 4619, "name": "Matoi Ryuko (Kill La Kill)", "description": "Ryūko Matoi is the main protagonist in the Kill la Kill anime and manga. She is a nomadic transfer student who transfers to Honnōji Academy in search of the other half of a red Scissor Blade she carries, and the one who murdered her father, \"Isshin Matoi\" (real name: Sōichirō Kiryūin).", "links": {"website": ["https://kill-la-kill.fandom.com/wiki/Ry%C5%ABko_Matoi"], "subreddit": ["KillLaKill"], "discord": ["As5t36hXsk"]}, "path": {"226-258": [[1000, -49], [1000, -82], [1037, -81], [1036, -49]]}, "center": {"226-258": [1018, -65]}}, +{"id": 4618, "name": "The Dominican Republic and Puerto Rico", "description": "Smaller flags for two island countries in the Caribbean Sea with a shared early history and a close brotherhood throughout modern history.", "links": {"subreddit": ["Caribbean"], "discord": ["xhTf79pj"]}, "path": {"168-215": [[-566, 605], [-566, 594], [-581, 594], [-581, 568], [-567, 568], [-567, 559], [-581, 559], [-581, 605]], "216-258, T": [[-581, 564], [-581, 605], [-551, 605], [-551, 594], [-581, 594], [-581, 574], [-563, 574], [-563, 564]]}, "center": {"168-215": [-573, 600], "216-258, T": [-566, 599]}}, +{"id": 4619, "name": "Matoi Ryuko (Kill La Kill)", "description": "Ryūko Matoi is the main protagonist in the Kill la Kill anime and manga. She is a nomadic transfer student who transfers to Honnōji Academy in search of the other half of a red Scissor Blade she carries, and the one who murdered her father, \"Isshin Matoi\" (real name: Sōichirō Kiryūin).", "links": {"website": ["https://kill-la-kill.fandom.com/wiki/Ry%C5%ABko_Matoi"], "subreddit": ["KillLaKill"], "discord": ["As5t36hXsk"]}, "path": {"226-258, T": [[1000, -49], [1000, -82], [1037, -81], [1036, -49]]}, "center": {"226-258, T": [1018, -65]}}, {"id": 4620, "name": "Baltic countries and Finland flags", "description": "A Lithuanian Tiktok Streamer called Angris (Angriskietas) has joined r/place. He and his group has followed his dammands and they made a Lithuanian flag. Soon latvia and Estonia join. And another flag has joined to the the part which was Finland. After Finlands flag was done Lithuanian tiktoker has ended his stream.", "links": {"website": ["https://www.tiktok.com/@angriskietas"]}, "path": {"153-158": [[-15, -806], [27, -806], [27, -779], [-14, -780]]}, "center": {"153-158": [6, -793]}}, {"id": 4621, "name": "Red Velvet's 'ReVe Cat'", "description": "The shape-shifting cat mascot, named 'ReVe', of the 5-member K-pop girl group Red Velvet. Made and coordinated by members in the linked Red Velvet discord group. The art was relocated twice before reaching it's final location at the end of r/place. (See Red Velvet Alley.)", "links": {"subreddit": ["Red_Velvet"], "discord": ["redvelvet"]}, "path": {"177-186": [[590, -40], [590, -22], [608, -22], [608, -40]]}, "center": {"177-186": [599, -31]}}, {"id": 4622, "name": "Amelie and Olivier Florence", "description": "Amelie and Olivier are brothers who are part of the main characters in \"O Segredo na Ilha\" (The Secret of the Island). One of the seasons of the brazilian RPG, Ordem Paranormal, created by the streamer Cellbit\nThe drawing was made by the streamer Goulart who plays as Olivier Florence\n(they are inverted because of Felps, another brazilian streamer)", "links": {"website": ["https://www.youtube.com/watch?v=Pf4HzTdA2WE", "https://www.twitch.tv/g0ularte"]}, "path": {"96": [[741, 344], [740, 414], [810, 413], [809, 345], [740, 343]]}, "center": {"96": [775, 379]}}, -{"id": 4623, "name": "RC Lens", "description": "Le RC Lens est un club de football du Nord de la France connu pour son passé historique minier très forte. C'est un club très populaire partout en France.", "links": {"website": ["https://www.rclens.fr/fr"]}, "path": {"209-215": [[885, -864], [885, -848], [924, -848], [924, -864]], "216-258": [[885, -864], [885, -840], [924, -840], [924, -864]]}, "center": {"209-215": [905, -856], "216-258": [905, -852]}}, -{"id": 4624, "name": "LA HUERTA", "description": "La comunidad creada en tiempos de guerra de un server mc, el cual se encargaba de en la recoleccion de papas para el pueblo. Luego de tanto sufrimiento eligieron emigrar y asi crear Huertaland. \n #Lahuerta #familia", "links": {"website": ["https://www.twitch.tv"]}, "path": {"202-258": [[1348, 113], [1348, 121], [1359, 121], [1359, 113], [1356, 114], [1354, 113], [1353, 112], [1358, 113], [1355, 113], [1349, 113]]}, "center": {"202-258": [1352, 117]}}, -{"id": 4625, "name": "holostars", "description": "Holostars is a branch of Hololive Production that contain male idol group members", "links": {"website": ["https://holostars.hololivepro.com/en/about/"]}, "path": {"250-258": [[-349, 973], [-326, 972], [-328, 994], [-349, 995]]}, "center": {"250-258": [-338, 983]}}, -{"id": 4626, "name": "World Box Ghost", "description": "A ghost from the game World Box. Units can turn into a ghost when they die on the corrupted biome. This display was added by Dannypantsgasm of Reddit but was destroyed twice until The Chalkeaters group remade and defended it until the end.", "links": {"website": ["https://www.superworldbox.com/", "https://the-official-worldbox-wiki.fandom.com/wiki/Ghost"], "subreddit": ["Worldbox"], "discord": ["worldbox"]}, "path": {"206-258": [[-854, 366], [-854, 378], [-846, 378], [-846, 366]]}, "center": {"206-258": [-850, 372]}}, -{"id": 4627, "name": "Professor Chalk", "description": "A mascot of The Chalkeaters, a musical Internet project focused around gaming industry.", "links": {"website": ["https://thechalkeaters.bandcamp.com", "https://www.youtube.com/channel/UCYSvX0lqo-ZinYNQSHVCqlQ"], "subreddit": ["thechalkeaters"]}, "path": {"214-258": [[-846, 366], [-846, 378], [-836, 378], [-836, 366]]}, "center": {"214-258": [-841, 372]}}, -{"id": 4628, "name": "Koiwai Yotsuba", "description": "Yotsuba is the main character in AZUMA Kiyohiko's manga of the same name, originally published by ASCII - Mediaworks in 2003.\nShe is an energetic 6-year-old who has just moved to a new town. The manga recounts her adventures as she discovers her new surroundings. Her inexperience of the urban environment and her young age give rise to numerous gags and often irresistible situational comedy.", "links": {"website": ["https://en.wikipedia.org/wiki/Yotsuba%26!"]}, "path": {"164-258": [[-458, 851], [-457, 858], [-449, 865], [-447, 871], [-418, 871], [-416, 867], [-413, 862], [-417, 858], [-413, 851], [-413, 844], [-404, 843], [-407, 838], [-405, 836], [-409, 834], [-408, 831], [-418, 834], [-429, 830], [-437, 831], [-442, 825], [-445, 827], [-450, 827], [-449, 831], [-451, 834], [-453, 836], [-458, 836], [-458, 841], [-455, 846]]}, "center": {"164-258": [-436, 851]}}, -{"id": 4630, "name": "Egegge", "description": "Egegge is a small community that praises Eggdog and eggs. Thanks to Green Lattice for protection.", "links": {"discord": ["kWqqSNmJm2"]}, "path": {"250-258": [[1079, -692], [1082, -696], [1089, -695], [1091, -691], [1090, -679], [1082, -679], [1080, -684], [1079, -684]]}, "center": {"250-258": [1085, -687]}}, -{"id": 4631, "name": "Philippine Flag", "description": "Philippines is a country in Southeast Asia. Known for its food, islands, beaches, Constant raining and hot days, diverse cultures, 3 major islands.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines"]}, "path": {"250-258": [[1453, 737], [1453, 739], [1452, 740], [1452, 743], [1452, 744], [1456, 744], [1456, 745], [1454, 745], [1454, 746], [1453, 747], [1452, 747], [1452, 749], [1452, 750], [1451, 750], [1451, 757], [1451, 758], [1452, 758], [1452, 760], [1451, 760], [1451, 761], [1451, 762], [1452, 762], [1453, 762], [1453, 761], [1454, 762], [1454, 763], [1455, 763], [1456, 763], [1456, 780], [1399, 780], [1399, 736]]}, "center": {"250-258": [1426, 758]}}, -{"id": 4632, "name": "r/place poland discord link", "description": "a shortened r/place poland discord link", "links": {}, "path": {"250-258": [[630, -141], [682, -141], [682, -133], [630, -133], [630, -140]]}, "center": {"250-258": [656, -137]}}, +{"id": 4623, "name": "RC Lens", "description": "Le RC Lens est un club de football du Nord de la France connu pour son passé historique minier très forte. C'est un club très populaire partout en France.", "links": {"website": ["https://www.rclens.fr/fr"]}, "path": {"209-215": [[885, -864], [885, -848], [924, -848], [924, -864]], "216-258, T": [[885, -864], [885, -840], [924, -840], [924, -864]]}, "center": {"209-215": [905, -856], "216-258, T": [905, -852]}}, +{"id": 4624, "name": "LA HUERTA", "description": "La comunidad creada en tiempos de guerra de un server mc, el cual se encargaba de en la recoleccion de papas para el pueblo. Luego de tanto sufrimiento eligieron emigrar y asi crear Huertaland. \n #Lahuerta #familia", "links": {"website": ["https://www.twitch.tv"]}, "path": {"202-258, T": [[1348, 113], [1348, 121], [1359, 121], [1359, 113], [1356, 114], [1354, 113], [1353, 112], [1358, 113], [1355, 113], [1349, 113]]}, "center": {"202-258, T": [1352, 117]}}, +{"id": 4625, "name": "holostars", "description": "Holostars is a branch of Hololive Production that contain male idol group members", "links": {"website": ["https://holostars.hololivepro.com/en/about/"]}, "path": {"250-258, T": [[-349, 973], [-326, 972], [-328, 994], [-349, 995]]}, "center": {"250-258, T": [-338, 983]}}, +{"id": 4626, "name": "World Box Ghost", "description": "A ghost from the game World Box. Units can turn into a ghost when they die on the corrupted biome. This display was added by Dannypantsgasm of Reddit but was destroyed twice until The Chalkeaters group remade and defended it until the end.", "links": {"website": ["https://www.superworldbox.com/", "https://the-official-worldbox-wiki.fandom.com/wiki/Ghost"], "subreddit": ["Worldbox"], "discord": ["worldbox"]}, "path": {"206-258, T": [[-854, 366], [-854, 378], [-846, 378], [-846, 366]]}, "center": {"206-258, T": [-850, 372]}}, +{"id": 4627, "name": "Professor Chalk", "description": "A mascot of The Chalkeaters, a musical Internet project focused around gaming industry.", "links": {"website": ["https://thechalkeaters.bandcamp.com", "https://www.youtube.com/channel/UCYSvX0lqo-ZinYNQSHVCqlQ"], "subreddit": ["thechalkeaters"]}, "path": {"214-258, T": [[-846, 366], [-846, 378], [-836, 378], [-836, 366]]}, "center": {"214-258, T": [-841, 372]}}, +{"id": 4628, "name": "Koiwai Yotsuba", "description": "Yotsuba is the main character in AZUMA Kiyohiko's manga of the same name, originally published by ASCII - Mediaworks in 2003.\nShe is an energetic 6-year-old who has just moved to a new town. The manga recounts her adventures as she discovers her new surroundings. Her inexperience of the urban environment and her young age give rise to numerous gags and often irresistible situational comedy.", "links": {"website": ["https://en.wikipedia.org/wiki/Yotsuba%26!"]}, "path": {"164-258, T": [[-458, 851], [-457, 858], [-449, 865], [-447, 871], [-418, 871], [-416, 867], [-413, 862], [-417, 858], [-413, 851], [-413, 844], [-404, 843], [-407, 838], [-405, 836], [-409, 834], [-408, 831], [-418, 834], [-429, 830], [-437, 831], [-442, 825], [-445, 827], [-450, 827], [-449, 831], [-451, 834], [-453, 836], [-458, 836], [-458, 841], [-455, 846]]}, "center": {"164-258, T": [-436, 851]}}, +{"id": 4630, "name": "Egegge", "description": "Egegge is a small community that praises Eggdog and eggs. Thanks to Green Lattice for protection.", "links": {"discord": ["kWqqSNmJm2"]}, "path": {"250-258, T": [[1079, -692], [1082, -696], [1089, -695], [1091, -691], [1090, -679], [1082, -679], [1080, -684], [1079, -684]]}, "center": {"250-258, T": [1085, -687]}}, +{"id": 4631, "name": "Philippine Flag", "description": "Philippines is a country in Southeast Asia. Known for its food, islands, beaches, Constant raining and hot days, diverse cultures, 3 major islands.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines"]}, "path": {"250-258, T": [[1453, 737], [1453, 739], [1452, 740], [1452, 743], [1452, 744], [1456, 744], [1456, 745], [1454, 745], [1454, 746], [1453, 747], [1452, 747], [1452, 749], [1452, 750], [1451, 750], [1451, 757], [1451, 758], [1452, 758], [1452, 760], [1451, 760], [1451, 761], [1451, 762], [1452, 762], [1453, 762], [1453, 761], [1454, 762], [1454, 763], [1455, 763], [1456, 763], [1456, 780], [1399, 780], [1399, 736]]}, "center": {"250-258, T": [1426, 758]}}, +{"id": 4632, "name": "r/place poland discord link", "description": "a shortened r/place poland discord link", "links": {}, "path": {"250-258, T": [[630, -141], [682, -141], [682, -133], [630, -133], [630, -140]]}, "center": {"250-258, T": [656, -137]}}, {"id": 4633, "name": "A small pixelbun from the bunniekingdom °v°", "description": "The bunniekingdom is a small community on twitch created by freelance artist vanlau. At the same time it's part of a worldbuilding project. It also contains a comic where every supporter can be part of and create their own character, which will be drawn by vanlau", "links": {"website": ["http://twitch.tv/vanlau"], "subreddit": ["vanlau_art"], "discord": ["shdEBKqZRd"]}, "path": {"202-209": [[1391, 776], [1391, 778], [1390, 779], [1394, 779], [1396, 779], [1396, 774], [1390, 774], [1390, 775], [1395, 775], [1395, 776], [1393, 776], [1390, 778], [1390, 776], [1392, 776], [1391, 779], [1391, 777], [1393, 777], [1395, 776], [1395, 775], [1395, 776], [1392, 778]]}, "center": {"202-209": [1395, 777]}}, {"id": 4634, "name": "Diffrent", "description": "Streamer Uruguayo conocido mayormente por haber participado en la serie Squid Craft Games 2 siendo un invitado Sorpresa", "links": {"website": ["https://www.twitch.tv/diffrent"], "subreddit": ["Vaguitos"], "discord": ["Grk3rN4J"]}, "path": {"162-240": [[-600, 901], [-600, 940], [-572, 941], [-572, 901]]}, "center": {"162-240": [-586, 921]}}, -{"id": 4635, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["laboulangeriemc", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"215-258": [[-548, 114], [-548, 118], [-544, 118], [-544, 114]]}, "center": {"215-258": [-546, 116]}}, -{"id": 4636, "name": "Canadian Goose", "description": "A canadian goose, built to sit on top of Reimu's head as part of the alliance between r/placecanada and Touhou.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"136-253": [[134, 155], [136, 155], [136, 154], [137, 154], [137, 153], [138, 153], [138, 152], [140, 152], [140, 153], [141, 153], [141, 158], [143, 158], [143, 157], [147, 157], [147, 158], [152, 158], [152, 159], [150, 159], [150, 160], [149, 160], [149, 161], [148, 161], [148, 160], [139, 160], [139, 159], [138, 159], [138, 158], [139, 158], [139, 155]]}, "center": {"136-253": [144, 158]}}, -{"id": 4637, "name": "Tlacuache", "description": "The tlacuache the only marsupial inhabiting the Mexican territory, related to the opossums.", "links": {"website": ["http://ib.facmed.unam.mx/nueva_ib/index.php/leyendas-del-tlacuache/", "https://es.wikipedia.org/wiki/Didelphimorphia"]}, "path": {"214-258": [[-914, 372], [-922, 369], [-926, 372], [-928, 367], [-930, 372], [-925, 376], [-923, 381], [-920, 384], [-915, 384], [-915, 381], [-912, 382], [-911, 383], [-904, 383], [-903, 382], [-901, 378], [-901, 373], [-901, 369], [-904, 368], [-906, 369], [-911, 368], [-914, 371], [-921, 369], [-920, 369]]}, "center": {"214-258": [-908, 376]}}, -{"id": 4638, "name": "Canadian Trans Flag", "description": "A small version of a transgender flag constructed under the Canada text.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"134-258": [[121, 190], [121, 192], [132, 192], [132, 190]]}, "center": {"134-258": [127, 191]}}, -{"id": 4639, "name": "Egypt Text.", "description": "The text \"Egypt\" is a simple yet powerful symbol of the country's rich history and culture. It is a reminder of the ancient Egyptians, who built some of the most impressive monuments in the world, and of the modern Egyptians, who continue to preserve and celebrate their heritage.", "links": {"website": ["https://en.wikipedia.org/wiki/Egypt"]}, "path": {"194-258": [[-922, 327], [-922, 323], [-893, 323], [-893, 327]]}, "center": {"194-258": [-907, 325]}}, -{"id": 4640, "name": "Kirby", "description": "Kirby is the titular protagonist of the Kirby video game series, developed by HAL Laboratory and published by Nintendo. This art features Kirby sitting on Kim Dokja, the protagonist of the novel/ manhwa/ webtoon Omniscient Reader's Viewpoint.", "links": {"website": ["https://kirby.nintendo.com/", "https://en.wikipedia.org/wiki/Kirby_(character)"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[100, 862], [107, 862], [107, 867], [100, 867]]}, "center": {"250-258": [104, 865]}}, +{"id": 4635, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["laboulangeriemc", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"215-258, T": [[-548, 114], [-548, 118], [-544, 118], [-544, 114]]}, "center": {"215-258, T": [-546, 116]}}, +{"id": 4636, "name": "Canadian Goose", "description": "A canadian goose, built to sit on top of Reimu's head as part of the alliance between r/placecanada and Touhou.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"136-253, T": [[134, 155], [136, 155], [136, 154], [137, 154], [137, 153], [138, 153], [138, 152], [140, 152], [140, 153], [141, 153], [141, 158], [143, 158], [143, 157], [147, 157], [147, 158], [152, 158], [152, 159], [150, 159], [150, 160], [149, 160], [149, 161], [148, 161], [148, 160], [139, 160], [139, 159], [138, 159], [138, 158], [139, 158], [139, 155]]}, "center": {"136-253, T": [144, 158]}}, +{"id": 4637, "name": "Tlacuache", "description": "The tlacuache the only marsupial inhabiting the Mexican territory, related to the opossums.", "links": {"website": ["http://ib.facmed.unam.mx/nueva_ib/index.php/leyendas-del-tlacuache/", "https://es.wikipedia.org/wiki/Didelphimorphia"]}, "path": {"214-258, T": [[-914, 372], [-922, 369], [-926, 372], [-928, 367], [-930, 372], [-925, 376], [-923, 381], [-920, 384], [-915, 384], [-915, 381], [-912, 382], [-911, 383], [-904, 383], [-903, 382], [-901, 378], [-901, 373], [-901, 369], [-904, 368], [-906, 369], [-911, 368], [-914, 371], [-921, 369], [-920, 369]]}, "center": {"214-258, T": [-908, 376]}}, +{"id": 4638, "name": "Canadian Trans Flag", "description": "A small version of a transgender flag constructed under the Canada text.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"134-258, T": [[121, 190], [121, 192], [132, 192], [132, 190]]}, "center": {"134-258, T": [127, 191]}}, +{"id": 4639, "name": "Egypt Text.", "description": "The text \"Egypt\" is a simple yet powerful symbol of the country's rich history and culture. It is a reminder of the ancient Egyptians, who built some of the most impressive monuments in the world, and of the modern Egyptians, who continue to preserve and celebrate their heritage.", "links": {"website": ["https://en.wikipedia.org/wiki/Egypt"]}, "path": {"194-258, T": [[-922, 327], [-922, 323], [-893, 323], [-893, 327]]}, "center": {"194-258, T": [-907, 325]}}, +{"id": 4640, "name": "Kirby", "description": "Kirby is the titular protagonist of the Kirby video game series, developed by HAL Laboratory and published by Nintendo. This art features Kirby sitting on Kim Dokja, the protagonist of the novel/ manhwa/ webtoon Omniscient Reader's Viewpoint.", "links": {"website": ["https://kirby.nintendo.com/", "https://en.wikipedia.org/wiki/Kirby_(character)"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[100, 862], [107, 862], [107, 867], [100, 867]]}, "center": {"250-258, T": [104, 865]}}, {"id": 4641, "name": "Monna Lisa", "description": "The Monna Lisa, or Gioconda, is a half-length portrait painting by Italian artist Leonardo da Vinci. It is believed to have been painted between 1503 and 1506.", "links": {"website": ["https://en.wikipedia.org/wiki/Monna_Lisa"]}, "path": {"104-121": [[-688, 5], [-663, 5], [-663, 38], [-688, 38]]}, "center": {"104-121": [-675, 22]}}, -{"id": 4642, "name": "Tharass's banner", "description": "Banner of the most powerfull city in La Boulangerie MC, Tharass.\n\nBannière de la plus puissante ville de La Boulangerie MC, Tharass.", "links": {"website": ["https://laboulangerie.fandom.com/fr/wiki/Tharass"], "subreddit": ["laboulangeriemc"], "discord": ["vV2q2sBym5"]}, "path": {"111-258": [[-544, 114], [-550, 114], [-550, 107], [-544, 107]]}, "center": {"111-258": [-547, 111]}}, -{"id": 4643, "name": "The sun", "description": "The sun is the lightbulb from the indie video game OneShot. Breaking the sun will end the world. It was intentionally cracked by the community during the gray-out.", "links": {"website": ["https://www.oneshot-game.com/"], "subreddit": ["oneshot"]}, "path": {"202-215": [[1451, 768], [1448, 765], [1448, 763], [1451, 760], [1449, 758], [1449, 750], [1452, 745], [1458, 741], [1466, 741], [1471, 744], [1474, 748], [1474, 757], [1470, 763], [1465, 766], [1459, 766], [1458, 765], [1456, 765], [1453, 768]], "242-258": [[1452, 767], [1449, 764], [1449, 762], [1452, 759], [1452, 758], [1451, 757], [1451, 751], [1454, 746], [1459, 743], [1465, 743], [1470, 746], [1473, 751], [1473, 757], [1470, 762], [1465, 765], [1459, 765], [1458, 764], [1457, 764], [1454, 767]]}, "center": {"202-215": [1462, 753], "242-258": [1462, 754]}}, -{"id": 4644, "name": "The Nile.", "description": "The Nile is the longest river in the world, and it is a lifeline for Egypt. The river has been a source of water, food, and transportation for Egyptians for thousands of years.", "links": {"website": ["https://en.wikipedia.org/wiki/Nile"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"212-258": [[-851, 322], [-849, 321], [-845, 321], [-845, 326], [-845, 329], [-846, 331], [-847, 332], [-847, 335], [-846, 337], [-845, 338], [-845, 340], [-847, 342], [-847, 345], [-842, 350], [-842, 351], [-841, 352], [-842, 353], [-842, 357], [-841, 358], [-844, 358], [-844, 352], [-845, 352], [-846, 351], [-846, 349], [-845, 348], [-846, 347], [-847, 346], [-849, 348], [-850, 340], [-849, 340], [-848, 338], [-849, 337], [-850, 336], [-850, 332], [-852, 331], [-852, 329], [-853, 328], [-850, 324]]}, "center": {"212-258": [-848, 329]}}, -{"id": 4645, "name": "Valxntinaa1 and Kiitsuha Pig", "description": "Piggy made by the community of Valxntinaa1 and Kiitsuha, Twitch streamers from Colombia.", "links": {"website": ["https://www.twitch.tv/kiitsuha", "https://www.twitch.tv/valxntinaa1"], "discord": ["wzhHagRhJJ", "JTuzVCSNAe"]}, "path": {"221-258": [[-917, 969], [-918, 968], [-919, 969], [-920, 968], [-921, 968], [-921, 969], [-922, 968], [-923, 969], [-923, 968], [-924, 968], [-925, 969], [-925, 968], [-926, 968], [-927, 967], [-927, 966], [-928, 966], [-928, 965], [-928, 964], [-927, 964], [-927, 962], [-926, 961], [-926, 960], [-926, 959], [-925, 960], [-922, 960], [-921, 959], [-920, 960], [-918, 960], [-917, 961], [-916, 962], [-915, 964], [-914, 965], [-916, 964], [-916, 967], [-917, 968]]}, "center": {"221-258": [-921, 964]}}, -{"id": 4646, "name": "Narrator Nexus", "description": "The Narrator Nexus is a faction that arose during Reddit's 2019 April Fool's event r/sequence.\nBack then, they were known as the Sequence Narrators, and they were responsible for most of the collective storylines in the later arcs.\nSince then, many Narrators have stuck around, and they have become one of the closest allies of the April Knights.\nUnfortunately, the community has all but subsided by now, and most active members have moved to the April Knights, who also greatly helped in constructing this little artwork.", "links": {"subreddit": ["NarraNexus"], "discord": ["AqVwgBH"]}, "path": {"120-258": [[273, 265], [273, 268], [274, 268], [274, 270], [277, 270], [277, 267], [276, 267], [276, 265]]}, "center": {"120-258": [276, 269]}}, -{"id": 4647, "name": "Yukon Territorial Flag", "description": "Yukon is the smallest and westernmost of Canada's three territories. Yukon was split from the North-West Territories in 1898 as the Yukon Territory. The flag is a green white and blue tricolor with the coat of arms of Yukon at the centre above a wreath of fireweed, the territorial flower.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"132-258": [[97, 193], [97, 195], [101, 195], [101, 193]]}, "center": {"132-258": [99, 194]}}, -{"id": 4648, "name": "Flipper Zero", "description": "Flipper Zero is a tiny piece of hardware with a curious personality of a cyber-dolphin. It can interact with digital systems in real life and grow while you use it. Explore any kind of access control system, RFID, radio protocols, and debug hardware using GPIO pins.", "links": {"website": ["https://flipperzero.one/", "https://flipperzero.one/", "https://www.youtube.com/flipperzero", "https://github.com/flipperdevices"], "subreddit": ["flipperzero"], "discord": ["y5E5m8jbgb"]}, "path": {"205-258": [[462, -492], [462, -496], [463, -498], [467, -501], [464, -504], [464, -508], [466, -509], [466, -511], [473, -517], [480, -517], [486, -513], [488, -507], [490, -501], [489, -500], [489, -495], [487, -494], [484, -497], [480, -499], [475, -499], [470, -498], [464, -494]]}, "center": {"205-258": [477, -508]}}, -{"id": 4649, "name": "Flag of Belgium", "description": "Belgium is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["laboulangeriemc", "belgium", "rplacebe"]}, "path": {"215-258": [[-548, 123], [-544, 123], [-544, 119], [-548, 119]]}, "center": {"215-258": [-546, 121]}}, -{"id": 4650, "name": "Sunfish", "description": "In the web novel/manhwa/webtoon Omniscient Reader's Viewpoint, the co-protagonist Yoo Joonghyuk is often called a Sunfish by the protagonist Kim Dokja. This refers to the game \"Survive! Mola Mola,\" where a sunfish must be kept alive and navigate the dangers of the sea. However, the sunfish easily dies from various causes, requiring players to start over many times. This parallels how Yoo Joonghyuk needed over a thousand rounds to reach a conclusive end to scenarios and how he died easily, especially in the early rounds.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154", "https://omniscient-readers-viewpoint.fandom.com/wiki/Yoo_Joonghyuk"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[90, 877], [91, 877], [92, 878], [93, 877], [93, 876], [94, 877], [95, 878], [96, 878], [97, 879], [97, 881], [96, 882], [94, 882], [94, 883], [93, 884], [90, 884]]}, "center": {"250-258": [93, 880]}}, +{"id": 4642, "name": "Tharass's banner", "description": "Banner of the most powerfull city in La Boulangerie MC, Tharass.\n\nBannière de la plus puissante ville de La Boulangerie MC, Tharass.", "links": {"website": ["https://laboulangerie.fandom.com/fr/wiki/Tharass"], "subreddit": ["laboulangeriemc"], "discord": ["vV2q2sBym5"]}, "path": {"111-258, T": [[-544, 114], [-550, 114], [-550, 107], [-544, 107]]}, "center": {"111-258, T": [-547, 111]}}, +{"id": 4643, "name": "The sun", "description": "The sun is the lightbulb from the indie video game OneShot. Breaking the sun will end the world. It was intentionally cracked by the community during the gray-out.", "links": {"website": ["https://www.oneshot-game.com/"], "subreddit": ["oneshot"]}, "path": {"202-215": [[1451, 768], [1448, 765], [1448, 763], [1451, 760], [1449, 758], [1449, 750], [1452, 745], [1458, 741], [1466, 741], [1471, 744], [1474, 748], [1474, 757], [1470, 763], [1465, 766], [1459, 766], [1458, 765], [1456, 765], [1453, 768]], "242-258, T": [[1452, 767], [1449, 764], [1449, 762], [1452, 759], [1452, 758], [1451, 757], [1451, 751], [1454, 746], [1459, 743], [1465, 743], [1470, 746], [1473, 751], [1473, 757], [1470, 762], [1465, 765], [1459, 765], [1458, 764], [1457, 764], [1454, 767]]}, "center": {"202-215": [1462, 753], "242-258, T": [1462, 754]}}, +{"id": 4644, "name": "The Nile.", "description": "The Nile is the longest river in the world, and it is a lifeline for Egypt. The river has been a source of water, food, and transportation for Egyptians for thousands of years.", "links": {"website": ["https://en.wikipedia.org/wiki/Nile"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"212-258, T": [[-851, 322], [-849, 321], [-845, 321], [-845, 326], [-845, 329], [-846, 331], [-847, 332], [-847, 335], [-846, 337], [-845, 338], [-845, 340], [-847, 342], [-847, 345], [-842, 350], [-842, 351], [-841, 352], [-842, 353], [-842, 357], [-841, 358], [-844, 358], [-844, 352], [-845, 352], [-846, 351], [-846, 349], [-845, 348], [-846, 347], [-847, 346], [-849, 348], [-850, 340], [-849, 340], [-848, 338], [-849, 337], [-850, 336], [-850, 332], [-852, 331], [-852, 329], [-853, 328], [-850, 324]]}, "center": {"212-258, T": [-848, 329]}}, +{"id": 4645, "name": "Valxntinaa1 and Kiitsuha Pig", "description": "Piggy made by the community of Valxntinaa1 and Kiitsuha, Twitch streamers from Colombia.", "links": {"website": ["https://www.twitch.tv/kiitsuha", "https://www.twitch.tv/valxntinaa1"], "discord": ["wzhHagRhJJ", "JTuzVCSNAe"]}, "path": {"221-258, T": [[-917, 969], [-918, 968], [-919, 969], [-920, 968], [-921, 968], [-921, 969], [-922, 968], [-923, 969], [-923, 968], [-924, 968], [-925, 969], [-925, 968], [-926, 968], [-927, 967], [-927, 966], [-928, 966], [-928, 965], [-928, 964], [-927, 964], [-927, 962], [-926, 961], [-926, 960], [-926, 959], [-925, 960], [-922, 960], [-921, 959], [-920, 960], [-918, 960], [-917, 961], [-916, 962], [-915, 964], [-914, 965], [-916, 964], [-916, 967], [-917, 968]]}, "center": {"221-258, T": [-921, 964]}}, +{"id": 4646, "name": "Narrator Nexus", "description": "The Narrator Nexus is a faction that arose during Reddit's 2019 April Fool's event r/sequence.\nBack then, they were known as the Sequence Narrators, and they were responsible for most of the collective storylines in the later arcs.\nSince then, many Narrators have stuck around, and they have become one of the closest allies of the April Knights.\nUnfortunately, the community has all but subsided by now, and most active members have moved to the April Knights, who also greatly helped in constructing this little artwork.", "links": {"subreddit": ["NarraNexus"], "discord": ["AqVwgBH"]}, "path": {"120-258, T": [[273, 265], [273, 268], [274, 268], [274, 270], [277, 270], [277, 267], [276, 267], [276, 265]]}, "center": {"120-258, T": [276, 269]}}, +{"id": 4647, "name": "Yukon Territorial Flag", "description": "Yukon is the smallest and westernmost of Canada's three territories. Yukon was split from the North-West Territories in 1898 as the Yukon Territory. The flag is a green white and blue tricolor with the coat of arms of Yukon at the centre above a wreath of fireweed, the territorial flower.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"132-258, T": [[97, 193], [97, 195], [101, 195], [101, 193]]}, "center": {"132-258, T": [99, 194]}}, +{"id": 4648, "name": "Flipper Zero", "description": "Flipper Zero is a tiny piece of hardware with a curious personality of a cyber-dolphin. It can interact with digital systems in real life and grow while you use it. Explore any kind of access control system, RFID, radio protocols, and debug hardware using GPIO pins.", "links": {"website": ["https://flipperzero.one/", "https://flipperzero.one/", "https://www.youtube.com/flipperzero", "https://github.com/flipperdevices"], "subreddit": ["flipperzero"], "discord": ["y5E5m8jbgb"]}, "path": {"205-258, T": [[462, -492], [462, -496], [463, -498], [467, -501], [464, -504], [464, -508], [466, -509], [466, -511], [473, -517], [480, -517], [486, -513], [488, -507], [490, -501], [489, -500], [489, -495], [487, -494], [484, -497], [480, -499], [475, -499], [470, -498], [464, -494]]}, "center": {"205-258, T": [477, -508]}}, +{"id": 4649, "name": "Flag of Belgium", "description": "Belgium is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["laboulangeriemc", "belgium", "rplacebe"]}, "path": {"215-258, T": [[-548, 123], [-544, 123], [-544, 119], [-548, 119]]}, "center": {"215-258, T": [-546, 121]}}, +{"id": 4650, "name": "Sunfish", "description": "In the web novel/manhwa/webtoon Omniscient Reader's Viewpoint, the co-protagonist Yoo Joonghyuk is often called a Sunfish by the protagonist Kim Dokja. This refers to the game \"Survive! Mola Mola,\" where a sunfish must be kept alive and navigate the dangers of the sea. However, the sunfish easily dies from various causes, requiring players to start over many times. This parallels how Yoo Joonghyuk needed over a thousand rounds to reach a conclusive end to scenarios and how he died easily, especially in the early rounds.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154", "https://omniscient-readers-viewpoint.fandom.com/wiki/Yoo_Joonghyuk"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[90, 877], [91, 877], [92, 878], [93, 877], [93, 876], [94, 877], [95, 878], [96, 878], [97, 879], [97, 881], [96, 882], [94, 882], [94, 883], [93, 884], [90, 884]]}, "center": {"250-258, T": [93, 880]}}, {"id": 4651, "name": "Nova, Emi, Fallo and magma", "description": "Is a JustNovaLive streamer of twitch as well as streamer Emikukis, streamer Fallo and TheMagmaboi", "links": {"website": ["https://www.twitch.tv/justnovalive", "https://www.twitch.tv/emikukis", "https://www.twitch.tv/fallosinemision", "https://www.twitch.tv/themagmaboi"]}, "path": {"252": [[-404, -815], [-404, -808], [-386, -808], [-386, -815], [-379, -815], [-379, -808], [-386, -808], [-386, -815], [-404, -815], [-404, -808], [-387, -808], [-379, -808], [-379, -798], [-386, -798], [-387, -798], [-387, -808]]}, "center": {"252": [-383, -804]}}, -{"id": 4652, "name": "Canadian Pride Flag", "description": "A small version of a pride flag constructed under the Canada text.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"134-258": [[108, 190], [108, 192], [121, 192], [121, 190]]}, "center": {"134-258": [115, 191]}}, -{"id": 4653, "name": "Mayor's Shorts", "description": "Mayor Lewis' missing purple shorts! Found in Marnie's room and now... the void?", "links": {"website": ["https://www.stardewvalley.net/"], "subreddit": ["StardewValley"]}, "path": {"250-258": [[1275, 199], [1275, 182], [1257, 182], [1257, 199]]}, "center": {"250-258": [1266, 191]}}, +{"id": 4652, "name": "Canadian Pride Flag", "description": "A small version of a pride flag constructed under the Canada text.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"134-258, T": [[108, 190], [108, 192], [121, 192], [121, 190]]}, "center": {"134-258, T": [115, 191]}}, +{"id": 4653, "name": "Mayor's Shorts", "description": "Mayor Lewis' missing purple shorts! Found in Marnie's room and now... the void?", "links": {"website": ["https://www.stardewvalley.net/"], "subreddit": ["StardewValley"]}, "path": {"250-258, T": [[1275, 199], [1275, 182], [1257, 182], [1257, 199]]}, "center": {"250-258, T": [1266, 191]}}, {"id": 4654, "name": "Nopal with prickly pears in a pot", "description": "Opuntia ficus-indica is a species of cactus that has long been a domesticated in Mexico. It is grown primarily as a fruit crop, and also for the vegetable nopales and other uses", "links": {"website": ["https://en.wikipedia.org/wiki/Opuntia_ficus-indica"]}, "path": {"237": [[-253, 79], [-248, 72], [-247, 67], [-250, 67], [-243, 59], [-244, 54], [-250, 52], [-250, 44], [-253, 42], [-246, 37], [-245, 34], [-248, 32], [-248, 30], [-248, 26], [-249, 25], [-253, 27], [-254, 21], [-262, 16], [-266, 16], [-266, 19], [-266, 24], [-259, 30], [-261, 32], [-260, 35], [-260, 38], [-267, 35], [-267, 42], [-264, 53], [-263, 57], [-264, 62], [-266, 69], [-266, 72], [-260, 79], [-253, 80]]}, "center": {"237": [-255, 59]}}, -{"id": 4655, "name": "Eye of Ra.", "description": "The Eye of Ra or Eye of Re is a being in ancient Egyptian mythology that functions as a feminine counterpart to the sun god Ra and a violent force that subdues his enemies. The eye is an extension of Ra's power, equated with the disk of the sun, but it often behaves as an independent goddess.", "links": {"website": ["https://en.wikipedia.org/wiki/Eye_of_Ra"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"164-258": [[-789, 332], [-794, 327], [-800, 327], [-801, 328], [-802, 328], [-806, 332], [-807, 332], [-808, 333], [-812, 333], [-811, 334], [-809, 334], [-809, 335], [-802, 335], [-801, 336], [-800, 337], [-800, 339], [-801, 340], [-802, 341], [-803, 342], [-808, 342], [-809, 341], [-807, 341], [-806, 340], [-807, 339], [-809, 339], [-810, 340], [-811, 341], [-810, 342], [-809, 343], [-802, 344], [-796, 338], [-796, 344], [-793, 344], [-793, 336], [-792, 336]]}, "center": {"164-258": [-797, 333]}}, -{"id": 4656, "name": "Church.", "description": "A Church Also known as \"kenesa\" in Arabic Which is a Coptic word that means \"assembly\" or \"church.\" It is used to refer to a place of worship for Coptic Christians, who are the largest Christian community in Egypt.", "links": {"website": ["https://en.wikipedia.org/wiki/Church_(building)"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"240-258": [[-845, 358], [-845, 353], [-847, 347], [-849, 353], [-850, 353], [-854, 345], [-855, 350], [-859, 353], [-861, 347], [-862, 352], [-863, 353], [-863, 358]]}, "center": {"240-258": [-854, 354]}}, +{"id": 4655, "name": "Eye of Ra.", "description": "The Eye of Ra or Eye of Re is a being in ancient Egyptian mythology that functions as a feminine counterpart to the sun god Ra and a violent force that subdues his enemies. The eye is an extension of Ra's power, equated with the disk of the sun, but it often behaves as an independent goddess.", "links": {"website": ["https://en.wikipedia.org/wiki/Eye_of_Ra"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"164-258, T": [[-789, 332], [-794, 327], [-800, 327], [-801, 328], [-802, 328], [-806, 332], [-807, 332], [-808, 333], [-812, 333], [-811, 334], [-809, 334], [-809, 335], [-802, 335], [-801, 336], [-800, 337], [-800, 339], [-801, 340], [-802, 341], [-803, 342], [-808, 342], [-809, 341], [-807, 341], [-806, 340], [-807, 339], [-809, 339], [-810, 340], [-811, 341], [-810, 342], [-809, 343], [-802, 344], [-796, 338], [-796, 344], [-793, 344], [-793, 336], [-792, 336]]}, "center": {"164-258, T": [-797, 333]}}, +{"id": 4656, "name": "Church.", "description": "A Church Also known as \"kenesa\" in Arabic Which is a Coptic word that means \"assembly\" or \"church.\" It is used to refer to a place of worship for Coptic Christians, who are the largest Christian community in Egypt.", "links": {"website": ["https://en.wikipedia.org/wiki/Church_(building)"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"240-258, T": [[-845, 358], [-845, 353], [-847, 347], [-849, 353], [-850, 353], [-854, 345], [-855, 350], [-859, 353], [-861, 347], [-862, 352], [-863, 353], [-863, 358]]}, "center": {"240-258, T": [-854, 354]}}, {"id": 4657, "name": "La Boulangerie MC", "description": "World Building french Minecraft server.\n\nServeur Minecraft de Roleplay Géopolitique.", "links": {"website": ["https://laboulangerie.net/"], "subreddit": ["laboulangeriemc"], "discord": ["vV2q2sBym5"]}, "path": {"1-9": [[434, -126], [435, -126], [435, -127], [438, -127], [438, -128], [441, -128], [441, -127], [443, -127], [443, -128], [446, -128], [446, -127], [448, -127], [448, -128], [451, -128], [451, -127], [453, -127], [453, -128], [456, -128], [456, -127], [457, -127], [457, -126], [458, -126], [458, -122], [457, -122], [457, -121], [435, -121], [435, -122], [434, -122]]}, "center": {"1-9": [450, -124]}}, -{"id": 4658, "name": "The Red Corkscrew", "description": "This was originally a red tendril from the void mother below this piece, however it was repeatedly driven back by the members of the Fuck Spez Coalition, who were of the belief that the area should remain black for better contrast.\n\nA disagreement occurred in the FSC, as some members believed that there were more pressing matters to attend over attacking this. In addition, rather than attacking the void, they believed an alliance should be formed, so that it could be used to curate the black around the FuckSpez sign, on the FSC's behalf.\n\nFSC command disagreed with this view, and the orders were issued to destroy the tendril and drive it back. Seeing that defense of the existing tendril was hopeless, the \"Red Corkscrew\" was formed, in defiance of FSC command.\n\nUnlike the original, this piece started from the top and worked downwards - in the hopes of avoiding the attention of the FSC until it could reconnect with the void mother.\n\nAlso unlike the original, it respected a 1px boundary with the letters on either side, in recognition of the FSC's desire to keep the contrast on the letters.\n\nIt was noticed and attacked a number of times, however each time it was rebuilt until being subsumed by the void mother's tendril from below, thus fulfilling its purpose.", "links": {"subreddit": ["theswarm"], "discord": ["6aSXWCtF", "fGFzrgvw"]}, "path": {"235-258": [[1239, 56], [1241, 73], [1242, 104], [1247, 104], [1247, 73], [1252, 47], [1240, 55]]}, "center": {"235-258": [1244, 59]}}, -{"id": 4659, "name": "Egypt-Venezuela hearts.", "description": "A joint of hearts between the countries of Egypt and Venezuela signifying their alliance.", "links": {"subreddit": ["Egypt", "Venezuela"], "discord": ["Qc7arrjupq", "7wcNxCwst4"]}, "path": {"167-192": [[-809, 318], [-809, 325], [-803, 325], [-803, 318]], "193-210": [[-810, 325], [-810, 318], [-793, 318], [-793, 325]], "211-258": [[-810, 325], [-810, 318], [-793, 318], [-784, 318], [-784, 325]]}, "center": {"167-192": [-806, 322], "193-210": [-801, 322], "211-258": [-797, 322]}}, +{"id": 4658, "name": "The Red Corkscrew", "description": "This was originally a red tendril from the void mother below this piece, however it was repeatedly driven back by the members of the Fuck Spez Coalition, who were of the belief that the area should remain black for better contrast.\n\nA disagreement occurred in the FSC, as some members believed that there were more pressing matters to attend over attacking this. In addition, rather than attacking the void, they believed an alliance should be formed, so that it could be used to curate the black around the FuckSpez sign, on the FSC's behalf.\n\nFSC command disagreed with this view, and the orders were issued to destroy the tendril and drive it back. Seeing that defense of the existing tendril was hopeless, the \"Red Corkscrew\" was formed, in defiance of FSC command.\n\nUnlike the original, this piece started from the top and worked downwards - in the hopes of avoiding the attention of the FSC until it could reconnect with the void mother.\n\nAlso unlike the original, it respected a 1px boundary with the letters on either side, in recognition of the FSC's desire to keep the contrast on the letters.\n\nIt was noticed and attacked a number of times, however each time it was rebuilt until being subsumed by the void mother's tendril from below, thus fulfilling its purpose.", "links": {"subreddit": ["theswarm"], "discord": ["6aSXWCtF", "fGFzrgvw"]}, "path": {"235-258, T": [[1239, 56], [1241, 73], [1242, 104], [1247, 104], [1247, 73], [1252, 47], [1240, 55]]}, "center": {"235-258, T": [1244, 59]}}, +{"id": 4659, "name": "Egypt-Venezuela hearts.", "description": "A joint of hearts between the countries of Egypt and Venezuela signifying their alliance.", "links": {"subreddit": ["Egypt", "Venezuela"], "discord": ["Qc7arrjupq", "7wcNxCwst4"]}, "path": {"167-192": [[-809, 318], [-809, 325], [-803, 325], [-803, 318]], "193-210": [[-810, 325], [-810, 318], [-793, 318], [-793, 325]], "211-258, T": [[-810, 325], [-810, 318], [-793, 318], [-784, 318], [-784, 325]]}, "center": {"167-192": [-806, 322], "193-210": [-801, 322], "211-258, T": [-797, 322]}}, {"id": 4661, "name": "Blue Demon", "description": "Alejandro Muñoz Moreno aka Blue Demon was a Mexican film actor and luchador enmascarado, was the main rival of El Santo", "links": {"website": ["https://en.wikipedia.org/wiki/Blue_Demon"]}, "path": {"178-249": [[127, -848], [120, -848], [116, -845], [116, -835], [120, -829], [125, -830], [130, -833], [130, -843]]}, "center": {"178-249": [123, -838]}}, {"id": 4662, "name": "Spider-Man 2099", "description": "Is a fictional superhero character appearing in American comic books published by Marvel Comics. His true identity is Miguel O'Hara, an Irish-Mexican geneticist living in Nueva York (a renamed New York City) in the year 2099\n\nThis art was designed by Spider-Man Place and created by r/PlaceMexico", "links": {"website": ["https://en.wikipedia.org/wiki/Spider-Man_2099"], "subreddit": ["PlaceMexico"], "discord": ["PJrChzEk", "mknAwD2J5j"]}, "path": {"166-246": [[-232, 104], [-238, 105], [-239, 112], [-245, 115], [-244, 120], [-240, 119], [-244, 124], [-242, 126], [-238, 126], [-235, 122], [-232, 126], [-225, 126], [-229, 120], [-226, 119], [-225, 114], [-228, 112], [-229, 112], [-229, 105], [-235, 104], [-233, 118]]}, "center": {"166-246": [-237, 116]}}, {"id": 4663, "name": "UFS", "description": "This sign stands for \"Undertale : Final Showdown\". It is an Undertale fighting game made on Roblox. In this game there are two teams, the Chara team and the Sans team. Each team has to destroy each other, using a set of given abilities. The game isn't released yet as of the time of writing.", "links": {"website": ["https://www.roblox.com/games/9062331853/Undertale-Final-Showdown", "https://www.youtube.com/channel/UCt3ABO_Cw-3jIwWZybnlQ4A"], "discord": ["ufs"]}, "path": {"90-149": [[-777, 161], [-778, 162], [-778, 174], [-777, 175], [-755, 175], [-754, 174], [-754, 162], [-755, 161]], "171-181": [[-1299, -956], [-1298, -955], [-1276, -955], [-1275, -956], [-1275, -968], [-1276, -969], [-1298, -969], [-1299, -968]], "189-195": [[-1147, -772], [-1148, -771], [-1148, -763], [-1147, -762], [-1129, -762], [-1128, -763], [-1128, -771], [-1129, -772]], "196-203": [[-1147, -772], [-1148, -771], [-1148, -763], [-1147, -762], [-1124, -762], [-1123, -763], [-1123, -771], [-1124, -772]], "162-164": [[356, 986], [357, 985], [357, 982], [356, 981], [354, 981], [353, 982], [353, 985], [354, 986]], "223-228": [[379, -592], [378, -591], [378, -583], [379, -582], [397, -582], [398, -583], [398, -591], [397, -592]], "251-258": [[1454, 48], [1453, 49], [1453, 55], [1454, 56], [1466, 56], [1467, 55], [1467, 49], [1466, 48]]}, "center": {"90-149": [-766, 168], "171-181": [-1287, -962], "189-195": [-1138, -767], "196-203": [-1135, -767], "162-164": [355, 984], "223-228": [388, -587], "251-258": [1460, 52]}}, {"id": 4664, "name": "La Boulangerie MC", "description": "World Building french Minecraft server.\n\nServeur Minecraft de Roleplay Géopolitique.", "links": {"website": ["https://laboulangerie.net/"], "subreddit": ["laboulangeriemc"], "discord": ["vV2q2sBym5"]}, "path": {"55-79": [[288, -16], [312, -16], [312, -9], [288, -9]]}, "center": {"55-79": [300, -12]}}, -{"id": 4665, "name": "Canada Text", "description": "Text saying the country name Canada. Was often griefed to say things such as Banada, Ganada, and Canaoa.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"128-258": [[109, 186], [109, 189], [136, 189], [136, 186]]}, "center": {"128-258": [123, 188]}}, -{"id": 4666, "name": "Great Pyramids of Giza.", "description": "The Pyramids of Giza, also called the Giza necropolis, is an ancient complex of stone pyramids that house the tombs of Ancient Egypt's rulers, the pharoahs. The complex is located on the Giza Plateau in Greater Cairo, Egypt, and was built during the Fourth Dynasty of the Old Kingdom of Ancient Egypt between 2600 and 2500 BC. Landmarks include the Great Pyramid of Giza (tomb of pharoah Khufu), the Pyramid of Khafre, the Pyramid of Menkaure, the Great Sphinx of Giza, and smaller complexes such as cemeteries and the remains of a workers' village. The largest pyramid in the complex, the Great Pyramid, is the only surviving member of the Seven Wonders of the Ancient World.", "links": {"website": ["https://en.wikipedia.org/wiki/Giza_pyramid_complex"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"198": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-901, 358], [-898, 358], [-868, 358], [-868, 347], [-853, 347], [-853, 358], [-813, 357]], "100-107": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-869, 326], [-869, 328]], "108-158": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-869, 326], [-872, 329], [-841, 329]], "159-165": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-869, 326], [-873, 331], [-869, 331], [-869, 330], [-842, 330]], "166-178": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-869, 326], [-873, 331], [-869, 331], [-869, 330], [-867, 331], [-867, 343], [-827, 343]], "179-181": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-869, 326], [-873, 331], [-870, 332], [-870, 334], [-872, 336], [-872, 337], [-873, 338], [-874, 338], [-877, 343], [-827, 343]], "182-192": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-884, 342], [-884, 343], [-826, 343]], "193-195": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-901, 358], [-898, 358], [-889, 349], [-880, 349], [-878, 352], [-874, 348], [-848, 347], [-848, 346], [-845, 346], [-845, 344], [-826, 344]], "196-197": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-901, 358], [-898, 358], [-868, 358], [-868, 347], [-853, 347], [-853, 353], [-847, 348], [-843, 348], [-842, 347], [-823, 347]], "199-206": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-890, 347], [-888, 345], [-887, 346], [-887, 347], [-888, 348], [-889, 349], [-888, 350], [-888, 354], [-886, 352], [-883, 355], [-883, 358], [-828, 358], [-828, 359], [-829, 360], [-823, 360], [-816, 367], [-803, 367]], "207-258": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-889, 347], [-887, 349], [-887, 352], [-886, 351], [-885, 352], [-882, 355], [-882, 358], [-833, 358], [-833, 365], [-832, 364], [-832, 362], [-831, 362], [-830, 361], [-827, 361], [-826, 360], [-822, 360], [-822, 361], [-821, 362], [-821, 363], [-819, 365], [-819, 366], [-818, 367], [-803, 367]]}, "center": {"198": [-859, 335], "100-107": [-861, 324], "108-158": [-861, 325], "159-165": [-861, 325], "166-178": [-856, 333], "179-181": [-859, 332], "182-192": [-859, 332], "193-195": [-859, 335], "196-197": [-859, 335], "199-206": [-857, 340], "207-258": [-857, 340]}}, -{"id": 4667, "name": "Egyptian unity symbol.", "description": "This symbol of a crescent embracing a cross was the banner of the 1919 revolution against British control of Egypt. It represents unity between the Christians and Muslims of Egypt against sectarian strife. It remains in use in modern times, such as during the 2013 Egyptian protests against president Mohamed Morsi's rule.", "links": {"website": ["https://en.wikipedia.org/wiki/1919_Egyptian_Revolution"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"195-258": [[-906, 343], [-910, 349], [-915, 349], [-920, 345], [-921, 339], [-916, 333], [-910, 333], [-907, 336], [-915, 336], [-917, 339], [-917, 345], [-915, 345], [-914, 346], [-913, 346], [-913, 341], [-914, 341], [-915, 339], [-913, 338], [-913, 337], [-910, 337], [-910, 338], [-909, 338], [-908, 339], [-908, 340], [-909, 341], [-910, 341], [-910, 346]]}, "center": {"195-258": [-911, 339]}}, -{"id": 4668, "name": "Canadian Poppies", "description": "Poppies are a symbol of remembrance in Canada inspired by the poem \"In Flanders Fields\". The Canadian poppy design features four petals, a black centre and no leaf. They are worn on remembrance day as a visual pledge to never forget those who served and sacrificed.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"185-258": [[109, 181], [110, 181], [110, 178], [114, 178], [114, 179], [118, 179], [118, 182], [124, 182], [124, 179], [128, 179], [128, 178], [132, 178], [132, 179], [136, 179], [136, 184], [109, 184]]}, "center": {"185-258": [130, 181]}}, -{"id": 4669, "name": "Cat Statue.", "description": "Cats were revered in Ancient Egypt, and were often considered to be sacred animals. They were associated with the goddess Bastet, who was the protector of the home and family. Cats were also seen as symbols of good luck and fertility.", "links": {"website": ["https://en.wikipedia.org/wiki/Cats_in_ancient_Egypt"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"202-258": [[-778, 336], [-771, 336], [-771, 331], [-772, 330], [-774, 329], [-775, 328], [-775, 327], [-776, 326], [-776, 324], [-777, 323], [-777, 322], [-778, 323], [-780, 323], [-781, 324], [-781, 325], [-780, 325], [-779, 326], [-779, 329], [-778, 330], [-777, 331], [-777, 335]]}, "center": {"202-258": [-774, 332]}}, -{"id": 4670, "name": "Ukiki & Turtle in a tree", "description": "An Ukiki from Yoshi's Island drawn and defended by the Smite Brothers. Accompanied by a turtle in a tree that was defended through the last day of r/place", "links": {}, "path": {"250-258": [[1481, -176], [1500, -176], [1500, -160], [1491, -160], [1491, -158], [1490, -158], [1490, -159], [1489, -159], [1488, -159], [1488, -158], [1487, -158], [1487, -159], [1487, -160], [1481, -160]]}, "center": {"250-258": [1489, -168]}}, +{"id": 4665, "name": "Canada Text", "description": "Text saying the country name Canada. Was often griefed to say things such as Banada, Ganada, and Canaoa.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"128-258, T": [[109, 186], [109, 189], [136, 189], [136, 186]]}, "center": {"128-258, T": [123, 188]}}, +{"id": 4666, "name": "Great Pyramids of Giza.", "description": "The Pyramids of Giza, also called the Giza necropolis, is an ancient complex of stone pyramids that house the tombs of Ancient Egypt's rulers, the pharoahs. The complex is located on the Giza Plateau in Greater Cairo, Egypt, and was built during the Fourth Dynasty of the Old Kingdom of Ancient Egypt between 2600 and 2500 BC. Landmarks include the Great Pyramid of Giza (tomb of pharoah Khufu), the Pyramid of Khafre, the Pyramid of Menkaure, the Great Sphinx of Giza, and smaller complexes such as cemeteries and the remains of a workers' village. The largest pyramid in the complex, the Great Pyramid, is the only surviving member of the Seven Wonders of the Ancient World.", "links": {"website": ["https://en.wikipedia.org/wiki/Giza_pyramid_complex"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"198": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-901, 358], [-898, 358], [-868, 358], [-868, 347], [-853, 347], [-853, 358], [-813, 357]], "100-107": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-869, 326], [-869, 328]], "108-158": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-869, 326], [-872, 329], [-841, 329]], "159-165": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-869, 326], [-873, 331], [-869, 331], [-869, 330], [-842, 330]], "166-178": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-869, 326], [-873, 331], [-869, 331], [-869, 330], [-867, 331], [-867, 343], [-827, 343]], "179-181": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-869, 326], [-873, 331], [-870, 332], [-870, 334], [-872, 336], [-872, 337], [-873, 338], [-874, 338], [-877, 343], [-827, 343]], "182-192": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-884, 342], [-884, 343], [-826, 343]], "193-195": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-901, 358], [-898, 358], [-889, 349], [-880, 349], [-878, 352], [-874, 348], [-848, 347], [-848, 346], [-845, 346], [-845, 344], [-826, 344]], "196-197": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-901, 358], [-898, 358], [-868, 358], [-868, 347], [-853, 347], [-853, 353], [-847, 348], [-843, 348], [-842, 347], [-823, 347]], "199-206": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-890, 347], [-888, 345], [-887, 346], [-887, 347], [-888, 348], [-889, 349], [-888, 350], [-888, 354], [-886, 352], [-883, 355], [-883, 358], [-828, 358], [-828, 359], [-829, 360], [-823, 360], [-816, 367], [-803, 367]], "207-258, T": [[-841, 328], [-847, 322], [-850, 324], [-854, 320], [-856, 322], [-861, 318], [-889, 347], [-887, 349], [-887, 352], [-886, 351], [-885, 352], [-882, 355], [-882, 358], [-833, 358], [-833, 365], [-832, 364], [-832, 362], [-831, 362], [-830, 361], [-827, 361], [-826, 360], [-822, 360], [-822, 361], [-821, 362], [-821, 363], [-819, 365], [-819, 366], [-818, 367], [-803, 367]]}, "center": {"198": [-859, 335], "100-107": [-861, 324], "108-158": [-861, 325], "159-165": [-861, 325], "166-178": [-856, 333], "179-181": [-859, 332], "182-192": [-859, 332], "193-195": [-859, 335], "196-197": [-859, 335], "199-206": [-857, 340], "207-258, T": [-857, 340]}}, +{"id": 4667, "name": "Egyptian unity symbol.", "description": "This symbol of a crescent embracing a cross was the banner of the 1919 revolution against British control of Egypt. It represents unity between the Christians and Muslims of Egypt against sectarian strife. It remains in use in modern times, such as during the 2013 Egyptian protests against president Mohamed Morsi's rule.", "links": {"website": ["https://en.wikipedia.org/wiki/1919_Egyptian_Revolution"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"195-258, T": [[-906, 343], [-910, 349], [-915, 349], [-920, 345], [-921, 339], [-916, 333], [-910, 333], [-907, 336], [-915, 336], [-917, 339], [-917, 345], [-915, 345], [-914, 346], [-913, 346], [-913, 341], [-914, 341], [-915, 339], [-913, 338], [-913, 337], [-910, 337], [-910, 338], [-909, 338], [-908, 339], [-908, 340], [-909, 341], [-910, 341], [-910, 346]]}, "center": {"195-258, T": [-911, 339]}}, +{"id": 4668, "name": "Canadian Poppies", "description": "Poppies are a symbol of remembrance in Canada inspired by the poem \"In Flanders Fields\". The Canadian poppy design features four petals, a black centre and no leaf. They are worn on remembrance day as a visual pledge to never forget those who served and sacrificed.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"185-258, T": [[109, 181], [110, 181], [110, 178], [114, 178], [114, 179], [118, 179], [118, 182], [124, 182], [124, 179], [128, 179], [128, 178], [132, 178], [132, 179], [136, 179], [136, 184], [109, 184]]}, "center": {"185-258, T": [130, 181]}}, +{"id": 4669, "name": "Cat Statue.", "description": "Cats were revered in Ancient Egypt, and were often considered to be sacred animals. They were associated with the goddess Bastet, who was the protector of the home and family. Cats were also seen as symbols of good luck and fertility.", "links": {"website": ["https://en.wikipedia.org/wiki/Cats_in_ancient_Egypt"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"202-258, T": [[-778, 336], [-771, 336], [-771, 331], [-772, 330], [-774, 329], [-775, 328], [-775, 327], [-776, 326], [-776, 324], [-777, 323], [-777, 322], [-778, 323], [-780, 323], [-781, 324], [-781, 325], [-780, 325], [-779, 326], [-779, 329], [-778, 330], [-777, 331], [-777, 335]]}, "center": {"202-258, T": [-774, 332]}}, +{"id": 4670, "name": "Ukiki & Turtle in a tree", "description": "An Ukiki from Yoshi's Island drawn and defended by the Smite Brothers. Accompanied by a turtle in a tree that was defended through the last day of r/place", "links": {}, "path": {"250-258, T": [[1481, -176], [1500, -176], [1500, -160], [1491, -160], [1491, -158], [1490, -158], [1490, -159], [1489, -159], [1488, -159], [1488, -158], [1487, -158], [1487, -159], [1487, -160], [1481, -160]]}, "center": {"250-258, T": [1489, -168]}}, {"id": 4671, "name": "Quetzalcoatl", "description": "Quetzalcoatl is a deity in Aztec culture and literature. Among the Aztecs, he was related to wind, Venus, Sun, merchants, arts, crafts, knowledge, and learning. He was also the patron god of the Aztec priesthood.", "links": {"website": ["https://en.wikipedia.org/wiki/Quetzalcoatl"]}, "path": {"82-245": [[-205, 27], [-213, 28], [-215, 32], [-217, 40], [-215, 44], [-214, 46], [-217, 50], [-216, 57], [-218, 62], [-213, 60], [-211, 56], [-209, 56], [-202, 50], [-199, 49], [-198, 48], [-194, 50], [-194, 53], [-195, 55], [-191, 61], [-191, 34], [-198, 27]]}, "center": {"82-245": [-205, 39]}}, -{"id": 4672, "name": "Nefertiti.", "description": "Nefertiti was the Great Royal Wife of Akhenaten, the 18th Dynasty pharaoh of Egypt. She was one of the most powerful and influential women in Egyptian history. Nefertiti is best known for her beauty, and her image has become one of the most iconic symbols of Ancient Egypt She was born around 1370 BCE.", "links": {"website": ["https://en.wikipedia.org/wiki/Nefertiti"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"207-258": [[-879, 358], [-875, 353], [-875, 350], [-876, 349], [-876, 348], [-883, 341], [-883, 339], [-884, 339], [-887, 336], [-887, 331], [-880, 324], [-879, 324], [-878, 323], [-871, 323], [-867, 327], [-867, 328], [-865, 330], [-865, 331], [-864, 332], [-864, 336], [-863, 337], [-863, 345], [-866, 348], [-866, 353], [-867, 354], [-867, 357], [-864, 358]]}, "center": {"207-258": [-874, 335]}}, -{"id": 4673, "name": "Luxembourgish Famous Things", "description": "Behold the iconic red bridge of Luxembourg, accompanied by the delectable and renowned Kachkéis, served on a leaf of bread along with the Luxembourgish Mustard.\n\nThis masterpiece was crafted by the talented r/placeluxembourg community.", "links": {"subreddit": ["placeluxembourg"]}, "path": {"212-258": [[1000, -644], [1032, -644], [1032, -610], [1000, -610]]}, "center": {"212-258": [1016, -627]}}, -{"id": 4674, "name": "FlareWheeze", "description": "FlareWheeze is an emote from the fan Discord server of VTuber agency Hololive. The emote features Shiranui Flare (不知火フレア), a member of the 3rd generation Hololive's Japan branch well-known for her wheezing laugh.\n\nThis FlareWheeze was one of the very last things the VTubers Place Discord server was able to build, during the very last moments of the r/place's time. To build it they had to overrun another build by KIT, a public research university in Karlsruhe, Germany. The KIT guys tried on several occasions to expand into VTuber territory, but that was was always ended swiftly. Eventually the KIT guys announced definitive plans to expand, upon which the VTuber Place community acted by going to their ally PlaceDE and asking for help, because as it turned out, the KIT guys were also allied.\nAfter long diplomatic discussions, the PlaceDE faction decided to officially permit the VTubers Place community to overrun the KIT guys.\nBefore they did this, the VTuber community first tried to help relocating, but this proved difficult due to bad relations and communication issues. \nEventually the build was overrun by the VTubers and FlareWheeze was built.\n\nThe KIT guys were relocated in the end, they can be found somewhere on the German flag now. They do have a home.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"249-258": [[-558, -368], [-537, -368], [-537, -345], [-558, -345]]}, "center": {"249-258": [-547, -356]}}, -{"id": 4675, "name": "Great Sphinx of Giza", "description": "The Great Sphinx of Giza, commonly referred to as the Sphinx, is a limestone statue of a reclining sphinx, a mythical creature with the head of a human, and the body of a lion. The Sphinx is the oldest known monumental sculpture in Egypt and one of the most recognisable statues in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Great_Sphinx_of_Giza"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"167-258": [[-814, 344], [-815, 342], [-817, 342], [-817, 341], [-818, 339], [-817, 339], [-817, 337], [-816, 336], [-816, 333], [-817, 332], [-817, 331], [-823, 331], [-829, 337], [-832, 337], [-825, 344]]}, "center": {"167-258": [-823, 338]}}, -{"id": 4676, "name": "Kim Dokja", "description": "Kim Dokja is the protagonist of the Korean web novel/ manhwa/ webtoon Omniscient Reader's Viewpoint. Kirby is drawn sitting on his head.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[96, 867], [100, 863], [109, 863], [109, 865], [110, 865], [110, 867], [111, 867], [111, 872], [110, 872], [109, 874], [107, 876], [108, 876], [108, 878], [109, 878], [109, 882], [111, 882], [113, 884], [113, 885], [93, 885], [93, 884], [95, 882], [96, 882], [97, 881], [97, 878], [98, 878], [99, 876], [99, 875], [98, 874], [97, 873], [97, 872], [96, 872]]}, "center": {"250-258": [103, 870]}}, -{"id": 4677, "name": "Stardew Valley Blue Discus", "description": "A beautiful fish that can be found on ginger island", "links": {"website": ["https://stardewvalley.net"], "subreddit": ["StardewValley"]}, "path": {"169-258": [[-328, 764], [-309, 764], [-309, 780], [-328, 780]]}, "center": {"169-258": [-318, 772]}}, -{"id": 4678, "name": "Inunnguaq", "description": "An inunnguaq is a type of stone landmark built by people in the Arctic region of North America. The term means \"imitation of a person\" and it is sculpted to look like a body or person. They are often used to venerate a person, mark a spot for people to meet, or have spiritual significance. \n\nThese are often confused with inuksuks which are another type of stone landmark built in the Arctic which are often used as helpers for navigational aids, coordination points, message centers, etc.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"249-258": [[142, 152], [142, 154], [143, 154], [143, 157], [145, 157], [145, 155], [145, 157], [147, 157], [147, 154], [148, 154], [148, 152], [146, 152], [146, 151], [144, 151], [144, 152]]}, "center": {"249-258": [145, 153]}}, -{"id": 4679, "name": "Kim Dokja and Yoo Joonghyuk", "description": "Kim Dokja (aka \"KDJ\") and Yoo Joonghyuk (aka \"YJH\") from the web novel/ manhwa/ webtoon Omniscient Reader's Viewpoint are often shipped together.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[89, 855], [120, 855], [120, 861], [89, 861]]}, "center": {"250-258": [105, 858]}}, +{"id": 4672, "name": "Nefertiti.", "description": "Nefertiti was the Great Royal Wife of Akhenaten, the 18th Dynasty pharaoh of Egypt. She was one of the most powerful and influential women in Egyptian history. Nefertiti is best known for her beauty, and her image has become one of the most iconic symbols of Ancient Egypt She was born around 1370 BCE.", "links": {"website": ["https://en.wikipedia.org/wiki/Nefertiti"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"207-258, T": [[-879, 358], [-875, 353], [-875, 350], [-876, 349], [-876, 348], [-883, 341], [-883, 339], [-884, 339], [-887, 336], [-887, 331], [-880, 324], [-879, 324], [-878, 323], [-871, 323], [-867, 327], [-867, 328], [-865, 330], [-865, 331], [-864, 332], [-864, 336], [-863, 337], [-863, 345], [-866, 348], [-866, 353], [-867, 354], [-867, 357], [-864, 358]]}, "center": {"207-258, T": [-874, 335]}}, +{"id": 4673, "name": "Luxembourgish Famous Things", "description": "Behold the iconic red bridge of Luxembourg, accompanied by the delectable and renowned Kachkéis, served on a leaf of bread along with the Luxembourgish Mustard.\n\nThis masterpiece was crafted by the talented r/placeluxembourg community.", "links": {"subreddit": ["placeluxembourg"]}, "path": {"212-258, T": [[1000, -644], [1032, -644], [1032, -610], [1000, -610]]}, "center": {"212-258, T": [1016, -627]}}, +{"id": 4674, "name": "FlareWheeze", "description": "FlareWheeze is an emote from the fan Discord server of VTuber agency Hololive. The emote features Shiranui Flare (不知火フレア), a member of the 3rd generation Hololive's Japan branch well-known for her wheezing laugh.\n\nThis FlareWheeze was one of the very last things the VTubers Place Discord server was able to build, during the very last moments of the r/place's time. To build it they had to overrun another build by KIT, a public research university in Karlsruhe, Germany. The KIT guys tried on several occasions to expand into VTuber territory, but that was was always ended swiftly. Eventually the KIT guys announced definitive plans to expand, upon which the VTuber Place community acted by going to their ally PlaceDE and asking for help, because as it turned out, the KIT guys were also allied.\nAfter long diplomatic discussions, the PlaceDE faction decided to officially permit the VTubers Place community to overrun the KIT guys.\nBefore they did this, the VTuber community first tried to help relocating, but this proved difficult due to bad relations and communication issues. \nEventually the build was overrun by the VTubers and FlareWheeze was built.\n\nThe KIT guys were relocated in the end, they can be found somewhere on the German flag now. They do have a home.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"249-258, T": [[-558, -368], [-537, -368], [-537, -345], [-558, -345]]}, "center": {"249-258, T": [-547, -356]}}, +{"id": 4675, "name": "Great Sphinx of Giza", "description": "The Great Sphinx of Giza, commonly referred to as the Sphinx, is a limestone statue of a reclining sphinx, a mythical creature with the head of a human, and the body of a lion. The Sphinx is the oldest known monumental sculpture in Egypt and one of the most recognisable statues in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Great_Sphinx_of_Giza"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"167-258, T": [[-814, 344], [-815, 342], [-817, 342], [-817, 341], [-818, 339], [-817, 339], [-817, 337], [-816, 336], [-816, 333], [-817, 332], [-817, 331], [-823, 331], [-829, 337], [-832, 337], [-825, 344]]}, "center": {"167-258, T": [-823, 338]}}, +{"id": 4676, "name": "Kim Dokja", "description": "Kim Dokja is the protagonist of the Korean web novel/ manhwa/ webtoon Omniscient Reader's Viewpoint. Kirby is drawn sitting on his head.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[96, 867], [100, 863], [109, 863], [109, 865], [110, 865], [110, 867], [111, 867], [111, 872], [110, 872], [109, 874], [107, 876], [108, 876], [108, 878], [109, 878], [109, 882], [111, 882], [113, 884], [113, 885], [93, 885], [93, 884], [95, 882], [96, 882], [97, 881], [97, 878], [98, 878], [99, 876], [99, 875], [98, 874], [97, 873], [97, 872], [96, 872]]}, "center": {"250-258, T": [103, 870]}}, +{"id": 4677, "name": "Stardew Valley Blue Discus", "description": "A beautiful fish that can be found on ginger island", "links": {"website": ["https://stardewvalley.net"], "subreddit": ["StardewValley"]}, "path": {"169-258, T": [[-328, 764], [-309, 764], [-309, 780], [-328, 780]]}, "center": {"169-258, T": [-318, 772]}}, +{"id": 4678, "name": "Inunnguaq", "description": "An inunnguaq is a type of stone landmark built by people in the Arctic region of North America. The term means \"imitation of a person\" and it is sculpted to look like a body or person. They are often used to venerate a person, mark a spot for people to meet, or have spiritual significance. \n\nThese are often confused with inuksuks which are another type of stone landmark built in the Arctic which are often used as helpers for navigational aids, coordination points, message centers, etc.", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"249-258, T": [[142, 152], [142, 154], [143, 154], [143, 157], [145, 157], [145, 155], [145, 157], [147, 157], [147, 154], [148, 154], [148, 152], [146, 152], [146, 151], [144, 151], [144, 152]]}, "center": {"249-258, T": [145, 153]}}, +{"id": 4679, "name": "Kim Dokja and Yoo Joonghyuk", "description": "Kim Dokja (aka \"KDJ\") and Yoo Joonghyuk (aka \"YJH\") from the web novel/ manhwa/ webtoon Omniscient Reader's Viewpoint are often shipped together.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[89, 855], [120, 855], [120, 861], [89, 861]]}, "center": {"250-258, T": [105, 858]}}, {"id": 4680, "name": "Bullet Train", "description": "Bullet Train Cat is a unlockable unit in the mobile game The Battle Cats.", "links": {"subreddit": ["battlecats"], "discord": ["battlecats"]}, "path": {"226-237": [[1047, -401], [1041, -406], [1037, -404], [1034, -404], [1030, -398], [1029, -400], [1031, -391], [1074, -391], [1076, -400], [1066, -406], [1037, -410], [1021, -397], [1030, -390], [1060, -391], [1068, -397], [1041, -397]]}, "center": {"226-237": [1054, -402]}}, -{"id": 4681, "name": "Kitboga", "description": "American scam baiter, Twitch streamer and YouTuber.\n\nSecond Artwork", "links": {"website": ["https://kitboga.com/"], "subreddit": ["Kitboga"]}, "path": {"205-207": [[1001, 141], [1001, 157], [1018, 157], [1015, 141]], "208-258": [[1001, 141], [1001, 157], [1020, 157], [1020, 141]]}, "center": {"205-207": [1009, 149], "208-258": [1011, 149]}}, -{"id": 4682, "name": "Camel Wearing Fez", "description": "A camel representing camels in egypt. Wearing a Fez (also known as Tarboosh) as a joke by r/egypt.", "links": {"website": ["https://en.wikipedia.org/wiki/Camel", "https://en.wikipedia.org/wiki/Fez_(hat)"], "subreddit": ["egypt"], "discord": ["Qc7arrjupq"]}, "path": {"249-258": [[-840, 358], [-840, 355], [-841, 354], [-840, 353], [-839, 352], [-839, 351], [-837, 351], [-837, 353], [-834, 353], [-834, 349], [-833, 349], [-833, 352], [-832, 352], [-836, 355], [-836, 358], [-838, 354]]}, "center": {"249-258": [-839, 354]}}, -{"id": 4683, "name": "Tio Milho", "description": "Tio Milho is a casual tiny group of friends from Sao Paulo, Brazil.\n\nThe name means \"Uncle Corn\", its sound in portuguese resembling \"Te Humilho\", which means \"I humiliate you\".", "links": {}, "path": {"209-222": [[-1483, 39], [-1482, 40], [-1482, 41], [-1481, 42], [-1480, 43], [-1480, 44], [-1479, 45], [-1476, 45], [-1475, 44], [-1475, 43], [-1474, 42], [-1473, 41], [-1473, 40], [-1472, 39], [-1474, 37], [-1475, 37], [-1477, 35], [-1478, 35], [-1480, 37], [-1481, 37]], "223-258": [[-1500, 46], [-1481, 46], [-1480, 45], [-1476, 45], [-1475, 44], [-1475, 43], [-1474, 42], [-1472, 40], [-1472, 38], [-1473, 38], [-1474, 37], [-1475, 37], [-1477, 35], [-1478, 35], [-1480, 37], [-1481, 37], [-1483, 39], [-1486, 39], [-1486, 36], [-1496, 36], [-1496, 39], [-1500, 39]]}, "center": {"209-222": [-1477, 40], "223-258": [-1491, 41]}}, +{"id": 4681, "name": "Kitboga", "description": "American scam baiter, Twitch streamer and YouTuber.\n\nSecond Artwork", "links": {"website": ["https://kitboga.com/"], "subreddit": ["Kitboga"]}, "path": {"205-207": [[1001, 141], [1001, 157], [1018, 157], [1015, 141]], "208-258, T": [[1001, 141], [1001, 157], [1020, 157], [1020, 141]]}, "center": {"205-207": [1009, 149], "208-258, T": [1011, 149]}}, +{"id": 4682, "name": "Camel Wearing Fez", "description": "A camel representing camels in egypt. Wearing a Fez (also known as Tarboosh) as a joke by r/egypt.", "links": {"website": ["https://en.wikipedia.org/wiki/Camel", "https://en.wikipedia.org/wiki/Fez_(hat)"], "subreddit": ["egypt"], "discord": ["Qc7arrjupq"]}, "path": {"249-258, T": [[-840, 358], [-840, 355], [-841, 354], [-840, 353], [-839, 352], [-839, 351], [-837, 351], [-837, 353], [-834, 353], [-834, 349], [-833, 349], [-833, 352], [-832, 352], [-836, 355], [-836, 358], [-838, 354]]}, "center": {"249-258, T": [-839, 354]}}, +{"id": 4683, "name": "Tio Milho", "description": "Tio Milho is a casual tiny group of friends from Sao Paulo, Brazil.\n\nThe name means \"Uncle Corn\", its sound in portuguese resembling \"Te Humilho\", which means \"I humiliate you\".", "links": {}, "path": {"209-222": [[-1483, 39], [-1482, 40], [-1482, 41], [-1481, 42], [-1480, 43], [-1480, 44], [-1479, 45], [-1476, 45], [-1475, 44], [-1475, 43], [-1474, 42], [-1473, 41], [-1473, 40], [-1472, 39], [-1474, 37], [-1475, 37], [-1477, 35], [-1478, 35], [-1480, 37], [-1481, 37]], "223-258, T": [[-1500, 46], [-1481, 46], [-1480, 45], [-1476, 45], [-1475, 44], [-1475, 43], [-1474, 42], [-1472, 40], [-1472, 38], [-1473, 38], [-1474, 37], [-1475, 37], [-1477, 35], [-1478, 35], [-1480, 37], [-1481, 37], [-1483, 39], [-1486, 39], [-1486, 36], [-1496, 36], [-1496, 39], [-1500, 39]]}, "center": {"209-222": [-1477, 40], "223-258, T": [-1491, 41]}}, {"id": 4684, "name": "La Boulangerie MC", "description": "World Building french Minecraft server.\n\nServeur Minecraft de Roleplay Géopolitique.", "links": {"website": ["https://laboulangerie.net/"], "subreddit": ["laboulangeriemc"], "discord": ["vV2q2sBym5"]}, "path": {"97-110": [[-544, 114], [-544, 123], [-571, 123], [-571, 114]]}, "center": {"97-110": [-557, 119]}}, -{"id": 4685, "name": "Ankh.", "description": "The ankh, also known as \"key of life\", represents the word \"life\" in ancient Egyptian hieroglyphics.", "links": {"website": ["https://en.wikipedia.org/wiki/Ankh"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"162-258": [[-781, 328], [-788, 328], [-788, 334], [-787, 334], [-786, 335], [-789, 335], [-789, 338], [-786, 338], [-786, 344], [-783, 344], [-783, 338], [-780, 338], [-780, 335], [-783, 335], [-781, 333]]}, "center": {"162-258": [-785, 332]}}, -{"id": 4686, "name": "Kitboga", "description": "American scam baiter, Twitch streamer and YouTuber", "links": {"website": ["https://kitboga.com/"], "subreddit": ["Kitboga"]}, "path": {"172-258": [[-368, -65], [-368, -57], [-334, -57], [-334, -65]]}, "center": {"172-258": [-351, -61]}}, -{"id": 4687, "name": "Stardew Valley Crab", "description": "The crab from Stardew Valley", "links": {"website": ["https://stardewvalley.net"], "subreddit": ["StardewValley"]}, "path": {"250-258": [[-286, 731], [-286, 733], [-288, 733], [-289, 732], [-290, 730], [-289, 729], [-290, 728], [-291, 727], [-291, 725], [-290, 724], [-291, 723], [-291, 722], [-290, 721], [-290, 719], [-287, 719], [-286, 719], [-286, 721], [-286, 723], [-287, 723], [-286, 724], [-285, 724], [-285, 723], [-285, 722], [-280, 722], [-280, 724], [-279, 724], [-279, 723], [-278, 723], [-278, 721], [-277, 721], [-276, 720], [-275, 721], [-274, 721], [-274, 724], [-275, 724], [-274, 727], [-275, 728], [-276, 729], [-275, 730], [-275, 731], [-276, 732], [-277, 733], [-279, 733], [-279, 732], [-285, 732]]}, "center": {"250-258": [-282, 728]}}, -{"id": 4688, "name": "KEMIST_C10H15N flask", "description": "A potion to represent Mr KEMIST_C10H15N who always dresses as a chemist during these streams (best speedrunner ever + gigachad 🫶🏻❣️💓 )", "links": {"website": ["https://www.twitch.tv/kemist_c10h15n"], "discord": ["HsBtFcFmt5"]}, "path": {"241-258": [[-1178, 65], [-1191, 65], [-1191, 64], [-1192, 64], [-1192, 60], [-1191, 60], [-1191, 58], [-1190, 58], [-1190, 56], [-1189, 56], [-1189, 54], [-1188, 54], [-1188, 52], [-1187, 52], [-1187, 47], [-1188, 47], [-1181, 47], [-1182, 47], [-1182, 52], [-1181, 52], [-1181, 54], [-1180, 54], [-1180, 56], [-1179, 56], [-1179, 58], [-1178, 58], [-1178, 60], [-1177, 60], [-1177, 64], [-1178, 64]]}, "center": {"241-258": [-1185, 59]}}, -{"id": 4689, "name": "Egyptian Golden Eagle,", "description": "The eagle is a heraldic symbol that has been used by many cultures throughout history. It is often seen as a symbol of strength, power, and wisdom. In Egypt, the eagle is associated with the god Horus, who was the protector of the pharaoh and the people.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Egypt", "https://en.wikipedia.org/wiki/Flag_of_Egypt"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"189-258": [[-895, 336], [-895, 329], [-902, 329], [-902, 336]]}, "center": {"189-258": [-898, 333]}}, -{"id": 4690, "name": "Krobus", "description": "A shadow person who lives in the sewers of Stardew Valley.", "links": {"subreddit": ["StardewValley"]}, "path": {"250-258": [[1235, 317], [1235, 302], [1218, 302], [1218, 317]]}, "center": {"250-258": [1227, 310]}}, -{"id": 4691, "name": "Cairo Tower", "description": "The Cairo Tower is a Tourist attraction which is 187-meter-tall (614 ft) concrete tower in Cairo, Egypt. It was built between 1956 and 1961, and is the tallest structure in Cairo. The tower is designed to resemble a lotus flower, a symbol of Ancient Egypt. It is located on Gezira Island in the middle of the Nile River.", "links": {"website": ["https://en.wikipedia.org/wiki/Cairo_Tower"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"193-232": [[-924, 356], [-928, 356], [-926, 323]], "233-258": [[-928, 364], [-924, 364], [-926, 323]]}, "center": {"193-232": [-926, 353], "233-258": [-926, 361]}}, -{"id": 4692, "name": "Uriel", "description": "Uriel is a character in the web novel/ manwha/ webtoon Omniscient Reader's Viewpoint more commonly known by her constellation modifier \"Demon-like Judge of Fire\" in the story. She is an archangel of the nebula who stands on the side of Absolute Good.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154", "https://omniscient-readers-viewpoint.fandom.com/wiki/Uriel"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[121, 854], [127, 854], [127, 857], [128, 857], [128, 858], [130, 858], [130, 860], [129, 860], [129, 862], [128, 862], [128, 863], [124, 863], [124, 862], [121, 862]]}, "center": {"250-258": [124, 859]}}, -{"id": 4693, "name": "Mosque.", "description": "A Mosque also known as \"masjid\" which means \"place of prostration\" in Arabic. It is a Muslim house of worship, and is a central part of Islamic life. Mosques are places where Muslims can come together to pray, learn about their faith, and socialize with other Muslims.", "links": {"website": ["https://en.wikipedia.org/wiki/Mosque"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"200-258": [[-883, 358], [-883, 355], [-886, 352], [-888, 353], [-888, 349], [-889, 348], [-890, 348], [-888, 345], [-890, 346], [-891, 345], [-892, 345], [-892, 343], [-891, 342], [-891, 348], [-892, 349], [-892, 351], [-893, 352], [-894, 351], [-895, 351], [-895, 347], [-896, 348], [-897, 348], [-898, 347], [-898, 350], [-899, 351], [-900, 352], [-901, 352], [-901, 349], [-902, 348], [-903, 347], [-903, 345], [-901, 344], [-904, 345], [-904, 344], [-905, 344], [-905, 342], [-904, 341], [-903, 348], [-905, 349], [-905, 354], [-908, 352], [-911, 355], [-911, 358], [-911, 364], [-906, 364], [-906, 358]]}, "center": {"200-258": [-897, 354]}}, -{"id": 4694, "name": "Biyoo", "description": "A small dokkaebi named Biyoo from the popular Korean web novel/ manwha/ webtoon Omniscient Reader's Viewpoint by Sing Shong.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154#"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[113, 874], [116, 871], [120, 871], [120, 872], [122, 874], [122, 877], [119, 880], [116, 880], [113, 877]]}, "center": {"250-258": [118, 876]}}, +{"id": 4685, "name": "Ankh.", "description": "The ankh, also known as \"key of life\", represents the word \"life\" in ancient Egyptian hieroglyphics.", "links": {"website": ["https://en.wikipedia.org/wiki/Ankh"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"162-258, T": [[-781, 328], [-788, 328], [-788, 334], [-787, 334], [-786, 335], [-789, 335], [-789, 338], [-786, 338], [-786, 344], [-783, 344], [-783, 338], [-780, 338], [-780, 335], [-783, 335], [-781, 333]]}, "center": {"162-258, T": [-785, 332]}}, +{"id": 4686, "name": "Kitboga", "description": "American scam baiter, Twitch streamer and YouTuber", "links": {"website": ["https://kitboga.com/"], "subreddit": ["Kitboga"]}, "path": {"172-258, T": [[-368, -65], [-368, -57], [-334, -57], [-334, -65]]}, "center": {"172-258, T": [-351, -61]}}, +{"id": 4687, "name": "Stardew Valley Crab", "description": "The crab from Stardew Valley", "links": {"website": ["https://stardewvalley.net"], "subreddit": ["StardewValley"]}, "path": {"250-258, T": [[-286, 731], [-286, 733], [-288, 733], [-289, 732], [-290, 730], [-289, 729], [-290, 728], [-291, 727], [-291, 725], [-290, 724], [-291, 723], [-291, 722], [-290, 721], [-290, 719], [-287, 719], [-286, 719], [-286, 721], [-286, 723], [-287, 723], [-286, 724], [-285, 724], [-285, 723], [-285, 722], [-280, 722], [-280, 724], [-279, 724], [-279, 723], [-278, 723], [-278, 721], [-277, 721], [-276, 720], [-275, 721], [-274, 721], [-274, 724], [-275, 724], [-274, 727], [-275, 728], [-276, 729], [-275, 730], [-275, 731], [-276, 732], [-277, 733], [-279, 733], [-279, 732], [-285, 732]]}, "center": {"250-258, T": [-282, 728]}}, +{"id": 4688, "name": "KEMIST_C10H15N flask", "description": "A potion to represent Mr KEMIST_C10H15N who always dresses as a chemist during these streams (best speedrunner ever + gigachad 🫶🏻❣️💓 )", "links": {"website": ["https://www.twitch.tv/kemist_c10h15n"], "discord": ["HsBtFcFmt5"]}, "path": {"241-258, T": [[-1178, 65], [-1191, 65], [-1191, 64], [-1192, 64], [-1192, 60], [-1191, 60], [-1191, 58], [-1190, 58], [-1190, 56], [-1189, 56], [-1189, 54], [-1188, 54], [-1188, 52], [-1187, 52], [-1187, 47], [-1188, 47], [-1181, 47], [-1182, 47], [-1182, 52], [-1181, 52], [-1181, 54], [-1180, 54], [-1180, 56], [-1179, 56], [-1179, 58], [-1178, 58], [-1178, 60], [-1177, 60], [-1177, 64], [-1178, 64]]}, "center": {"241-258, T": [-1185, 59]}}, +{"id": 4689, "name": "Egyptian Golden Eagle,", "description": "The eagle is a heraldic symbol that has been used by many cultures throughout history. It is often seen as a symbol of strength, power, and wisdom. In Egypt, the eagle is associated with the god Horus, who was the protector of the pharaoh and the people.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Egypt", "https://en.wikipedia.org/wiki/Flag_of_Egypt"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"189-258, T": [[-895, 336], [-895, 329], [-902, 329], [-902, 336]]}, "center": {"189-258, T": [-898, 333]}}, +{"id": 4690, "name": "Krobus", "description": "A shadow person who lives in the sewers of Stardew Valley.", "links": {"subreddit": ["StardewValley"]}, "path": {"250-258, T": [[1235, 317], [1235, 302], [1218, 302], [1218, 317]]}, "center": {"250-258, T": [1227, 310]}}, +{"id": 4691, "name": "Cairo Tower", "description": "The Cairo Tower is a Tourist attraction which is 187-meter-tall (614 ft) concrete tower in Cairo, Egypt. It was built between 1956 and 1961, and is the tallest structure in Cairo. The tower is designed to resemble a lotus flower, a symbol of Ancient Egypt. It is located on Gezira Island in the middle of the Nile River.", "links": {"website": ["https://en.wikipedia.org/wiki/Cairo_Tower"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"193-232": [[-924, 356], [-928, 356], [-926, 323]], "233-258, T": [[-928, 364], [-924, 364], [-926, 323]]}, "center": {"193-232": [-926, 353], "233-258, T": [-926, 361]}}, +{"id": 4692, "name": "Uriel", "description": "Uriel is a character in the web novel/ manwha/ webtoon Omniscient Reader's Viewpoint more commonly known by her constellation modifier \"Demon-like Judge of Fire\" in the story. She is an archangel of the nebula who stands on the side of Absolute Good.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154", "https://omniscient-readers-viewpoint.fandom.com/wiki/Uriel"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[121, 854], [127, 854], [127, 857], [128, 857], [128, 858], [130, 858], [130, 860], [129, 860], [129, 862], [128, 862], [128, 863], [124, 863], [124, 862], [121, 862]]}, "center": {"250-258, T": [124, 859]}}, +{"id": 4693, "name": "Mosque.", "description": "A Mosque also known as \"masjid\" which means \"place of prostration\" in Arabic. It is a Muslim house of worship, and is a central part of Islamic life. Mosques are places where Muslims can come together to pray, learn about their faith, and socialize with other Muslims.", "links": {"website": ["https://en.wikipedia.org/wiki/Mosque"], "subreddit": ["Egypt"], "discord": ["Qc7arrjupq"]}, "path": {"200-258, T": [[-883, 358], [-883, 355], [-886, 352], [-888, 353], [-888, 349], [-889, 348], [-890, 348], [-888, 345], [-890, 346], [-891, 345], [-892, 345], [-892, 343], [-891, 342], [-891, 348], [-892, 349], [-892, 351], [-893, 352], [-894, 351], [-895, 351], [-895, 347], [-896, 348], [-897, 348], [-898, 347], [-898, 350], [-899, 351], [-900, 352], [-901, 352], [-901, 349], [-902, 348], [-903, 347], [-903, 345], [-901, 344], [-904, 345], [-904, 344], [-905, 344], [-905, 342], [-904, 341], [-903, 348], [-905, 349], [-905, 354], [-908, 352], [-911, 355], [-911, 358], [-911, 364], [-906, 364], [-906, 358]]}, "center": {"200-258, T": [-897, 354]}}, +{"id": 4694, "name": "Biyoo", "description": "A small dokkaebi named Biyoo from the popular Korean web novel/ manwha/ webtoon Omniscient Reader's Viewpoint by Sing Shong.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154#"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[113, 874], [116, 871], [120, 871], [120, 872], [122, 874], [122, 877], [119, 880], [116, 880], [113, 877]]}, "center": {"250-258, T": [118, 876]}}, {"id": 4695, "name": "Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["laboulangeriemc", "placeFR", "france"], "discord": ["placeFR"]}, "path": {"100-214": [[-548, 114], [-544, 114], [-544, 123], [-548, 123]]}, "center": {"100-214": [-546, 119]}}, -{"id": 4696, "name": "Singapore-Bolivia hearts", "description": "Two hearts depicting the flags of Singapore and Bolivia, across the artworks of the two countries. Although the second Singapore flag was wiped out by Bolivian streamers, the official Bolivia r/place group renounced this and formed an alliance with Singapore.", "links": {"subreddit": ["BOLIVIA", "singapore", "placeSG"]}, "path": {"132-147": [[326, -23], [325, -23], [325, -24], [324, -24], [324, -25], [323, -25], [323, -27], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -27], [372, -27], [372, -28], [373, -28], [373, -29], [379, -29], [379, -28], [380, -28], [380, -25], [379, -25], [378, -24], [378, -23], [377, -23], [377, -22], [376, -22], [375, -22], [375, -23], [374, -23], [374, -24], [373, -24], [373, -25], [330, -25], [330, -24], [329, -24], [328, -23], [328, -22], [326, -22]], "84-131": [[327, -22], [326, -22], [326, -23], [325, -23], [325, -24], [324, -24], [324, -25], [323, -25], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -25], [330, -25], [330, -24], [329, -24], [329, -23], [328, -23], [328, -22]], "151-258": [[326, -23], [325, -23], [325, -24], [324, -24], [324, -25], [323, -25], [323, -27], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -27], [376, -27], [376, -28], [377, -28], [377, -29], [383, -29], [383, -28], [384, -28], [384, -25], [383, -25], [383, -24], [382, -24], [382, -23], [381, -23], [379, -22], [379, -23], [378, -23], [378, -24], [377, -24], [377, -25], [330, -25], [330, -24], [329, -24], [329, -23], [328, -23], [328, -22], [326, -22]]}, "center": {"132-147": [376, -26], "84-131": [327, -26], "151-258": [327, -26]}}, -{"id": 4697, "name": "Singapore-Sri Lanka-Bolivia tri-heart", "description": "A heart depicting the flags of Singapore, Sri Lanka and Bolivia, across the artworks of the three countries. Although the flags of Singapore and Sri Lanka were wiped out by Bolivian streamers, the official Bolivia r/place group stated that it was not their order, and formed an alliance.", "links": {"subreddit": ["srilanka", "BOLIVIA", "singapore", "placeSG"]}, "path": {"141-258": [[313, -22], [312, -22], [312, -23], [311, -23], [311, -24], [310, -24], [310, -25], [309, -25], [309, -27], [309, -28], [310, -28], [310, -29], [316, -29], [316, -28], [317, -28], [317, -25], [316, -25], [316, -24], [315, -24], [314, -23], [314, -22]]}, "center": {"141-258": [313, -26]}}, -{"id": 4698, "name": "Maramamiau", "description": "Minecraft character of the Spanish streamer Maramamiau, made by her community in gratitude for all the happiness provided by her.", "links": {"website": ["https://www.twitch.tv/maramamiau", "https://twitter.com/Maramamiau_?s=20"]}, "path": {"243-259": [[-259, 930], [-250, 930], [-250, 939], [-259, 939]]}, "center": {"243-259": [-254, 935]}}, -{"id": 4699, "name": "Grunt", "description": "A grunt from the newgrounds series Madness Combat. They are holding a hotdog.", "links": {"website": ["https://www.newgrounds.com/portal/view/58182"], "subreddit": ["madnesscombat"]}, "path": {"173-258": [[-413, 939], [-419, 941], [-422, 951], [-420, 956], [-413, 956], [-413, 955], [-413, 952], [-413, 946], [-413, 940]]}, "center": {"173-258": [-417, 950]}}, -{"id": 4700, "name": "OFF", "description": "Artwork of The Batter and Zacharie from the 2008 RPG Maker game OFF by Mortis Ghost.", "links": {"subreddit": ["offthegame"]}, "path": {"209-258": [[-103, -505], [-103, -521], [-99, -525], [-69, -521], [-67, -513], [-66, -502], [-88, -498]]}, "center": {"209-258": [-86, -511]}}, +{"id": 4696, "name": "Singapore-Bolivia hearts", "description": "Two hearts depicting the flags of Singapore and Bolivia, across the artworks of the two countries. Although the second Singapore flag was wiped out by Bolivian streamers, the official Bolivia r/place group renounced this and formed an alliance with Singapore.", "links": {"subreddit": ["BOLIVIA", "singapore", "placeSG"]}, "path": {"132-147": [[326, -23], [325, -23], [325, -24], [324, -24], [324, -25], [323, -25], [323, -27], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -27], [372, -27], [372, -28], [373, -28], [373, -29], [379, -29], [379, -28], [380, -28], [380, -25], [379, -25], [378, -24], [378, -23], [377, -23], [377, -22], [376, -22], [375, -22], [375, -23], [374, -23], [374, -24], [373, -24], [373, -25], [330, -25], [330, -24], [329, -24], [328, -23], [328, -22], [326, -22]], "84-131": [[327, -22], [326, -22], [326, -23], [325, -23], [325, -24], [324, -24], [324, -25], [323, -25], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -25], [330, -25], [330, -24], [329, -24], [329, -23], [328, -23], [328, -22]], "151-258, T": [[326, -23], [325, -23], [325, -24], [324, -24], [324, -25], [323, -25], [323, -27], [323, -28], [324, -28], [324, -29], [330, -29], [330, -28], [331, -28], [331, -27], [376, -27], [376, -28], [377, -28], [377, -29], [383, -29], [383, -28], [384, -28], [384, -25], [383, -25], [383, -24], [382, -24], [382, -23], [381, -23], [379, -22], [379, -23], [378, -23], [378, -24], [377, -24], [377, -25], [330, -25], [330, -24], [329, -24], [329, -23], [328, -23], [328, -22], [326, -22]]}, "center": {"132-147": [376, -26], "84-131": [327, -26], "151-258, T": [327, -26]}}, +{"id": 4697, "name": "Singapore-Sri Lanka-Bolivia tri-heart", "description": "A heart depicting the flags of Singapore, Sri Lanka and Bolivia, across the artworks of the three countries. Although the flags of Singapore and Sri Lanka were wiped out by Bolivian streamers, the official Bolivia r/place group stated that it was not their order, and formed an alliance.", "links": {"subreddit": ["srilanka", "BOLIVIA", "singapore", "placeSG"]}, "path": {"141-258, T": [[313, -22], [312, -22], [312, -23], [311, -23], [311, -24], [310, -24], [310, -25], [309, -25], [309, -27], [309, -28], [310, -28], [310, -29], [316, -29], [316, -28], [317, -28], [317, -25], [316, -25], [316, -24], [315, -24], [314, -23], [314, -22]]}, "center": {"141-258, T": [313, -26]}}, +{"id": 4698, "name": "Maramamiau", "description": "Minecraft character of the Spanish streamer Maramamiau, made by her community in gratitude for all the happiness provided by her.", "links": {"website": ["https://www.twitch.tv/maramamiau", "https://twitter.com/Maramamiau_?s=20"]}, "path": {"243-259, T": [[-259, 930], [-250, 930], [-250, 939], [-259, 939]]}, "center": {"243-259, T": [-254, 935]}}, +{"id": 4699, "name": "Grunt", "description": "A grunt from the newgrounds series Madness Combat. They are holding a hotdog.", "links": {"website": ["https://www.newgrounds.com/portal/view/58182"], "subreddit": ["madnesscombat"]}, "path": {"173-258, T": [[-413, 939], [-419, 941], [-422, 951], [-420, 956], [-413, 956], [-413, 955], [-413, 952], [-413, 946], [-413, 940]]}, "center": {"173-258, T": [-417, 950]}}, +{"id": 4700, "name": "OFF", "description": "Artwork of The Batter and Zacharie from the 2008 RPG Maker game OFF by Mortis Ghost.", "links": {"subreddit": ["offthegame"]}, "path": {"209-258, T": [[-103, -505], [-103, -521], [-99, -525], [-69, -521], [-67, -513], [-66, -502], [-88, -498]]}, "center": {"209-258, T": [-86, -511]}}, {"id": 4701, "name": "the Penguin", "description": "a small discord group defended a little penguin", "links": {}, "path": {"8": [[-263, 264], [-249, 282], [-249, 264], [-263, 264], [-263, 282], [-249, 282]]}, "center": {"8": [-254, 269]}}, -{"id": 4702, "name": "Doritos with Glasses", "description": "A Doritio snack chip with glasses. \n\nCreated by streamer Argentinian ElSpreen", "links": {"website": ["https://www.twitch.tv/elspreen"]}, "path": {"215-258": [[341, 834], [342, 834], [343, 835], [346, 835], [347, 836], [347, 839], [348, 840], [348, 842], [349, 843], [349, 851], [351, 853], [353, 853], [353, 854], [354, 855], [354, 858], [355, 859], [355, 861], [356, 862], [356, 863], [357, 864], [357, 870], [359, 872], [359, 874], [361, 876], [360, 877], [360, 879], [361, 880], [361, 881], [362, 882], [363, 882], [364, 883], [364, 884], [363, 885], [333, 885], [330, 882], [326, 882], [325, 883], [324, 882], [322, 882], [319, 879], [313, 879], [312, 878], [311, 878], [311, 877], [310, 876], [309, 876], [308, 875], [307, 875], [306, 874], [306, 871], [305, 870], [305, 864], [309, 860], [310, 860], [315, 855], [316, 855], [317, 854], [318, 854], [319, 853], [319, 851], [320, 850], [321, 850], [325, 846], [326, 846], [328, 844], [329, 844], [331, 842], [332, 842], [334, 840], [334, 839], [335, 839], [339, 835], [340, 835]]}, "center": {"215-258": [335, 864]}}, -{"id": 4703, "name": "Sovereign in Deep Space", "description": "The Reaper called Sovereign from Mass Effect 1 started his time on the canvas by firing his laser at those around him. Peace with the Reapers was achieved and he returned to deep space, surrounded by stars and galaxies, where he awaits the next cycle.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"215-259": [[-821, -1000], [-805, -1000], [-805, -997], [-810, -992], [-810, -978], [-805, -975], [-805, -970], [-821, -970]]}, "center": {"215-259": [-815, -994]}}, +{"id": 4702, "name": "Doritos with Glasses", "description": "A Doritio snack chip with glasses. \n\nCreated by streamer Argentinian ElSpreen", "links": {"website": ["https://www.twitch.tv/elspreen"]}, "path": {"215-258, T": [[341, 834], [342, 834], [343, 835], [346, 835], [347, 836], [347, 839], [348, 840], [348, 842], [349, 843], [349, 851], [351, 853], [353, 853], [353, 854], [354, 855], [354, 858], [355, 859], [355, 861], [356, 862], [356, 863], [357, 864], [357, 870], [359, 872], [359, 874], [361, 876], [360, 877], [360, 879], [361, 880], [361, 881], [362, 882], [363, 882], [364, 883], [364, 884], [363, 885], [333, 885], [330, 882], [326, 882], [325, 883], [324, 882], [322, 882], [319, 879], [313, 879], [312, 878], [311, 878], [311, 877], [310, 876], [309, 876], [308, 875], [307, 875], [306, 874], [306, 871], [305, 870], [305, 864], [309, 860], [310, 860], [315, 855], [316, 855], [317, 854], [318, 854], [319, 853], [319, 851], [320, 850], [321, 850], [325, 846], [326, 846], [328, 844], [329, 844], [331, 842], [332, 842], [334, 840], [334, 839], [335, 839], [339, 835], [340, 835]]}, "center": {"215-258, T": [335, 864]}}, +{"id": 4703, "name": "Sovereign in Deep Space", "description": "The Reaper called Sovereign from Mass Effect 1 started his time on the canvas by firing his laser at those around him. Peace with the Reapers was achieved and he returned to deep space, surrounded by stars and galaxies, where he awaits the next cycle.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"215-259, T": [[-821, -1000], [-805, -1000], [-805, -997], [-810, -992], [-810, -978], [-805, -975], [-805, -970], [-821, -970]]}, "center": {"215-259, T": [-815, -994]}}, {"id": 4704, "name": "Ducks United", "description": "The great union of ducks from mutliple subreddit all united under one banner (https://discord.gg/ySXpJwzTzs)", "links": {"subreddit": ["placeducks", "duck_place", "shareducks"], "discord": ["ySXpJwzTzs"]}, "path": {"87-100": [[-869, -271], [-869, -234], [-836, -234], [-835, -234], [-835, -242], [-825, -242], [-825, -256], [-829, -256], [-830, -257], [-830, -260], [-830, -261], [-841, -271]]}, "center": {"87-100": [-850, -252]}}, {"id": 4705, "name": "One leu banknote", "description": "The one leu banknote is the smallest circulating denomination of the Romanian leu.\n\nThe drawing features the banknote in its 2005-present design. It was made by Romanian streamer iRaphahell.", "links": {"website": ["https://www.youtube.com/@iRaphahell"]}, "path": {"207": [[1272, 686], [1272, 719], [1336, 719], [1334, 688]]}, "center": {"207": [1288, 703]}}, {"id": 4706, "name": "Little Guys Alliance", "description": "This is the unofficially coined \"Little Guys Alliance\" featuring a Dalek from Doctor Who, Ninten from Mother 1/Earthbound Begginings, and Rythm Heaven. This group also owes much of their survival to the Irish.\n\nThe alliance between Rythm Heaven and Earthbound harkens back to r/place 2022, when the two groups became steadfast friends. \n\nAfter facing attacks from flags, Earthbound and the Tardis below Jetlag became allies. The Dalek was chosen to be built, thanks to it's similarities to Earthbound's Starmen.", "links": {"website": ["https://starmen.net"], "subreddit": ["earthbound", "rythmheaven", "doctorWhumour"]}, "path": {"249": [[251, -195], [279, -195], [279, -176], [251, -176]]}, "center": {"249": [265, -185]}}, -{"id": 4707, "name": "Nia Pijama y Capibara", "description": "LakshartNia amante de los pijamas y capibaras\nPixelart hecho por un meme entre la comunidad Niaters (Nianos)\n\n- peepoPijama porque a Nia le gusta usar pijamas en los Directos que hace en Twitch y su vida diría\n- Capibara por que le gustan muchísimo esos animales y mucho más el sonido que hacen los capibaras de minecraft \" Fi Fi Fi \"", "links": {"website": ["https://www.twitch.tv/lakshartnia"], "subreddit": ["Nyasuu"]}, "path": {"250-258": [[-1025, -233], [-1008, -233], [-1008, -232], [-1007, -232], [-1007, -226], [-1009, -226], [-1009, -225], [-1010, -225], [-1010, -216], [-1000, -216], [-1000, -204], [-1025, -204]]}, "center": {"250-258": [-1017, -213]}}, -{"id": 4708, "name": "Mini American Flag", "description": "A smaller American flag in r/place", "links": {"subreddit": ["americanflaginplacr"]}, "path": {"189-258": [[-1445, 139], [-1445, 153], [-1417, 153], [-1417, 139]]}, "center": {"189-258": [-1431, 146]}}, -{"id": 4709, "name": "New York Jets", "description": "The New York Jets are an American football team who play in the National Football League (NFL) whos most recent accomplishment as a team was winning Super Bowl III in 1969.", "links": {"website": ["https://www.newyorkjets.com/"], "subreddit": ["nyjets"]}, "path": {"247-258": [[-1445, 131], [-1419, 131], [-1419, 139], [-1445, 139]]}, "center": {"247-258": [-1432, 135]}}, -{"id": 4710, "name": "Babousa", "description": "Mini pixel art that represent twitch streamer Agentemaxo.\nThis is another Babousa, the pet of the chat and one of the most iconics emotes of the community.\nThere are more babousas hidden in the canvas, can you find them?", "links": {"website": ["https://www.twitch.tv/agentemaxo"], "subreddit": ["eymaxo"]}, "path": {"220-258": [[-1242, 599], [-1228, 599], [-1228, 598], [-1227, 598], [-1227, 594], [-1228, 594], [-1228, 592], [-1229, 592], [-1229, 588], [-1232, 588], [-1232, 587], [-1238, 587], [-1238, 588], [-1239, 588], [-1239, 589], [-1240, 589], [-1240, 592], [-1241, 592], [-1241, 596], [-1242, 596]]}, "center": {"220-258": [-1234, 593]}}, -{"id": 4711, "name": "Toulouse FC", "description": "Toulouse FC or TFC is a football club who won the French Cup in 2023 against Nantes.", "links": {"website": ["https://www.toulousefc.com/fr"]}, "path": {"250-258": [[925, -863], [973, -863], [973, -838], [926, -839], [925, -863], [926, -839], [925, -846]]}, "center": {"250-258": [949, -851]}}, -{"id": 4712, "name": "Darkness / Dustiness Ford Lalatina", "description": "One of the main characters from Konosuba", "links": {"website": ["https://en.wikipedia.org/wiki/List_of_KonoSuba_characters?useskin=vector#Darkness"], "subreddit": ["Konosuba"], "discord": ["konosuba"]}, "path": {"250-258": [[298, -900], [304, -900], [304, -911], [298, -911]]}, "center": {"250-258": [301, -905]}}, -{"id": 4713, "name": "TinyJapan", "description": "A tiny Japanese flag started by the LLL community.\nIt was previously destroyed by the appearance of the NintendoSwitch, after which the NintendoSwitch community adopted it and secured its space on the canvas.", "links": {"subreddit": ["lowlevelaware", "NintendoSwitch"]}, "path": {"212-258": [[-1406, 407], [-1394, 407], [-1394, 415], [-1406, 415]]}, "center": {"212-258": [-1400, 411]}}, -{"id": 4714, "name": "Moepi", "description": "Moepi is a German Twitch streamer.", "links": {"website": ["https://www.twitch.tv/moepi"], "subreddit": ["Moepi"]}, "path": {"250-258": [[649, 784], [679, 784], [679, 790], [649, 790]]}, "center": {"250-258": [664, 787]}}, -{"id": 4715, "name": "Sky: Children of the Light (Sansky tribute)", "description": "Collaboration with Papaplatte to place another Sky artwork. Features memorial of Sansky, a player and friend who created r/SkyPlace in 2022. Standing with TGC pet dog Oreo, watching a manta and fish (two Sky creatures, in the water.", "links": {"subreddit": ["SkyPlace", "SkyGame"], "discord": ["f3rxny6Ujq"]}, "path": {"250-258": [[-94, 237], [-74, 237], [-74, 232], [-73, 232], [-72, 231], [-72, 223], [-79, 223], [-79, 225], [-86, 225], [-90, 223], [-95, 223]]}, "center": {"250-258": [-81, 231]}}, -{"id": 4716, "name": "Redwoods", "description": "Redwoods, or Sequoioideae, are a subspecies of coniferous trees that contain some of the largest trees in the world. Redwoods are native to the coastal regions of the U.S. states of California and Oregon.", "links": {"website": ["https://en.wikipedia.org/wiki/Sequoioideae"]}, "path": {"182-258": [[819, 888], [819, 883], [815, 880], [816, 861], [821, 851], [823, 857], [829, 846], [834, 861], [833, 877], [831, 883], [830, 890]]}, "center": {"182-258": [824, 875]}}, -{"id": 4717, "name": "Netherlands", "description": "The country of the Netherlands as it appears on a map, with the flag of the Netherlands as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL", "PlaceEU"], "discord": ["PlaceNL"]}, "path": {"158-258": [[-282, 742], [-276, 735], [-274, 732], [-271, 732], [-268, 734], [-269, 737], [-270, 740], [-271, 743], [-274, 745], [-276, 745], [-279, 744]]}, "center": {"158-258": [-275, 740]}}, -{"id": 4718, "name": "the original starwalker", "description": "this r/place pisses me off", "links": {}, "path": {"250-258": [[300, 956], [305, 951], [311, 957], [308, 959], [308, 963], [310, 964], [311, 965], [306, 966], [306, 961], [305, 960], [304, 965], [300, 966], [301, 964], [302, 960]]}, "center": {"250-258": [306, 957]}}, -{"id": 4719, "name": "Rapturrs", "description": "Name and Minecraft character of the Spanish streamer Rapturss, which includes an illustration of a pizza, representative symbol of his Twitch channel and important within his community for the same reason.", "links": {"website": ["https://www.twitch.tv/rapturrs", "https://twitter.com/rapturrs?s=20"], "discord": ["rapturs"]}, "path": {"242-259": [[-253, 925], [-225, 925], [-225, 931], [-224, 931], [-224, 935], [-238, 935], [-238, 939], [-250, 939], [-250, 930], [-253, 930]]}, "center": {"242-259": [-243, 931]}}, +{"id": 4707, "name": "Nia Pijama y Capibara", "description": "LakshartNia amante de los pijamas y capibaras\nPixelart hecho por un meme entre la comunidad Niaters (Nianos)\n\n- peepoPijama porque a Nia le gusta usar pijamas en los Directos que hace en Twitch y su vida diría\n- Capibara por que le gustan muchísimo esos animales y mucho más el sonido que hacen los capibaras de minecraft \" Fi Fi Fi \"", "links": {"website": ["https://www.twitch.tv/lakshartnia"], "subreddit": ["Nyasuu"]}, "path": {"250-258, T": [[-1025, -233], [-1008, -233], [-1008, -232], [-1007, -232], [-1007, -226], [-1009, -226], [-1009, -225], [-1010, -225], [-1010, -216], [-1000, -216], [-1000, -204], [-1025, -204]]}, "center": {"250-258, T": [-1017, -213]}}, +{"id": 4708, "name": "Mini American Flag", "description": "A smaller American flag in r/place", "links": {"subreddit": ["americanflaginplacr"]}, "path": {"189-258, T": [[-1445, 139], [-1445, 153], [-1417, 153], [-1417, 139]]}, "center": {"189-258, T": [-1431, 146]}}, +{"id": 4709, "name": "New York Jets", "description": "The New York Jets are an American football team who play in the National Football League (NFL) whos most recent accomplishment as a team was winning Super Bowl III in 1969.", "links": {"website": ["https://www.newyorkjets.com/"], "subreddit": ["nyjets"]}, "path": {"247-258, T": [[-1445, 131], [-1419, 131], [-1419, 139], [-1445, 139]]}, "center": {"247-258, T": [-1432, 135]}}, +{"id": 4710, "name": "Babousa", "description": "Mini pixel art that represent twitch streamer Agentemaxo.\nThis is another Babousa, the pet of the chat and one of the most iconics emotes of the community.\nThere are more babousas hidden in the canvas, can you find them?", "links": {"website": ["https://www.twitch.tv/agentemaxo"], "subreddit": ["eymaxo"]}, "path": {"220-258, T": [[-1242, 599], [-1228, 599], [-1228, 598], [-1227, 598], [-1227, 594], [-1228, 594], [-1228, 592], [-1229, 592], [-1229, 588], [-1232, 588], [-1232, 587], [-1238, 587], [-1238, 588], [-1239, 588], [-1239, 589], [-1240, 589], [-1240, 592], [-1241, 592], [-1241, 596], [-1242, 596]]}, "center": {"220-258, T": [-1234, 593]}}, +{"id": 4711, "name": "Toulouse FC", "description": "Toulouse FC or TFC is a football club who won the French Cup in 2023 against Nantes.", "links": {"website": ["https://www.toulousefc.com/fr"]}, "path": {"250-258, T": [[925, -863], [973, -863], [973, -838], [926, -839], [925, -863], [926, -839], [925, -846]]}, "center": {"250-258, T": [949, -851]}}, +{"id": 4712, "name": "Darkness / Dustiness Ford Lalatina", "description": "One of the main characters from Konosuba", "links": {"website": ["https://en.wikipedia.org/wiki/List_of_KonoSuba_characters?useskin=vector#Darkness"], "subreddit": ["Konosuba"], "discord": ["konosuba"]}, "path": {"250-258, T": [[298, -900], [304, -900], [304, -911], [298, -911]]}, "center": {"250-258, T": [301, -905]}}, +{"id": 4713, "name": "TinyJapan", "description": "A tiny Japanese flag started by the LLL community.\nIt was previously destroyed by the appearance of the NintendoSwitch, after which the NintendoSwitch community adopted it and secured its space on the canvas.", "links": {"subreddit": ["lowlevelaware", "NintendoSwitch"]}, "path": {"212-258, T": [[-1406, 407], [-1394, 407], [-1394, 415], [-1406, 415]]}, "center": {"212-258, T": [-1400, 411]}}, +{"id": 4714, "name": "Moepi", "description": "Moepi is a German Twitch streamer.", "links": {"website": ["https://www.twitch.tv/moepi"], "subreddit": ["Moepi"]}, "path": {"250-258, T": [[649, 784], [679, 784], [679, 790], [649, 790]]}, "center": {"250-258, T": [664, 787]}}, +{"id": 4715, "name": "Sky: Children of the Light (Sansky tribute)", "description": "Collaboration with Papaplatte to place another Sky artwork. Features memorial of Sansky, a player and friend who created r/SkyPlace in 2022. Standing with TGC pet dog Oreo, watching a manta and fish (two Sky creatures, in the water.", "links": {"subreddit": ["SkyPlace", "SkyGame"], "discord": ["f3rxny6Ujq"]}, "path": {"250-258, T": [[-94, 237], [-74, 237], [-74, 232], [-73, 232], [-72, 231], [-72, 223], [-79, 223], [-79, 225], [-86, 225], [-90, 223], [-95, 223]]}, "center": {"250-258, T": [-81, 231]}}, +{"id": 4716, "name": "Redwoods", "description": "Redwoods, or Sequoioideae, are a subspecies of coniferous trees that contain some of the largest trees in the world. Redwoods are native to the coastal regions of the U.S. states of California and Oregon.", "links": {"website": ["https://en.wikipedia.org/wiki/Sequoioideae"]}, "path": {"182-258, T": [[819, 888], [819, 883], [815, 880], [816, 861], [821, 851], [823, 857], [829, 846], [834, 861], [833, 877], [831, 883], [830, 890]]}, "center": {"182-258, T": [824, 875]}}, +{"id": 4717, "name": "Netherlands", "description": "The country of the Netherlands as it appears on a map, with the flag of the Netherlands as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL", "PlaceEU"], "discord": ["PlaceNL"]}, "path": {"158-258, T": [[-282, 742], [-276, 735], [-274, 732], [-271, 732], [-268, 734], [-269, 737], [-270, 740], [-271, 743], [-274, 745], [-276, 745], [-279, 744]]}, "center": {"158-258, T": [-275, 740]}}, +{"id": 4718, "name": "the original starwalker", "description": "this r/place pisses me off", "links": {}, "path": {"250-258, T": [[300, 956], [305, 951], [311, 957], [308, 959], [308, 963], [310, 964], [311, 965], [306, 966], [306, 961], [305, 960], [304, 965], [300, 966], [301, 964], [302, 960]]}, "center": {"250-258, T": [306, 957]}}, +{"id": 4719, "name": "Rapturrs", "description": "Name and Minecraft character of the Spanish streamer Rapturss, which includes an illustration of a pizza, representative symbol of his Twitch channel and important within his community for the same reason.", "links": {"website": ["https://www.twitch.tv/rapturrs", "https://twitter.com/rapturrs?s=20"], "discord": ["rapturs"]}, "path": {"242-259, T": [[-253, 925], [-225, 925], [-225, 931], [-224, 931], [-224, 935], [-238, 935], [-238, 939], [-250, 939], [-250, 930], [-253, 930]]}, "center": {"242-259, T": [-243, 931]}}, {"id": 4720, "name": "TheKller´s Twitch Sub Badge", "description": "Twitch streamer \"TheKller,\" also known as Klör, made his mark with his community on Sunday, July 23rd, at 7 PM, by introducing his Sub-Badge. They defended it until midnight when the Microsoft Windows XP Taskbar deviously erased them. Even the attacks from Papaplatte and XQC couldn't destroy this amazing logo, and it even witnessed the attempted destruction of France.", "links": {"website": ["https://www.twitch.tv/thekller"], "discord": ["cvGZrTS"]}, "path": {"156-164": [[-125, 956], [-74, 956], [-74, 999], [-125, 999]]}, "center": {"156-164": [-99, 978]}}, -{"id": 4721, "name": "Contiguous United States", "description": "A map representing the Contiguous 48 states of the United States located in North America.", "links": {}, "path": {"172-258": [[869, 788], [868, 789], [868, 793], [867, 794], [867, 797], [866, 798], [867, 799], [866, 800], [866, 801], [865, 802], [865, 804], [864, 805], [864, 825], [866, 827], [865, 828], [865, 829], [866, 830], [866, 834], [867, 835], [867, 837], [873, 843], [873, 844], [877, 848], [881, 848], [882, 849], [883, 849], [884, 850], [885, 850], [887, 852], [889, 852], [890, 853], [894, 853], [895, 854], [900, 854], [901, 855], [902, 855], [903, 856], [904, 856], [910, 862], [911, 862], [913, 860], [915, 860], [917, 862], [917, 863], [918, 864], [918, 865], [919, 866], [919, 867], [922, 870], [923, 870], [924, 869], [924, 868], [929, 863], [931, 863], [932, 862], [935, 862], [936, 861], [937, 862], [938, 862], [939, 861], [940, 861], [941, 862], [947, 862], [948, 861], [949, 861], [950, 862], [952, 862], [953, 861], [951, 859], [951, 858], [956, 858], [957, 857], [958, 857], [959, 858], [961, 858], [962, 859], [964, 859], [965, 858], [968, 858], [969, 859], [970, 859], [971, 860], [970, 861], [971, 862], [971, 863], [972, 864], [972, 865], [975, 868], [975, 869], [976, 870], [978, 871], [979, 871], [980, 870], [980, 864], [979, 863], [979, 862], [978, 861], [978, 860], [977, 859], [977, 857], [975, 855], [975, 853], [974, 852], [975, 851], [975, 850], [976, 849], [976, 847], [979, 844], [979, 843], [983, 839], [983, 838], [984, 837], [984, 836], [986, 834], [986, 833], [985, 832], [985, 831], [983, 829], [983, 828], [984, 828], [985, 827], [985, 824], [984, 823], [986, 821], [986, 819], [987, 819], [989, 817], [989, 816], [992, 813], [993, 813], [994, 812], [996, 810], [995, 809], [994, 810], [993, 810], [992, 809], [992, 807], [993, 806], [993, 805], [998, 800], [998, 799], [997, 798], [997, 797], [995, 795], [995, 792], [993, 790], [992, 790], [991, 791], [990, 791], [989, 792], [989, 793], [988, 794], [988, 796], [987, 797], [987, 801], [986, 801], [985, 802], [982, 802], [981, 803], [980, 803], [977, 806], [977, 808], [975, 810], [973, 810], [971, 812], [971, 813], [970, 814], [969, 814], [967, 816], [967, 817], [966, 817], [965, 818], [963, 818], [963, 817], [964, 816], [964, 815], [965, 814], [965, 813], [964, 812], [964, 811], [963, 810], [962, 810], [962, 808], [959, 805], [957, 805], [953, 809], [953, 814], [954, 815], [954, 817], [953, 818], [952, 817], [952, 809], [953, 808], [953, 806], [954, 806], [955, 805], [960, 805], [961, 804], [960, 803], [958, 803], [957, 802], [952, 802], [951, 803], [948, 800], [947, 801], [946, 801], [945, 802], [944, 802], [943, 803], [942, 803], [942, 802], [943, 801], [944, 801], [945, 800], [946, 800], [947, 799], [946, 798], [941, 798], [940, 797], [937, 797], [936, 796], [935, 796], [932, 793], [931, 794], [931, 795], [908, 795], [907, 794], [901, 794], [900, 793], [893, 793], [892, 792], [891, 792], [890, 791], [885, 791], [884, 790], [880, 790], [875, 789], [874, 788], [872, 788], [871, 789], [870, 788]]}, "center": {"172-258": [921, 828]}}, -{"id": 4722, "name": "Protea", "description": "Protea is a genus of South African flowering plants, also called sugarbushes. Considered a national symbol of South Africa.", "links": {"subreddit": ["southafrica"]}, "path": {"250-258": [[-1340, -631], [-1339, -632], [-1339, -633], [-1340, -633], [-1341, -633], [-1342, -634], [-1343, -637], [-1344, -639], [-1343, -640], [-1343, -643], [-1344, -643], [-1344, -645], [-1345, -645], [-1345, -646], [-1343, -643], [-1342, -643], [-1341, -643], [-1341, -645], [-1341, -646], [-1342, -646], [-1342, -647], [-1340, -644], [-1339, -645], [-1338, -647], [-1338, -648], [-1337, -645], [-1336, -644], [-1335, -644], [-1335, -646], [-1334, -646], [-1334, -647], [-1335, -644], [-1333, -643], [-1332, -643], [-1332, -644], [-1332, -645], [-1331, -645], [-1333, -642], [-1333, -640], [-1333, -638], [-1332, -639], [-1333, -637], [-1334, -635], [-1334, -634], [-1335, -634], [-1337, -634], [-1338, -633], [-1337, -632], [-1336, -631]]}, "center": {"250-258": [-1338, -639]}}, -{"id": 4723, "name": "Satou Kazuma", "description": "The main character of Konosuba", "links": {"website": ["https://en.wikipedia.org/wiki/Kazuma_Satou"], "subreddit": ["Konosuba"], "discord": ["konosuba"]}, "path": {"250-258": [[268, -886], [272, -886], [272, -876], [268, -876]]}, "center": {"250-258": [270, -881]}}, -{"id": 4724, "name": "Mapa del Perú", "description": "Perú es un país de américa de sur. Aquí nos muestra sus tres regiones costa, sierra y selva.", "links": {}, "path": {"190-258": [[-666, -816], [-671, -805], [-680, -809], [-693, -821], [-697, -833], [-703, -841], [-703, -848], [-696, -854], [-694, -853], [-694, -849], [-692, -853], [-689, -854], [-684, -861], [-678, -853], [-670, -852], [-669, -846], [-678, -840], [-678, -836], [-670, -832], [-667, -830], [-666, -822], [-667, -819]]}, "center": {"190-258": [-678, -823]}}, -{"id": 4725, "name": "My small green cactus", "description": "This cactus is a reference to the popular german song \"Mein kleiner grüner Kaktus\", composed by Bert Reisfeld and Rolf Marbot and recorded in 1934 by Comedian Harmonists.", "links": {"website": ["https://de.wikipedia.org/wiki/Mein_kleiner_gr%C3%BCner_Kaktus"]}, "path": {"250-258": [[1241, -567], [1241, -551], [1253, -551], [1253, -570], [1241, -570]]}, "center": {"250-258": [1247, -560]}}, -{"id": 4726, "name": "Brilett", "description": "Holaa, soy Brianna! Streamer y creadora de contenido en Twitch, tiktok y YouTube!", "links": {"website": ["https://www.twitch.tv/brilett"]}, "path": {"250-258": [[-998, -214], [-998, -223], [-977, -223], [-977, -214]]}, "center": {"250-258": [-987, -218]}}, -{"id": 4727, "name": "Khuni_UwU", "description": "Mexican streamer living in spain <3 \nshe love so much palomitas con catsup <3", "links": {"website": ["https://www.twitch.tv/khuni_uwu"], "subreddit": ["Khuni"], "discord": ["j7Wq67C7Gv"]}, "path": {"203-258": [[-523, 595], [-523, 605], [-522, 605], [-522, 606], [-518, 606], [-518, 605], [-502, 605], [-502, 595]]}, "center": {"203-258": [-513, 600]}}, -{"id": 4728, "name": "Flag of South Korea", "description": "National Flag of South Korea", "links": {"subreddit": ["southkorea"]}, "path": {"250-258": [[-1265, 36], [-1254, 36], [-1254, 46], [-1268, 46], [-1266, 37]]}, "center": {"250-258": [-1261, 41]}}, -{"id": 4729, "name": "IamCristinini", "description": "IamCristinini es una streamer, presentadora y actriz de doblaje española. Es la streamer española con más seguidores de Twitch (3,2 millones). Este es el pequeño rincón que la familia Ninier creó. Están dibujados la cabeza de su skin en Tortillaland, y su nombre, dividido en dos, \"Cristi\" (hipocorístico de Cristina) y \"Nini\" (que es el también el nombre de la mascota del canal).\n\nDurante su primera noche, resistió cualquier ambición expansionista de otros dibujos y defendieron con ahínco la bandera de Alemania. Llegaron al final oficial del Rplace, aunque en el último momento, fue devorado por el Puente Japonés de Monet. Tuvimos que buscar un nuevo rincón, y en la última hora, pudimos dibujar a Nini antes del final definitivo.\n\nIamCristinini is a Spanish streamer, presenter and voice actress. She is the biggest Twitch streamer of Spain (3.2 million of followers). This is the little corner the Ninier family created. We draw the head of her skin in Tortillaland (Minecraft series of streamers from Spain and Latin America), and her name, divided into two, \"Cristi\" (Cristina's hypocoristic) and \"Nini\" (which is also the name of the channel's mascot).\n\nDuring their first night, we resisted any expansionist ambitions of other drawings and staunchly defended the flag of Germany. They reached the official end of the Rplace, although at the last moment, he was swallowed by Monet's Japanese Bridge. We had to find a new place, and, in the last hour, we could draw Nini before the Whiteout", "links": {"website": ["https://twitch.tv/iamcristinini"], "subreddit": ["IamCristinini"]}, "path": {"157-251": [[-693, 833], [-711, 834], [-711, 814], [-689, 814], [-689, 834], [-711, 834]], "252-259": [[-1184, 302], [-1195, 302], [-1195, 291], [-1184, 291]]}, "center": {"157-251": [-700, 824], "252-259": [-1189, 297]}}, +{"id": 4721, "name": "Contiguous United States", "description": "A map representing the Contiguous 48 states of the United States located in North America.", "links": {}, "path": {"172-258, T": [[869, 788], [868, 789], [868, 793], [867, 794], [867, 797], [866, 798], [867, 799], [866, 800], [866, 801], [865, 802], [865, 804], [864, 805], [864, 825], [866, 827], [865, 828], [865, 829], [866, 830], [866, 834], [867, 835], [867, 837], [873, 843], [873, 844], [877, 848], [881, 848], [882, 849], [883, 849], [884, 850], [885, 850], [887, 852], [889, 852], [890, 853], [894, 853], [895, 854], [900, 854], [901, 855], [902, 855], [903, 856], [904, 856], [910, 862], [911, 862], [913, 860], [915, 860], [917, 862], [917, 863], [918, 864], [918, 865], [919, 866], [919, 867], [922, 870], [923, 870], [924, 869], [924, 868], [929, 863], [931, 863], [932, 862], [935, 862], [936, 861], [937, 862], [938, 862], [939, 861], [940, 861], [941, 862], [947, 862], [948, 861], [949, 861], [950, 862], [952, 862], [953, 861], [951, 859], [951, 858], [956, 858], [957, 857], [958, 857], [959, 858], [961, 858], [962, 859], [964, 859], [965, 858], [968, 858], [969, 859], [970, 859], [971, 860], [970, 861], [971, 862], [971, 863], [972, 864], [972, 865], [975, 868], [975, 869], [976, 870], [978, 871], [979, 871], [980, 870], [980, 864], [979, 863], [979, 862], [978, 861], [978, 860], [977, 859], [977, 857], [975, 855], [975, 853], [974, 852], [975, 851], [975, 850], [976, 849], [976, 847], [979, 844], [979, 843], [983, 839], [983, 838], [984, 837], [984, 836], [986, 834], [986, 833], [985, 832], [985, 831], [983, 829], [983, 828], [984, 828], [985, 827], [985, 824], [984, 823], [986, 821], [986, 819], [987, 819], [989, 817], [989, 816], [992, 813], [993, 813], [994, 812], [996, 810], [995, 809], [994, 810], [993, 810], [992, 809], [992, 807], [993, 806], [993, 805], [998, 800], [998, 799], [997, 798], [997, 797], [995, 795], [995, 792], [993, 790], [992, 790], [991, 791], [990, 791], [989, 792], [989, 793], [988, 794], [988, 796], [987, 797], [987, 801], [986, 801], [985, 802], [982, 802], [981, 803], [980, 803], [977, 806], [977, 808], [975, 810], [973, 810], [971, 812], [971, 813], [970, 814], [969, 814], [967, 816], [967, 817], [966, 817], [965, 818], [963, 818], [963, 817], [964, 816], [964, 815], [965, 814], [965, 813], [964, 812], [964, 811], [963, 810], [962, 810], [962, 808], [959, 805], [957, 805], [953, 809], [953, 814], [954, 815], [954, 817], [953, 818], [952, 817], [952, 809], [953, 808], [953, 806], [954, 806], [955, 805], [960, 805], [961, 804], [960, 803], [958, 803], [957, 802], [952, 802], [951, 803], [948, 800], [947, 801], [946, 801], [945, 802], [944, 802], [943, 803], [942, 803], [942, 802], [943, 801], [944, 801], [945, 800], [946, 800], [947, 799], [946, 798], [941, 798], [940, 797], [937, 797], [936, 796], [935, 796], [932, 793], [931, 794], [931, 795], [908, 795], [907, 794], [901, 794], [900, 793], [893, 793], [892, 792], [891, 792], [890, 791], [885, 791], [884, 790], [880, 790], [875, 789], [874, 788], [872, 788], [871, 789], [870, 788]]}, "center": {"172-258, T": [921, 828]}}, +{"id": 4722, "name": "Protea", "description": "Protea is a genus of South African flowering plants, also called sugarbushes. Considered a national symbol of South Africa.", "links": {"subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1340, -631], [-1339, -632], [-1339, -633], [-1340, -633], [-1341, -633], [-1342, -634], [-1343, -637], [-1344, -639], [-1343, -640], [-1343, -643], [-1344, -643], [-1344, -645], [-1345, -645], [-1345, -646], [-1343, -643], [-1342, -643], [-1341, -643], [-1341, -645], [-1341, -646], [-1342, -646], [-1342, -647], [-1340, -644], [-1339, -645], [-1338, -647], [-1338, -648], [-1337, -645], [-1336, -644], [-1335, -644], [-1335, -646], [-1334, -646], [-1334, -647], [-1335, -644], [-1333, -643], [-1332, -643], [-1332, -644], [-1332, -645], [-1331, -645], [-1333, -642], [-1333, -640], [-1333, -638], [-1332, -639], [-1333, -637], [-1334, -635], [-1334, -634], [-1335, -634], [-1337, -634], [-1338, -633], [-1337, -632], [-1336, -631]]}, "center": {"250-258, T": [-1338, -639]}}, +{"id": 4723, "name": "Satou Kazuma", "description": "The main character of Konosuba", "links": {"website": ["https://en.wikipedia.org/wiki/Kazuma_Satou"], "subreddit": ["Konosuba"], "discord": ["konosuba"]}, "path": {"250-258, T": [[268, -886], [272, -886], [272, -876], [268, -876]]}, "center": {"250-258, T": [270, -881]}}, +{"id": 4724, "name": "Mapa del Perú", "description": "Perú es un país de américa de sur. Aquí nos muestra sus tres regiones costa, sierra y selva.", "links": {}, "path": {"190-258, T": [[-666, -816], [-671, -805], [-680, -809], [-693, -821], [-697, -833], [-703, -841], [-703, -848], [-696, -854], [-694, -853], [-694, -849], [-692, -853], [-689, -854], [-684, -861], [-678, -853], [-670, -852], [-669, -846], [-678, -840], [-678, -836], [-670, -832], [-667, -830], [-666, -822], [-667, -819]]}, "center": {"190-258, T": [-678, -823]}}, +{"id": 4725, "name": "My small green cactus", "description": "This cactus is a reference to the popular german song \"Mein kleiner grüner Kaktus\", composed by Bert Reisfeld and Rolf Marbot and recorded in 1934 by Comedian Harmonists.", "links": {"website": ["https://de.wikipedia.org/wiki/Mein_kleiner_gr%C3%BCner_Kaktus"]}, "path": {"250-258, T": [[1241, -567], [1241, -551], [1253, -551], [1253, -570], [1241, -570]]}, "center": {"250-258, T": [1247, -560]}}, +{"id": 4726, "name": "Brilett", "description": "Holaa, soy Brianna! Streamer y creadora de contenido en Twitch, tiktok y YouTube!", "links": {"website": ["https://www.twitch.tv/brilett"]}, "path": {"250-258, T": [[-998, -214], [-998, -223], [-977, -223], [-977, -214]]}, "center": {"250-258, T": [-987, -218]}}, +{"id": 4727, "name": "Khuni_UwU", "description": "Mexican streamer living in spain <3 \nshe love so much palomitas con catsup <3", "links": {"website": ["https://www.twitch.tv/khuni_uwu"], "subreddit": ["Khuni"], "discord": ["j7Wq67C7Gv"]}, "path": {"203-258, T": [[-523, 595], [-523, 605], [-522, 605], [-522, 606], [-518, 606], [-518, 605], [-502, 605], [-502, 595]]}, "center": {"203-258, T": [-513, 600]}}, +{"id": 4728, "name": "Flag of South Korea", "description": "National Flag of South Korea", "links": {"subreddit": ["southkorea"]}, "path": {"250-258, T": [[-1265, 36], [-1254, 36], [-1254, 46], [-1268, 46], [-1266, 37]]}, "center": {"250-258, T": [-1261, 41]}}, +{"id": 4729, "name": "IamCristinini", "description": "IamCristinini es una streamer, presentadora y actriz de doblaje española. Es la streamer española con más seguidores de Twitch (3,2 millones). Este es el pequeño rincón que la familia Ninier creó. Están dibujados la cabeza de su skin en Tortillaland, y su nombre, dividido en dos, \"Cristi\" (hipocorístico de Cristina) y \"Nini\" (que es el también el nombre de la mascota del canal).\n\nDurante su primera noche, resistió cualquier ambición expansionista de otros dibujos y defendieron con ahínco la bandera de Alemania. Llegaron al final oficial del Rplace, aunque en el último momento, fue devorado por el Puente Japonés de Monet. Tuvimos que buscar un nuevo rincón, y en la última hora, pudimos dibujar a Nini antes del final definitivo.\n\nIamCristinini is a Spanish streamer, presenter and voice actress. She is the biggest Twitch streamer of Spain (3.2 million of followers). This is the little corner the Ninier family created. We draw the head of her skin in Tortillaland (Minecraft series of streamers from Spain and Latin America), and her name, divided into two, \"Cristi\" (Cristina's hypocoristic) and \"Nini\" (which is also the name of the channel's mascot).\n\nDuring their first night, we resisted any expansionist ambitions of other drawings and staunchly defended the flag of Germany. They reached the official end of the Rplace, although at the last moment, he was swallowed by Monet's Japanese Bridge. We had to find a new place, and, in the last hour, we could draw Nini before the Whiteout", "links": {"website": ["https://twitch.tv/iamcristinini"], "subreddit": ["IamCristinini"]}, "path": {"252-259": [[-1184, 302], [-1195, 302], [-1195, 291], [-1184, 291]], "157-251, T": [[-693, 833], [-711, 834], [-711, 814], [-689, 814], [-689, 834], [-711, 834]]}, "center": {"252-259": [-1189, 297], "157-251, T": [-700, 824]}}, {"id": 4730, "name": "ReddishTheBest's Minecraft Skin", "description": "The face of Minecraft player and developer, ReddishTheBest. Made by ReddishTheBest and two of his friends.", "links": {}, "path": {"5": [[153, -60], [162, -60], [162, -51], [153, -51]]}, "center": {"5": [158, -55]}}, -{"id": 4731, "name": "Lucky Luke", "description": "Lucky Luke is a famous Belgian bande dessinée character created by Morris. He is known as the man who shoots faster than his shadow. Lucky Luke is always chasing the brother Dalton among other adventures in the American Midwest, with his faithful steed Jolly Jumper.", "links": {"website": ["https://en.wikipedia.org/wiki/Lucky_Luke"], "subreddit": ["Belgium", "Belgium2", "BELGICA", "placeBE"], "discord": ["Belgium"]}, "path": {"200-258": [[812, 506], [795, 506], [795, 537], [816, 537], [816, 539], [820, 539], [820, 506]]}, "center": {"200-258": [808, 523]}}, -{"id": 4732, "name": "ecuador chiquito", "description": "ecuador esta en todas partes.", "links": {"subreddit": ["ecuador"], "discord": ["VvuDsdUefq"]}, "path": {"250-258": [[500, 89], [500, 97], [625, 96], [626, 90]]}, "center": {"250-258": [504, 93]}}, -{"id": 4733, "name": "A smaller Violet Evergarden art", "description": "An anime by Kyoto Animation. The story follows Violet Evergarden's journey of reintegrating back into society after the war is over and her search for her life's purpose now that she is no longer a soldier in order to understand the last words her mentor and guardian, Major Gilbert, had told her: \"I love you.\"", "links": {"website": ["https://violet-evergarden.fandom.com/wiki/Violet_Evergarden_Wikia"], "subreddit": ["VioletEvergarden"]}, "path": {"250-258": [[-362, -969], [-344, -969], [-344, -949], [-362, -949]]}, "center": {"250-258": [-353, -959]}}, +{"id": 4731, "name": "Lucky Luke", "description": "Lucky Luke is a famous Belgian bande dessinée character created by Morris. He is known as the man who shoots faster than his shadow. Lucky Luke is always chasing the brother Dalton among other adventures in the American Midwest, with his faithful steed Jolly Jumper.", "links": {"website": ["https://en.wikipedia.org/wiki/Lucky_Luke"], "subreddit": ["Belgium", "Belgium2", "BELGICA", "placeBE"], "discord": ["Belgium"]}, "path": {"200-258, T": [[812, 506], [795, 506], [795, 537], [816, 537], [816, 539], [820, 539], [820, 506]]}, "center": {"200-258, T": [808, 523]}}, +{"id": 4732, "name": "ecuador chiquito", "description": "ecuador esta en todas partes.", "links": {"subreddit": ["ecuador"], "discord": ["VvuDsdUefq"]}, "path": {"250-258, T": [[500, 89], [500, 97], [625, 96], [626, 90]]}, "center": {"250-258, T": [504, 93]}}, +{"id": 4733, "name": "A smaller Violet Evergarden art", "description": "An anime by Kyoto Animation. The story follows Violet Evergarden's journey of reintegrating back into society after the war is over and her search for her life's purpose now that she is no longer a soldier in order to understand the last words her mentor and guardian, Major Gilbert, had told her: \"I love you.\"", "links": {"website": ["https://violet-evergarden.fandom.com/wiki/Violet_Evergarden_Wikia"], "subreddit": ["VioletEvergarden"]}, "path": {"250-258, T": [[-362, -969], [-344, -969], [-344, -949], [-362, -949]]}, "center": {"250-258, T": [-353, -959]}}, {"id": 4734, "name": "SKZOO", "description": "SKZOO is a STRAY KIDS project where each of its members has a different character\n\nBang Chan as a wolf - \"Wolf Chan\"\nLee Know as a rabbit - \"Leebit\"\nChangbin as a dwaekki (pig/rabbit hybrid) - \"DWAEKKI\"\nHyunjin as a ferret - \"Jiniret\"\nHan as a quokka - \"HAN QUOKKA\"\nFelix as a chick - \"BbokAri\"\nSeungmin as a puppy - \"PuppyM\"\nI.N. as a fennec fox - \"FoxI.Ny\"", "links": {}, "path": {"194-208": [[304, 717], [304, 736], [313, 736], [313, 717]]}, "center": {"194-208": [309, 727]}}, -{"id": 4735, "name": "Don Chan from Taiko no Tatsujin", "description": "The face of Don Chan, a character in the rhythm games Taiko no Tatsujin. he isn't bolivian and has nothing with them, Bolivia just let the drawing stay on their flag", "links": {"subreddit": ["taikonotatsujin"]}, "path": {"250-258": [[252, -42], [254, -42], [248, -37], [253, -32], [258, -37], [257, -40], [256, -41], [250, -41], [249, -40], [249, -34], [250, -33], [256, -33], [257, -34]]}, "center": {"250-258": [256, -39]}}, -{"id": 4736, "name": "SKZOO (second version)", "description": "SKZOO is a STRAY KIDS project where each of its members has a different character\n\nLee Know as a rabbit - \"Leebit\"\nChangbin as a dwaekki (pig/rabbit hybrid) - \"DWAEKKI\"\nHan as a quokka - \"HAN QUOKKA\"\nFelix as a chick - \"BbokAri\"", "links": {}, "path": {"216-258": [[158, 698], [158, 689], [167, 689], [167, 698]]}, "center": {"216-258": [163, 694]}}, -{"id": 4737, "name": "NoniGamer", "description": "Es un youtuber español que sube gameplays de Minecraft a su canal con la finalidad de sacar una sonrisa a su publico inicio su canal el día, mes y año 13 de Marzo de 2014 sobre la Inauguración y primeras impresiones de Titanfall. Hace mucho tiempo que dejo esos juegos atrás en estos momentos su canal se centra en Minecraft. Fue Aceptado en Surviland 3 el día 26 de Mayo de 2016 y inicio su canal el día 27 de enero de 2014.", "links": {"website": ["https://www.youtube.com/user/NoniGamer", "https://www.twitch.tv/Noni"]}, "path": {"250-258": [[231, -1], [240, -1], [240, 8], [231, 8]]}, "center": {"250-258": [236, 4]}}, -{"id": 4738, "name": "Polaroid", "description": "A Polaroid featuring the ionic rainbow stripes of the company's logo, and as a homage to new 600 Film packaging.\n\nIt was originally made and kept by r/polaroid but got overwritten, fortunately an alliance was formed with r/inscryption (who built the Stoat) and placed it back on the board with their little wizard holding it, it was then preserved by both communities <3", "links": {"subreddit": ["polaroid", "inscryption"]}, "path": {"209-258": [[-1007, -324], [-999, -324], [-999, -315], [-1007, -315]]}, "center": {"209-258": [-1003, -319]}}, -{"id": 4739, "name": "Spiderchama", "description": "A depitction of Akai Haato, also known as Haachama by fans, as a spider. The image comes from an art stream by another Hololive member, Nanashi Mumei, where she drew Hololive members in weird, creepy forms.\n\nThe choice of a spider to represent Haachama can be explained by her very peculiar relationship to spiders.", "links": {"website": ["https://www.youtube.com/channel/UC1CfXB_kRs3C-zaeTG3oGyg"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"212-258": [[1304, -828], [1303, -827], [1301, -825], [1300, -822], [1297, -821], [1296, -815], [1295, -811], [1295, -809], [1294, -808], [1293, -806], [1297, -806], [1300, -803], [1302, -803], [1303, -806], [1304, -808], [1306, -809], [1307, -810], [1306, -811], [1307, -813], [1308, -815], [1310, -815], [1310, -818], [1315, -818], [1315, -819], [1316, -819], [1316, -820], [1320, -820], [1322, -820], [1322, -819], [1323, -819], [1323, -818], [1325, -818], [1322, -821], [1320, -822], [1319, -822], [1319, -823], [1318, -824], [1318, -826], [1318, -827], [1318, -828], [1318, -829], [1315, -829], [1315, -831], [1314, -832], [1313, -832], [1311, -830], [1307, -831], [1305, -829]]}, "center": {"212-258": [1309, -824]}}, +{"id": 4735, "name": "Don Chan from Taiko no Tatsujin", "description": "The face of Don Chan, a character in the rhythm games Taiko no Tatsujin. he isn't bolivian and has nothing with them, Bolivia just let the drawing stay on their flag", "links": {"subreddit": ["taikonotatsujin"]}, "path": {"250-258, T": [[252, -42], [254, -42], [248, -37], [253, -32], [258, -37], [257, -40], [256, -41], [250, -41], [249, -40], [249, -34], [250, -33], [256, -33], [257, -34]]}, "center": {"250-258, T": [256, -39]}}, +{"id": 4736, "name": "SKZOO (second version)", "description": "SKZOO is a STRAY KIDS project where each of its members has a different character\n\nLee Know as a rabbit - \"Leebit\"\nChangbin as a dwaekki (pig/rabbit hybrid) - \"DWAEKKI\"\nHan as a quokka - \"HAN QUOKKA\"\nFelix as a chick - \"BbokAri\"", "links": {}, "path": {"216-258, T": [[158, 698], [158, 689], [167, 689], [167, 698]]}, "center": {"216-258, T": [163, 694]}}, +{"id": 4737, "name": "NoniGamer", "description": "Es un youtuber español que sube gameplays de Minecraft a su canal con la finalidad de sacar una sonrisa a su publico inicio su canal el día, mes y año 13 de Marzo de 2014 sobre la Inauguración y primeras impresiones de Titanfall. Hace mucho tiempo que dejo esos juegos atrás en estos momentos su canal se centra en Minecraft. Fue Aceptado en Surviland 3 el día 26 de Mayo de 2016 y inicio su canal el día 27 de enero de 2014.", "links": {"website": ["https://www.youtube.com/user/NoniGamer", "https://www.twitch.tv/Noni"]}, "path": {"250-258, T": [[231, -1], [240, -1], [240, 8], [231, 8]]}, "center": {"250-258, T": [236, 4]}}, +{"id": 4738, "name": "Polaroid", "description": "A Polaroid featuring the ionic rainbow stripes of the company's logo, and as a homage to new 600 Film packaging.\n\nIt was originally made and kept by r/polaroid but got overwritten, fortunately an alliance was formed with r/inscryption (who built the Stoat) and placed it back on the board with their little wizard holding it, it was then preserved by both communities <3", "links": {"subreddit": ["polaroid", "inscryption"]}, "path": {"209-258, T": [[-1007, -324], [-999, -324], [-999, -315], [-1007, -315]]}, "center": {"209-258, T": [-1003, -319]}}, +{"id": 4739, "name": "Spiderchama", "description": "A depitction of Akai Haato, also known as Haachama by fans, as a spider. The image comes from an art stream by another Hololive member, Nanashi Mumei, where she drew Hololive members in weird, creepy forms.\n\nThe choice of a spider to represent Haachama can be explained by her very peculiar relationship to spiders.", "links": {"website": ["https://www.youtube.com/channel/UC1CfXB_kRs3C-zaeTG3oGyg"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"212-258, T": [[1304, -828], [1303, -827], [1301, -825], [1300, -822], [1297, -821], [1296, -815], [1295, -811], [1295, -809], [1294, -808], [1293, -806], [1297, -806], [1300, -803], [1302, -803], [1303, -806], [1304, -808], [1306, -809], [1307, -810], [1306, -811], [1307, -813], [1308, -815], [1310, -815], [1310, -818], [1315, -818], [1315, -819], [1316, -819], [1316, -820], [1320, -820], [1322, -820], [1322, -819], [1323, -819], [1323, -818], [1325, -818], [1322, -821], [1320, -822], [1319, -822], [1319, -823], [1318, -824], [1318, -826], [1318, -827], [1318, -828], [1318, -829], [1315, -829], [1315, -831], [1314, -832], [1313, -832], [1311, -830], [1307, -831], [1305, -829]]}, "center": {"212-258, T": [1309, -824]}}, {"id": 4740, "name": "Duner", "description": "A flower with to petals. The main character of the story \"Blessing\".", "links": {"website": ["https://vk.com/dirty_nisil"], "subreddit": ["dunertale"]}, "path": {"239": [[-338, 959], [-334, 959], [-333, 960], [-330, 960], [-330, 961], [-329, 962], [-329, 968], [-328, 970], [-338, 970], [-338, 965], [-339, 965], [-339, 959]]}, "center": {"239": [-333, 965]}}, {"id": 4741, "name": "iRaphahell's artwork", "description": "From left to right: the Romanian flag with iRaphahell's logo, alongside the logos of Romanian youtubers zaSami and INSANITY.", "links": {"website": ["https://www.youtube.com/@iRaphahell", "https://www.youtube.com/@zaSami", "https://www.youtube.com/@QSanity"]}, "path": {"207": [[1250, 720], [1250, 755], [1368, 755], [1368, 720]]}, "center": {"207": [1309, 738]}}, {"id": 4742, "name": "the Spanish flag", "description": "A small Spanish flag. Spain is a country in southwestern Europe on the Iberian Peninsula,", "links": {"website": ["https://en.wikipedia.org/wiki/Spain"], "subreddit": ["spain"]}, "path": {"245": [[-1212, 9], [-1196, 9], [-1196, 14], [-1212, 14]]}, "center": {"245": [-1204, 12]}}, {"id": 4743, "name": "pedrolodidosorpre", "description": "known as the schizophrenic twitch streamer, since he speaks to himself until no one asks him, he is a 17-year-old Chilean boy, an osu and valorant player with big dreams and a lot of desire, he did this construction alone with a little help from the community of the streamer Arigameplays.\n\nwas removed because of an agreement I had with a community of streamers\n\nbut still my avatar ended up being in the end\n\nPETER IS INDESTRUCTIBLE", "links": {"website": ["https://www.twitch.tv/didosorpre", "https://www.instagram.com/pedrololo6/", "https://twitter.com/pedrolo95416523"]}, "path": {"165-173": [[-591, -520], [-583, -520], [-582, -520], [-582, -511], [-591, -511]]}, "center": {"165-173": [-586, -515]}}, {"id": 4744, "name": "Twice - The Story Begins", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nUnder the protection of the South Korean flag above, r/Twice would start their journey here with Twice's logo; becoming the first of nine attempts at placement on the canvas. This movement around the canvas in the coming days would come to be known as the r/place 2023 Twice Canvas Tour.", "links": {"subreddit": ["Twice"]}, "path": {"51-56": [[104, -16], [116, -16], [116, -6], [104, -6]]}, "center": {"51-56": [110, -11]}}, {"id": 4745, "name": "KOC Foolish", "description": "Foolish (or Foosh as its written) The KOC (King Of Capybara's). This square show's Twitch streamer Foolish_Gamers proposal for him to be The KOC on The QSMP.\nThis tile was collectively created by his community.\n\nAs his catchphrase goes: KOC WILL ROCK!!!\n\n ESO!!", "links": {}, "path": {"131-188": [[21, -502], [4, -500], [4, -525], [22, -525]]}, "center": {"131-188": [13, -513]}}, -{"id": 4746, "name": "Görény", "description": "Görény (Hungarian for \"ferret\") is IceBlueBird's favorite animal.", "links": {"website": ["https://en.wikipedia.org/wiki/Ferret"], "subreddit": ["IceBlueBird"], "discord": ["icebluebird"]}, "path": {"153-188": [[483, 33], [480, 36], [480, 39], [479, 40], [476, 40], [467, 46], [466, 46], [462, 44], [459, 41], [457, 41], [457, 45], [462, 50], [464, 50], [465, 51], [471, 51], [472, 52], [489, 52], [489, 49], [488, 49], [488, 43], [489, 43], [492, 40], [492, 37], [491, 36], [491, 33]], "189-258": [[483, 32], [480, 36], [480, 40], [476, 40], [471, 44], [470, 45], [470, 46], [469, 46], [465, 43], [462, 43], [462, 46], [466, 50], [470, 50], [473, 52], [489, 52], [489, 49], [488, 49], [488, 43], [489, 43], [492, 40], [492, 36], [491, 35], [491, 34], [489, 32]]}, "center": {"153-188": [482, 46], "189-258": [480, 46]}}, -{"id": 4747, "name": "Philadelphia Eagles", "description": "Logo of the Philadelphia Eagles NFL team with a drawing on their Quarterback, Jalen Hurts", "links": {"website": ["https://www.philadelphiaeagles.com/"], "subreddit": ["eagles"]}, "path": {"214-258": [[1000, -1000], [1000, -984], [1033, -984], [1033, -1000]]}, "center": {"214-258": [1017, -992]}}, -{"id": 4748, "name": "Grand Mountain Adventure", "description": "A mountain gondola, similar to those found in ski resorts all over Switzerland.\nThis particular gondola is the (old) logo of Grand Mountain Adventure, an indie skiing game.\nThe game was developed by Toppluva, a small studio consisting of three brothers from Sweden.\n\nIn the game, the player can complete a variety of different challenges on (fictional) skiing resorts from all over the world.\n\nThe game is available on mobile as well as on Steam and the Nintendo Switch.\n\nThe artwork was designed and realised by Avel and the GMA Discord in collaboration with r/placech.", "links": {"website": ["https://www.toppluva.com/GrandMountainAdventure/"], "subreddit": ["GrandMountainAdv"], "discord": ["uHHmRdaQ"]}, "path": {"250-258": [[-506, 798], [-521, 805], [-518, 819], [-506, 817]]}, "center": {"250-258": [-513, 809]}}, -{"id": 4749, "name": "Flag of Northumberland", "description": "Northumberland is the northernmost county of England.", "links": {"website": ["https://en.wikipedia.org/wiki/Northumberland"], "subreddit": ["Northumberland"]}, "path": {"215-258": [[-296, 721], [-296, 718], [-289, 718], [-289, 722], [-296, 722], [-296, 718]]}, "center": {"215-258": [-292, 720]}}, +{"id": 4746, "name": "Görény", "description": "Görény (Hungarian for \"ferret\") is IceBlueBird's favorite animal.", "links": {"website": ["https://en.wikipedia.org/wiki/Ferret"], "subreddit": ["IceBlueBird"], "discord": ["icebluebird"]}, "path": {"153-188": [[483, 33], [480, 36], [480, 39], [479, 40], [476, 40], [467, 46], [466, 46], [462, 44], [459, 41], [457, 41], [457, 45], [462, 50], [464, 50], [465, 51], [471, 51], [472, 52], [489, 52], [489, 49], [488, 49], [488, 43], [489, 43], [492, 40], [492, 37], [491, 36], [491, 33]], "189-258, T": [[483, 32], [480, 36], [480, 40], [476, 40], [471, 44], [470, 45], [470, 46], [469, 46], [465, 43], [462, 43], [462, 46], [466, 50], [470, 50], [473, 52], [489, 52], [489, 49], [488, 49], [488, 43], [489, 43], [492, 40], [492, 36], [491, 35], [491, 34], [489, 32]]}, "center": {"153-188": [482, 46], "189-258, T": [480, 46]}}, +{"id": 4747, "name": "Philadelphia Eagles", "description": "Logo of the Philadelphia Eagles NFL team with a drawing on their Quarterback, Jalen Hurts", "links": {"website": ["https://www.philadelphiaeagles.com/"], "subreddit": ["eagles"]}, "path": {"214-258, T": [[1000, -1000], [1000, -984], [1033, -984], [1033, -1000]]}, "center": {"214-258, T": [1017, -992]}}, +{"id": 4748, "name": "Grand Mountain Adventure", "description": "A mountain gondola, similar to those found in ski resorts all over Switzerland.\nThis particular gondola is the (old) logo of Grand Mountain Adventure, an indie skiing game.\nThe game was developed by Toppluva, a small studio consisting of three brothers from Sweden.\n\nIn the game, the player can complete a variety of different challenges on (fictional) skiing resorts from all over the world.\n\nThe game is available on mobile as well as on Steam and the Nintendo Switch.\n\nThe artwork was designed and realised by Avel and the GMA Discord in collaboration with r/placech.", "links": {"website": ["https://www.toppluva.com/GrandMountainAdventure/"], "subreddit": ["GrandMountainAdv"], "discord": ["uHHmRdaQ"]}, "path": {"250-258, T": [[-506, 798], [-521, 805], [-518, 819], [-506, 817]]}, "center": {"250-258, T": [-513, 809]}}, +{"id": 4749, "name": "Flag of Northumberland", "description": "Northumberland is the northernmost county of England.", "links": {"website": ["https://en.wikipedia.org/wiki/Northumberland"], "subreddit": ["Northumberland"]}, "path": {"215-258, T": [[-296, 721], [-296, 718], [-289, 718], [-289, 722], [-296, 722], [-296, 718]]}, "center": {"215-258, T": [-292, 720]}}, {"id": 4750, "name": "Cross stitching r/place", "description": "Art representing the Cross stitching r/place project - we are embroidering the entire 2022 r/place canvas onto fabric.\n\nThis was our first attempt to make our mark. It went fairly horribly. Hooty tumbled right through us, and there was so much art trying to be established nearby that we had to give up. Also, our design was 1 pixel too tall for the gap. :D We resigned to wait until next expansion.", "links": {"website": ["https://www.xstitchrplace.com/"], "subreddit": ["rplaceCrossStitch"], "discord": ["NKBF48eHmx"]}, "path": {"7-11": [[410, 335], [410, 308], [438, 308], [438, 335]]}, "center": {"7-11": [424, 322]}}, {"id": 4751, "name": "Need Correction 😭💢", "description": "A meme about a tweet attributed to dorontabi. Birth of the sub r/japanesepeopletwitter", "links": {"subreddit": ["japanesepeopletwitter"]}, "path": {"223": [[1275, 209], [1264, 209], [1264, 222], [1275, 222]]}, "center": {"223": [1270, 216]}}, -{"id": 4752, "name": "Flag of Botswana", "description": "Botswana is a landlocked nation in Southern Africa", "links": {"subreddit": ["southafrica"]}, "path": {"250-258": [[-1339, -655], [-1339, -659], [-1334, -659], [-1334, -655]]}, "center": {"250-258": [-1336, -657]}}, -{"id": 4753, "name": "Hector", "description": "HECTOR is a character and NPC in OMORI. He is the beloved pet rock of KEL. The art represents the love for the LGBTQ community and is a memorial to Hectors' past designs which ended up deleted by other creations.", "links": {"subreddit": ["HectorSquad"], "discord": ["fRumrmsP"]}, "path": {"250-258": [[1395, 312], [1379, 312], [1379, 323], [1395, 323]]}, "center": {"250-258": [1387, 318]}}, -{"id": 4754, "name": "Tambo", "description": "Es una cadena peruana de tiendas de conveniencia perteneciente a la familia Lindley.", "links": {}, "path": {"210-258": [[-699, -898], [-699, -879], [-664, -880], [-664, -898]]}, "center": {"210-258": [-682, -889]}}, +{"id": 4752, "name": "Flag of Botswana", "description": "Botswana is a landlocked nation in Southern Africa", "links": {"subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1339, -655], [-1339, -659], [-1334, -659], [-1334, -655]]}, "center": {"250-258, T": [-1336, -657]}}, +{"id": 4753, "name": "Hector", "description": "HECTOR is a character and NPC in OMORI. He is the beloved pet rock of KEL. The art represents the love for the LGBTQ community and is a memorial to Hectors' past designs which ended up deleted by other creations.", "links": {"subreddit": ["HectorSquad"], "discord": ["fRumrmsP"]}, "path": {"250-258, T": [[1395, 312], [1379, 312], [1379, 323], [1395, 323]]}, "center": {"250-258, T": [1387, 318]}}, +{"id": 4754, "name": "Tambo", "description": "Es una cadena peruana de tiendas de conveniencia perteneciente a la familia Lindley.", "links": {}, "path": {"210-258, T": [[-699, -898], [-699, -879], [-664, -880], [-664, -898]]}, "center": {"210-258, T": [-682, -889]}}, {"id": 4755, "name": "Hector", "description": "HECTOR is a character and NPC in OMORI. He is the beloved pet rock of KEL.", "links": {"subreddit": ["HectorSquad"], "discord": ["fRumrmsP"]}, "path": {"191": [[-1224, -303], [-1234, -303], [-1234, -304], [-1235, -304], [-1235, -307], [-1234, -307], [-1234, -308], [-1233, -308], [-1233, -309], [-1232, -309], [-1232, -310], [-1226, -310], [-1226, -309], [-1225, -309], [-1225, -308], [-1224, -308], [-1224, -307], [-1223, -307], [-1223, -304], [-1224, -304]]}, "center": {"191": [-1229, -306]}}, -{"id": 4756, "name": "Minibus", "description": "Minibuses are a common form of transportation in South Africa. They are akin to a hybrid between a taxicab and a bus.", "links": {"subreddit": ["southafrica"]}, "path": {"250-258": [[-1328, -631], [-1328, -632], [-1330, -632], [-1330, -633], [-1332, -632], [-1333, -633], [-1332, -634], [-1332, -633], [-1328, -632], [-1328, -637], [-1326, -638], [-1326, -639], [-1327, -640], [-1317, -638], [-1316, -637], [-1316, -635], [-1315, -635], [-1315, -634], [-1314, -634], [-1314, -633], [-1314, -632], [-1316, -631], [-1317, -632], [-1317, -631], [-1317, -632], [-1325, -632], [-1326, -631], [-1327, -631]]}, "center": {"250-258": [-1323, -635]}}, +{"id": 4756, "name": "Minibus", "description": "Minibuses are a common form of transportation in South Africa. They are akin to a hybrid between a taxicab and a bus.", "links": {"subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1328, -631], [-1328, -632], [-1330, -632], [-1330, -633], [-1332, -632], [-1333, -633], [-1332, -634], [-1332, -633], [-1328, -632], [-1328, -637], [-1326, -638], [-1326, -639], [-1327, -640], [-1317, -638], [-1316, -637], [-1316, -635], [-1315, -635], [-1315, -634], [-1314, -634], [-1314, -633], [-1314, -632], [-1316, -631], [-1317, -632], [-1317, -631], [-1317, -632], [-1325, -632], [-1326, -631], [-1327, -631]]}, "center": {"250-258, T": [-1323, -635]}}, {"id": 4757, "name": "Boykisser (Mini)", "description": "A mini version of the Boykisser built by the r/furry_irl alliance", "links": {"subreddit": ["furry_irl"]}, "path": {"170-229": [[-614, 743], [-614, 739], [-616, 737], [-617, 736], [-620, 736], [-620, 734], [-620, 729], [-621, 728], [-621, 725], [-620, 724], [-620, 723], [-619, 722], [-619, 721], [-618, 720], [-617, 720], [-616, 720], [-615, 719], [-614, 720], [-613, 721], [-612, 723], [-611, 723], [-609, 725], [-604, 720], [-603, 720], [-602, 721], [-601, 722], [-601, 723], [-600, 724], [-600, 729], [-601, 730], [-602, 731], [-601, 732], [-600, 732], [-601, 733], [-602, 734], [-601, 735], [-602, 736], [-604, 736], [-605, 737], [-606, 737], [-606, 738], [-605, 739], [-605, 741], [-604, 742], [-604, 743]]}, "center": {"170-229": [-611, 732]}}, -{"id": 4758, "name": "Dink Donk and a beautiful pepe <3", "description": "This artwork was made with help from mys friends of school , of discord, kerbal space program (community) Thanks for all people help me in this adventure", "links": {"website": ["https://www.twitch.tv/purgblack"], "discord": ["z7wygyFR"]}, "path": {"250-258": [[511, -918], [525, -918], [525, -916], [526, -916], [526, -915], [527, -915], [527, -913], [511, -913]]}, "center": {"250-258": [519, -915]}}, +{"id": 4758, "name": "Dink Donk and a beautiful pepe <3", "description": "This artwork was made with help from mys friends of school , of discord, kerbal space program (community) Thanks for all people help me in this adventure", "links": {"website": ["https://www.twitch.tv/purgblack"], "discord": ["z7wygyFR"]}, "path": {"250-258, T": [[511, -918], [525, -918], [525, -916], [526, -916], [526, -915], [527, -915], [527, -913], [511, -913]]}, "center": {"250-258, T": [519, -915]}}, {"id": 4759, "name": "The first fish", "description": "The first fish on place2023, made by r/PlaceFishCult, a small community dedicated to making small simple fish on r/place", "links": {"subreddit": ["PlaceFishCult"]}, "path": {"1-13": [[309, 142], [310, 143], [311, 142], [312, 143], [311, 142], [312, 141], [311, 142], [310, 141]]}, "center": {"1-13": [310, 142]}}, -{"id": 4760, "name": "ghomerl vs. cmauhin", "description": "\"ghomerl vs. cmauhin\" was an inside joke born out of a Gartic Phone game on the r/AnarchyChess Discord Server on October 31st, 2022. The original prompt, \"The Simpsons vs. The Machines\", was warped by awful handwriting by u/Kapola7, where Homer became ghomerl and Machine became cmauhin. The origins and context were kept secret while posts on the subreddit were made by the Discord users present in the Gartic Phone game featuring ghomerl and cmauhin. This lead to much speculation by others about where they came from. The art pictured is a rendition of the original drawings of ghomerl (green) and cmauhin (blue). The original and renditions were drawn by u/Aggravating-Low-5173.", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"166-177, 187-191": [[706, 873], [720, 873], [720, 867], [706, 867]], "192-258": [[698, 873], [712, 873], [712, 867], [698, 867]]}, "center": {"166-177, 187-191": [713, 870], "192-258": [705, 870]}}, -{"id": 4761, "name": "Nottingham Forest", "description": "The English football team Nottingham Forest. Founded in 1865", "links": {"subreddit": ["nffc"]}, "path": {"250-258": [[-624, -614], [-600, -614], [-600, -592], [-624, -599]]}, "center": {"250-258": [-610, -605]}}, -{"id": 4762, "name": "Dreamcatcher", "description": "Dreamcatcher is a korean K-Pop group know for their idolrock sound.\nThe 7 member girl group has been active since friday january 13th 2017 and consists of JiU, SuA, Siyeon, Handong, Yoohyeon, Dami and Gahyeon.\nThe logo represents their 4th mini album \"The End of Nightmare\".", "links": {"website": ["https://www.youtube.com/channel/UCijULR2sXLutCRBtW3_WEfA", "https://open.spotify.com/artist/5V1qsQHdXNm4ZEZHWvFnqQ"], "subreddit": ["dreamcatcher"]}, "path": {"250-258": [[-118, -876], [-113, -876], [-113, -865], [-118, -865]]}, "center": {"250-258": [-115, -870]}}, -{"id": 4763, "name": "Mima", "description": "An evil spirit with exceptional power and magic who haunts the Hakurei Shrine. She appeared in Touhou 1-3 and 5, being Hell stage 10's boss in the first, the final stage boss in the second, and a playable character in the third and fifth games. Mima is considered the face of Touhou's PC-98 era due to her prominence in those classic games.\n\nShe often gets called \"Mima-sama\" by the fandom, a reference to how she was addressed by Marisa Kirisame, her apprentice at the time. Her being the only playable character of the fifth game Mystic Square to not reappear in the current Windows era of Touhou games has also attracted a cult of fans wishing fervently for her return, that a new Touhou game from ZUN being announced will certainly lead to hype of the spirit coming back \"for sure this time\", even if the evidence or reasons they present of her returning is ridiculous to the point of copium.", "links": {"website": ["https://en.touhouwiki.net/wiki/Mima"], "subreddit": ["touhou", "PC98touhou"], "discord": ["apl"]}, "path": {"250-258": [[-537, 52], [-541, 63], [-539, 65], [-534, 65], [-531, 64], [-529, 62], [-535, 56], [-537, 53], [-540, 58]]}, "center": {"250-258": [-536, 61]}}, -{"id": 4764, "name": "May i take your hat sir?", "description": "This is a meme of where Patrick Star says \"May i take your hat sir?\" 3 times before getting his mouth covered by Squidwards hand.", "links": {"website": ["https://spongebob.fandom.com/wiki/List_of_memes#%22May_I_take_your_hat_sir?%22"]}, "path": {"250-258": [[1469, -48], [1475, -48], [1498, -48], [1498, -53], [1495, -55], [1491, -54], [1490, -56], [1490, -67], [1491, -69], [1491, -72], [1493, -74], [1490, -78], [1485, -73], [1481, -70], [1479, -68], [1476, -64], [1475, -57], [1473, -54], [1469, -54]]}, "center": {"250-258": [1482, -56]}}, +{"id": 4760, "name": "ghomerl vs. cmauhin", "description": "\"ghomerl vs. cmauhin\" was an inside joke born out of a Gartic Phone game on the r/AnarchyChess Discord Server on October 31st, 2022. The original prompt, \"The Simpsons vs. The Machines\", was warped by awful handwriting by u/Kapola7, where Homer became ghomerl and Machine became cmauhin. The origins and context were kept secret while posts on the subreddit were made by the Discord users present in the Gartic Phone game featuring ghomerl and cmauhin. This lead to much speculation by others about where they came from. The art pictured is a rendition of the original drawings of ghomerl (green) and cmauhin (blue). The original and renditions were drawn by u/Aggravating-Low-5173.", "links": {"subreddit": ["AnarchyChess"], "discord": ["anarchychess"]}, "path": {"166-177, 187-191": [[706, 873], [720, 873], [720, 867], [706, 867]], "192-258, T": [[698, 873], [712, 873], [712, 867], [698, 867]]}, "center": {"166-177, 187-191": [713, 870], "192-258, T": [705, 870]}}, +{"id": 4761, "name": "Nottingham Forest", "description": "The English football team Nottingham Forest. Founded in 1865", "links": {"subreddit": ["nffc"]}, "path": {"250-258, T": [[-624, -614], [-600, -614], [-600, -592], [-624, -599]]}, "center": {"250-258, T": [-610, -605]}}, +{"id": 4762, "name": "Dreamcatcher", "description": "Dreamcatcher is a korean K-Pop group know for their idolrock sound.\nThe 7 member girl group has been active since friday january 13th 2017 and consists of JiU, SuA, Siyeon, Handong, Yoohyeon, Dami and Gahyeon.\nThe logo represents their 4th mini album \"The End of Nightmare\".", "links": {"website": ["https://www.youtube.com/channel/UCijULR2sXLutCRBtW3_WEfA", "https://open.spotify.com/artist/5V1qsQHdXNm4ZEZHWvFnqQ"], "subreddit": ["dreamcatcher"]}, "path": {"250-258, T": [[-118, -876], [-113, -876], [-113, -865], [-118, -865]]}, "center": {"250-258, T": [-115, -870]}}, +{"id": 4763, "name": "Mima", "description": "An evil spirit with exceptional power and magic who haunts the Hakurei Shrine. She appeared in Touhou 1-3 and 5, being Hell stage 10's boss in the first, the final stage boss in the second, and a playable character in the third and fifth games. Mima is considered the face of Touhou's PC-98 era due to her prominence in those classic games.\n\nShe often gets called \"Mima-sama\" by the fandom, a reference to how she was addressed by Marisa Kirisame, her apprentice at the time. Her being the only playable character of the fifth game Mystic Square to not reappear in the current Windows era of Touhou games has also attracted a cult of fans wishing fervently for her return, that a new Touhou game from ZUN being announced will certainly lead to hype of the spirit coming back \"for sure this time\", even if the evidence or reasons they present of her returning is ridiculous to the point of copium.", "links": {"website": ["https://en.touhouwiki.net/wiki/Mima"], "subreddit": ["touhou", "PC98touhou"], "discord": ["apl"]}, "path": {"250-258, T": [[-537, 52], [-541, 63], [-539, 65], [-534, 65], [-531, 64], [-529, 62], [-535, 56], [-537, 53], [-540, 58]]}, "center": {"250-258, T": [-536, 61]}}, +{"id": 4764, "name": "May i take your hat sir?", "description": "This is a meme of where Patrick Star says \"May i take your hat sir?\" 3 times before getting his mouth covered by Squidwards hand.", "links": {"website": ["https://spongebob.fandom.com/wiki/List_of_memes#%22May_I_take_your_hat_sir?%22"]}, "path": {"250-258, T": [[1469, -48], [1475, -48], [1498, -48], [1498, -53], [1495, -55], [1491, -54], [1490, -56], [1490, -67], [1491, -69], [1491, -72], [1493, -74], [1490, -78], [1485, -73], [1481, -70], [1479, -68], [1476, -64], [1475, -57], [1473, -54], [1469, -54]]}, "center": {"250-258, T": [1482, -56]}}, {"id": 4765, "name": "TheXanos Sub Badge", "description": "TheXanos is a medium-sized Lithuanian streamer on Twitch. This purple X represents the first month subscription badge in his chat.\nHis community completely deleted Fnatic's art and replaced it with a black plot, with the intention to write his stream's link on it. This plan failed, as they later realized that they didn't have enough space for it.", "links": {"website": ["https://www.twitch.tv/thexanos"], "subreddit": ["xanos"]}, "path": {"147-155": [[672, -659], [681, -659], [681, -649], [672, -649]]}, "center": {"147-155": [677, -654]}}, {"id": 4766, "name": "shadowne face", "description": "the avatar of a youtuber and streamer born in france who is currently spanish", "links": {"website": ["https://www.youtube.com/@Shadoune666"]}, "path": {"222-235": [[-601, -757], [-601, -768], [-584, -768], [-584, -757]]}, "center": {"222-235": [-592, -762]}}, -{"id": 4767, "name": "A-60 and A-200 from Rooms (ROBLOX)", "description": "A-60 and A-200 are the two entities from the ROBLOX horror game Rooms, made by nicorocks5555. The art was made by the rooms wikia server and the art was designed by @Jibanyanlolmeow", "links": {"website": ["https://r-rooms.fandom.com/wiki/Roblox_ROOMS_Wiki"], "discord": ["Y27B6thF"]}, "path": {"198-258": [[421, -883], [441, -883], [439, -865], [425, -865], [423, -872], [425, -865], [423, -872]]}, "center": {"198-258": [431, -874]}}, -{"id": 4768, "name": "Hector", "description": "HECTOR is a character and NPC in OMORI. He is the beloved pet rock of KEL. The art was created thanks to an alliance between Omori fans and the Kazakh discord.", "links": {"subreddit": ["HectorSquad", "Kazakhstan"], "discord": ["FbcRfcvh", "cgb9hJTx"]}, "path": {"162-258": [[-870, 912], [-869, 908], [-864, 905], [-862, 905], [-859, 908], [-857, 909], [-857, 912], [-859, 914], [-868, 914]]}, "center": {"162-258": [-864, 910]}}, -{"id": 4769, "name": "DRONG", "description": "A short for Fildrong, a French Pokémon Youtuber and streamer.\n\nPlaced at first to claim this space and prevent any global attacks on the Mongolmar artwork, it became the focal point of the battles that the Team Sale community had to endure, due to an ex-member wanting to replace the DRNG letters by his pseudonym \"Naga\". He succeded many times, but was ultimately taken over by the end of the event : these mini battles became a running gag as the event went forward.", "links": {"discord": ["fildrong"]}, "path": {"250-258": [[253, -107], [275, -107], [275, -100], [254, -100], [253, -100]]}, "center": {"250-258": [264, -103]}}, +{"id": 4767, "name": "A-60 and A-200 from Rooms (ROBLOX)", "description": "A-60 and A-200 are the two entities from the ROBLOX horror game Rooms, made by nicorocks5555. The art was made by the rooms wikia server and the art was designed by @Jibanyanlolmeow", "links": {"website": ["https://r-rooms.fandom.com/wiki/Roblox_ROOMS_Wiki"], "discord": ["Y27B6thF"]}, "path": {"198-258, T": [[421, -883], [441, -883], [439, -865], [425, -865], [423, -872], [425, -865], [423, -872]]}, "center": {"198-258, T": [431, -874]}}, +{"id": 4768, "name": "Hector", "description": "HECTOR is a character and NPC in OMORI. He is the beloved pet rock of KEL. The art was created thanks to an alliance between Omori fans and the Kazakh discord.", "links": {"subreddit": ["HectorSquad", "Kazakhstan"], "discord": ["FbcRfcvh", "cgb9hJTx"]}, "path": {"162-258, T": [[-870, 912], [-869, 908], [-864, 905], [-862, 905], [-859, 908], [-857, 909], [-857, 912], [-859, 914], [-868, 914]]}, "center": {"162-258, T": [-864, 910]}}, +{"id": 4769, "name": "DRONG", "description": "A short for Fildrong, a French Pokémon Youtuber and streamer.\n\nPlaced at first to claim this space and prevent any global attacks on the Mongolmar artwork, it became the focal point of the battles that the Team Sale community had to endure, due to an ex-member wanting to replace the DRNG letters by his pseudonym \"Naga\". He succeded many times, but was ultimately taken over by the end of the event : these mini battles became a running gag as the event went forward.", "links": {"discord": ["fildrong"]}, "path": {"250-258, T": [[253, -107], [275, -107], [275, -100], [254, -100], [253, -100]]}, "center": {"250-258, T": [264, -103]}}, {"id": 4770, "name": "hidden annoying dog", "description": "he is quite hidden", "links": {}, "path": {"199-247": [[31, 789], [25, 782], [29, 776], [35, 777], [34, 786]]}, "center": {"199-247": [30, 782]}}, -{"id": 4771, "name": "Lucky Block - Minecraft", "description": "Icon for the Lucky Block, a mod for Minecraft that adds a special block into the game. When broken, a random outcome will occur, such as sprouting treasure, inflicting potion effects, producing mobs, etc.", "links": {"website": ["https://www.luckyblockmod.com/"]}, "path": {"250-258": [[1483, -110], [1499, -110], [1500, -93], [1483, -93]]}, "center": {"250-258": [1491, -101]}}, -{"id": 4772, "name": "Pusheen", "description": "Es un webcómic sobre la vida cotidiana de una gata del mismo nombre,​ el cual ha alcanzado gran reconocimiento y popularidad, originario de Canadá\nTambién se volvió el único gato favorito del hombre mas pendejo del mundo, JZP osea yo ;9", "links": {"website": ["https://pusheen.com/"]}, "path": {"250-258": [[-380, -619], [-380, -603], [-356, -603], [-356, -620], [-380, -620], [-381, -603], [-381, -620], [-368, -609]]}, "center": {"250-258": [-363, -613]}}, -{"id": 4773, "name": "Windows tab buttons", "description": "Top right buttons that appear in any windows open tab, can be used to close, minimise and expand the tab in use, here shown in windows XP graphic style", "links": {}, "path": {"250-258": [[1443, -1000], [1443, -984], [1446, -981], [1494, -981], [1498, -984], [1498, -998], [1496, -1000]]}, "center": {"250-258": [1471, -990]}}, +{"id": 4771, "name": "Lucky Block - Minecraft", "description": "Icon for the Lucky Block, a mod for Minecraft that adds a special block into the game. When broken, a random outcome will occur, such as sprouting treasure, inflicting potion effects, producing mobs, etc.", "links": {"website": ["https://www.luckyblockmod.com/"]}, "path": {"250-258, T": [[1483, -110], [1499, -110], [1500, -93], [1483, -93]]}, "center": {"250-258, T": [1491, -101]}}, +{"id": 4772, "name": "Pusheen", "description": "Es un webcómic sobre la vida cotidiana de una gata del mismo nombre,​ el cual ha alcanzado gran reconocimiento y popularidad, originario de Canadá\nTambién se volvió el único gato favorito del hombre mas pendejo del mundo, JZP osea yo ;9", "links": {"website": ["https://pusheen.com/"]}, "path": {"250-258, T": [[-380, -619], [-380, -603], [-356, -603], [-356, -620], [-380, -620], [-381, -603], [-381, -620], [-368, -609]]}, "center": {"250-258, T": [-363, -613]}}, +{"id": 4773, "name": "Windows tab buttons", "description": "Top right buttons that appear in any windows open tab, can be used to close, minimise and expand the tab in use, here shown in windows XP graphic style", "links": {}, "path": {"250-258, T": [[1443, -1000], [1443, -984], [1446, -981], [1494, -981], [1498, -984], [1498, -998], [1496, -1000]]}, "center": {"250-258, T": [1471, -990]}}, {"id": 4774, "name": "VFB Lübeck", "description": "The VFB Lübeck from 1919 e. V., VfB Lübeck for short, is a sports club from Lübeck. He is known nationally above all for his football department.", "links": {"website": ["https://vfb-luebeck.de/"]}, "path": {"236-246": [[-710, 889], [-698, 889], [-698, 895], [-710, 895]]}, "center": {"236-246": [-704, 892]}}, {"id": 4775, "name": "Cardiacs", "description": "Cardiacs is an English rock band that started in 1977. The band is hailed as an influence by bands as diverse as Blur, Faith No More and Radiohead. This icon, alongside the daisy, is a common icon for the Cardiacs; both icons come from the Cardiacs's debut album, A Little Man and a House and the Whole World Window.", "links": {"website": ["https://cardiacs.net"], "subreddit": ["cardiacs"]}, "path": {"252-258": [[-134, -610], [-134, -606], [-124, -606], [-124, -608], [-114, -608], [-114, -606], [-98, -606], [-98, -610]]}, "center": {"252-258": [-112, -608]}}, {"id": 4776, "name": "[KŒRI]WERK", "description": "[KŒRI]WERK\nMildly sweet or rather fiery hot?\nAt [kœri]werk®, the choice is yours! Make a fantastic currywurst your (fantastic) currywurst. You'll get a currywurst made especially for us from 100% veal and a spicy curry sauce developed in-house from the finest ingredients. Then it's your turn. Choose your favorite from 6 different curry spices and complete the curry sausage to your taste.\nThe best: If you want to do without meat, we have an excellent vegan currywurst for you. Try your perfect currywurst now at [kœri]werk®. Your move.", "links": {"website": ["https://www.sw-ka.de/en/hochschulgastronomie/eigenmarken/koeriwerk/"], "subreddit": ["KaIT"]}, "path": {"139-247": [[-558, -358], [-558, -368], [-537, -368], [-537, -358]]}, "center": {"139-247": [-547, -363]}}, -{"id": 4777, "name": "Van cat", "description": "The Van cat is a distinctive landrace (or \"natural breed\") of the domestic cat found around Lake Van in the Eastern Anatolia Region of Turkey.\n\nVan cats are relatively large, have a chalky white coat, sometimes with ruddy coloration on the head and hindquarters, and have blue or amber eyes or have heterochromia (one eye of each colour). The variety has been referred to as \"the swimming cat\", and has been observed to swim in Lake Van.\n\nThe naturally occurring Van cat type is popularly believed to be the basis of the Turkish Van breed, as standardised and recognised by many cat fancier organizations; it has been internationally selectively bred to consistently produce the ruddy head-and-tail colouring pattern on the white coat. However, one of the breed founders' own writings indicate that the four original cats used to found the formal breed came from parts of Turkey other than the Lake Van area. The run-together term \"Turkish Vankedisi\" is confusingly used by some organisations as a name for all-white specimens of the standardised Turkish Van breed.", "links": {}, "path": {"250-258": [[-204, 438], [-205, 409], [-235, 409], [-233, 441]]}, "center": {"250-258": [-219, 424]}}, -{"id": 4778, "name": "MEWO", "description": "The pet cat of OMORI. She is sitting inside MARI's picnic basket, which is used in the game as a save point.\n\"Meow? (Waiting for something to happen?)\"", "links": {"website": ["https://omori.fandom.com/wiki/MEWO"], "subreddit": ["OMORI"]}, "path": {"101-258": [[-266, -251], [-267, -250], [-267, -242], [-268, -241], [-268, -238], [-247, -238], [-247, -235], [-250, -236], [-250, -233], [-246, -233], [-245, -235], [-245, -239], [-249, -241], [-249, -244], [-257, -251], [-258, -251], [-260, -246], [-261, -247], [-265, -251]]}, "center": {"101-258": [-256, -243]}}, -{"id": 4779, "name": "Fiona Gilman Identity V", "description": "Survivor from the 1v4 asymmetrical Horror Game Identity V", "links": {"website": ["http://idv.163.com/"], "subreddit": ["IdentityV"]}, "path": {"250-258": [[1020, 132], [1018, 132], [1019, 140], [1024, 140], [1024, 132]]}, "center": {"250-258": [1021, 136]}}, -{"id": 4780, "name": "Escudo de O'Higgins", "description": "El Club Deportivo O'Higgins, también llamado O'Higgins de Rancagua​ u O'Higgins Fútbol Club,​ es un equipo profesional de la primera división del fútbol chileno, de la ciudad de Rancagua. Fue fundado el 7 de abril de 1955, producto de la fusión de los clubes América y O'Higgins Braden (fusión de los clubes de la Braden y del Instituto O'Higgins). A partir de 2005 pasa a ser una sociedad anónima deportiva, bajo el nombre de Club Deportivo O'Higgins, Sociedad Anónima Deportiva Profesional; desde entonces es administrado por el expresidente de la ANFP Ricardo Abumohor.", "links": {"website": ["https://www.ohigginsfc.cl", "https://es.wikipedia.org/wiki/Club_Deportivo_O%27Higgins"]}, "path": {"250-258": [[-765, -907], [-765, -892], [-759, -886], [-758, -886], [-752, -892], [-752, -907]]}, "center": {"250-258": [-758, -898]}}, +{"id": 4777, "name": "Van cat", "description": "The Van cat is a distinctive landrace (or \"natural breed\") of the domestic cat found around Lake Van in the Eastern Anatolia Region of Turkey.\n\nVan cats are relatively large, have a chalky white coat, sometimes with ruddy coloration on the head and hindquarters, and have blue or amber eyes or have heterochromia (one eye of each colour). The variety has been referred to as \"the swimming cat\", and has been observed to swim in Lake Van.\n\nThe naturally occurring Van cat type is popularly believed to be the basis of the Turkish Van breed, as standardised and recognised by many cat fancier organizations; it has been internationally selectively bred to consistently produce the ruddy head-and-tail colouring pattern on the white coat. However, one of the breed founders' own writings indicate that the four original cats used to found the formal breed came from parts of Turkey other than the Lake Van area. The run-together term \"Turkish Vankedisi\" is confusingly used by some organisations as a name for all-white specimens of the standardised Turkish Van breed.", "links": {}, "path": {"250-258, T": [[-204, 438], [-205, 409], [-235, 409], [-233, 441]]}, "center": {"250-258, T": [-219, 424]}}, +{"id": 4778, "name": "MEWO", "description": "The pet cat of OMORI. She is sitting inside MARI's picnic basket, which is used in the game as a save point.\n\"Meow? (Waiting for something to happen?)\"", "links": {"website": ["https://omori.fandom.com/wiki/MEWO"], "subreddit": ["OMORI"]}, "path": {"101-258, T": [[-266, -251], [-267, -250], [-267, -242], [-268, -241], [-268, -238], [-247, -238], [-247, -235], [-250, -236], [-250, -233], [-246, -233], [-245, -235], [-245, -239], [-249, -241], [-249, -244], [-257, -251], [-258, -251], [-260, -246], [-261, -247], [-265, -251]]}, "center": {"101-258, T": [-256, -243]}}, +{"id": 4779, "name": "Fiona Gilman Identity V", "description": "Survivor from the 1v4 asymmetrical Horror Game Identity V", "links": {"website": ["http://idv.163.com/"], "subreddit": ["IdentityV"]}, "path": {"250-258, T": [[1020, 132], [1018, 132], [1019, 140], [1024, 140], [1024, 132]]}, "center": {"250-258, T": [1021, 136]}}, +{"id": 4780, "name": "Escudo de O'Higgins", "description": "El Club Deportivo O'Higgins, también llamado O'Higgins de Rancagua​ u O'Higgins Fútbol Club,​ es un equipo profesional de la primera división del fútbol chileno, de la ciudad de Rancagua. Fue fundado el 7 de abril de 1955, producto de la fusión de los clubes América y O'Higgins Braden (fusión de los clubes de la Braden y del Instituto O'Higgins). A partir de 2005 pasa a ser una sociedad anónima deportiva, bajo el nombre de Club Deportivo O'Higgins, Sociedad Anónima Deportiva Profesional; desde entonces es administrado por el expresidente de la ANFP Ricardo Abumohor.", "links": {"website": ["https://www.ohigginsfc.cl", "https://es.wikipedia.org/wiki/Club_Deportivo_O%27Higgins"]}, "path": {"250-258, T": [[-765, -907], [-765, -892], [-759, -886], [-758, -886], [-752, -892], [-752, -907]]}, "center": {"250-258, T": [-758, -898]}}, {"id": 4781, "name": "Dorflandschaft bei Morgenbeleuchtung", "description": "\"Dorflandschaft bei Morgenbeleuchtung\" or \"The Lonely Tree\" is a famous painting by Caspar David Friedrich. \n\nIt was painted in 1822 and is another famous painting of the Romantic period.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Lonely_Tree"]}, "path": {"252-258": [[-774, 784], [-661, 783], [-661, 847], [-774, 845]]}, "center": {"252-258": [-697, 815]}}, {"id": 4782, "name": "Quantum Science Logo", "description": "A compact logo of Quantum Science, a Roblox Sci-Fi science \"core\" game based on fictional 80's-90's energy and inventions, one major key aspect of the Quantum Science games being centered around the Dark Matter Reactor seen in several variations of their facilities on Roblox.", "links": {"website": ["https://roblox.com"], "subreddit": ["quantumscience"], "discord": ["qsp"]}, "path": {"211-229": [[1151, 523], [1162, 522], [1162, 524], [1163, 524], [1163, 525], [1164, 526], [1164, 527], [1165, 527], [1166, 530], [1165, 533], [1163, 536], [1162, 538], [1161, 539], [1152, 539], [1150, 536], [1148, 532], [1148, 528], [1151, 524]]}, "center": {"211-229": [1157, 531]}}, -{"id": 4783, "name": "Bónus pig", "description": "The Bónus pig is the mascot for the Icelandic supermarket chain Bónus. It is well-known in Iceland and the Faroe Islands.", "links": {"subreddit": ["nordics", "klakinn"], "discord": ["nordics"]}, "path": {"210": [[8, -313], [8, -309], [17, -309], [17, -313]], "211": [[-26, -282], [-25, -281], [-24, -280], [-23, -280], [-22, -279], [-21, -279], [-20, -280], [-19, -279], [-18, -280], [-17, -281], [-16, -282], [-16, -287], [-17, -287], [-18, -288], [-19, -289], [-22, -289], [-26, -289], [-27, -282], [-27, -279], [-23, -279]], "213-220": [[-27, -289], [-14, -289], [-14, -279], [-16, -279], [-16, -280], [-18, -280], [-18, -279], [-27, -279]], "235-258": [[-27, -291], [-15, -291], [-15, -290], [-14, -290], [-14, -279], [-15, -279], [-16, -279], [-16, -280], [-18, -280], [-18, -279], [-27, -279]]}, "center": {"210": [13, -311], "211": [-22, -284], "213-220": [-22, -284], "235-258": [-21, -285]}}, +{"id": 4783, "name": "Bónus pig", "description": "The Bónus pig is the mascot for the Icelandic supermarket chain Bónus. It is well-known in Iceland and the Faroe Islands.", "links": {"subreddit": ["nordics", "klakinn"], "discord": ["nordics"]}, "path": {"210": [[8, -313], [8, -309], [17, -309], [17, -313]], "211": [[-26, -282], [-25, -281], [-24, -280], [-23, -280], [-22, -279], [-21, -279], [-20, -280], [-19, -279], [-18, -280], [-17, -281], [-16, -282], [-16, -287], [-17, -287], [-18, -288], [-19, -289], [-22, -289], [-26, -289], [-27, -282], [-27, -279], [-23, -279]], "213-220": [[-27, -289], [-14, -289], [-14, -279], [-16, -279], [-16, -280], [-18, -280], [-18, -279], [-27, -279]], "235-258, T": [[-27, -291], [-15, -291], [-15, -290], [-14, -290], [-14, -279], [-15, -279], [-16, -279], [-16, -280], [-18, -280], [-18, -279], [-27, -279]]}, "center": {"210": [13, -311], "211": [-22, -284], "213-220": [-22, -284], "235-258, T": [-21, -285]}}, {"id": 4784, "name": "Jullian Alaphilippe", "description": "Jullian Alaphilippe is a professional french cyclist. he is well known for having worn the yellow jersey for several days during the 2019 tour de france. He also won the world championship title twice.", "links": {"website": ["https://en.wikipedia.org/wiki/Julian_Alaphilippe", "https://en.wikipedia.org/wiki/Tour_de_France"], "subreddit": ["tourdefrance"]}, "path": {"95-109": [[927, -24], [937, -35], [946, -38], [952, -35], [960, -28], [964, -32], [952, -47], [946, -43], [944, -46], [949, -52], [940, -60], [931, -60], [929, -67], [930, -69], [926, -76], [922, -79], [914, -79], [909, -74], [906, -70], [907, -66], [914, -54], [911, -52], [912, -41], [912, -36], [918, -30], [920, -27], [923, -27]]}, "center": {"95-109": [927, -46]}}, -{"id": 4785, "name": "Iris", "description": "World's best dog.", "links": {}, "path": {"250-258": [[1166, 28], [1155, 28], [1155, 23], [1166, 23]]}, "center": {"250-258": [1161, 26]}}, -{"id": 4786, "name": "Galata Tower", "description": "The Galata Tower is an old Genoese tower in the Galata part of the Beyoğlu district of Istanbul, Turkey. Built as a watchtower at the highest point of the (lost) Walls of Galata, the tower is now an exhibition space and museum, and a symbol of Beyoğlu and Istanbul.", "links": {}, "path": {"250-258": [[-233, 444], [-233, 403], [-248, 403], [-249, 444]]}, "center": {"250-258": [-241, 424]}}, +{"id": 4785, "name": "Iris", "description": "World's best dog.", "links": {}, "path": {"250-258, T": [[1166, 28], [1155, 28], [1155, 23], [1166, 23]]}, "center": {"250-258, T": [1161, 26]}}, +{"id": 4786, "name": "Galata Tower", "description": "The Galata Tower is an old Genoese tower in the Galata part of the Beyoğlu district of Istanbul, Turkey. Built as a watchtower at the highest point of the (lost) Walls of Galata, the tower is now an exhibition space and museum, and a symbol of Beyoğlu and Istanbul.", "links": {}, "path": {"250-258, T": [[-233, 444], [-233, 403], [-248, 403], [-249, 444]]}, "center": {"250-258, T": [-241, 424]}}, {"id": 4787, "name": "Cross stitching r/place", "description": "Art representing the Cross stitching r/place project - we are embroidering the entire 2022 r/place canvas onto fabric.\n\nThis was our second attempt to get on the board. We quickly realised our square was becoming suspiciously orange - Ireland also wanted to build there! They put it to a vote in their discord and allowed us to stay if we made our background orange - which was no problem for us.\n\nThe void attacked us multiple times but we were surviving with dastardly plans and coordinated counter attacks.\n\nUnfortunately, we did not manage to establish a design before Belgium killed us.", "links": {"website": ["https://www.xstitchrplace.com/"], "subreddit": ["rplaceCrossStitch"], "discord": ["NKBF48eHmx"]}, "path": {"55-62": [[857, 262], [857, 234], [884, 234], [885, 262]]}, "center": {"55-62": [871, 248]}}, -{"id": 4788, "name": "Nia skin minecraft", "description": "Cabeza de la skin de LakshartNia en minecraft", "links": {"website": ["https://www.twitch.tv/lakshartnia"], "subreddit": ["Nyasuu"]}, "path": {"250-258": [[-983, -109], [-972, -109], [-972, -94], [-982, -94], [-982, -102], [-983, -102]]}, "center": {"250-258": [-977, -104]}}, +{"id": 4788, "name": "Nia skin minecraft", "description": "Cabeza de la skin de LakshartNia en minecraft", "links": {"website": ["https://www.twitch.tv/lakshartnia"], "subreddit": ["Nyasuu"]}, "path": {"250-258, T": [[-983, -109], [-972, -109], [-972, -94], [-982, -94], [-982, -102], [-983, -102]]}, "center": {"250-258, T": [-977, -104]}}, {"id": 4789, "name": "Glasgow Rangers", "description": "Glasgow Rangers are a Scottish soccer club from Glasgow. With 55 Scottish Championships won, the club has the second most first division championships won in men's soccer after Linfield.", "links": {}, "path": {"240-246": [[-686, 889], [-678, 889], [-678, 896], [-686, 896]]}, "center": {"240-246": [-682, 893]}}, {"id": 4790, "name": "The first fishtank", "description": "The first fishtank drawn by members of r/PlaceFishCult, a small community dedicated to draw very simple fishes and other aquatic life on r/place. The community was founded after u/Burning_Sulphur made a viral post before the start of place2022 that they would be making a fish, fulfilling their promise by drawing the original and iconic fish consisting of 6 orange and 1 black pixel.\n\nThis tank later fell victim to argentinian expansionism.", "links": {"subreddit": ["PlaceFishCult"]}, "path": {"11": [[291, 133], [291, 147], [327, 147], [325, 135]]}, "center": {"11": [299, 140]}}, -{"id": 4791, "name": "Flag of Zimbabwe", "description": "Zimbabwe is a landlocked nation in Southern Africa.", "links": {"subreddit": ["southafrica"]}, "path": {"250-258": [[-1346, -653], [-1341, -653], [-1341, -649], [-1346, -649]]}, "center": {"250-258": [-1343, -651]}}, -{"id": 4792, "name": "Nigerian Flag", "description": "The flag of Nigeria, a populous country in Western Africa.", "links": {"subreddit": ["Nigeria"]}, "path": {"250-258": [[-1435, 255], [-1435, 290], [-1419, 290], [-1419, 255]]}, "center": {"250-258": [-1427, 273]}}, -{"id": 4793, "name": "Acebolita", "description": "Acebolita is the mascot of Venezuelan content creator Ace Banhammer, who was one of the pillars of the Venezuelan community on r/place.", "links": {"website": ["https://www.facebook.com/AceBanhammer/"]}, "path": {"250-258": [[-1093, 307], [-1087, 307], [-1085, 310], [-1085, 315], [-1086, 317], [-1088, 318], [-1092, 318], [-1095, 316], [-1095, 309]]}, "center": {"250-258": [-1090, 313]}}, -{"id": 4794, "name": "Reborn's Minecraft Skins", "description": "Both are Reborn minecraft skins. There is \"Reborn cubito\" the main skin with glasses and the \"Conway cubito\" skin used for a short period, but always remembered by the community.", "links": {"website": ["https://www.twitch.tv/reborn_live"]}, "path": {"210-258": [[621, -921], [639, -921], [639, -912], [621, -912]]}, "center": {"210-258": [630, -916]}}, +{"id": 4791, "name": "Flag of Zimbabwe", "description": "Zimbabwe is a landlocked nation in Southern Africa.", "links": {"subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1346, -653], [-1341, -653], [-1341, -649], [-1346, -649]]}, "center": {"250-258, T": [-1343, -651]}}, +{"id": 4792, "name": "Nigerian Flag", "description": "The flag of Nigeria, a populous country in Western Africa.", "links": {"subreddit": ["Nigeria"]}, "path": {"250-258, T": [[-1435, 255], [-1435, 290], [-1419, 290], [-1419, 255]]}, "center": {"250-258, T": [-1427, 273]}}, +{"id": 4793, "name": "Acebolita", "description": "Acebolita is the mascot of Venezuelan content creator Ace Banhammer, who was one of the pillars of the Venezuelan community on r/place.", "links": {"website": ["https://www.facebook.com/AceBanhammer/"]}, "path": {"250-258, T": [[-1093, 307], [-1087, 307], [-1085, 310], [-1085, 315], [-1086, 317], [-1088, 318], [-1092, 318], [-1095, 316], [-1095, 309]]}, "center": {"250-258, T": [-1090, 313]}}, +{"id": 4794, "name": "Reborn's Minecraft Skins", "description": "Both are Reborn minecraft skins. There is \"Reborn cubito\" the main skin with glasses and the \"Conway cubito\" skin used for a short period, but always remembered by the community.", "links": {"website": ["https://www.twitch.tv/reborn_live"]}, "path": {"210-258, T": [[621, -921], [639, -921], [639, -912], [621, -912]]}, "center": {"210-258, T": [630, -916]}}, {"id": 4795, "name": "Flag Of Georgia", "description": "The outline of the country Georgia with their flag", "links": {}, "path": {"254-259": [[-144, 768], [-153, 762], [-144, 765], [-133, 765], [-133, 769], [-131, 769], [-131, 772], [-130, 772], [-130, 774], [-129, 774], [-130, 777], [-131, 778], [-131, 775], [-143, 775], [-144, 776], [-149, 776], [-149, 780], [-148, 778], [-148, 779], [-145, 778], [-146, 778], [-145, 777], [-149, 777], [-149, 776], [-150, 778], [-151, 778], [-151, 777], [-150, 779], [-150, 780], [-151, 780], [-151, 779], [-148, 770], [-149, 770], [-150, 772], [-150, 774], [-150, 772], [-150, 771], [-149, 766], [-144, 767], [-152, 765], [-151, 768], [-151, 764], [-153, 764], [-153, 763], [-153, 765], [-150, 768], [-150, 765], [-144, 768], [-147, 767]]}, "center": {"254-259": [-139, 770]}}, -{"id": 4796, "name": "FC METZ", "description": "The Football Club of Metz is a French professional football club created in 1919 in Metz in Moselle. The club is playing in Ligue 1 for the 2023-2024 season.\n\nThe football section of the Cercle athlétique messin became autonomous in 1932 under the name of Football Club de Metz.\n\nThe draw has been made by the group of \"Meme de Forbach\"", "links": {"website": ["https://fr.wikipedia.org/wiki/Football_Club_de_Metz"], "discord": ["dMzBQQUh"]}, "path": {"250-258": [[880, -814], [902, -814], [902, -798], [880, -798]]}, "center": {"250-258": [891, -806]}}, +{"id": 4796, "name": "FC METZ", "description": "The Football Club of Metz is a French professional football club created in 1919 in Metz in Moselle. The club is playing in Ligue 1 for the 2023-2024 season.\n\nThe football section of the Cercle athlétique messin became autonomous in 1932 under the name of Football Club de Metz.\n\nThe draw has been made by the group of \"Meme de Forbach\"", "links": {"website": ["https://fr.wikipedia.org/wiki/Football_Club_de_Metz"], "discord": ["dMzBQQUh"]}, "path": {"250-258, T": [[880, -814], [902, -814], [902, -798], [880, -798]]}, "center": {"250-258, T": [891, -806]}}, {"id": 4797, "name": "Shulk", "description": "Shulk (Japanese: シュルク, Shuruku; English dub: /ˈʃʊlk/) is the main playable character and the protagonist of Xenoblade Chronicles. His ability to wield the Monado, using the sword's unique powers, as well as visions of the future, makes him one of the main forces against the Mechon. He is often referred to by some characters as the \"Heir to the Monado\".", "links": {"website": ["https://xenoblade.fandom.com/wiki/Shulk"], "subreddit": ["Xenoblade_Chronicles"]}, "path": {"252": [[1360, -953], [1358, -955], [1358, -958], [1361, -961], [1366, -962], [1367, -961], [1368, -961], [1369, -960], [1370, -959], [1371, -958], [1371, -955], [1370, -954], [1369, -953], [1370, -952], [1371, -951], [1371, -950], [1370, -949], [1369, -948], [1369, -947], [1370, -946], [1370, -945], [1369, -944], [1366, -944], [1365, -945], [1364, -945], [1363, -944], [1360, -944], [1359, -945], [1359, -946], [1360, -947], [1360, -948], [1358, -948], [1357, -949], [1356, -950], [1356, -951], [1355, -951], [1354, -950], [1352, -950], [1351, -951], [1350, -952], [1349, -953], [1349, -955], [1348, -956], [1347, -956], [1347, -957], [1346, -958], [1342, -962], [1342, -965], [1344, -965], [1352, -957], [1353, -957], [1354, -956], [1355, -955], [1356, -954], [1357, -953], [1358, -952], [1359, -952], [1360, -953], [1359, -954], [1358, -955]]}, "center": {"252": [1365, -956]}}, -{"id": 4798, "name": "Belgium Hearth", "description": "After the raid provoked by the streamer Ohnepixel towards 2 out of 3 flags of Catalonia, Belgium helped the community to rebuild with bots.\n\nWith the 2 flags with its pixelart were restored within minutes. The hearth represents the appreciation towards Belgium from the Catalan community.", "links": {"subreddit": ["Belgium", "catalunya"], "discord": ["5EqFFgZa"]}, "path": {"250-258": [[646, 113], [647, 112], [648, 113], [649, 115], [648, 116], [646, 117], [646, 118], [645, 118], [645, 113], [644, 113], [644, 112], [643, 113], [641, 114], [641, 115], [642, 116], [643, 117], [644, 118], [645, 119]]}, "center": {"250-258": [643, 115]}}, +{"id": 4798, "name": "Belgium Hearth", "description": "After the raid provoked by the streamer Ohnepixel towards 2 out of 3 flags of Catalonia, Belgium helped the community to rebuild with bots.\n\nWith the 2 flags with its pixelart were restored within minutes. The hearth represents the appreciation towards Belgium from the Catalan community.", "links": {"subreddit": ["Belgium", "catalunya"], "discord": ["5EqFFgZa"]}, "path": {"250-258, T": [[646, 113], [647, 112], [648, 113], [649, 115], [648, 116], [646, 117], [646, 118], [645, 118], [645, 113], [644, 113], [644, 112], [643, 113], [641, 114], [641, 115], [642, 116], [643, 117], [644, 118], [645, 119]]}, "center": {"250-258, T": [643, 115]}}, {"id": 4799, "name": "Vanis.io", "description": "Online Browser MMO where you start as a small blob and eat other people to get bigger.", "links": {"website": ["https://www.vanis.io/"], "subreddit": ["vanis"], "discord": ["vanis"]}, "path": {"251": [[526, 608], [500, 608], [500, 589], [513, 589], [513, 601], [526, 601]]}, "center": {"251": [506, 596]}}, -{"id": 4800, "name": "Unconquered Duck", "description": "During /Place 2022, a flock of small ducks were placed by u/Georgiewether and others. The ducks were a frequent target of changes, and eventually adopted by the FSU Seminoles Place team. Due to the nature of the duck's survival against larger forces and their relationship with FSU and thus the Seminole Tribe of Florida, they became labeled the Unconquered Ducks and survived until the end of Place 2022. \n\nDuring this year, the FSU Place team revived an Unconquered Duck and received support from University of Oregon members due to that school's mascot being the Ducks. u/Georgiewether, as the Keeper of the Ducks, was informed of the Unconquered Duck's revival and assisted in keeping the Unconquered Duck alive and happy.", "links": {}, "path": {"250-258": [[381, 896], [388, 896], [388, 899], [387, 899], [387, 903], [381, 903]]}, "center": {"250-258": [384, 900]}}, -{"id": 4801, "name": "Venezuelaball", "description": "Venezuelaball is the countryball that represents the Bolivarian Republic of Venezuela.", "links": {"subreddit": ["vzla"]}, "path": {"221-258": [[-942, 318], [-937, 313], [-937, 307], [-942, 302], [-948, 302], [-953, 307], [-953, 313], [-948, 318]]}, "center": {"221-258": [-945, 310]}}, -{"id": 4802, "name": "TU Wien", "description": "Vienna University of Technology", "links": {"website": ["https://www.tuwien.at/"]}, "path": {"239-258": [[-1274, -55], [-1274, -48], [-1264, -48], [-1264, -55]]}, "center": {"239-258": [-1269, -51]}}, +{"id": 4800, "name": "Unconquered Duck", "description": "During /Place 2022, a flock of small ducks were placed by u/Georgiewether and others. The ducks were a frequent target of changes, and eventually adopted by the FSU Seminoles Place team. Due to the nature of the duck's survival against larger forces and their relationship with FSU and thus the Seminole Tribe of Florida, they became labeled the Unconquered Ducks and survived until the end of Place 2022. \n\nDuring this year, the FSU Place team revived an Unconquered Duck and received support from University of Oregon members due to that school's mascot being the Ducks. u/Georgiewether, as the Keeper of the Ducks, was informed of the Unconquered Duck's revival and assisted in keeping the Unconquered Duck alive and happy.", "links": {}, "path": {"250-258, T": [[381, 896], [388, 896], [388, 899], [387, 899], [387, 903], [381, 903]]}, "center": {"250-258, T": [384, 900]}}, +{"id": 4801, "name": "Venezuelaball", "description": "Venezuelaball is the countryball that represents the Bolivarian Republic of Venezuela.", "links": {"subreddit": ["vzla"]}, "path": {"221-258, T": [[-942, 318], [-937, 313], [-937, 307], [-942, 302], [-948, 302], [-953, 307], [-953, 313], [-948, 318]]}, "center": {"221-258, T": [-945, 310]}}, +{"id": 4802, "name": "TU Wien", "description": "Vienna University of Technology", "links": {"website": ["https://www.tuwien.at/"]}, "path": {"239-258, T": [[-1274, -55], [-1274, -48], [-1264, -48], [-1264, -55]]}, "center": {"239-258, T": [-1269, -51]}}, {"id": 4803, "name": "ElSpreen logo", "description": "Argentinian streamer", "links": {"website": ["https://www.twitch.tv/elspreen"]}, "path": {"217": [[751, -193], [751, -72], [884, -72], [884, -193], [818, -193]]}, "center": {"217": [818, -132]}}, {"id": 4804, "name": "Motherland Monument v2", "description": "Version 2 of the image of the monument \"Motherland\".", "links": {"website": ["https://en.wikipedia.org/wiki/Motherland_Monument"]}, "path": {"98-199": [[-226, -130], [-226, -137], [-227, -138], [-227, -143], [-229, -147], [-229, -150], [-235, -158], [-235, -161], [-236, -162], [-235, -163], [-235, -176], [-233, -177], [-232, -176], [-232, -163], [-231, -162], [-232, -161], [-225, -153], [-223, -153], [-224, -154], [-224, -158], [-222, -160], [-219, -160], [-217, -158], [-217, -155], [-218, -154], [-218, -152], [-216, -152], [-212, -155], [-212, -156], [-216, -159], [-216, -166], [-213, -169], [-208, -169], [-205, -166], [-205, -159], [-208, -156], [-208, -147], [-210, -144], [-210, -134], [-212, -134], [-213, -133], [-213, -130], [-213, -129], [-226, -129]]}, "center": {"98-199": [-218, -143]}}, -{"id": 4805, "name": "Emblem of the Armed Forces of Ukraine", "description": "The emblem of the Armed Forces of Ukraine in synthesis with the shield of the Motherland monument", "links": {"website": ["https://en.wikipedia.org/wiki/Armed_Forces_of_Ukraine#/media/File:Emblem_of_the_Ukrainian_Armed_Forces.svg"]}, "path": {"208-258": [[-227, -166], [-225, -168], [-219, -165], [-216, -168], [-219, -174], [-217, -176], [-209, -176], [-207, -174], [-210, -168], [-207, -165], [-201, -168], [-199, -166], [-199, -158], [-201, -156], [-207, -159], [-210, -156], [-207, -150], [-209, -148], [-216, -148], [-218, -150], [-216, -156], [-219, -159], [-225, -156], [-227, -158]]}, "center": {"208-258": [-213, -162]}}, -{"id": 4806, "name": "Minuself", "description": "a lovely and entertaining german streamer", "links": {"website": ["https://www.twitch.tv/minuself"]}, "path": {"250-258": [[-1159, -754], [-1159, -747], [-1117, -748], [-1114, -755]]}, "center": {"250-258": [-1126, -751]}}, -{"id": 4807, "name": "Gnhan Studio logo but destroy", "description": "Gnhan Studio was founded in 2022. \nThe logo was destroyed after a large red stain event made by antifan MixiGaming. Gnhan Studio is an obscure Vietnamese studio. They do random content on youtube and recently raised money for the game project \"The Life Of The Forest\"", "links": {"website": ["https://www.youtube.com/@gnhanstudio1046"], "subreddit": ["gnhan5555_group"], "discord": ["vM9D8CDa2z"]}, "path": {"250-258": [[1321, 739], [1330, 740], [1329, 750], [1320, 749]]}, "center": {"250-258": [1325, 745]}}, -{"id": 4808, "name": "ale ❤️ lu", "description": "The first letters of the names of a real life italian couple. Find us also on placeAtlas2022!", "links": {}, "path": {"250-258": [[1167, 34], [1153, 34], [1153, 28], [1166, 28], [1166, 29], [1167, 29]]}, "center": {"250-258": [1160, 31]}}, -{"id": 4809, "name": "Sparklecare Logo", "description": "Sparklecare Hospital is a webcomic written by Kittycorn Sansom that centers around Sparklecare Hospital, a seemingly innocent hospital that, despite its overwhelmingly positive reception, tortures and abuses its own patients.", "links": {"website": ["https://sparklecarehospital.com/"]}, "path": {"248-258": [[-1445, -1], [-1445, 8], [-1436, 8], [-1436, -1]]}, "center": {"248-258": [-1440, 4]}}, -{"id": 4810, "name": "Shadow The Hedgehog", "description": "Shadow is a reoccurring character in the Sonic The Hedgehog video game franchise. He is stated to have been created as the \"Ultimate Lifeform\". He sacrifices himself at the end of his debut game, Sonic Adventure 2, but was brought back in later instalments due to popularity with fans of the series.", "links": {"subreddit": ["sonicthehedgehog", "moonpissing"], "discord": ["zQCNZkJP"]}, "path": {"250-258": [[-1131, 392], [-1127, 392], [-1127, 393], [-1121, 394], [-1121, 403], [-1125, 403], [-1126, 404], [-1129, 404], [-1133, 403], [-1133, 401], [-1130, 401], [-1131, 399], [-1133, 399], [-1133, 397], [-1131, 396], [-1131, 394], [-1133, 394], [-1132, 394]]}, "center": {"250-258": [-1126, 398]}}, -{"id": 4812, "name": "Flag of Namibia", "description": "Namibia officially the Republic of Namibia, is a country in Southern Africa.", "links": {"subreddit": ["southafrica"]}, "path": {"250-258": [[-1348, -644], [-1348, -648], [-1354, -648], [-1354, -644]]}, "center": {"250-258": [-1351, -646]}}, -{"id": 4813, "name": "Celly", "description": "Celly is the mascot of \"Bon Voyage\" the lastest music video by K-Pop group Dreamcatcher.", "links": {"website": ["https://www.youtube.com/watch?v=RPNaYj6etb8"], "subreddit": ["dreamcatcher"]}, "path": {"250-258": [[-890, -977], [-884, -977], [-884, -968], [-890, -968]]}, "center": {"250-258": [-887, -972]}}, -{"id": 4814, "name": "Olliegamerz", "description": "This is the Minecraft skin of the Spanish Content Creator Olliegamerz", "links": {"website": ["https://linktr.ee/olliegamerz"], "subreddit": ["olliegamerz"], "discord": ["ollie"]}, "path": {"250-258": [[269, -1], [260, -1], [260, 8], [268, 8], [269, 8]]}, "center": {"250-258": [265, 4]}}, -{"id": 4815, "name": "kirby", "description": "3 different colored Kirby's in a line grey orange and dark holding a star rod", "links": {"subreddit": ["Kirby"], "discord": ["kirby"]}, "path": {"250-258": [[-165, 419], [-164, 429], [-140, 429], [-140, 421]]}, "center": {"250-258": [-158, 424]}}, +{"id": 4805, "name": "Emblem of the Armed Forces of Ukraine", "description": "The emblem of the Armed Forces of Ukraine in synthesis with the shield of the Motherland monument", "links": {"website": ["https://en.wikipedia.org/wiki/Armed_Forces_of_Ukraine#/media/File:Emblem_of_the_Ukrainian_Armed_Forces.svg"]}, "path": {"208-258, T": [[-227, -166], [-225, -168], [-219, -165], [-216, -168], [-219, -174], [-217, -176], [-209, -176], [-207, -174], [-210, -168], [-207, -165], [-201, -168], [-199, -166], [-199, -158], [-201, -156], [-207, -159], [-210, -156], [-207, -150], [-209, -148], [-216, -148], [-218, -150], [-216, -156], [-219, -159], [-225, -156], [-227, -158]]}, "center": {"208-258, T": [-213, -162]}}, +{"id": 4806, "name": "Minuself", "description": "a lovely and entertaining german streamer", "links": {"website": ["https://www.twitch.tv/minuself"]}, "path": {"250-258, T": [[-1159, -754], [-1159, -747], [-1117, -748], [-1114, -755]]}, "center": {"250-258, T": [-1126, -751]}}, +{"id": 4807, "name": "Gnhan Studio logo but destroy", "description": "Gnhan Studio was founded in 2022. \nThe logo was destroyed after a large red stain event made by antifan MixiGaming. Gnhan Studio is an obscure Vietnamese studio. They do random content on youtube and recently raised money for the game project \"The Life Of The Forest\"", "links": {"website": ["https://www.youtube.com/@gnhanstudio1046"], "subreddit": ["gnhan5555_group"], "discord": ["vM9D8CDa2z"]}, "path": {"250-258, T": [[1321, 739], [1330, 740], [1329, 750], [1320, 749]]}, "center": {"250-258, T": [1325, 745]}}, +{"id": 4808, "name": "ale ❤️ lu", "description": "The first letters of the names of a real life italian couple. Find us also on placeAtlas2022!", "links": {}, "path": {"250-258, T": [[1167, 34], [1153, 34], [1153, 28], [1166, 28], [1166, 29], [1167, 29]]}, "center": {"250-258, T": [1160, 31]}}, +{"id": 4809, "name": "Sparklecare Logo", "description": "Sparklecare Hospital is a webcomic written by Kittycorn Sansom that centers around Sparklecare Hospital, a seemingly innocent hospital that, despite its overwhelmingly positive reception, tortures and abuses its own patients.", "links": {"website": ["https://sparklecarehospital.com/"]}, "path": {"248-258, T": [[-1445, -1], [-1445, 8], [-1436, 8], [-1436, -1]]}, "center": {"248-258, T": [-1440, 4]}}, +{"id": 4810, "name": "Shadow The Hedgehog", "description": "Shadow is a reoccurring character in the Sonic The Hedgehog video game franchise. He is stated to have been created as the \"Ultimate Lifeform\". He sacrifices himself at the end of his debut game, Sonic Adventure 2, but was brought back in later instalments due to popularity with fans of the series.", "links": {"subreddit": ["sonicthehedgehog", "moonpissing"], "discord": ["zQCNZkJP"]}, "path": {"250-258, T": [[-1131, 392], [-1127, 392], [-1127, 393], [-1121, 394], [-1121, 403], [-1125, 403], [-1126, 404], [-1129, 404], [-1133, 403], [-1133, 401], [-1130, 401], [-1131, 399], [-1133, 399], [-1133, 397], [-1131, 396], [-1131, 394], [-1133, 394], [-1132, 394]]}, "center": {"250-258, T": [-1126, 398]}}, +{"id": 4812, "name": "Flag of Namibia", "description": "Namibia officially the Republic of Namibia, is a country in Southern Africa.", "links": {"subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1348, -644], [-1348, -648], [-1354, -648], [-1354, -644]]}, "center": {"250-258, T": [-1351, -646]}}, +{"id": 4813, "name": "Celly", "description": "Celly is the mascot of \"Bon Voyage\" the lastest music video by K-Pop group Dreamcatcher.", "links": {"website": ["https://www.youtube.com/watch?v=RPNaYj6etb8"], "subreddit": ["dreamcatcher"]}, "path": {"250-258, T": [[-890, -977], [-884, -977], [-884, -968], [-890, -968]]}, "center": {"250-258, T": [-887, -972]}}, +{"id": 4814, "name": "Olliegamerz", "description": "This is the Minecraft skin of the Spanish Content Creator Olliegamerz", "links": {"website": ["https://linktr.ee/olliegamerz"], "subreddit": ["olliegamerz"], "discord": ["ollie"]}, "path": {"250-258, T": [[269, -1], [260, -1], [260, 8], [268, 8], [269, 8]]}, "center": {"250-258, T": [265, 4]}}, +{"id": 4815, "name": "kirby", "description": "3 different colored Kirby's in a line grey orange and dark holding a star rod", "links": {"subreddit": ["Kirby"], "discord": ["kirby"]}, "path": {"250-258, T": [[-165, 419], [-164, 429], [-140, 429], [-140, 421]]}, "center": {"250-258, T": [-158, 424]}}, {"id": 4816, "name": "Rocc", "description": "The original rocc made by the Rolace Group as a first try at making something big yes.", "links": {"subreddit": ["ProfessorLayton"], "discord": ["5krwbfRrve", "0zbq92d9640r86ac"]}, "path": {"65-76": [[-242, 185], [-242, 195], [-230, 195], [-230, 185]]}, "center": {"65-76": [-236, 190]}}, {"id": 4817, "name": "Duki", "description": "Argentine rapper and singer who gained significant popularity in the Latin American and Hispanic music scene. His real name is Mauro Ezequiel Lombardo, and he was born on June 24, 1996, in Buenos Aires, Argentina, the same birthdate as Lionel Messi.\n\nCreated by Twitch's streamers @goncho, @elspreen and their's communities.", "links": {"subreddit": ["elspreen"]}, "path": {"216-229": [[1401, 666], [1499, 664], [1499, 779], [1398, 780], [1401, 667]]}, "center": {"216-229": [1449, 729]}}, {"id": 4818, "name": "Dmytro Kotsiubailo", "description": "Dmytro Ivanovych \"Da Vinci\" Kotsiubailo was a Ukrainian volunteer, soldier, junior lieutenant, a commander of the 1st Mechanized Battalion of the Armed Forces of Ukraine. He was a participant in the Russo-Ukrainian War. Kotsiubailo was the youngest battalion commander in the history of the Ukrainian Army.\n\nIn December 2021 President Volodymyr Zelenskyy awarded Kotsiubailo the Hero of Ukraine Ukraine decoration, the country's highest honour.", "links": {"website": ["https://en.wikipedia.org/wiki/Dmytro_Kotsiubailo"]}, "path": {"241": [[-71, -128], [-63, -133], [-56, -133], [-46, -128], [-42, -122], [-39, -111], [-39, -101], [-42, -101], [-43, -99], [-42, -98], [-42, -94], [-43, -93], [-43, -91], [-42, -91], [-41, -90], [-41, -89], [-43, -87], [-43, -86], [-44, -86], [-44, -77], [-79, -77], [-75, -82], [-75, -86], [-72, -88], [-71, -91], [-71, -95], [-72, -104], [-73, -106], [-75, -112], [-75, -117], [-73, -125]]}, "center": {"241": [-57, -113]}}, {"id": 4819, "name": "Gölp", "description": "Gölp, the gamer tag of a founding member of \"Die Stammkneipe\" (formerly Blackhills Stammkneipe), a small German community called. Members also use Gölp as both an exclamation and greeting, identifying themselves as Stammkneipen-Members.\nPlacing this iconic term on the canvas was a spontaneous idea from founding member \"Mr. Blackhill\" who was allegedly drunk when coming up with this idea, although this is not confirmed and could not be proven (yet). \nThis concept quickly gained traction within the Stammkneipen-Discord-Server, rallying members to create this iconic artwork.\nInside the Stammkneipen-Community the placement of this slogan is considered an iconic act of autonomy, equivalent to the likes of \"organizing a bobble-league tournament\" or \"getting someone banned from a discord server by sending them Valentine's Day cards\".", "links": {}, "path": {"6-12": [[416, 61], [433, 61], [433, 67], [416, 67]]}, "center": {"6-12": [425, 64]}}, -{"id": 4820, "name": "Amy Rose", "description": "Amy Rose is a leading cast member in the Sonic The Hedgehog video game series, who is self-proclaimed to be Sonic The Hedgehog's girlfriend.\nShe first debuted in Sonic CD (1993) and has been part of the core cast since.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["zQCNZkJP"]}, "path": {"211-258": [[-1121, 383], [-1112, 383], [-1112, 393], [-1119, 393]]}, "center": {"211-258": [-1116, 388]}}, -{"id": 4821, "name": "urugu-ayme", "description": "It represents the alliance of Uruguay and NSO (needy streamer overload) they made Ame a character in the game but uruguayan", "links": {"subreddit": ["NeedyStreamerOverload", "uruguay"], "discord": ["NA8DHvfs", "UDuYq5mx"]}, "path": {"250-258": [[336, 967], [355, 967], [355, 998], [338, 998], [332, 979], [332, 972], [333, 970], [333, 986], [332, 983], [334, 969], [334, 968], [355, 968]]}, "center": {"250-258": [344, 981]}}, -{"id": 4822, "name": "Eggs from Dofus called Primordial Dofus", "description": "Dofus are dragon eggs.\n\nThere are six primordial Dofus spawned by the six primordial dragons. They are supposed to be the most powerful Dofus and bringing together all six will allow you to obtain full power.", "links": {"website": ["https://www.dofuspourlesnoobs.com/les-dofus.html"]}, "path": {"250-258": [[-496, 439], [-481, 439], [-482, 460], [-497, 459]]}, "center": {"250-258": [-489, 450]}}, -{"id": 4823, "name": "Flag of the American Union State", "description": "One of the Faction Flags from the Second American civil war from the Hearts of Iron 4 mod Kaiserreich", "links": {"website": ["https://kaisercatcinema.com/pages/landing"], "subreddit": ["Kaiserreich"]}, "path": {"210-259": [[-1225, -641], [-1225, -637], [-1223, -637], [-1223, -641]]}, "center": {"210-259": [-1224, -639]}}, -{"id": 4824, "name": "JMAXIMUSS GROS GARS", "description": "GROS GARS by Québec Streamer JMAXIMUSS", "links": {"website": ["https://www.twitch.tv/jmaximuss"], "discord": ["ZXxPpzwPyf"]}, "path": {"250-258": [[624, 572], [644, 572], [644, 593], [624, 593]]}, "center": {"250-258": [634, 583]}}, -{"id": 4825, "name": "Mairi Sagi Community", "description": "Mairi is a bunny Vtuber from the Spanish vtuber community, She streams on Twitch mostly every day.", "links": {"website": ["https://www.twitch.tv/mairisagi"], "discord": ["fX9XBJT8jU"]}, "path": {"228-259": [[1487, -567], [1486, -566], [1485, -565], [1485, -561], [1486, -560], [1485, -559], [1484, -558], [1484, -557], [1483, -556], [1483, -555], [1484, -554], [1485, -553], [1488, -553], [1488, -552], [1489, -553], [1490, -553], [1490, -552], [1491, -553], [1492, -553], [1493, -553], [1494, -554], [1495, -556], [1494, -557], [1494, -558], [1493, -559], [1492, -560], [1493, -561], [1493, -565], [1492, -566], [1491, -567], [1490, -567], [1490, -561], [1490, -560], [1489, -560], [1488, -561], [1488, -567]]}, "center": {"228-259": [1491, -556]}}, -{"id": 4826, "name": "The Tempest", "description": "The Tempest is the ship that one of the Ryder twins will use to defeat the Kett in Mass Effect: Andromeda", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"207-259": [[1180, -675], [1220, -675], [1220, -651], [1180, -651]]}, "center": {"207-259": [1200, -663]}}, -{"id": 4827, "name": "Identity V Luca", "description": "A survivor from 1v4 asymmetrical Horror Game Identity V", "links": {"website": ["http://idv.163.com/"], "subreddit": ["IdentityV"]}, "path": {"250-258": [[1022, 111], [1018, 111], [1018, 117], [1022, 117]]}, "center": {"250-258": [1020, 114]}}, -{"id": 4828, "name": "Jaal Ama Darav", "description": "Jaal is a member of the Angaran resistance and joins Ryder on their mission to defeat the Kett in Mass Effect: Andromeda.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"209-259": [[1214, -675], [1220, -675], [1220, -666], [1214, -666]]}, "center": {"209-259": [1217, -670]}}, +{"id": 4820, "name": "Amy Rose", "description": "Amy Rose is a leading cast member in the Sonic The Hedgehog video game series, who is self-proclaimed to be Sonic The Hedgehog's girlfriend.\nShe first debuted in Sonic CD (1993) and has been part of the core cast since.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["zQCNZkJP"]}, "path": {"211-258, T": [[-1121, 383], [-1112, 383], [-1112, 393], [-1119, 393]]}, "center": {"211-258, T": [-1116, 388]}}, +{"id": 4821, "name": "urugu-ayme", "description": "It represents the alliance of Uruguay and NSO (needy streamer overload) they made Ame a character in the game but uruguayan", "links": {"subreddit": ["NeedyStreamerOverload", "uruguay"], "discord": ["NA8DHvfs", "UDuYq5mx"]}, "path": {"250-258, T": [[336, 967], [355, 967], [355, 998], [338, 998], [332, 979], [332, 972], [333, 970], [333, 986], [332, 983], [334, 969], [334, 968], [355, 968]]}, "center": {"250-258, T": [344, 981]}}, +{"id": 4822, "name": "Eggs from Dofus called Primordial Dofus", "description": "Dofus are dragon eggs.\n\nThere are six primordial Dofus spawned by the six primordial dragons. They are supposed to be the most powerful Dofus and bringing together all six will allow you to obtain full power.", "links": {"website": ["https://www.dofuspourlesnoobs.com/les-dofus.html"]}, "path": {"250-258, T": [[-496, 439], [-481, 439], [-482, 460], [-497, 459]]}, "center": {"250-258, T": [-489, 450]}}, +{"id": 4823, "name": "Flag of the American Union State", "description": "One of the Faction Flags from the Second American civil war from the Hearts of Iron 4 mod Kaiserreich", "links": {"website": ["https://kaisercatcinema.com/pages/landing"], "subreddit": ["Kaiserreich"]}, "path": {"210-259, T": [[-1225, -641], [-1225, -637], [-1223, -637], [-1223, -641]]}, "center": {"210-259, T": [-1224, -639]}}, +{"id": 4824, "name": "JMAXIMUSS GROS GARS", "description": "GROS GARS by Québec Streamer JMAXIMUSS", "links": {"website": ["https://www.twitch.tv/jmaximuss"], "discord": ["ZXxPpzwPyf"]}, "path": {"250-258, T": [[624, 572], [644, 572], [644, 593], [624, 593]]}, "center": {"250-258, T": [634, 583]}}, +{"id": 4825, "name": "Mairi Sagi Community", "description": "Mairi is a bunny Vtuber from the Spanish vtuber community, She streams on Twitch mostly every day.", "links": {"website": ["https://www.twitch.tv/mairisagi"], "discord": ["fX9XBJT8jU"]}, "path": {"228-259, T": [[1487, -567], [1486, -566], [1485, -565], [1485, -561], [1486, -560], [1485, -559], [1484, -558], [1484, -557], [1483, -556], [1483, -555], [1484, -554], [1485, -553], [1488, -553], [1488, -552], [1489, -553], [1490, -553], [1490, -552], [1491, -553], [1492, -553], [1493, -553], [1494, -554], [1495, -556], [1494, -557], [1494, -558], [1493, -559], [1492, -560], [1493, -561], [1493, -565], [1492, -566], [1491, -567], [1490, -567], [1490, -561], [1490, -560], [1489, -560], [1488, -561], [1488, -567]]}, "center": {"228-259, T": [1491, -556]}}, +{"id": 4826, "name": "The Tempest", "description": "The Tempest is the ship that one of the Ryder twins will use to defeat the Kett in Mass Effect: Andromeda", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"207-259, T": [[1180, -675], [1220, -675], [1220, -651], [1180, -651]]}, "center": {"207-259, T": [1200, -663]}}, +{"id": 4827, "name": "Identity V Luca", "description": "A survivor from 1v4 asymmetrical Horror Game Identity V", "links": {"website": ["http://idv.163.com/"], "subreddit": ["IdentityV"]}, "path": {"250-258, T": [[1022, 111], [1018, 111], [1018, 117], [1022, 117]]}, "center": {"250-258, T": [1020, 114]}}, +{"id": 4828, "name": "Jaal Ama Darav", "description": "Jaal is a member of the Angaran resistance and joins Ryder on their mission to defeat the Kett in Mass Effect: Andromeda.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"209-259, T": [[1214, -675], [1220, -675], [1220, -666], [1214, -666]]}, "center": {"209-259, T": [1217, -670]}}, {"id": 4829, "name": "ALTO(Anti Left Treaty Organization)", "description": "ALTO or Anti Left Treaty Organization is a guild in the r/place copy website called [pixelplace.io](https://pixelplace.io).", "links": {"subreddit": ["Anti_Left_Treaty_Org"], "discord": ["G7zfcU9r"]}, "path": {"252": [[-1206, 206], [-1206, 204], [-1206, 194], [-1193, 194], [-1194, 206]]}, "center": {"252": [-1200, 200]}}, {"id": 4830, "name": "Tampa Bay Lightning", "description": "The Logo for the NHL team the Tampa Bay Lighting, with 3 mini Stanley Cups to signify the teams championship wins in 2004, 2020, and 2021. Also included is a green and yellow checkered border to represent Tampa's USLC soccer club, The Rowdies.", "links": {"website": ["https://www.nhl.com/lightning", "https://www.rowdiessoccer.com/"], "subreddit": ["TampaPlace"], "discord": ["GegV2F6k"]}, "path": {"236": [[-641, 848], [-623, 848], [-623, 873], [-642, 873], [-642, 848]]}, "center": {"236": [-632, 861]}}, -{"id": 4831, "name": "Logo of TV series 'Kaamelott'", "description": "Created by Alexandre Astier circa 2005, this TV series is a heroic fantasy-themed dramatic comedy which parodies the Arthurian legend and the epic of the Holy Grail. It is very popular in France and a common source of French language memes.", "links": {"website": ["https://fr.wikipedia.org/wiki/Kaamelott"]}, "path": {"71-258": [[-428, 192], [-431, 194], [-434, 198], [-434, 203], [-437, 206], [-437, 209], [-434, 211], [-430, 212], [-426, 214], [-423, 216], [-417, 215], [-411, 213], [-409, 207], [-408, 202], [-408, 196], [-410, 193], [-413, 192], [-426, 192]]}, "center": {"71-258": [-420, 204]}}, -{"id": 4832, "name": "26/11 NEVER FORGET 1971", "description": "26/11 signifying the day of the pakistani terrorist attack on Taj hotel in Mumbai and the year 1971 signifying the surrender of pakistani army to the indian army", "links": {"website": ["https://en.wikipedia.org/wiki/2008_Mumbai_attacks", "https://en.wikipedia.org/wiki/Pakistani_Instrument_of_Surrender"], "discord": ["CmNKP4Fx"]}, "path": {"250-258": [[841, -189], [842, -156], [867, -155], [868, -190]]}, "center": {"250-258": [855, -172]}}, +{"id": 4831, "name": "Logo of TV series 'Kaamelott'", "description": "Created by Alexandre Astier circa 2005, this TV series is a heroic fantasy-themed dramatic comedy which parodies the Arthurian legend and the epic of the Holy Grail. It is very popular in France and a common source of French language memes.", "links": {"website": ["https://fr.wikipedia.org/wiki/Kaamelott"]}, "path": {"71-258, T": [[-428, 192], [-431, 194], [-434, 198], [-434, 203], [-437, 206], [-437, 209], [-434, 211], [-430, 212], [-426, 214], [-423, 216], [-417, 215], [-411, 213], [-409, 207], [-408, 202], [-408, 196], [-410, 193], [-413, 192], [-426, 192]]}, "center": {"71-258, T": [-420, 204]}}, +{"id": 4832, "name": "26/11 NEVER FORGET 1971", "description": "26/11 signifying the day of the pakistani terrorist attack on Taj hotel in Mumbai and the year 1971 signifying the surrender of pakistani army to the indian army", "links": {"website": ["https://en.wikipedia.org/wiki/2008_Mumbai_attacks", "https://en.wikipedia.org/wiki/Pakistani_Instrument_of_Surrender"], "discord": ["CmNKP4Fx"]}, "path": {"250-258, T": [[841, -189], [842, -156], [867, -155], [868, -190]]}, "center": {"250-258, T": [855, -172]}}, {"id": 4833, "name": "Pakistan, The land of Pure", "description": "Depiction of geopolitical and economical strength of Pakistan.", "links": {"subreddit": ["pakistan"]}, "path": {"183-196": [[-854, 343], [-853, 404], [-782, 402], [-784, 341], [-828, 342]]}, "center": {"183-196": [-814, 372]}}, -{"id": 4834, "name": "Bue Bear", "description": "A wildly popular bear known for sticking to walls. Bowtie not pictured.", "links": {}, "path": {"250-258": [[-1247, -255], [-1237, -255], [-1237, -247], [-1247, -247]]}, "center": {"250-258": [-1242, -251]}}, -{"id": 4835, "name": "Flag of the United States", "description": "The United States is a country in North America. This is the third (hidden, unofficially official) flag that the Americans build during r/Place 2023.\n\nThis flag became known to be the \"Manifest Destiny Flag\", created by sleepy Americans during a \"Night Shift\".", "links": {"website": ["https://en.wikipedia.org/wiki/United_States", "https://en.wikipedia.org/wiki/Flag_of_the_United_States"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"219-259": [[-1445, 139], [-1445, 153], [-1419, 153], [-1419, 139]]}, "center": {"219-259": [-1432, 146]}}, -{"id": 4836, "name": "Lithuanian flag", "description": "Lithuanian flag made by the Streamer Rajono Kunigas. \n\nThe yellow in the flag is meant to symbolise the sun and prosperity, the green is for the forests, the countryside, liberty, and hope, and the red represents the blood and bravery of those who have died for Lithuania.", "links": {"website": ["https://rajonokunigas.lt"], "discord": ["baznycia"]}, "path": {"246-258": [[-141, 86], [-140, -27], [-272, -26], [-270, 86]]}, "center": {"246-258": [-205, 30]}}, -{"id": 4837, "name": "Kaede Azusagawa", "description": "Kaede Azusagawa (梓川 かえで, Azusagawa Kaede) is one of the main characters of Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai. She is the younger sister of Sakuta Azusagawa", "links": {"website": ["https://aobuta.fandom.com/wiki/Kaede_Azusagawa"], "subreddit": ["SeishunButaYarou"], "discord": ["u5akGE86u3"]}, "path": {"250-258": [[-1449, 508], [-1453, 507], [-1456, 501], [-1459, 499], [-1453, 492], [-1446, 492], [-1439, 499], [-1445, 501], [-1449, 504], [-1449, 508], [-1452, 508]]}, "center": {"250-258": [-1450, 498]}}, -{"id": 4838, "name": "Hero from \"Tunic\" game", "description": "Tunic is an action-adventure video game developed by Canadian indie developer Andrew Shouldice and published by Finji.\n\nThe game was released on March 16, 2022 for Microsoft Windows, Mac OS X via Steam, Xbox One, and Xbox Series, then September 27, 2022 for PlayStation 4, PlayStation 5, and Nintendo Switch.", "links": {"website": ["https://fr.wikipedia.org/wiki/Tunic"]}, "path": {"250-258": [[-501, 461], [-482, 460], [-481, 476], [-490, 477], [-491, 483], [-494, 483], [-494, 482], [-498, 482], [-498, 481], [-500, 481]]}, "center": {"250-258": [-490, 469]}}, +{"id": 4834, "name": "Bue Bear", "description": "A wildly popular bear known for sticking to walls. Bowtie not pictured.", "links": {}, "path": {"250-258, T": [[-1247, -255], [-1237, -255], [-1237, -247], [-1247, -247]]}, "center": {"250-258, T": [-1242, -251]}}, +{"id": 4835, "name": "Flag of the United States", "description": "The United States is a country in North America. This is the third (hidden, unofficially official) flag that the Americans build during r/Place 2023.\n\nThis flag became known to be the \"Manifest Destiny Flag\", created by sleepy Americans during a \"Night Shift\".", "links": {"website": ["https://en.wikipedia.org/wiki/United_States", "https://en.wikipedia.org/wiki/Flag_of_the_United_States"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"219-259, T": [[-1445, 139], [-1445, 153], [-1419, 153], [-1419, 139]]}, "center": {"219-259, T": [-1432, 146]}}, +{"id": 4836, "name": "Lithuanian flag", "description": "Lithuanian flag made by the Streamer Rajono Kunigas. \n\nThe yellow in the flag is meant to symbolise the sun and prosperity, the green is for the forests, the countryside, liberty, and hope, and the red represents the blood and bravery of those who have died for Lithuania.", "links": {"website": ["https://rajonokunigas.lt"], "discord": ["baznycia"]}, "path": {"246-258, T": [[-141, 86], [-140, -27], [-272, -26], [-270, 86]]}, "center": {"246-258, T": [-205, 30]}}, +{"id": 4837, "name": "Kaede Azusagawa", "description": "Kaede Azusagawa (梓川 かえで, Azusagawa Kaede) is one of the main characters of Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai. She is the younger sister of Sakuta Azusagawa", "links": {"website": ["https://aobuta.fandom.com/wiki/Kaede_Azusagawa"], "subreddit": ["SeishunButaYarou"], "discord": ["u5akGE86u3"]}, "path": {"250-258, T": [[-1449, 508], [-1453, 507], [-1456, 501], [-1459, 499], [-1453, 492], [-1446, 492], [-1439, 499], [-1445, 501], [-1449, 504], [-1449, 508], [-1452, 508]]}, "center": {"250-258, T": [-1450, 498]}}, +{"id": 4838, "name": "Hero from \"Tunic\" game", "description": "Tunic is an action-adventure video game developed by Canadian indie developer Andrew Shouldice and published by Finji.\n\nThe game was released on March 16, 2022 for Microsoft Windows, Mac OS X via Steam, Xbox One, and Xbox Series, then September 27, 2022 for PlayStation 4, PlayStation 5, and Nintendo Switch.", "links": {"website": ["https://fr.wikipedia.org/wiki/Tunic"]}, "path": {"250-258, T": [[-501, 461], [-482, 460], [-481, 476], [-490, 477], [-491, 483], [-494, 483], [-494, 482], [-498, 482], [-498, 481], [-500, 481]]}, "center": {"250-258, T": [-490, 469]}}, {"id": 4839, "name": "SPZ", "description": "At the end of the whiteout began on r/place the communitys unite to write FUCK SPEZ in capital letters.", "links": {"subreddit": ["place", "placeDE", "placeNL", "placeUK", "rubius"]}, "path": {"257-258": [[-1063, -873], [-475, -875], [1310, -843], [1227, 781], [-1306, 832]]}, "center": {"257-258": [-327, -30]}}, -{"id": 4840, "name": "Wicho(LiuCraft)", "description": "LiuCraft o Wicho es un creador de contenido que hace videos con su hermano y tambien hace directos con su hermano y tambien el solo,\n entreteniendo su comunidad que los ve todos los dias", "links": {"website": ["https://www.twitch.tv/soywichote", "https://www.twitch.tv/loshermanosliu"]}, "path": {"250-258": [[2, -717], [2, -709], [11, -709], [11, -717]]}, "center": {"250-258": [7, -713]}}, -{"id": 4841, "name": "Pelessaria B'Sayle", "description": "\"Peebee\" is a young Asari adventurer that joins Ryder on their mission to defeat the Kett in Mass Effect: Andromeda. Her father was an Elcor.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"170-209": [[405, -360], [411, -360], [411, -351], [405, -351]], "210-258": [[1216, -660], [1222, -660], [1222, -651], [1216, -651]]}, "center": {"170-209": [408, -355], "210-258": [1219, -655]}}, +{"id": 4840, "name": "Wicho(LiuCraft)", "description": "LiuCraft o Wicho es un creador de contenido que hace videos con su hermano y tambien hace directos con su hermano y tambien el solo,\n entreteniendo su comunidad que los ve todos los dias", "links": {"website": ["https://www.twitch.tv/soywichote", "https://www.twitch.tv/loshermanosliu"]}, "path": {"250-258, T": [[2, -717], [2, -709], [11, -709], [11, -717]]}, "center": {"250-258, T": [7, -713]}}, +{"id": 4841, "name": "Pelessaria B'Sayle", "description": "\"Peebee\" is a young Asari adventurer that joins Ryder on their mission to defeat the Kett in Mass Effect: Andromeda. Her father was an Elcor.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"170-209": [[405, -360], [411, -360], [411, -351], [405, -351]], "210-258, T": [[1216, -660], [1222, -660], [1222, -651], [1216, -651]]}, "center": {"170-209": [408, -355], "210-258, T": [1219, -655]}}, {"id": 4842, "name": "Twice - 3rd Logo Attempt", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nr/Twice's 3rd attempt at placement on the canvas. In collaboration with r/KpopPlace, r/Twice setup shop here in attempt to form a new Kpop Alley (reminiscent of r/place 2022's Kpop GG Alley). The logo evolved and grew over time as alliances were formed with the South Korean flag, r/Tuyu, r/Femboy, and the Blue Rip Smile (a memorial). \n\nThe South Korean flag takeover of the TFC 1837 as well as r/Twice's takover of hostile \"Nah\" and \"Rex\" space to the west would help defend new spots for the Kpop groups Pixy, Itzy, and NewJeans. \n\nTo the east, Kpop groups Odd Eye Circle, Dreamcatcher, StrayKids, (g)Idle, TXT, Exo, as well as a memorial to Astro member Moonbin, would form under the protection of r/Twice and r/KpopPlace.\n\nThis Kpop Alley would eventually be destroyed following the western expansion of the small Turkish flag.", "links": {}, "path": {"73": [[779, -193], [791, -193], [791, -174], [779, -174]], "68-72": [[779, -183], [791, -183], [791, -174], [779, -174]], "74-76": [[774, -193], [791, -193], [791, -174], [779, -174], [779, -180], [774, -180]], "77-87": [[774, -193], [791, -193], [791, -174], [774, -174]]}, "center": {"73": [785, -183], "68-72": [785, -178], "74-76": [784, -185], "77-87": [783, -183]}}, -{"id": 4843, "name": "Espeon & Umbreon", "description": "Two of the Pokémon Eevee's evolutions, Espeon and Umbreon, booping their snoots with affection.", "links": {"subreddit": ["PlacePokemon2", "Eevee", "Espeon", "Umbreon"], "discord": ["7ptsbMAkZ"]}, "path": {"247-258": [[-1288, 167], [-1287, 166], [-1286, 166], [-1284, 168], [-1284, 169], [-1284, 167], [-1279, 162], [-1278, 163], [-1278, 166], [-1277, 166], [-1276, 165], [-1274, 165], [-1273, 166], [-1273, 167], [-1274, 168], [-1274, 169], [-1278, 173], [-1278, 175], [-1283, 180], [-1286, 180], [-1288, 178], [-1290, 180], [-1294, 180], [-1296, 178], [-1297, 178], [-1301, 180], [-1303, 178], [-1300, 175], [-1302, 173], [-1302, 172], [-1304, 170], [-1304, 168], [-1302, 166], [-1300, 168], [-1300, 165], [-1298, 163], [-1296, 165], [-1296, 166], [-1293, 169], [-1292, 169], [-1292, 168], [-1290, 166], [-1289, 166]], "209-231": [[1264, 538], [1265, 537], [1266, 537], [1268, 539], [1268, 540], [1268, 539], [1269, 538], [1269, 537], [1273, 533], [1274, 534], [1274, 537], [1275, 537], [1276, 536], [1278, 536], [1279, 537], [1279, 538], [1278, 539], [1278, 540], [1274, 544], [1274, 546], [1269, 551], [1266, 551], [1264, 549], [1262, 551], [1258, 551], [1256, 549], [1255, 549], [1251, 551], [1249, 549], [1252, 546], [1250, 544], [1250, 543], [1248, 541], [1248, 539], [1250, 537], [1252, 539], [1252, 536], [1254, 534], [1256, 536], [1256, 537], [1259, 540], [1260, 540], [1260, 539], [1262, 537], [1263, 537]]}, "center": {"247-258": [-1288, 172], "209-231": [1264, 543]}}, -{"id": 4844, "name": "Te Land, ter zee en in de lucht", "description": "Te land, ter zee en in de lucht (On land, at sea, and in the air) was the longest-running general amusement television show and game show in the Netherlands.\nIt ran from 1973 to 2021.\n\nThe face of the person in front is that of \"Bob the Boomer\". One of the oldest members of the PlaceNL Discord server that became beloved by the community.", "links": {"subreddit": ["PlaceNL"], "discord": ["placeNL"]}, "path": {"209-258": [[1232, -549], [1227, -543], [1229, -533], [1217, -524], [1227, -515], [1222, -508], [1214, -502], [1207, -480], [1211, -477], [1218, -486], [1223, -480], [1224, -468], [1226, -466], [1231, -467], [1233, -474], [1263, -463], [1267, -464], [1279, -459], [1278, -453], [1283, -451], [1291, -468], [1293, -483], [1288, -485], [1284, -477], [1281, -468], [1272, -476], [1277, -489], [1274, -490], [1278, -495], [1283, -491], [1289, -502], [1287, -520], [1274, -526], [1275, -526], [1277, -527], [1265, -529], [1262, -543], [1257, -549], [1247, -548], [1245, -544], [1241, -549]]}, "center": {"209-258": [1248, -498]}}, -{"id": 4845, "name": "Alliance banner with Unturned and Germany", "description": "this RIP banner was made as a show of alliance between the Germany place community, and the Unturned community, on defending and building the \"Megamind Face\" in memory of a community member. (above)", "links": {"subreddit": ["PlaceDE", "Unturned"], "discord": ["PlaceDE", "Unturned"]}, "path": {"250-258": [[-14, -610], [1, -610], [1, -603], [-14, -603]]}, "center": {"250-258": [-6, -606]}}, -{"id": 4846, "name": "Cross stitching r/place", "description": "Art representing the Cross stitching r/place project - we are embroidering the entire 2022 r/place canvas onto fabric.\n\nThis was our fifth attempt to keep a part of the board, and we managed to keep until the end - although we did have to downsize once to ally with a community of Roblox kids who wanted to build a homage to their community.\nWe also wordlessly helped maintain the cat beneath us.\n\nThank you to Peru for allowing the bottom portion of their flag to be used by small communities.", "links": {"website": ["https://www.xstitchrplace.com/"], "subreddit": ["rplaceCrossStitch"], "discord": ["NKBF48eHmx"]}, "path": {"140-152": [[-601, -768], [-601, -780], [-583, -780], [-583, -768]], "153-258": [[-601, -768], [-601, -780], [-592, -780], [-592, -768]]}, "center": {"140-152": [-592, -774], "153-258": [-596, -774]}}, -{"id": 4847, "name": "pedrolodidosorpre", "description": "known as the schizophrenic twitch streamer, since he speaks to himself until no one asks him, he is a 17-year-old Chilean boy, an osu and valorant player with big dreams and a lot of desire, he did this construction alone with a little help from the community of the streamer Arigameplays.\n\nPETER IS INDESTRUCTIBLE", "links": {"website": ["https://www.twitch.tv/didosorpre", "https://www.instagram.com/pedrololo6/", "https://twitter.com/pedrolo95416523"]}, "path": {"203-259": [[167, 608], [175, 608], [175, 616], [167, 616]]}, "center": {"203-259": [171, 612]}}, +{"id": 4843, "name": "Espeon & Umbreon", "description": "Two of the Pokémon Eevee's evolutions, Espeon and Umbreon, booping their snoots with affection.", "links": {"subreddit": ["PlacePokemon2", "Eevee", "Espeon", "Umbreon"], "discord": ["7ptsbMAkZ"]}, "path": {"209-231": [[1264, 538], [1265, 537], [1266, 537], [1268, 539], [1268, 540], [1268, 539], [1269, 538], [1269, 537], [1273, 533], [1274, 534], [1274, 537], [1275, 537], [1276, 536], [1278, 536], [1279, 537], [1279, 538], [1278, 539], [1278, 540], [1274, 544], [1274, 546], [1269, 551], [1266, 551], [1264, 549], [1262, 551], [1258, 551], [1256, 549], [1255, 549], [1251, 551], [1249, 549], [1252, 546], [1250, 544], [1250, 543], [1248, 541], [1248, 539], [1250, 537], [1252, 539], [1252, 536], [1254, 534], [1256, 536], [1256, 537], [1259, 540], [1260, 540], [1260, 539], [1262, 537], [1263, 537]], "247-258, T": [[-1288, 167], [-1287, 166], [-1286, 166], [-1284, 168], [-1284, 169], [-1284, 167], [-1279, 162], [-1278, 163], [-1278, 166], [-1277, 166], [-1276, 165], [-1274, 165], [-1273, 166], [-1273, 167], [-1274, 168], [-1274, 169], [-1278, 173], [-1278, 175], [-1283, 180], [-1286, 180], [-1288, 178], [-1290, 180], [-1294, 180], [-1296, 178], [-1297, 178], [-1301, 180], [-1303, 178], [-1300, 175], [-1302, 173], [-1302, 172], [-1304, 170], [-1304, 168], [-1302, 166], [-1300, 168], [-1300, 165], [-1298, 163], [-1296, 165], [-1296, 166], [-1293, 169], [-1292, 169], [-1292, 168], [-1290, 166], [-1289, 166]]}, "center": {"209-231": [1264, 543], "247-258, T": [-1288, 172]}}, +{"id": 4844, "name": "Te Land, ter zee en in de lucht", "description": "Te land, ter zee en in de lucht (On land, at sea, and in the air) was the longest-running general amusement television show and game show in the Netherlands.\nIt ran from 1973 to 2021.\n\nThe face of the person in front is that of \"Bob the Boomer\". One of the oldest members of the PlaceNL Discord server that became beloved by the community.", "links": {"subreddit": ["PlaceNL"], "discord": ["placeNL"]}, "path": {"209-258, T": [[1232, -549], [1227, -543], [1229, -533], [1217, -524], [1227, -515], [1222, -508], [1214, -502], [1207, -480], [1211, -477], [1218, -486], [1223, -480], [1224, -468], [1226, -466], [1231, -467], [1233, -474], [1263, -463], [1267, -464], [1279, -459], [1278, -453], [1283, -451], [1291, -468], [1293, -483], [1288, -485], [1284, -477], [1281, -468], [1272, -476], [1277, -489], [1274, -490], [1278, -495], [1283, -491], [1289, -502], [1287, -520], [1274, -526], [1275, -526], [1277, -527], [1265, -529], [1262, -543], [1257, -549], [1247, -548], [1245, -544], [1241, -549]]}, "center": {"209-258, T": [1248, -498]}}, +{"id": 4845, "name": "Alliance banner with Unturned and Germany", "description": "this RIP banner was made as a show of alliance between the Germany place community, and the Unturned community, on defending and building the \"Megamind Face\" in memory of a community member. (above)", "links": {"subreddit": ["PlaceDE", "Unturned"], "discord": ["PlaceDE", "Unturned"]}, "path": {"250-258, T": [[-14, -610], [1, -610], [1, -603], [-14, -603]]}, "center": {"250-258, T": [-6, -606]}}, +{"id": 4846, "name": "Cross stitching r/place", "description": "Art representing the Cross stitching r/place project - we are embroidering the entire 2022 r/place canvas onto fabric.\n\nThis was our fifth attempt to keep a part of the board, and we managed to keep until the end - although we did have to downsize once to ally with a community of Roblox kids who wanted to build a homage to their community.\nWe also wordlessly helped maintain the cat beneath us.\n\nThank you to Peru for allowing the bottom portion of their flag to be used by small communities.", "links": {"website": ["https://www.xstitchrplace.com/"], "subreddit": ["rplaceCrossStitch"], "discord": ["NKBF48eHmx"]}, "path": {"140-152": [[-601, -768], [-601, -780], [-583, -780], [-583, -768]], "153-258, T": [[-601, -768], [-601, -780], [-592, -780], [-592, -768]]}, "center": {"140-152": [-592, -774], "153-258, T": [-596, -774]}}, +{"id": 4847, "name": "pedrolodidosorpre", "description": "known as the schizophrenic twitch streamer, since he speaks to himself until no one asks him, he is a 17-year-old Chilean boy, an osu and valorant player with big dreams and a lot of desire, he did this construction alone with a little help from the community of the streamer Arigameplays.\n\nPETER IS INDESTRUCTIBLE", "links": {"website": ["https://www.twitch.tv/didosorpre", "https://www.instagram.com/pedrololo6/", "https://twitter.com/pedrolo95416523"]}, "path": {"203-259, T": [[167, 608], [175, 608], [175, 616], [167, 616]]}, "center": {"203-259, T": [171, 612]}}, {"id": 4848, "name": "Zombey", "description": "A small Version of the avatar of a German streamer called Zombey that was created by him and kept alive by his community.", "links": {"website": ["https://www.youtube.com/channel/UCJs1mfRk0orBF9twGXaZA2w"], "subreddit": ["zombey"], "discord": ["bN2fnjc"]}, "path": {"14": [[-177, -367], [-177, -310], [-165, -309], [-165, -367]]}, "center": {"14": [-171, -338]}}, {"id": 4849, "name": "The Grey Corner", "description": "During the greyout, The Blue Corner decided to rebrand as the Grey Corner. Dark grey pixels were placed as that was the closest color to blue in the greyscale palette.\nThe text at the top would have said \"The Grey Corner?\" but the whiteout occurred before the text was finished.", "links": {"subreddit": ["thebluecorner"], "discord": ["5X4GnCuuXZ"]}, "path": {"255-258": [[1401, 899], [1500, 899], [1500, 1000], [1400, 1000]]}, "center": {"255-258": [1450, 950]}}, {"id": 4850, "name": "Sans", "description": "Sans from undertale", "links": {"subreddit": ["undertale"]}, "path": {"55-71": [[-17, 174], [-16, 151], [1, 150], [2, 174]]}, "center": {"55-71": [-7, 162]}}, -{"id": 4851, "name": "Cine Polispol", "description": "Más Popular Impulsar Acerca De Cinematógrafo y personalidad de las redes sociales conocido por su trabajo en la serie de televisión La Riera. También es una exitosa personalidad de los videojuegos y streamer con más de 1.3 millones de seguidores en su cuenta de TikTok polispol1.\n Polispol o Policarpio, es un director de fotografía y streamer español. Es miembro de la Asociación Española de Autores de Obras Fotográficas Cinematográficas, de la asociación de operadores de cámara ACTV, de la Digital Cinema Society, de la Academia del Cine Catalán y de la Academia de las Artes y las Ciencias Cinematográficas de España. En el terreno cinematográfico, fue nominado a los premios Gaudí como director de fotografía por su trabajo en la película Xtrems.", "links": {}, "path": {"250-258": [[241, -2], [260, -2], [260, 15], [241, 15]]}, "center": {"250-258": [251, 7]}}, -{"id": 4852, "name": "Ponts", "description": "The name of a small town in Spain, made by u/plasy0 and friends. We tried to write \"Land\" in the lower right corner in reference to our server \"PontsLand\". This ended up being futile.", "links": {}, "path": {"242-258": [[-1243, 488], [-1221, 488], [-1221, 494], [-1243, 494]]}, "center": {"242-258": [-1232, 491]}}, -{"id": 4853, "name": "Gomez", "description": "FEZ is a puzzle platformer released in 2012 developed by Polytron Corporation., \n\nThe game stars Gomez, who lives in a 2D world until he is granted a fez which grants the ability to see the world in 3D. Gomez uses this ability to gather cube shards, restore the great cube, and prevent the universe from collapsing.", "links": {"subreddit": ["fez"]}, "path": {"204-258": [[-1160, 518], [-1158, 516], [-1157, 516], [-1155, 518], [-1154, 517], [-1154, 513], [-1153, 512], [-1154, 511], [-1154, 510], [-1155, 509], [-1152, 509], [-1150, 507], [-1150, 503], [-1152, 501], [-1157, 501], [-1157, 499], [-1158, 498], [-1160, 498], [-1162, 500], [-1161, 501], [-1162, 501], [-1164, 503], [-1164, 507], [-1162, 509], [-1160, 509], [-1163, 512], [-1162, 513], [-1161, 513], [-1161, 517]]}, "center": {"204-258": [-1158, 505]}}, -{"id": 4854, "name": "Süsü", "description": "Süsü is the main character of the Hungarian puppet series 'Süsü, the dragon' which aired between 1977 and 1984.", "links": {"website": ["https://hu.wikipedia.org/wiki/S%C3%BCs%C3%BC"]}, "path": {"250-258": [[-1174, -7], [-1174, -26], [-1159, -26], [-1163, -10], [-1161, -7]]}, "center": {"250-258": [-1167, -19]}}, -{"id": 4855, "name": "Portuguese Youtubers", "description": "These are Popular Portuguese Youtuber's Minecraft skins.", "links": {}, "path": {"250-258": [[-754, 179], [-809, 179], [-809, 186], [-797, 186], [-797, 195], [-790, 195], [-790, 186], [-754, 186]]}, "center": {"250-258": [-793, 183]}}, -{"id": 4856, "name": "Cross stitching r/place", "description": "Art representing the Cross stitching r/place project - we are embroidering the entire 2022 r/place canvas onto fabric.\n\nThis was our sixth and final attempt to keep a part of the board, and we managed to keep it from the start of the final expansion until the end.\n\nThe Hollow Knight community was extremely kind to us and adjusted their design to accommodate us without even contacting us. They added our design to their template and we helped build their art.\n\nLater, we helped r/ByzantineMemes get a spot and assisted with defending and maintaining their flag.", "links": {"website": ["https://www.xstitchrplace.com/"], "subreddit": ["rplaceCrossStitch"], "discord": ["NKBF48eHmx"]}, "path": {"202-258": [[1278, -864], [1278, -884], [1298, -884], [1298, -864]]}, "center": {"202-258": [1288, -874]}}, +{"id": 4851, "name": "Cine Polispol", "description": "Más Popular Impulsar Acerca De Cinematógrafo y personalidad de las redes sociales conocido por su trabajo en la serie de televisión La Riera. También es una exitosa personalidad de los videojuegos y streamer con más de 1.3 millones de seguidores en su cuenta de TikTok polispol1.\n Polispol o Policarpio, es un director de fotografía y streamer español. Es miembro de la Asociación Española de Autores de Obras Fotográficas Cinematográficas, de la asociación de operadores de cámara ACTV, de la Digital Cinema Society, de la Academia del Cine Catalán y de la Academia de las Artes y las Ciencias Cinematográficas de España. En el terreno cinematográfico, fue nominado a los premios Gaudí como director de fotografía por su trabajo en la película Xtrems.", "links": {}, "path": {"250-258, T": [[241, -2], [260, -2], [260, 15], [241, 15]]}, "center": {"250-258, T": [251, 7]}}, +{"id": 4852, "name": "Ponts", "description": "The name of a small town in Spain, made by u/plasy0 and friends. We tried to write \"Land\" in the lower right corner in reference to our server \"PontsLand\". This ended up being futile.", "links": {}, "path": {"242-258, T": [[-1243, 488], [-1221, 488], [-1221, 494], [-1243, 494]]}, "center": {"242-258, T": [-1232, 491]}}, +{"id": 4853, "name": "Gomez", "description": "FEZ is a puzzle platformer released in 2012 developed by Polytron Corporation., \n\nThe game stars Gomez, who lives in a 2D world until he is granted a fez which grants the ability to see the world in 3D. Gomez uses this ability to gather cube shards, restore the great cube, and prevent the universe from collapsing.", "links": {"subreddit": ["fez"]}, "path": {"204-258, T": [[-1160, 518], [-1158, 516], [-1157, 516], [-1155, 518], [-1154, 517], [-1154, 513], [-1153, 512], [-1154, 511], [-1154, 510], [-1155, 509], [-1152, 509], [-1150, 507], [-1150, 503], [-1152, 501], [-1157, 501], [-1157, 499], [-1158, 498], [-1160, 498], [-1162, 500], [-1161, 501], [-1162, 501], [-1164, 503], [-1164, 507], [-1162, 509], [-1160, 509], [-1163, 512], [-1162, 513], [-1161, 513], [-1161, 517]]}, "center": {"204-258, T": [-1158, 505]}}, +{"id": 4854, "name": "Süsü", "description": "Süsü is the main character of the Hungarian puppet series 'Süsü, the dragon' which aired between 1977 and 1984.", "links": {"website": ["https://hu.wikipedia.org/wiki/S%C3%BCs%C3%BC"]}, "path": {"250-258, T": [[-1174, -7], [-1174, -26], [-1159, -26], [-1163, -10], [-1161, -7]]}, "center": {"250-258, T": [-1167, -19]}}, +{"id": 4855, "name": "Portuguese Youtubers", "description": "These are Popular Portuguese Youtuber's Minecraft skins.", "links": {}, "path": {"250-258, T": [[-754, 179], [-809, 179], [-809, 186], [-797, 186], [-797, 195], [-790, 195], [-790, 186], [-754, 186]]}, "center": {"250-258, T": [-793, 183]}}, +{"id": 4856, "name": "Cross stitching r/place", "description": "Art representing the Cross stitching r/place project - we are embroidering the entire 2022 r/place canvas onto fabric.\n\nThis was our sixth and final attempt to keep a part of the board, and we managed to keep it from the start of the final expansion until the end.\n\nThe Hollow Knight community was extremely kind to us and adjusted their design to accommodate us without even contacting us. They added our design to their template and we helped build their art.\n\nLater, we helped r/ByzantineMemes get a spot and assisted with defending and maintaining their flag.", "links": {"website": ["https://www.xstitchrplace.com/"], "subreddit": ["rplaceCrossStitch"], "discord": ["NKBF48eHmx"]}, "path": {"202-258, T": [[1278, -864], [1278, -884], [1298, -884], [1298, -864]]}, "center": {"202-258, T": [1288, -874]}}, {"id": 4857, "name": "ArcaniA", "description": "A small last-minute project from some friends from Germany. It stands for ArcaniA, which is the name of their Discord server.", "links": {}, "path": {"256-258": [[1239, 38], [1239, 48], [1249, 48], [1249, 38], [1245, 38], [1244, 38], [1243, 38], [1239, 38], [1240, 38], [1240, 39]]}, "center": {"256-258": [1244, 43]}}, -{"id": 4858, "name": "Bullet Train Cat", "description": "The True Form of Express Cat, known as Bullet Train Cat from the mobile game, The Battle Cats. Here, it is placed with help from r/placeDE", "links": {"subreddit": ["BattleCats"]}, "path": {"250-258": [[1024, -398], [1024, -396], [1031, -391], [1060, -391], [1074, -399], [1067, -404], [1042, -408]]}, "center": {"250-258": [1044, -399]}}, -{"id": 4859, "name": "A.S Monaco", "description": "Association Sportive de Monaco Football Club SA, commonly referred to as AS Monaco , ASM or Monaco, is a Monégasque professional football club based in Fontvieille, Monaco. Although not in France, it is a member of the French Football Federation (FFF) and currently competes in Ligue 1, the top tier of French football. Founded in 1918, the team plays its home matches at the Stade Louis II.\n\nDespite not being a French club, Monaco is one of the most successful clubs in French football, having won 8 league titles, 5 Coupe de France trophies and 1 Coupe de la Ligue. The club also played in European football a number of times, and were runners-up in the UEFA Cup Winners' Cup in 1992 and the UEFA Champions League in 2004.\n\nThe club's traditional colours are red and white, and the club is known as Les Rouge et Blanc (The Red and Whites). Monaco is a member of the European Club Association. The club won the 2016–17 Ligue 1, their first league title in 17 years. \n\nThe logo also include the name of Thierry Henry, a French professional football coach, pundit, former player and a sports broadcaster He is considered one of the greatest strikers of all time,[\n\nHenry made his professional debut with Monaco in 1994", "links": {"website": ["https://www.asmonaco.com/"], "subreddit": ["asmonaco"]}, "path": {"213-258": [[958, -796], [1000, -795], [1000, -816], [961, -816], [958, -809]]}, "center": {"213-258": [979, -806]}}, -{"id": 4860, "name": "Catalonia", "description": "Catalonia is an autonomous community of Spain. Depicted in the background is the estelada, a flag used by citizens of the independence ideology of Catalonia or by pan-Catalanist movements of the Valencian Community and the Balearic Islands. Its creator was Vicenç Albert Ballester, who was inspired by the Cuban and Puerto Rican flags for its creation.", "links": {"website": ["https://en.wikipedia.org/wiki/Catalonia", "https://en.wikipedia.org/wiki/Catalan_independence_movement"], "subreddit": ["catalunya"], "discord": ["SB2SBPv8"]}, "path": {"235-247": [[-298, 789], [-298, 799], [-297, 799], [-297, 806], [-286, 806], [-286, 798], [-293, 798], [-288, 795], [-288, 789]], "159-165, 203-234": [[-298, 789], [-298, 799], [-288, 795], [-288, 788], [-291, 790], [-296, 790]], "248-258": [[-298, 789], [-298, 799], [-288, 796], [-288, 789]]}, "center": {"235-247": [-292, 802], "159-165, 203-234": [-295, 794], "248-258": [-293, 793]}}, +{"id": 4858, "name": "Bullet Train Cat", "description": "The True Form of Express Cat, known as Bullet Train Cat from the mobile game, The Battle Cats. Here, it is placed with help from r/placeDE", "links": {"subreddit": ["BattleCats"]}, "path": {"250-258, T": [[1024, -398], [1024, -396], [1031, -391], [1060, -391], [1074, -399], [1067, -404], [1042, -408]]}, "center": {"250-258, T": [1044, -399]}}, +{"id": 4859, "name": "A.S Monaco", "description": "Association Sportive de Monaco Football Club SA, commonly referred to as AS Monaco , ASM or Monaco, is a Monégasque professional football club based in Fontvieille, Monaco. Although not in France, it is a member of the French Football Federation (FFF) and currently competes in Ligue 1, the top tier of French football. Founded in 1918, the team plays its home matches at the Stade Louis II.\n\nDespite not being a French club, Monaco is one of the most successful clubs in French football, having won 8 league titles, 5 Coupe de France trophies and 1 Coupe de la Ligue. The club also played in European football a number of times, and were runners-up in the UEFA Cup Winners' Cup in 1992 and the UEFA Champions League in 2004.\n\nThe club's traditional colours are red and white, and the club is known as Les Rouge et Blanc (The Red and Whites). Monaco is a member of the European Club Association. The club won the 2016–17 Ligue 1, their first league title in 17 years. \n\nThe logo also include the name of Thierry Henry, a French professional football coach, pundit, former player and a sports broadcaster He is considered one of the greatest strikers of all time,[\n\nHenry made his professional debut with Monaco in 1994", "links": {"website": ["https://www.asmonaco.com/"], "subreddit": ["asmonaco"]}, "path": {"213-258, T": [[958, -796], [1000, -795], [1000, -816], [961, -816], [958, -809]]}, "center": {"213-258, T": [979, -806]}}, +{"id": 4860, "name": "Catalonia", "description": "Catalonia is an autonomous community of Spain. Depicted in the background is the estelada, a flag used by citizens of the independence ideology of Catalonia or by pan-Catalanist movements of the Valencian Community and the Balearic Islands. Its creator was Vicenç Albert Ballester, who was inspired by the Cuban and Puerto Rican flags for its creation.", "links": {"website": ["https://en.wikipedia.org/wiki/Catalonia", "https://en.wikipedia.org/wiki/Catalan_independence_movement"], "subreddit": ["catalunya"], "discord": ["SB2SBPv8"]}, "path": {"235-247": [[-298, 789], [-298, 799], [-297, 799], [-297, 806], [-286, 806], [-286, 798], [-293, 798], [-288, 795], [-288, 789]], "159-165, 203-234": [[-298, 789], [-298, 799], [-288, 795], [-288, 788], [-291, 790], [-296, 790]], "248-258, T": [[-298, 789], [-298, 799], [-288, 796], [-288, 789]]}, "center": {"235-247": [-292, 802], "159-165, 203-234": [-295, 794], "248-258, T": [-293, 793]}}, {"id": 4861, "name": "Skid and Pump", "description": "Skid and Pump is an annual cartoon made by Spanish Cartoonist Sr. Pelo. Their cartoon is often posted on Halloween, though it sometimes gets delayed or made early. They became popular after thier inclusion in FNF (Friday Night Funkin) on Night 2.", "links": {"website": ["https://www.youtube.com/channel/UCt-GOpCw4dOBlIyqL9A1ztA"]}, "path": {"212-249": [[-1316, 394], [-1310, 394], [-1310, 397], [-1309, 397], [-1305, 394], [-1305, 393], [-1300, 393], [-1299, 393], [-1299, 394], [-1299, 390], [-1298, 390], [-1298, 388], [-1297, 388], [-1297, 387], [-1296, 387], [-1296, 386], [-1291, 386], [-1291, 387], [-1291, 386], [-1290, 386], [-1290, 381], [-1290, 380], [-1288, 380], [-1287, 380], [-1287, 381], [-1286, 381], [-1285, 381], [-1285, 382], [-1284, 382], [-1284, 383], [-1281, 386], [-1280, 386], [-1280, 388], [-1281, 388], [-1281, 389], [-1282, 389], [-1282, 390], [-1283, 390], [-1282, 390], [-1282, 392], [-1281, 392], [-1281, 397], [-1281, 395], [-1280, 395], [-1280, 394], [-1276, 394], [-1276, 395], [-1275, 395], [-1275, 399], [-1276, 399], [-1276, 400], [-1279, 400], [-1279, 401], [-1283, 406], [-1283, 405], [-1284, 405], [-1285, 405], [-1287, 407], [-1289, 404], [-1293, 406], [-1297, 406], [-1298, 407], [-1298, 415], [-1297, 416], [-1296, 417], [-1297, 418], [-1300, 419], [-1301, 415], [-1303, 415], [-1303, 419], [-1308, 419], [-1308, 415], [-1307, 415], [-1308, 415], [-1308, 409], [-1311, 407], [-1317, 398], [-1316, 396]]}, "center": {"212-249": [-1290, 396]}}, -{"id": 4862, "name": "AS Saint-Étienne", "description": "Association Sportive de Saint-Étienne Loire, commonly known as A.S.S.E. or simply Saint-Étienne, is a professional football club based in Saint-Étienne in Auvergne-Rhône-Alpes, France. \nThe club was founded in 1933 and competes in Ligue 2, the second division of French football. \n\nSaint-Étienne plays its home matches at the Stade Geoffroy-Guichard and have won ten Ligue 1 titles, as well as 6 \"Coupe de France\" titles, 1 \"Coupe de la Ligue\" title and 5 \"Trophée des Champions\". Saint-Étienne has also won the Ligue 2 championship on three occasions. The club achieved most of its honours in the 1960s and 1970s when the club was led by managers Jean Snella, Albert Batteux, and Robert Herbin.", "links": {"website": ["https://www.asse.fr/", "https://en.wikipedia.org/wiki/AS_Saint-%C3%89tienne"], "subreddit": ["asse"]}, "path": {"210-258": [[867, -813], [852, -806], [861, -784], [879, -797], [878, -811]]}, "center": {"210-258": [866, -801]}}, -{"id": 4863, "name": "Windows tab buttons", "description": "Top right buttons that appear in any windows open tab, can be used to close, minimise and expand the tab in use, here shown in windows XP graphic style", "links": {}, "path": {"250-258": [[1443, -1000], [1443, -984], [1446, -981], [1494, -981], [1498, -984], [1498, -998], [1496, -1000]]}, "center": {"250-258": [1471, -990]}}, -{"id": 4864, "name": "Silver The Hedgehog", "description": "Silver The Hedgehog is a character that stars in the Sonic The Hedgehog video game franchise. \nHe debuted in Sonic The Hedgehog (2006, reboot) as a psychokinetic hedgehog from a ruined future who has the ability to move objects with his mind. \nHe is often depicted as naïve. In one such depiction he mistakenly attempts to kill the main protagonist of the franchise, Sonic, after being misled.", "links": {"subreddit": ["sonicthehedgehog", "silverthehedgehog"], "discord": ["zQCNZkJP"]}, "path": {"243-258": [[-1120, 392], [-1121, 393], [-1121, 397], [-1122, 404], [-1114, 404], [-1113, 403], [-1112, 402], [-1111, 400], [-1113, 397], [-1112, 394], [-1114, 394], [-1115, 393], [-1118, 394]]}, "center": {"243-258": [-1117, 399]}}, -{"id": 4866, "name": "Fech the Ferret", "description": "Titular character of the 3D platformer \"Fech the Ferret\" being developed by aucritas and led by RaoulWB.\n\nIn fact the first attempt to have Fech in r/place in 2023, subsequently a second was made in fear of being wiped but both survived.", "links": {"website": ["http://playfe.ch/"]}, "path": {"194-258": [[-776, -1000], [-776, -988], [-770, -988], [-770, -994], [-771, -994], [-772, -995], [-772, -1000], [-774, -1000]]}, "center": {"194-258": [-773, -991]}}, -{"id": 4867, "name": "TV Maci", "description": "TV Maci is a teddy bear who appears on the Hungarian National Television before the nightly bedtime story show ('Esti mese') since 1963.", "links": {"website": ["https://hu.wikipedia.org/wiki/TV_Maci"]}, "path": {"250-258": [[-1154, -7], [-1153, -9], [-1157, -14], [-1158, -22], [-1151, -26], [-1145, -26], [-1138, -22], [-1139, -13], [-1142, -10], [-1141, -7]]}, "center": {"250-258": [-1148, -17]}}, -{"id": 4868, "name": "Nubert - deltarune", "description": "everyone likes him :)", "links": {"subreddit": ["deltarune"]}, "path": {"162-258": [[-557, -115], [-541, -114], [-543, -124], [-559, -123]]}, "center": {"162-258": [-550, -119]}}, -{"id": 4869, "name": "GO BIRDS!", "description": "The semi-satirical slogan and chant for the Philadelphia Eagles.", "links": {"website": ["https://www.philadelphiaeagles.com/"], "subreddit": ["eagles"]}, "path": {"220-258": [[1443, -136], [1443, -128], [1466, -128], [1466, -136], [1463, -136], [1463, -141], [1449, -142], [1449, -136]]}, "center": {"220-258": [1456, -135]}}, -{"id": 4870, "name": "Penguin memorial", "description": "When the Czech community started building Amálka at 1259, 623, there was a penguin built by unknown community in the way. The Czechs however decided to build around the penguin, not overwriting it. After both Amálka and the Penguin were covered by ''Slifer the Sky Dragon / Void Dragon'', the Czechs decided to include the Penguin when building a smaller version of Amálka here.", "links": {"subreddit": ["czech"], "discord": ["95fmfxNv"]}, "path": {"241-258": [[-142, 573], [-141, 573], [-141, 572], [-140, 572], [-140, 570], [-139, 570], [-139, 568], [-140, 568], [-140, 567], [-144, 567], [-144, 568], [-145, 568], [-145, 571], [-144, 571], [-144, 572], [-143, 572], [-143, 573]]}, "center": {"241-258": [-142, 569]}}, -{"id": 4871, "name": "Blackpink", "description": "Blackpink is a South Korean girl group formed by YG Entertainment, consisting of members Jisoo, Jennie, Rosé, and Lisa.", "links": {"subreddit": ["BlackPink"]}, "path": {"94-102": [[-795, 117], [-795, 128], [-746, 127], [-746, 117]], "242-258": [[-1251, 282], [-1197, 282], [-1190, 284], [-1190, 291], [-1251, 291], [-1251, 290], [-1251, 291]]}, "center": {"94-102": [-789, 123], "242-258": [-1220, 287]}}, -{"id": 4872, "name": "Tsukumo Sana", "description": "Tsukumo Sana was an English Virtual YouTuber associated with Hololive. She debuted in 2021 as part of Hololive -Council-, the second generation of members of Hololive English. \n\nShe graduated on July 30th, 2022 due to health problems.", "links": {"website": ["https://www.youtube.com/channel/UCsUj0dszADCGbF3gNrQEuSQ"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"208-258": [[1331, -837], [1329, -837], [1329, -836], [1328, -836], [1328, -834], [1328, -832], [1321, -832], [1321, -831], [1320, -830], [1320, -829], [1320, -827], [1320, -826], [1319, -824], [1320, -823], [1322, -823], [1323, -823], [1323, -820], [1325, -820], [1326, -818], [1328, -817], [1328, -815], [1331, -814], [1331, -813], [1333, -812], [1333, -808], [1333, -813], [1335, -813], [1335, -816], [1336, -816], [1336, -817], [1335, -818], [1335, -820], [1336, -820], [1336, -822], [1337, -822], [1338, -823], [1338, -826], [1339, -825], [1339, -826], [1341, -826], [1339, -828], [1336, -832], [1334, -832], [1332, -834], [1331, -834], [1332, -836]]}, "center": {"208-258": [1330, -825]}}, +{"id": 4862, "name": "AS Saint-Étienne", "description": "Association Sportive de Saint-Étienne Loire, commonly known as A.S.S.E. or simply Saint-Étienne, is a professional football club based in Saint-Étienne in Auvergne-Rhône-Alpes, France. \nThe club was founded in 1933 and competes in Ligue 2, the second division of French football. \n\nSaint-Étienne plays its home matches at the Stade Geoffroy-Guichard and have won ten Ligue 1 titles, as well as 6 \"Coupe de France\" titles, 1 \"Coupe de la Ligue\" title and 5 \"Trophée des Champions\". Saint-Étienne has also won the Ligue 2 championship on three occasions. The club achieved most of its honours in the 1960s and 1970s when the club was led by managers Jean Snella, Albert Batteux, and Robert Herbin.", "links": {"website": ["https://www.asse.fr/", "https://en.wikipedia.org/wiki/AS_Saint-%C3%89tienne"], "subreddit": ["asse"]}, "path": {"210-258, T": [[867, -813], [852, -806], [861, -784], [879, -797], [878, -811]]}, "center": {"210-258, T": [866, -801]}}, +{"id": 4863, "name": "Windows tab buttons", "description": "Top right buttons that appear in any windows open tab, can be used to close, minimise and expand the tab in use, here shown in windows XP graphic style", "links": {}, "path": {"250-258, T": [[1443, -1000], [1443, -984], [1446, -981], [1494, -981], [1498, -984], [1498, -998], [1496, -1000]]}, "center": {"250-258, T": [1471, -990]}}, +{"id": 4864, "name": "Silver The Hedgehog", "description": "Silver The Hedgehog is a character that stars in the Sonic The Hedgehog video game franchise. \nHe debuted in Sonic The Hedgehog (2006, reboot) as a psychokinetic hedgehog from a ruined future who has the ability to move objects with his mind. \nHe is often depicted as naïve. In one such depiction he mistakenly attempts to kill the main protagonist of the franchise, Sonic, after being misled.", "links": {"subreddit": ["sonicthehedgehog", "silverthehedgehog"], "discord": ["zQCNZkJP"]}, "path": {"243-258, T": [[-1120, 392], [-1121, 393], [-1121, 397], [-1122, 404], [-1114, 404], [-1113, 403], [-1112, 402], [-1111, 400], [-1113, 397], [-1112, 394], [-1114, 394], [-1115, 393], [-1118, 394]]}, "center": {"243-258, T": [-1117, 399]}}, +{"id": 4866, "name": "Fech the Ferret", "description": "Titular character of the 3D platformer \"Fech the Ferret\" being developed by aucritas and led by RaoulWB.\n\nIn fact the first attempt to have Fech in r/place in 2023, subsequently a second was made in fear of being wiped but both survived.", "links": {"website": ["http://playfe.ch/"]}, "path": {"194-258, T": [[-776, -1000], [-776, -988], [-770, -988], [-770, -994], [-771, -994], [-772, -995], [-772, -1000], [-774, -1000]]}, "center": {"194-258, T": [-773, -991]}}, +{"id": 4867, "name": "TV Maci", "description": "TV Maci is a teddy bear who appears on the Hungarian National Television before the nightly bedtime story show ('Esti mese') since 1963.", "links": {"website": ["https://hu.wikipedia.org/wiki/TV_Maci"]}, "path": {"250-258, T": [[-1154, -7], [-1153, -9], [-1157, -14], [-1158, -22], [-1151, -26], [-1145, -26], [-1138, -22], [-1139, -13], [-1142, -10], [-1141, -7]]}, "center": {"250-258, T": [-1148, -17]}}, +{"id": 4868, "name": "Nubert - deltarune", "description": "everyone likes him :)", "links": {"subreddit": ["deltarune"]}, "path": {"162-258, T": [[-557, -115], [-541, -114], [-543, -124], [-559, -123]]}, "center": {"162-258, T": [-550, -119]}}, +{"id": 4869, "name": "GO BIRDS!", "description": "The semi-satirical slogan and chant for the Philadelphia Eagles.", "links": {"website": ["https://www.philadelphiaeagles.com/"], "subreddit": ["eagles"]}, "path": {"220-258, T": [[1443, -136], [1443, -128], [1466, -128], [1466, -136], [1463, -136], [1463, -141], [1449, -142], [1449, -136]]}, "center": {"220-258, T": [1456, -135]}}, +{"id": 4870, "name": "Penguin memorial", "description": "When the Czech community started building Amálka at 1259, 623, there was a penguin built by unknown community in the way. The Czechs however decided to build around the penguin, not overwriting it. After both Amálka and the Penguin were covered by ''Slifer the Sky Dragon / Void Dragon'', the Czechs decided to include the Penguin when building a smaller version of Amálka here.", "links": {"subreddit": ["czech"], "discord": ["95fmfxNv"]}, "path": {"241-258, T": [[-142, 573], [-141, 573], [-141, 572], [-140, 572], [-140, 570], [-139, 570], [-139, 568], [-140, 568], [-140, 567], [-144, 567], [-144, 568], [-145, 568], [-145, 571], [-144, 571], [-144, 572], [-143, 572], [-143, 573]]}, "center": {"241-258, T": [-142, 569]}}, +{"id": 4871, "name": "Blackpink", "description": "Blackpink is a South Korean girl group formed by YG Entertainment, consisting of members Jisoo, Jennie, Rosé, and Lisa.", "links": {"subreddit": ["BlackPink"]}, "path": {"94-102": [[-795, 117], [-795, 128], [-746, 127], [-746, 117]], "242-258, T": [[-1251, 282], [-1197, 282], [-1190, 284], [-1190, 291], [-1251, 291], [-1251, 290], [-1251, 291]]}, "center": {"94-102": [-789, 123], "242-258, T": [-1220, 287]}}, +{"id": 4872, "name": "Tsukumo Sana", "description": "Tsukumo Sana was an English Virtual YouTuber associated with Hololive. She debuted in 2021 as part of Hololive -Council-, the second generation of members of Hololive English. \n\nShe graduated on July 30th, 2022 due to health problems.", "links": {"website": ["https://www.youtube.com/channel/UCsUj0dszADCGbF3gNrQEuSQ"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"208-258, T": [[1331, -837], [1329, -837], [1329, -836], [1328, -836], [1328, -834], [1328, -832], [1321, -832], [1321, -831], [1320, -830], [1320, -829], [1320, -827], [1320, -826], [1319, -824], [1320, -823], [1322, -823], [1323, -823], [1323, -820], [1325, -820], [1326, -818], [1328, -817], [1328, -815], [1331, -814], [1331, -813], [1333, -812], [1333, -808], [1333, -813], [1335, -813], [1335, -816], [1336, -816], [1336, -817], [1335, -818], [1335, -820], [1336, -820], [1336, -822], [1337, -822], [1338, -823], [1338, -826], [1339, -825], [1339, -826], [1341, -826], [1339, -828], [1336, -832], [1334, -832], [1332, -834], [1331, -834], [1332, -836]]}, "center": {"208-258, T": [1330, -825]}}, {"id": 4873, "name": "France-Napoléon Heart", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Napoleon", "https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"23-108": [[-366, 485], [-370, 482], [-372, 482], [-375, 484], [-375, 488], [-366, 496], [-357, 488], [-357, 484], [-360, 482], [-362, 482], [-363, 483]]}, "center": {"23-108": [-366, 490]}}, -{"id": 4874, "name": "Pusheen", "description": "Es un webcómic sobre la vida cotidiana de una gata del mismo nombre,​ el cual ha alcanzado gran reconocimiento y popularidad, originario de Canadá. También es el gato favorito de la mujer mas hermosa del mundo <3 Steff", "links": {"website": ["https://pusheen.com/"]}, "path": {"250-258": [[-381, -619], [-359, -619], [-359, -604], [-381, -604]]}, "center": {"250-258": [-370, -611]}}, +{"id": 4874, "name": "Pusheen", "description": "Es un webcómic sobre la vida cotidiana de una gata del mismo nombre,​ el cual ha alcanzado gran reconocimiento y popularidad, originario de Canadá. También es el gato favorito de la mujer mas hermosa del mundo <3 Steff", "links": {"website": ["https://pusheen.com/"]}, "path": {"250-258, T": [[-381, -619], [-359, -619], [-359, -604], [-381, -604]]}, "center": {"250-258, T": [-370, -611]}}, {"id": 4875, "name": "Beat Banger Logo", "description": "An adult furry rhythm game. Created by BunFan Games", "links": {"subreddit": ["bunfan"], "discord": ["beatbanger"]}, "path": {"182-191": [[813, 464], [813, 488], [795, 488], [795, 464]]}, "center": {"182-191": [804, 476]}}, {"id": 4876, "name": "Cross stitching r/place", "description": "Art representing the Cross stitching r/place project - we are embroidering the entire 2022 r/place canvas onto fabric.\n\nThis was our fourth (and a half) attempt to keep a part of the board. \nWe originally set up here to run away from the Turkey wave approaching from the south. It seemed safe as Ireland had a border set up and there was other art springing up around.\nWe were in fraught conversation with the Bloodborne community as they wanted to build on top of us, but did not have the numbers. We offered to compromise but they did not agree.\n\nHowever, suddenly the entire space went full orange and we realised we had no hope of survival. We moved up and right to an empty-ish spot. We seemed to have overwritten a penguin in the process. Sorry :(\n\nUnfortunately some people in the Belgian community decided to roll over us, and our neighbour pig/cow, and we perished once more.", "links": {"website": ["https://www.xstitchrplace.com/"], "subreddit": ["rplaceCrossStitch"], "discord": ["NKBF48eHmx"]}, "path": {"91-97": [[-833, 150], [-819, 150], [-819, 162], [-833, 162]], "98-106": [[-811, 150], [-811, 138], [-797, 138], [-797, 150]]}, "center": {"91-97": [-826, 156], "98-106": [-804, 144]}}, -{"id": 4877, "name": "Circassia", "description": "Circassia is a historic nation in the north Caucasus region. Many Circassians were killed or expelled from this region during the Circassian Genocide. The Circassian flag is used by the Republic of Adygea in Russia, as well as the Circassian diaspora. The historic territory of Circassia is depicted here, with the flag of Circassia as a background.\n\nLate during r/place, Circassia disputed territory with Ossetia. In the final frame, Circassia's flag covers much of Kabardia, an eastern region named for one of the sons of the medieval Circassian King Inal the Great.", "links": {"website": ["https://en.wikipedia.org/wiki/Circassia", "https://en.wikipedia.org/wiki/Circassian_flag"], "subreddit": ["adyghe"]}, "path": {"234-258": [[-157, 750], [-154, 750], [-154, 760], [-134, 760], [-133, 761], [-133, 763], [-146, 763], [-147, 762], [-149, 762], [-150, 761], [-152, 761], [-153, 760], [-156, 760], [-156, 762], [-157, 763], [-165, 763], [-165, 762], [-164, 761], [-164, 755], [-163, 755], [-162, 754], [-162, 752], [-161, 751], [-157, 751]]}, "center": {"234-258": [-158, 756]}}, -{"id": 4878, "name": "Dogwarts", "description": "Part of the Dogwarts faction, Martyn InTheLittleWood and Rendog as The Red King, from minecraft series 3rd Life", "links": {"website": ["https://the-life-series.fandom.com/wiki/Dogwarts", "https://the-life-series.fandom.com/wiki/3rd_Life", "https://the-life-series.fandom.com/wiki/InTheLittleWood", "https://the-life-series.fandom.com/wiki/Rendog"]}, "path": {"250-258": [[-1168, 277], [-1159, 277], [-1159, 295], [-1168, 295]]}, "center": {"250-258": [-1163, 286]}}, +{"id": 4877, "name": "Circassia", "description": "Circassia is a historic nation in the north Caucasus region. Many Circassians were killed or expelled from this region during the Circassian Genocide. The Circassian flag is used by the Republic of Adygea in Russia, as well as the Circassian diaspora. The historic territory of Circassia is depicted here, with the flag of Circassia as a background.\n\nLate during r/place, Circassia disputed territory with Ossetia. In the final frame, Circassia's flag covers much of Kabardia, an eastern region named for one of the sons of the medieval Circassian King Inal the Great.", "links": {"website": ["https://en.wikipedia.org/wiki/Circassia", "https://en.wikipedia.org/wiki/Circassian_flag"], "subreddit": ["adyghe"]}, "path": {"234-258, T": [[-157, 750], [-154, 750], [-154, 760], [-134, 760], [-133, 761], [-133, 763], [-146, 763], [-147, 762], [-149, 762], [-150, 761], [-152, 761], [-153, 760], [-156, 760], [-156, 762], [-157, 763], [-165, 763], [-165, 762], [-164, 761], [-164, 755], [-163, 755], [-162, 754], [-162, 752], [-161, 751], [-157, 751]]}, "center": {"234-258, T": [-158, 756]}}, +{"id": 4878, "name": "Dogwarts", "description": "Part of the Dogwarts faction, Martyn InTheLittleWood and Rendog as The Red King, from minecraft series 3rd Life", "links": {"website": ["https://the-life-series.fandom.com/wiki/Dogwarts", "https://the-life-series.fandom.com/wiki/3rd_Life", "https://the-life-series.fandom.com/wiki/InTheLittleWood", "https://the-life-series.fandom.com/wiki/Rendog"]}, "path": {"250-258, T": [[-1168, 277], [-1159, 277], [-1159, 295], [-1168, 295]]}, "center": {"250-258, T": [-1163, 286]}}, {"id": 4879, "name": "Dxfita", "description": "Dafita, también conocido como Deksfita, es un carismático streamer peruano que destaca en concursos de canto y dedica serenatas en vivo.\nSu éxito en el RPlace 2023 se debe en gran parte a su querida comunidad, a la que cariñosamente se refiere como los kiribatianos.", "links": {}, "path": {"177-198": [[-657, -809], [-639, -809], [-639, -799], [-657, -799]]}, "center": {"177-198": [-648, -804]}}, -{"id": 4880, "name": "The BLU Spycrab", "description": "The final placement of The BLU Spycrab that stays on the place till the very end. It was put on the French Lattice as a result of a collaboration between France and Team Fortress 2. \n\nThe TF2 Discord decided to try asking France for a place and proposed to add RED and BLU Spycrabs on the blue and red sides of the flag respectively. \nThe RED Spycrab was soon put on the very first French flag — even before the first expansion of the canvas. \nAfter the last expansion of the canvas, the BLU Spycrab was put on the French Lattice.\n\nThe Spycrab is an animation glitch, which occurs when a Spy crouches and looks up while holding the disguise kit, causing his limbs to look funny. \n\nThe idea to place two crabs on each Pixel-art was made by @geor10 on Discord", "links": {"website": ["https://wiki.teamfortress.com/wiki/Spycrab"], "subreddit": ["tf2", "france"], "discord": ["gEdmGgBTs8"]}, "path": {"157-163": [[-433, 889], [-433, 894], [-429, 897], [-429, 894], [-426, 896], [-426, 892], [-424, 893], [-418, 893], [-415, 896], [-412, 894], [-412, 891], [-411, 893], [-408, 895], [-407, 891], [-408, 886], [-412, 882], [-412, 881], [-406, 878], [-405, 872], [-408, 868], [-410, 869], [-411, 874], [-412, 870], [-416, 873], [-417, 877], [-425, 877], [-424, 872], [-428, 870], [-429, 868], [-431, 869], [-432, 871], [-431, 878], [-427, 879], [-430, 883], [-430, 887]], "164-258": [[-398, 825], [-401, 828], [-401, 833], [-398, 836], [-395, 836], [-395, 838], [-396, 838], [-397, 839], [-397, 840], [-398, 841], [-398, 843], [-397, 844], [-397, 845], [-400, 845], [-400, 841], [-399, 840], [-399, 839], [-400, 838], [-400, 837], [-401, 836], [-401, 835], [-402, 834], [-403, 833], [-404, 833], [-404, 831], [-405, 832], [-405, 833], [-404, 834], [-403, 835], [-403, 837], [-402, 838], [-401, 839], [-401, 841], [-400, 842], [-400, 845], [-399, 845], [-399, 846], [-400, 847], [-401, 848], [-401, 851], [-400, 852], [-399, 851], [-398, 852], [-396, 852], [-396, 851], [-394, 849], [-393, 850], [-387, 850], [-385, 852], [-382, 852], [-382, 847], [-380, 847], [-380, 850], [-378, 852], [-377, 851], [-377, 848], [-378, 847], [-378, 845], [-380, 843], [-380, 842], [-383, 839], [-382, 838], [-380, 838], [-379, 837], [-377, 837], [-376, 836], [-376, 835], [-375, 834], [-375, 829], [-377, 827], [-377, 826], [-378, 827], [-378, 830], [-379, 831], [-380, 832], [-381, 831], [-381, 829], [-382, 829], [-384, 831], [-384, 832], [-385, 833], [-385, 835], [-384, 836], [-384, 838], [-385, 838], [-387, 836], [-394, 836], [-395, 835], [-395, 834], [-396, 833], [-395, 832], [-394, 833], [-394, 831], [-398, 827]]}, "center": {"157-163": [-421, 885], "164-258": [-390, 843]}}, +{"id": 4880, "name": "The BLU Spycrab", "description": "The final placement of The BLU Spycrab that stays on the place till the very end. It was put on the French Lattice as a result of a collaboration between France and Team Fortress 2. \n\nThe TF2 Discord decided to try asking France for a place and proposed to add RED and BLU Spycrabs on the blue and red sides of the flag respectively. \nThe RED Spycrab was soon put on the very first French flag — even before the first expansion of the canvas. \nAfter the last expansion of the canvas, the BLU Spycrab was put on the French Lattice.\n\nThe Spycrab is an animation glitch, which occurs when a Spy crouches and looks up while holding the disguise kit, causing his limbs to look funny. \n\nThe idea to place two crabs on each Pixel-art was made by @geor10 on Discord", "links": {"website": ["https://wiki.teamfortress.com/wiki/Spycrab"], "subreddit": ["tf2", "france"], "discord": ["gEdmGgBTs8"]}, "path": {"157-163": [[-433, 889], [-433, 894], [-429, 897], [-429, 894], [-426, 896], [-426, 892], [-424, 893], [-418, 893], [-415, 896], [-412, 894], [-412, 891], [-411, 893], [-408, 895], [-407, 891], [-408, 886], [-412, 882], [-412, 881], [-406, 878], [-405, 872], [-408, 868], [-410, 869], [-411, 874], [-412, 870], [-416, 873], [-417, 877], [-425, 877], [-424, 872], [-428, 870], [-429, 868], [-431, 869], [-432, 871], [-431, 878], [-427, 879], [-430, 883], [-430, 887]], "164-258, T": [[-398, 825], [-401, 828], [-401, 833], [-398, 836], [-395, 836], [-395, 838], [-396, 838], [-397, 839], [-397, 840], [-398, 841], [-398, 843], [-397, 844], [-397, 845], [-400, 845], [-400, 841], [-399, 840], [-399, 839], [-400, 838], [-400, 837], [-401, 836], [-401, 835], [-402, 834], [-403, 833], [-404, 833], [-404, 831], [-405, 832], [-405, 833], [-404, 834], [-403, 835], [-403, 837], [-402, 838], [-401, 839], [-401, 841], [-400, 842], [-400, 845], [-399, 845], [-399, 846], [-400, 847], [-401, 848], [-401, 851], [-400, 852], [-399, 851], [-398, 852], [-396, 852], [-396, 851], [-394, 849], [-393, 850], [-387, 850], [-385, 852], [-382, 852], [-382, 847], [-380, 847], [-380, 850], [-378, 852], [-377, 851], [-377, 848], [-378, 847], [-378, 845], [-380, 843], [-380, 842], [-383, 839], [-382, 838], [-380, 838], [-379, 837], [-377, 837], [-376, 836], [-376, 835], [-375, 834], [-375, 829], [-377, 827], [-377, 826], [-378, 827], [-378, 830], [-379, 831], [-380, 832], [-381, 831], [-381, 829], [-382, 829], [-384, 831], [-384, 832], [-385, 833], [-385, 835], [-384, 836], [-384, 838], [-385, 838], [-387, 836], [-394, 836], [-395, 835], [-395, 834], [-396, 833], [-395, 832], [-394, 833], [-394, 831], [-398, 827]]}, "center": {"157-163": [-421, 885], "164-258, T": [-390, 843]}}, {"id": 4881, "name": "Cross stitching r/place", "description": "Art representing the Cross stitching r/place project - we are embroidering the entire 2022 r/place canvas onto fabric.\n\nThis was our third attempt to build. We were not anticipating the next expansion would come so quickly, so we decided to downsize from a bigger design and moved over a bit. \n\nWe started managing to build, but then a wave of colour ascended from Turkey, and we absconded north.", "links": {"website": ["https://www.xstitchrplace.com/"], "subreddit": ["rplaceCrossStitch"], "discord": ["NKBF48eHmx"]}, "path": {"87-88": [[-801, 440], [-801, 424], [-786, 424], [-786, 440]], "89-91": [[-816, 434], [-816, 422], [-801, 422], [-801, 434]]}, "center": {"87-88": [-793, 432], "89-91": [-808, 428]}}, -{"id": 4882, "name": "Skullcat", "description": "The Skullcat super animal from the game Super Animal Royale ᓚᘏᗢ", "links": {"website": ["https://animalroyale.com/"], "subreddit": ["animalroyale"], "discord": ["animalroyale"]}, "path": {"250-258": [[-412, 347], [-411, 365], [-393, 365], [-393, 347]]}, "center": {"250-258": [-402, 356]}}, -{"id": 4883, "name": "Flag of Peru", "description": "Peru is a country in Northwestern South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru"], "subreddit": ["peru"]}, "path": {"211-258": [[-317, 828], [-317, 861], [-286, 861], [-285, 860], [-284, 859], [-285, 858], [-284, 857], [-283, 856], [-284, 855], [-283, 854], [-279, 854], [-278, 855], [-277, 855], [-269, 847], [-269, 828]]}, "center": {"211-258": [-300, 845]}}, -{"id": 4884, "name": "Flag of Lorraine region", "description": "Lorraine is a historical and cultural region in eastern France on the border with Belgium, Luxembourg and Germany.\n\nIt is made up of the departments of Meurthe-et-Moselle, Meuse, Moselle and Vosges and its inhabitants are called Lorrains.", "links": {"website": ["https://fr.wikipedia.org/wiki/Lorraine"]}, "path": {"250-258": [[-384, 272], [-372, 272], [-372, 279], [-384, 279]]}, "center": {"250-258": [-378, 276]}}, -{"id": 4885, "name": "Harvard", "description": "Harvard University is a private Ivy League research university in Cambridge, Massachusetts.", "links": {"subreddit": ["Harvard"]}, "path": {"250-258": [[-1253, -255], [-1253, -247], [-1259, -247], [-1259, -255]]}, "center": {"250-258": [-1256, -251]}}, -{"id": 4886, "name": "Phase Connect Logo", "description": "Phase-Connect is an English-Japanese Virtual YouTuber agency based in Vancouver, Canada.", "links": {}, "path": {"250-258": [[1269, -830], [1247, -830], [1247, -812], [1228, -812], [1228, -798], [1243, -799], [1244, -799], [1244, -804], [1250, -810], [1269, -809]]}, "center": {"250-258": [1258, -820]}}, +{"id": 4882, "name": "Skullcat", "description": "The Skullcat super animal from the game Super Animal Royale ᓚᘏᗢ", "links": {"website": ["https://animalroyale.com/"], "subreddit": ["animalroyale"], "discord": ["animalroyale"]}, "path": {"250-258, T": [[-412, 347], [-411, 365], [-393, 365], [-393, 347]]}, "center": {"250-258, T": [-402, 356]}}, +{"id": 4883, "name": "Flag of Peru", "description": "Peru is a country in Northwestern South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru"], "subreddit": ["peru"]}, "path": {"211-258, T": [[-317, 828], [-317, 861], [-286, 861], [-285, 860], [-284, 859], [-285, 858], [-284, 857], [-283, 856], [-284, 855], [-283, 854], [-279, 854], [-278, 855], [-277, 855], [-269, 847], [-269, 828]]}, "center": {"211-258, T": [-300, 845]}}, +{"id": 4884, "name": "Flag of Lorraine region", "description": "Lorraine is a historical and cultural region in eastern France on the border with Belgium, Luxembourg and Germany.\n\nIt is made up of the departments of Meurthe-et-Moselle, Meuse, Moselle and Vosges and its inhabitants are called Lorrains.", "links": {"website": ["https://fr.wikipedia.org/wiki/Lorraine"]}, "path": {"250-258, T": [[-384, 272], [-372, 272], [-372, 279], [-384, 279]]}, "center": {"250-258, T": [-378, 276]}}, +{"id": 4885, "name": "Harvard", "description": "Harvard University is a private Ivy League research university in Cambridge, Massachusetts.", "links": {"subreddit": ["Harvard"]}, "path": {"250-258, T": [[-1253, -255], [-1253, -247], [-1259, -247], [-1259, -255]]}, "center": {"250-258, T": [-1256, -251]}}, +{"id": 4886, "name": "Phase Connect Logo", "description": "Phase-Connect is an English-Japanese Virtual YouTuber agency based in Vancouver, Canada.", "links": {}, "path": {"250-258, T": [[1269, -830], [1247, -830], [1247, -812], [1228, -812], [1228, -798], [1243, -799], [1244, -799], [1244, -804], [1250, -810], [1269, -809]]}, "center": {"250-258, T": [1258, -820]}}, {"id": 4887, "name": "Nada Parece Valer a Pena", "description": "\"Nothing Seems Worth it\", is a phrase said in an audio visual production by Cinemagrath, the \"Obscuro\" available in its entirety to watch on youtube\n\nMatthew \"Matt\" Magrath, also known as Cinemagrath is a Brazilian streamer and content creator", "links": {"website": ["https://youtu.be/YTI0BKqHY0U"], "subreddit": ["cinemagrath"], "discord": ["Xm3rgEWB"]}, "path": {"216-227": [[1002, 171], [1002, 185], [1030, 185], [1030, 171]]}, "center": {"216-227": [1016, 178]}}, -{"id": 4888, "name": "Jawa", "description": "A desert dwelling native to Tatooine. Likes to acquire junk to resell to others. Utinni!", "links": {}, "path": {"250-258": [[1131, -691], [1121, -691], [1121, -709], [1133, -709], [1133, -701], [1131, -701]]}, "center": {"250-258": [1126, -704]}}, -{"id": 4889, "name": "respetto (RSP)", "description": "respetto es un streamer de Twitch y jugador profesional del Minecraft, este logo fue hecho por su fiel comunidad de respelovers.", "links": {"website": ["https://www.twitch.tv/respetto"], "discord": ["tSZm28NFwq"]}, "path": {"78-83": [[685, 413], [685, 425], [721, 425], [721, 413]], "84-96": [[674, 413], [674, 425], [730, 425], [730, 413]], "97-125": [[685, 413], [685, 425], [719, 425], [719, 413]], "126-259": [[673, 413], [673, 425], [730, 425], [730, 413]]}, "center": {"78-83": [703, 419], "84-96": [702, 419], "97-125": [702, 419], "126-259": [702, 419]}}, -{"id": 4890, "name": "Q-Taro Burgerberg - r/PlaceFishCult", "description": "A little fish in a heart, made by r/PlaceFishCult, a small community that likes to put fishes on r/place. Named after a character in the japanese Videogame \"Your Turn to Die\", after it was allowed to stay on the art made by r/yourturntodie.", "links": {"subreddit": ["PlaceFishCult", "yourturntodie"]}, "path": {"250-258": [[519, -345], [519, -343], [520, -342], [521, -341], [522, -340], [523, -341], [524, -342], [525, -343], [525, -345], [524, -346], [523, -346], [522, -345], [521, -346], [520, -346]]}, "center": {"250-258": [522, -343]}}, -{"id": 4891, "name": "Flag of Mauritius", "description": "Mauritius is an island nation in the Indian Ocean.", "links": {"subreddit": ["southafrica"]}, "path": {"250-258": [[-1339, -650], [-1339, -653], [-1334, -653], [-1334, -650]]}, "center": {"250-258": [-1336, -651]}}, -{"id": 4892, "name": "Crossroad of Ideas (Six Seasons and Movie)", "description": "A rendering of the fictional Glendale Community College flag representing the crossroads of ideas and is definitely not a butt flag.\n\n\"And a movie\" refers to a line in a first season episode, \"Six seasons and a movie.\" Community fans have taken the line as a rallying cry of support for the cult hit. The show ran for six seasons but no movie as of 2023.", "links": {"website": ["https://www.youtube.com/watch?v=HP1Atb8nAGY"], "subreddit": ["Community"]}, "path": {"199-202": [[-501, 731], [-511, 731], [-513, 729], [-513, 727], [-514, 725], [-516, 725], [-516, 719], [-501, 719]], "203-258": [[-516, 708], [-515, 724], [-514, 730], [-501, 731], [-501, 708]]}, "center": {"199-202": [-508, 725], "203-258": [-508, 716]}}, +{"id": 4888, "name": "Jawa", "description": "A desert dwelling native to Tatooine. Likes to acquire junk to resell to others. Utinni!", "links": {}, "path": {"250-258, T": [[1131, -691], [1121, -691], [1121, -709], [1133, -709], [1133, -701], [1131, -701]]}, "center": {"250-258, T": [1126, -704]}}, +{"id": 4889, "name": "respetto (RSP)", "description": "respetto es un streamer de Twitch y jugador profesional del Minecraft, este logo fue hecho por su fiel comunidad de respelovers.", "links": {"website": ["https://www.twitch.tv/respetto"], "discord": ["tSZm28NFwq"]}, "path": {"78-83": [[685, 413], [685, 425], [721, 425], [721, 413]], "84-96": [[674, 413], [674, 425], [730, 425], [730, 413]], "97-125": [[685, 413], [685, 425], [719, 425], [719, 413]], "126-259, T": [[673, 413], [673, 425], [730, 425], [730, 413]]}, "center": {"78-83": [703, 419], "84-96": [702, 419], "97-125": [702, 419], "126-259, T": [702, 419]}}, +{"id": 4890, "name": "Q-Taro Burgerberg - r/PlaceFishCult", "description": "A little fish in a heart, made by r/PlaceFishCult, a small community that likes to put fishes on r/place. Named after a character in the japanese Videogame \"Your Turn to Die\", after it was allowed to stay on the art made by r/yourturntodie.", "links": {"subreddit": ["PlaceFishCult", "yourturntodie"]}, "path": {"250-258, T": [[519, -345], [519, -343], [520, -342], [521, -341], [522, -340], [523, -341], [524, -342], [525, -343], [525, -345], [524, -346], [523, -346], [522, -345], [521, -346], [520, -346]]}, "center": {"250-258, T": [522, -343]}}, +{"id": 4891, "name": "Flag of Mauritius", "description": "Mauritius is an island nation in the Indian Ocean.", "links": {"subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1339, -650], [-1339, -653], [-1334, -653], [-1334, -650]]}, "center": {"250-258, T": [-1336, -651]}}, +{"id": 4892, "name": "Crossroad of Ideas (Six Seasons and Movie)", "description": "A rendering of the fictional Glendale Community College flag representing the crossroads of ideas and is definitely not a butt flag.\n\n\"And a movie\" refers to a line in a first season episode, \"Six seasons and a movie.\" Community fans have taken the line as a rallying cry of support for the cult hit. The show ran for six seasons but no movie as of 2023.", "links": {"website": ["https://www.youtube.com/watch?v=HP1Atb8nAGY"], "subreddit": ["Community"]}, "path": {"199-202": [[-501, 731], [-511, 731], [-513, 729], [-513, 727], [-514, 725], [-516, 725], [-516, 719], [-501, 719]], "203-258, T": [[-516, 708], [-515, 724], [-514, 730], [-501, 731], [-501, 708]]}, "center": {"199-202": [-508, 725], "203-258, T": [-508, 716]}}, {"id": 4893, "name": "Żubr (The european bison)", "description": "The symbol of Poland's success in nature conservation.\nThey were nearly hunted to extinction in the beggining of 20th century, however Poland worked together with other countries to reintroduce them.\nNow they can be seen in the Białowieża Forest among other places, where about 800 of the european bison live. \nAbout 25% of the whole european bison population is located in Poland.", "links": {"website": ["https://en.wikipedia.org/wiki/European_bison"]}, "path": {"255-258": [[697, -137], [695, -145], [696, -144], [697, -144], [697, -143], [698, -143], [699, -143], [700, -143], [700, -142], [701, -142], [701, -141], [701, -140], [702, -140], [702, -139], [702, -138], [702, -137], [702, -136], [702, -135], [701, -135], [701, -136], [700, -137], [699, -138], [698, -138], [698, -137], [698, -136], [698, -135], [697, -135], [697, -134], [697, -133], [697, -132], [696, -132], [696, -136], [695, -136], [694, -136], [694, -135], [693, -135], [693, -134], [692, -134], [692, -133], [692, -132], [691, -132], [691, -133], [691, -134], [691, -135], [691, -136], [690, -136], [690, -137], [689, -137], [689, -138], [689, -139], [689, -140], [688, -140], [688, -141], [687, -141], [689, -141], [689, -142], [690, -142], [691, -142], [691, -143], [692, -143], [692, -144], [693, -144], [693, -145], [694, -145], [695, -145]]}, "center": {"255-258": [693, -139]}}, -{"id": 4894, "name": "Techpack", "description": "Main character of game series \"TECHPACK\". Confusingly, the developer goes by \"Techpack\" online.\n\nMeant to be identical to his in-game sprite, Techpack has noticeably less hair in r/place due to failed negotiations with Vermont, of which his hair overlaps.", "links": {"website": ["https://store.steampowered.com/app/1413780/TECHPACK/"]}, "path": {"197-199": [[-771, -987], [-772, -987], [-772, -986], [-771, -985], [-771, -983], [-770, -982], [-771, -981], [-771, -976], [-770, -975], [-767, -975], [-766, -974], [-765, -975], [-765, -984], [-764, -985], [-765, -986], [-766, -986], [-767, -987], [-768, -987], [-770, -987]], "200-239": [[-765, -984], [-764, -985], [-765, -986], [-766, -986], [-767, -987], [-768, -987], [-769, -986], [-770, -986], [-771, -987], [-772, -987], [-772, -986], [-771, -985], [-771, -983], [-770, -982], [-771, -981], [-771, -976], [-770, -975], [-769, -974], [-768, -974], [-768, -972], [-767, -972], [-766, -972], [-766, -974], [-765, -975], [-765, -976], [-764, -977], [-765, -978]], "251-258": [[-764, -977], [-765, -978], [-765, -982], [-764, -983], [-765, -984], [-769, -984], [-770, -983], [-771, -982], [-770, -981], [-771, -976], [-770, -975], [-770, -974], [-771, -973], [-771, -972], [-770, -971], [-769, -972], [-768, -973], [-767, -974], [-766, -975], [-765, -976]], "240-258": [[-765, -978], [-765, -984], [-770, -984], [-771, -983], [-771, -982], [-770, -981], [-771, -980], [-771, -971], [-769, -971], [-768, -972], [-768, -973], [-767, -974], [-766, -975], [-765, -976], [-764, -977]]}, "center": {"197-199": [-768, -980], "200-239": [-768, -979], "251-258": [-768, -977], "240-258": [-768, -978]}}, +{"id": 4894, "name": "Techpack", "description": "Main character of game series \"TECHPACK\". Confusingly, the developer goes by \"Techpack\" online.\n\nMeant to be identical to his in-game sprite, Techpack has noticeably less hair in r/place due to failed negotiations with Vermont, of which his hair overlaps.", "links": {"website": ["https://store.steampowered.com/app/1413780/TECHPACK/"]}, "path": {"197-199": [[-771, -987], [-772, -987], [-772, -986], [-771, -985], [-771, -983], [-770, -982], [-771, -981], [-771, -976], [-770, -975], [-767, -975], [-766, -974], [-765, -975], [-765, -984], [-764, -985], [-765, -986], [-766, -986], [-767, -987], [-768, -987], [-770, -987]], "200-239": [[-765, -984], [-764, -985], [-765, -986], [-766, -986], [-767, -987], [-768, -987], [-769, -986], [-770, -986], [-771, -987], [-772, -987], [-772, -986], [-771, -985], [-771, -983], [-770, -982], [-771, -981], [-771, -976], [-770, -975], [-769, -974], [-768, -974], [-768, -972], [-767, -972], [-766, -972], [-766, -974], [-765, -975], [-765, -976], [-764, -977], [-765, -978]], "251-258": [[-764, -977], [-765, -978], [-765, -982], [-764, -983], [-765, -984], [-769, -984], [-770, -983], [-771, -982], [-770, -981], [-771, -976], [-770, -975], [-770, -974], [-771, -973], [-771, -972], [-770, -971], [-769, -972], [-768, -973], [-767, -974], [-766, -975], [-765, -976]], "240-258, T": [[-765, -978], [-765, -984], [-770, -984], [-771, -983], [-771, -982], [-770, -981], [-771, -980], [-771, -971], [-769, -971], [-768, -972], [-768, -973], [-767, -974], [-766, -975], [-765, -976], [-764, -977]]}, "center": {"197-199": [-768, -980], "200-239": [-768, -979], "251-258": [-768, -977], "240-258, T": [-768, -978]}}, {"id": 4895, "name": "Amongi", "description": "This wonder of an artwork was created by the german community r/smog. Fun fact: the second Crewmate looks very sussy, maybe is he the imposter.", "links": {"discord": ["p3NDXNEaqw"]}, "path": {"125-170": [[-438, 45], [-398, 45], [-398, 50], [-438, 50], [-438, 46]]}, "center": {"125-170": [-418, 48]}}, -{"id": 4896, "name": "SHINee 15th Anniversary", "description": "SHINee (pronounced as \"SHY-nee\") is a South Korean boyband under SM Entertainment. Depicted here is the band's stylized logo for the 15th year since their debut on May 25, 2008. The \"I\" and \"N\" are crossed to form \"XV\" which is the Roman numeral for the number 15.", "links": {"website": ["https://en.wikipedia.org/wiki/Shinee"], "subreddit": ["SHINee"]}, "path": {"250-258": [[-1116, 509], [-1089, 509], [-1089, 516], [-1116, 516]]}, "center": {"250-258": [-1102, 513]}}, -{"id": 4897, "name": "Motherland Monument v3", "description": "Version 3 (final) of the image of the monument \"Motherland\". The monument has a traditional Ukrainian wreath, 2 ribbons in the colours of the Ukrainian flag and tryzub on the shield.", "links": {"website": ["https://en.wikipedia.org/wiki/Motherland_Monument"]}, "path": {"197-258": [[-229, -130], [-229, -133], [-232, -135], [-232, -143], [-233, -148], [-235, -146], [-238, -146], [-241, -149], [-240, -150], [-238, -148], [-236, -148], [-233, -150], [-232, -151], [-233, -152], [-240, -155], [-242, -155], [-252, -148], [-253, -149], [-242, -157], [-238, -157], [-234, -155], [-234, -157], [-237, -161], [-237, -165], [-236, -165], [-236, -176], [-234, -176], [-234, -175], [-233, -173], [-233, -165], [-232, -164], [-233, -163], [-233, -161], [-227, -155], [-225, -155], [-227, -157], [-227, -161], [-224, -163], [-221, -163], [-219, -159], [-221, -156], [-221, -155], [-221, -154], [-220, -155], [-218, -155], [-216, -156], [-219, -159], [-219, -165], [-216, -168], [-209, -168], [-207, -165], [-207, -159], [-212, -154], [-212, -150], [-215, -147], [-215, -138], [-216, -137], [-216, -135], [-217, -134], [-217, -129], [-229, -129]]}, "center": {"197-258": [-224, -146]}}, -{"id": 4899, "name": "Metro, Bike Lane, & Tree Row", "description": "After both r/fuckcars and r/placetrees struggled to find a location in r/place, they collaborated with r/placeNL to create a combination of their causes featuring an ungerground train, a bike lane, and a row of trees.", "links": {"subreddit": ["fuckcars", "placetrees", "placeNL"]}, "path": {"208-248": [[1002, -514], [1036, -514], [1037, -515], [1038, -516], [1029, -519], [1029, -520], [1029, -521], [1040, -521], [1040, -531], [1038, -531], [1037, -532], [1036, -533], [1035, -534], [1035, -536], [1036, -537], [1036, -538], [1037, -539], [1038, -540], [1039, -541], [1040, -542], [1046, -542], [1047, -541], [1048, -540], [1049, -539], [1049, -537], [1050, -538], [1051, -539], [1052, -540], [1053, -540], [1054, -541], [1055, -541], [1056, -541], [1057, -541], [1058, -540], [1059, -539], [1060, -538], [1060, -537], [1061, -538], [1061, -539], [1062, -540], [1063, -541], [1064, -542], [1065, -543], [1069, -543], [1070, -542], [1071, -541], [1072, -539], [1073, -539], [1073, -540], [1074, -541], [1074, -543], [1077, -543], [1078, -544], [1082, -544], [1083, -543], [1085, -541], [1087, -541], [1091, -541], [1092, -542], [1095, -542], [1096, -541], [1098, -541], [1099, -540], [1099, -539], [1100, -540], [1100, -541], [1101, -542], [1102, -543], [1103, -544], [1104, -545], [1106, -546], [1113, -546], [1114, -545], [1116, -544], [1117, -543], [1119, -541], [1125, -541], [1128, -542], [1129, -543], [1131, -543], [1132, -544], [1135, -544], [1136, -543], [1138, -543], [1139, -542], [1140, -541], [1144, -541], [1144, -542], [1149, -542], [1150, -541], [1151, -540], [1151, -544], [1152, -544], [1153, -545], [1153, -548], [1156, -548], [1156, -547], [1157, -548], [1161, -548], [1162, -547], [1164, -547], [1169, -543], [1173, -543], [1177, -540], [1176, -539], [1175, -536], [1174, -535], [1174, -529], [1175, -532], [1178, -533], [1195, -533], [1203, -524], [1205, -521], [1207, -520], [1209, -519], [1211, -518], [1213, -518], [1214, -517], [1215, -517], [1216, -516], [1217, -515], [1218, -514], [1219, -513], [1220, -512], [1220, -508], [1219, -506], [1218, -506], [1218, -505], [1217, -504], [1215, -504], [1213, -503], [1044, -503], [1044, -504], [1002, -504]], "249-258": [[1213, -504], [1047, -504], [1046, -503], [1045, -503], [1044, -504], [1038, -504], [1038, -505], [1038, -504], [1030, -504], [1030, -505], [1030, -504], [1017, -504], [1017, -505], [1017, -504], [1009, -504], [1008, -505], [1006, -505], [1005, -506], [1005, -509], [1006, -510], [1007, -510], [1007, -512], [1009, -514], [1017, -514], [1017, -513], [1017, -514], [1030, -514], [1030, -513], [1033, -514], [1034, -515], [1033, -516], [1034, -515], [1034, -514], [1037, -514], [1039, -516], [1039, -517], [1038, -517], [1037, -518], [1035, -518], [1034, -519], [1032, -519], [1031, -520], [1030, -520], [1031, -521], [1031, -522], [1032, -523], [1032, -525], [1031, -526], [1032, -527], [1034, -527], [1035, -526], [1035, -524], [1036, -523], [1036, -521], [1040, -521], [1040, -532], [1038, -532], [1036, -534], [1036, -536], [1037, -537], [1037, -538], [1038, -539], [1038, -540], [1040, -542], [1046, -542], [1049, -539], [1049, -536], [1051, -538], [1051, -539], [1052, -540], [1053, -540], [1054, -541], [1057, -541], [1060, -538], [1060, -537], [1061, -537], [1062, -538], [1062, -539], [1063, -540], [1063, -541], [1064, -542], [1065, -542], [1066, -543], [1069, -543], [1072, -540], [1072, -539], [1074, -539], [1074, -540], [1078, -544], [1082, -544], [1086, -540], [1086, -539], [1088, -539], [1090, -541], [1091, -541], [1092, -542], [1095, -542], [1096, -541], [1097, -541], [1099, -539], [1100, -539], [1101, -540], [1101, -541], [1104, -544], [1105, -544], [1107, -546], [1113, -546], [1114, -545], [1115, -545], [1117, -543], [1117, -542], [1118, -541], [1118, -538], [1119, -538], [1119, -539], [1121, -541], [1127, -541], [1129, -543], [1132, -543], [1133, -544], [1135, -544], [1136, -543], [1138, -543], [1140, -541], [1144, -541], [1145, -542], [1148, -542], [1149, -541], [1151, -541], [1151, -542], [1153, -544], [1153, -545], [1155, -547], [1156, -547], [1157, -548], [1161, -548], [1162, -547], [1163, -547], [1164, -546], [1165, -546], [1169, -542], [1169, -538], [1168, -537], [1167, -537], [1164, -534], [1163, -534], [1164, -532], [1179, -532], [1180, -533], [1195, -533], [1197, -531], [1198, -531], [1202, -527], [1202, -526], [1203, -525], [1203, -524], [1205, -522], [1205, -521], [1207, -519], [1208, -519], [1209, -518], [1210, -518], [1211, -517], [1213, -517], [1214, -516], [1215, -516], [1217, -514], [1217, -507], [1217, -506], [1215, -504]]}, "center": {"208-248": [1111, -523], "249-258": [1133, -523]}}, +{"id": 4896, "name": "SHINee 15th Anniversary", "description": "SHINee (pronounced as \"SHY-nee\") is a South Korean boyband under SM Entertainment. Depicted here is the band's stylized logo for the 15th year since their debut on May 25, 2008. The \"I\" and \"N\" are crossed to form \"XV\" which is the Roman numeral for the number 15.", "links": {"website": ["https://en.wikipedia.org/wiki/Shinee"], "subreddit": ["SHINee"]}, "path": {"250-258, T": [[-1116, 509], [-1089, 509], [-1089, 516], [-1116, 516]]}, "center": {"250-258, T": [-1102, 513]}}, +{"id": 4897, "name": "Motherland Monument v3", "description": "Version 3 (final) of the image of the monument \"Motherland\". The monument has a traditional Ukrainian wreath, 2 ribbons in the colours of the Ukrainian flag and tryzub on the shield.", "links": {"website": ["https://en.wikipedia.org/wiki/Motherland_Monument"]}, "path": {"197-258, T": [[-229, -130], [-229, -133], [-232, -135], [-232, -143], [-233, -148], [-235, -146], [-238, -146], [-241, -149], [-240, -150], [-238, -148], [-236, -148], [-233, -150], [-232, -151], [-233, -152], [-240, -155], [-242, -155], [-252, -148], [-253, -149], [-242, -157], [-238, -157], [-234, -155], [-234, -157], [-237, -161], [-237, -165], [-236, -165], [-236, -176], [-234, -176], [-234, -175], [-233, -173], [-233, -165], [-232, -164], [-233, -163], [-233, -161], [-227, -155], [-225, -155], [-227, -157], [-227, -161], [-224, -163], [-221, -163], [-219, -159], [-221, -156], [-221, -155], [-221, -154], [-220, -155], [-218, -155], [-216, -156], [-219, -159], [-219, -165], [-216, -168], [-209, -168], [-207, -165], [-207, -159], [-212, -154], [-212, -150], [-215, -147], [-215, -138], [-216, -137], [-216, -135], [-217, -134], [-217, -129], [-229, -129]]}, "center": {"197-258, T": [-224, -146]}}, +{"id": 4899, "name": "Metro, Bike Lane, & Tree Row", "description": "After both r/fuckcars and r/placetrees struggled to find a location in r/place, they collaborated with r/placeNL to create a combination of their causes featuring an ungerground train, a bike lane, and a row of trees.", "links": {"subreddit": ["fuckcars", "placetrees", "placeNL"]}, "path": {"208-248": [[1002, -514], [1036, -514], [1037, -515], [1038, -516], [1029, -519], [1029, -520], [1029, -521], [1040, -521], [1040, -531], [1038, -531], [1037, -532], [1036, -533], [1035, -534], [1035, -536], [1036, -537], [1036, -538], [1037, -539], [1038, -540], [1039, -541], [1040, -542], [1046, -542], [1047, -541], [1048, -540], [1049, -539], [1049, -537], [1050, -538], [1051, -539], [1052, -540], [1053, -540], [1054, -541], [1055, -541], [1056, -541], [1057, -541], [1058, -540], [1059, -539], [1060, -538], [1060, -537], [1061, -538], [1061, -539], [1062, -540], [1063, -541], [1064, -542], [1065, -543], [1069, -543], [1070, -542], [1071, -541], [1072, -539], [1073, -539], [1073, -540], [1074, -541], [1074, -543], [1077, -543], [1078, -544], [1082, -544], [1083, -543], [1085, -541], [1087, -541], [1091, -541], [1092, -542], [1095, -542], [1096, -541], [1098, -541], [1099, -540], [1099, -539], [1100, -540], [1100, -541], [1101, -542], [1102, -543], [1103, -544], [1104, -545], [1106, -546], [1113, -546], [1114, -545], [1116, -544], [1117, -543], [1119, -541], [1125, -541], [1128, -542], [1129, -543], [1131, -543], [1132, -544], [1135, -544], [1136, -543], [1138, -543], [1139, -542], [1140, -541], [1144, -541], [1144, -542], [1149, -542], [1150, -541], [1151, -540], [1151, -544], [1152, -544], [1153, -545], [1153, -548], [1156, -548], [1156, -547], [1157, -548], [1161, -548], [1162, -547], [1164, -547], [1169, -543], [1173, -543], [1177, -540], [1176, -539], [1175, -536], [1174, -535], [1174, -529], [1175, -532], [1178, -533], [1195, -533], [1203, -524], [1205, -521], [1207, -520], [1209, -519], [1211, -518], [1213, -518], [1214, -517], [1215, -517], [1216, -516], [1217, -515], [1218, -514], [1219, -513], [1220, -512], [1220, -508], [1219, -506], [1218, -506], [1218, -505], [1217, -504], [1215, -504], [1213, -503], [1044, -503], [1044, -504], [1002, -504]], "249-258, T": [[1213, -504], [1047, -504], [1046, -503], [1045, -503], [1044, -504], [1038, -504], [1038, -505], [1038, -504], [1030, -504], [1030, -505], [1030, -504], [1017, -504], [1017, -505], [1017, -504], [1009, -504], [1008, -505], [1006, -505], [1005, -506], [1005, -509], [1006, -510], [1007, -510], [1007, -512], [1009, -514], [1017, -514], [1017, -513], [1017, -514], [1030, -514], [1030, -513], [1033, -514], [1034, -515], [1033, -516], [1034, -515], [1034, -514], [1037, -514], [1039, -516], [1039, -517], [1038, -517], [1037, -518], [1035, -518], [1034, -519], [1032, -519], [1031, -520], [1030, -520], [1031, -521], [1031, -522], [1032, -523], [1032, -525], [1031, -526], [1032, -527], [1034, -527], [1035, -526], [1035, -524], [1036, -523], [1036, -521], [1040, -521], [1040, -532], [1038, -532], [1036, -534], [1036, -536], [1037, -537], [1037, -538], [1038, -539], [1038, -540], [1040, -542], [1046, -542], [1049, -539], [1049, -536], [1051, -538], [1051, -539], [1052, -540], [1053, -540], [1054, -541], [1057, -541], [1060, -538], [1060, -537], [1061, -537], [1062, -538], [1062, -539], [1063, -540], [1063, -541], [1064, -542], [1065, -542], [1066, -543], [1069, -543], [1072, -540], [1072, -539], [1074, -539], [1074, -540], [1078, -544], [1082, -544], [1086, -540], [1086, -539], [1088, -539], [1090, -541], [1091, -541], [1092, -542], [1095, -542], [1096, -541], [1097, -541], [1099, -539], [1100, -539], [1101, -540], [1101, -541], [1104, -544], [1105, -544], [1107, -546], [1113, -546], [1114, -545], [1115, -545], [1117, -543], [1117, -542], [1118, -541], [1118, -538], [1119, -538], [1119, -539], [1121, -541], [1127, -541], [1129, -543], [1132, -543], [1133, -544], [1135, -544], [1136, -543], [1138, -543], [1140, -541], [1144, -541], [1145, -542], [1148, -542], [1149, -541], [1151, -541], [1151, -542], [1153, -544], [1153, -545], [1155, -547], [1156, -547], [1157, -548], [1161, -548], [1162, -547], [1163, -547], [1164, -546], [1165, -546], [1169, -542], [1169, -538], [1168, -537], [1167, -537], [1164, -534], [1163, -534], [1164, -532], [1179, -532], [1180, -533], [1195, -533], [1197, -531], [1198, -531], [1202, -527], [1202, -526], [1203, -525], [1203, -524], [1205, -522], [1205, -521], [1207, -519], [1208, -519], [1209, -518], [1210, -518], [1211, -517], [1213, -517], [1214, -516], [1215, -516], [1217, -514], [1217, -507], [1217, -506], [1215, -504]]}, "center": {"208-248": [1111, -523], "249-258, T": [1133, -523]}}, {"id": 4900, "name": "Johannes Von Baumann", "description": "One of the combat characters in the Ordem Paranormal based RPG \"Contos da Floresta Vermelha\", which can be translated as \"Tales of The Red Forest\". It is a character considered tank and coming from Norwegian origin, has a kind and charismatic personality. Who interprets it is \"Wendel Henrique\" from Brazil and from reddit \"Mark57449\".", "links": {"website": ["https://www.reddit.com/user/Mark57449"]}, "path": {"225-237": [[-1212, 535], [-1205, 535], [-1205, 532], [-1209, 528], [-1212, 528]]}, "center": {"225-237": [-1209, 532]}}, {"id": 4901, "name": "Los vectorgas", "description": "Es un streamer Argentino que se su apodo en estas plataformas es \"vector\" y es por eso que su comunidad se llama \"los Vectorgas\"", "links": {"website": ["https://www.twitch.tv/vector"]}, "path": {"254-259": [[-757, 239], [-740, 244], [-740, 227], [-785, 227], [-785, 244], [-741, 244]]}, "center": {"254-259": [-776, 236]}}, -{"id": 4902, "name": "Galata Tower", "description": "The Galata Tower (Turkish: Galata Kulesi), officially the Galata Tower Museum (Turkish: Galata Kulesi Müzesi), is an old Genoese tower in the Galata part of the Beyoğlu district of Istanbul, Turkey. Built as a watchtower at the highest point of the (lost) Walls of Galata, During the Byzantine period the Emperor Justinian had a tower erected in what was to become Galata.", "links": {"website": ["https://en.wikipedia.org/wiki/Galata_Tower"], "subreddit": ["Turkey", "istanbul"]}, "path": {"199-258": [[-247, 444], [-247, 435], [-248, 434], [-249, 434], [-249, 433], [-249, 432], [-248, 432], [-248, 431], [-247, 431], [-247, 426], [-246, 426], [-246, 424], [-247, 424], [-247, 423], [-247, 422], [-246, 422], [-246, 421], [-246, 420], [-245, 420], [-245, 419], [-245, 418], [-244, 418], [-244, 417], [-244, 416], [-244, 415], [-244, 414], [-243, 414], [-242, 413], [-242, 403], [-240, 403], [-240, 413], [-239, 413], [-239, 414], [-238, 414], [-238, 415], [-238, 418], [-237, 418], [-237, 420], [-236, 420], [-236, 422], [-235, 422], [-235, 424], [-236, 424], [-236, 426], [-235, 426], [-235, 429], [-234, 429], [-234, 432], [-233, 432], [-233, 434], [-234, 434], [-235, 435], [-235, 444], [-235, 445], [-247, 445]]}, "center": {"199-258": [-241, 432]}}, -{"id": 4903, "name": "D&D", "description": "This is the logo of the popular tabletop RPG (Role-Playing Game) Dungeons and Dragons (D&D). Like most RPGs, the game consists of creating a character based off of a class, race, background, etc. \nThe game is played through curated camapaigns and missions or custom ones. Dungeons and Dragons is owned by Wizards of the Coast.", "links": {"website": ["https://dnd.wizards.com/"], "subreddit": ["DnD"], "discord": ["dnd"]}, "path": {"250-258": [[-1388, -640], [-1357, -640], [-1357, -627], [-1388, -627]]}, "center": {"250-258": [-1372, -633]}}, +{"id": 4902, "name": "Galata Tower", "description": "The Galata Tower (Turkish: Galata Kulesi), officially the Galata Tower Museum (Turkish: Galata Kulesi Müzesi), is an old Genoese tower in the Galata part of the Beyoğlu district of Istanbul, Turkey. Built as a watchtower at the highest point of the (lost) Walls of Galata, During the Byzantine period the Emperor Justinian had a tower erected in what was to become Galata.", "links": {"website": ["https://en.wikipedia.org/wiki/Galata_Tower"], "subreddit": ["Turkey", "istanbul"]}, "path": {"199-258, T": [[-247, 444], [-247, 435], [-248, 434], [-249, 434], [-249, 433], [-249, 432], [-248, 432], [-248, 431], [-247, 431], [-247, 426], [-246, 426], [-246, 424], [-247, 424], [-247, 423], [-247, 422], [-246, 422], [-246, 421], [-246, 420], [-245, 420], [-245, 419], [-245, 418], [-244, 418], [-244, 417], [-244, 416], [-244, 415], [-244, 414], [-243, 414], [-242, 413], [-242, 403], [-240, 403], [-240, 413], [-239, 413], [-239, 414], [-238, 414], [-238, 415], [-238, 418], [-237, 418], [-237, 420], [-236, 420], [-236, 422], [-235, 422], [-235, 424], [-236, 424], [-236, 426], [-235, 426], [-235, 429], [-234, 429], [-234, 432], [-233, 432], [-233, 434], [-234, 434], [-235, 435], [-235, 444], [-235, 445], [-247, 445]]}, "center": {"199-258, T": [-241, 432]}}, +{"id": 4903, "name": "D&D", "description": "This is the logo of the popular tabletop RPG (Role-Playing Game) Dungeons and Dragons (D&D). Like most RPGs, the game consists of creating a character based off of a class, race, background, etc. \nThe game is played through curated camapaigns and missions or custom ones. Dungeons and Dragons is owned by Wizards of the Coast.", "links": {"website": ["https://dnd.wizards.com/"], "subreddit": ["DnD"], "discord": ["dnd"]}, "path": {"250-258, T": [[-1388, -640], [-1357, -640], [-1357, -627], [-1388, -627]]}, "center": {"250-258, T": [-1372, -633]}}, {"id": 4905, "name": "Ducks United", "description": "The great union of ducks from mutliple subreddit all united under one banner (https://discord.gg/ySXpJwzTzs)\",", "links": {"subreddit": ["placeducks", "duck_place", "shareducks"], "discord": ["ySXpJwzTzs"]}, "path": {"42-73": [[288, -49], [288, -21], [313, -21], [313, -50], [288, -50]]}, "center": {"42-73": [301, -35]}}, -{"id": 4906, "name": "Flag of Cambodia", "description": "Flag of the Kingdom of Cambodia. \tThree horizontal bands of blue, red (double width) and blue, with a depiction of Angkor Wat in white centred on the red band.", "links": {"subreddit": ["Cambodia"]}, "path": {"242-258": [[-1499, 207], [-1474, 207], [-1474, 226], [-1499, 226]]}, "center": {"242-258": [-1486, 217]}}, -{"id": 4907, "name": "Novakukis", "description": "Emikukis y JustNova, son unos creadores de contenido en Youtube y en Twitch. Ambos son muy shipeados por sus comunidades", "links": {"subreddit": ["Emikuki"]}, "path": {"250-258": [[-405, -815], [-388, -815], [-388, -808], [-405, -808]]}, "center": {"250-258": [-396, -811]}}, -{"id": 4908, "name": "Coat of arms of Ödenburg/Sopron", "description": "Sopron or in German Ödenburg is a city in Hungary. \n\nAfter World War I it was planned by the Allied Powers that Ödenburg would become the capital of the state Burgenland, but in a controversial plebiscite the people chose to be part of Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Sopron", "https://en.wikipedia.org/wiki/1921_Sopron_plebiscite"]}, "path": {"223-258": [[21, -57], [29, -57], [29, -50], [26, -47], [24, -47], [21, -50]]}, "center": {"223-258": [25, -53]}}, -{"id": 4909, "name": "NF", "description": "\"NF\" representa a un streamer español almejita", "links": {"website": ["https://www.twitch.tv/aldo_geo"], "subreddit": ["Pendegeos"]}, "path": {"120-258": [[-654, 433], [-654, 450], [-635, 450], [-635, 433], [-641, 433], [-643, 431], [-645, 431], [-646, 433], [-653, 430], [-634, 430], [-634, 447], [-654, 447], [-654, 430], [-653, 449], [-634, 447], [-633, 431], [-653, 430]]}, "center": {"120-258": [-644, 440]}}, -{"id": 4910, "name": "Olliegamerz", "description": "Skin de Minecraft de Olliegamerz, creador de contenido y streamer!", "links": {"website": ["https://linktr.ee/olliegamerz", "https://www.twitch.tv/olliegamerz"], "subreddit": ["olliegamerz"], "discord": ["ollie"]}, "path": {"127-251": [[260, -1], [269, -1], [269, 8], [260, 8]]}, "center": {"127-251": [265, 4]}}, -{"id": 4911, "name": "Scaramouche (Balladeer/ Wanderer)", "description": "A playable 5-star character from the game Genshin Impact. He a catalyst user and can fly using his skill. He has been through a lot.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Scaramouche", "https://genshin.hoyoverse.com/en/home", "https://youtu.be/NHEE_-87mNE?si=bGT3jd6Ycooiw20Q"], "subreddit": ["Genshin_Impact", "ScaramoucheMains"]}, "path": {"233-258": [[1194, -450], [1194, -456], [1195, -456], [1195, -457], [1196, -457], [1197, -458], [1198, -457], [1199, -457], [1200, -456], [1200, -450], [1194, -450], [1194, -451]]}, "center": {"233-258": [1197, -453]}}, -{"id": 4912, "name": "Tartaglia (Childe)", "description": "A playable Hydro 5-Star character from the game Genshin Impact. He uses a bow as his main weapon and can change into melee form when using his skill. He is number Eleven of the Fatui Harbingers.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Tartaglia", "https://genshin.hoyoverse.com/en/home", "https://youtu.be/3f2-EANyrNM?si=BqYDK1lOgx4mCSPU"], "subreddit": ["Genshin_Impact", "childemains"]}, "path": {"231-258": [[1188, -451], [1188, -457], [1189, -457], [1190, -458], [1191, -457], [1192, -457], [1192, -451], [1188, -451], [1188, -450], [1192, -450]]}, "center": {"231-258": [1190, -454]}}, -{"id": 4913, "name": "Jschlatt", "description": "Drawing of the goat from the famous Youtuber and (not so often) Streamer Jschlatt. His main youtube channels are \"jschlatt\", \"jschlattLIVE\" and \"Big guy\". \n\nHe will always be remembered for what he did in 1999. \nRIP 🙏", "links": {"website": ["https://www.youtube.com/@jschlattLIVE/channels"]}, "path": {"250-258": [[-1046, -215], [-1037, -215], [-1037, -204], [-1046, -204]]}, "center": {"250-258": [-1041, -209]}}, -{"id": 4914, "name": "Bullet Train Cat (The Battle Cats)", "description": "Bullet Train Cat is a unit in The Battle Cats (Japanese name: にゃんこ大戦争, Nyanko Great War), a simple mobile free-to-play tower defense game for iOS and Android, developed by the Japanese game company PONOS Corporation. It has since gained a large player base. The Bullet Train Cat unit is infamously known for being a top tier kamikaze unit that can deal high damage quickly and moves at very high speeds. The description states that it can carry 2222 passengers on a round-the-world journey at 20,000,000 km/h.", "links": {"website": ["https://battlecats.club/en/", "https://battle-cats.fandom.com/wiki/Express_Cat_(Super_Rare_Cat)"], "subreddit": ["battlecats"], "discord": ["battlecats"]}, "path": {"219-258": [[1042, -410], [1068, -406], [1074, -401], [1078, -400], [1079, -399], [1070, -396], [1061, -390], [1026, -390], [1020, -392], [1021, -398], [1033, -406]]}, "center": {"219-258": [1045, -400]}}, -{"id": 4915, "name": "r/crochet granny square", "description": "A granny square is a square piece of handmade fabric, made through the crochet technique. It's made up of several rounds of clusters which are made into the spaces between clusters on the previous round, from the center outwards. The colored T's represent these clusters, the white pixels (some of which stayed unchanged from the expansion of the canvas to the whiteout) represent the holes in the fabric, giving a granny square a lacy effect. A granny square is made by using a crochet hook, which is pictured to the right of the square, and yarn. Often different colors of yarn are used for different rounds, which is also represented in the artwork. Underneath the square and the hook, the subreddit name is written. Like most crochet, it's impossible to manufacture granny squares by machine. These squares are commonly sewn together to make blankets or garments, and date back to 1885.\n\nr/crochet is the home of crocheters on Reddit, where crocheters gather to share their work, ask for help, and cheer on others' progress.", "links": {"subreddit": ["crochet"]}, "path": {"155-258": [[-787, 894], [-751, 894], [-751, 930], [-787, 930]]}, "center": {"155-258": [-769, 912]}}, -{"id": 4916, "name": "James Webb Space Telescope", "description": "The James Webb Space Telescope (JWST) is the largest space telescope, made to conduct infrared astronomy. It was made with a colaboration with the Dutch", "links": {"website": ["https://webb.nasa.gov/"], "subreddit": ["jwst", "placenl"]}, "path": {"218-258": [[-570, -525], [-548, -525], [-548, -504], [-547, -503], [-546, -502], [-546, -498], [-548, -496], [-548, -488], [-570, -488], [-570, -497], [-571, -497], [-572, -498], [-572, -502], [-571, -503], [-570, -504], [-570, -511]]}, "center": {"218-258": [-559, -500]}}, -{"id": 4917, "name": "DitoDesign", "description": "Dito das Maskottchen vom Kanal DitoDesign", "links": {"website": ["https://twitch.tv/ditodesign"], "discord": ["6SA4BgqxBN"]}, "path": {"208-258": [[662, -926], [662, -927], [658, -926], [657, -925], [657, -921], [658, -921], [658, -920], [662, -920], [662, -921], [663, -921], [663, -925], [662, -925]]}, "center": {"208-258": [660, -923]}}, -{"id": 4918, "name": "Cube Houses", "description": "Cube houses (Dutch: kubuswoningen) are a set of innovative houses built in Helmond and Rotterdam in the Netherlands, designed by architect Piet Blom and based on the concept of \"living as an urban roof\": high-density housing with sufficient space on the ground level, since its main purpose is to optimize the space inside.", "links": {"website": ["https://en.wikipedia.org/wiki/Cube_house"], "subreddit": ["PlaceNL"], "discord": ["placenl"], "wiki": ["Cube_Houses"]}, "path": {"250-258": [[-1485, -470], [-1491, -476], [-1499, -468], [-1499, -463], [-1493, -458], [-1493, -451], [-1490, -451], [-1490, -457], [-1488, -457], [-1486, -460], [-1481, -458], [-1481, -451], [-1479, -451], [-1479, -457], [-1472, -461], [-1470, -458], [-1470, -450], [-1467, -451], [-1466, -457], [-1461, -461], [-1458, -458], [-1458, -450], [-1454, -450], [-1454, -457], [-1452, -457], [-1447, -464], [-1447, -468], [-1455, -476], [-1461, -469], [-1466, -476], [-1473, -470], [-1479, -476]]}, "center": {"250-258": [-1479, -466]}}, -{"id": 4919, "name": "Rapturrs", "description": "quality pepega streamer reformed. streamer español con contenido variado pero lo mismo abre stream a las 4 de la tarde que a las 2 de la mañana, ven a verlo! \nquality pepega streamer reformed. spanish streamer with varied content but the same stream opens at 4 in the afternoon as at 2 in the morning, come and see it!", "links": {"website": ["https://www.twitch.tv/rapturrs", "https://twitter.com/rapturrs", "https://www.instagram.com/rapturss/"], "subreddit": ["rapturs"], "discord": ["rapturs"]}, "path": {"250-258": [[-253, 925], [-226, 925], [-226, 930], [-225, 930], [-225, 935], [-239, 935], [-239, 939], [-250, 939], [-250, 930], [-253, 930]]}, "center": {"250-258": [-244, 931]}}, -{"id": 4920, "name": "Kirby", "description": "Kirby is the titular protagonist of the Kirby video game series, developed by HAL Laboratory and published by Nintendo. This art features Kirby sitting on Kim Dokja, the protagonist of the novel/ manhwa/ webtoon Omniscient Reader's Viewpoint.", "links": {"website": ["https://kirby.nintendo.com/", "https://en.wikipedia.org/wiki/Kirby_(character)"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[100, 862], [107, 862], [107, 867], [100, 867]]}, "center": {"250-258": [104, 865]}}, -{"id": 4921, "name": "Illimani Mountain", "description": "Illimani (Aymara and Spanish pronunciation: [iʎiˈmani]) is the highest mountain in the Cordillera Real (part of the Cordillera Oriental, a subrange of the Andes) of western Bolivia. It lies near the cities of El Alto and La Paz at the eastern edge of the Altiplano. The mountain has been the subject of many local songs.", "links": {"website": ["https://en.wikipedia.org/wiki/Illimani"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[150, -26], [150, -29], [159, -38], [188, -38], [199, -26]]}, "center": {"250-258": [175, -32]}}, +{"id": 4906, "name": "Flag of Cambodia", "description": "Flag of the Kingdom of Cambodia. \tThree horizontal bands of blue, red (double width) and blue, with a depiction of Angkor Wat in white centred on the red band.", "links": {"subreddit": ["Cambodia"]}, "path": {"242-258, T": [[-1499, 207], [-1474, 207], [-1474, 226], [-1499, 226]]}, "center": {"242-258, T": [-1486, 217]}}, +{"id": 4907, "name": "Novakukis", "description": "Emikukis y JustNova, son unos creadores de contenido en Youtube y en Twitch. Ambos son muy shipeados por sus comunidades", "links": {"subreddit": ["Emikuki"]}, "path": {"250-258, T": [[-405, -815], [-388, -815], [-388, -808], [-405, -808]]}, "center": {"250-258, T": [-396, -811]}}, +{"id": 4908, "name": "Coat of arms of Ödenburg/Sopron", "description": "Sopron or in German Ödenburg is a city in Hungary. \n\nAfter World War I it was planned by the Allied Powers that Ödenburg would become the capital of the state Burgenland, but in a controversial plebiscite the people chose to be part of Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Sopron", "https://en.wikipedia.org/wiki/1921_Sopron_plebiscite"]}, "path": {"223-258, T": [[21, -57], [29, -57], [29, -50], [26, -47], [24, -47], [21, -50]]}, "center": {"223-258, T": [25, -53]}}, +{"id": 4909, "name": "NF", "description": "\"NF\" representa a un streamer español almejita", "links": {"website": ["https://www.twitch.tv/aldo_geo"], "subreddit": ["Pendegeos"]}, "path": {"120-258, T": [[-654, 433], [-654, 450], [-635, 450], [-635, 433], [-641, 433], [-643, 431], [-645, 431], [-646, 433], [-653, 430], [-634, 430], [-634, 447], [-654, 447], [-654, 430], [-653, 449], [-634, 447], [-633, 431], [-653, 430]]}, "center": {"120-258, T": [-644, 440]}}, +{"id": 4910, "name": "Olliegamerz", "description": "Skin de Minecraft de Olliegamerz, creador de contenido y streamer!", "links": {"website": ["https://linktr.ee/olliegamerz", "https://www.twitch.tv/olliegamerz"], "subreddit": ["olliegamerz"], "discord": ["ollie"]}, "path": {"127-251, T": [[260, -1], [269, -1], [269, 8], [260, 8]]}, "center": {"127-251, T": [265, 4]}}, +{"id": 4911, "name": "Scaramouche (Balladeer/ Wanderer)", "description": "A playable 5-star character from the game Genshin Impact. He a catalyst user and can fly using his skill. He has been through a lot.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Scaramouche", "https://genshin.hoyoverse.com/en/home", "https://youtu.be/NHEE_-87mNE?si=bGT3jd6Ycooiw20Q"], "subreddit": ["Genshin_Impact", "ScaramoucheMains"]}, "path": {"233-258, T": [[1194, -450], [1194, -456], [1195, -456], [1195, -457], [1196, -457], [1197, -458], [1198, -457], [1199, -457], [1200, -456], [1200, -450], [1194, -450], [1194, -451]]}, "center": {"233-258, T": [1197, -453]}}, +{"id": 4912, "name": "Tartaglia (Childe)", "description": "A playable Hydro 5-Star character from the game Genshin Impact. He uses a bow as his main weapon and can change into melee form when using his skill. He is number Eleven of the Fatui Harbingers.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Tartaglia", "https://genshin.hoyoverse.com/en/home", "https://youtu.be/3f2-EANyrNM?si=BqYDK1lOgx4mCSPU"], "subreddit": ["Genshin_Impact", "childemains"]}, "path": {"231-258, T": [[1188, -451], [1188, -457], [1189, -457], [1190, -458], [1191, -457], [1192, -457], [1192, -451], [1188, -451], [1188, -450], [1192, -450]]}, "center": {"231-258, T": [1190, -454]}}, +{"id": 4913, "name": "Jschlatt", "description": "Drawing of the goat from the famous Youtuber and (not so often) Streamer Jschlatt. His main youtube channels are \"jschlatt\", \"jschlattLIVE\" and \"Big guy\". \n\nHe will always be remembered for what he did in 1999. \nRIP 🙏", "links": {"website": ["https://www.youtube.com/@jschlattLIVE/channels"]}, "path": {"250-258, T": [[-1046, -215], [-1037, -215], [-1037, -204], [-1046, -204]]}, "center": {"250-258, T": [-1041, -209]}}, +{"id": 4914, "name": "Bullet Train Cat (The Battle Cats)", "description": "Bullet Train Cat is a unit in The Battle Cats (Japanese name: にゃんこ大戦争, Nyanko Great War), a simple mobile free-to-play tower defense game for iOS and Android, developed by the Japanese game company PONOS Corporation. It has since gained a large player base. The Bullet Train Cat unit is infamously known for being a top tier kamikaze unit that can deal high damage quickly and moves at very high speeds. The description states that it can carry 2222 passengers on a round-the-world journey at 20,000,000 km/h.", "links": {"website": ["https://battlecats.club/en/", "https://battle-cats.fandom.com/wiki/Express_Cat_(Super_Rare_Cat)"], "subreddit": ["battlecats"], "discord": ["battlecats"]}, "path": {"219-258, T": [[1042, -410], [1068, -406], [1074, -401], [1078, -400], [1079, -399], [1070, -396], [1061, -390], [1026, -390], [1020, -392], [1021, -398], [1033, -406]]}, "center": {"219-258, T": [1045, -400]}}, +{"id": 4915, "name": "r/crochet granny square", "description": "A granny square is a square piece of handmade fabric, made through the crochet technique. It's made up of several rounds of clusters which are made into the spaces between clusters on the previous round, from the center outwards. The colored T's represent these clusters, the white pixels (some of which stayed unchanged from the expansion of the canvas to the whiteout) represent the holes in the fabric, giving a granny square a lacy effect. A granny square is made by using a crochet hook, which is pictured to the right of the square, and yarn. Often different colors of yarn are used for different rounds, which is also represented in the artwork. Underneath the square and the hook, the subreddit name is written. Like most crochet, it's impossible to manufacture granny squares by machine. These squares are commonly sewn together to make blankets or garments, and date back to 1885.\n\nr/crochet is the home of crocheters on Reddit, where crocheters gather to share their work, ask for help, and cheer on others' progress.", "links": {"subreddit": ["crochet"]}, "path": {"155-258, T": [[-787, 894], [-751, 894], [-751, 930], [-787, 930]]}, "center": {"155-258, T": [-769, 912]}}, +{"id": 4916, "name": "James Webb Space Telescope", "description": "The James Webb Space Telescope (JWST) is the largest space telescope, made to conduct infrared astronomy. It was made with a colaboration with the Dutch", "links": {"website": ["https://webb.nasa.gov/"], "subreddit": ["jwst", "placenl"]}, "path": {"218-258, T": [[-570, -525], [-548, -525], [-548, -504], [-547, -503], [-546, -502], [-546, -498], [-548, -496], [-548, -488], [-570, -488], [-570, -497], [-571, -497], [-572, -498], [-572, -502], [-571, -503], [-570, -504], [-570, -511]]}, "center": {"218-258, T": [-559, -500]}}, +{"id": 4917, "name": "DitoDesign", "description": "Dito das Maskottchen vom Kanal DitoDesign", "links": {"website": ["https://twitch.tv/ditodesign"], "discord": ["6SA4BgqxBN"]}, "path": {"208-258, T": [[662, -926], [662, -927], [658, -926], [657, -925], [657, -921], [658, -921], [658, -920], [662, -920], [662, -921], [663, -921], [663, -925], [662, -925]]}, "center": {"208-258, T": [660, -923]}}, +{"id": 4918, "name": "Cube Houses", "description": "Cube houses (Dutch: kubuswoningen) are a set of innovative houses built in Helmond and Rotterdam in the Netherlands, designed by architect Piet Blom and based on the concept of \"living as an urban roof\": high-density housing with sufficient space on the ground level, since its main purpose is to optimize the space inside.", "links": {"website": ["https://en.wikipedia.org/wiki/Cube_house"], "subreddit": ["PlaceNL"], "discord": ["placenl"], "wiki": ["Cube_Houses"]}, "path": {"250-258, T": [[-1485, -470], [-1491, -476], [-1499, -468], [-1499, -463], [-1493, -458], [-1493, -451], [-1490, -451], [-1490, -457], [-1488, -457], [-1486, -460], [-1481, -458], [-1481, -451], [-1479, -451], [-1479, -457], [-1472, -461], [-1470, -458], [-1470, -450], [-1467, -451], [-1466, -457], [-1461, -461], [-1458, -458], [-1458, -450], [-1454, -450], [-1454, -457], [-1452, -457], [-1447, -464], [-1447, -468], [-1455, -476], [-1461, -469], [-1466, -476], [-1473, -470], [-1479, -476]]}, "center": {"250-258, T": [-1479, -466]}}, +{"id": 4919, "name": "Rapturrs", "description": "quality pepega streamer reformed. streamer español con contenido variado pero lo mismo abre stream a las 4 de la tarde que a las 2 de la mañana, ven a verlo! \nquality pepega streamer reformed. spanish streamer with varied content but the same stream opens at 4 in the afternoon as at 2 in the morning, come and see it!", "links": {"website": ["https://www.twitch.tv/rapturrs", "https://twitter.com/rapturrs", "https://www.instagram.com/rapturss/"], "subreddit": ["rapturs"], "discord": ["rapturs"]}, "path": {"250-258, T": [[-253, 925], [-226, 925], [-226, 930], [-225, 930], [-225, 935], [-239, 935], [-239, 939], [-250, 939], [-250, 930], [-253, 930]]}, "center": {"250-258, T": [-244, 931]}}, +{"id": 4920, "name": "Kirby", "description": "Kirby is the titular protagonist of the Kirby video game series, developed by HAL Laboratory and published by Nintendo. This art features Kirby sitting on Kim Dokja, the protagonist of the novel/ manhwa/ webtoon Omniscient Reader's Viewpoint.", "links": {"website": ["https://kirby.nintendo.com/", "https://en.wikipedia.org/wiki/Kirby_(character)"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[100, 862], [107, 862], [107, 867], [100, 867]]}, "center": {"250-258, T": [104, 865]}}, +{"id": 4921, "name": "Illimani Mountain", "description": "Illimani (Aymara and Spanish pronunciation: [iʎiˈmani]) is the highest mountain in the Cordillera Real (part of the Cordillera Oriental, a subrange of the Andes) of western Bolivia. It lies near the cities of El Alto and La Paz at the eastern edge of the Altiplano. The mountain has been the subject of many local songs.", "links": {"website": ["https://en.wikipedia.org/wiki/Illimani"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[150, -26], [150, -29], [159, -38], [188, -38], [199, -26]]}, "center": {"250-258, T": [175, -32]}}, {"id": 4922, "name": "Nail from Hollow Knight", "description": "The primary weapon used by the titular character in popular Indie Game 'Hollow Knight'.", "links": {"subreddit": ["HollowKnight", "HKplace2023", "HKPlace"]}, "path": {"242": [[485, 63], [485, 70], [487, 63], [487, 70], [491, 70], [491, 73], [490, 73], [490, 78], [489, 78], [489, 83], [488, 83], [488, 87], [487, 87], [487, 92], [486, 92], [486, 94], [486, 95], [486, 92], [485, 92], [485, 87], [484, 87], [484, 83], [483, 83], [483, 78], [482, 78], [482, 73], [481, 73], [481, 70], [485, 70], [486, 63]]}, "center": {"242": [486, 75]}}, -{"id": 4923, "name": "ZUTOMAYO (Uniguri)", "description": "Uniguri is a hedgehog featured throughout ZUTOMAYO's music videos.\n\nArt created by the unofficial fan server ZUTOMAYO ZONE.", "links": {"website": ["https://zutomayo.net"], "subreddit": ["ZUTOMAYO"], "discord": ["zutomayo"]}, "path": {"250-258": [[-299, 861], [-299, 882], [-281, 882], [-281, 861]]}, "center": {"250-258": [-290, 872]}}, -{"id": 4924, "name": "Lucky Luke", "description": "Lucky Luke is a Western bande dessinée series created by Belgian cartoonist Morris in 1946. \nLucky Luke is one of the best-known and best-selling comics series in Europe. It has been translated into 23 languages. 82 albums have appeared in the series as of 2022. \nThe series takes place in the American Old West of the United States. It stars the titular Lucky Luke, a street-smart gunslinger known as the \"man who shoots faster than his shadow\", and his intelligent horse Jolly Jumper. Lucky Luke is pitted against various villains, either fictional or inspired by American history or folklore. The most famous of these are the Dalton Brothers, loosely based on the Dalton Gang of the early 1890s and claimed to be their cousins. The stories are filled with humorous elements parodying the Western genre.", "links": {"website": ["https://en.wikipedia.org/wiki/Lucky_Luke"]}, "path": {"199-258": [[792, 504], [822, 504], [821, 539], [793, 539], [792, 505]]}, "center": {"199-258": [807, 519]}}, +{"id": 4923, "name": "ZUTOMAYO (Uniguri)", "description": "Uniguri is a hedgehog featured throughout ZUTOMAYO's music videos.\n\nArt created by the unofficial fan server ZUTOMAYO ZONE.", "links": {"website": ["https://zutomayo.net"], "subreddit": ["ZUTOMAYO"], "discord": ["zutomayo"]}, "path": {"250-258, T": [[-299, 861], [-299, 882], [-281, 882], [-281, 861]]}, "center": {"250-258, T": [-290, 872]}}, +{"id": 4924, "name": "Lucky Luke", "description": "Lucky Luke is a Western bande dessinée series created by Belgian cartoonist Morris in 1946. \nLucky Luke is one of the best-known and best-selling comics series in Europe. It has been translated into 23 languages. 82 albums have appeared in the series as of 2022. \nThe series takes place in the American Old West of the United States. It stars the titular Lucky Luke, a street-smart gunslinger known as the \"man who shoots faster than his shadow\", and his intelligent horse Jolly Jumper. Lucky Luke is pitted against various villains, either fictional or inspired by American history or folklore. The most famous of these are the Dalton Brothers, loosely based on the Dalton Gang of the early 1890s and claimed to be their cousins. The stories are filled with humorous elements parodying the Western genre.", "links": {"website": ["https://en.wikipedia.org/wiki/Lucky_Luke"]}, "path": {"199-258, T": [[792, 504], [822, 504], [821, 539], [793, 539], [792, 505]]}, "center": {"199-258, T": [807, 519]}}, {"id": 4925, "name": "TOKÉBAKICITTE", "description": "TOKÉBAKICITTE is a quebec slang, the english equivalent would be \"we're in quebec here\". it was popularise by a song also name TOKÉBAKICITTE made by \"JÉRÔME 50\".", "links": {"website": ["https://www.youtube.com/watch?v=4oclkgHvgM8&ab_channel=J%C3%A9r%C3%B4me50"]}, "path": {"26-49": [[460, 143], [460, 157], [495, 156], [495, 143], [477, 141]]}, "center": {"26-49": [477, 149]}}, -{"id": 4926, "name": "OV-chipkaart", "description": "The dutch public transportation card used to check in and out of public transportation and a method to pay", "links": {"website": ["https://www.ov-chipkaart.nl/"]}, "path": {"218-258": [[-1143, -507], [-1143, -509], [-1119, -509], [-1119, -508], [-1118, -508], [-1118, -507], [-1117, -507], [-1117, -494], [-1118, -494], [-1118, -493], [-1119, -493], [-1119, -492], [-1143, -492], [-1143, -493], [-1144, -493], [-1144, -494], [-1145, -494], [-1145, -507], [-1144, -507], [-1144, -508], [-1143, -508], [-1117, -507], [-1115, -507], [-1114, -507], [-1114, -508], [-1119, -508], [-1119, -509], [-1113, -509], [-1089, -509], [-1089, -508], [-1088, -508], [-1088, -507], [-1087, -507], [-1087, -494], [-1088, -494], [-1088, -493], [-1089, -493], [-1089, -492], [-1119, -492]]}, "center": {"218-258": [-1102, -500]}}, -{"id": 4927, "name": "Sunfish", "description": "In the web novel/manhwa/webtoon Omniscient Reader's Viewpoint, the co-protagonist Yoo Joonghyuk is often called a Sunfish by the protagonist Kim Dokja. This refers to the game \"Survive! Mola Mola,\" where a sunfish must be kept alive and navigate the dangers of the sea. However, the sunfish easily dies from various causes, requiring players to start over many times. This parallels how Yoo Joonghyuk needed over a thousand rounds to reach a conclusive end to scenarios and how he died easily, especially in the early rounds.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154", "https://omniscient-readers-viewpoint.fandom.com/wiki/Yoo_Joonghyuk"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[90, 877], [91, 877], [92, 878], [93, 877], [93, 876], [94, 877], [95, 878], [96, 878], [97, 879], [97, 881], [96, 882], [94, 882], [94, 883], [93, 884], [90, 884]]}, "center": {"250-258": [93, 880]}}, -{"id": 4928, "name": "danger/u/", "description": "'Dangerous Opinions'. The logo of a fictional, 4chan-like messageboard featured in the video game VA-11 HALL-A, which Jill frequents. It was later made into a real site by fans.", "links": {"website": ["https://dangeru.us/"]}, "path": {"250-258": [[1336, -175], [1336, -169], [1342, -169], [1342, -175]]}, "center": {"250-258": [1339, -172]}}, +{"id": 4926, "name": "OV-chipkaart", "description": "The dutch public transportation card used to check in and out of public transportation and a method to pay", "links": {"website": ["https://www.ov-chipkaart.nl/"]}, "path": {"218-258, T": [[-1143, -507], [-1143, -509], [-1119, -509], [-1119, -508], [-1118, -508], [-1118, -507], [-1117, -507], [-1117, -494], [-1118, -494], [-1118, -493], [-1119, -493], [-1119, -492], [-1143, -492], [-1143, -493], [-1144, -493], [-1144, -494], [-1145, -494], [-1145, -507], [-1144, -507], [-1144, -508], [-1143, -508], [-1117, -507], [-1115, -507], [-1114, -507], [-1114, -508], [-1119, -508], [-1119, -509], [-1113, -509], [-1089, -509], [-1089, -508], [-1088, -508], [-1088, -507], [-1087, -507], [-1087, -494], [-1088, -494], [-1088, -493], [-1089, -493], [-1089, -492], [-1119, -492]]}, "center": {"218-258, T": [-1102, -500]}}, +{"id": 4927, "name": "Sunfish", "description": "In the web novel/manhwa/webtoon Omniscient Reader's Viewpoint, the co-protagonist Yoo Joonghyuk is often called a Sunfish by the protagonist Kim Dokja. This refers to the game \"Survive! Mola Mola,\" where a sunfish must be kept alive and navigate the dangers of the sea. However, the sunfish easily dies from various causes, requiring players to start over many times. This parallels how Yoo Joonghyuk needed over a thousand rounds to reach a conclusive end to scenarios and how he died easily, especially in the early rounds.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154", "https://omniscient-readers-viewpoint.fandom.com/wiki/Yoo_Joonghyuk"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[90, 877], [91, 877], [92, 878], [93, 877], [93, 876], [94, 877], [95, 878], [96, 878], [97, 879], [97, 881], [96, 882], [94, 882], [94, 883], [93, 884], [90, 884]]}, "center": {"250-258, T": [93, 880]}}, +{"id": 4928, "name": "danger/u/", "description": "'Dangerous Opinions'. The logo of a fictional, 4chan-like messageboard featured in the video game VA-11 HALL-A, which Jill frequents. It was later made into a real site by fans.", "links": {"website": ["https://dangeru.us/"]}, "path": {"250-258, T": [[1336, -175], [1336, -169], [1342, -169], [1342, -175]]}, "center": {"250-258, T": [1339, -172]}}, {"id": 4929, "name": "James Marriott MC skin", "description": "James Marriott, is an English Twitch streamer/Youtuber, as well as a musician, he makes incredible music, perhaps you should go check him out, as you can see here this is his Minecraft skin", "links": {"website": ["https://www.youtube.com/@jamesmarriottlive", "https://www.youtube.com/@JamesMarriottOfficial"], "subreddit": ["JamesMarriott"]}, "path": {"214": [[569, 500], [578, 500], [578, 509], [569, 509]]}, "center": {"214": [574, 505]}}, -{"id": 4930, "name": "Cucurucho", "description": "An entity on the QSMP server. Cucurucho is a part of the QSMP federation, it is often seen observing islanders, blowing bubbles, making sure that the server rules are being followed and asking players a set of questions about their pasts.\n\nIts signature catchphrase is \"I hope you enjoy the island\" or \"Disfruta la isla\" in spanish", "links": {"website": ["https://qsmp.fandom.com/wiki/Cucurucho"]}, "path": {"250-258": [[488, 476], [499, 476], [499, 487], [488, 487], [488, 481]]}, "center": {"250-258": [494, 482]}}, -{"id": 4931, "name": "Ukraine flag on Château Frontenac", "description": "A small Ukraine flag place on top of the Château Frontenac to show support to Ukraine from Quebec.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine"]}, "path": {"99-183": [[598, 157], [591, 157], [591, 162], [598, 162], [598, 167]], "198-258": [[600, 162], [606, 162], [606, 157], [600, 157], [600, 167]]}, "center": {"99-183": [595, 160], "198-258": [603, 160]}}, -{"id": 4932, "name": "Royal Palace of Amsterdam", "description": "The Royal Palace of Amsterdam in Amsterdam (Dutch: Koninklijk Paleis van Amsterdam or Paleis op de Dam) is one of three palaces in the Netherlands which are at the disposal of the monarch by Act of Parliament.", "links": {"website": ["https://en.wikipedia.org/wiki/Royal_Palace_of_Amsterdam"], "subreddit": ["PlaceNL"], "discord": ["placenl"], "wiki": ["Royal_Palace_of_Amsterdam"]}, "path": {"250-258": [[-1490, -480], [-1490, -451], [-1427, -450], [-1418, -455], [-1418, -481], [-1422, -486], [-1422, -488], [-1424, -488], [-1424, -485], [-1427, -483], [-1441, -484], [-1440, -485], [-1440, -486], [-1443, -486], [-1443, -485], [-1442, -483], [-1447, -484], [-1447, -489], [-1448, -490], [-1452, -501], [-1452, -503], [-1451, -504], [-1452, -505], [-1454, -506], [-1455, -506], [-1454, -504], [-1455, -502], [-1458, -497], [-1458, -490], [-1460, -489], [-1460, -484], [-1463, -484], [-1465, -487], [-1466, -483], [-1475, -483], [-1477, -487], [-1478, -484], [-1481, -484], [-1483, -486], [-1484, -488], [-1485, -488], [-1487, -483]]}, "center": {"250-258": [-1453, -468]}}, -{"id": 4933, "name": ".Lspot 2.0 Logo Ek4te Heart", "description": "Club VR con raíces Latino Americanas. Show de LSPOT cada tres semanas, y HAF cada semana.\n.//\nVR Club rooted in Latin America. We host LSPOT every three weeks, and HAF every week.\n\n Ek4te themed heart (Turquoise and purple, characteristic hair colors)", "links": {"website": ["https://www.twitch.tv/lspot", "https://www.twitch.tv/ek4tesan"], "subreddit": ["LSPOT"], "discord": ["mM8uCV6QsQ"]}, "path": {"245-258": [[1351, 70], [1351, 82], [1374, 82], [1374, 70]]}, "center": {"245-258": [1363, 76]}}, -{"id": 4934, "name": "Ame-chan (Needy Streamer Overload) holding dutch flag", "description": "The main protagonist's full body appearance from the game \"Needy Streamer Overload\" (also known as \"Needy Girl Overdose\").\n\nNeedy Streamer Overload is a 2022 denpa-themed adventure visual novel created by Japanese developer Xemono and published by WSS Playground for macOS, Microsoft Windows, and Nintendo Switch.\n\nAme-chan is her true identity off-camera; by night she streams as \"OMGkawaiiAngel\" (or \"kAngel\" for short).", "links": {"website": ["https://store.steampowered.com/app/1451940/NEEDY_STREAMER_OVERLOAD/"], "subreddit": ["needystreameroverload"]}, "path": {"233-258": [[-1498, -549], [-1494, -547], [-1485, -547], [-1483, -548], [-1481, -542], [-1482, -534], [-1482, -532], [-1485, -534], [-1489, -533], [-1489, -531], [-1491, -531], [-1492, -533], [-1495, -534], [-1493, -538], [-1496, -543], [-1498, -535], [-1499, -536], [-1499, -545]]}, "center": {"233-258": [-1487, -541]}}, -{"id": 4935, "name": "IMMU", "description": "nom raccourcie de \"immudelki\" créateur du fan game \"IFSCL\"", "links": {}, "path": {"250-258": [[856, -699], [856, -693], [872, -693], [872, -699]]}, "center": {"250-258": [864, -696]}}, -{"id": 4936, "name": "Avec le 6 (French National Overwatch Team)", "description": "Avec le 6 (With the Six) is an association that officially represents the french national Overwatch team during the World Cup. \"Le 6\" (The Six) is a reference to the 6 players that compose an Overwatch team in a PvP match. Even though Overwatch 2 scaled down to 5v5 matches, the name remained.\n\nThe logo was built with the community of Alphacast, a former Overwatch caster and streamer.\n\n6 is written in roman numerals (VI), as a reference to the french rugby team (XV de France).", "links": {"website": ["https://www.avecle6.com/"]}, "path": {"94-159": [[-395, 372], [-389, 372], [-390, 370], [-391, 368], [-391, 367], [-382, 366], [-378, 369], [-374, 374], [-374, 375], [-376, 376], [-375, 377], [-375, 389], [-379, 393], [-383, 396], [-390, 396], [-396, 392], [-397, 388], [-396, 383], [-395, 382]], "160-258": [[-389, 375], [-386, 375], [-385, 373], [-386, 369], [-370, 369], [-370, 393], [-375, 398], [-381, 399], [-388, 398], [-392, 394], [-392, 387], [-390, 385], [-390, 375]]}, "center": {"94-159": [-385, 385], "160-258": [-381, 389]}}, -{"id": 4937, "name": ".Lspot Vrchat Logo", "description": "Club VR con raíces Latino Americanas. Show de LSPOT cada tres semanas, y HAF cada semana.\n.//\nVR Club rooted in Latin America. We host LSPOT every three weeks, and HAF every week.", "links": {"website": ["https://www.twitch.tv/lspot"], "subreddit": ["LSPOT"], "discord": ["mM8uCV6QsQ"]}, "path": {"235-258": [[-98, 355], [-98, 365], [-88, 365], [-88, 355]]}, "center": {"235-258": [-93, 360]}}, -{"id": 4938, "name": "Baguette Knight", "description": "The main character from the game Hollow Knight holding a baguette as a weapon.", "links": {"subreddit": ["HollowKnight", "HKPlace", "HKPlace2023"], "discord": ["8yb3AUYN"]}, "path": {"156-258": [[-500, 513], [-489, 513], [-489, 519], [-486, 516], [-482, 516], [-482, 530], [-500, 530]]}, "center": {"156-258": [-494, 524]}}, -{"id": 4939, "name": "Belgian Cats", "description": "This is the logo of the Belgium women's national basketball team (nicknamed Belgian Cats), which was made as a tribute to their recent gold medal in the Eurobasket 2023.\n\nThe Belgian cats represents Belgium in international women's basketball, and are controlled by Basketball Belgium. Belgium's first appearance in a major international tournament came at EuroBasket 1950. The team has participated in the European Championship fourteen times overall. Their best results at the event are winning the title in 2023, and two third place finishes (2017, and 2021). Belgium has also competed on the global stage, where they have made two appearances at the World Cup (2018, 2022), and one at the Olympic Games (2020).", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium_women%27s_national_basketball_team"]}, "path": {"46-258": [[-364, -168], [-339, -168], [-340, -135], [-363, -136], [-363, -137]]}, "center": {"46-258": [-351, -155]}}, -{"id": 4940, "name": "r/MrRobot", "description": "Fsociety - the name of the hacker group shown in the TVshow Mr. Robot.", "links": {"subreddit": ["mrrobot"], "discord": ["5arUXKsm8r"]}, "path": {"250-258": [[182, -999], [182, -989], [247, -988], [246, -991], [238, -991], [237, -1000], [182, -1000]]}, "center": {"250-258": [213, -994]}}, -{"id": 4941, "name": "Mococo Abyssgard's hairpin", "description": "Mococo Abyssgard is a virtual YouTuber and Demonic Guard Dog associated with Hololive as part of Hololive English -Advent-. This is her hairpin as seen in the BREACH PV.", "links": {"website": ["https://www.youtube.com/@FUWAMOCOch", "https://hololive.hololivepro.com/en/talents/mococo-abyssgard/", "https://www.youtube.com/watch?v=g5-VtyLYb2Y"], "subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"250-258": [[-559, -299], [-559, -297], [-561, -297], [-561, -299]]}, "center": {"250-258": [-560, -298]}}, -{"id": 4942, "name": "Setsuna Yuki", "description": "She is a main character in Love Live! Nijigasaki High School Idol Club. She was the leader and founder of the Nijigasaki High School Idol Club, often abbreviated as Nijigaku. She is a member of A・ZU・NA, a unit under said club.\n\nMade by the French community of Love Live", "links": {"website": ["https://love-live-en-francais.blogspot.com/"], "subreddit": ["lovelive"], "discord": ["lovelivefrance"]}, "path": {"211-258": [[223, -911], [223, -908], [231, -908], [231, -911]]}, "center": {"211-258": [227, -909]}}, -{"id": 4943, "name": ".Lspot Logo", "description": "Club VR con raíces Latino Americanas. Show de LSPOT cada tres semanas, y HAF cada semana.\n.//\nVR Club rooted in Latin America. We host LSPOT every three weeks, and HAF every week. \n(In collaboration with the Deltarune community, they allowed us to put our club logo in their space, forever grateful)", "links": {"website": ["https://www.twitch.tv/lspot"], "subreddit": ["LSPOT"], "discord": ["mM8uCV6QsQ"]}, "path": {"216-258": [[344, 966], [356, 966], [356, 954], [344, 954]]}, "center": {"216-258": [350, 960]}}, -{"id": 4944, "name": "Kim Dokja", "description": "Kim Dokja is the protagonist of the Korean web novel/ manhwa/ webtoon Omniscient Reader's Viewpoint. Kirby is drawn sitting on his head.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[96, 867], [100, 863], [109, 863], [109, 865], [110, 865], [110, 867], [111, 867], [111, 872], [110, 872], [109, 874], [107, 876], [108, 876], [108, 878], [109, 878], [109, 882], [111, 882], [113, 884], [113, 885], [93, 885], [93, 884], [95, 882], [96, 882], [97, 881], [97, 878], [98, 878], [99, 876], [99, 875], [98, 874], [97, 873], [97, 872], [96, 872]]}, "center": {"250-258": [103, 870]}}, -{"id": 4945, "name": "French Hornet", "description": "The protagonist of the game Hollow Knight Silksong holding a baguette as a weapon", "links": {"subreddit": ["HollowKnight", "HKPlace", "HKPlace2023"], "discord": ["8yb3AUYN"]}, "path": {"156-258": [[-369, 515], [-381, 515], [-381, 521], [-385, 519], [-389, 519], [-389, 523], [-378, 531], [-369, 531]]}, "center": {"156-258": [-375, 524]}}, -{"id": 4946, "name": "Lil Darkie, Brahman and the Peace symbol", "description": "The left artwork describes the rapper Lil Darkie and his old persona Brahman in Form of his classic cartoon character. The face splits between the light blue half for Brahman and a Black half for his new persona Lil Darkie.\n\nThe right icon is his Peace symbol wich he first used for the album cover for the single \"MONEY POWER FAME\" and his following tours. \"It just represents balance\" like Lil Darkie said on a Reddit post.\nIt is one of the many symbols people associate Darkie with.\n\nWritten by u/P-O-K-E", "links": {"website": ["https://lildarkie.com"], "subreddit": ["lildarkie", "spidergang"]}, "path": {"217-258": [[107, -677], [130, -677], [130, -663], [107, -663]]}, "center": {"217-258": [119, -670]}}, +{"id": 4930, "name": "Cucurucho", "description": "An entity on the QSMP server. Cucurucho is a part of the QSMP federation, it is often seen observing islanders, blowing bubbles, making sure that the server rules are being followed and asking players a set of questions about their pasts.\n\nIts signature catchphrase is \"I hope you enjoy the island\" or \"Disfruta la isla\" in spanish", "links": {"website": ["https://qsmp.fandom.com/wiki/Cucurucho"]}, "path": {"250-258, T": [[488, 476], [499, 476], [499, 487], [488, 487], [488, 481]]}, "center": {"250-258, T": [494, 482]}}, +{"id": 4931, "name": "Ukraine flag on Château Frontenac", "description": "A small Ukraine flag place on top of the Château Frontenac to show support to Ukraine from Quebec.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine"]}, "path": {"99-183": [[598, 157], [591, 157], [591, 162], [598, 162], [598, 167]], "198-258, T": [[600, 162], [606, 162], [606, 157], [600, 157], [600, 167]]}, "center": {"99-183": [595, 160], "198-258, T": [603, 160]}}, +{"id": 4932, "name": "Royal Palace of Amsterdam", "description": "The Royal Palace of Amsterdam in Amsterdam (Dutch: Koninklijk Paleis van Amsterdam or Paleis op de Dam) is one of three palaces in the Netherlands which are at the disposal of the monarch by Act of Parliament.", "links": {"website": ["https://en.wikipedia.org/wiki/Royal_Palace_of_Amsterdam"], "subreddit": ["PlaceNL"], "discord": ["placenl"], "wiki": ["Royal_Palace_of_Amsterdam"]}, "path": {"250-258, T": [[-1490, -480], [-1490, -451], [-1427, -450], [-1418, -455], [-1418, -481], [-1422, -486], [-1422, -488], [-1424, -488], [-1424, -485], [-1427, -483], [-1441, -484], [-1440, -485], [-1440, -486], [-1443, -486], [-1443, -485], [-1442, -483], [-1447, -484], [-1447, -489], [-1448, -490], [-1452, -501], [-1452, -503], [-1451, -504], [-1452, -505], [-1454, -506], [-1455, -506], [-1454, -504], [-1455, -502], [-1458, -497], [-1458, -490], [-1460, -489], [-1460, -484], [-1463, -484], [-1465, -487], [-1466, -483], [-1475, -483], [-1477, -487], [-1478, -484], [-1481, -484], [-1483, -486], [-1484, -488], [-1485, -488], [-1487, -483]]}, "center": {"250-258, T": [-1453, -468]}}, +{"id": 4933, "name": ".Lspot 2.0 Logo Ek4te Heart", "description": "Club VR con raíces Latino Americanas. Show de LSPOT cada tres semanas, y HAF cada semana.\n.//\nVR Club rooted in Latin America. We host LSPOT every three weeks, and HAF every week.\n\n Ek4te themed heart (Turquoise and purple, characteristic hair colors)", "links": {"website": ["https://www.twitch.tv/lspot", "https://www.twitch.tv/ek4tesan"], "subreddit": ["LSPOT"], "discord": ["mM8uCV6QsQ"]}, "path": {"245-258, T": [[1351, 70], [1351, 82], [1374, 82], [1374, 70]]}, "center": {"245-258, T": [1363, 76]}}, +{"id": 4934, "name": "Ame-chan (Needy Streamer Overload) holding dutch flag", "description": "The main protagonist's full body appearance from the game \"Needy Streamer Overload\" (also known as \"Needy Girl Overdose\").\n\nNeedy Streamer Overload is a 2022 denpa-themed adventure visual novel created by Japanese developer Xemono and published by WSS Playground for macOS, Microsoft Windows, and Nintendo Switch.\n\nAme-chan is her true identity off-camera; by night she streams as \"OMGkawaiiAngel\" (or \"kAngel\" for short).", "links": {"website": ["https://store.steampowered.com/app/1451940/NEEDY_STREAMER_OVERLOAD/"], "subreddit": ["needystreameroverload"]}, "path": {"233-258, T": [[-1498, -549], [-1494, -547], [-1485, -547], [-1483, -548], [-1481, -542], [-1482, -534], [-1482, -532], [-1485, -534], [-1489, -533], [-1489, -531], [-1491, -531], [-1492, -533], [-1495, -534], [-1493, -538], [-1496, -543], [-1498, -535], [-1499, -536], [-1499, -545]]}, "center": {"233-258, T": [-1487, -541]}}, +{"id": 4935, "name": "IMMU", "description": "nom raccourcie de \"immudelki\" créateur du fan game \"IFSCL\"", "links": {}, "path": {"250-258, T": [[856, -699], [856, -693], [872, -693], [872, -699]]}, "center": {"250-258, T": [864, -696]}}, +{"id": 4936, "name": "Avec le 6 (French National Overwatch Team)", "description": "Avec le 6 (With the Six) is an association that officially represents the french national Overwatch team during the World Cup. \"Le 6\" (The Six) is a reference to the 6 players that compose an Overwatch team in a PvP match. Even though Overwatch 2 scaled down to 5v5 matches, the name remained.\n\nThe logo was built with the community of Alphacast, a former Overwatch caster and streamer.\n\n6 is written in roman numerals (VI), as a reference to the french rugby team (XV de France).", "links": {"website": ["https://www.avecle6.com/"]}, "path": {"94-159": [[-395, 372], [-389, 372], [-390, 370], [-391, 368], [-391, 367], [-382, 366], [-378, 369], [-374, 374], [-374, 375], [-376, 376], [-375, 377], [-375, 389], [-379, 393], [-383, 396], [-390, 396], [-396, 392], [-397, 388], [-396, 383], [-395, 382]], "160-258, T": [[-389, 375], [-386, 375], [-385, 373], [-386, 369], [-370, 369], [-370, 393], [-375, 398], [-381, 399], [-388, 398], [-392, 394], [-392, 387], [-390, 385], [-390, 375]]}, "center": {"94-159": [-385, 385], "160-258, T": [-381, 389]}}, +{"id": 4937, "name": ".Lspot Vrchat Logo", "description": "Club VR con raíces Latino Americanas. Show de LSPOT cada tres semanas, y HAF cada semana.\n.//\nVR Club rooted in Latin America. We host LSPOT every three weeks, and HAF every week.", "links": {"website": ["https://www.twitch.tv/lspot"], "subreddit": ["LSPOT"], "discord": ["mM8uCV6QsQ"]}, "path": {"235-258, T": [[-98, 355], [-98, 365], [-88, 365], [-88, 355]]}, "center": {"235-258, T": [-93, 360]}}, +{"id": 4938, "name": "Baguette Knight", "description": "The main character from the game Hollow Knight holding a baguette as a weapon.", "links": {"subreddit": ["HollowKnight", "HKPlace", "HKPlace2023"], "discord": ["8yb3AUYN"]}, "path": {"156-258, T": [[-500, 513], [-489, 513], [-489, 519], [-486, 516], [-482, 516], [-482, 530], [-500, 530]]}, "center": {"156-258, T": [-494, 524]}}, +{"id": 4939, "name": "Belgian Cats", "description": "This is the logo of the Belgium women's national basketball team (nicknamed Belgian Cats), which was made as a tribute to their recent gold medal in the Eurobasket 2023.\n\nThe Belgian cats represents Belgium in international women's basketball, and are controlled by Basketball Belgium. Belgium's first appearance in a major international tournament came at EuroBasket 1950. The team has participated in the European Championship fourteen times overall. Their best results at the event are winning the title in 2023, and two third place finishes (2017, and 2021). Belgium has also competed on the global stage, where they have made two appearances at the World Cup (2018, 2022), and one at the Olympic Games (2020).", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium_women%27s_national_basketball_team"]}, "path": {"46-258, T": [[-364, -168], [-339, -168], [-340, -135], [-363, -136], [-363, -137]]}, "center": {"46-258, T": [-351, -155]}}, +{"id": 4940, "name": "r/MrRobot", "description": "Fsociety - the name of the hacker group shown in the TVshow Mr. Robot.", "links": {"subreddit": ["mrrobot"], "discord": ["5arUXKsm8r"]}, "path": {"250-258, T": [[182, -999], [182, -989], [247, -988], [246, -991], [238, -991], [237, -1000], [182, -1000]]}, "center": {"250-258, T": [213, -994]}}, +{"id": 4941, "name": "Mococo Abyssgard's hairpin", "description": "Mococo Abyssgard is a virtual YouTuber and Demonic Guard Dog associated with Hololive as part of Hololive English -Advent-. This is her hairpin as seen in the BREACH PV.", "links": {"website": ["https://www.youtube.com/@FUWAMOCOch", "https://hololive.hololivepro.com/en/talents/mococo-abyssgard/", "https://www.youtube.com/watch?v=g5-VtyLYb2Y"], "subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"250-258, T": [[-559, -299], [-559, -297], [-561, -297], [-561, -299]]}, "center": {"250-258, T": [-560, -298]}}, +{"id": 4942, "name": "Setsuna Yuki", "description": "She is a main character in Love Live! Nijigasaki High School Idol Club. She was the leader and founder of the Nijigasaki High School Idol Club, often abbreviated as Nijigaku. She is a member of A・ZU・NA, a unit under said club.\n\nMade by the French community of Love Live", "links": {"website": ["https://love-live-en-francais.blogspot.com/"], "subreddit": ["lovelive"], "discord": ["lovelivefrance"]}, "path": {"211-258, T": [[223, -911], [223, -908], [231, -908], [231, -911]]}, "center": {"211-258, T": [227, -909]}}, +{"id": 4943, "name": ".Lspot Logo", "description": "Club VR con raíces Latino Americanas. Show de LSPOT cada tres semanas, y HAF cada semana.\n.//\nVR Club rooted in Latin America. We host LSPOT every three weeks, and HAF every week. \n(In collaboration with the Deltarune community, they allowed us to put our club logo in their space, forever grateful)", "links": {"website": ["https://www.twitch.tv/lspot"], "subreddit": ["LSPOT"], "discord": ["mM8uCV6QsQ"]}, "path": {"216-258, T": [[344, 966], [356, 966], [356, 954], [344, 954]]}, "center": {"216-258, T": [350, 960]}}, +{"id": 4944, "name": "Kim Dokja", "description": "Kim Dokja is the protagonist of the Korean web novel/ manhwa/ webtoon Omniscient Reader's Viewpoint. Kirby is drawn sitting on his head.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[96, 867], [100, 863], [109, 863], [109, 865], [110, 865], [110, 867], [111, 867], [111, 872], [110, 872], [109, 874], [107, 876], [108, 876], [108, 878], [109, 878], [109, 882], [111, 882], [113, 884], [113, 885], [93, 885], [93, 884], [95, 882], [96, 882], [97, 881], [97, 878], [98, 878], [99, 876], [99, 875], [98, 874], [97, 873], [97, 872], [96, 872]]}, "center": {"250-258, T": [103, 870]}}, +{"id": 4945, "name": "French Hornet", "description": "The protagonist of the game Hollow Knight Silksong holding a baguette as a weapon", "links": {"subreddit": ["HollowKnight", "HKPlace", "HKPlace2023"], "discord": ["8yb3AUYN"]}, "path": {"156-258, T": [[-369, 515], [-381, 515], [-381, 521], [-385, 519], [-389, 519], [-389, 523], [-378, 531], [-369, 531]]}, "center": {"156-258, T": [-375, 524]}}, +{"id": 4946, "name": "Lil Darkie, Brahman and the Peace symbol", "description": "The left artwork describes the rapper Lil Darkie and his old persona Brahman in Form of his classic cartoon character. The face splits between the light blue half for Brahman and a Black half for his new persona Lil Darkie.\n\nThe right icon is his Peace symbol wich he first used for the album cover for the single \"MONEY POWER FAME\" and his following tours. \"It just represents balance\" like Lil Darkie said on a Reddit post.\nIt is one of the many symbols people associate Darkie with.\n\nWritten by u/P-O-K-E", "links": {"website": ["https://lildarkie.com"], "subreddit": ["lildarkie", "spidergang"]}, "path": {"217-258, T": [[107, -677], [130, -677], [130, -663], [107, -663]]}, "center": {"217-258, T": [119, -670]}}, {"id": 4947, "name": "Tower of Hectors", "description": "HECTOR is a character and NPC in OMORI. He is the beloved pet rock of KEL.", "links": {"subreddit": ["HectorSquad"], "discord": ["fRumrmsP"]}, "path": {"135": [[-228, -501], [-248, -501], [-248, -550], [-228, -550]]}, "center": {"135": [-238, -525]}}, -{"id": 4948, "name": "DDG", "description": "DDGamer, a nice dude from northern Germany.", "links": {}, "path": {"250-258": [[-663, -971], [-648, -971], [-648, -965], [-663, -965]]}, "center": {"250-258": [-655, -968]}}, -{"id": 4949, "name": "Kim Dokja and Yoo Joonghyuk", "description": "Kim Dokja (aka \"KDJ\") and Yoo Joonghyuk (aka \"YJH\") from the web novel/ manhwa/ webtoon Omniscient Reader's Viewpoint are often shipped together.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[89, 855], [120, 855], [120, 861], [89, 861]]}, "center": {"250-258": [105, 858]}}, +{"id": 4948, "name": "DDG", "description": "DDGamer, a nice dude from northern Germany.", "links": {}, "path": {"250-258, T": [[-663, -971], [-648, -971], [-648, -965], [-663, -965]]}, "center": {"250-258, T": [-655, -968]}}, +{"id": 4949, "name": "Kim Dokja and Yoo Joonghyuk", "description": "Kim Dokja (aka \"KDJ\") and Yoo Joonghyuk (aka \"YJH\") from the web novel/ manhwa/ webtoon Omniscient Reader's Viewpoint are often shipped together.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[89, 855], [120, 855], [120, 861], [89, 861]]}, "center": {"250-258, T": [105, 858]}}, {"id": 4950, "name": "Twice - 5th Logo Attempt", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nFollowing the destruction of their 4th logo attempt by the western advancement of the Argentinian Flag, r/Twice, along side r/KpopPlace, moved into this position for their 5th logo attempt as well as helping to establish adjacent zones for a new Kpop Alley.\n\nKpop groups, Itzy, and Dreamcatcher were able to appear along side the Twice logo here before the entire area was demolished to make room for a Valorant memorial intended to commemorate the late player Karel \"Twisten\" Asenbrener who took his own life.", "links": {"subreddit": ["Twice"]}, "path": {"118-120": [[719, -633], [736, -633], [736, -613], [719, -613]]}, "center": {"118-120": [728, -623]}}, -{"id": 4951, "name": "Kagamine Rin", "description": "Kagamine Rin (Japanese: 鏡音リン) is a Vocaloid software voicebank developed by Crypton Future Media. She is known for being with her twin Kagamine Len (Japanese: 鏡音レン), officially codenamed CV02.", "links": {"website": ["https://en.wikipedia.org/wiki/Kagamine_Rin/Len"], "subreddit": ["hatsune", "touhou"], "discord": ["hatsune", "apl"]}, "path": {"172-177": [[-1383, 72], [-1383, 105], [-1352, 105], [-1352, 72]], "202-258": [[1322, 299], [1322, 301], [1319, 304], [1317, 304], [1317, 327], [1319, 327], [1322, 330], [1322, 332], [1342, 332], [1343, 330], [1346, 327], [1348, 327], [1348, 304], [1346, 304], [1343, 301], [1343, 299]]}, "center": {"172-177": [-1367, 89], "202-258": [1333, 316]}}, +{"id": 4951, "name": "Kagamine Rin", "description": "Kagamine Rin (Japanese: 鏡音リン) is a Vocaloid software voicebank developed by Crypton Future Media. She is known for being with her twin Kagamine Len (Japanese: 鏡音レン), officially codenamed CV02.", "links": {"website": ["https://en.wikipedia.org/wiki/Kagamine_Rin/Len"], "subreddit": ["hatsune", "touhou"], "discord": ["hatsune", "apl"]}, "path": {"172-177": [[-1383, 72], [-1383, 105], [-1352, 105], [-1352, 72]], "202-258, T": [[1322, 299], [1322, 301], [1319, 304], [1317, 304], [1317, 327], [1319, 327], [1322, 330], [1322, 332], [1342, 332], [1343, 330], [1346, 327], [1348, 327], [1348, 304], [1346, 304], [1343, 301], [1343, 299]]}, "center": {"172-177": [-1367, 89], "202-258, T": [1333, 316]}}, {"id": 4952, "name": "Twice - 4th Logo Attempt", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nIn a frantic 4th attempt to remain on the canvas, r/Twice moved into this position on top of a newly developing r/Femboy flag after their original flag was destroyed and an alliance remained between the two. \n\nEventually, this logo would succumb to the mighty power of the Argentinian flag, wiping what remained of the Kpop Alley off the canvas.", "links": {"subreddit": ["Twice"]}, "path": {"101-115": [[728, -174], [742, -174], [742, -160], [728, -160]]}, "center": {"101-115": [735, -167]}}, {"id": 4953, "name": "Fake Blue Corner", "description": "The Mexican streamer Quackity made this corner to \"save\" the Blue Corner after it was attacked by Zugu. This project was not supported by the actual Blue Corner (which is and always has been in the bottom right corner of the canvas).", "links": {}, "path": {"172-179": [[-1500, 960], [-1494, 957], [-1448, 914], [-1448, 957], [-1447, 958], [-1447, 959], [-1443, 959], [-1442, 960], [-1441, 960], [-1440, 961], [-1439, 961], [-1438, 962], [-1436, 962], [-1435, 963], [-1432, 963], [-1468, 999], [-1500, 1000]], "180-201": [[-1448, 914], [-1500, 967], [-1500, 970], [-1487, 970], [-1485, 969], [-1484, 968], [-1483, 968], [-1482, 967], [-1481, 967], [-1480, 966], [-1478, 966], [-1477, 965], [-1475, 965], [-1475, 964], [-1465, 964], [-1464, 965], [-1462, 965], [-1461, 966], [-1460, 967], [-1459, 967], [-1458, 968], [-1457, 968], [-1456, 969], [-1438, 969], [-1432, 963], [-1435, 963], [-1436, 962], [-1438, 962], [-1439, 961], [-1440, 961], [-1441, 960], [-1442, 960], [-1443, 959], [-1445, 959], [-1446, 958], [-1447, 957], [-1448, 956], [-1449, 955], [-1449, 954], [-1450, 953], [-1450, 952], [-1449, 951], [-1448, 950]], "217-242": [[-1500, 933], [-1448, 882], [-1448, 880], [-1445, 880], [-1444, 881], [-1442, 881], [-1442, 882], [-1441, 883], [-1441, 887], [-1442, 888], [-1442, 889], [-1443, 890], [-1443, 891], [-1444, 892], [-1444, 894], [-1445, 894], [-1446, 895], [-1447, 900], [-1448, 901], [-1448, 925], [-1449, 926], [-1449, 931], [-1450, 932], [-1450, 935], [-1451, 936], [-1451, 939], [-1451, 943], [-1450, 944], [-1450, 953], [-1449, 955], [-1448, 956], [-1447, 957], [-1445, 959], [-1444, 959], [-1443, 960], [-1441, 961], [-1439, 961], [-1436, 961], [-1436, 962], [-1435, 963], [-1432, 963], [-1426, 964], [-1425, 965], [-1424, 966], [-1422, 966], [-1422, 970], [-1455, 970], [-1459, 967], [-1459, 966], [-1461, 965], [-1463, 965], [-1464, 964], [-1475, 964], [-1476, 965], [-1480, 965], [-1481, 966], [-1482, 967], [-1484, 967], [-1485, 968], [-1485, 969], [-1487, 970], [-1500, 970]]}, "center": {"172-179": [-1476, 973], "180-201": [-1464, 950], "217-242": [-1474, 940]}}, -{"id": 4954, "name": "Dream Nail", "description": "An alternative weapon that has the power of dreams the main character from popular Indie Game \"Hollow Knight\" can wield.", "links": {"subreddit": ["HollowKnight"]}, "path": {"197-258": [[801, 540], [808, 539], [815, 540], [820, 556], [808, 582], [796, 556]]}, "center": {"197-258": [808, 555]}}, -{"id": 4955, "name": "Maramamiau", "description": "Skin de la streamer maramamiau en Minecraft, creada por los nekos para dejar huella y seguir recordándola después de estos dos años sin streams, te queremos mucho mara💜", "links": {"website": ["https://www.twitch.tv/maramamiau", "https://twitter.com/Maramamiau_"]}, "path": {"250-258": [[-259, 930], [-250, 930], [-250, 939], [-259, 939]]}, "center": {"250-258": [-254, 935]}}, -{"id": 4956, "name": "Tarija Wine", "description": "Tarija, in central southern Bolivia, is the major wine-producing and wine-growing region of Bolivia accounting for the vast majority of the country's viti and vinicultural output.", "links": {"website": ["https://www.wine-searcher.com/regions-tarija"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[150, -27], [150, -40], [149, -40], [148, -41], [148, -46], [144, -46], [144, -41], [143, -41], [143, -40], [142, -40], [142, -39], [134, -39], [134, -32], [137, -32], [137, -28], [136, -28], [136, -26], [140, -26], [140, -28], [139, -28], [139, -32], [142, -32], [142, -39], [143, -26], [150, -26]]}, "center": {"250-258": [146, -35]}}, -{"id": 4957, "name": "Walaber Entertainment", "description": "The creator of the JellyCar series, Pro Gymnast, and JellyCar Worlds.", "links": {"website": ["https://www.walaber.com"], "discord": ["walaber"]}, "path": {"213-215": [[-689, -587], [-691, -587], [-692, -586], [-693, -585], [-694, -586], [-695, -587], [-696, -587], [-696, -586], [-697, -585], [-698, -586], [-699, -587], [-700, -588], [-700, -589], [-701, -589], [-701, -588], [-701, -587], [-700, -587], [-699, -586], [-699, -585], [-698, -585], [-698, -584], [-697, -583], [-696, -583], [-695, -585], [-694, -584], [-693, -584], [-692, -585], [-691, -586], [-690, -586], [-689, -586]], "216-258": [[-689, -587], [-691, -587], [-692, -586], [-693, -585], [-694, -586], [-695, -587], [-696, -587], [-696, -586], [-697, -585], [-698, -586], [-699, -587], [-700, -588], [-700, -589], [-701, -589], [-701, -588], [-701, -587], [-700, -587], [-699, -586], [-699, -585], [-698, -585], [-698, -584], [-697, -584], [-697, -583], [-698, -580], [-701, -580], [-702, -579], [-703, -578], [-704, -577], [-705, -577], [-705, -575], [-704, -575], [-704, -574], [-703, -573], [-702, -573], [-701, -574], [-701, -575], [-697, -575], [-697, -574], [-696, -573], [-695, -573], [-694, -574], [-694, -575], [-693, -575], [-693, -577], [-695, -577], [-696, -578], [-697, -579], [-697, -582], [-696, -583], [-695, -585], [-694, -584], [-693, -584], [-692, -585], [-691, -586], [-690, -586], [-689, -586]]}, "center": {"213-215": [-695, -586], "216-258": [-699, -578]}}, -{"id": 4958, "name": "Uriel", "description": "Uriel is a character in the web novel/ manwha/ webtoon Omniscient Reader's Viewpoint more commonly known by her constellation modifier \"Demon-like Judge of Fire\" in the story. She is an archangel of the nebula who stands on the side of Absolute Good.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154", "https://omniscient-readers-viewpoint.fandom.com/wiki/Uriel"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[121, 854], [127, 854], [127, 857], [128, 857], [128, 858], [130, 858], [130, 860], [129, 860], [129, 862], [128, 862], [128, 863], [124, 863], [124, 862], [121, 862]]}, "center": {"250-258": [124, 859]}}, -{"id": 4959, "name": "Biyoo", "description": "A small dokkaebi named Biyoo from the popular Korean web novel/ manwha/ webtoon Omniscient Reader's Viewpoint by Sing Shong.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154#"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258": [[113, 874], [116, 871], [120, 871], [120, 872], [122, 874], [122, 877], [119, 880], [116, 880], [113, 877]]}, "center": {"250-258": [118, 876]}}, -{"id": 4960, "name": "CINEPOL", "description": "La claketa de CINEPOL, la comunidad de la gente de @polispol en twitch y discord", "links": {"website": ["http://www.twitch.tv/polispol1"], "discord": ["cinepol"]}, "path": {"250-258": [[242, -1], [259, -1], [259, 14], [242, 14], [242, 12]]}, "center": {"250-258": [251, 7]}}, -{"id": 4961, "name": "IFSCL", "description": "French: L'Interfaces Fictionnelles Simulées de Code Lyokoest un Fan Game de Code Lyoko créé par Immudelki dans lequel on incarne Jérémie Belpois.\n\nEnglish: Simulated Fictional Interfaces from Code Lyoko is a Code Lyoko fan game created by Immudelki, in which you play the role of Jeremy Belpois.", "links": {"website": ["https://codelyoko.fr/ifscl/", "https://ifscl.org/"], "discord": ["ZAAMD6c"]}, "path": {"250-258": [[852, -693], [852, -687], [872, -687], [872, -692], [872, -693]]}, "center": {"250-258": [862, -690]}}, -{"id": 4962, "name": "Bandera de Francia", "description": "Bandera de Francia, creada durante las disputas de este lugar", "links": {}, "path": {"250-258": [[-438, -849], [-433, -849], [-433, -817], [-438, -817]]}, "center": {"250-258": [-435, -833]}}, -{"id": 4963, "name": "Ponce Monolith", "description": "The monumental stone statue from Tiwanaku, Bolivia, known as the Ponce Monolith. Such statues perhaps represented the race of stone giants which first populated the world in pan-Andean mythology. Gold pins and traces of piant indicate they were once clothed in textiles and decorated with bright colours. The statue is 3.5 metres tall and dates to c. 300 CE.", "links": {"website": ["https://www.worldhistory.org/image/2385/ponce-monolith-tiwanaku/"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[120, -39], [133, -39], [133, -27], [120, -26]]}, "center": {"250-258": [126, -33]}}, -{"id": 4964, "name": "Flags of the Dutch Antilles", "description": "The flags of the various Caribbean islands within the kingdom of the Netherlands. In order Bonaire, Saba, St Eustatius, Aruba, Curaçao, and St. Maarten.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands_Antilles"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"250-258": [[-84, -481], [-86, -481], [-86, -485], [-87, -488], [-87, -490], [-88, -492], [-86, -494], [-85, -495], [-84, -496], [-80, -496], [-78, -493], [-77, -493], [-77, -501], [-74, -501], [-38, -501], [-37, -493], [-36, -493], [-35, -494], [-33, -496], [-30, -496], [-29, -495], [-26, -492], [-27, -486], [-28, -484], [-28, -481], [-30, -480], [-39, -480], [-40, -479], [-75, -479], [-76, -480], [-85, -481]]}, "center": {"250-258": [-57, -490]}}, -{"id": 4965, "name": "DarkGarden", "description": "Dark Garden is a community created by Twitch streamer iMobs, a VTuber from Costa Rica. This pixel art includes the flag of Costa Rica, the name of the community, the Minecraft skin of the streamer iMobs, a black rose (The Whiter Rose, which is the \"badge\" of the community) and some other pixel art made by members of this community.", "links": {"website": ["https://www.twitch.tv/imobs"]}, "path": {"215-223": [[-239, 951], [-239, 970], [-215, 970], [-215, 951]], "224-246": [[-239, 951], [-239, 970], [-206, 970], [-206, 951]], "247-258": [[-239, 961], [-239, 970], [-214, 970], [-214, 961]]}, "center": {"215-223": [-227, 961], "224-246": [-222, 961], "247-258": [-226, 966]}}, -{"id": 4966, "name": "Exoracer", "description": "Exoracer is a fast-paced mobile platformer game", "links": {"website": ["https://exoracer.io/"], "subreddit": ["exoracer"], "discord": ["eGCtzquRDa"]}, "path": {"250-258": [[-1362, 125], [-1362, 145], [-1347, 145], [-1347, 125]]}, "center": {"250-258": [-1354, 135]}}, -{"id": 4967, "name": "Mont-Saint-Michel", "description": "The Mont-Saint-Michel is a village located on a small rocky island off the coast of Normandy in France. An abbey has been built here in the 8th century and remained since, with several rebuilds.\n\nThe Mont-Saint-Michel is one of the most visited places in France, and the first outside the Greater Paris Region with more than 3M visitors per year. It is also part of the UNESCO World Heritage Sites.", "links": {"website": ["https://www.ot-montsaintmichel.com/", "https://fr.wikipedia.org/wiki/Le_Mont-Saint-Michel", "https://en.wikipedia.org/wiki/Mont-Saint-Michel"]}, "path": {"5-258": [[-474, 465], [-458, 440], [-453, 439], [-452, 434], [-448, 433], [-448, 429], [-447, 423], [-445, 429], [-441, 434], [-438, 439], [-436, 441], [-434, 444], [-429, 450], [-425, 454], [-419, 456], [-415, 457], [-409, 464], [-473, 465]]}, "center": {"5-258": [-446, 451]}}, -{"id": 4968, "name": "Lambik", "description": "Lambik is a Flemish comic book character from the Belgian comic strip series Spike and Suzy by Willy Vandersteen. In the English translations he is known as Orville or Ambrose. Lambik is the breakout character of the franchise and one of the most popular and recognizable comic book characters in Belgium and the Netherlands", "links": {"website": ["https://en.wikipedia.org/wiki/Lambik"]}, "path": {"193-258": [[849, 562], [853, 560], [866, 559], [869, 561], [871, 587], [841, 589], [843, 578], [848, 572], [848, 570], [848, 568]]}, "center": {"193-258": [859, 576]}}, -{"id": 4969, "name": "Fuwawa Abyssgard's hairpin", "description": "Fuwawa Abyssgard is a virtual YouTuber and Demonic Guard Dog associated with Hololive as part of Hololive English -Advent-. This is her hairpin as seen in the BREACH PV.", "links": {"website": ["https://www.youtube.com/channel/UCt9H_RpQzhxzlyBxFqrdHqA", "https://hololive.hololivepro.com/en/talents/fuwawa-abyssgard/", "https://www.youtube.com/watch?v=g5-VtyLYb2Y"], "subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"250-258": [[-560, -306], [-559, -305], [-559, -302], [-560, -301], [-561, -302], [-561, -305]]}, "center": {"250-258": [-560, -303]}}, -{"id": 4970, "name": "Frog", "description": "Frog (Dutch: Kikker), better known from the Dutch kids series': Frog & his friends. It is based on the popular children's book series \"Kikker\" by Max Velthuijs. The show follows the adventures of Kikker, a friendly frog, and his group of friends, including Rat, Pig, Duck, and Hare. Each episode revolves around valuable life lessons, friendship, and exploration, making it a beloved series for young audiences in the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Frog_(picture_book_character)"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"187-258": [[-1227, -478], [-1226, -482], [-1219, -482], [-1217, -480], [-1216, -479], [-1215, -479], [-1215, -484], [-1214, -485], [-1212, -485], [-1210, -484], [-1208, -483], [-1208, -474], [-1211, -472], [-1211, -468], [-1212, -467], [-1214, -466], [-1215, -470], [-1217, -469], [-1217, -467], [-1214, -462], [-1213, -459], [-1214, -457], [-1213, -457], [-1210, -458], [-1209, -457], [-1208, -455], [-1213, -452], [-1216, -452], [-1218, -457], [-1221, -457], [-1221, -458], [-1223, -456], [-1225, -456], [-1226, -457], [-1228, -455], [-1225, -452], [-1227, -451], [-1228, -453], [-1231, -453], [-1232, -454], [-1230, -456], [-1230, -462], [-1229, -461], [-1227, -464]]}, "center": {"187-258": [-1221, -474]}}, -{"id": 4971, "name": "The Mauritshuis", "description": "The Mauritshuis is an art museum in The Hague, Netherlands. The museum houses the Royal Cabinet of Paintings which consists of 854 objects, mostly Dutch Golden Age paintings.", "links": {"website": ["https://en.wikipedia.org/wiki/Mauritshuis"], "subreddit": ["PlaceNL"], "discord": ["placenl"], "wiki": ["Mauritshuis"]}, "path": {"196-258": [[-1413, -476], [-1412, -455], [-1384, -455], [-1384, -475], [-1392, -483], [-1392, -485], [-1393, -482], [-1404, -482], [-1405, -484], [-1405, -482], [-1412, -476]]}, "center": {"196-258": [-1398, -468]}}, +{"id": 4954, "name": "Dream Nail", "description": "An alternative weapon that has the power of dreams the main character from popular Indie Game \"Hollow Knight\" can wield.", "links": {"subreddit": ["HollowKnight"]}, "path": {"197-258, T": [[801, 540], [808, 539], [815, 540], [820, 556], [808, 582], [796, 556]]}, "center": {"197-258, T": [808, 555]}}, +{"id": 4955, "name": "Maramamiau", "description": "Skin de la streamer maramamiau en Minecraft, creada por los nekos para dejar huella y seguir recordándola después de estos dos años sin streams, te queremos mucho mara💜", "links": {"website": ["https://www.twitch.tv/maramamiau", "https://twitter.com/Maramamiau_"]}, "path": {"250-258, T": [[-259, 930], [-250, 930], [-250, 939], [-259, 939]]}, "center": {"250-258, T": [-254, 935]}}, +{"id": 4956, "name": "Tarija Wine", "description": "Tarija, in central southern Bolivia, is the major wine-producing and wine-growing region of Bolivia accounting for the vast majority of the country's viti and vinicultural output.", "links": {"website": ["https://www.wine-searcher.com/regions-tarija"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[150, -27], [150, -40], [149, -40], [148, -41], [148, -46], [144, -46], [144, -41], [143, -41], [143, -40], [142, -40], [142, -39], [134, -39], [134, -32], [137, -32], [137, -28], [136, -28], [136, -26], [140, -26], [140, -28], [139, -28], [139, -32], [142, -32], [142, -39], [143, -26], [150, -26]]}, "center": {"250-258, T": [146, -35]}}, +{"id": 4957, "name": "Walaber Entertainment", "description": "The creator of the JellyCar series, Pro Gymnast, and JellyCar Worlds.", "links": {"website": ["https://www.walaber.com"], "discord": ["walaber"]}, "path": {"213-215": [[-689, -587], [-691, -587], [-692, -586], [-693, -585], [-694, -586], [-695, -587], [-696, -587], [-696, -586], [-697, -585], [-698, -586], [-699, -587], [-700, -588], [-700, -589], [-701, -589], [-701, -588], [-701, -587], [-700, -587], [-699, -586], [-699, -585], [-698, -585], [-698, -584], [-697, -583], [-696, -583], [-695, -585], [-694, -584], [-693, -584], [-692, -585], [-691, -586], [-690, -586], [-689, -586]], "216-258, T": [[-689, -587], [-691, -587], [-692, -586], [-693, -585], [-694, -586], [-695, -587], [-696, -587], [-696, -586], [-697, -585], [-698, -586], [-699, -587], [-700, -588], [-700, -589], [-701, -589], [-701, -588], [-701, -587], [-700, -587], [-699, -586], [-699, -585], [-698, -585], [-698, -584], [-697, -584], [-697, -583], [-698, -580], [-701, -580], [-702, -579], [-703, -578], [-704, -577], [-705, -577], [-705, -575], [-704, -575], [-704, -574], [-703, -573], [-702, -573], [-701, -574], [-701, -575], [-697, -575], [-697, -574], [-696, -573], [-695, -573], [-694, -574], [-694, -575], [-693, -575], [-693, -577], [-695, -577], [-696, -578], [-697, -579], [-697, -582], [-696, -583], [-695, -585], [-694, -584], [-693, -584], [-692, -585], [-691, -586], [-690, -586], [-689, -586]]}, "center": {"213-215": [-695, -586], "216-258, T": [-699, -578]}}, +{"id": 4958, "name": "Uriel", "description": "Uriel is a character in the web novel/ manwha/ webtoon Omniscient Reader's Viewpoint more commonly known by her constellation modifier \"Demon-like Judge of Fire\" in the story. She is an archangel of the nebula who stands on the side of Absolute Good.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154", "https://omniscient-readers-viewpoint.fandom.com/wiki/Uriel"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[121, 854], [127, 854], [127, 857], [128, 857], [128, 858], [130, 858], [130, 860], [129, 860], [129, 862], [128, 862], [128, 863], [124, 863], [124, 862], [121, 862]]}, "center": {"250-258, T": [124, 859]}}, +{"id": 4959, "name": "Biyoo", "description": "A small dokkaebi named Biyoo from the popular Korean web novel/ manwha/ webtoon Omniscient Reader's Viewpoint by Sing Shong.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154#"], "subreddit": ["OmniscientReader"], "discord": ["C7vExq2b"]}, "path": {"250-258, T": [[113, 874], [116, 871], [120, 871], [120, 872], [122, 874], [122, 877], [119, 880], [116, 880], [113, 877]]}, "center": {"250-258, T": [118, 876]}}, +{"id": 4960, "name": "CINEPOL", "description": "La claketa de CINEPOL, la comunidad de la gente de @polispol en twitch y discord", "links": {"website": ["http://www.twitch.tv/polispol1"], "discord": ["cinepol"]}, "path": {"250-258, T": [[242, -1], [259, -1], [259, 14], [242, 14], [242, 12]]}, "center": {"250-258, T": [251, 7]}}, +{"id": 4961, "name": "IFSCL", "description": "French: L'Interfaces Fictionnelles Simulées de Code Lyokoest un Fan Game de Code Lyoko créé par Immudelki dans lequel on incarne Jérémie Belpois.\n\nEnglish: Simulated Fictional Interfaces from Code Lyoko is a Code Lyoko fan game created by Immudelki, in which you play the role of Jeremy Belpois.", "links": {"website": ["https://codelyoko.fr/ifscl/", "https://ifscl.org/"], "discord": ["ZAAMD6c"]}, "path": {"250-258, T": [[852, -693], [852, -687], [872, -687], [872, -692], [872, -693]]}, "center": {"250-258, T": [862, -690]}}, +{"id": 4962, "name": "Bandera de Francia", "description": "Bandera de Francia, creada durante las disputas de este lugar", "links": {}, "path": {"250-258, T": [[-438, -849], [-433, -849], [-433, -817], [-438, -817]]}, "center": {"250-258, T": [-435, -833]}}, +{"id": 4963, "name": "Ponce Monolith", "description": "The monumental stone statue from Tiwanaku, Bolivia, known as the Ponce Monolith. Such statues perhaps represented the race of stone giants which first populated the world in pan-Andean mythology. Gold pins and traces of piant indicate they were once clothed in textiles and decorated with bright colours. The statue is 3.5 metres tall and dates to c. 300 CE.", "links": {"website": ["https://www.worldhistory.org/image/2385/ponce-monolith-tiwanaku/"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[120, -39], [133, -39], [133, -27], [120, -26]]}, "center": {"250-258, T": [126, -33]}}, +{"id": 4964, "name": "Flags of the Dutch Antilles", "description": "The flags of the various Caribbean islands within the kingdom of the Netherlands. In order Bonaire, Saba, St Eustatius, Aruba, Curaçao, and St. Maarten.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands_Antilles"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"250-258, T": [[-84, -481], [-86, -481], [-86, -485], [-87, -488], [-87, -490], [-88, -492], [-86, -494], [-85, -495], [-84, -496], [-80, -496], [-78, -493], [-77, -493], [-77, -501], [-74, -501], [-38, -501], [-37, -493], [-36, -493], [-35, -494], [-33, -496], [-30, -496], [-29, -495], [-26, -492], [-27, -486], [-28, -484], [-28, -481], [-30, -480], [-39, -480], [-40, -479], [-75, -479], [-76, -480], [-85, -481]]}, "center": {"250-258, T": [-57, -490]}}, +{"id": 4965, "name": "DarkGarden", "description": "Dark Garden is a community created by Twitch streamer iMobs, a VTuber from Costa Rica. This pixel art includes the flag of Costa Rica, the name of the community, the Minecraft skin of the streamer iMobs, a black rose (The Whiter Rose, which is the \"badge\" of the community) and some other pixel art made by members of this community.", "links": {"website": ["https://www.twitch.tv/imobs"]}, "path": {"215-223": [[-239, 951], [-239, 970], [-215, 970], [-215, 951]], "224-246": [[-239, 951], [-239, 970], [-206, 970], [-206, 951]], "247-258, T": [[-239, 961], [-239, 970], [-214, 970], [-214, 961]]}, "center": {"215-223": [-227, 961], "224-246": [-222, 961], "247-258, T": [-226, 966]}}, +{"id": 4966, "name": "Exoracer", "description": "Exoracer is a fast-paced mobile platformer game", "links": {"website": ["https://exoracer.io/"], "subreddit": ["exoracer"], "discord": ["eGCtzquRDa"]}, "path": {"250-258, T": [[-1362, 125], [-1362, 145], [-1347, 145], [-1347, 125]]}, "center": {"250-258, T": [-1354, 135]}}, +{"id": 4967, "name": "Mont-Saint-Michel", "description": "The Mont-Saint-Michel is a village located on a small rocky island off the coast of Normandy in France. An abbey has been built here in the 8th century and remained since, with several rebuilds.\n\nThe Mont-Saint-Michel is one of the most visited places in France, and the first outside the Greater Paris Region with more than 3M visitors per year. It is also part of the UNESCO World Heritage Sites.", "links": {"website": ["https://www.ot-montsaintmichel.com/", "https://fr.wikipedia.org/wiki/Le_Mont-Saint-Michel", "https://en.wikipedia.org/wiki/Mont-Saint-Michel"]}, "path": {"5-258, T": [[-474, 465], [-458, 440], [-453, 439], [-452, 434], [-448, 433], [-448, 429], [-447, 423], [-445, 429], [-441, 434], [-438, 439], [-436, 441], [-434, 444], [-429, 450], [-425, 454], [-419, 456], [-415, 457], [-409, 464], [-473, 465]]}, "center": {"5-258, T": [-446, 451]}}, +{"id": 4968, "name": "Lambik", "description": "Lambik is a Flemish comic book character from the Belgian comic strip series Spike and Suzy by Willy Vandersteen. In the English translations he is known as Orville or Ambrose. Lambik is the breakout character of the franchise and one of the most popular and recognizable comic book characters in Belgium and the Netherlands", "links": {"website": ["https://en.wikipedia.org/wiki/Lambik"]}, "path": {"193-258, T": [[849, 562], [853, 560], [866, 559], [869, 561], [871, 587], [841, 589], [843, 578], [848, 572], [848, 570], [848, 568]]}, "center": {"193-258, T": [859, 576]}}, +{"id": 4969, "name": "Fuwawa Abyssgard's hairpin", "description": "Fuwawa Abyssgard is a virtual YouTuber and Demonic Guard Dog associated with Hololive as part of Hololive English -Advent-. This is her hairpin as seen in the BREACH PV.", "links": {"website": ["https://www.youtube.com/channel/UCt9H_RpQzhxzlyBxFqrdHqA", "https://hololive.hololivepro.com/en/talents/fuwawa-abyssgard/", "https://www.youtube.com/watch?v=g5-VtyLYb2Y"], "subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"250-258, T": [[-560, -306], [-559, -305], [-559, -302], [-560, -301], [-561, -302], [-561, -305]]}, "center": {"250-258, T": [-560, -303]}}, +{"id": 4970, "name": "Frog", "description": "Frog (Dutch: Kikker), better known from the Dutch kids series': Frog & his friends. It is based on the popular children's book series \"Kikker\" by Max Velthuijs. The show follows the adventures of Kikker, a friendly frog, and his group of friends, including Rat, Pig, Duck, and Hare. Each episode revolves around valuable life lessons, friendship, and exploration, making it a beloved series for young audiences in the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Frog_(picture_book_character)"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"187-258, T": [[-1227, -478], [-1226, -482], [-1219, -482], [-1217, -480], [-1216, -479], [-1215, -479], [-1215, -484], [-1214, -485], [-1212, -485], [-1210, -484], [-1208, -483], [-1208, -474], [-1211, -472], [-1211, -468], [-1212, -467], [-1214, -466], [-1215, -470], [-1217, -469], [-1217, -467], [-1214, -462], [-1213, -459], [-1214, -457], [-1213, -457], [-1210, -458], [-1209, -457], [-1208, -455], [-1213, -452], [-1216, -452], [-1218, -457], [-1221, -457], [-1221, -458], [-1223, -456], [-1225, -456], [-1226, -457], [-1228, -455], [-1225, -452], [-1227, -451], [-1228, -453], [-1231, -453], [-1232, -454], [-1230, -456], [-1230, -462], [-1229, -461], [-1227, -464]]}, "center": {"187-258, T": [-1221, -474]}}, +{"id": 4971, "name": "The Mauritshuis", "description": "The Mauritshuis is an art museum in The Hague, Netherlands. The museum houses the Royal Cabinet of Paintings which consists of 854 objects, mostly Dutch Golden Age paintings.", "links": {"website": ["https://en.wikipedia.org/wiki/Mauritshuis"], "subreddit": ["PlaceNL"], "discord": ["placenl"], "wiki": ["Mauritshuis"]}, "path": {"196-258, T": [[-1413, -476], [-1412, -455], [-1384, -455], [-1384, -475], [-1392, -483], [-1392, -485], [-1393, -482], [-1404, -482], [-1405, -484], [-1405, -482], [-1412, -476]]}, "center": {"196-258, T": [-1398, -468]}}, {"id": 4973, "name": "PolispCor", "description": "El corazón que torpemente dibujó la comunidad de @cinepol como buenamente pudieron.\nLe pusieron cariño, pero pobres, no dan mas de sí.\nQuedó digno de ellos.", "links": {"website": ["http://www.twitch.tv/polispol1"], "discord": ["cinepol"]}, "path": {"203": [[-890, 392], [-868, 393], [-867, 404], [-865, 405], [-865, 418], [-891, 419]]}, "center": {"203": [-879, 406]}}, {"id": 4974, "name": "ChainaVT Community", "description": "Pixelart made by the ChainaVT community, the ChaiChai, for our silly cat Chainita, we love you so much.", "links": {"website": ["https://www.twitch.tv/chainavt"], "discord": ["8V8RXvp"]}, "path": {"223": [[1000, 249], [1000, 281], [1048, 281], [1048, 256], [1052, 256], [1052, 250]]}, "center": {"223": [1024, 265]}}, -{"id": 4975, "name": "Llama", "description": "Este animal se encuentra distribuido en el Altiplano andino, en Perú.", "links": {}, "path": {"223-258": [[-574, -876], [-560, -876], [-561, -853], [-575, -853]]}, "center": {"223-258": [-567, -864]}}, +{"id": 4975, "name": "Llama", "description": "Este animal se encuentra distribuido en el Altiplano andino, en Perú.", "links": {}, "path": {"223-258, T": [[-574, -876], [-560, -876], [-561, -853], [-575, -853]]}, "center": {"223-258, T": [-567, -864]}}, {"id": 4976, "name": "criss/crisse", "description": "criss, short of crisse. From christ. a quebec swear. could be comapare to \"fuck\" \"as Fuck, that pisses me off!\" - \"Crisse que ça m'énarve !\"", "links": {"website": ["https://en.wiktionary.org/wiki/crisse"]}, "path": {"26-36": [[467, 157], [467, 165], [490, 165], [499, 164], [499, 156], [467, 156]], "37-50": [[466, 157], [467, 165], [489, 165], [488, 156]]}, "center": {"26-36": [483, 161], "37-50": [478, 161]}}, -{"id": 4977, "name": "De Nieuws BV", "description": "The show on NPO radio 1 by BNN that an administrator of r/placeNL was invited to speak on. A program focused on news, insights and distractions. Hosted by Patrick Lodiers", "links": {"website": ["https://www.nporadio1.nl/programmas/de-nieuws-bv"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"241-258": [[-272, -499], [-272, -517], [-245, -517], [-245, -500]]}, "center": {"241-258": [-259, -508]}}, -{"id": 4978, "name": "NPO Radio 1", "description": "NPO Radio 1 is a national public service radio channel in the Netherlands, broadcasting mainly news and sport.\n\nAn administrator of r/placeNL was invited on NPO Radio 1 to speak after r/place 2023 ended.", "links": {"website": ["https://www.nporadio1.nl/programmas/de-nieuws-bv", "https://en.wikipedia.org/wiki/NPO_Radio_1"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"241-258": [[-306, -489], [-321, -504], [-305, -519], [-297, -512], [-290, -520], [-274, -505], [-274, -502], [-288, -489], [-291, -489], [-296, -495], [-305, -489]]}, "center": {"241-258": [-289, -504]}}, -{"id": 4979, "name": "The Smurfs", "description": "The Smurfs is a Belgian comic franchise centered on a fictional colony of small, blue, humanoid creatures who live in mushroom-shaped houses in the forest. The Smurfs was first created and introduced as a series of comic characters by the Belgian comics artist Peyo (the pen name of Pierre Culliford) in 1958, wherein they were known as Les Schtroumpfs. There are more than 100 Smurf characters, and their names are based on adjectives that emphasise their characteristics, such as \"Jokey Smurf\", who likes to play practical jokes on his fellow Smurfs. \"Smurfette\" was the first female Smurf to be introduced in the series. The Smurfs wear Phrygian caps, which came to represent freedom during the modern era.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Smurfs"]}, "path": {"248-258": [[1113, 780], [1112, 749], [1128, 750], [1129, 756], [1129, 780]]}, "center": {"248-258": [1121, 765]}}, +{"id": 4977, "name": "De Nieuws BV", "description": "The show on NPO radio 1 by BNN that an administrator of r/placeNL was invited to speak on. A program focused on news, insights and distractions. Hosted by Patrick Lodiers", "links": {"website": ["https://www.nporadio1.nl/programmas/de-nieuws-bv"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"241-258, T": [[-272, -499], [-272, -517], [-245, -517], [-245, -500]]}, "center": {"241-258, T": [-259, -508]}}, +{"id": 4978, "name": "NPO Radio 1", "description": "NPO Radio 1 is a national public service radio channel in the Netherlands, broadcasting mainly news and sport.\n\nAn administrator of r/placeNL was invited on NPO Radio 1 to speak after r/place 2023 ended.", "links": {"website": ["https://www.nporadio1.nl/programmas/de-nieuws-bv", "https://en.wikipedia.org/wiki/NPO_Radio_1"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"241-258, T": [[-306, -489], [-321, -504], [-305, -519], [-297, -512], [-290, -520], [-274, -505], [-274, -502], [-288, -489], [-291, -489], [-296, -495], [-305, -489]]}, "center": {"241-258, T": [-289, -504]}}, +{"id": 4979, "name": "The Smurfs", "description": "The Smurfs is a Belgian comic franchise centered on a fictional colony of small, blue, humanoid creatures who live in mushroom-shaped houses in the forest. The Smurfs was first created and introduced as a series of comic characters by the Belgian comics artist Peyo (the pen name of Pierre Culliford) in 1958, wherein they were known as Les Schtroumpfs. There are more than 100 Smurf characters, and their names are based on adjectives that emphasise their characteristics, such as \"Jokey Smurf\", who likes to play practical jokes on his fellow Smurfs. \"Smurfette\" was the first female Smurf to be introduced in the series. The Smurfs wear Phrygian caps, which came to represent freedom during the modern era.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Smurfs"]}, "path": {"248-258, T": [[1113, 780], [1112, 749], [1128, 750], [1129, 756], [1129, 780]]}, "center": {"248-258, T": [1121, 765]}}, {"id": 4980, "name": "Bambuners", "description": "Pequeño homenaje a la comunidad Bambuners del streamer D0oppa", "links": {"website": ["https://www.twitch.tv/d0oppa"], "subreddit": ["bambuners"]}, "path": {"131": [[423, -527], [439, -527], [439, -514], [423, -515]]}, "center": {"131": [431, -521]}}, -{"id": 4981, "name": "Baliadoski", "description": "Plato Tipico Hondureño", "links": {}, "path": {"250-258": [[-838, 408], [-841, 414], [-830, 414], [-833, 409], [-837, 409], [-835, 412]]}, "center": {"250-258": [-838, 412]}}, -{"id": 4982, "name": "Salsa Lizano and Cacique", "description": "Salsa Lizano is typical sauce in Costa Rica it people use it on the \"Gallo Pinto\" for giving more flavor to it. \nCacique is an typical alcoholic drink in Costa Rica.", "links": {}, "path": {"250-258": [[-1152, -338], [-1153, -327], [-1141, -326], [-1142, -338]]}, "center": {"250-258": [-1147, -332]}}, -{"id": 4983, "name": "OV Chipkaart", "description": "Two plastic cards which are used to access the Dutch public transport system. \n\nBoth the yellow personalized permanent card and the anonymous temporary blue card.", "links": {"website": ["https://en.wikipedia.org/wiki/OV-chipkaart"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"250-258": [[-1146, -510], [-1146, -490], [-1086, -491], [-1087, -509]]}, "center": {"250-258": [-1136, -500]}}, +{"id": 4981, "name": "Baliadoski", "description": "Plato Tipico Hondureño", "links": {}, "path": {"250-258, T": [[-838, 408], [-841, 414], [-830, 414], [-833, 409], [-837, 409], [-835, 412]]}, "center": {"250-258, T": [-838, 412]}}, +{"id": 4982, "name": "Salsa Lizano and Cacique", "description": "Salsa Lizano is typical sauce in Costa Rica it people use it on the \"Gallo Pinto\" for giving more flavor to it. \nCacique is an typical alcoholic drink in Costa Rica.", "links": {}, "path": {"250-258, T": [[-1152, -338], [-1153, -327], [-1141, -326], [-1142, -338]]}, "center": {"250-258, T": [-1147, -332]}}, +{"id": 4983, "name": "OV Chipkaart", "description": "Two plastic cards which are used to access the Dutch public transport system. \n\nBoth the yellow personalized permanent card and the anonymous temporary blue card.", "links": {"website": ["https://en.wikipedia.org/wiki/OV-chipkaart"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"250-258, T": [[-1146, -510], [-1146, -490], [-1086, -491], [-1087, -509]]}, "center": {"250-258, T": [-1136, -500]}}, {"id": 4984, "name": "Twice - 6th Logo Attempt", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nSeeking refuge after previously being destroyed, r/Twice set up under the protection of allies r/Femboy in what would become their 6th attempt to stay on the canvas. \n\nNot long after starting construction here, r/Twice was overcome by an unknown group and then eventually the absolute destruction of the entire area following the creation of the \"MonkaW\" Twitch emote by streamer XQC.", "links": {"subreddit": ["Twice"]}, "path": {"121-122": [[-531, -702], [-514, -702], [-514, -681], [-530, -681]]}, "center": {"121-122": [-522, -692]}}, -{"id": 4985, "name": "9292 Logo", "description": "The 9292 app is a popular travel planning application in the Netherlands, that helps users find and navigate public transportation options, providing real-time departure and arrival times, route suggestions, and information on disruptions.", "links": {"website": ["https://9292.nl/"]}, "path": {"250-258": [[-1145, -470], [-1126, -470], [-1126, -450], [-1145, -451]]}, "center": {"250-258": [-1135, -460]}}, -{"id": 4986, "name": "Moon Rocket (Tintin)", "description": "The Moon Rocketis an iconic piece in The Adventures of Tintin. The Adventures of Tintin (French: Les Aventures de Tintin) is a series of 24 bande dessinée albums created by Belgian cartoonist Hergé.\n\nThe moon rocket was a rocket invented by Cuthbert Calculus. It is red in color and it has red and white square patterns in the middle predictively with 5 decks.", "links": {"website": ["https://tintin.fandom.com/wiki/Moon_Rocket", "https://en.wikipedia.org/wiki/The_Adventures_of_Tintin"]}, "path": {"104-113": [[834, 371], [838, 375], [844, 367], [852, 365], [856, 370], [860, 365], [853, 356], [854, 322], [849, 311], [843, 322], [843, 356]], "150-258": [[844, 203], [840, 203], [841, 216], [837, 222], [837, 234], [837, 255], [832, 264], [829, 268], [828, 274], [829, 276], [839, 277], [857, 275], [858, 272], [855, 263], [852, 259], [849, 256], [848, 222], [845, 215]]}, "center": {"104-113": [848, 360], "150-258": [843, 266]}}, -{"id": 4987, "name": "Tip Stevens' Totems", "description": "The Totems are the symbols of Tip Stevens, a French singer, compositor and multi-instrumentalist. Tip Stevens is also a streamer famous for his musical streams. The Totems represent his community.", "links": {"website": ["https://www.tipstevens.com/", "https://www.twitch.tv/tipstevens", "https://www.youtube.com/@TipStevens"]}, "path": {"138-258": [[884, 129], [880, 129], [880, 124], [876, 124], [876, 129], [872, 129], [872, 124], [868, 124], [868, 129], [864, 129], [864, 124], [860, 124], [860, 129], [856, 129], [856, 124], [852, 124], [852, 129], [848, 129], [848, 124], [844, 124], [844, 129], [840, 129], [840, 124], [836, 124], [836, 129], [832, 129], [832, 124], [828, 124], [828, 129], [824, 129], [824, 124], [820, 124], [820, 129], [816, 129], [816, 124], [812, 124], [812, 129], [808, 129], [808, 124], [804, 124], [804, 129], [800, 129], [800, 124], [796, 124], [796, 129], [792, 129], [792, 124], [788, 124], [788, 129], [784, 129], [784, 124], [780, 124], [780, 129], [776, 129], [776, 124], [772, 124], [772, 129], [768, 129], [768, 124], [766, 124], [766, 122], [768, 122], [768, 121], [769, 121], [769, 120], [771, 120], [771, 121], [772, 121], [772, 122], [776, 122], [776, 121], [777, 121], [777, 120], [779, 120], [779, 121], [780, 121], [780, 122], [784, 122], [784, 121], [785, 121], [785, 120], [786, 120], [787, 120], [787, 121], [788, 121], [788, 122], [790, 122], [792, 122], [792, 121], [793, 121], [793, 120], [795, 120], [795, 121], [796, 121], [796, 122], [800, 122], [800, 121], [801, 121], [801, 120], [803, 120], [803, 121], [804, 121], [804, 122], [808, 122], [808, 121], [809, 121], [809, 120], [811, 120], [811, 121], [812, 121], [812, 122], [816, 122], [816, 121], [817, 121], [817, 120], [818, 120], [819, 120], [819, 121], [820, 121], [820, 122], [824, 122], [824, 121], [825, 121], [825, 120], [827, 120], [827, 121], [828, 121], [828, 122], [832, 122], [832, 121], [833, 121], [833, 120], [835, 120], [835, 121], [836, 121], [836, 122], [839, 122], [840, 122], [840, 121], [841, 121], [841, 120], [843, 120], [843, 121], [844, 121], [844, 122], [848, 122], [848, 121], [849, 121], [849, 120], [851, 120], [851, 121], [852, 121], [852, 122], [856, 122], [856, 121], [857, 121], [857, 120], [859, 120], [859, 121], [860, 121], [860, 122], [864, 122], [864, 121], [865, 121], [865, 120], [867, 120], [867, 121], [868, 121], [868, 122], [872, 122], [872, 121], [873, 121], [873, 120], [875, 120], [875, 121], [876, 121], [876, 122], [880, 122], [880, 121], [881, 121], [881, 120], [883, 120], [883, 121], [884, 121], [884, 122], [886, 122], [886, 124], [885, 124], [885, 125], [884, 125]]}, "center": {"138-258": [770, 126]}}, -{"id": 4988, "name": "Attentie! WhatsApp Buurtpreventie", "description": "'Attentie! WhatsApp Buurtpreventie' ('Attention! WhatsApp Neighbourhood Prevention') is sign used in the Netherlands to indicate that a neighbourhood uses WhatsApp, sometimes in combination with other networks, so that residents can inform each other of crimes and threats. This is meant to lower crime rates and discourage criminals.", "links": {"website": ["https://www.wabp.nl/"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"189-258": [[-1205, -490], [-1205, -451], [-1147, -451], [-1147, -490]]}, "center": {"189-258": [-1176, -470]}}, +{"id": 4985, "name": "9292 Logo", "description": "The 9292 app is a popular travel planning application in the Netherlands, that helps users find and navigate public transportation options, providing real-time departure and arrival times, route suggestions, and information on disruptions.", "links": {"website": ["https://9292.nl/"]}, "path": {"250-258, T": [[-1145, -470], [-1126, -470], [-1126, -450], [-1145, -451]]}, "center": {"250-258, T": [-1135, -460]}}, +{"id": 4986, "name": "Moon Rocket (Tintin)", "description": "The Moon Rocketis an iconic piece in The Adventures of Tintin. The Adventures of Tintin (French: Les Aventures de Tintin) is a series of 24 bande dessinée albums created by Belgian cartoonist Hergé.\n\nThe moon rocket was a rocket invented by Cuthbert Calculus. It is red in color and it has red and white square patterns in the middle predictively with 5 decks.", "links": {"website": ["https://tintin.fandom.com/wiki/Moon_Rocket", "https://en.wikipedia.org/wiki/The_Adventures_of_Tintin"]}, "path": {"104-113": [[834, 371], [838, 375], [844, 367], [852, 365], [856, 370], [860, 365], [853, 356], [854, 322], [849, 311], [843, 322], [843, 356]], "150-258, T": [[844, 203], [840, 203], [841, 216], [837, 222], [837, 234], [837, 255], [832, 264], [829, 268], [828, 274], [829, 276], [839, 277], [857, 275], [858, 272], [855, 263], [852, 259], [849, 256], [848, 222], [845, 215]]}, "center": {"104-113": [848, 360], "150-258, T": [843, 266]}}, +{"id": 4987, "name": "Tip Stevens' Totems", "description": "The Totems are the symbols of Tip Stevens, a French singer, compositor and multi-instrumentalist. Tip Stevens is also a streamer famous for his musical streams. The Totems represent his community.", "links": {"website": ["https://www.tipstevens.com/", "https://www.twitch.tv/tipstevens", "https://www.youtube.com/@TipStevens"]}, "path": {"138-258, T": [[884, 129], [880, 129], [880, 124], [876, 124], [876, 129], [872, 129], [872, 124], [868, 124], [868, 129], [864, 129], [864, 124], [860, 124], [860, 129], [856, 129], [856, 124], [852, 124], [852, 129], [848, 129], [848, 124], [844, 124], [844, 129], [840, 129], [840, 124], [836, 124], [836, 129], [832, 129], [832, 124], [828, 124], [828, 129], [824, 129], [824, 124], [820, 124], [820, 129], [816, 129], [816, 124], [812, 124], [812, 129], [808, 129], [808, 124], [804, 124], [804, 129], [800, 129], [800, 124], [796, 124], [796, 129], [792, 129], [792, 124], [788, 124], [788, 129], [784, 129], [784, 124], [780, 124], [780, 129], [776, 129], [776, 124], [772, 124], [772, 129], [768, 129], [768, 124], [766, 124], [766, 122], [768, 122], [768, 121], [769, 121], [769, 120], [771, 120], [771, 121], [772, 121], [772, 122], [776, 122], [776, 121], [777, 121], [777, 120], [779, 120], [779, 121], [780, 121], [780, 122], [784, 122], [784, 121], [785, 121], [785, 120], [786, 120], [787, 120], [787, 121], [788, 121], [788, 122], [790, 122], [792, 122], [792, 121], [793, 121], [793, 120], [795, 120], [795, 121], [796, 121], [796, 122], [800, 122], [800, 121], [801, 121], [801, 120], [803, 120], [803, 121], [804, 121], [804, 122], [808, 122], [808, 121], [809, 121], [809, 120], [811, 120], [811, 121], [812, 121], [812, 122], [816, 122], [816, 121], [817, 121], [817, 120], [818, 120], [819, 120], [819, 121], [820, 121], [820, 122], [824, 122], [824, 121], [825, 121], [825, 120], [827, 120], [827, 121], [828, 121], [828, 122], [832, 122], [832, 121], [833, 121], [833, 120], [835, 120], [835, 121], [836, 121], [836, 122], [839, 122], [840, 122], [840, 121], [841, 121], [841, 120], [843, 120], [843, 121], [844, 121], [844, 122], [848, 122], [848, 121], [849, 121], [849, 120], [851, 120], [851, 121], [852, 121], [852, 122], [856, 122], [856, 121], [857, 121], [857, 120], [859, 120], [859, 121], [860, 121], [860, 122], [864, 122], [864, 121], [865, 121], [865, 120], [867, 120], [867, 121], [868, 121], [868, 122], [872, 122], [872, 121], [873, 121], [873, 120], [875, 120], [875, 121], [876, 121], [876, 122], [880, 122], [880, 121], [881, 121], [881, 120], [883, 120], [883, 121], [884, 121], [884, 122], [886, 122], [886, 124], [885, 124], [885, 125], [884, 125]]}, "center": {"138-258, T": [770, 126]}}, +{"id": 4988, "name": "Attentie! WhatsApp Buurtpreventie", "description": "'Attentie! WhatsApp Buurtpreventie' ('Attention! WhatsApp Neighbourhood Prevention') is sign used in the Netherlands to indicate that a neighbourhood uses WhatsApp, sometimes in combination with other networks, so that residents can inform each other of crimes and threats. This is meant to lower crime rates and discourage criminals.", "links": {"website": ["https://www.wabp.nl/"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"189-258, T": [[-1205, -490], [-1205, -451], [-1147, -451], [-1147, -490]]}, "center": {"189-258, T": [-1176, -470]}}, {"id": 4989, "name": "Freddy Riley Identity V", "description": "A survivor from 1v4 asymmetrical Horror Game Identity V", "links": {"website": ["http://idv.163.com/"], "subreddit": ["IdentityV"]}, "path": {"251-258": [[1135, 770], [1134, 776], [1140, 775], [1139, 770]]}, "center": {"251-258": [1137, 773]}}, {"id": 4990, "name": "2nd Danny Gonzalez Nutcracker", "description": "This is another pixelized rendition of the nutcracker soldier (known as \"The Little Nutcracker Guy\" in the community) that appears in the background of Danny Gonzalez's videos. This one however was overtaken before it was finished.", "links": {"subreddit": ["DannyGonzalez"]}, "path": {"212-215": [[-1348, 912], [-1347, 911], [-1341, 911], [-1340, 912], [-1340, 920], [-1341, 921], [-1341, 924], [-1342, 925], [-1339, 928], [-1339, 930], [-1341, 930], [-1341, 933], [-1342, 936], [-1350, 936], [-1350, 927], [-1349, 927], [-1348, 926], [-1348, 911]]}, "center": {"212-215": [-1346, 930]}}, {"id": 4991, "name": "Ralseis blunt", "description": "A deltarune meme containing the character ralsei smoking a blunt", "links": {"subreddit": ["deltarune"]}, "path": {"255-259": [[-135, -934], [-126, -929], [-126, -934], [-133, -935]]}, "center": {"255-259": [-128, -932]}}, {"id": 4992, "name": "Gilles Villeneuve", "description": "Joseph Gilles Henri Villeneuve (French pronunciation: ​[ʒil vilnœv]) (January 18, 1950 – May 8, 1982) was a Canadian racing driver who spent six years in Formula One racing for Ferrari, winning six Grands Prix and earning widespread acclaim for his performances.\n\nAn enthusiast of cars and fast driving from an early age, Villeneuve started his professional career in snowmobile racing in his native province of Quebec. He moved into single seaters, winning the US and Canadian Formula Atlantic championships in 1976, before being offered a drive in Formula One with the McLaren team at the 1977 British Grand Prix. He was taken on by reigning world champions Ferrari for the end of the season and drove for the Italian team from 1978 until his death in 1982. Villeneuve won six Grand Prix races in a short career at the highest level, and claimed second, his highest finish, in the 1979 Formula One World Championship; four points behind teammate Jody Scheckter.\n\nVilleneuve died in a 140 mph (230 km/h) crash resulting from a collision with the March car driven by Jochen Mass during qualifying for the 1982 Belgian Grand Prix at Zolder. The accident came less than two weeks after an intense argument with his teammate, Didier Pironi, over Pironi's move to pass Villeneuve at the preceding San Marino Grand Prix. At the time of his death, Villeneuve was extremely popular with fans and has since become an iconic figure in the history of the sport. His son, Jacques Villeneuve, became Formula One World Champion in 1997, to date the only Canadian to win the Formula One World Championship.", "links": {"website": ["https://2023.place-atlas.stefanocoding.me/#2034/238/650/561/4", "https://en.wikipedia.org/wiki/Gilles_Villeneuve"], "discord": ["PlaceQuebec"]}, "path": {"173-186": [[742, 312], [799, 312], [792, 327], [792, 334], [747, 334], [743, 328]]}, "center": {"173-186": [771, 323]}}, -{"id": 4993, "name": "Amongii in Love", "description": "Two Amongii find love amidst the chaos. 2nd year on the final Canvas ❤️", "links": {}, "path": {"250-258": [[1351, 113], [1361, 113], [1361, 105], [1351, 105]]}, "center": {"250-258": [1356, 109]}}, -{"id": 4994, "name": "JellyCar", "description": "The main car from the JellyCar series. The design used here is based off the one used in JellyCar Worlds.", "links": {"website": ["http://www.walaber.com/jellycar"], "discord": ["walaber"]}, "path": {"216-258": [[-701, -580], [-702, -579], [-703, -578], [-704, -577], [-705, -577], [-705, -576], [-705, -575], [-704, -575], [-704, -574], [-703, -573], [-702, -573], [-701, -574], [-701, -575], [-700, -575], [-699, -575], [-698, -575], [-697, -575], [-697, -574], [-696, -573], [-695, -573], [-694, -574], [-693, -575], [-693, -576], [-693, -577], [-695, -577], [-696, -578], [-697, -579], [-698, -580]]}, "center": {"216-258": [-699, -577]}}, +{"id": 4993, "name": "Amongii in Love", "description": "Two Amongii find love amidst the chaos. 2nd year on the final Canvas ❤️", "links": {}, "path": {"250-258, T": [[1351, 113], [1361, 113], [1361, 105], [1351, 105]]}, "center": {"250-258, T": [1356, 109]}}, +{"id": 4994, "name": "JellyCar", "description": "The main car from the JellyCar series. The design used here is based off the one used in JellyCar Worlds.", "links": {"website": ["http://www.walaber.com/jellycar"], "discord": ["walaber"]}, "path": {"216-258, T": [[-701, -580], [-702, -579], [-703, -578], [-704, -577], [-705, -577], [-705, -576], [-705, -575], [-704, -575], [-704, -574], [-703, -573], [-702, -573], [-701, -574], [-701, -575], [-700, -575], [-699, -575], [-698, -575], [-697, -575], [-697, -574], [-696, -573], [-695, -573], [-694, -574], [-693, -575], [-693, -576], [-693, -577], [-695, -577], [-696, -578], [-697, -579], [-698, -580]]}, "center": {"216-258, T": [-699, -577]}}, {"id": 4995, "name": "Tip Stevens' Totems", "description": "The Totems are the symbols of Tip Stevens, a French singer, compositor, multi-instrumentalist. Tip Stevens is also a streamer famous for his musical streams. The Totems represent his community.", "links": {"website": ["https://www.tipstevens.com/", "https://www.youtube.com/@TipStevens", "https://www.twitch.tv/tipstevens"]}, "path": {"109-119": [[-718, 483], [-716, 483], [-716, 482], [-715, 482], [-715, 481], [-713, 481], [-713, 482], [-712, 482], [-712, 483], [-710, 483], [-710, 485], [-711, 485], [-711, 486], [-712, 486], [-712, 492], [-710, 492], [-710, 494], [-711, 494], [-711, 495], [-712, 495], [-712, 499], [-716, 499], [-716, 495], [-717, 495], [-717, 494], [-718, 494], [-718, 492], [-716, 492], [-716, 486], [-717, 486], [-717, 485], [-718, 485]]}, "center": {"109-119": [-714, 493]}}, {"id": 4996, "name": "Espreitador", "description": "O Espreitador (Portuguese for \"The Lurker\") is a creature from \"Ordem Paranormal\", a role-playing game created by Brazilian streamer Cellbit.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/O_Espreitador"], "subreddit": ["cellbits"], "discord": ["cellbit"]}, "path": {"232": [[605, 364], [603, 362], [601, 362], [602, 409], [615, 410], [615, 362], [601, 362], [602, 411], [601, 411]]}, "center": {"232": [608, 402]}}, -{"id": 4997, "name": "Keylor Navas", "description": "Keylor Navas is a Costa Rican football/soccer goalkeeper. He has played for numerous clubs, including Real Madrid, PSG and currently Nottingham Forest. He started his career with Saprissa in Costa Rica and would take their national team to the quarter finals of the 2014 World Cup", "links": {"website": ["https://en.wikipedia.org/wiki/Keylor_Navas"]}, "path": {"189-258": [[-1049, -368], [-1050, -368], [-1050, -365], [-1053, -365], [-1055, -363], [-1055, -362], [-1054, -361], [-1054, -360], [-1053, -359], [-1053, -358], [-1052, -357], [-1052, -355], [-1051, -354], [-1050, -352], [-1050, -351], [-1049, -350], [-1049, -348], [-1048, -347], [-1048, -346], [-1047, -345], [-1047, -344], [-1046, -343], [-1046, -342], [-1045, -341], [-1045, -340], [-1043, -338], [-1043, -337], [-1039, -333], [-1038, -332], [-1038, -331], [-1035, -328], [-1034, -328], [-1032, -326], [-1032, -324], [-1005, -324], [-1005, -329], [-1004, -330], [-1004, -332], [-1003, -333], [-1003, -336], [-1002, -337], [-1002, -339], [-1003, -340], [-1002, -341], [-1002, -347], [-1005, -350], [-1005, -351], [-1007, -353], [-1007, -355], [-1008, -355], [-1008, -364], [-1009, -364], [-1010, -365], [-1011, -366], [-1014, -366], [-1014, -368], [-1016, -368], [-1016, -364], [-1018, -364], [-1018, -361], [-1017, -361], [-1017, -360], [-1015, -358], [-1015, -357], [-1014, -357], [-1011, -354], [-1011, -351], [-1010, -350], [-1010, -348], [-1009, -347], [-1009, -345], [-1008, -344], [-1008, -342], [-1009, -342], [-1009, -341], [-1010, -340], [-1010, -338], [-1011, -337], [-1012, -336], [-1013, -336], [-1014, -335], [-1015, -336], [-1015, -338], [-1014, -338], [-1014, -340], [-1013, -340], [-1013, -344], [-1014, -344], [-1014, -346], [-1015, -346], [-1016, -347], [-1017, -348], [-1018, -349], [-1022, -349], [-1025, -346], [-1025, -344], [-1026, -343], [-1026, -337], [-1026, -336], [-1025, -335], [-1026, -334], [-1028, -334], [-1029, -335], [-1030, -335], [-1031, -336], [-1032, -336], [-1033, -337], [-1034, -337], [-1040, -343], [-1041, -344], [-1041, -345], [-1043, -347], [-1043, -349], [-1044, -349], [-1045, -350], [-1045, -352], [-1046, -353], [-1047, -354], [-1047, -356], [-1048, -357], [-1048, -358], [-1047, -359], [-1046, -360], [-1046, -362], [-1047, -363], [-1048, -363], [-1048, -368]]}, "center": {"189-258": [-1020, -331]}}, +{"id": 4997, "name": "Keylor Navas", "description": "Keylor Navas is a Costa Rican football/soccer goalkeeper. He has played for numerous clubs, including Real Madrid, PSG and currently Nottingham Forest. He started his career with Saprissa in Costa Rica and would take their national team to the quarter finals of the 2014 World Cup", "links": {"website": ["https://en.wikipedia.org/wiki/Keylor_Navas"]}, "path": {"189-258, T": [[-1049, -368], [-1050, -368], [-1050, -365], [-1053, -365], [-1055, -363], [-1055, -362], [-1054, -361], [-1054, -360], [-1053, -359], [-1053, -358], [-1052, -357], [-1052, -355], [-1051, -354], [-1050, -352], [-1050, -351], [-1049, -350], [-1049, -348], [-1048, -347], [-1048, -346], [-1047, -345], [-1047, -344], [-1046, -343], [-1046, -342], [-1045, -341], [-1045, -340], [-1043, -338], [-1043, -337], [-1039, -333], [-1038, -332], [-1038, -331], [-1035, -328], [-1034, -328], [-1032, -326], [-1032, -324], [-1005, -324], [-1005, -329], [-1004, -330], [-1004, -332], [-1003, -333], [-1003, -336], [-1002, -337], [-1002, -339], [-1003, -340], [-1002, -341], [-1002, -347], [-1005, -350], [-1005, -351], [-1007, -353], [-1007, -355], [-1008, -355], [-1008, -364], [-1009, -364], [-1010, -365], [-1011, -366], [-1014, -366], [-1014, -368], [-1016, -368], [-1016, -364], [-1018, -364], [-1018, -361], [-1017, -361], [-1017, -360], [-1015, -358], [-1015, -357], [-1014, -357], [-1011, -354], [-1011, -351], [-1010, -350], [-1010, -348], [-1009, -347], [-1009, -345], [-1008, -344], [-1008, -342], [-1009, -342], [-1009, -341], [-1010, -340], [-1010, -338], [-1011, -337], [-1012, -336], [-1013, -336], [-1014, -335], [-1015, -336], [-1015, -338], [-1014, -338], [-1014, -340], [-1013, -340], [-1013, -344], [-1014, -344], [-1014, -346], [-1015, -346], [-1016, -347], [-1017, -348], [-1018, -349], [-1022, -349], [-1025, -346], [-1025, -344], [-1026, -343], [-1026, -337], [-1026, -336], [-1025, -335], [-1026, -334], [-1028, -334], [-1029, -335], [-1030, -335], [-1031, -336], [-1032, -336], [-1033, -337], [-1034, -337], [-1040, -343], [-1041, -344], [-1041, -345], [-1043, -347], [-1043, -349], [-1044, -349], [-1045, -350], [-1045, -352], [-1046, -353], [-1047, -354], [-1047, -356], [-1048, -357], [-1048, -358], [-1047, -359], [-1046, -360], [-1046, -362], [-1047, -363], [-1048, -363], [-1048, -368]]}, "center": {"189-258, T": [-1020, -331]}}, {"id": 4998, "name": "Hypixel Zombies Community", "description": "Hypixel Zombies Community made their iconic, old one zombie, king slime, and broodmother.", "links": {"discord": ["QeVmNmXwvD"]}, "path": {"15-18": [[59, 492], [85, 492], [85, 499], [60, 499]]}, "center": {"15-18": [72, 496]}}, {"id": 5000, "name": "Shotbow Network", "description": "Shotbow Network is a server network for the game Minecraft. It is home to classic game modes like MineZ, Annihilation, and Smash.\n\nThis text was written by a bot net. According to Shotbow Network, the bots were orchestrated by a user who had been hacking on Shotbow for years.", "links": {"website": ["https://shotbow.net", "https://twitter.com/ShotbowNetwork/status/1683922584767987712"]}, "path": {"252": [[324, -650], [309, -637], [301, -615], [301, -537], [314, -520], [782, -520], [791, -611], [778, -648]], "253-258": [[313, -638], [307, -627], [307, -610], [701, -610], [709, -551], [681, -551], [409, -550], [408, -519], [777, -525], [788, -606], [777, -645], [716, -644], [687, -641]]}, "center": {"252": [431, -585], "253-258": [745, -602]}}, {"id": 5001, "name": "Shotbow Network", "description": "Shotbow Network is a server network for the game Minecraft. It is home to classic game modes like MineZ, Annihilation, and Smash.\n\nThis text was written by a bot net. According to Shotbow Network, the bots were orchestrated by a user who had been hacking on Shotbow for years.", "links": {"website": ["https://shotbow.net", "https://twitter.com/ShotbowNetwork/status/1683922584767987712"]}, "path": {"252": [[-206, -203], [-235, -168], [-238, -97], [-228, -80], [-204, -71], [243, -72], [253, -133], [260, -199], [215, -203]], "253-258": [[150, -189], [106, -172], [99, -151], [99, -102], [103, -99], [245, -99], [250, -153], [250, -180], [247, -193], [239, -196], [218, -199], [203, -199]]}, "center": {"252": [10, -137], "253-258": [200, -148]}}, -{"id": 5004, "name": "Mascara Maleku", "description": "This is a type of mask made by the natives of Costa Rica they are so color full and tries to represent the God Maleku", "links": {}, "path": {"250-258": [[-1070, -359], [-1066, -342], [-1055, -343], [-1053, -360]]}, "center": {"250-258": [-1061, -352]}}, -{"id": 5005, "name": "Meltan", "description": "The Hexnut Pokemon, it first appeared in the mobile spin-off Pokemon Go", "links": {"wiki": ["Pokemon_in_r/Place"]}, "path": {"199-258": [[-1413, 417], [-1408, 417], [-1406, 419], [-1406, 420], [-1405, 421], [-1405, 423], [-1406, 424], [-1406, 425], [-1407, 426], [-1407, 429], [-1414, 429], [-1414, 426], [-1415, 425], [-1415, 424], [-1416, 423], [-1416, 421], [-1415, 420], [-1415, 419]]}, "center": {"199-258": [-1410, 423]}}, +{"id": 5004, "name": "Mascara Maleku", "description": "This is a type of mask made by the natives of Costa Rica they are so color full and tries to represent the God Maleku", "links": {}, "path": {"250-258, T": [[-1070, -359], [-1066, -342], [-1055, -343], [-1053, -360]]}, "center": {"250-258, T": [-1061, -352]}}, +{"id": 5005, "name": "Meltan", "description": "The Hexnut Pokemon, it first appeared in the mobile spin-off Pokemon Go", "links": {"wiki": ["Pokemon_in_r/Place"]}, "path": {"199-258, T": [[-1413, 417], [-1408, 417], [-1406, 419], [-1406, 420], [-1405, 421], [-1405, 423], [-1406, 424], [-1406, 425], [-1407, 426], [-1407, 429], [-1414, 429], [-1414, 426], [-1415, 425], [-1415, 424], [-1416, 423], [-1416, 421], [-1415, 420], [-1415, 419]]}, "center": {"199-258, T": [-1410, 423]}}, {"id": 5006, "name": "Loeki the Lion", "description": "Loeki de Leeuw is a doll who, from 1972 to 2004, brightened up the Ster's commercials on television in short films every day. These were often seen at the beginning and end of commercial breaks. From 1972 to 2004, the films were occasionally shown between commercials.", "links": {"website": ["https://en.wikipedia.org/wiki/Loeki_de_Leeuw"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"212-249": [[1317, -480], [1321, -488], [1315, -491], [1315, -498], [1317, -501], [1316, -507], [1316, -511], [1320, -511], [1320, -515], [1324, -517], [1328, -516], [1330, -515], [1335, -514], [1336, -511], [1339, -505], [1342, -502], [1342, -501], [1348, -499], [1346, -492], [1341, -496], [1339, -493], [1335, -492], [1347, -483], [1347, -481]], "251-258": [[1144, -451], [1149, -458], [1142, -461], [1142, -469], [1145, -472], [1144, -477], [1142, -481], [1147, -482], [1149, -487], [1154, -487], [1158, -485], [1162, -484], [1162, -482], [1165, -479], [1165, -477], [1166, -475], [1168, -475], [1169, -471], [1175, -469], [1171, -463], [1168, -466], [1163, -462], [1164, -460], [1173, -454], [1175, -453], [1174, -451]]}, "center": {"212-249": [1328, -501], "251-258": [1156, -470]}}, -{"id": 5007, "name": "Machiroon", "description": "The fan mascot of the VTuber Machina X Flayon, who is a member of the Holostars English Tempus group.", "links": {"website": ["https://www.youtube.com/@MachinaXFlayon"], "subreddit": ["Holostars"]}, "path": {"203-258": [[-216, -824], [-216, -818], [-209, -818], [-200, -824]]}, "center": {"203-258": [-213, -821]}}, -{"id": 5008, "name": "The Persistence of Memory", "description": "(La persistència de la memòria) Painted by Salvador Dalí in 1931 and one of the most recognizable works of Surrealism", "links": {"website": ["https://en.wikipedia.org/wiki/The_Persistence_of_Memory"]}, "path": {"250-258": [[-871, 741], [-870, 813], [-773, 814], [-774, 742]]}, "center": {"250-258": [-822, 778]}}, -{"id": 5009, "name": "Lunar Tear", "description": "An important flower to both the original NieR and its remake's story, being important to characters Kaine, a party member, and Yonah, the sister/daughter of the main character.\n\nThe flower also features in NieR:Automata as a cosmetic accessory for the main characters as well as being important in a side quest relating to a character returning from the original NieR, Emil.", "links": {"subreddit": ["nier"], "discord": ["dXTjYE3KNT"]}, "path": {"236-258": [[-268, 899], [-268, 900], [-266, 900], [-265, 899], [-264, 900], [-262, 900], [-262, 895], [-261, 894], [-261, 893], [-262, 892], [-261, 891], [-261, 890], [-260, 889], [-261, 888], [-262, 889], [-263, 888], [-264, 887], [-265, 889], [-266, 888], [-267, 889], [-266, 890], [-267, 891], [-266, 892], [-266, 893], [-265, 894], [-264, 893], [-263, 893], [-263, 894], [-264, 895], [-264, 896], [-266, 898], [-267, 898]]}, "center": {"236-258": [-264, 891]}}, +{"id": 5007, "name": "Machiroon", "description": "The fan mascot of the VTuber Machina X Flayon, who is a member of the Holostars English Tempus group.", "links": {"website": ["https://www.youtube.com/@MachinaXFlayon"], "subreddit": ["Holostars"]}, "path": {"203-258, T": [[-216, -824], [-216, -818], [-209, -818], [-200, -824]]}, "center": {"203-258, T": [-213, -821]}}, +{"id": 5008, "name": "The Persistence of Memory", "description": "(La persistència de la memòria) Painted by Salvador Dalí in 1931 and one of the most recognizable works of Surrealism", "links": {"website": ["https://en.wikipedia.org/wiki/The_Persistence_of_Memory"]}, "path": {"250-258, T": [[-871, 741], [-870, 813], [-773, 814], [-774, 742]]}, "center": {"250-258, T": [-822, 778]}}, +{"id": 5009, "name": "Lunar Tear", "description": "An important flower to both the original NieR and its remake's story, being important to characters Kaine, a party member, and Yonah, the sister/daughter of the main character.\n\nThe flower also features in NieR:Automata as a cosmetic accessory for the main characters as well as being important in a side quest relating to a character returning from the original NieR, Emil.", "links": {"subreddit": ["nier"], "discord": ["dXTjYE3KNT"]}, "path": {"236-258, T": [[-268, 899], [-268, 900], [-266, 900], [-265, 899], [-264, 900], [-262, 900], [-262, 895], [-261, 894], [-261, 893], [-262, 892], [-261, 891], [-261, 890], [-260, 889], [-261, 888], [-262, 889], [-263, 888], [-264, 887], [-265, 889], [-266, 888], [-267, 889], [-266, 890], [-267, 891], [-266, 892], [-266, 893], [-265, 894], [-264, 893], [-263, 893], [-263, 894], [-264, 895], [-264, 896], [-266, 898], [-267, 898]]}, "center": {"236-258, T": [-264, 891]}}, {"id": 5011, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"]}, "path": {"58-68": [[752, -193], [752, -180], [740, -180], [740, -193]]}, "center": {"58-68": [746, -186]}}, -{"id": 5012, "name": "GingerBrave", "description": "Main character of the cookie run games", "links": {"subreddit": ["Cookierun"]}, "path": {"155-258": [[694, 893], [693, 879], [702, 871], [711, 879], [709, 892], [720, 892], [721, 904], [717, 906], [716, 913], [709, 914], [705, 917], [695, 915], [694, 906], [693, 903], [686, 893], [690, 889], [694, 891]]}, "center": {"155-258": [705, 903]}}, -{"id": 5013, "name": "Jacex van", "description": "Jacexdowozwideo is a Twitch channel of two guys from Poland, Generator Frajdy and GargamelVlog. They also have podcast called Dwóch Typów Podcast.", "links": {"website": ["https://jacexdowozwideo.fandom.com/pl/wiki/Van", "https://www.twitch.tv/jacexdowozwideo"]}, "path": {"41-258": [[405, 192], [419, 192], [419, 204], [404, 204], [404, 192]]}, "center": {"41-258": [412, 198]}}, -{"id": 5014, "name": "Fresco Leches", "description": "Fresco Leche is a flavored milk drink of the company Dos Pinos in Costa Rica. The drink has 3 types of flavor, strawberry, vanilla and chocolate.", "links": {}, "path": {"250-258": [[-1182, -368], [-1183, -345], [-1123, -344], [-1123, -368]]}, "center": {"250-258": [-1153, -356]}}, -{"id": 5015, "name": "New Kids", "description": "The main caracters of New Kids, a popular Dutch comedy tv show, and movie duology about a group of anti-social youths. The New Kids Turbo movie is one of the most visited movies in The Netherlands. The characters are (from left to right) Robbie Schuurmans, Rikkert Biemans, RIchard Batspak, Gerrie van Boven and Barrie Butsers", "links": {"website": ["https://en.wikipedia.org/wiki/New_Kids"], "subreddit": ["PlaceNL"], "discord": ["PlaceNL"]}, "path": {"231-258": [[-622, -501], [-622, -514], [-584, -514], [-584, -501]]}, "center": {"231-258": [-603, -507]}}, -{"id": 5016, "name": "Costa Rica Provinces", "description": "A hearth drawing of the flags of the Costa Rica provinces, Heredia, Alajuela, Cartago, San Jose, Limon, Puntarenas and Guanacaste.", "links": {"website": ["https://es.wikipedia.org/wiki/Provincias_de_Costa_Rica"]}, "path": {"250-258": [[-1044, -368], [-1046, -357], [-1033, -339], [-1018, -358], [-1031, -362], [-1032, -368], [-1039, -368]]}, "center": {"250-258": [-1033, -353]}}, -{"id": 5017, "name": "ShiShi Gang", "description": "Sello Discografico Independiente Chileno, su CEO es el artista urbano Pablo Chill-e", "links": {"website": ["https://www.instagram.com/shishigang_records/?hl=es"]}, "path": {"250-258": [[-728, -828], [-730, -830], [-729, -835], [-741, -834], [-751, -841], [-727, -841], [-735, -847], [-735, -853], [-719, -871], [-714, -856], [-707, -854], [-707, -845], [-708, -827], [-712, -827], [-712, -804], [-723, -805], [-728, -811]]}, "center": {"250-258": [-718, -846]}}, -{"id": 5018, "name": "Windows Media Player", "description": "Windows Media Player (WMP) is the first media player and media library application that Microsoft developed to play audio and video on personal computers. It has been a component of the Microsoft Windows operating system, including Windows 9x, Windows NT, Pocket PC, and Windows Mobile. Microsoft also released editions of Windows Media Player for classic Mac OS, Mac OS X, and Solaris, but has since discontinued them.", "links": {}, "path": {"183-258": [[-1412, 977], [-1397, 977], [-1397, 992], [-1412, 993], [-1412, 988]]}, "center": {"183-258": [-1404, 985]}}, +{"id": 5012, "name": "GingerBrave", "description": "Main character of the cookie run games", "links": {"subreddit": ["Cookierun"]}, "path": {"155-258, T": [[694, 893], [693, 879], [702, 871], [711, 879], [709, 892], [720, 892], [721, 904], [717, 906], [716, 913], [709, 914], [705, 917], [695, 915], [694, 906], [693, 903], [686, 893], [690, 889], [694, 891]]}, "center": {"155-258, T": [705, 903]}}, +{"id": 5013, "name": "Jacex van", "description": "Jacexdowozwideo is a Twitch channel of two guys from Poland, Generator Frajdy and GargamelVlog. They also have podcast called Dwóch Typów Podcast.", "links": {"website": ["https://jacexdowozwideo.fandom.com/pl/wiki/Van", "https://www.twitch.tv/jacexdowozwideo"]}, "path": {"41-258, T": [[405, 192], [419, 192], [419, 204], [404, 204], [404, 192]]}, "center": {"41-258, T": [412, 198]}}, +{"id": 5014, "name": "Fresco Leches", "description": "Fresco Leche is a flavored milk drink of the company Dos Pinos in Costa Rica. The drink has 3 types of flavor, strawberry, vanilla and chocolate.", "links": {}, "path": {"250-258, T": [[-1182, -368], [-1183, -345], [-1123, -344], [-1123, -368]]}, "center": {"250-258, T": [-1153, -356]}}, +{"id": 5015, "name": "New Kids", "description": "The main caracters of New Kids, a popular Dutch comedy tv show, and movie duology about a group of anti-social youths. The New Kids Turbo movie is one of the most visited movies in The Netherlands. The characters are (from left to right) Robbie Schuurmans, Rikkert Biemans, RIchard Batspak, Gerrie van Boven and Barrie Butsers", "links": {"website": ["https://en.wikipedia.org/wiki/New_Kids"], "subreddit": ["PlaceNL"], "discord": ["PlaceNL"]}, "path": {"231-258, T": [[-622, -501], [-622, -514], [-584, -514], [-584, -501]]}, "center": {"231-258, T": [-603, -507]}}, +{"id": 5016, "name": "Costa Rica Provinces", "description": "A hearth drawing of the flags of the Costa Rica provinces, Heredia, Alajuela, Cartago, San Jose, Limon, Puntarenas and Guanacaste.", "links": {"website": ["https://es.wikipedia.org/wiki/Provincias_de_Costa_Rica"]}, "path": {"250-258, T": [[-1044, -368], [-1046, -357], [-1033, -339], [-1018, -358], [-1031, -362], [-1032, -368], [-1039, -368]]}, "center": {"250-258, T": [-1033, -353]}}, +{"id": 5017, "name": "ShiShi Gang", "description": "Sello Discografico Independiente Chileno, su CEO es el artista urbano Pablo Chill-e", "links": {"website": ["https://www.instagram.com/shishigang_records/?hl=es"]}, "path": {"250-258, T": [[-728, -828], [-730, -830], [-729, -835], [-741, -834], [-751, -841], [-727, -841], [-735, -847], [-735, -853], [-719, -871], [-714, -856], [-707, -854], [-707, -845], [-708, -827], [-712, -827], [-712, -804], [-723, -805], [-728, -811]]}, "center": {"250-258, T": [-718, -846]}}, +{"id": 5018, "name": "Windows Media Player", "description": "Windows Media Player (WMP) is the first media player and media library application that Microsoft developed to play audio and video on personal computers. It has been a component of the Microsoft Windows operating system, including Windows 9x, Windows NT, Pocket PC, and Windows Mobile. Microsoft also released editions of Windows Media Player for classic Mac OS, Mac OS X, and Solaris, but has since discontinued them.", "links": {}, "path": {"183-258, T": [[-1412, 977], [-1397, 977], [-1397, 992], [-1412, 993], [-1412, 988]]}, "center": {"183-258, T": [-1404, 985]}}, {"id": 5019, "name": "Tip Stevens' Totem", "description": "The Totems are the symbols of Tip Stevens, a French singer, compositor, multi-instrumentalist. Tip Stevens is also a streamer famous for his musical streams. The Totems represent his community.", "links": {"website": ["https://www.tipstevens.com/", "https://www.youtube.com/@TipStevens", "https://www.twitch.tv/tipstevens"]}, "path": {"120-163": [[115, -872], [115, -876], [114, -876], [114, -877], [113, -877], [113, -879], [115, -879], [115, -880], [116, -880], [116, -881], [118, -881], [118, -880], [119, -880], [119, -879], [121, -879], [121, -877], [120, -877], [120, -876], [119, -876], [119, -872]]}, "center": {"120-163": [117, -877]}}, -{"id": 5020, "name": "Murky", "description": "The main character of Fallout: Equestria - Murky Number Seven", "links": {"subreddit": ["falloutequestria"]}, "path": {"219-258": [[552, 845], [552, 843], [553, 843], [554, 842], [554, 839], [557, 839], [556, 840], [557, 841], [557, 842], [556, 843], [556, 844], [557, 845], [555, 845], [554, 844], [553, 845], [551, 843], [554, 838], [559, 839], [558, 845], [551, 846], [552, 839], [559, 839], [557, 846]]}, "center": {"219-258": [555, 842]}}, +{"id": 5020, "name": "Murky", "description": "The main character of Fallout: Equestria - Murky Number Seven", "links": {"subreddit": ["falloutequestria"]}, "path": {"219-258, T": [[552, 845], [552, 843], [553, 843], [554, 842], [554, 839], [557, 839], [556, 840], [557, 841], [557, 842], [556, 843], [556, 844], [557, 845], [555, 845], [554, 844], [553, 845], [551, 843], [554, 838], [559, 839], [558, 845], [551, 846], [552, 839], [559, 839], [557, 846]]}, "center": {"219-258, T": [555, 842]}}, {"id": 5021, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"]}, "path": {"69-79": [[736, -193], [752, -193], [752, -180], [736, -180]]}, "center": {"69-79": [744, -186]}}, {"id": 5022, "name": "Quebec flag", "description": "quebec first flag on r/place2023.\nQuebec is a Canadian province with a heavily French past and many French speakers throughout the province. This has led to multiple proposals for independence from Canada, but two votes on this subject both failed. Most of Quebec's industry and people are the south near the St. Lawrence River, as it is stationed right at the beginning of the strategic river. The capital, Quebec City, and Quebec's largest city, Montreal, are both located there.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Quebec"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"3": [[-263, 388], [-193, 388], [-194, 416], [-193, 425], [-263, 425]], "4-11": [[-261, 388], [-169, 388], [-169, 435], [-262, 436], [-262, 388]]}, "center": {"3": [-228, 407], "4-11": [-216, 412]}}, -{"id": 5023, "name": "Volcán Arenal", "description": "Is a volcano located in the province of Alajuela in Costa Rica it has been inactive from 2010.", "links": {"website": ["https://es.wikipedia.org/wiki/Volc%C3%A1n_Arenal"]}, "path": {"250-258": [[-1118, -326], [-1095, -355], [-1091, -354], [-1098, -346], [-1080, -326], [-1100, -326]]}, "center": {"250-258": [-1100, -335]}}, -{"id": 5024, "name": "Osushi", "description": "Osushi is a Dragon masquerading as Balgo Parks's pet dog in the manga and anime Burn The Witch, written and illustrated by Tite Kubo. Its story takes place in the same universe as BLEACH.\n\nThis artwork was made by the BLEACH r/place Discord server.", "links": {"website": ["https://burn-the-witch.fandom.com/wiki/Osushi", "https://burn-the-witch-anime.com/"], "subreddit": ["bleach", "Burnthewitch"], "discord": ["EGGZ8tBas6"]}, "path": {"214-258": [[-1371, -953], [-1371, -957], [-1374, -957], [-1374, -963], [-1373, -963], [-1373, -964], [-1372, -964], [-1372, -965], [-1371, -965], [-1371, -966], [-1365, -966], [-1365, -965], [-1362, -965], [-1362, -966], [-1360, -966], [-1360, -965], [-1358, -965], [-1358, -966], [-1354, -966], [-1354, -965], [-1353, -965], [-1353, -964], [-1352, -964], [-1352, -963], [-1351, -963], [-1351, -957], [-1353, -957], [-1353, -954], [-1354, -954], [-1354, -953], [-1355, -953], [-1355, -952], [-1356, -952], [-1356, -951], [-1357, -951], [-1357, -950], [-1359, -950], [-1359, -949], [-1361, -949], [-1361, -950], [-1366, -950], [-1366, -949], [-1368, -949], [-1368, -950], [-1369, -950], [-1369, -951], [-1370, -951], [-1370, -952], [-1371, -952]]}, "center": {"214-258": [-1362, -957]}}, +{"id": 5023, "name": "Volcán Arenal", "description": "Is a volcano located in the province of Alajuela in Costa Rica it has been inactive from 2010.", "links": {"website": ["https://es.wikipedia.org/wiki/Volc%C3%A1n_Arenal"]}, "path": {"250-258, T": [[-1118, -326], [-1095, -355], [-1091, -354], [-1098, -346], [-1080, -326], [-1100, -326]]}, "center": {"250-258, T": [-1100, -335]}}, +{"id": 5024, "name": "Osushi", "description": "Osushi is a Dragon masquerading as Balgo Parks's pet dog in the manga and anime Burn The Witch, written and illustrated by Tite Kubo. Its story takes place in the same universe as BLEACH.\n\nThis artwork was made by the BLEACH r/place Discord server.", "links": {"website": ["https://burn-the-witch.fandom.com/wiki/Osushi", "https://burn-the-witch-anime.com/"], "subreddit": ["bleach", "Burnthewitch"], "discord": ["EGGZ8tBas6"]}, "path": {"214-258, T": [[-1371, -953], [-1371, -957], [-1374, -957], [-1374, -963], [-1373, -963], [-1373, -964], [-1372, -964], [-1372, -965], [-1371, -965], [-1371, -966], [-1365, -966], [-1365, -965], [-1362, -965], [-1362, -966], [-1360, -966], [-1360, -965], [-1358, -965], [-1358, -966], [-1354, -966], [-1354, -965], [-1353, -965], [-1353, -964], [-1352, -964], [-1352, -963], [-1351, -963], [-1351, -957], [-1353, -957], [-1353, -954], [-1354, -954], [-1354, -953], [-1355, -953], [-1355, -952], [-1356, -952], [-1356, -951], [-1357, -951], [-1357, -950], [-1359, -950], [-1359, -949], [-1361, -949], [-1361, -950], [-1366, -950], [-1366, -949], [-1368, -949], [-1368, -950], [-1369, -950], [-1369, -951], [-1370, -951], [-1370, -952], [-1371, -952]]}, "center": {"214-258, T": [-1362, -957]}}, {"id": 5025, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.\nThe three characters are from 3 music videos, Rock-chan, Otona-chan, and Bus-chan.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"]}, "path": {"69-78": [[752, -193], [752, -180], [736, -180], [736, -193]]}, "center": {"69-78": [744, -186]}}, {"id": 5026, "name": "Quebec flag", "description": "Quebec is a Canadian province with a heavily French past and many French speakers throughout the province. This has led to multiple proposals for independence from Canada, but two votes on this subject both failed. Most of Quebec's industry and people are the south near the St. Lawrence River, as it is stationed right at the beginning of the strategic river. The capital, Quebec City, and Quebec's largest city, Montreal, are both located there.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Quebec"], "subreddit": ["Quebec"], "discord": ["PlaceQuebec"]}, "path": {"17": [[452, 162], [452, 204], [500, 204], [500, 162]], "18-19": [[452, 149], [452, 204], [500, 204], [500, 149]], "20-54": [[452, 130], [452, 204], [500, 204], [500, 129]]}, "center": {"17": [476, 183], "18-19": [476, 177], "20-54": [476, 167]}}, -{"id": 5027, "name": "Alpaca", "description": "Nombre Científico: Lama Pacos\nPoblación: 400 000\nHábitat: Andes de Perú", "links": {}, "path": {"234-258": [[-571, -849], [-577, -849], [-577, -848], [-582, -845], [-582, -838], [-578, -837], [-578, -824], [-574, -824], [-574, -828], [-562, -828], [-562, -825], [-559, -824], [-557, -834], [-561, -839], [-564, -839], [-564, -837], [-570, -837], [-571, -850]]}, "center": {"234-258": [-576, -842]}}, -{"id": 5028, "name": "r/placeNL vista button", "description": "In collaboration with r/placestart and others, r/PlaceNL created and maintained their taskbar section. The orange color gives the impression that it wants your attention (as if through a pop-up message had been supressed)\n\nAfter windows XP the previous interation, this year it was decided that vista would be placed on the canvas.", "links": {"website": ["https://www.reddit.com/r/placestart/", "https://www.reddit.com/r/PlaceNL/"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"189-258": [[-908, 998], [-908, 972], [-819, 972], [-819, 998]]}, "center": {"189-258": [-863, 985]}}, -{"id": 5029, "name": "Man Bijt Hond", "description": "Man Bijt Hond (Man Bites Dog) is a light-hearted Flemish and Dutch TV show that takes a human-interest approach to a variety of topics.\n\nThe name is a running joke among journalists that \"dog bites man\" is not newsworthy, but \"man bites dog\" is.", "links": {"website": ["https://en.wikipedia.org/wiki/Man_bijt_hond"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"197-258": [[-1250, -483], [-1242, -483], [-1235, -482], [-1234, -478], [-1232, -481], [-1227, -480], [-1229, -475], [-1231, -475], [-1229, -471], [-1228, -466], [-1232, -464], [-1238, -464], [-1240, -459], [-1240, -455], [-1238, -452], [-1243, -449], [-1244, -449], [-1262, -450], [-1267, -455], [-1271, -454], [-1275, -453], [-1275, -455], [-1270, -458], [-1266, -458], [-1262, -462], [-1259, -462], [-1254, -469], [-1249, -471], [-1248, -475], [-1248, -481]]}, "center": {"197-258": [-1249, -459]}}, +{"id": 5027, "name": "Alpaca", "description": "Nombre Científico: Lama Pacos\nPoblación: 400 000\nHábitat: Andes de Perú", "links": {}, "path": {"234-258, T": [[-571, -849], [-577, -849], [-577, -848], [-582, -845], [-582, -838], [-578, -837], [-578, -824], [-574, -824], [-574, -828], [-562, -828], [-562, -825], [-559, -824], [-557, -834], [-561, -839], [-564, -839], [-564, -837], [-570, -837], [-571, -850]]}, "center": {"234-258, T": [-576, -842]}}, +{"id": 5028, "name": "r/placeNL vista button", "description": "In collaboration with r/placestart and others, r/PlaceNL created and maintained their taskbar section. The orange color gives the impression that it wants your attention (as if through a pop-up message had been supressed)\n\nAfter windows XP the previous interation, this year it was decided that vista would be placed on the canvas.", "links": {"website": ["https://www.reddit.com/r/placestart/", "https://www.reddit.com/r/PlaceNL/"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"189-258, T": [[-908, 998], [-908, 972], [-819, 972], [-819, 998]]}, "center": {"189-258, T": [-863, 985]}}, +{"id": 5029, "name": "Man Bijt Hond", "description": "Man Bijt Hond (Man Bites Dog) is a light-hearted Flemish and Dutch TV show that takes a human-interest approach to a variety of topics.\n\nThe name is a running joke among journalists that \"dog bites man\" is not newsworthy, but \"man bites dog\" is.", "links": {"website": ["https://en.wikipedia.org/wiki/Man_bijt_hond"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"197-258, T": [[-1250, -483], [-1242, -483], [-1235, -482], [-1234, -478], [-1232, -481], [-1227, -480], [-1229, -475], [-1231, -475], [-1229, -471], [-1228, -466], [-1232, -464], [-1238, -464], [-1240, -459], [-1240, -455], [-1238, -452], [-1243, -449], [-1244, -449], [-1262, -450], [-1267, -455], [-1271, -454], [-1275, -453], [-1275, -455], [-1270, -458], [-1266, -458], [-1262, -462], [-1259, -462], [-1254, -469], [-1249, -471], [-1248, -475], [-1248, -481]]}, "center": {"197-258, T": [-1249, -459]}}, {"id": 5030, "name": "Tip Stevens' Totem", "description": "The Totems are the symbols of Tip Stevens, a French singer, compositor, multi-instrumentalist. Tip Stevens is also a streamer famous for his musical streams. The Totems represent his community.\nThis Totem also wears a flower, symbol of the French streamer Ponce.", "links": {"website": ["https://www.tipstevens.com/", "https://www.youtube.com/@TipStevens", "https://www.twitch.tv/tipstevens", "https://www.twitch.tv/ponce"]}, "path": {"145-154": [[834, 114], [828, 114], [828, 118], [829, 118], [829, 119], [830, 119], [830, 120], [834, 120], [834, 129], [841, 129], [841, 120], [845, 120], [845, 119], [846, 119], [846, 118], [847, 118], [847, 114], [842, 114], [842, 113], [841, 113], [841, 111], [839, 111], [839, 110], [836, 110], [836, 111], [834, 111]]}, "center": {"145-154": [838, 117]}}, {"id": 5031, "name": "Beam", "description": "Beam_o1 es un Streamer pequeño que transmite en la plataforma de Twitch de nacionalidad peruana, que con solo pocas personas logró poner su skin de Minecraft, lo puedes encontrar en Twitch como beam_o1.", "links": {"website": ["https://Twitch.tv/beam_o1"], "discord": ["EzSrQf2vX5"]}, "path": {"234": [[-573, -909], [-573, -899], [-563, -899], [-563, -909]]}, "center": {"234": [-568, -904]}}, -{"id": 5032, "name": "Zahirgamer444", "description": "Zahirgamer444's Minecraft skin\n[Made by Zahirgamer444 and AsfClassic]", "links": {}, "path": {"249-258": [[822, 430], [829, 430], [829, 437], [822, 437]]}, "center": {"249-258": [826, 434]}}, -{"id": 5033, "name": "Deezer logo", "description": "In 2006, Daniel Marhely developed the first version of Deezer, called Blogmusik. The site in its original incarnation was charged with copyright infringement by French agency SACEM and shut down in April 2007. It was relaunched as Deezer in August 2007, having reached an agreement with SACEM to pay copyright holders with revenue from advertising on the site and by giving users the ability to download songs streamed on Deezer from iTunes, with Deezer receiving a commission from each purchase.", "links": {"website": ["https://www.deezer.com/fr/"]}, "path": {"169-258": [[-396, 826], [-396, 830], [-382, 830], [-382, 824], [-396, 824]]}, "center": {"169-258": [-389, 827]}}, -{"id": 5034, "name": "Cusco", "description": "Cusco is a city in the Peruvian Andes that was the capital of the Inca Empire and is known for its archaeological remains and Spanish colonial architecture. The *Plaza de Armas* is the center of the ancient city, with galleries, carved wooden balconies and ruins of Inca walls. The convent of Santo Domingo, in the Baroque style, was built on top of the Inca Temple of the Sun (Qoricancha) and has archaeological remains of Inca stonework.", "links": {"website": ["https://en.wikipedia.org/wiki/Cusco", "https://www.google.com/maps/place/Cusco/@-13.5300193,-71.9392491,13z/data=!3m1!4b1!4m6!3m5!1s0x916dd5d826598431:0x2aa996cc2318315d!8m2!3d-13.53195!4d-71.9674626!16zL20vMGpsZDM?entry=ttu"], "subreddit": ["PERU"], "discord": ["4kxw8z9H"]}, "path": {"250-258": [[-583, -812], [-583, -839], [-577, -839], [-577, -811], [-583, -811], [-583, -839]]}, "center": {"250-258": [-580, -825]}}, +{"id": 5032, "name": "Zahirgamer444", "description": "Zahirgamer444's Minecraft skin\n[Made by Zahirgamer444 and AsfClassic]", "links": {}, "path": {"249-258, T": [[822, 430], [829, 430], [829, 437], [822, 437]]}, "center": {"249-258, T": [826, 434]}}, +{"id": 5033, "name": "Deezer logo", "description": "In 2006, Daniel Marhely developed the first version of Deezer, called Blogmusik. The site in its original incarnation was charged with copyright infringement by French agency SACEM and shut down in April 2007. It was relaunched as Deezer in August 2007, having reached an agreement with SACEM to pay copyright holders with revenue from advertising on the site and by giving users the ability to download songs streamed on Deezer from iTunes, with Deezer receiving a commission from each purchase.", "links": {"website": ["https://www.deezer.com/fr/"]}, "path": {"169-258, T": [[-396, 826], [-396, 830], [-382, 830], [-382, 824], [-396, 824]]}, "center": {"169-258, T": [-389, 827]}}, +{"id": 5034, "name": "Cusco", "description": "Cusco is a city in the Peruvian Andes that was the capital of the Inca Empire and is known for its archaeological remains and Spanish colonial architecture. The *Plaza de Armas* is the center of the ancient city, with galleries, carved wooden balconies and ruins of Inca walls. The convent of Santo Domingo, in the Baroque style, was built on top of the Inca Temple of the Sun (Qoricancha) and has archaeological remains of Inca stonework.", "links": {"website": ["https://en.wikipedia.org/wiki/Cusco", "https://www.google.com/maps/place/Cusco/@-13.5300193,-71.9392491,13z/data=!3m1!4b1!4m6!3m5!1s0x916dd5d826598431:0x2aa996cc2318315d!8m2!3d-13.53195!4d-71.9674626!16zL20vMGpsZDM?entry=ttu"], "subreddit": ["PERU"], "discord": ["4kxw8z9H"]}, "path": {"250-258, T": [[-583, -812], [-583, -839], [-577, -839], [-577, -811], [-583, -811], [-583, -839]]}, "center": {"250-258, T": [-580, -825]}}, {"id": 5035, "name": "Twice - 7th Logo Attempt", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nIn what would be become their most contested area during r/place 2023, r/Twice sought refuge next to the massive CS2 artwork. In an alliance with r/49ers above, r/Twice created the 3x3 block of colors above their logo, representing all 9 members of Twice as well as adding Twice's official light stick, the \"Candy Bong\" to the logo. This area slowly developed into \"JYP Alley\", incorporating the logos of fellow JYP labelmates Itzy, Nmixx, and JYP itself. An attempt to establish artwork for Twice member's solo work was begun below but never fully realized. r/Bangtan also jumped into the area, creating art for one of BTS's Love Yourselves albums.\n\nStreamer XQC would, at one point, create a massive Nails emoji, often used on Twitch and Youtube, to the west of the Twice logo. XQC's Nails emoji would consume the western border of the Twice logo till an apparent unspoken truce let r/Twice take their border back. \n\nMultiple massive bot attacks would soon form over the entire area writing the name [Discord.GG/Pom](https://Discord.GG/Pom) which was successfully repelled by r/Twice. \n\nThe collaboration between Spanish streamer Rubius and Russian streamer Bratishkinoff would eventually consume the entire area with their \"Void Monster embracing Dog\" artwork. r/Twice repelled the invasion, becoming the only art piece left standing in the giant sea of white pixels. After many attempts to hold onto the location, r/Twice would finally give in to the overwhelming presence of the new artwork.", "links": {"subreddit": ["Twice"]}, "path": {"125-126": [[-32, -746], [-15, -746], [-15, -727], [-32, -727]], "127-128": [[-32, -727], [-15, -727], [-15, -733], [-13, -733], [-13, -734], [-12, -734], [-12, -735], [-11, -735], [-11, -736], [-10, -736], [-10, -739], [-11, -739], [-11, -740], [-12, -740], [-12, -741], [-14, -741], [-14, -740], [-15, -740], [-15, -746], [-32, -746]], "129-132": [[-32, -727], [-15, -727], [-15, -725], [-13, -725], [-13, -726], [-12, -726], [-12, -727], [-11, -727], [-11, -728], [-10, -728], [-10, -731], [-11, -731], [-11, -732], [-12, -732], [-12, -733], [-13, -733], [-14, -733], [-14, -732], [-14, -733], [-13, -733], [-13, -734], [-12, -734], [-12, -735], [-11, -735], [-11, -736], [-10, -736], [-10, -739], [-11, -739], [-11, -740], [-12, -740], [-12, -741], [-13, -741], [-14, -741], [-14, -740], [-14, -741], [-13, -741], [-13, -742], [-12, -742], [-12, -745], [-13, -745], [-13, -746], [-32, -746]], "133-147": [[-32, -727], [-15, -727], [-15, -725], [-13, -725], [-13, -726], [-12, -726], [-12, -727], [-11, -727], [-11, -728], [-10, -728], [-10, -731], [-11, -731], [-11, -732], [-12, -732], [-12, -733], [-13, -733], [-14, -733], [-14, -732], [-14, -733], [-13, -733], [-13, -734], [-12, -734], [-12, -735], [-11, -735], [-11, -736], [-10, -736], [-10, -739], [-11, -739], [-11, -740], [-12, -740], [-12, -741], [-13, -741], [-14, -741], [-14, -740], [-14, -741], [-13, -741], [-13, -742], [-12, -742], [-12, -745], [-13, -745], [-13, -746], [-15, -746], [-15, -750], [-19, -750], [-19, -746], [-32, -746]], "148-152": [[-32, -725], [-15, -725], [-15, -733], [-13, -733], [-13, -734], [-12, -734], [-12, -735], [-11, -735], [-11, -736], [-10, -736], [-10, -739], [-11, -739], [-11, -740], [-12, -740], [-12, -741], [-13, -741], [-14, -741], [-14, -740], [-14, -741], [-13, -741], [-13, -742], [-12, -742], [-12, -745], [-13, -745], [-13, -746], [-15, -746], [-15, -750], [-19, -750], [-19, -747], [-20, -747], [-20, -748], [-24, -748], [-24, -747], [-25, -747], [-25, -746], [-32, -746], [-32, -725], [-32, -709], [-25, -709], [-25, -725], [-15, -725]], "153-156": [[-32, -745], [-32, -725], [-15, -725], [-15, -745]]}, "center": {"125-126": [-23, -736], "127-128": [-23, -736], "129-132": [-23, -737], "133-147": [-23, -737], "148-152": [-23, -737], "153-156": [-23, -735]}}, {"id": 5036, "name": "James Cameron's Avatar", "description": "Logo of James Cameron's \"Avatar: The Way of Water\" featuring an Ikran (banshee) within the letter 'A'.", "links": {"subreddit": ["Avatar"]}, "path": {"10-11": [[146, 459], [154, 443], [156, 443], [162, 459]]}, "center": {"10-11": [154, 454]}}, -{"id": 5037, "name": "LeoAlex45", "description": "Streamer de twich con pequeña comunidad que hace directo de vez en cuando", "links": {"website": ["https://www.twitch.tv/leoalex45"]}, "path": {"206-259": [[1360, -888], [1373, -886], [1374, -887], [1376, -886], [1378, -875], [1373, -872], [1370, -872], [1371, -866], [1369, -864], [1368, -867], [1365, -867], [1365, -864], [1362, -865], [1358, -868], [1353, -882], [1359, -887]]}, "center": {"206-259": [1364, -878]}}, -{"id": 5038, "name": "Spider-Punk / Hobie Brown", "description": "Prominently featured in the 2023 film \"Spider-Man: Across the Spider-Verse\", Spider-Punk / Hobie Brown is known for playing loud music, flouting authority, and espousing anarchist values.\n\nThis piece was created by Spider-Man Place in collaboration with r/VZLA, r/Colombia, and Fuck Spez Coalition.", "links": {"subreddit": ["vzla", "Colombia"], "discord": ["cQZQDYsB", "Rwf5e8HR", "aGxEP6eC", "wk7uCvpJ"]}, "path": {"230-258": [[1219, -134], [1213, -141], [1213, -148], [1211, -150], [1210, -158], [1219, -169], [1228, -159], [1228, -150], [1226, -141], [1219, -134], [1212, -140], [1212, -150], [1210, -152], [1212, -139]]}, "center": {"230-258": [1219, -155]}}, -{"id": 5039, "name": "Senko x Special Week", "description": "A collaborated artwork between communities of The Helpful Fox Senko-san and Uma Musume Pretty Derby, featuring the 2 of main protagonist of their respective franchises, Special Week and Senko. These 2 characters share the same voice actress, Azumi Waki. \n\nThe design is based off of Uma Musume Tanuki, a popular meme within the Uma Musume community that originated from the image board site Futaba☆Channel.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Helpful_Fox_Senko-san", "https://en.wikipedia.org/wiki/Uma_Musume_Pretty_Derby", "https://www.nicovideo.jp/tag/%E3%81%9F%E3%81%AC%E3%81%8D%28%E3%82%A6%E3%83%9E%E5%A8%98%29"], "subreddit": ["SeyawakiKitsune", "UmaMusume"], "discord": ["senkoplace", "umamusume"]}, "path": {"250-258": [[-196, 241], [-192, 241], [-192, 240], [-182, 240], [-182, 241], [-178, 241], [-178, 239], [-177, 239], [-177, 237], [-176, 237], [-176, 232], [-171, 232], [-170, 232], [-170, 231], [-169, 231], [-168, 231], [-168, 229], [-167, 229], [-167, 226], [-166, 226], [-166, 222], [-166, 221], [-167, 221], [-167, 218], [-169, 218], [-169, 215], [-169, 211], [-169, 209], [-168, 209], [-168, 208], [-168, 207], [-169, 207], [-169, 206], [-170, 206], [-170, 205], [-170, 204], [-171, 204], [-171, 199], [-170, 199], [-169, 199], [-169, 198], [-168, 198], [-168, 197], [-167, 197], [-167, 192], [-164, 192], [-164, 190], [-164, 189], [-165, 189], [-165, 188], [-166, 188], [-166, 184], [-166, 183], [-167, 183], [-168, 183], [-169, 183], [-169, 184], [-170, 184], [-170, 185], [-171, 186], [-173, 186], [-173, 185], [-175, 185], [-176, 185], [-176, 184], [-181, 184], [-181, 182], [-183, 182], [-183, 181], [-184, 181], [-184, 180], [-185, 180], [-187, 180], [-187, 181], [-187, 183], [-187, 184], [-188, 184], [-188, 185], [-188, 186], [-189, 186], [-190, 186], [-190, 187], [-191, 187], [-191, 188], [-192, 188], [-192, 189], [-192, 190], [-191, 190], [-192, 192], [-193, 192], [-193, 196], [-194, 196], [-194, 198], [-194, 199], [-193, 199], [-194, 204], [-195, 204], [-195, 205], [-195, 206], [-196, 206], [-196, 207], [-197, 207], [-197, 209], [-198, 209], [-198, 214], [-198, 215], [-199, 215], [-199, 217], [-200, 217], [-200, 218], [-201, 218], [-201, 219], [-202, 219], [-202, 220], [-203, 220], [-203, 222], [-203, 223], [-202, 223], [-202, 225], [-201, 225], [-201, 226], [-202, 226], [-202, 227], [-203, 227], [-203, 228], [-203, 229], [-202, 229], [-202, 230], [-201, 230], [-201, 231], [-201, 232], [-200, 232], [-200, 233], [-199, 233], [-199, 234], [-198, 234], [-199, 235], [-199, 237], [-199, 238], [-198, 238], [-198, 239], [-197, 239], [-197, 241]]}, "center": {"250-258": [-184, 219]}}, -{"id": 5040, "name": "Mandarina", "description": "Esta es la comunidad de ''Mandarina'' El grupito intenta poner un logo de su servidor de discord y se une a Baby Joda, Manollo con su logo de dux y el Streamer Rageylo0 con su despistado.\nLa mandarina sufrió varios ataques pero se defendió con éxito. El ataque más fuerte que recibió fue de la bandera colombiana, que intentó tomar su lugar en varias ocasiones pero se detuvieron y se fueron a otro lugar.\n\nThis is the community of ''Mandarina'' The small group tries to put a logo of their discord server and team up with Baby Joda, Manollo with his doge logo and the Streamer Rageylo0 with his clueless.\nThe tangerine suffered several attacks but successfully defended itself. The strongest attack he received was from the Colombian flag, which tried to take his place on several occasions but they stopped and went to another place.", "links": {"subreddit": ["mandarinaa"], "discord": ["Vj9T7aRq"]}, "path": {"122-258": [[521, -911], [514, -911], [514, -902], [521, -902]]}, "center": {"122-258": [518, -906]}}, -{"id": 5041, "name": "Ponce's Shadow Flower", "description": "The Flowers are the symbols of Ponce, a French streamer. The Flowers represents his community, the shadow flowers, the community that watch the stream without talking.\n\"FCF\" stand for FC Fleur (Flower in French), name of the game team of the streamer Ponce.", "links": {"website": ["https://www.twitch.tv/ponce"], "subreddit": ["PonceFleur"]}, "path": {"178-258": [[855, 85], [858, 85], [858, 86], [859, 86], [859, 87], [861, 87], [861, 88], [862, 88], [862, 89], [863, 89], [863, 92], [862, 92], [862, 96], [861, 96], [861, 105], [852, 105], [852, 98], [851, 98], [851, 97], [850, 97], [850, 94], [850, 93], [849, 93], [849, 89], [850, 89], [850, 88], [851, 88], [851, 87], [852, 87], [853, 87], [853, 86], [854, 86], [854, 85]]}, "center": {"178-258": [856, 93]}}, -{"id": 5042, "name": "Exsilium", "description": "A section dedicated to the Exsilium DnD Campaign.", "links": {"website": ["https://exsiliumdnd.fandom.com/wiki/Exsilium_Wiki"], "subreddit": ["Exsilium"]}, "path": {"250-258": [[-656, -221], [-651, -221], [-651, -225], [-656, -225]]}, "center": {"250-258": [-653, -223]}}, +{"id": 5037, "name": "LeoAlex45", "description": "Streamer de twich con pequeña comunidad que hace directo de vez en cuando", "links": {"website": ["https://www.twitch.tv/leoalex45"]}, "path": {"206-259, T": [[1360, -888], [1373, -886], [1374, -887], [1376, -886], [1378, -875], [1373, -872], [1370, -872], [1371, -866], [1369, -864], [1368, -867], [1365, -867], [1365, -864], [1362, -865], [1358, -868], [1353, -882], [1359, -887]]}, "center": {"206-259, T": [1364, -878]}}, +{"id": 5038, "name": "Spider-Punk / Hobie Brown", "description": "Prominently featured in the 2023 film \"Spider-Man: Across the Spider-Verse\", Spider-Punk / Hobie Brown is known for playing loud music, flouting authority, and espousing anarchist values.\n\nThis piece was created by Spider-Man Place in collaboration with r/VZLA, r/Colombia, and Fuck Spez Coalition.", "links": {"subreddit": ["vzla", "Colombia"], "discord": ["cQZQDYsB", "Rwf5e8HR", "aGxEP6eC", "wk7uCvpJ"]}, "path": {"230-258, T": [[1219, -134], [1213, -141], [1213, -148], [1211, -150], [1210, -158], [1219, -169], [1228, -159], [1228, -150], [1226, -141], [1219, -134], [1212, -140], [1212, -150], [1210, -152], [1212, -139]]}, "center": {"230-258, T": [1219, -155]}}, +{"id": 5039, "name": "Senko x Special Week", "description": "A collaborated artwork between communities of The Helpful Fox Senko-san and Uma Musume Pretty Derby, featuring the 2 of main protagonist of their respective franchises, Special Week and Senko. These 2 characters share the same voice actress, Azumi Waki. \n\nThe design is based off of Uma Musume Tanuki, a popular meme within the Uma Musume community that originated from the image board site Futaba☆Channel.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Helpful_Fox_Senko-san", "https://en.wikipedia.org/wiki/Uma_Musume_Pretty_Derby", "https://www.nicovideo.jp/tag/%E3%81%9F%E3%81%AC%E3%81%8D%28%E3%82%A6%E3%83%9E%E5%A8%98%29"], "subreddit": ["SeyawakiKitsune", "UmaMusume"], "discord": ["senkoplace", "umamusume"]}, "path": {"250-258, T": [[-196, 241], [-192, 241], [-192, 240], [-182, 240], [-182, 241], [-178, 241], [-178, 239], [-177, 239], [-177, 237], [-176, 237], [-176, 232], [-171, 232], [-170, 232], [-170, 231], [-169, 231], [-168, 231], [-168, 229], [-167, 229], [-167, 226], [-166, 226], [-166, 222], [-166, 221], [-167, 221], [-167, 218], [-169, 218], [-169, 215], [-169, 211], [-169, 209], [-168, 209], [-168, 208], [-168, 207], [-169, 207], [-169, 206], [-170, 206], [-170, 205], [-170, 204], [-171, 204], [-171, 199], [-170, 199], [-169, 199], [-169, 198], [-168, 198], [-168, 197], [-167, 197], [-167, 192], [-164, 192], [-164, 190], [-164, 189], [-165, 189], [-165, 188], [-166, 188], [-166, 184], [-166, 183], [-167, 183], [-168, 183], [-169, 183], [-169, 184], [-170, 184], [-170, 185], [-171, 186], [-173, 186], [-173, 185], [-175, 185], [-176, 185], [-176, 184], [-181, 184], [-181, 182], [-183, 182], [-183, 181], [-184, 181], [-184, 180], [-185, 180], [-187, 180], [-187, 181], [-187, 183], [-187, 184], [-188, 184], [-188, 185], [-188, 186], [-189, 186], [-190, 186], [-190, 187], [-191, 187], [-191, 188], [-192, 188], [-192, 189], [-192, 190], [-191, 190], [-192, 192], [-193, 192], [-193, 196], [-194, 196], [-194, 198], [-194, 199], [-193, 199], [-194, 204], [-195, 204], [-195, 205], [-195, 206], [-196, 206], [-196, 207], [-197, 207], [-197, 209], [-198, 209], [-198, 214], [-198, 215], [-199, 215], [-199, 217], [-200, 217], [-200, 218], [-201, 218], [-201, 219], [-202, 219], [-202, 220], [-203, 220], [-203, 222], [-203, 223], [-202, 223], [-202, 225], [-201, 225], [-201, 226], [-202, 226], [-202, 227], [-203, 227], [-203, 228], [-203, 229], [-202, 229], [-202, 230], [-201, 230], [-201, 231], [-201, 232], [-200, 232], [-200, 233], [-199, 233], [-199, 234], [-198, 234], [-199, 235], [-199, 237], [-199, 238], [-198, 238], [-198, 239], [-197, 239], [-197, 241]]}, "center": {"250-258, T": [-184, 219]}}, +{"id": 5040, "name": "Mandarina", "description": "Esta es la comunidad de ''Mandarina'' El grupito intenta poner un logo de su servidor de discord y se une a Baby Joda, Manollo con su logo de dux y el Streamer Rageylo0 con su despistado.\nLa mandarina sufrió varios ataques pero se defendió con éxito. El ataque más fuerte que recibió fue de la bandera colombiana, que intentó tomar su lugar en varias ocasiones pero se detuvieron y se fueron a otro lugar.\n\nThis is the community of ''Mandarina'' The small group tries to put a logo of their discord server and team up with Baby Joda, Manollo with his doge logo and the Streamer Rageylo0 with his clueless.\nThe tangerine suffered several attacks but successfully defended itself. The strongest attack he received was from the Colombian flag, which tried to take his place on several occasions but they stopped and went to another place.", "links": {"subreddit": ["mandarinaa"], "discord": ["Vj9T7aRq"]}, "path": {"122-258, T": [[521, -911], [514, -911], [514, -902], [521, -902]]}, "center": {"122-258, T": [518, -906]}}, +{"id": 5041, "name": "Ponce's Shadow Flower", "description": "The Flowers are the symbols of Ponce, a French streamer. The Flowers represents his community, the shadow flowers, the community that watch the stream without talking.\n\"FCF\" stand for FC Fleur (Flower in French), name of the game team of the streamer Ponce.", "links": {"website": ["https://www.twitch.tv/ponce"], "subreddit": ["PonceFleur"]}, "path": {"178-258, T": [[855, 85], [858, 85], [858, 86], [859, 86], [859, 87], [861, 87], [861, 88], [862, 88], [862, 89], [863, 89], [863, 92], [862, 92], [862, 96], [861, 96], [861, 105], [852, 105], [852, 98], [851, 98], [851, 97], [850, 97], [850, 94], [850, 93], [849, 93], [849, 89], [850, 89], [850, 88], [851, 88], [851, 87], [852, 87], [853, 87], [853, 86], [854, 86], [854, 85]]}, "center": {"178-258, T": [856, 93]}}, +{"id": 5042, "name": "Exsilium", "description": "A section dedicated to the Exsilium DnD Campaign.", "links": {"website": ["https://exsiliumdnd.fandom.com/wiki/Exsilium_Wiki"], "subreddit": ["Exsilium"]}, "path": {"250-258, T": [[-656, -221], [-651, -221], [-651, -225], [-656, -225]]}, "center": {"250-258, T": [-653, -223]}}, {"id": 5043, "name": "League of Legends Poro", "description": "A small cute creature called \"Poro\" from the popular video game League of Legends made by a small, independent Community.", "links": {"discord": ["RWsvg75fSa"]}, "path": {"120": [[-848, 300], [-848, 299], [-839, 299], [-839, 306], [-848, 306], [-848, 299]]}, "center": {"120": [-843, 303]}}, {"id": 5044, "name": "Twice - 8th Logo Attempt", "description": "TWICE is a female K-pop group composed of nine members: Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, and Tzuyu. Their fandom is known as Once. Formed in 2016 under JYP Entertainment, TWICE are a worldwide K-pop phenomenon. Some of their most notable releases include the songs \"Cheer Up\", \"TT\", \"Likey\", and \"Fancy\".\n\nr/Twice's 8th attempt at preserving their logo on the canvas. This attempt was a collaboration between r/Bangtan (to the north) and r/KpopPlace (to the east and west) to develop another Kpop Alley in the wake of previous destruction in other locations. \n\nThe artwork includes Twice's logo, Twice member's 9 official colors, and Twice's official light stick the \"Candy Bong\". \n\nr/Twice was able to briefly develop artworks to the south that included \"Zone\" (Twice member Jihyo's first debut mini-album), \"MiSaMo\" (a Twice sub-unit consisting of Twice's three Japanese members Mina, Sana, and Momo), and \"Pop!\" (Twice member Nayeon's first solo debut single and the first solo debut of any Twice member).\n\nSoon realizing, with the help of r/KpopPlace, that the subreddit r/Latam was about to take over the area, r/Twice was able to come to an agreement with r/Latam and move north of their Latin America artwork for their 9th and final logo position on the canvas.", "links": {"subreddit": ["Twice"]}, "path": {"156-159": [[-158, -817], [-135, -817], [-135, -796], [-158, -796]], "160-163": [[-158, -817], [-135, -817], [-135, -763], [-158, -763]]}, "center": {"156-159": [-146, -806], "160-163": [-146, -790]}}, -{"id": 5045, "name": "Shiny Ribombee", "description": "A rare pink version of the bee fly pokemon first seen in Pokemon Sun and Moon", "links": {"wiki": ["Pokemon_in_r/Place"], "discord": ["X83BN5gTFA"]}, "path": {"166-258": [[-958, -329], [-958, -327], [-957, -327], [-957, -326], [-955, -326], [-955, -329], [-955, -326], [-953, -326], [-953, -329], [-952, -330], [-951, -329], [-953, -328], [-951, -328], [-953, -327], [-951, -327], [-950, -326], [-958, -325], [-950, -325], [-959, -324], [-950, -324], [-960, -323], [-950, -323], [-960, -322], [-949, -322], [-945, -326], [-944, -326], [-942, -324], [-942, -320], [-946, -317], [-945, -315], [-946, -314], [-947, -314], [-948, -313], [-948, -312], [-949, -312], [-949, -313], [-949, -314], [-950, -314], [-951, -313], [-951, -310], [-952, -310], [-952, -309], [-951, -310], [-951, -313], [-952, -313], [-953, -314], [-954, -314], [-954, -311], [-955, -311], [-955, -310], [-955, -311], [-954, -311], [-954, -313], [-955, -313], [-956, -314], [-956, -315], [-957, -316], [-958, -316], [-958, -315], [-959, -315], [-959, -314], [-960, -314], [-960, -315], [-957, -315], [-958, -318], [-959, -319], [-959, -324], [-943, -320]]}, "center": {"166-258": [-952, -318]}}, +{"id": 5045, "name": "Shiny Ribombee", "description": "A rare pink version of the bee fly pokemon first seen in Pokemon Sun and Moon", "links": {"wiki": ["Pokemon_in_r/Place"], "discord": ["X83BN5gTFA"]}, "path": {"166-258, T": [[-958, -329], [-958, -327], [-957, -327], [-957, -326], [-955, -326], [-955, -329], [-955, -326], [-953, -326], [-953, -329], [-952, -330], [-951, -329], [-953, -328], [-951, -328], [-953, -327], [-951, -327], [-950, -326], [-958, -325], [-950, -325], [-959, -324], [-950, -324], [-960, -323], [-950, -323], [-960, -322], [-949, -322], [-945, -326], [-944, -326], [-942, -324], [-942, -320], [-946, -317], [-945, -315], [-946, -314], [-947, -314], [-948, -313], [-948, -312], [-949, -312], [-949, -313], [-949, -314], [-950, -314], [-951, -313], [-951, -310], [-952, -310], [-952, -309], [-951, -310], [-951, -313], [-952, -313], [-953, -314], [-954, -314], [-954, -311], [-955, -311], [-955, -310], [-955, -311], [-954, -311], [-954, -313], [-955, -313], [-956, -314], [-956, -315], [-957, -316], [-958, -316], [-958, -315], [-959, -315], [-959, -314], [-960, -314], [-960, -315], [-957, -315], [-958, -318], [-959, -319], [-959, -324], [-943, -320]]}, "center": {"166-258, T": [-952, -318]}}, {"id": 5046, "name": "HeyStan", "description": "HeyStan is a prominent German content creator, highly active on platforms such as YouTube, Twitch, and Twitter. It appears there was a small error in the reference to a subreddit, which should have been u/HeyStan. Notably, HeyStan collaborated with Suedflagge in constructing this sign as an expression of gratitude for the support provided during the creation of Suedflagge.", "links": {"website": ["https://www.youtube.com/@HeyStani", "https://twitter.com/heystani", "https://www.twitch.tv/heystan"], "subreddit": ["placesuedflagge"], "discord": ["heystan"]}, "path": {"111-142": [[-859, -71], [-814, -71], [-814, -65], [-859, -65]]}, "center": {"111-142": [-836, -68]}}, {"id": 5047, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"], "discord": ["tuyu"]}, "path": {"80-116": [[751, -193], [751, -180], [736, -180], [736, -193]]}, "center": {"80-116": [744, -186]}}, -{"id": 5048, "name": "Flag of the Maldives", "description": "The Maldives officially the Republic of Maldives is a country in South Asia, situated in the Indian Ocean.", "links": {"website": ["https://en.wikipedia.org/wiki/Maldives"], "subreddit": ["maldives"]}, "path": {"190-258": [[-1018, -106], [-1018, -116], [-1002, -116], [-1002, -106]]}, "center": {"190-258": [-1010, -111]}}, -{"id": 5049, "name": "Bout", "description": "la skin de bout me pesan las gomas de poner tantos pixeles solo", "links": {"website": ["https://www.twitch.tv/bouthex"]}, "path": {"231-258": [[-1055, -199], [-1055, -191], [-1046, -191], [-1046, -199]]}, "center": {"231-258": [-1050, -195]}}, -{"id": 5050, "name": "Deep Rock Galactic (Hoxees)", "description": "After moving the Deep Rock Galactic (DRG) Logo below Dark and Darker, A redesign was made to include Hoxees, the planet you play on in-game, from the view of the Space Rig, a space station that acts as a lobby/hub before you start a mission. It also depicts blue barrels, the most fun invention ever made, and 2 M.U.L.E.s (regular-sized and mini-M.U.L.E.), which carry minerals for the dwarves.", "links": {"website": ["https://store.steampowered.com/app/548430/Deep_Rock_Galactic/"], "subreddit": ["DeepRockGalactic"], "discord": ["38DGdydTFb"]}, "path": {"183-258": [[-39, 356], [-39, 373], [16, 373], [16, 356]]}, "center": {"183-258": [-11, 365]}}, +{"id": 5048, "name": "Flag of the Maldives", "description": "The Maldives officially the Republic of Maldives is a country in South Asia, situated in the Indian Ocean.", "links": {"website": ["https://en.wikipedia.org/wiki/Maldives"], "subreddit": ["maldives"]}, "path": {"190-258, T": [[-1018, -106], [-1018, -116], [-1002, -116], [-1002, -106]]}, "center": {"190-258, T": [-1010, -111]}}, +{"id": 5049, "name": "Bout", "description": "la skin de bout me pesan las gomas de poner tantos pixeles solo", "links": {"website": ["https://www.twitch.tv/bouthex"]}, "path": {"231-258, T": [[-1055, -199], [-1055, -191], [-1046, -191], [-1046, -199]]}, "center": {"231-258, T": [-1050, -195]}}, +{"id": 5050, "name": "Deep Rock Galactic (Hoxees)", "description": "After moving the Deep Rock Galactic (DRG) Logo below Dark and Darker, A redesign was made to include Hoxees, the planet you play on in-game, from the view of the Space Rig, a space station that acts as a lobby/hub before you start a mission. It also depicts blue barrels, the most fun invention ever made, and 2 M.U.L.E.s (regular-sized and mini-M.U.L.E.), which carry minerals for the dwarves.", "links": {"website": ["https://store.steampowered.com/app/548430/Deep_Rock_Galactic/"], "subreddit": ["DeepRockGalactic"], "discord": ["38DGdydTFb"]}, "path": {"183-258, T": [[-39, 356], [-39, 373], [16, 373], [16, 356]]}, "center": {"183-258, T": [-11, 365]}}, {"id": 5051, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"]}, "path": {"69-78": [[752, -193], [752, -180], [736, -180], [736, -193]]}, "center": {"69-78": [744, -186]}}, {"id": 5052, "name": "Frog Detective", "description": "Frog Detective is the main character of the game trilogy Frog Detective.", "links": {}, "path": {"74-75": [[95, 165], [133, 166], [134, 189], [93, 188], [94, 165]]}, "center": {"74-75": [114, 177]}}, -{"id": 5053, "name": "Cecililla Juega", "description": "Peruvian YouTuber and streamer known for her gaming content. She rose to popularity for playing games like Minecraft, League of Legends, and many others. \nThis face is a representation of her Minecraft skin.", "links": {"website": ["https://www.youtube.com/@CecilillaJuega", "https://www.twitch.tv/ceciliajuega"]}, "path": {"164-258": [[-591, -788], [-584, -788], [-584, -781], [-591, -781]]}, "center": {"164-258": [-587, -784]}}, +{"id": 5053, "name": "Cecililla Juega", "description": "Peruvian YouTuber and streamer known for her gaming content. She rose to popularity for playing games like Minecraft, League of Legends, and many others. \nThis face is a representation of her Minecraft skin.", "links": {"website": ["https://www.youtube.com/@CecilillaJuega", "https://www.twitch.tv/ceciliajuega"]}, "path": {"164-258, T": [[-591, -788], [-584, -788], [-584, -781], [-591, -781]]}, "center": {"164-258, T": [-587, -784]}}, {"id": 3272, "name": "The Blue Corner", "description": "The blue corner formed very early in 2017's canvas, being one of the very first recognizable features, and one of the only ones to make it to the end.\n\nSince then the corner has appeared in all r/place events.", "links": {"subreddit": ["TheBlueCorner"], "discord": ["NFTG2MSj"]}, "path": {"72-143": [[942, 442], [999, 442], [999, 499], [942, 499]]}, "center": {"72-143": [971, 471]}}, {"id": 5054, "name": ":V", "description": "A Pacman made by the community of Bananirou, Latesito and Rodny. Made during the early morning with the aim of conquering Turkey. Ultimately Failed.", "links": {"website": ["https://es.wikipedia.org/wiki/Dos_puntos"], "subreddit": ["TheVirginZone"]}, "path": {"172-178, 77-79": [[-363, 292], [-361, 442], [-169, 442], [-167, 293]]}, "center": {"172-178, 77-79": [-265, 367]}}, {"id": 5055, "name": "Equipe multitech", "description": "Steven/bernard/joe/mic/guy/nelson", "links": {}, "path": {"251-258": [[1480, 525], [1480, 511], [1488, 510], [1493, 525], [1492, 525], [1493, 525]]}, "center": {"251-258": [1485, 520]}}, {"id": 5056, "name": "Luke skywalker", "description": "This is a 2D Pixel art of the star wars character Luke Skywalker", "links": {}, "path": {"252": [[1116, -739], [1126, -739], [1126, -719], [1116, -720], [1114, -720], [1114, -738]]}, "center": {"252": [1120, -729]}}, -{"id": 5057, "name": "Shura Hiwa 🏍", "description": "Shura Hiwa es una PNGtuber independiente que debutó el 11/06. Hace directos principalmente en YouTube. Su personaje representa una Biker Panther. El idioma principal de sus streams es el Español, pero también habla inglés y francés.\n\n¡Viva la grasa!", "links": {"website": ["https://www.youtube.com/@ShuraHiwa", "https://www.twitch.tv/ShuraHiwa", "https://www.twitter.com/ShuraHiwa"]}, "path": {"228-258": [[-1294, -75], [-1294, -76], [-1295, -75], [-1296, -74], [-1297, -73], [-1297, -72], [-1297, -71], [-1297, -70], [-1297, -69], [-1298, -69], [-1298, -62], [-1297, -61], [-1295, -61], [-1295, -60], [-1294, -60], [-1294, -59], [-1293, -59], [-1292, -59], [-1291, -59], [-1291, -60], [-1290, -60], [-1289, -60], [-1289, -59], [-1288, -59], [-1287, -59], [-1286, -59], [-1286, -60], [-1285, -60], [-1285, -61], [-1284, -61], [-1283, -61], [-1283, -62], [-1282, -62], [-1282, -63], [-1282, -64], [-1282, -65], [-1282, -66], [-1282, -67], [-1282, -68], [-1282, -69], [-1283, -69], [-1283, -70], [-1283, -71], [-1283, -72], [-1283, -73], [-1284, -73], [-1284, -74], [-1285, -74], [-1285, -75], [-1286, -75], [-1286, -76], [-1286, -74], [-1287, -74], [-1288, -74], [-1288, -75], [-1289, -75], [-1290, -75], [-1291, -75], [-1292, -75], [-1292, -74], [-1293, -74], [-1294, -74]]}, "center": {"228-258": [-1290, -67]}}, -{"id": 5058, "name": "Gardevoir Evolutionary Line (Pokémon)", "description": "Gardevoir is a Pokémon species from the Pokémon franchise. Gardevoir was introduced in the third generation of Pokémon games. \n\nThis artwork in particular depicts the Gardevoir evolutionary line starting with Ralts at the top, Kirlia at the right, and Gardevoir in the left.", "links": {"subreddit": ["pokemon"], "discord": ["pokemon"]}, "path": {"250-258": [[-181, 932], [-179, 927], [-177, 930], [-174, 929], [-168, 937], [-171, 938], [-170, 939], [-163, 939], [-161, 940], [-161, 953], [-172, 952], [-176, 950], [-180, 951], [-185, 951], [-188, 945], [-186, 942], [-182, 939], [-179, 939], [-182, 935]]}, "center": {"250-258": [-168, 945]}}, +{"id": 5057, "name": "Shura Hiwa 🏍", "description": "Shura Hiwa es una PNGtuber independiente que debutó el 11/06. Hace directos principalmente en YouTube. Su personaje representa una Biker Panther. El idioma principal de sus streams es el Español, pero también habla inglés y francés.\n\n¡Viva la grasa!", "links": {"website": ["https://www.youtube.com/@ShuraHiwa", "https://www.twitch.tv/ShuraHiwa", "https://www.twitter.com/ShuraHiwa"]}, "path": {"228-258, T": [[-1294, -75], [-1294, -76], [-1295, -75], [-1296, -74], [-1297, -73], [-1297, -72], [-1297, -71], [-1297, -70], [-1297, -69], [-1298, -69], [-1298, -62], [-1297, -61], [-1295, -61], [-1295, -60], [-1294, -60], [-1294, -59], [-1293, -59], [-1292, -59], [-1291, -59], [-1291, -60], [-1290, -60], [-1289, -60], [-1289, -59], [-1288, -59], [-1287, -59], [-1286, -59], [-1286, -60], [-1285, -60], [-1285, -61], [-1284, -61], [-1283, -61], [-1283, -62], [-1282, -62], [-1282, -63], [-1282, -64], [-1282, -65], [-1282, -66], [-1282, -67], [-1282, -68], [-1282, -69], [-1283, -69], [-1283, -70], [-1283, -71], [-1283, -72], [-1283, -73], [-1284, -73], [-1284, -74], [-1285, -74], [-1285, -75], [-1286, -75], [-1286, -76], [-1286, -74], [-1287, -74], [-1288, -74], [-1288, -75], [-1289, -75], [-1290, -75], [-1291, -75], [-1292, -75], [-1292, -74], [-1293, -74], [-1294, -74]]}, "center": {"228-258, T": [-1290, -67]}}, +{"id": 5058, "name": "Gardevoir Evolutionary Line (Pokémon)", "description": "Gardevoir is a Pokémon species from the Pokémon franchise. Gardevoir was introduced in the third generation of Pokémon games. \n\nThis artwork in particular depicts the Gardevoir evolutionary line starting with Ralts at the top, Kirlia at the right, and Gardevoir in the left.", "links": {"subreddit": ["pokemon"], "discord": ["pokemon"]}, "path": {"250-258, T": [[-181, 932], [-179, 927], [-177, 930], [-174, 929], [-168, 937], [-171, 938], [-170, 939], [-163, 939], [-161, 940], [-161, 953], [-172, 952], [-176, 950], [-180, 951], [-185, 951], [-188, 945], [-186, 942], [-182, 939], [-179, 939], [-182, 935]]}, "center": {"250-258, T": [-168, 945]}}, {"id": 5059, "name": "KurdishCummunity", "description": "A small private group filled with 9 years old internet trolls.", "links": {"subreddit": ["kurdishcummunity"]}, "path": {"15-16": [[224, 402], [241, 402], [241, 411], [224, 411]]}, "center": {"15-16": [233, 407]}}, -{"id": 5060, "name": "Heroes of the Storm", "description": "The logo of the video game \"Heroes of the Storm\"", "links": {}, "path": {"250-258": [[-1363, -694], [-1363, -679], [-1378, -679], [-1378, -694]]}, "center": {"250-258": [-1370, -686]}}, -{"id": 5061, "name": "Dean Kamen", "description": "Dean \"The Enigma\" Kamen is the co-founder of Segway and the co-founder of the high school robotics program FIRST.", "links": {"website": ["https://www.firstinspires.org/about/leadership/dean-kamen"], "subreddit": ["frc"]}, "path": {"244-258": [[-1164, 145], [-1161, 145], [-1161, 153], [-1164, 153], [-1164, 146]]}, "center": {"244-258": [-1162, 149]}}, +{"id": 5060, "name": "Heroes of the Storm", "description": "The logo of the video game \"Heroes of the Storm\"", "links": {}, "path": {"250-258, T": [[-1363, -694], [-1363, -679], [-1378, -679], [-1378, -694]]}, "center": {"250-258, T": [-1370, -686]}}, +{"id": 5061, "name": "Dean Kamen", "description": "Dean \"The Enigma\" Kamen is the co-founder of Segway and the co-founder of the high school robotics program FIRST.", "links": {"website": ["https://www.firstinspires.org/about/leadership/dean-kamen"], "subreddit": ["frc"]}, "path": {"244-258, T": [[-1164, 145], [-1161, 145], [-1161, 153], [-1164, 153], [-1164, 146]]}, "center": {"244-258, T": [-1162, 149]}}, {"id": 5062, "name": "El peruANO de ISHA", "description": "\"ISHA\" es un streamer peruano, tiene techo de lamina y el es color chaufa(poto de olla (oscuro)), si estas leyendo esto y yo aun estoy vivo, visitame en twitch a las 7 pm hora peru.", "links": {"website": ["https://www.twitch.tv/isha0213", "https://www.youtube.com/channel/UC8-3FjTBIs3PcTcKO2M2wWw", "https://www.tiktok.com/@el_isha0213"], "discord": ["q7PsWQKfaB"]}, "path": {"253-258": [[-582, -906], [-576, -906], [-576, -899], [-582, -899]]}, "center": {"253-258": [-579, -902]}}, -{"id": 5063, "name": "Allay", "description": "This small drawing depicts the head of an Allay, the Minecraft Mob that won the mob vote at Minecraft Live 2021.\n\nThe Allay is a flying passive mob that collects and delivers items for any player that gives it something or any note block it hears recently playing.", "links": {"website": ["https://minecraft.fandom.com/wiki/Allay"], "subreddit": ["Minecraft"], "discord": ["minecraft"]}, "path": {"155-259": [[681, 635], [692, 635], [692, 647], [681, 647]]}, "center": {"155-259": [687, 641]}}, +{"id": 5063, "name": "Allay", "description": "This small drawing depicts the head of an Allay, the Minecraft Mob that won the mob vote at Minecraft Live 2021.\n\nThe Allay is a flying passive mob that collects and delivers items for any player that gives it something or any note block it hears recently playing.", "links": {"website": ["https://minecraft.fandom.com/wiki/Allay"], "subreddit": ["Minecraft"], "discord": ["minecraft"]}, "path": {"155-259, T": [[681, 635], [692, 635], [692, 647], [681, 647]]}, "center": {"155-259, T": [687, 641]}}, {"id": 5064, "name": "Group \"LSP\"", "description": "Colombian Group \"LSP\" (LAS PRE) Composed of 5 members; 2 beatmakers from the Bogota scene, 1 skater, 1 video editor and 1 radio host", "links": {"subreddit": ["LSPColombia"], "discord": ["mgBm66NYRn"]}, "path": {"221-247": [[1277, -610], [1277, -590], [1306, -590], [1306, -610]]}, "center": {"221-247": [1292, -600]}}, -{"id": 5065, "name": "Woodie Flowers", "description": "Woodie Claude Flowers (November 18, 1943 – October 11, 2019) was a professor of mechanical engineering at the Massachusetts Institute of Technology and co-founder of FIRST.", "links": {"website": ["https://en.wikipedia.org/wiki/Woodie_Flowers"], "subreddit": ["frc"]}, "path": {"221-258": [[-1171, 143], [-1166, 143], [-1166, 153], [-1171, 153], [-1171, 148]]}, "center": {"221-258": [-1168, 148]}}, -{"id": 5066, "name": "HOME.", "description": "HOME is the place where Wally Darling (the main protagonist of Welcome Home) lives. It is regarded as the 9 neighbor of the show, but it cannot speak at all, instead using onomatopoeias (words like creak, squeak, or bang.) Home is often considered the most lively house in the neighborhood, due to the fact that none of the other houses have eyes.", "links": {"website": ["https://www.clownillustration.com/welcomehomeyou"], "subreddit": ["welcomehomeARG"]}, "path": {"250-258": [[-1085, 470], [-1091, 470], [-1096, 475], [-1097, 479], [-1096, 480], [-1095, 484], [-1083, 484], [-1082, 474], [-1084, 470], [-1095, 485], [-1083, 485]]}, "center": {"250-258": [-1093, 477]}}, -{"id": 5067, "name": "logo NELXEED", "description": "Pequeño logo de una pequeña comunidad donde se hace rara vez streams y esperamos ser mejor que Ibai o Rubius XD ayudemos a llegar a 100 seguidores XD", "links": {"website": ["https://www.twitch.tv/nelxeed"]}, "path": {"250-258": [[-1328, 441], [-1317, 441], [-1317, 452], [-1328, 452]]}, "center": {"250-258": [-1322, 447]}}, +{"id": 5065, "name": "Woodie Flowers", "description": "Woodie Claude Flowers (November 18, 1943 – October 11, 2019) was a professor of mechanical engineering at the Massachusetts Institute of Technology and co-founder of FIRST.", "links": {"website": ["https://en.wikipedia.org/wiki/Woodie_Flowers"], "subreddit": ["frc"]}, "path": {"221-258, T": [[-1171, 143], [-1166, 143], [-1166, 153], [-1171, 153], [-1171, 148]]}, "center": {"221-258, T": [-1168, 148]}}, +{"id": 5066, "name": "HOME.", "description": "HOME is the place where Wally Darling (the main protagonist of Welcome Home) lives. It is regarded as the 9 neighbor of the show, but it cannot speak at all, instead using onomatopoeias (words like creak, squeak, or bang.) Home is often considered the most lively house in the neighborhood, due to the fact that none of the other houses have eyes.", "links": {"website": ["https://www.clownillustration.com/welcomehomeyou"], "subreddit": ["welcomehomeARG"]}, "path": {"250-258, T": [[-1085, 470], [-1091, 470], [-1096, 475], [-1097, 479], [-1096, 480], [-1095, 484], [-1083, 484], [-1082, 474], [-1084, 470], [-1095, 485], [-1083, 485]]}, "center": {"250-258, T": [-1093, 477]}}, +{"id": 5067, "name": "logo NELXEED", "description": "Pequeño logo de una pequeña comunidad donde se hace rara vez streams y esperamos ser mejor que Ibai o Rubius XD ayudemos a llegar a 100 seguidores XD", "links": {"website": ["https://www.twitch.tv/nelxeed"]}, "path": {"250-258, T": [[-1328, 441], [-1317, 441], [-1317, 452], [-1328, 452]]}, "center": {"250-258, T": [-1322, 447]}}, {"id": 5068, "name": "Zahirgamer444", "description": "Zahirgamer444's Minecraft skin [Made by Zahirgamer444 and AsfClassic]\n[Original place until it was attacked during night and had to move]", "links": {}, "path": {"157-228": [[993, 307], [1000, 307], [1000, 314], [993, 314]]}, "center": {"157-228": [997, 311]}}, -{"id": 5069, "name": "Thatipe", "description": "Thatipe is a chilean streamer.", "links": {"website": ["https://www.twitch.tv/thatipe"], "discord": ["XnX5mDsa3T"]}, "path": {"250-258": [[-439, -792], [-419, -792], [-418, -770], [-439, -770]]}, "center": {"250-258": [-429, -781]}}, +{"id": 5069, "name": "Thatipe", "description": "Thatipe is a chilean streamer.", "links": {"website": ["https://www.twitch.tv/thatipe"], "discord": ["XnX5mDsa3T"]}, "path": {"250-258, T": [[-439, -792], [-419, -792], [-418, -770], [-439, -770]]}, "center": {"250-258, T": [-429, -781]}}, {"id": 5070, "name": "JuanSGuarnizo", "description": "This drawing was made by the community of \"JuanSGuarnizo\" a Colombian Twitch content creator, Viral Phenomenon 2020, 2021, 2022 and 2023. President of Anniquiladores FC. Winner of an Esland Award, an Eliot Award, 4 Simones Awards, 14 Zorman Awards and the voice of Spectacular Spider-Man on cinema.\n\nIn the pixel art we can see \"Aniki\" (the mascot of his soccer team) and \"Juan Cubito\" (his minecraft skin) next to \"Puerco Araña\" with initials from his series \"El Dios de Todo\".", "links": {"website": ["https://www.twitch.tv/juansguarnizo", "https://www.youtube.com/juansguarnizo", "https://twitter.com/juanSGuarnizo"], "subreddit": ["juaniquilador"]}, "path": {"117-187": [[-326, -534], [-308, -534], [-308, -500], [-326, -500]]}, "center": {"117-187": [-317, -517]}}, -{"id": 5071, "name": "Kinako Sakurakoji (or not ?)", "description": "She is a main character of Love Live! Superstar!!. She is both a second-generation member of Liella! and a member of the sub-unit 5yncri5e!.\n\nMade by the French community of Love Live!.\nBut we don't have confirmation on that. No conversation in the Love Live community speak about a drawing of Kinako. Maybe it was made by few people, who never communicate on it with the community. Or maybe, it was simply not Kinako. But the similarity is striking...\n\nThis is a mystery... The investigation is open...", "links": {"website": ["https://twitter.com/lovelive_fr", "https://love-live-en-francais.blogspot.com/"], "subreddit": ["lovelive"], "discord": ["lovelivefrance"]}, "path": {"160-258": [[274, -911], [274, -908], [278, -908], [278, -911]]}, "center": {"160-258": [276, -909]}}, +{"id": 5071, "name": "Kinako Sakurakoji (or not ?)", "description": "She is a main character of Love Live! Superstar!!. She is both a second-generation member of Liella! and a member of the sub-unit 5yncri5e!.\n\nMade by the French community of Love Live!.\nBut we don't have confirmation on that. No conversation in the Love Live community speak about a drawing of Kinako. Maybe it was made by few people, who never communicate on it with the community. Or maybe, it was simply not Kinako. But the similarity is striking...\n\nThis is a mystery... The investigation is open...", "links": {"website": ["https://twitter.com/lovelive_fr", "https://love-live-en-francais.blogspot.com/"], "subreddit": ["lovelive"], "discord": ["lovelivefrance"]}, "path": {"160-258, T": [[274, -911], [274, -908], [278, -908], [278, -911]]}, "center": {"160-258, T": [276, -909]}}, {"id": 5072, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"], "discord": ["tuyu"]}, "path": {"172-176": [[-1383, -25], [-1383, -3], [-1407, -3], [-1407, -25]]}, "center": {"172-176": [-1395, -14]}}, {"id": 5073, "name": "Ecuador Flag", "description": "Bandera de ecuador junto a Dobla2", "links": {"subreddit": ["PlaceEcuador"], "discord": ["YnNWVbJp"]}, "path": {"77-79": [[1000, -482], [933, -481], [932, -500], [1000, -501]]}, "center": {"77-79": [945, -491]}}, -{"id": 5074, "name": "Mario :)", "description": "I like 'em", "links": {}, "path": {"240-258": [[1162, -756], [1159, -756], [1159, -754], [1161, -754], [1161, -752], [1160, -751], [1159, -750], [1160, -749], [1161, -749], [1162, -748], [1162, -745], [1161, -745], [1160, -745], [1160, -743], [1161, -743], [1162, -742], [1159, -742], [1159, -744], [1158, -744], [1157, -745], [1156, -745], [1155, -744], [1154, -744], [1154, -742], [1152, -742], [1152, -743], [1153, -743], [1153, -744], [1153, -745], [1151, -745], [1151, -748], [1154, -751], [1153, -752], [1152, -752], [1152, -754], [1153, -755], [1153, -756], [1154, -757], [1158, -757], [1159, -756]]}, "center": {"240-258": [1156, -748]}}, -{"id": 5075, "name": "Shura Hiwa", "description": "Shura Hiwa es una PNGtuber independiente que debutó el 11/06. Hace directos principalmente en YouTube. Su personaje representa una Biker Panther. El idioma principal de sus streams es el Español, pero también habla inglés y francés.\n\n¡Viva la grasa!", "links": {"website": ["https://www.youtube.com/@ShuraHiwa", "https://www.twitch.tv/ShuraHiwa", "https://www.twitter.com/ShuraHiwa"]}, "path": {"227-258": [[-1294, -76], [-1297, -72], [-1294, -59], [-1290, -60], [-1284, -61], [-1282, -62], [-1283, -70], [-1294, -74], [-1293, -73], [-1294, -68], [-1292, -65], [-1297, -69], [-1297, -62], [-1298, -67], [-1298, -68], [-1298, -69], [-1298, -62], [-1297, -61], [-1296, -61], [-1295, -60], [-1292, -59], [-1294, -59], [-1293, -59], [-1292, -59], [-1291, -59], [-1291, -60], [-1290, -60], [-1288, -60], [-1289, -59], [-1288, -59], [-1287, -59], [-1286, -59], [-1285, -60], [-1284, -61], [-1283, -61], [-1282, -62], [-1282, -63], [-1282, -65], [-1282, -66], [-1282, -67], [-1282, -68], [-1282, -69], [-1283, -70], [-1283, -71], [-1283, -72], [-1283, -73], [-1284, -74], [-1285, -75], [-1286, -75], [-1286, -76], [-1286, -74], [-1287, -74], [-1288, -74], [-1288, -75], [-1289, -75], [-1290, -75], [-1291, -75], [-1292, -75], [-1292, -74], [-1293, -74], [-1294, -74], [-1294, -75], [-1294, -76], [-1296, -61], [-1297, -61], [-1298, -62], [-1298, -64], [-1298, -66], [-1298, -69], [-1298, -67], [-1295, -68], [-1294, -67], [-1282, -66], [-1294, -75], [-1294, -74], [-1293, -74], [-1292, -75], [-1291, -75], [-1289, -75], [-1288, -75], [-1286, -65], [-1288, -68], [-1294, -69]]}, "center": {"227-258": [-1285, -72]}}, -{"id": 5076, "name": "Eru ∇", "description": "Eru es una vtuber ángel androide que ha venido a salvarnos. Su nombre completo es Eru Nabura y el símbolo que está junto a su nombre es el Nabla ∇. Ella normalmente escribe su nombre junto con este peculiar símbolo.", "links": {"website": ["https://www.twitter.com/EruNabura", "https://www.youtube.com/@EruNabura", "https://www.twitter.com/EruNabura"]}, "path": {"229-258": [[-1312, -75], [-1304, -75], [-1310, -75], [-1305, -75], [-1303, -74], [-1302, -73], [-1302, -71], [-1301, -71], [-1300, -70], [-1300, -62], [-1301, -61], [-1302, -61], [-1303, -61], [-1303, -60], [-1304, -60], [-1304, -59], [-1307, -59], [-1309, -60], [-1308, -60], [-1310, -59], [-1309, -59], [-1311, -59], [-1312, -59], [-1313, -60], [-1314, -61], [-1315, -61], [-1316, -62], [-1316, -70], [-1315, -71], [-1315, -72], [-1314, -72], [-1314, -73], [-1313, -74], [-1312, -75], [-1309, -64], [-1302, -66]]}, "center": {"229-258": [-1313, -65]}}, -{"id": 5077, "name": "Pou", "description": "Pou is the main character from hit mobile game \"Pou\"", "links": {"subreddit": ["pou"]}, "path": {"221-258": [[1066, -211], [1061, -219], [1067, -229], [1073, -229], [1079, -216], [1076, -211]]}, "center": {"221-258": [1070, -219]}}, -{"id": 5078, "name": "Woodie Flowers", "description": "Woodie Claude Flowers (November 18, 1943 – October 11, 2019) was a professor of mechanical engineering at the Massachusetts Institute of Technology.", "links": {"website": ["https://en.wikipedia.org/wiki/Woodie_Flowers"], "subreddit": ["frc"]}, "path": {"221-258": [[-1171, 143], [-1166, 143], [-1166, 153], [-1171, 153], [-1171, 148]]}, "center": {"221-258": [-1168, 148]}}, -{"id": 5079, "name": "mugmoth", "description": "A small indie vtuber who snuck a moth with a heart under the Vshojo logo on the second to final day. VtubersPlace later reached out to help protect it, and the moth was defended several times afterwards by viewers of mugmoth's twitch stream.", "links": {"website": ["https://twitch.tv/mug_moth"], "discord": ["M7exguRuhY", "vtubersplace"]}, "path": {"184-259": [[-602, -259], [-599, -262], [-601, -267], [-602, -266], [-603, -267], [-605, -262]]}, "center": {"184-259": [-602, -263]}}, -{"id": 5080, "name": "Aurigas", "description": "Spanish technical minecraft youtuber and streamer. The acronym STA means \"Survival técnico de Aurigas\", his main series.", "links": {"website": ["https://www.youtube.com/c/Aurigas", "https://www.twitch.tv/aurigas", "https://twitter.com/_Aurigas_"], "discord": ["kcqHJDu"]}, "path": {"162-258": [[-891, 503], [-862, 503], [-862, 542], [-891, 542]]}, "center": {"162-258": [-876, 523]}}, -{"id": 5081, "name": "VTubers Place - Baltic States Alliance Commemoration Medal", "description": "A medal commemorating the Alliance between VTubers Place and the Baltic States. On the right side of the brooch, it shows the flags of the three Baltic States, Estonia, Latvia, and Lithuania. On the left side, it shows the 3 of the biggest VTuber Agencies in the World: VShojo, Hololive, and Nijisanji. The ribbon shows the NATO compass, as shown in the design of the art of the Baltic States and the fact that they are a member of NATO.\n\nIn the early days of the event, they allied with each other to help each other out against the attacks of the Turkish Flag, The Azerbaijan Flag, and The Chilean Flag. When VTubers Place relocated, the alliance still continued until the end with assisting each other in defending and retaking lost territory in the canvas.", "links": {"subreddit": ["BalticStates", "Hololive", "Nijisanji", "VShojo"], "discord": ["vtubersplace"]}, "path": {"206-258": [[1271, -830], [1291, -830], [1291, -818], [1290, -818], [1289, -817], [1288, -817], [1287, -816], [1287, -815], [1286, -815], [1285, -815], [1285, -814], [1284, -813], [1284, -812], [1285, -812], [1286, -811], [1287, -810], [1289, -810], [1290, -809], [1290, -806], [1291, -805], [1291, -797], [1290, -796], [1290, -795], [1289, -794], [1289, -793], [1288, -792], [1287, -792], [1286, -791], [1276, -791], [1275, -792], [1274, -792], [1273, -793], [1273, -794], [1272, -795], [1272, -796], [1271, -797], [1271, -805], [1272, -806], [1272, -808], [1273, -809], [1273, -810], [1276, -810], [1276, -811], [1277, -812], [1278, -813], [1277, -814], [1276, -815], [1275, -815], [1275, -816], [1274, -817], [1273, -817], [1272, -818], [1271, -819]]}, "center": {"206-258": [1281, -802]}}, -{"id": 5082, "name": "nicolinopai", "description": "Representación de la comunidad del streamer y twittero, nicolinopai, en honor a su skin en Minecraft. Símbolo de que a pesar de todo lo malo que uno pueda llegar a vivir, siempre se puede salir adelante siendo mejor <333", "links": {"website": ["https://www.twitch.tv/nicolinopai", "https://twitter.com/nicolinopai"], "discord": ["KqYdgrkVzZ"]}, "path": {"250-258": [[395, -920], [395, -927], [402, -927], [402, -920]]}, "center": {"250-258": [399, -923]}}, +{"id": 5074, "name": "Mario :)", "description": "I like 'em", "links": {}, "path": {"240-258, T": [[1162, -756], [1159, -756], [1159, -754], [1161, -754], [1161, -752], [1160, -751], [1159, -750], [1160, -749], [1161, -749], [1162, -748], [1162, -745], [1161, -745], [1160, -745], [1160, -743], [1161, -743], [1162, -742], [1159, -742], [1159, -744], [1158, -744], [1157, -745], [1156, -745], [1155, -744], [1154, -744], [1154, -742], [1152, -742], [1152, -743], [1153, -743], [1153, -744], [1153, -745], [1151, -745], [1151, -748], [1154, -751], [1153, -752], [1152, -752], [1152, -754], [1153, -755], [1153, -756], [1154, -757], [1158, -757], [1159, -756]]}, "center": {"240-258, T": [1156, -748]}}, +{"id": 5075, "name": "Shura Hiwa", "description": "Shura Hiwa es una PNGtuber independiente que debutó el 11/06. Hace directos principalmente en YouTube. Su personaje representa una Biker Panther. El idioma principal de sus streams es el Español, pero también habla inglés y francés.\n\n¡Viva la grasa!", "links": {"website": ["https://www.youtube.com/@ShuraHiwa", "https://www.twitch.tv/ShuraHiwa", "https://www.twitter.com/ShuraHiwa"]}, "path": {"227-258, T": [[-1294, -76], [-1297, -72], [-1294, -59], [-1290, -60], [-1284, -61], [-1282, -62], [-1283, -70], [-1294, -74], [-1293, -73], [-1294, -68], [-1292, -65], [-1297, -69], [-1297, -62], [-1298, -67], [-1298, -68], [-1298, -69], [-1298, -62], [-1297, -61], [-1296, -61], [-1295, -60], [-1292, -59], [-1294, -59], [-1293, -59], [-1292, -59], [-1291, -59], [-1291, -60], [-1290, -60], [-1288, -60], [-1289, -59], [-1288, -59], [-1287, -59], [-1286, -59], [-1285, -60], [-1284, -61], [-1283, -61], [-1282, -62], [-1282, -63], [-1282, -65], [-1282, -66], [-1282, -67], [-1282, -68], [-1282, -69], [-1283, -70], [-1283, -71], [-1283, -72], [-1283, -73], [-1284, -74], [-1285, -75], [-1286, -75], [-1286, -76], [-1286, -74], [-1287, -74], [-1288, -74], [-1288, -75], [-1289, -75], [-1290, -75], [-1291, -75], [-1292, -75], [-1292, -74], [-1293, -74], [-1294, -74], [-1294, -75], [-1294, -76], [-1296, -61], [-1297, -61], [-1298, -62], [-1298, -64], [-1298, -66], [-1298, -69], [-1298, -67], [-1295, -68], [-1294, -67], [-1282, -66], [-1294, -75], [-1294, -74], [-1293, -74], [-1292, -75], [-1291, -75], [-1289, -75], [-1288, -75], [-1286, -65], [-1288, -68], [-1294, -69]]}, "center": {"227-258, T": [-1285, -72]}}, +{"id": 5076, "name": "Eru ∇", "description": "Eru es una vtuber ángel androide que ha venido a salvarnos. Su nombre completo es Eru Nabura y el símbolo que está junto a su nombre es el Nabla ∇. Ella normalmente escribe su nombre junto con este peculiar símbolo.", "links": {"website": ["https://www.twitter.com/EruNabura", "https://www.youtube.com/@EruNabura", "https://www.twitter.com/EruNabura"]}, "path": {"229-258, T": [[-1312, -75], [-1304, -75], [-1310, -75], [-1305, -75], [-1303, -74], [-1302, -73], [-1302, -71], [-1301, -71], [-1300, -70], [-1300, -62], [-1301, -61], [-1302, -61], [-1303, -61], [-1303, -60], [-1304, -60], [-1304, -59], [-1307, -59], [-1309, -60], [-1308, -60], [-1310, -59], [-1309, -59], [-1311, -59], [-1312, -59], [-1313, -60], [-1314, -61], [-1315, -61], [-1316, -62], [-1316, -70], [-1315, -71], [-1315, -72], [-1314, -72], [-1314, -73], [-1313, -74], [-1312, -75], [-1309, -64], [-1302, -66]]}, "center": {"229-258, T": [-1313, -65]}}, +{"id": 5077, "name": "Pou", "description": "Pou is the main character from hit mobile game \"Pou\"", "links": {"subreddit": ["pou"]}, "path": {"221-258, T": [[1066, -211], [1061, -219], [1067, -229], [1073, -229], [1079, -216], [1076, -211]]}, "center": {"221-258, T": [1070, -219]}}, +{"id": 5078, "name": "Woodie Flowers", "description": "Woodie Claude Flowers (November 18, 1943 – October 11, 2019) was a professor of mechanical engineering at the Massachusetts Institute of Technology.", "links": {"website": ["https://en.wikipedia.org/wiki/Woodie_Flowers"], "subreddit": ["frc"]}, "path": {"221-258, T": [[-1171, 143], [-1166, 143], [-1166, 153], [-1171, 153], [-1171, 148]]}, "center": {"221-258, T": [-1168, 148]}}, +{"id": 5079, "name": "mugmoth", "description": "A small indie vtuber who snuck a moth with a heart under the Vshojo logo on the second to final day. VtubersPlace later reached out to help protect it, and the moth was defended several times afterwards by viewers of mugmoth's twitch stream.", "links": {"website": ["https://twitch.tv/mug_moth"], "discord": ["M7exguRuhY", "vtubersplace"]}, "path": {"184-259, T": [[-602, -259], [-599, -262], [-601, -267], [-602, -266], [-603, -267], [-605, -262]]}, "center": {"184-259, T": [-602, -263]}}, +{"id": 5080, "name": "Aurigas", "description": "Spanish technical minecraft youtuber and streamer. The acronym STA means \"Survival técnico de Aurigas\", his main series.", "links": {"website": ["https://www.youtube.com/c/Aurigas", "https://www.twitch.tv/aurigas", "https://twitter.com/_Aurigas_"], "discord": ["kcqHJDu"]}, "path": {"162-258, T": [[-891, 503], [-862, 503], [-862, 542], [-891, 542]]}, "center": {"162-258, T": [-876, 523]}}, +{"id": 5081, "name": "VTubers Place - Baltic States Alliance Commemoration Medal", "description": "A medal commemorating the Alliance between VTubers Place and the Baltic States. On the right side of the brooch, it shows the flags of the three Baltic States, Estonia, Latvia, and Lithuania. On the left side, it shows the 3 of the biggest VTuber Agencies in the World: VShojo, Hololive, and Nijisanji. The ribbon shows the NATO compass, as shown in the design of the art of the Baltic States and the fact that they are a member of NATO.\n\nIn the early days of the event, they allied with each other to help each other out against the attacks of the Turkish Flag, The Azerbaijan Flag, and The Chilean Flag. When VTubers Place relocated, the alliance still continued until the end with assisting each other in defending and retaking lost territory in the canvas.", "links": {"subreddit": ["BalticStates", "Hololive", "Nijisanji", "VShojo"], "discord": ["vtubersplace"]}, "path": {"206-258, T": [[1271, -830], [1291, -830], [1291, -818], [1290, -818], [1289, -817], [1288, -817], [1287, -816], [1287, -815], [1286, -815], [1285, -815], [1285, -814], [1284, -813], [1284, -812], [1285, -812], [1286, -811], [1287, -810], [1289, -810], [1290, -809], [1290, -806], [1291, -805], [1291, -797], [1290, -796], [1290, -795], [1289, -794], [1289, -793], [1288, -792], [1287, -792], [1286, -791], [1276, -791], [1275, -792], [1274, -792], [1273, -793], [1273, -794], [1272, -795], [1272, -796], [1271, -797], [1271, -805], [1272, -806], [1272, -808], [1273, -809], [1273, -810], [1276, -810], [1276, -811], [1277, -812], [1278, -813], [1277, -814], [1276, -815], [1275, -815], [1275, -816], [1274, -817], [1273, -817], [1272, -818], [1271, -819]]}, "center": {"206-258, T": [1281, -802]}}, +{"id": 5082, "name": "nicolinopai", "description": "Representación de la comunidad del streamer y twittero, nicolinopai, en honor a su skin en Minecraft. Símbolo de que a pesar de todo lo malo que uno pueda llegar a vivir, siempre se puede salir adelante siendo mejor <333", "links": {"website": ["https://www.twitch.tv/nicolinopai", "https://twitter.com/nicolinopai"], "discord": ["KqYdgrkVzZ"]}, "path": {"250-258, T": [[395, -920], [395, -927], [402, -927], [402, -920]]}, "center": {"250-258, T": [399, -923]}}, {"id": 5083, "name": "Aniki", "description": "Aniki, the official mascot of JuanSGuarnizo's soccer team \"Aniquiladores FC\", which was runner-up in the Kings League first Split.", "links": {"website": ["https://twitter.com/AniquiladoresFC"], "subreddit": ["Juaniquilador"], "discord": ["f9TeyK4MnT"]}, "path": {"121-186": [[-324, -531], [-326, -533], [-326, -514], [-326, -513], [-308, -513], [-308, -534], [-326, -534]]}, "center": {"121-186": [-317, -523]}}, -{"id": 5084, "name": "Cosmere Fantasy Series Logo", "description": "A Cosmere logo from the Brandon Sanderson Fantasy series. Made by Hispanic and English Cosmere Twitter community.", "links": {"subreddit": ["cosmere_es"], "discord": ["ZqhybXYHn7"]}, "path": {"250-258": [[456, 807], [454, 804], [454, 799], [456, 795], [459, 793], [462, 789], [467, 786], [471, 784], [475, 785], [480, 787], [484, 789], [487, 794], [488, 798], [489, 802], [489, 806], [487, 809], [483, 814], [480, 817], [476, 819], [472, 820], [468, 820], [463, 817], [459, 813], [456, 811], [454, 807], [453, 805]]}, "center": {"250-258": [472, 802]}}, +{"id": 5084, "name": "Cosmere Fantasy Series Logo", "description": "A Cosmere logo from the Brandon Sanderson Fantasy series. Made by Hispanic and English Cosmere Twitter community.", "links": {"subreddit": ["cosmere_es"], "discord": ["ZqhybXYHn7"]}, "path": {"250-258, T": [[456, 807], [454, 804], [454, 799], [456, 795], [459, 793], [462, 789], [467, 786], [471, 784], [475, 785], [480, 787], [484, 789], [487, 794], [488, 798], [489, 802], [489, 806], [487, 809], [483, 814], [480, 817], [476, 819], [472, 820], [468, 820], [463, 817], [459, 813], [456, 811], [454, 807], [453, 805]]}, "center": {"250-258, T": [472, 802]}}, {"id": 5085, "name": "Nintendo Switch Collage", "description": "A collaborative effort from several communities, this Switch console features Kirby holding a Romanian flag, a red Pikmin, a bell bag from Animal Crossing, helmets from both Metroid and Doom, a Triforce from Zelda, a green pipe from Mario, a Pokéball from Pokémon, a Monado from Xenoblade Chronicles, and a duck from Blazing Beaks.", "links": {"subreddit": ["NintendoSwitch", "MyNintendo"]}, "path": {"247": [[-1442, 385], [-1392, 385], [-1392, 406], [-1442, 406]]}, "center": {"247": [-1417, 396]}}, -{"id": 5086, "name": "Mini ZilverK", "description": "During the Pixel Wars, Mexican VTuber ZilverK insisted on attacking Hispanic VTuber agency OWOZU, since he generally dislikes talent agencies and stated that VTubers don't need corporations to push themselves to the top and that they can win the hearts of the audience regardless, as independent streamers.\n\nHowever, the Red Rat decided to not attack the canvas and instead negotiate with one of its talents, Karma.\n\nZilverK offered that he wouldn't get rid of the design in exchange for a miniature version of him inside the canvas and three lap dances from her in VRChat, for the Arkeanos (a group of ARK streamers in which the Red Rat takes part) to enjoy.\n\nKarma, on the other hand, counteroffered saying that he would have to find her a spot to make a canvas she planned to do and to form an alliance with it since her design got attacked on the first attempts.\n\nBoth sides agreed upon and thus, the designs were placed with success before the whiteout.", "links": {"website": ["https://owozu.com", "https://youtube.com/@owozu", "https://www.twitch.tv/zilverk", "https://youtube.com/@ZiilverK", "https://www.twitch.tv/karmavt_", "https://youtube.com/@KarmaVT_"], "subreddit": ["Owozu_", "ZilverK"], "discord": ["qPKGUajnEP", "ZilverK"]}, "path": {"216-258": [[-16, -784], [-26, -784], [-26, -794], [-16, -794]]}, "center": {"216-258": [-21, -789]}}, -{"id": 5087, "name": "JuanSGuarnizo Minecraft Skin", "description": "The minecraft skin of the head of the streamer JuanSGuarnizo.", "links": {"website": ["https://www.twitch.tv/juansguarnizo", "https://www.youtube.com/juansguarnizo", "https://twitter.com/juanSGuarnizo"]}, "path": {"85-258": [[780, 414], [788, 414], [788, 424], [780, 424]]}, "center": {"85-258": [784, 419]}}, -{"id": 5088, "name": "Septicwarf", "description": "A collaboration effort between the communities of lets play YouTubers Jacksepticeye and Markiplier. Made on the Irish flag with the permission from Ireland, Jacksepticeye is a gaming YouTuber and is the biggest YouTube channel from Ireland. Featuring his logo and mascot 'Septic Sam', a green floating eyeball with a tail, and Markipliers signature 'pink warfstache'.", "links": {"website": ["https://m.youtube.com/channel/UCYzPXprvl5Y-Sf0g4vX-m6g", "https://m.youtube.com/channel/UC7_YxT-KID8kRbqZo7MyscQ"], "subreddit": ["jacksepticeye", "markiplier"], "discord": ["EaJ9zQ3s"]}, "path": {"112-258": [[332, -119], [331, -120], [330, -121], [328, -123], [327, -123], [327, -129], [325, -131], [322, -131], [319, -128], [319, -126], [317, -126], [314, -124], [314, -120], [316, -118], [318, -118], [318, -114], [315, -114], [315, -109], [319, -109], [322, -105], [327, -109], [329, -109], [332, -105], [337, -109], [336, -112], [332, -114]]}, "center": {"112-258": [325, -116]}}, +{"id": 5086, "name": "Mini ZilverK", "description": "During the Pixel Wars, Mexican VTuber ZilverK insisted on attacking Hispanic VTuber agency OWOZU, since he generally dislikes talent agencies and stated that VTubers don't need corporations to push themselves to the top and that they can win the hearts of the audience regardless, as independent streamers.\n\nHowever, the Red Rat decided to not attack the canvas and instead negotiate with one of its talents, Karma.\n\nZilverK offered that he wouldn't get rid of the design in exchange for a miniature version of him inside the canvas and three lap dances from her in VRChat, for the Arkeanos (a group of ARK streamers in which the Red Rat takes part) to enjoy.\n\nKarma, on the other hand, counteroffered saying that he would have to find her a spot to make a canvas she planned to do and to form an alliance with it since her design got attacked on the first attempts.\n\nBoth sides agreed upon and thus, the designs were placed with success before the whiteout.", "links": {"website": ["https://owozu.com", "https://youtube.com/@owozu", "https://www.twitch.tv/zilverk", "https://youtube.com/@ZiilverK", "https://www.twitch.tv/karmavt_", "https://youtube.com/@KarmaVT_"], "subreddit": ["Owozu_", "ZilverK"], "discord": ["qPKGUajnEP", "ZilverK"]}, "path": {"216-258, T": [[-16, -784], [-26, -784], [-26, -794], [-16, -794]]}, "center": {"216-258, T": [-21, -789]}}, +{"id": 5087, "name": "JuanSGuarnizo Minecraft Skin", "description": "The minecraft skin of the head of the streamer JuanSGuarnizo.", "links": {"website": ["https://www.twitch.tv/juansguarnizo", "https://www.youtube.com/juansguarnizo", "https://twitter.com/juanSGuarnizo"]}, "path": {"85-258, T": [[780, 414], [788, 414], [788, 424], [780, 424]]}, "center": {"85-258, T": [784, 419]}}, +{"id": 5088, "name": "Septicwarf", "description": "A collaboration effort between the communities of lets play YouTubers Jacksepticeye and Markiplier. Made on the Irish flag with the permission from Ireland, Jacksepticeye is a gaming YouTuber and is the biggest YouTube channel from Ireland. Featuring his logo and mascot 'Septic Sam', a green floating eyeball with a tail, and Markipliers signature 'pink warfstache'.", "links": {"website": ["https://m.youtube.com/channel/UCYzPXprvl5Y-Sf0g4vX-m6g", "https://m.youtube.com/channel/UC7_YxT-KID8kRbqZo7MyscQ"], "subreddit": ["jacksepticeye", "markiplier"], "discord": ["EaJ9zQ3s"]}, "path": {"112-258, T": [[332, -119], [331, -120], [330, -121], [328, -123], [327, -123], [327, -129], [325, -131], [322, -131], [319, -128], [319, -126], [317, -126], [314, -124], [314, -120], [316, -118], [318, -118], [318, -114], [315, -114], [315, -109], [319, -109], [322, -105], [327, -109], [329, -109], [332, -105], [337, -109], [336, -112], [332, -114]]}, "center": {"112-258, T": [325, -116]}}, {"id": 5089, "name": "Indian Flag", "description": "India is a country located in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/India"], "subreddit": ["india"]}, "path": {"132-142": [[-982, -103], [-982, -109], [-972, -109], [-972, -103]]}, "center": {"132-142": [-977, -106]}}, -{"id": 5090, "name": "ElSenpayusky94.", "description": "Senpayusky94/SuperiorMrDoc94 es un YouTuber e Influencer pequeño de Instagram. Jugador experimentado de Minecraft & Five Nights at Freddy's.", "links": {"website": ["https://www.youtube.com/@ElSenpayusky94.", "https://www.instagram.com/senpayusky94/"]}, "path": {"223-226": [[1490, -604], [1499, -604], [1499, -595], [1490, -595]], "250-258": [[1464, -611], [1473, -611], [1473, -602], [1464, -602]]}, "center": {"223-226": [1495, -599], "250-258": [1469, -606]}}, +{"id": 5090, "name": "ElSenpayusky94.", "description": "Senpayusky94/SuperiorMrDoc94 es un YouTuber e Influencer pequeño de Instagram. Jugador experimentado de Minecraft & Five Nights at Freddy's.", "links": {"website": ["https://www.youtube.com/@ElSenpayusky94.", "https://www.instagram.com/senpayusky94/"]}, "path": {"223-226": [[1490, -604], [1499, -604], [1499, -595], [1490, -595]], "250-258, T": [[1464, -611], [1473, -611], [1473, -602], [1464, -602]]}, "center": {"223-226": [1495, -599], "250-258, T": [1469, -606]}}, {"id": 5091, "name": "Intersex Pride Heart", "description": "A heart displaying the intersex pride flag.\n\nPeople who are intersex have genitals, chromosomes, or reproductive organs that don't fit into a male/female sex binary.\n\nSome intersex people also identify as trans while others do not but the communites are known to overlap.", "links": {"website": ["https://my.clevelandclinic.org/health/articles/16324-intersex#:~:text=People%20who%20are%20intersex%20have,later%20in%20adulthood%20or%20never."], "subreddit": ["intersex"]}, "path": {"251": [[147, 50], [147, 51], [146, 50], [145, 49], [143, 47], [143, 45], [144, 43], [146, 42], [147, 43], [148, 42], [150, 43], [151, 44], [151, 46], [150, 48], [148, 50]]}, "center": {"251": [147, 46]}}, -{"id": 5092, "name": "Flag of Latvia", "description": "The Geoguessr community created the flag of Latvia in the extra space below the globe.", "links": {"subreddit": ["geoguessr"], "discord": ["geoguessr"]}, "path": {"250-258": [[-37, 965], [-31, 965], [-31, 971], [-37, 971], [-37, 966]]}, "center": {"250-258": [-34, 968]}}, +{"id": 5092, "name": "Flag of Latvia", "description": "The Geoguessr community created the flag of Latvia in the extra space below the globe.", "links": {"subreddit": ["geoguessr"], "discord": ["geoguessr"]}, "path": {"250-258, T": [[-37, 965], [-31, 965], [-31, 971], [-37, 971], [-37, 966]]}, "center": {"250-258, T": [-34, 968]}}, {"id": 5093, "name": "Scottish Flag", "description": "Scotland is a country that is part of the United Kingdom. Covering the northern third of the island of Great Britain, Scotland is the second-largest country in the United Kingdom, and accounted for 8.3% of the population in 2012.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland"], "subreddit": ["scotland"]}, "path": {"129-135": [[-980, -110], [-980, -115], [-973, -115], [-973, -110]]}, "center": {"129-135": [-976, -112]}}, -{"id": 5094, "name": "Lamorn", "description": "Lamorn is an electronic music producer.", "links": {"website": ["https://www.lamorn.world/"], "discord": ["8vRwnhsrxZ"]}, "path": {"250-258": [[1208, -8], [1212, -8], [1212, 8], [1208, 8]]}, "center": {"250-258": [1210, 0]}}, -{"id": 5095, "name": "Western Rainbow Road", "description": "Originally a track from Mario Kart, Rainbow Road was recreated in r/place in 2017, 2022 and 2023, consisting of diagonal bands of each of the rainbow's colours.\nThis part was created after the 5th expansion opened up new space.", "links": {"subreddit": ["ainbowroad"]}, "path": {"220-258": [[-1397, 473], [-1397, 479], [-1394, 476], [-1384, 486], [-1388, 490], [-1381, 490], [-1380, 491], [-1377, 491], [-1376, 492], [-1375, 493], [-1375, 496], [-1374, 497], [-1374, 499], [-1372, 499], [-1370, 501], [-1370, 504], [-1371, 505], [-1371, 506], [-1356, 521], [-1355, 521], [-1354, 522], [-1354, 520], [-1352, 520], [-1351, 519], [-1349, 519], [-1348, 520], [-1346, 522], [-1346, 524], [-1349, 527], [-1350, 527], [-1350, 534], [-1354, 538], [-1357, 538], [-1355, 540], [-1354, 540], [-1353, 541], [-1353, 537], [-1349, 533], [-1349, 532], [-1346, 529], [-1342, 529], [-1339, 532], [-1339, 539], [-1338, 539], [-1339, 539], [-1339, 535], [-1338, 535], [-1339, 535], [-1339, 531], [-1336, 528], [-1333, 528], [-1330, 531], [-1330, 534], [-1331, 535], [-1329, 537], [-1330, 538], [-1330, 539], [-1329, 540], [-1329, 542], [-1329, 540], [-1328, 539], [-1325, 539], [-1325, 540], [-1325, 539], [-1324, 539], [-1325, 538], [-1327, 538], [-1328, 537], [-1328, 534], [-1329, 533], [-1329, 528], [-1345, 528], [-1345, 515], [-1340, 515], [-1338, 517], [-1332, 517], [-1328, 521], [-1328, 525], [-1326, 523], [-1325, 523], [-1324, 522], [-1322, 522], [-1321, 521], [-1307, 521], [-1307, 526], [-1307, 532], [-1302, 532], [-1301, 536], [-1304, 540], [-1306, 540], [-1307, 538], [-1309, 538], [-1310, 537], [-1311, 537], [-1311, 538], [-1309, 540], [-1308, 540], [-1307, 541], [-1307, 542], [-1306, 542], [-1306, 540], [-1304, 540], [-1302, 536], [-1302, 532], [-1303, 532], [-1306, 529], [-1307, 528], [-1307, 524], [-1306, 524], [-1306, 514], [-1301, 514], [-1299, 516], [-1297, 514], [-1294, 514], [-1294, 515], [-1294, 517], [-1295, 518], [-1295, 519], [-1294, 520], [-1294, 521], [-1255, 521], [-1255, 537], [-1259, 537], [-1256, 537], [-1256, 538], [-1256, 537], [-1255, 537], [-1255, 536], [-1253, 536], [-1253, 539], [-1254, 539], [-1254, 540], [-1253, 540], [-1253, 544], [-1253, 543], [-1251, 543], [-1253, 543], [-1252, 544], [-1255, 550], [-1262, 550], [-1262, 548], [-1264, 548], [-1264, 546], [-1267, 549], [-1267, 550], [-1265, 548], [-1264, 549], [-1264, 552], [-1260, 552], [-1258, 555], [-1257, 556], [-1256, 556], [-1254, 558], [-1253, 558], [-1251, 560], [-1263, 561], [-1265, 559], [-1266, 560], [-1265, 561], [-1265, 567], [-1263, 569], [-1265, 571], [-1265, 572], [-1262, 572], [-1261, 571], [-1261, 569], [-1256, 566], [-1259, 567], [-1253, 564], [-1254, 562], [-1251, 559], [-1251, 556], [-1255, 553], [-1254, 551], [-1251, 543], [-1246, 543], [-1242, 546], [-1237, 543], [-1234, 543], [-1234, 545], [-1232, 542], [-1228, 538], [-1231, 535], [-1230, 532], [-1231, 531], [-1233, 532], [-1233, 543], [-1253, 543], [-1253, 522], [-1254, 519], [-1256, 520], [-1260, 517], [-1263, 519], [-1258, 511], [-1254, 511], [-1251, 504], [-1256, 504], [-1257, 511], [-1262, 521], [-1276, 518], [-1282, 510], [-1285, 512], [-1290, 508], [-1289, 505], [-1283, 504], [-1297, 504], [-1306, 504], [-1312, 500], [-1347, 499], [-1417, 419], [-1441, 392], [-1441, 431], [-1421, 432], [-1421, 450]]}, "center": {"220-258": [-1409, 446]}}, -{"id": 5096, "name": "Flag of Panama", "description": "Flag of Panama with the name and the country dialing code, which is 507 and not 607", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Panama", "https://www.tourismpanama.com/"], "subreddit": ["panama"], "discord": ["panama-959863790965489754"]}, "path": {"162-258": [[-891, 457], [-862, 457], [-862, 420], [-890, 419]]}, "center": {"162-258": [-876, 438]}}, -{"id": 5097, "name": "ACNH - Tom Nook", "description": "Tom Nook holding a gun with a little orange/purple heart as a gift for the German Animal Crossing YouTuber \"Minimoli\" who was the initiator for this project.", "links": {"website": ["https://youtube.com/@Minimoli"], "subreddit": ["ac_newhorizons"], "discord": ["acnh"]}, "path": {"158-258": [[327, -970], [327, -995], [351, -995], [351, -988], [361, -988], [361, -977], [362, -977], [362, -971], [359, -971], [350, -970], [352, -966], [352, -962], [340, -962], [340, -970], [352, -991], [353, -990], [354, -991], [355, -989], [356, -989], [357, -988], [361, -988], [362, -971], [352, -971], [352, -962], [340, -962], [340, -970], [354, -990], [356, -990], [356, -989], [357, -988], [362, -988], [362, -971], [355, -973], [352, -970], [352, -962], [340, -963], [340, -970]]}, "center": {"158-258": [337, -985]}}, -{"id": 5098, "name": "Ecuadorean Flag", "description": "The Ecuadorean Flag, with many hosted artworks.", "links": {"subreddit": ["ecuador"]}, "path": {"189-258": [[-535, -912], [-535, -873], [-286, -873], [-286, -912]]}, "center": {"189-258": [-410, -892]}}, -{"id": 5099, "name": "The Mandela Catalogue", "description": "The Mandela Catalogue is an American analog horror web series created by American YouTuber Alex Kister in 2021. It is set in the fictional Mandela County, Wisconsin, which is terrorized by \"alternates\", doppelgängers who coerce their victims to kill themselves before assuming their identity. The series became popular online through analysis and reaction videos from internet users.", "links": {"website": ["https://www.youtube.com/@AlexxKister"], "subreddit": ["MandelaCatalogue"]}, "path": {"250-258": [[1250, -995], [1265, -995], [1265, -988], [1250, -988]]}, "center": {"250-258": [1258, -991]}}, -{"id": 5100, "name": "RoboLancers, Team 321", "description": "The RoboLancers (FRC 321) are the winners of the 2023 Impact Award at the FIRST Championship in Houston and the newest member of the FIRST Hall of Fame. The Impact Award winner represents the FIRST community and the impact that is made worldwide by FIRST teams.", "links": {"website": ["https://robolancers.com/"], "subreddit": ["frc"]}, "path": {"206-258": [[-1173, 135], [-1161, 135], [-1161, 141], [-1173, 141]]}, "center": {"206-258": [-1167, 138]}}, -{"id": 5101, "name": "Cristo de la Concordia", "description": "Cristo de la Concordia (Christ of Peace) is a statue of Jesus Christ located atop San Pedro Hill, to the east of Cochabamba, Bolivia. It is accessible by cable car, or by climbing 2,000 steps. It's the second largest statue of Jesus Christ in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Cristo_de_la_Concordia"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[790, -842], [809, -842], [809, -845], [811, -845], [811, -856], [822, -856], [822, -846], [825, -846], [825, -843], [846, -843], [847, -834], [827, -834], [827, -805], [834, -805], [834, -797], [798, -797], [798, -805], [807, -805], [808, -832], [790, -832]]}, "center": {"250-258": [817, -836]}}, -{"id": 5102, "name": "No Mana", "description": "No Mana is a Californian electronic music producer, DJ, and musician. He mainly produces progressive house music and other genres of electronic music.\nThis logo is based on his EP \"14UP\".", "links": {"website": ["https://ihavenomanas.com/"], "subreddit": ["nomana"]}, "path": {"250-258": [[1212, -8], [1231, -8], [1231, -2], [1229, 0], [1228, 4], [1224, 4], [1212, -2]]}, "center": {"250-258": [1224, -2]}}, -{"id": 5103, "name": "Al-Aqsa Mosque", "description": "A congregational mosque in the Old City of Jerusalem under Israeli occupation. The mosque has served as a center and important symbol of protest against Israeli occupation.", "links": {"subreddit": ["palestine"]}, "path": {"204-258": [[46, -807], [46, -812], [41, -812], [40, -815], [36, -817], [32, -816], [30, -813], [30, -812], [25, -812], [25, -806], [46, -806]]}, "center": {"204-258": [36, -811]}}, -{"id": 5104, "name": "TheDaarick28 minecraft skin", "description": "He is an entertaining streamer and well known in the Twitch community, Peru. Despite being a complete \"mamonsito\" and stuck on YouTube, he knows how to entertain and retain his audience.", "links": {"website": ["https://www.twitch.tv/thedaarick28"]}, "path": {"250-258": [[-655, -791], [-649, -791], [-649, -786], [-655, -786]]}, "center": {"250-258": [-652, -788]}}, -{"id": 5105, "name": "Chao (Sonic The Hedgehog)", "description": "Chao are a fictional species that appear in the Sonic the Hedgehog Franchise. First introduced in the 1998 video game Sonic Adventure they took the form of a digital pet that the player could interact with. In later games they have played parts in the series story and gameplay.\n\nThis artwork in particular shows pixel art of a neutral Chao.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["tails"]}, "path": {"214-258": [[-1111, 389], [-1102, 389], [-1102, 383], [-1103, 383], [-1104, 383], [-1104, 381], [-1105, 381], [-1105, 377], [-1107, 377], [-1108, 377], [-1108, 381], [-1109, 381], [-1109, 382], [-1110, 382], [-1111, 382]]}, "center": {"214-258": [-1107, 385]}}, -{"id": 5106, "name": "Tacita de café", "description": "A coffee cup with a typical design of Costa Rica.", "links": {}, "path": {"250-258": [[-1120, -348], [-1121, -361], [-1109, -366], [-1110, -359], [-1106, -350], [-1112, -348]]}, "center": {"250-258": [-1115, -355]}}, +{"id": 5094, "name": "Lamorn", "description": "Lamorn is an electronic music producer.", "links": {"website": ["https://www.lamorn.world/"], "discord": ["8vRwnhsrxZ"]}, "path": {"250-258, T": [[1208, -8], [1212, -8], [1212, 8], [1208, 8]]}, "center": {"250-258, T": [1210, 0]}}, +{"id": 5095, "name": "Western Rainbow Road", "description": "Originally a track from Mario Kart, Rainbow Road was recreated in r/place in 2017, 2022 and 2023, consisting of diagonal bands of each of the rainbow's colours.\nThis part was created after the 5th expansion opened up new space.", "links": {"subreddit": ["ainbowroad"]}, "path": {"220-258, T": [[-1397, 473], [-1397, 479], [-1394, 476], [-1384, 486], [-1388, 490], [-1381, 490], [-1380, 491], [-1377, 491], [-1376, 492], [-1375, 493], [-1375, 496], [-1374, 497], [-1374, 499], [-1372, 499], [-1370, 501], [-1370, 504], [-1371, 505], [-1371, 506], [-1356, 521], [-1355, 521], [-1354, 522], [-1354, 520], [-1352, 520], [-1351, 519], [-1349, 519], [-1348, 520], [-1346, 522], [-1346, 524], [-1349, 527], [-1350, 527], [-1350, 534], [-1354, 538], [-1357, 538], [-1355, 540], [-1354, 540], [-1353, 541], [-1353, 537], [-1349, 533], [-1349, 532], [-1346, 529], [-1342, 529], [-1339, 532], [-1339, 539], [-1338, 539], [-1339, 539], [-1339, 535], [-1338, 535], [-1339, 535], [-1339, 531], [-1336, 528], [-1333, 528], [-1330, 531], [-1330, 534], [-1331, 535], [-1329, 537], [-1330, 538], [-1330, 539], [-1329, 540], [-1329, 542], [-1329, 540], [-1328, 539], [-1325, 539], [-1325, 540], [-1325, 539], [-1324, 539], [-1325, 538], [-1327, 538], [-1328, 537], [-1328, 534], [-1329, 533], [-1329, 528], [-1345, 528], [-1345, 515], [-1340, 515], [-1338, 517], [-1332, 517], [-1328, 521], [-1328, 525], [-1326, 523], [-1325, 523], [-1324, 522], [-1322, 522], [-1321, 521], [-1307, 521], [-1307, 526], [-1307, 532], [-1302, 532], [-1301, 536], [-1304, 540], [-1306, 540], [-1307, 538], [-1309, 538], [-1310, 537], [-1311, 537], [-1311, 538], [-1309, 540], [-1308, 540], [-1307, 541], [-1307, 542], [-1306, 542], [-1306, 540], [-1304, 540], [-1302, 536], [-1302, 532], [-1303, 532], [-1306, 529], [-1307, 528], [-1307, 524], [-1306, 524], [-1306, 514], [-1301, 514], [-1299, 516], [-1297, 514], [-1294, 514], [-1294, 515], [-1294, 517], [-1295, 518], [-1295, 519], [-1294, 520], [-1294, 521], [-1255, 521], [-1255, 537], [-1259, 537], [-1256, 537], [-1256, 538], [-1256, 537], [-1255, 537], [-1255, 536], [-1253, 536], [-1253, 539], [-1254, 539], [-1254, 540], [-1253, 540], [-1253, 544], [-1253, 543], [-1251, 543], [-1253, 543], [-1252, 544], [-1255, 550], [-1262, 550], [-1262, 548], [-1264, 548], [-1264, 546], [-1267, 549], [-1267, 550], [-1265, 548], [-1264, 549], [-1264, 552], [-1260, 552], [-1258, 555], [-1257, 556], [-1256, 556], [-1254, 558], [-1253, 558], [-1251, 560], [-1263, 561], [-1265, 559], [-1266, 560], [-1265, 561], [-1265, 567], [-1263, 569], [-1265, 571], [-1265, 572], [-1262, 572], [-1261, 571], [-1261, 569], [-1256, 566], [-1259, 567], [-1253, 564], [-1254, 562], [-1251, 559], [-1251, 556], [-1255, 553], [-1254, 551], [-1251, 543], [-1246, 543], [-1242, 546], [-1237, 543], [-1234, 543], [-1234, 545], [-1232, 542], [-1228, 538], [-1231, 535], [-1230, 532], [-1231, 531], [-1233, 532], [-1233, 543], [-1253, 543], [-1253, 522], [-1254, 519], [-1256, 520], [-1260, 517], [-1263, 519], [-1258, 511], [-1254, 511], [-1251, 504], [-1256, 504], [-1257, 511], [-1262, 521], [-1276, 518], [-1282, 510], [-1285, 512], [-1290, 508], [-1289, 505], [-1283, 504], [-1297, 504], [-1306, 504], [-1312, 500], [-1347, 499], [-1417, 419], [-1441, 392], [-1441, 431], [-1421, 432], [-1421, 450]]}, "center": {"220-258, T": [-1409, 446]}}, +{"id": 5096, "name": "Flag of Panama", "description": "Flag of Panama with the name and the country dialing code, which is 507 and not 607", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Panama", "https://www.tourismpanama.com/"], "subreddit": ["panama"], "discord": ["panama-959863790965489754"]}, "path": {"162-258, T": [[-891, 457], [-862, 457], [-862, 420], [-890, 419]]}, "center": {"162-258, T": [-876, 438]}}, +{"id": 5097, "name": "ACNH - Tom Nook", "description": "Tom Nook holding a gun with a little orange/purple heart as a gift for the German Animal Crossing YouTuber \"Minimoli\" who was the initiator for this project.", "links": {"website": ["https://youtube.com/@Minimoli"], "subreddit": ["ac_newhorizons"], "discord": ["acnh"]}, "path": {"158-258, T": [[327, -970], [327, -995], [351, -995], [351, -988], [361, -988], [361, -977], [362, -977], [362, -971], [359, -971], [350, -970], [352, -966], [352, -962], [340, -962], [340, -970], [352, -991], [353, -990], [354, -991], [355, -989], [356, -989], [357, -988], [361, -988], [362, -971], [352, -971], [352, -962], [340, -962], [340, -970], [354, -990], [356, -990], [356, -989], [357, -988], [362, -988], [362, -971], [355, -973], [352, -970], [352, -962], [340, -963], [340, -970]]}, "center": {"158-258, T": [337, -985]}}, +{"id": 5098, "name": "Ecuadorean Flag", "description": "The Ecuadorean Flag, with many hosted artworks.", "links": {"subreddit": ["ecuador"]}, "path": {"189-258, T": [[-535, -912], [-535, -873], [-286, -873], [-286, -912]]}, "center": {"189-258, T": [-410, -892]}}, +{"id": 5099, "name": "The Mandela Catalogue", "description": "The Mandela Catalogue is an American analog horror web series created by American YouTuber Alex Kister in 2021. It is set in the fictional Mandela County, Wisconsin, which is terrorized by \"alternates\", doppelgängers who coerce their victims to kill themselves before assuming their identity. The series became popular online through analysis and reaction videos from internet users.", "links": {"website": ["https://www.youtube.com/@AlexxKister"], "subreddit": ["MandelaCatalogue"]}, "path": {"250-258, T": [[1250, -995], [1265, -995], [1265, -988], [1250, -988]]}, "center": {"250-258, T": [1258, -991]}}, +{"id": 5100, "name": "RoboLancers, Team 321", "description": "The RoboLancers (FRC 321) are the winners of the 2023 Impact Award at the FIRST Championship in Houston and the newest member of the FIRST Hall of Fame. The Impact Award winner represents the FIRST community and the impact that is made worldwide by FIRST teams.", "links": {"website": ["https://robolancers.com/"], "subreddit": ["frc"]}, "path": {"206-258, T": [[-1173, 135], [-1161, 135], [-1161, 141], [-1173, 141]]}, "center": {"206-258, T": [-1167, 138]}}, +{"id": 5101, "name": "Cristo de la Concordia", "description": "Cristo de la Concordia (Christ of Peace) is a statue of Jesus Christ located atop San Pedro Hill, to the east of Cochabamba, Bolivia. It is accessible by cable car, or by climbing 2,000 steps. It's the second largest statue of Jesus Christ in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Cristo_de_la_Concordia"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[790, -842], [809, -842], [809, -845], [811, -845], [811, -856], [822, -856], [822, -846], [825, -846], [825, -843], [846, -843], [847, -834], [827, -834], [827, -805], [834, -805], [834, -797], [798, -797], [798, -805], [807, -805], [808, -832], [790, -832]]}, "center": {"250-258, T": [817, -836]}}, +{"id": 5102, "name": "No Mana", "description": "No Mana is a Californian electronic music producer, DJ, and musician. He mainly produces progressive house music and other genres of electronic music.\nThis logo is based on his EP \"14UP\".", "links": {"website": ["https://ihavenomanas.com/"], "subreddit": ["nomana"]}, "path": {"250-258, T": [[1212, -8], [1231, -8], [1231, -2], [1229, 0], [1228, 4], [1224, 4], [1212, -2]]}, "center": {"250-258, T": [1224, -2]}}, +{"id": 5103, "name": "Al-Aqsa Mosque", "description": "A congregational mosque in the Old City of Jerusalem under Israeli occupation. The mosque has served as a center and important symbol of protest against Israeli occupation.", "links": {"subreddit": ["palestine"]}, "path": {"204-258, T": [[46, -807], [46, -812], [41, -812], [40, -815], [36, -817], [32, -816], [30, -813], [30, -812], [25, -812], [25, -806], [46, -806]]}, "center": {"204-258, T": [36, -811]}}, +{"id": 5104, "name": "TheDaarick28 minecraft skin", "description": "He is an entertaining streamer and well known in the Twitch community, Peru. Despite being a complete \"mamonsito\" and stuck on YouTube, he knows how to entertain and retain his audience.", "links": {"website": ["https://www.twitch.tv/thedaarick28"]}, "path": {"250-258, T": [[-655, -791], [-649, -791], [-649, -786], [-655, -786]]}, "center": {"250-258, T": [-652, -788]}}, +{"id": 5105, "name": "Chao (Sonic The Hedgehog)", "description": "Chao are a fictional species that appear in the Sonic the Hedgehog Franchise. First introduced in the 1998 video game Sonic Adventure they took the form of a digital pet that the player could interact with. In later games they have played parts in the series story and gameplay.\n\nThis artwork in particular shows pixel art of a neutral Chao.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["tails"]}, "path": {"214-258, T": [[-1111, 389], [-1102, 389], [-1102, 383], [-1103, 383], [-1104, 383], [-1104, 381], [-1105, 381], [-1105, 377], [-1107, 377], [-1108, 377], [-1108, 381], [-1109, 381], [-1109, 382], [-1110, 382], [-1111, 382]]}, "center": {"214-258, T": [-1107, 385]}}, +{"id": 5106, "name": "Tacita de café", "description": "A coffee cup with a typical design of Costa Rica.", "links": {}, "path": {"250-258, T": [[-1120, -348], [-1121, -361], [-1109, -366], [-1110, -359], [-1106, -350], [-1112, -348]]}, "center": {"250-258, T": [-1115, -355]}}, {"id": 5107, "name": "Flag of Sweden", "description": "Sweden is a Scandinavian nation with thousands of coastal islands and inland lakes, along with vast boreal forests and glaciated mountains.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden"], "subreddit": ["Sweden"]}, "path": {"132-134": [[-989, -110], [-989, -115], [-982, -115], [-982, -110]]}, "center": {"132-134": [-985, -112]}}, -{"id": 5108, "name": "ATTLAS", "description": "Jeff Hartford, aka ATTLAS, is a Canadian DJ, electronic music producer, and musician.", "links": {"website": ["https://soundcloud.com/ATTLAS"], "subreddit": ["attlas"]}, "path": {"250-258": [[1230, -9], [1230, -12], [1240, -12], [1240, -8], [1239, -8], [1239, -5], [1231, -5], [1231, -8]]}, "center": {"250-258": [1235, -8]}}, -{"id": 5109, "name": "Geoguessr Russia", "description": "The Geoguessr Russia community mainly helped create and maintain the Geoguessr spot in r/place. They added GRU for Geoguessr Russia.", "links": {"website": ["https://www.geoguessr.com/"], "subreddit": ["geoguessr"], "discord": ["vx64jhDA"]}, "path": {"250-258": [[-23, 938], [-23, 943], [-13, 943], [-13, 937], [-23, 937]]}, "center": {"250-258": [-18, 940]}}, -{"id": 5110, "name": "Nijisanji EN Waves 1-5", "description": "(Tue, 25 Jul 2023 18:00:06 GMT)\nThese groups of pixels represent the image colors of the first few waves of the VTuber group Nijisanji EN.\n\nFrom top to bottom, the groups are: Lazulight, Obsydia, Ethyria, Luxiem.\n\nThe 5th wave, Noctyx, is also represented under the Nijisanji logo, to the left of the mascots.", "links": {"website": ["https://www.nijisanji.jp/", "https://www.youtube.com/@nijisanji_en/"], "subreddit": ["Nijisanji"]}, "path": {"250-258": [[-669, -285], [-664, -285], [-665, -282], [-666, -280], [-667, -277], [-667, -272], [-669, -272]]}, "center": {"250-258": [-667, -283]}}, -{"id": 5111, "name": "Kantuta Flower", "description": "The kantuta is one of Bolivia's national flowers, or floral emblems (the other is the patuju). It is sometimes called the Sacred Flower of the Incas, and this is the legend told by the Quechua, descendants of the Incas. The name comes from the word \"qantuta\" in the Quechua language. It's scientific name is Cantua buxifolia.", "links": {"website": ["https://www.boliviabella.com/kantuta.html"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[167, 750], [173, 750], [173, 751], [176, 751], [176, 752], [177, 752], [177, 753], [178, 753], [178, 754], [184, 761], [184, 762], [180, 766], [176, 766], [168, 774], [168, 778], [164, 778], [164, 780], [162, 780], [162, 782], [157, 782], [157, 786], [151, 786], [151, 781], [154, 778], [153, 774], [167, 757]]}, "center": {"250-258": [173, 760]}}, -{"id": 5112, "name": "Gallopinto/Pinto", "description": "Gallo pinto or pinto is a typical dish of Costa Rica it is made of rise and beans but you can add plátano maduro, tortillas, chees or anything else, people also put Lizano sauce on it.", "links": {"website": ["https://es.wikipedia.org/wiki/Gallo_pinto"]}, "path": {"250-258": [[-1102, -365], [-1093, -364], [-1089, -360], [-1088, -357], [-1091, -355], [-1093, -356], [-1102, -356], [-1106, -358], [-1108, -361]]}, "center": {"250-258": [-1099, -360]}}, -{"id": 5113, "name": "Beam_o1", "description": "Beam_o1 is a small Streamer of Peruvian nationality who broadcasts on the Twitch platform that with 20 people managed to have their space on the reddit wall to put their Minecraft skin, you can find him on Twitch as beam_o1", "links": {"website": ["https://www.twitch.tv/beam_o1", "https://www.instagram.com/beam_01fer/"], "discord": ["EzSrQf2vX5"]}, "path": {"227-258": [[-574, -910], [-574, -899], [-573, -899], [-572, -898], [-562, -898], [-562, -909], [-563, -909], [-563, -910], [-563, -909], [-564, -910]]}, "center": {"227-258": [-568, -904]}}, -{"id": 5114, "name": "i_o", "description": "Garrett Lockhart, aka i_o, was a techno music producer and DJ from deadmau5's record label \"mau5trap\". He passed away in 2020 from a sudden arrhythmia caused by Hashimoto's thyroiditis.", "links": {"website": ["https://en.wikipedia.org/wiki/I_o_(musician)"], "subreddit": ["i_o"]}, "path": {"96-258": [[-542, 67], [-502, 67], [-502, 73], [-541, 73]]}, "center": {"96-258": [-522, 70]}}, -{"id": 5115, "name": "Cerro Rico", "description": "Cerro Rico (Spanish for \"Rich Mountain\"), is a mountain in the Andes near the Bolivian city of Potosí. Cerro Rico, which is popularly conceived of as being \"made of\" silver ore, is famous for providing vast quantities of silver for the Spanish Empire, most of which was shipped to metropolitan Spain. It is estimated that eighty-five percent of the silver produced in the central Andes during this time came from Cerro Rico. As a result of mining operations in the mountain, the city of Potosí became one of the largest cities in the New World.", "links": {"website": ["https://en.wikipedia.org/wiki/Cerro_Rico"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[367, -28], [387, -47], [390, -47], [403, -34], [394, -29], [394, -27], [367, -27]]}, "center": {"250-258": [388, -36]}}, -{"id": 5116, "name": "Mr. Bill", "description": "Mr. Bill is an Australian IDM producer.", "links": {"website": ["https://mrbillstunes.com/", "https://soundcloud.com/mrbillstunes"]}, "path": {"250-258": [[1229, 3], [1229, -1], [1230, -1], [1230, -2], [1231, -2], [1231, -4], [1232, -4], [1237, -5], [1238, -4], [1239, -2], [1240, -1], [1241, 4], [1238, 4], [1238, 7], [1232, 7], [1232, 4], [1229, 4]]}, "center": {"250-258": [1235, 0]}}, -{"id": 5117, "name": "maiplace", "description": "Mai Sakurajima, Sakuta Azusagawa, and Kaede Azusagawa (left to right) from the series Seishun Buta Yarou, Rascal Does Not Dream of Bunny Girl Senpai. The second and final piece from the maiplace community's 2023 project.", "links": {"subreddit": ["maiplace", "SeishunButaYarou"], "discord": ["HmuzJwZe83"]}, "path": {"250-258": [[-1500, 491], [-1437, 491], [-1437, 500], [-1445, 500], [-1445, 501], [-1446, 501], [-1446, 502], [-1447, 502], [-1447, 503], [-1448, 503], [-1448, 504], [-1451, 504], [-1451, 508], [-1456, 508], [-1456, 509], [-1458, 509], [-1458, 512], [-1500, 512]]}, "center": {"250-258": [-1468, 502]}}, -{"id": 5118, "name": "Rezz", "description": "Isabelle Rezazadeh, aka Rezz, is a Canadian DJ, and record producer.", "links": {"website": ["http://officialrezz.com/"], "subreddit": ["Rezz"]}, "path": {"250-258": [[1212, 4], [1232, 4], [1232, 10], [1212, 11]]}, "center": {"250-258": [1219, 7]}}, -{"id": 5119, "name": "Antares Confederacy", "description": "A fictional space-faring nation created by the Canadian YouTube Channel The Templin Institute and written primarily by using the Paradox Interactive game Stellaris, it is the focus of the second season of the Templin Institute's web series Stellaris Invicta.", "links": {"website": ["https://www.templin.institute/"], "subreddit": ["TemplinInstitute"], "discord": ["templininstitute"]}, "path": {"250-258": [[-45, -26], [-45, -11], [-30, -11], [-30, -26]]}, "center": {"250-258": [-37, -18]}}, -{"id": 5120, "name": "Coat of arms of Venezuela", "description": "The coat of arms of Venezuela was primarily approved by the Congress on April 18, 1836, undergoing small modifications through history. Presented is the version used between 1954 and 2006", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Venezuela"], "subreddit": ["vzla"]}, "path": {"160-258": [[-857, 274], [-856, 291], [-845, 294], [-831, 292], [-831, 273], [-857, 273]]}, "center": {"160-258": [-844, 283]}}, -{"id": 5121, "name": "Tinku Helmet", "description": "Tinku, a Bolivian Aymara tradition, began as a form of ritualistic combat. In the Quechua language, it means \"meeting-encounter\". During this ritual, men and women from different communities will meet and begin the festivities by dancing. The women will then form circles and begin chanting while the men proceed to fight each other; eventually the women will join in the fighting as well. Large tinkus are held in Potosí during the first few weeks of May.", "links": {"website": ["https://en.wikipedia.org/wiki/Tinku"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[106, 772], [118, 772], [118, 788], [106, 788]]}, "center": {"250-258": [112, 780]}}, -{"id": 5123, "name": "Palestinian Key", "description": "A key representative of the right of return of Palestinians ethnically cleansed during the Nakba. Many Palestinians have kept the keys to their homes that were stolen with the hope that they can one day return.", "links": {"website": ["https://www.un.org/unispal/document/auto-insert-210170/"], "subreddit": ["palestine"]}, "path": {"210-258": [[14, -817], [17, -814], [17, -807], [21, -807], [21, -811], [20, -811], [20, -814], [22, -817], [21, -819], [16, -819], [15, -818]]}, "center": {"210-258": [18, -816]}}, -{"id": 5124, "name": "Axolotl - Minecraft", "description": "An axolotl, a Minecraft and real-life creature.", "links": {}, "path": {"194-258": [[-1187, -726], [-1187, -717], [-1171, -717], [-1171, -726]]}, "center": {"194-258": [-1179, -721]}}, -{"id": 5125, "name": "Flag of Lesotho", "description": "The Geoguessr community created the flag of Lesotho in the extra space below the globe.", "links": {"discord": ["geoguessr"]}, "path": {"250-258": [[-31, 966], [-19, 966], [-19, 971], [-31, 971], [-31, 967]]}, "center": {"250-258": [-25, 969]}}, -{"id": 5126, "name": "Zelda", "description": "Zelda is the princess from The Legend of Zelda this specify version is from The Legend Of Zelda Tears Of The Kingdom, you can see her wearing the outfit that the zonai gift her when she travels back in time after falling down due to the upheaval", "links": {"website": ["https://zelda.fandom.com"], "subreddit": ["zelda"]}, "path": {"177-259": [[-828, 513], [-823, 514], [-819, 517], [-820, 520], [-820, 523], [-819, 528], [-820, 530], [-823, 534], [-824, 535], [-826, 534], [-827, 535], [-829, 532], [-831, 529], [-831, 523], [-831, 519], [-831, 516]]}, "center": {"177-259": [-825, 526]}}, +{"id": 5108, "name": "ATTLAS", "description": "Jeff Hartford, aka ATTLAS, is a Canadian DJ, electronic music producer, and musician.", "links": {"website": ["https://soundcloud.com/ATTLAS"], "subreddit": ["attlas"]}, "path": {"250-258, T": [[1230, -9], [1230, -12], [1240, -12], [1240, -8], [1239, -8], [1239, -5], [1231, -5], [1231, -8]]}, "center": {"250-258, T": [1235, -8]}}, +{"id": 5109, "name": "Geoguessr Russia", "description": "The Geoguessr Russia community mainly helped create and maintain the Geoguessr spot in r/place. They added GRU for Geoguessr Russia.", "links": {"website": ["https://www.geoguessr.com/"], "subreddit": ["geoguessr"], "discord": ["vx64jhDA"]}, "path": {"250-258, T": [[-23, 938], [-23, 943], [-13, 943], [-13, 937], [-23, 937]]}, "center": {"250-258, T": [-18, 940]}}, +{"id": 5110, "name": "Nijisanji EN Waves 1-5", "description": "(Tue, 25 Jul 2023 18:00:06 GMT)\nThese groups of pixels represent the image colors of the first few waves of the VTuber group Nijisanji EN.\n\nFrom top to bottom, the groups are: Lazulight, Obsydia, Ethyria, Luxiem.\n\nThe 5th wave, Noctyx, is also represented under the Nijisanji logo, to the left of the mascots.", "links": {"website": ["https://www.nijisanji.jp/", "https://www.youtube.com/@nijisanji_en/"], "subreddit": ["Nijisanji"]}, "path": {"250-258, T": [[-669, -285], [-664, -285], [-665, -282], [-666, -280], [-667, -277], [-667, -272], [-669, -272]]}, "center": {"250-258, T": [-667, -283]}}, +{"id": 5111, "name": "Kantuta Flower", "description": "The kantuta is one of Bolivia's national flowers, or floral emblems (the other is the patuju). It is sometimes called the Sacred Flower of the Incas, and this is the legend told by the Quechua, descendants of the Incas. The name comes from the word \"qantuta\" in the Quechua language. It's scientific name is Cantua buxifolia.", "links": {"website": ["https://www.boliviabella.com/kantuta.html"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[167, 750], [173, 750], [173, 751], [176, 751], [176, 752], [177, 752], [177, 753], [178, 753], [178, 754], [184, 761], [184, 762], [180, 766], [176, 766], [168, 774], [168, 778], [164, 778], [164, 780], [162, 780], [162, 782], [157, 782], [157, 786], [151, 786], [151, 781], [154, 778], [153, 774], [167, 757]]}, "center": {"250-258, T": [173, 760]}}, +{"id": 5112, "name": "Gallopinto/Pinto", "description": "Gallo pinto or pinto is a typical dish of Costa Rica it is made of rise and beans but you can add plátano maduro, tortillas, chees or anything else, people also put Lizano sauce on it.", "links": {"website": ["https://es.wikipedia.org/wiki/Gallo_pinto"]}, "path": {"250-258, T": [[-1102, -365], [-1093, -364], [-1089, -360], [-1088, -357], [-1091, -355], [-1093, -356], [-1102, -356], [-1106, -358], [-1108, -361]]}, "center": {"250-258, T": [-1099, -360]}}, +{"id": 5113, "name": "Beam_o1", "description": "Beam_o1 is a small Streamer of Peruvian nationality who broadcasts on the Twitch platform that with 20 people managed to have their space on the reddit wall to put their Minecraft skin, you can find him on Twitch as beam_o1", "links": {"website": ["https://www.twitch.tv/beam_o1", "https://www.instagram.com/beam_01fer/"], "discord": ["EzSrQf2vX5"]}, "path": {"227-258, T": [[-574, -910], [-574, -899], [-573, -899], [-572, -898], [-562, -898], [-562, -909], [-563, -909], [-563, -910], [-563, -909], [-564, -910]]}, "center": {"227-258, T": [-568, -904]}}, +{"id": 5114, "name": "i_o", "description": "Garrett Lockhart, aka i_o, was a techno music producer and DJ from deadmau5's record label \"mau5trap\". He passed away in 2020 from a sudden arrhythmia caused by Hashimoto's thyroiditis.", "links": {"website": ["https://en.wikipedia.org/wiki/I_o_(musician)"], "subreddit": ["i_o"]}, "path": {"96-258, T": [[-542, 67], [-502, 67], [-502, 73], [-541, 73]]}, "center": {"96-258, T": [-522, 70]}}, +{"id": 5115, "name": "Cerro Rico", "description": "Cerro Rico (Spanish for \"Rich Mountain\"), is a mountain in the Andes near the Bolivian city of Potosí. Cerro Rico, which is popularly conceived of as being \"made of\" silver ore, is famous for providing vast quantities of silver for the Spanish Empire, most of which was shipped to metropolitan Spain. It is estimated that eighty-five percent of the silver produced in the central Andes during this time came from Cerro Rico. As a result of mining operations in the mountain, the city of Potosí became one of the largest cities in the New World.", "links": {"website": ["https://en.wikipedia.org/wiki/Cerro_Rico"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[367, -28], [387, -47], [390, -47], [403, -34], [394, -29], [394, -27], [367, -27]]}, "center": {"250-258, T": [388, -36]}}, +{"id": 5116, "name": "Mr. Bill", "description": "Mr. Bill is an Australian IDM producer.", "links": {"website": ["https://mrbillstunes.com/", "https://soundcloud.com/mrbillstunes"]}, "path": {"250-258, T": [[1229, 3], [1229, -1], [1230, -1], [1230, -2], [1231, -2], [1231, -4], [1232, -4], [1237, -5], [1238, -4], [1239, -2], [1240, -1], [1241, 4], [1238, 4], [1238, 7], [1232, 7], [1232, 4], [1229, 4]]}, "center": {"250-258, T": [1235, 0]}}, +{"id": 5117, "name": "maiplace", "description": "Mai Sakurajima, Sakuta Azusagawa, and Kaede Azusagawa (left to right) from the series Seishun Buta Yarou, Rascal Does Not Dream of Bunny Girl Senpai. The second and final piece from the maiplace community's 2023 project.", "links": {"subreddit": ["maiplace", "SeishunButaYarou"], "discord": ["HmuzJwZe83"]}, "path": {"250-258, T": [[-1500, 491], [-1437, 491], [-1437, 500], [-1445, 500], [-1445, 501], [-1446, 501], [-1446, 502], [-1447, 502], [-1447, 503], [-1448, 503], [-1448, 504], [-1451, 504], [-1451, 508], [-1456, 508], [-1456, 509], [-1458, 509], [-1458, 512], [-1500, 512]]}, "center": {"250-258, T": [-1468, 502]}}, +{"id": 5118, "name": "Rezz", "description": "Isabelle Rezazadeh, aka Rezz, is a Canadian DJ, and record producer.", "links": {"website": ["http://officialrezz.com/"], "subreddit": ["Rezz"]}, "path": {"250-258, T": [[1212, 4], [1232, 4], [1232, 10], [1212, 11]]}, "center": {"250-258, T": [1219, 7]}}, +{"id": 5119, "name": "Antares Confederacy", "description": "A fictional space-faring nation created by the Canadian YouTube Channel The Templin Institute and written primarily by using the Paradox Interactive game Stellaris, it is the focus of the second season of the Templin Institute's web series Stellaris Invicta.", "links": {"website": ["https://www.templin.institute/"], "subreddit": ["TemplinInstitute"], "discord": ["templininstitute"]}, "path": {"250-258, T": [[-45, -26], [-45, -11], [-30, -11], [-30, -26]]}, "center": {"250-258, T": [-37, -18]}}, +{"id": 5120, "name": "Coat of arms of Venezuela", "description": "The coat of arms of Venezuela was primarily approved by the Congress on April 18, 1836, undergoing small modifications through history. Presented is the version used between 1954 and 2006", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Venezuela"], "subreddit": ["vzla"]}, "path": {"160-258, T": [[-857, 274], [-856, 291], [-845, 294], [-831, 292], [-831, 273], [-857, 273]]}, "center": {"160-258, T": [-844, 283]}}, +{"id": 5121, "name": "Tinku Helmet", "description": "Tinku, a Bolivian Aymara tradition, began as a form of ritualistic combat. In the Quechua language, it means \"meeting-encounter\". During this ritual, men and women from different communities will meet and begin the festivities by dancing. The women will then form circles and begin chanting while the men proceed to fight each other; eventually the women will join in the fighting as well. Large tinkus are held in Potosí during the first few weeks of May.", "links": {"website": ["https://en.wikipedia.org/wiki/Tinku"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[106, 772], [118, 772], [118, 788], [106, 788]]}, "center": {"250-258, T": [112, 780]}}, +{"id": 5123, "name": "Palestinian Key", "description": "A key representative of the right of return of Palestinians ethnically cleansed during the Nakba. Many Palestinians have kept the keys to their homes that were stolen with the hope that they can one day return.", "links": {"website": ["https://www.un.org/unispal/document/auto-insert-210170/"], "subreddit": ["palestine"]}, "path": {"210-258, T": [[14, -817], [17, -814], [17, -807], [21, -807], [21, -811], [20, -811], [20, -814], [22, -817], [21, -819], [16, -819], [15, -818]]}, "center": {"210-258, T": [18, -816]}}, +{"id": 5124, "name": "Axolotl - Minecraft", "description": "An axolotl, a Minecraft and real-life creature.", "links": {}, "path": {"194-258, T": [[-1187, -726], [-1187, -717], [-1171, -717], [-1171, -726]]}, "center": {"194-258, T": [-1179, -721]}}, +{"id": 5125, "name": "Flag of Lesotho", "description": "The Geoguessr community created the flag of Lesotho in the extra space below the globe.", "links": {"discord": ["geoguessr"]}, "path": {"250-258, T": [[-31, 966], [-19, 966], [-19, 971], [-31, 971], [-31, 967]]}, "center": {"250-258, T": [-25, 969]}}, +{"id": 5126, "name": "Zelda", "description": "Zelda is the princess from The Legend of Zelda this specify version is from The Legend Of Zelda Tears Of The Kingdom, you can see her wearing the outfit that the zonai gift her when she travels back in time after falling down due to the upheaval", "links": {"website": ["https://zelda.fandom.com"], "subreddit": ["zelda"]}, "path": {"177-259, T": [[-828, 513], [-823, 514], [-819, 517], [-820, 520], [-820, 523], [-819, 528], [-820, 530], [-823, 534], [-824, 535], [-826, 534], [-827, 535], [-829, 532], [-831, 529], [-831, 523], [-831, 519], [-831, 516]]}, "center": {"177-259, T": [-825, 526]}}, {"id": 5127, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"], "discord": ["tuyu"]}, "path": {"9-18": [[273, 235], [288, 235], [288, 245], [273, 245]]}, "center": {"9-18": [281, 240]}}, {"id": 5128, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"], "discord": ["tuyu"]}, "path": {"118-123": [[749, -675], [749, -662], [734, -662], [734, -675]]}, "center": {"118-123": [742, -668]}}, -{"id": 5129, "name": "Flag of Chiriqui Province, Panama", "description": "Unfinished flag of the Chiriqui Province in Panama, the fourth largest and second most developed province in Panama. It has a population of 462,056 (2019) people and 14 districts. It is home to Volcan Baru, the 10th highest peak in Central America and highest peak in Panama", "links": {"website": ["https://en.wikipedia.org/wiki/Chiriqu%C3%AD_Province"]}, "path": {"250-258": [[-1500, 648], [-1478, 648], [-1478, 664], [-1500, 664]]}, "center": {"250-258": [-1489, 656]}}, -{"id": 5130, "name": "Julian Gray", "description": "Julian Gray is a Electronic music producer, DJ, and Youtuber based in Los Angeles.", "links": {"website": ["https://juliangraymusic.com/", "https://www.youtube.com/channel/UCdL5OemMau4OQB8t6Z4Eujg"], "discord": ["fdE2ejt5"]}, "path": {"250-258": [[1240, -10], [1242, -12], [1244, -12], [1247, -9], [1247, -4], [1244, -1], [1242, -1], [1239, -4], [1239, -9], [1241, -10]]}, "center": {"250-258": [1243, -6]}}, +{"id": 5129, "name": "Flag of Chiriqui Province, Panama", "description": "Unfinished flag of the Chiriqui Province in Panama, the fourth largest and second most developed province in Panama. It has a population of 462,056 (2019) people and 14 districts. It is home to Volcan Baru, the 10th highest peak in Central America and highest peak in Panama", "links": {"website": ["https://en.wikipedia.org/wiki/Chiriqu%C3%AD_Province"]}, "path": {"250-258, T": [[-1500, 648], [-1478, 648], [-1478, 664], [-1500, 664]]}, "center": {"250-258, T": [-1489, 656]}}, +{"id": 5130, "name": "Julian Gray", "description": "Julian Gray is a Electronic music producer, DJ, and Youtuber based in Los Angeles.", "links": {"website": ["https://juliangraymusic.com/", "https://www.youtube.com/channel/UCdL5OemMau4OQB8t6Z4Eujg"], "discord": ["fdE2ejt5"]}, "path": {"250-258, T": [[1240, -10], [1242, -12], [1244, -12], [1247, -9], [1247, -4], [1244, -1], [1242, -1], [1239, -4], [1239, -9], [1241, -10]]}, "center": {"250-258, T": [1243, -6]}}, {"id": 5131, "name": "Dagestan", "description": "Dagestan is a republic in the northern Caucasus. It is inhabited by Avars, Dargins, Lezgins, and Kumyks, among many other groups. Dagestan's flag took shape around a double cross on the map of r/PlaceEU, but was obscured by the Chechen flag on the final canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Dagestan", "https://en.wikipedia.org/wiki/Flag_of_Dagestan"], "subreddit": ["Dagestan", "PlaceEU"]}, "path": {"204-246": [[-122, 746], [-117, 746], [-114, 757], [-116, 759], [-115, 760], [-118, 760], [-121, 759], [-123, 758], [-125, 756], [-125, 754], [-120, 753], [-120, 750], [-124, 748]]}, "center": {"204-246": [-118, 756]}}, -{"id": 5132, "name": "Hitohito Tadano", "description": "Hitohito Tadano is the male deuteragonist of Komi Can't Communicate. An ordinary wallflower, he becomes the titular Komi's first real friend and helps her in her quest to make more. As the series progresses, the two fall in love. \n\nTadano is recognizable by the gray flower-shaped cowlick in his hair.", "links": {"website": ["https://komisan.fandom.com/wiki/Tadano_Hitohito"], "subreddit": ["Komi_san"]}, "path": {"250-258": [[1113, -821], [1098, -820], [1100, -795], [1107, -793], [1109, -796], [1115, -797], [1119, -792], [1124, -792], [1124, -798], [1123, -799], [1124, -806], [1126, -809], [1124, -812], [1127, -815], [1116, -821], [1098, -820]]}, "center": {"250-258": [1111, -809]}}, -{"id": 5133, "name": "Digivice.", "description": "Short for \"Digital Device\", is a device from the Digimon series based on the first Digimon product, the Digimon Virtual Pet, and it indicates that the possessor is a DigiDestined. It appears in every season of the anime, as well as the V-Tamer 01, Chronicle, D-Cyber, and Next manga, and several of the video games. Its primary use is to empower the DigiDestined's partner Digimon through Digivolution, though each version of the Digivice is also equipped with many other helpful features, such as radar or data storage. Even when Digivices are the same type, they are usually differentiated by a color scheme unique to the character who uses them.", "links": {"subreddit": ["Digimon"]}, "path": {"250-258": [[108, -763], [109, -763], [109, -762], [111, -762], [112, -763], [117, -763], [122, -759], [122, -754], [117, -750], [112, -750], [108, -753], [108, -762]]}, "center": {"250-258": [115, -756]}}, -{"id": 5134, "name": "Esfera Precolombina", "description": "This are spherical stones located in Costa Rica, scientist cant explain how they can have an perfect spherical shape with the tools that people had around 1000/500 years ago, this are considered World Heritage of the UNESCO. All spheres are unique because it shape and size.", "links": {"website": ["https://es.wikipedia.org/wiki/Esferas_de_piedra_de_Costa_Rica"]}, "path": {"250-258": [[-1065, -327], [-1064, -329], [-1068, -335], [-1061, -340], [-1054, -334], [-1057, -329], [-1057, -327]]}, "center": {"250-258": [-1061, -333]}}, +{"id": 5132, "name": "Hitohito Tadano", "description": "Hitohito Tadano is the male deuteragonist of Komi Can't Communicate. An ordinary wallflower, he becomes the titular Komi's first real friend and helps her in her quest to make more. As the series progresses, the two fall in love. \n\nTadano is recognizable by the gray flower-shaped cowlick in his hair.", "links": {"website": ["https://komisan.fandom.com/wiki/Tadano_Hitohito"], "subreddit": ["Komi_san"]}, "path": {"250-258, T": [[1113, -821], [1098, -820], [1100, -795], [1107, -793], [1109, -796], [1115, -797], [1119, -792], [1124, -792], [1124, -798], [1123, -799], [1124, -806], [1126, -809], [1124, -812], [1127, -815], [1116, -821], [1098, -820]]}, "center": {"250-258, T": [1111, -809]}}, +{"id": 5133, "name": "Digivice.", "description": "Short for \"Digital Device\", is a device from the Digimon series based on the first Digimon product, the Digimon Virtual Pet, and it indicates that the possessor is a DigiDestined. It appears in every season of the anime, as well as the V-Tamer 01, Chronicle, D-Cyber, and Next manga, and several of the video games. Its primary use is to empower the DigiDestined's partner Digimon through Digivolution, though each version of the Digivice is also equipped with many other helpful features, such as radar or data storage. Even when Digivices are the same type, they are usually differentiated by a color scheme unique to the character who uses them.", "links": {"subreddit": ["Digimon"]}, "path": {"250-258, T": [[108, -763], [109, -763], [109, -762], [111, -762], [112, -763], [117, -763], [122, -759], [122, -754], [117, -750], [112, -750], [108, -753], [108, -762]]}, "center": {"250-258, T": [115, -756]}}, +{"id": 5134, "name": "Esfera Precolombina", "description": "This are spherical stones located in Costa Rica, scientist cant explain how they can have an perfect spherical shape with the tools that people had around 1000/500 years ago, this are considered World Heritage of the UNESCO. All spheres are unique because it shape and size.", "links": {"website": ["https://es.wikipedia.org/wiki/Esferas_de_piedra_de_Costa_Rica"]}, "path": {"250-258, T": [[-1065, -327], [-1064, -329], [-1068, -335], [-1061, -340], [-1054, -334], [-1057, -329], [-1057, -327]]}, "center": {"250-258, T": [-1061, -333]}}, {"id": 5135, "name": "Flag of Pakistan", "description": "Pakistan, officially the Islamic Republic of Pakistan, is a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Pakistan"], "subreddit": ["pakistan"]}, "path": {"127-128": [[-981, -103], [-981, -109], [-972, -109], [-972, -103]]}, "center": {"127-128": [-976, -106]}}, -{"id": 5136, "name": "Stargazer", "description": "Stargazers are the fan mascot of the Nijisanji EN VTuber, Uki Violeta. The fried eggs on their heads are one of Uki's favourite foods.", "links": {"website": ["https://www.nijisanji.jp/talents/l/uki-violeta", "https://www.youtube.com/@UkiVioleta", "https://twitter.com/uki_violeta/"], "subreddit": ["Nijisanji"]}, "path": {"250-258": [[-638, -253], [-636, -253], [-636, -248], [-641, -248], [-641, -252], [-638, -252]]}, "center": {"250-258": [-639, -250]}}, +{"id": 5136, "name": "Stargazer", "description": "Stargazers are the fan mascot of the Nijisanji EN VTuber, Uki Violeta. The fried eggs on their heads are one of Uki's favourite foods.", "links": {"website": ["https://www.nijisanji.jp/talents/l/uki-violeta", "https://www.youtube.com/@UkiVioleta", "https://twitter.com/uki_violeta/"], "subreddit": ["Nijisanji"]}, "path": {"250-258, T": [[-638, -253], [-636, -253], [-636, -248], [-641, -248], [-641, -252], [-638, -252]]}, "center": {"250-258, T": [-639, -250]}}, {"id": 5137, "name": "Flag of Finland", "description": "Finland is a Northern European nation bordering Sweden, Norway and Russia.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland"], "subreddit": ["Finland"]}, "path": {"133-140": [[-990, -108], [-990, -103], [-982, -103], [-982, -108]]}, "center": {"133-140": [-986, -105]}}, -{"id": 5138, "name": "DoctorJazz", "description": "DoctorJazz is an American musician and beloved friend of the Tiki Chat community.", "links": {}, "path": {"122-253": [[-492, 425], [-492, 419], [-498, 419], [-498, 425]]}, "center": {"122-253": [-495, 422]}}, -{"id": 5139, "name": "Yumeiri Reyu", "description": "A sweet menhera angel, japanese vtuber. A picture made by her fans (MiReyu's).\nPuede hablar español, muchos colaboramos en realizarlo.", "links": {"website": ["https://www.youtube.com/@YumeiriReyu", "https://twitter.com/Reyu_q"]}, "path": {"250-258": [[-1439, -286], [-1420, -286], [-1420, -262], [-1439, -262], [-1440, -265], [-1446, -265], [-1446, -268], [-1439, -268], [-1439, -269], [-1439, -270]]}, "center": {"250-258": [-1429, -272]}}, -{"id": 5140, "name": "Flag and Coats of Arms of Panama", "description": "Flag and the Coat of Arms of Panama with the Golden frog at the lower right side and the word Seco, referencing an alcholic beverage destilled from sugar cane made in Panama. The number 507 is the country's international dialing code.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Panama", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Panama", "https://en.wikipedia.org/wiki/Panamanian_golden_frog", "https://en.wikipedia.org/wiki/Seco_Herrerano", "https://www.tourismpanama.com/"], "subreddit": ["panama"], "discord": ["panama-959863790965489754"]}, "path": {"176-258": [[-1420, 678], [-1500, 678], [-1500, 664], [-1478, 664], [-1478, 648], [-1500, 648], [-1500, 631], [-1477, 631], [-1477, 619], [-1420, 619]]}, "center": {"176-258": [-1449, 649]}}, +{"id": 5138, "name": "DoctorJazz", "description": "DoctorJazz is an American musician and beloved friend of the Tiki Chat community.", "links": {}, "path": {"122-253, T": [[-492, 425], [-492, 419], [-498, 419], [-498, 425]]}, "center": {"122-253, T": [-495, 422]}}, +{"id": 5139, "name": "Yumeiri Reyu", "description": "A sweet menhera angel, japanese vtuber. A picture made by her fans (MiReyu's).\nPuede hablar español, muchos colaboramos en realizarlo.", "links": {"website": ["https://www.youtube.com/@YumeiriReyu", "https://twitter.com/Reyu_q"]}, "path": {"250-258, T": [[-1439, -286], [-1420, -286], [-1420, -262], [-1439, -262], [-1440, -265], [-1446, -265], [-1446, -268], [-1439, -268], [-1439, -269], [-1439, -270]]}, "center": {"250-258, T": [-1429, -272]}}, +{"id": 5140, "name": "Flag and Coats of Arms of Panama", "description": "Flag and the Coat of Arms of Panama with the Golden frog at the lower right side and the word Seco, referencing an alcholic beverage destilled from sugar cane made in Panama. The number 507 is the country's international dialing code.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Panama", "https://en.wikipedia.org/wiki/Coat_of_arms_of_Panama", "https://en.wikipedia.org/wiki/Panamanian_golden_frog", "https://en.wikipedia.org/wiki/Seco_Herrerano", "https://www.tourismpanama.com/"], "subreddit": ["panama"], "discord": ["panama-959863790965489754"]}, "path": {"176-258, T": [[-1420, 678], [-1500, 678], [-1500, 664], [-1478, 664], [-1478, 648], [-1500, 648], [-1500, 631], [-1477, 631], [-1477, 619], [-1420, 619]]}, "center": {"176-258, T": [-1449, 649]}}, {"id": 5141, "name": "Flag of Venezuela", "description": "Venezuela is a country on the northern coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela"], "subreddit": ["Venezuela"]}, "path": {"229-242": [[-991, -109], [-984, -109], [-984, -105], [-991, -105]]}, "center": {"229-242": [-987, -107]}}, -{"id": 5142, "name": "VoltexD", "description": "VoltexD, also known as El Yeyo, is a content creator and streamer from Panama. He is a Twitch Partner, Twitch being his main streaming platform. With 50k followers and more than 1k average viewers, VoltexD is one of the biggest Panamanian streamers in Twitch. He spearheaded the effort to draw the Coats of Arms of Panama in the r/place 2023 event", "links": {"website": ["https://www.twitch.tv/voltexd", "https://www.youtube.com/voltexdd", "https://www.instagram.com/voltexd/", "https://twitter.com/voltexdd", "https://www.tiktok.com/@voltexd"], "discord": ["CPb9WYgr4Q"]}, "path": {"187-258": [[-1500, 624], [-1477, 624], [-1477, 631], [-1500, 631]]}, "center": {"187-258": [-1488, 628]}}, -{"id": 5143, "name": "Geocache VI", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is an ammo can overlaid on the colourful version of the geocaching logo.", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"250-258": [[288, 987], [288, 999], [300, 999], [300, 987]]}, "center": {"250-258": [294, 993]}}, -{"id": 5144, "name": "33", "description": "This number 33 made in the Spanish flag is a reference to a famous Twitter meme about the spanish two-time Formula One World Champion, Fernando Alonso. The joke is a reference to how the spaniard has a total of 32 career victories, and fans were speculating when the next one, the 33rd would come. They would start searching for any instances where the number 33 appeared, and said it was a sign. This internet joke started halfway through 2022, and its popularity exploded this year, as Alonso started the 2023 season with a car capable of winning, to the point even the official F1 Twitter account decided to join the party, several Spanish media addressed the ongoing joke & a Spanish internet provider, Finetwork, launched a special summer promotion for 33 euros, with Alonso himself featured in the commercial, not to mention Carlos Alcaraz, one of the best tennis players in the world as of today, celebrated his victory in the Miami Open by writing \"33? Soon\" on a camera lens.\n\nReferences below.", "links": {"website": ["https://twitter.com/F1/status/1664329069461229573", "https://www.tennis.com/baseline/articles/33-soon-carlos-alcaraz-camera-lens-message-fernando-alonso-formula-1", "https://www.sport.es/es/videos/futbol/20230619/anuncio-viral-finetwork-joaquin-marta/88895370.shtml"]}, "path": {"250-258": [[874, -947], [882, -947], [882, -941], [874, -941]]}, "center": {"250-258": [878, -944]}}, -{"id": 5145, "name": "Nijisanji EN Waves 6-8", "description": "These groups of pixels represent the image colors of the 6th, 7th and 8th waves of the VTuber group Nijisanji EN.\n\nFrom bottom to top: Iluna, XSoleil, and Krisis.", "links": {"website": ["https://www.nijisanji.jp/", "https://www.youtube.com/@nijisanji_en/"], "subreddit": ["Nijisanji"]}, "path": {"250-258": [[-649, -306], [-645, -306], [-645, -304], [-646, -304], [-646, -296], [-649, -296]]}, "center": {"250-258": [-647, -301]}}, -{"id": 5146, "name": "Geocaching Trackable", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nGeocaching trackables are items with a unique code and usually travel from cache to cache, but can end up elsewhere like the canvas too! They can be logged on the geocaching website.\n\nCVVFY3 - Trackable at geocaching.com", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"248-258": [[491, -723], [491, -713], [509, -713], [509, -723]]}, "center": {"248-258": [500, -718]}}, -{"id": 5147, "name": "Girl with Balloon", "description": "A series of stencil murals painted by graffiti artist Banksy from 2002 across London. The artist made a framed version as a gift to a friend, and when it was put up for auction in 2018, right after the gavel dropped, a hidden shredder to the bottom of the frame activated, but only managed to shred half of the canvas; the resulting artwork is then named \"Love is in the Bin\".", "links": {}, "path": {"249-258": [[-734, 847], [-662, 847], [-662, 941], [-734, 941]]}, "center": {"249-258": [-698, 894]}}, -{"id": 5148, "name": "Peace & Love/Teddy Fresh/Don't Push", "description": "Peace and Love is a phrase popularized by Ringo Starr of The Beatles. In a video from 2008 where Ringo is requesting his fans cease sending him things to autograph through the mail (link 1) he repeats the phrase many times quite aggressively, which launched the video into internet fame. On August 8th, 2020, this video was rediscovered on the H3 podcast, where peace and love became a long lasting meme on the show, often being used in a similar way to the phrase \"no offense but\" (link 2).\n\nTeddy Fresh is a clothing brand started by Hila Klein of h3h3production, and now host of the H3 Podcast. The brand focuses on adult streetwear imbued with a childlike wonder. Fittingly, the mascot for Teddy Fresh is a bear with the initials TF (link 3). \n\nDon't Push is a reference to a recurring character on the H3 Podcast known as Jimmie Lee the Jersey Outlaw. Jimmie Lee is an elderly wannabe roast comedian whose jokes often come off offensive and nonsensical rather than comedic. \"Don't Push\" is one of Jimmie's many catchphrases, along side catchphrases such as \"Have you seen my Pink's hat?\" and \"Can I get Audio, Audio, Audio!\" (link 4)", "links": {"website": ["https://www.youtube.com/watch?v=eAU0l7325w0", "https://www.youtube.com/watch?v=ESei0AmfL9c", "https://teddyfresh.com/", "https://www.youtube.com/watch?v=A6W0PKL7q5s"], "subreddit": ["h3h3productions"]}, "path": {"250-258": [[300, 886], [300, 914], [355, 914], [355, 912], [356, 911], [358, 911], [358, 904], [358, 903], [356, 902], [355, 901], [355, 899], [355, 898], [357, 898], [357, 885], [300, 885]]}, "center": {"250-258": [329, 900]}}, -{"id": 5149, "name": "Miner's Helmet Monument", "description": "Monument located in the city of Oruro, Bolivia, devoted to the miner's helmet, and in fact – to glorification of complicated miner's labour. It's a huge metal helmet mounted on strong columns.", "links": {"website": ["https://www.tiwy.com/pais/bolivia/oruro/casco_del_minero/eng.phtml"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[141, 777], [141, 785], [151, 784], [151, 777]]}, "center": {"250-258": [146, 781]}}, -{"id": 5150, "name": "Last Podcast on the Left", "description": "Last Podcast on the Left barrels headlong into all things horror — as hosts Ben Kissel, Marcus Parks and Henry Zebrowski cover dark subjects spanning Jeffrey Dahmer, werewolves, Jonestown, iconic hauntings, the history of war crimes, and more. Whether it's cults, killers, or cryptid encounters, Last Podcast on the Left laughs into the abyss that is the dark side of humanity.", "links": {"website": ["https://www.lastpodcastontheleft.com/"], "subreddit": ["LPOTL"]}, "path": {"250-258": [[-129, 635], [-134, 640], [-138, 645], [-139, 647], [-142, 646], [-145, 649], [-145, 652], [-142, 654], [-142, 660], [-145, 664], [-146, 665], [-153, 666], [-154, 701], [-113, 701], [-113, 666], [-119, 663], [-121, 660], [-120, 657], [-117, 655], [-117, 650], [-119, 648], [-119, 646], [-121, 646], [-122, 647], [-123, 646], [-123, 645], [-124, 644], [-124, 643], [-123, 642], [-123, 641], [-124, 640], [-124, 639], [-125, 638], [-126, 637], [-127, 635]]}, "center": {"250-258": [-133, 681]}}, -{"id": 5151, "name": "Geocache V", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is an ammo can overlaid on the colourful version of the geocaching logo.", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"250-258": [[288, 954], [288, 966], [300, 966], [300, 954]]}, "center": {"250-258": [294, 960]}}, -{"id": 5152, "name": "Flasho & Gustavo", "description": "Flasho_D is a Venezuelan artist and streamer, who loves purple and holographic colors and is the wife of Eren Yeager. Gustavo, whose name was given by in the community of Flasho-D. Is a stuffed animal who became popular with her audience and is an important character in her community. Gustavo is everything. A special thanks to Mili and Bloom for creating this beautiful pixel art and taking care of it.", "links": {"website": ["https://www.twitch.tv/flasho_d", "https://www.instagram.com/flasho_d/", "https://www.youtube.com/@Flasho_D"]}, "path": {"180-258": [[-1001, -105], [-1016, -105], [-1016, -93], [-1025, -93], [-1026, -83], [-1027, -83], [-1027, -80], [-1000, -80], [-1000, -99], [-1001, -99]]}, "center": {"180-258": [-1008, -89]}}, -{"id": 5153, "name": "Jersey Flag", "description": "The flag of the Bailiwick of Jersey--a self governing island in the English Channel controlled by the United Kingdom", "links": {"website": ["https://en.wikipedia.org/wiki/Jersey"]}, "path": {"26-258": [[-334, -267], [-320, -267], [-320, -259], [-334, -259]]}, "center": {"26-258": [-327, -263]}}, +{"id": 5142, "name": "VoltexD", "description": "VoltexD, also known as El Yeyo, is a content creator and streamer from Panama. He is a Twitch Partner, Twitch being his main streaming platform. With 50k followers and more than 1k average viewers, VoltexD is one of the biggest Panamanian streamers in Twitch. He spearheaded the effort to draw the Coats of Arms of Panama in the r/place 2023 event", "links": {"website": ["https://www.twitch.tv/voltexd", "https://www.youtube.com/voltexdd", "https://www.instagram.com/voltexd/", "https://twitter.com/voltexdd", "https://www.tiktok.com/@voltexd"], "discord": ["CPb9WYgr4Q"]}, "path": {"187-258, T": [[-1500, 624], [-1477, 624], [-1477, 631], [-1500, 631]]}, "center": {"187-258, T": [-1488, 628]}}, +{"id": 5143, "name": "Geocache VI", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is an ammo can overlaid on the colourful version of the geocaching logo.", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"250-258, T": [[288, 987], [288, 999], [300, 999], [300, 987]]}, "center": {"250-258, T": [294, 993]}}, +{"id": 5144, "name": "33", "description": "This number 33 made in the Spanish flag is a reference to a famous Twitter meme about the spanish two-time Formula One World Champion, Fernando Alonso. The joke is a reference to how the spaniard has a total of 32 career victories, and fans were speculating when the next one, the 33rd would come. They would start searching for any instances where the number 33 appeared, and said it was a sign. This internet joke started halfway through 2022, and its popularity exploded this year, as Alonso started the 2023 season with a car capable of winning, to the point even the official F1 Twitter account decided to join the party, several Spanish media addressed the ongoing joke & a Spanish internet provider, Finetwork, launched a special summer promotion for 33 euros, with Alonso himself featured in the commercial, not to mention Carlos Alcaraz, one of the best tennis players in the world as of today, celebrated his victory in the Miami Open by writing \"33? Soon\" on a camera lens.\n\nReferences below.", "links": {"website": ["https://twitter.com/F1/status/1664329069461229573", "https://www.tennis.com/baseline/articles/33-soon-carlos-alcaraz-camera-lens-message-fernando-alonso-formula-1", "https://www.sport.es/es/videos/futbol/20230619/anuncio-viral-finetwork-joaquin-marta/88895370.shtml"]}, "path": {"250-258, T": [[874, -947], [882, -947], [882, -941], [874, -941]]}, "center": {"250-258, T": [878, -944]}}, +{"id": 5145, "name": "Nijisanji EN Waves 6-8", "description": "These groups of pixels represent the image colors of the 6th, 7th and 8th waves of the VTuber group Nijisanji EN.\n\nFrom bottom to top: Iluna, XSoleil, and Krisis.", "links": {"website": ["https://www.nijisanji.jp/", "https://www.youtube.com/@nijisanji_en/"], "subreddit": ["Nijisanji"]}, "path": {"250-258, T": [[-649, -306], [-645, -306], [-645, -304], [-646, -304], [-646, -296], [-649, -296]]}, "center": {"250-258, T": [-647, -301]}}, +{"id": 5146, "name": "Geocaching Trackable", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nGeocaching trackables are items with a unique code and usually travel from cache to cache, but can end up elsewhere like the canvas too! They can be logged on the geocaching website.\n\nCVVFY3 - Trackable at geocaching.com", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"248-258, T": [[491, -723], [491, -713], [509, -713], [509, -723]]}, "center": {"248-258, T": [500, -718]}}, +{"id": 5147, "name": "Girl with Balloon", "description": "A series of stencil murals painted by graffiti artist Banksy from 2002 across London. The artist made a framed version as a gift to a friend, and when it was put up for auction in 2018, right after the gavel dropped, a hidden shredder to the bottom of the frame activated, but only managed to shred half of the canvas; the resulting artwork is then named \"Love is in the Bin\".", "links": {}, "path": {"249-258, T": [[-734, 847], [-662, 847], [-662, 941], [-734, 941]]}, "center": {"249-258, T": [-698, 894]}}, +{"id": 5148, "name": "Peace & Love/Teddy Fresh/Don't Push", "description": "Peace and Love is a phrase popularized by Ringo Starr of The Beatles. In a video from 2008 where Ringo is requesting his fans cease sending him things to autograph through the mail (link 1) he repeats the phrase many times quite aggressively, which launched the video into internet fame. On August 8th, 2020, this video was rediscovered on the H3 podcast, where peace and love became a long lasting meme on the show, often being used in a similar way to the phrase \"no offense but\" (link 2).\n\nTeddy Fresh is a clothing brand started by Hila Klein of h3h3production, and now host of the H3 Podcast. The brand focuses on adult streetwear imbued with a childlike wonder. Fittingly, the mascot for Teddy Fresh is a bear with the initials TF (link 3). \n\nDon't Push is a reference to a recurring character on the H3 Podcast known as Jimmie Lee the Jersey Outlaw. Jimmie Lee is an elderly wannabe roast comedian whose jokes often come off offensive and nonsensical rather than comedic. \"Don't Push\" is one of Jimmie's many catchphrases, along side catchphrases such as \"Have you seen my Pink's hat?\" and \"Can I get Audio, Audio, Audio!\" (link 4)", "links": {"website": ["https://www.youtube.com/watch?v=eAU0l7325w0", "https://www.youtube.com/watch?v=ESei0AmfL9c", "https://teddyfresh.com/", "https://www.youtube.com/watch?v=A6W0PKL7q5s"], "subreddit": ["h3h3productions"]}, "path": {"250-258, T": [[300, 886], [300, 914], [355, 914], [355, 912], [356, 911], [358, 911], [358, 904], [358, 903], [356, 902], [355, 901], [355, 899], [355, 898], [357, 898], [357, 885], [300, 885]]}, "center": {"250-258, T": [329, 900]}}, +{"id": 5149, "name": "Miner's Helmet Monument", "description": "Monument located in the city of Oruro, Bolivia, devoted to the miner's helmet, and in fact – to glorification of complicated miner's labour. It's a huge metal helmet mounted on strong columns.", "links": {"website": ["https://www.tiwy.com/pais/bolivia/oruro/casco_del_minero/eng.phtml"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[141, 777], [141, 785], [151, 784], [151, 777]]}, "center": {"250-258, T": [146, 781]}}, +{"id": 5150, "name": "Last Podcast on the Left", "description": "Last Podcast on the Left barrels headlong into all things horror — as hosts Ben Kissel, Marcus Parks and Henry Zebrowski cover dark subjects spanning Jeffrey Dahmer, werewolves, Jonestown, iconic hauntings, the history of war crimes, and more. Whether it's cults, killers, or cryptid encounters, Last Podcast on the Left laughs into the abyss that is the dark side of humanity.", "links": {"website": ["https://www.lastpodcastontheleft.com/"], "subreddit": ["LPOTL"]}, "path": {"250-258, T": [[-129, 635], [-134, 640], [-138, 645], [-139, 647], [-142, 646], [-145, 649], [-145, 652], [-142, 654], [-142, 660], [-145, 664], [-146, 665], [-153, 666], [-154, 701], [-113, 701], [-113, 666], [-119, 663], [-121, 660], [-120, 657], [-117, 655], [-117, 650], [-119, 648], [-119, 646], [-121, 646], [-122, 647], [-123, 646], [-123, 645], [-124, 644], [-124, 643], [-123, 642], [-123, 641], [-124, 640], [-124, 639], [-125, 638], [-126, 637], [-127, 635]]}, "center": {"250-258, T": [-133, 681]}}, +{"id": 5151, "name": "Geocache V", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is an ammo can overlaid on the colourful version of the geocaching logo.", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"250-258, T": [[288, 954], [288, 966], [300, 966], [300, 954]]}, "center": {"250-258, T": [294, 960]}}, +{"id": 5152, "name": "Flasho & Gustavo", "description": "Flasho_D is a Venezuelan artist and streamer, who loves purple and holographic colors and is the wife of Eren Yeager. Gustavo, whose name was given by in the community of Flasho-D. Is a stuffed animal who became popular with her audience and is an important character in her community. Gustavo is everything. A special thanks to Mili and Bloom for creating this beautiful pixel art and taking care of it.", "links": {"website": ["https://www.twitch.tv/flasho_d", "https://www.instagram.com/flasho_d/", "https://www.youtube.com/@Flasho_D"]}, "path": {"180-258, T": [[-1001, -105], [-1016, -105], [-1016, -93], [-1025, -93], [-1026, -83], [-1027, -83], [-1027, -80], [-1000, -80], [-1000, -99], [-1001, -99]]}, "center": {"180-258, T": [-1008, -89]}}, +{"id": 5153, "name": "Jersey Flag", "description": "The flag of the Bailiwick of Jersey--a self governing island in the English Channel controlled by the United Kingdom", "links": {"website": ["https://en.wikipedia.org/wiki/Jersey"]}, "path": {"26-258, T": [[-334, -267], [-320, -267], [-320, -259], [-334, -259]]}, "center": {"26-258, T": [-327, -263]}}, {"id": 5154, "name": "Geocache II", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is a hanging bison tube.", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"246": [[-847, -254], [-842, -254], [-842, -262], [-844, -264], [-843, -266], [-845, -267], [-846, -265], [-845, -264], [-847, -262]]}, "center": {"246": [-844, -259]}}, -{"id": 5155, "name": "Obelisk of Buenos Aires", "description": "A historic monument located in Buenos Aires, Argentina. \nIt was erected in 1936 to commemorate the quadricentennial of the first foundation of the city.", "links": {"website": ["https://en.wikipedia.org/wiki/Obelisco_de_Buenos_Aires"]}, "path": {"250-258": [[1151, 963], [1159, 971], [1165, 966], [1165, 921], [1159, 915], [1152, 922]]}, "center": {"250-258": [1158, 944]}}, +{"id": 5155, "name": "Obelisk of Buenos Aires", "description": "A historic monument located in Buenos Aires, Argentina. \nIt was erected in 1936 to commemorate the quadricentennial of the first foundation of the city.", "links": {"website": ["https://en.wikipedia.org/wiki/Obelisco_de_Buenos_Aires"]}, "path": {"250-258, T": [[1151, 963], [1159, 971], [1165, 966], [1165, 921], [1159, 915], [1152, 922]]}, "center": {"250-258, T": [1158, 944]}}, {"id": 5156, "name": "Attempt of another Don-chan from Taiko No Tatsujin", "description": "After soon encountering Hatsune Miku plan for new don moved but met with one of many h3h3 productions's fan projects", "links": {"subreddit": ["taikonotatsujin"], "discord": ["SJvRubwBpz"]}, "path": {"119-123": [[-816, -686], [-816, -687], [-815, -687], [-815, -688], [-810, -688], [-810, -687], [-809, -687], [-808, -687], [-808, -685], [-807, -685], [-807, -680], [-808, -680], [-808, -679], [-808, -678], [-811, -678], [-810, -677], [-815, -677], [-815, -678], [-817, -678], [-817, -680], [-818, -680], [-818, -685], [-817, -685], [-817, -686]]}, "center": {"119-123": [-812, -682]}}, -{"id": 5157, "name": "Geocache IV", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is a camouflaged ammo can.", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"250-258": [[67, 503], [72, 503], [75, 500], [75, 496], [74, 495], [70, 495], [67, 498]]}, "center": {"250-258": [71, 499]}}, -{"id": 5158, "name": "Mastermovies", "description": "Mastermovies is the stage name of a former duo consisting of Paul Huig and Merijn Scholte Albers. They are mainly known for the so-called fundubs in which they dubbed films and television series, often humorous texts unrelated to the original film or series. They left a profound impact on the humor and in-jokes of a specific generation, as their videos are very quotable.", "links": {"website": ["https://www.youtube.com/@mastermovies"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"215-258": [[-1370, -481], [-1370, -450], [-1338, -450], [-1339, -481]]}, "center": {"215-258": [-1354, -465]}}, -{"id": 5159, "name": "Luiggy", "description": "Luiggy.also known as Luiggyoo whose real is Luis Molina, is a content creator and a streamer. He is currently a Twitch Affiliate with 10k followers.", "links": {"website": ["https://www.twitch.tv/luiggyoo", "https://www.tiktok.com/@luiggyoo", "https://www.youtube.com/@luiggyoo/videos", "https://www.instagram.com/luiggyoo/", "https://twitter.com/luiggyoo"], "discord": ["Zq6vCcDRYH"]}, "path": {"250-258": [[-1500, 619], [-1477, 620], [-1477, 631], [-1500, 631]]}, "center": {"250-258": [-1489, 625]}}, +{"id": 5157, "name": "Geocache IV", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is a camouflaged ammo can.", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"250-258, T": [[67, 503], [72, 503], [75, 500], [75, 496], [74, 495], [70, 495], [67, 498]]}, "center": {"250-258, T": [71, 499]}}, +{"id": 5158, "name": "Mastermovies", "description": "Mastermovies is the stage name of a former duo consisting of Paul Huig and Merijn Scholte Albers. They are mainly known for the so-called fundubs in which they dubbed films and television series, often humorous texts unrelated to the original film or series. They left a profound impact on the humor and in-jokes of a specific generation, as their videos are very quotable.", "links": {"website": ["https://www.youtube.com/@mastermovies"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"215-258, T": [[-1370, -481], [-1370, -450], [-1338, -450], [-1339, -481]]}, "center": {"215-258, T": [-1354, -465]}}, +{"id": 5159, "name": "Luiggy", "description": "Luiggy.also known as Luiggyoo whose real is Luis Molina, is a content creator and a streamer. He is currently a Twitch Affiliate with 10k followers.", "links": {"website": ["https://www.twitch.tv/luiggyoo", "https://www.tiktok.com/@luiggyoo", "https://www.youtube.com/@luiggyoo/videos", "https://www.instagram.com/luiggyoo/", "https://twitter.com/luiggyoo"], "discord": ["Zq6vCcDRYH"]}, "path": {"250-258, T": [[-1500, 619], [-1477, 620], [-1477, 631], [-1500, 631]]}, "center": {"250-258, T": [-1489, 625]}}, {"id": 5160, "name": "Cara Inzana by KevinSuEz & Jojo_XD", "description": "Hecha por dos inzanos, Jojo_XD un mexicano y un Streamer Colombiano pequeño llamado KevinSuEz con compañia de otros compañeros mas AriannaMedia & Malin XD", "links": {"website": ["https://www.twitch.tv/kevinsuez", "https://www.twitch.tv/ariannamediana", "https://www.twitch.tv/michi_sky"], "discord": ["Ke7d4wp72r", "3HghpPftBT"]}, "path": {"217": [[45, 542], [45, 549], [55, 549], [55, 543], [55, 542]]}, "center": {"217": [50, 546]}}, {"id": 5161, "name": "Jade Shrimp", "description": "Originally created by u/CaptainsBoat. He is a small warrior and protector of the r/Titanic art, and wanted to make a little guy dedicated to my pet jade neocardina shrimps. 💚🦐💚", "links": {"subreddit": ["shrimptank"]}, "path": {"241": [[786, 969], [791, 969], [792, 972], [795, 973], [797, 975], [798, 978], [796, 980], [793, 979], [792, 978], [787, 978], [786, 978], [785, 978], [785, 970], [785, 969]]}, "center": {"241": [789, 974]}}, {"id": 5162, "name": "Pump It Up", "description": "Pump It Up is a video game series similar to Dance Dance Revolution.", "links": {"website": ["https://en.wikipedia.org/wiki/Pump_It_Up_(video_game_series)"], "subreddit": ["PumpItUp"], "discord": ["ZVpkvQA6"]}, "path": {"56-61": [[0, 490], [9, 490], [9, 499], [0, 499]], "111-125": [[-784, 389], [-775, 389], [-775, 398], [-784, 398]]}, "center": {"56-61": [5, 495], "111-125": [-779, 394]}}, {"id": 5163, "name": "Counter-Strike 2 icon", "description": "A sequel to the Counter-Strike series and a free upgrade (or as stated by Valve themselves, \"killer\") of Counter-Strike: Global Offensive, slated to release in \"Summer 2023\".", "links": {"website": ["https://www.counter-strike.net/cs2"], "subreddit": ["CS2"]}, "path": {"251-258": [[-1320, 977], [-1305, 977], [-1305, 992], [-1320, 992]]}, "center": {"251-258": [-1312, 985]}}, -{"id": 5164, "name": "Sekibanki", "description": "A rokurorubi (a type of youkai who has a stretchable neck) who first appeared in Touhou 14: Double Dealing Character. She also has the ability to detach her head from her body and create clones of them. Sekibanki's head being the only part of her shown in the canvas emphasizes that detaching ability.\n\nShe has recently got a surge of popularity when Akatsuki Records released a vocal single named \"Rock 'n' Rock 'n' Beat\", an arrange of her theme \"Dullahan Under the Willows\". The phrase \"Bang Bang Sekibanki\" has become a meme in the Touhou community due to how catchy that part of the lyrics is.", "links": {"website": ["https://en.touhouwiki.net/wiki/Sekibanki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"250-258": [[-525, 48], [-532, 48], [-533, 49], [-533, 57], [-533, 58], [-523, 58], [-523, 53]]}, "center": {"250-258": [-528, 53]}}, -{"id": 5165, "name": "Pentomo", "description": "Pentomos are the fan mascot of the Nijisanji EN VTuber, Petra Gurin. They are round penguins with crowns meant to resemble Petra's hair bun.", "links": {"website": ["https://www.nijisanji.jp/talents/l/petra-gurin", "https://www.youtube.com/@petragurin", "https://twitter.com/Petra_Gurin/"], "subreddit": ["Nijisanji"]}, "path": {"250-258": [[-632, -254], [-628, -250], [-630, -248], [-634, -248], [-636, -250]]}, "center": {"250-258": [-632, -250]}}, +{"id": 5164, "name": "Sekibanki", "description": "A rokurorubi (a type of youkai who has a stretchable neck) who first appeared in Touhou 14: Double Dealing Character. She also has the ability to detach her head from her body and create clones of them. Sekibanki's head being the only part of her shown in the canvas emphasizes that detaching ability.\n\nShe has recently got a surge of popularity when Akatsuki Records released a vocal single named \"Rock 'n' Rock 'n' Beat\", an arrange of her theme \"Dullahan Under the Willows\". The phrase \"Bang Bang Sekibanki\" has become a meme in the Touhou community due to how catchy that part of the lyrics is.", "links": {"website": ["https://en.touhouwiki.net/wiki/Sekibanki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"250-258, T": [[-525, 48], [-532, 48], [-533, 49], [-533, 57], [-533, 58], [-523, 58], [-523, 53]]}, "center": {"250-258, T": [-528, 53]}}, +{"id": 5165, "name": "Pentomo", "description": "Pentomos are the fan mascot of the Nijisanji EN VTuber, Petra Gurin. They are round penguins with crowns meant to resemble Petra's hair bun.", "links": {"website": ["https://www.nijisanji.jp/talents/l/petra-gurin", "https://www.youtube.com/@petragurin", "https://twitter.com/Petra_Gurin/"], "subreddit": ["Nijisanji"]}, "path": {"250-258, T": [[-632, -254], [-628, -250], [-630, -248], [-634, -248], [-636, -250]]}, "center": {"250-258, T": [-632, -250]}}, {"id": 5166, "name": "Foxhole: Dead Harvest", "description": "Foxhole is a cooperative sandbox massively-multiplayer action-strategy video game developed and published by Canadian video game company Siege Camp, who are based in Toronto, Ontario. The game uses Unreal Engine 4, utilizing an axonometric projection perspective, much like that of a conventional real-time strategy video game with a top-down view. Foxhole's setting is \"inspired by early 20th century warfare\".\n\nFoxhole: Dead Harvest is a Halloween event that occurred in 2018, 2019, and 2020 where zombies and unique mech vehicles were available.", "links": {"website": ["https://www.foxholegame.com/"], "subreddit": ["foxholegame"]}, "path": {"150-160": [[-64, -912], [-64, -841], [-127, -841], [-127, -878], [-125, -878], [-126, -902], [-116, -902], [-117, -912]]}, "center": {"150-160": [-95, -872]}}, -{"id": 5167, "name": "Geocache III", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is a hanging bison tube (appropriately beside a tree).", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"250-258": [[295, 144], [300, 144], [300, 135], [298, 133], [299, 131], [297, 130], [296, 132], [297, 133], [295, 135]]}, "center": {"250-258": [298, 138]}}, -{"id": 5168, "name": "Existence SMP & nBrand", "description": "Existence SMP is an online Minecraft community established March 20th, 2016.\n\nnBrand is a player group on Community Server 2, the community's flagship server as of July 2023.\n\nThe colors on the top represent past and current servers of Existence SMP, and the nB below resembles the nBrand logo.", "links": {"website": ["https://existencesmp.com", "https://nbrand.net"], "discord": ["0149hOv271sOMiFJq"]}, "path": {"226-258": [[383, 361], [383, 350], [373, 350], [373, 352], [371, 352], [371, 361]]}, "center": {"226-258": [377, 356]}}, +{"id": 5167, "name": "Geocache III", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is a hanging bison tube (appropriately beside a tree).", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"250-258, T": [[295, 144], [300, 144], [300, 135], [298, 133], [299, 131], [297, 130], [296, 132], [297, 133], [295, 135]]}, "center": {"250-258, T": [298, 138]}}, +{"id": 5168, "name": "Existence SMP & nBrand", "description": "Existence SMP is an online Minecraft community established March 20th, 2016.\n\nnBrand is a player group on Community Server 2, the community's flagship server as of July 2023.\n\nThe colors on the top represent past and current servers of Existence SMP, and the nB below resembles the nBrand logo.", "links": {"website": ["https://existencesmp.com", "https://nbrand.net"], "discord": ["0149hOv271sOMiFJq"]}, "path": {"226-258, T": [[383, 361], [383, 350], [373, 350], [373, 352], [371, 352], [371, 361]]}, "center": {"226-258, T": [377, 356]}}, {"id": 5169, "name": "Attempt of Don-chan from Taiko No Tatsujin", "description": "Taiko No Tatsujin community tried to get a new spot but encountered with miku and soon meet their demise with big streamer", "links": {"subreddit": ["taikonotatsujin"], "discord": ["SJvRubwBpz"]}, "path": {"118-123": [[-804, -627], [-804, -624], [-803, -623], [-803, -622], [-802, -621], [-801, -621], [-800, -620], [-797, -620], [-796, -621], [-795, -621], [-794, -622], [-794, -623], [-793, -624], [-793, -627]]}, "center": {"118-123": [-798, -623]}}, -{"id": 5170, "name": "Bosnia & Lukas", "description": "Popular pets of the streamer couple Auronplay & Biyin, made by the community of Biyin.", "links": {"website": ["https://www.twitch.tv/biyin_"], "discord": ["biyiners"]}, "path": {"250-258": [[457, 971], [457, 1000], [501, 998], [501, 971]]}, "center": {"250-258": [471, 985]}}, -{"id": 5171, "name": "Sans", "description": "Sans is a character created by Toby Fox for the 2015 video game Undertale. \n\nInitially appearing as a friendly NPC with an easy-going and laid-back personality, he becomes the de-facto final boss if the player chooses to complete the \"genocide route\" and go out of their way to destroy every one of the game's monsters.\n\nHis name is based on the Comic Sans font, which is used for most of his in-game dialogue. His popularity with fans inspired several user-created mods and other types of projects.", "links": {"website": ["https://en.wikipedia.org/wiki/Sans_(Undertale)"]}, "path": {"164-258": [[722, -925], [730, -925], [731, -924], [732, -924], [733, -923], [733, -922], [734, -921], [734, -918], [733, -917], [734, -916], [734, -913], [732, -913], [731, -912], [721, -912], [720, -913], [719, -913], [718, -914], [718, -916], [719, -917], [718, -918], [718, -921], [719, -922], [719, -923], [720, -924], [721, -924]]}, "center": {"164-258": [726, -918]}}, -{"id": 5172, "name": "Lamorn and Molly Otto", "description": "Lamorn and Molly Otto are both electronic music producers.\nThis logo is based on the artwork of their collab single \"Sonic\", where both Lamorn's and Otto's logos are combined into one.", "links": {"website": ["https://www.lamorn.world/", "https://www.mollyotto.net/"], "discord": ["8vRwnhsrxZ"]}, "path": {"250-258": [[1212, -12], [1228, -12], [1228, -8], [1212, -8]]}, "center": {"250-258": [1220, -10]}}, -{"id": 5173, "name": "Guernsey Flag", "description": "The flag of the Bailiwick of Guernsey--a self governing island in the English Channel controlled by the United Kingdom", "links": {"website": ["https://en.wikipedia.org/wiki/Bailiwick_of_Guernsey"]}, "path": {"250-258": [[-334, -275], [-320, -275], [-320, -267], [-334, -267]]}, "center": {"250-258": [-327, -271]}}, -{"id": 5174, "name": "Geocache I", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is an ammo can overlaid on the colourful version of the geocaching logo.", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"250-258": [[1215, -771], [1227, -771], [1227, -759], [1215, -759]]}, "center": {"250-258": [1221, -765]}}, -{"id": 5175, "name": "Leonarda/o", "description": "Leonarda, también conocida como Leonardo, es un huevo de dragón que forma parte del QSMP. Durante el evento de adopción que tuvo lugar el 3 de abril de 2023, fue adoptada por Foolish y Vegetta. Ha asumido el papel de \"nepo-baby\". Habilidades: Rica, mimada, constructora, expresiva, dramática. Tambien enseña a Foolish español con \"Leolingo\"", "links": {"website": ["https://qsmp.fandom.com/es/wiki/Leonarda"]}, "path": {"109-258": [[404, 475], [413, 475], [413, 486], [404, 486], [404, 487]]}, "center": {"109-258": [409, 481]}}, -{"id": 5176, "name": "Arch Linux", "description": "Arch Linux is a simple, lightweight Linux distribution created for computers with x86-64 processors. Arch Linux adheres to the KISS principle (Keep It Simple, Stupid).", "links": {"website": ["https://archlinux.org/", "https://en.wikipedia.org/wiki/Arch_Linux"], "subreddit": ["archlinux"]}, "path": {"123-259": [[134, -355], [130, -349], [130, -347], [132, -347], [134, -349], [136, -347], [138, -347], [138, -349]]}, "center": {"123-259": [134, -351]}}, -{"id": 5177, "name": "Flag of Champagne", "description": "Champagne is a historical region of France.", "links": {"website": ["https://en.wikipedia.org/wiki/Champagne_(province)"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"199-258, 24-30, 40-58": [[-451, 272], [-451, 279], [-442, 279], [-442, 272]]}, "center": {"199-258, 24-30, 40-58": [-446, 276]}}, +{"id": 5170, "name": "Bosnia & Lukas", "description": "Popular pets of the streamer couple Auronplay & Biyin, made by the community of Biyin.", "links": {"website": ["https://www.twitch.tv/biyin_"], "discord": ["biyiners"]}, "path": {"250-258, T": [[457, 971], [457, 1000], [501, 998], [501, 971]]}, "center": {"250-258, T": [471, 985]}}, +{"id": 5171, "name": "Sans", "description": "Sans is a character created by Toby Fox for the 2015 video game Undertale. \n\nInitially appearing as a friendly NPC with an easy-going and laid-back personality, he becomes the de-facto final boss if the player chooses to complete the \"genocide route\" and go out of their way to destroy every one of the game's monsters.\n\nHis name is based on the Comic Sans font, which is used for most of his in-game dialogue. His popularity with fans inspired several user-created mods and other types of projects.", "links": {"website": ["https://en.wikipedia.org/wiki/Sans_(Undertale)"]}, "path": {"164-258, T": [[722, -925], [730, -925], [731, -924], [732, -924], [733, -923], [733, -922], [734, -921], [734, -918], [733, -917], [734, -916], [734, -913], [732, -913], [731, -912], [721, -912], [720, -913], [719, -913], [718, -914], [718, -916], [719, -917], [718, -918], [718, -921], [719, -922], [719, -923], [720, -924], [721, -924]]}, "center": {"164-258, T": [726, -918]}}, +{"id": 5172, "name": "Lamorn and Molly Otto", "description": "Lamorn and Molly Otto are both electronic music producers.\nThis logo is based on the artwork of their collab single \"Sonic\", where both Lamorn's and Otto's logos are combined into one.", "links": {"website": ["https://www.lamorn.world/", "https://www.mollyotto.net/"], "discord": ["8vRwnhsrxZ"]}, "path": {"250-258, T": [[1212, -12], [1228, -12], [1228, -8], [1212, -8]]}, "center": {"250-258, T": [1220, -10]}}, +{"id": 5173, "name": "Guernsey Flag", "description": "The flag of the Bailiwick of Guernsey--a self governing island in the English Channel controlled by the United Kingdom", "links": {"website": ["https://en.wikipedia.org/wiki/Bailiwick_of_Guernsey"]}, "path": {"250-258, T": [[-334, -275], [-320, -275], [-320, -267], [-334, -267]]}, "center": {"250-258, T": [-327, -271]}}, +{"id": 5174, "name": "Geocache I", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is an ammo can overlaid on the colourful version of the geocaching logo.", "links": {"website": ["https://www.geocaching.com"], "subreddit": ["geocaching"]}, "path": {"250-258, T": [[1215, -771], [1227, -771], [1227, -759], [1215, -759]]}, "center": {"250-258, T": [1221, -765]}}, +{"id": 5175, "name": "Leonarda/o", "description": "Leonarda, también conocida como Leonardo, es un huevo de dragón que forma parte del QSMP. Durante el evento de adopción que tuvo lugar el 3 de abril de 2023, fue adoptada por Foolish y Vegetta. Ha asumido el papel de \"nepo-baby\". Habilidades: Rica, mimada, constructora, expresiva, dramática. Tambien enseña a Foolish español con \"Leolingo\"", "links": {"website": ["https://qsmp.fandom.com/es/wiki/Leonarda"]}, "path": {"109-258, T": [[404, 475], [413, 475], [413, 486], [404, 486], [404, 487]]}, "center": {"109-258, T": [409, 481]}}, +{"id": 5176, "name": "Arch Linux", "description": "Arch Linux is a simple, lightweight Linux distribution created for computers with x86-64 processors. Arch Linux adheres to the KISS principle (Keep It Simple, Stupid).", "links": {"website": ["https://archlinux.org/", "https://en.wikipedia.org/wiki/Arch_Linux"], "subreddit": ["archlinux"]}, "path": {"123-259, T": [[134, -355], [130, -349], [130, -347], [132, -347], [134, -349], [136, -347], [138, -347], [138, -349]]}, "center": {"123-259, T": [134, -351]}}, +{"id": 5177, "name": "Flag of Champagne", "description": "Champagne is a historical region of France.", "links": {"website": ["https://en.wikipedia.org/wiki/Champagne_(province)"], "subreddit": ["placeFR", "france"], "discord": ["placeFR"]}, "path": {"199-258, 24-30, 40-58, T": [[-451, 272], [-451, 279], [-442, 279], [-442, 272]]}, "center": {"199-258, 24-30, 40-58, T": [-446, 276]}}, {"id": 5178, "name": "German Garmendia Logo", "description": "Germán Garmendia is a Chilean YouTuber, comedian and singer-songwriter. He rose to fame in 2011 after uploading videos to the YouTube platform on his HolaSoyGerman channel. and later also to Juega German.", "links": {"website": ["https://www.youtube.com/@HolaSoyGerman", "https://www.youtube.com/@JuegaGerman"], "discord": ["6Vq3y24C"]}, "path": {"174-192": [[-1175, -206], [-1157, -205], [-1156, -191], [-1175, -191]]}, "center": {"174-192": [-1166, -198]}}, {"id": 5179, "name": "Skyblock Beyond 2", "description": "Skyblock Beyond 2 (SB2) is a map for the game Minecraft. It was created by Crewmitglied789.", "links": {}, "path": {"10-16": [[-169, 494], [-169, 500], [-157, 500], [-157, 494]]}, "center": {"10-16": [-163, 497]}}, {"id": 5180, "name": "Skyblock Beyond 2", "description": "Skyblock Beyond 2 (SB2) is a map for the game Minecraft. It was created by Crewmitglied789.", "links": {}, "path": {"10-16": [[-169, 494], [-169, 500], [-157, 500], [-157, 494]]}, "center": {"10-16": [-163, 497]}}, -{"id": 5181, "name": "Scottish unicorn", "description": "The Scottish unicorn is a long and storied animal, believed to have originated in Celtic mythology with its connotations of purity and the like. By the 12th century, it had become associated closely with Scotland, particularly Scottish kings. It has often been seen as symbollic of the Scottish people themselves.", "links": {"website": ["https://en.wikipedia.org/wiki/National_symbols_of_Scotland"], "subreddit": ["Scotland", "UKOnPlace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"242-258": [[1123, 790], [1122, 791], [1121, 792], [1119, 792], [1118, 793], [1117, 794], [1117, 799], [1116, 798], [1115, 799], [1115, 801], [1117, 803], [1117, 805], [1116, 805], [1114, 807], [1115, 808], [1115, 813], [1116, 814], [1117, 813], [1117, 816], [1118, 817], [1118, 818], [1120, 820], [1121, 820], [1122, 819], [1121, 818], [1121, 817], [1120, 816], [1120, 813], [1121, 813], [1124, 810], [1124, 811], [1127, 814], [1128, 814], [1129, 815], [1130, 815], [1131, 814], [1129, 812], [1128, 812], [1127, 811], [1127, 807], [1125, 805], [1124, 805], [1125, 804], [1127, 804], [1127, 805], [1128, 806], [1130, 804], [1130, 801], [1129, 800], [1128, 800], [1127, 799], [1126, 800], [1125, 800], [1125, 799], [1124, 798], [1125, 798], [1126, 797], [1126, 795], [1125, 794], [1124, 794], [1123, 793], [1124, 792], [1124, 791]]}, "center": {"242-258": [1120, 808]}}, -{"id": 5182, "name": "Welsh Dragon", "description": "The Welsh Dragon, also known as the Red Dragon of Cadwaladr, is a symbol of Wales, appearing on the Welsh flag and other Welsh heraldry. The symbol originated from the 7th-century king Cadwaladr, who reigned over lands that are now modern-day Wales. It has recently gained the colloquial name Dewi (David) in relation to Saint David, the Welsh patron saint.\n\nThis dragon was made in collaboration with r/placewales.", "links": {"website": ["https://en.wikipedia.org/wiki/Welsh_Dragon"], "subreddit": ["placewales", "UKOnPlace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"242-258": [[1118, 824], [1111, 828], [1111, 829], [1107, 829], [1107, 842], [1112, 846], [1113, 846], [1114, 845], [1116, 845], [1118, 847], [1118, 848], [1114, 851], [1114, 852], [1122, 852], [1122, 849], [1125, 849], [1125, 853], [1132, 853], [1132, 846], [1135, 849], [1137, 850], [1139, 850], [1139, 848], [1135, 844], [1135, 840], [1138, 836], [1138, 832], [1139, 831], [1137, 828], [1135, 830], [1134, 828], [1128, 828], [1125, 830], [1123, 834], [1120, 837], [1119, 837], [1119, 833], [1120, 833], [1120, 828]]}, "center": {"242-258": [1128, 840]}}, -{"id": 5183, "name": "English Lion", "description": "The national animal of England is a lion. It originated in the former Kingdom of England, going back the arms of King Richard I, commonly known as Richard the Lionheart, around the late 1100s. Since then it has been closely associated and tied to England's symbolism, including three lions (from the old kingdom) as the English association football (soccer) team logo.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_England"], "subreddit": ["england", "UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"241-258": [[1122, 855], [1118, 858], [1118, 859], [1113, 859], [1110, 863], [1110, 864], [1111, 865], [1111, 873], [1113, 873], [1113, 878], [1112, 879], [1115, 882], [1116, 882], [1118, 880], [1119, 880], [1120, 881], [1122, 881], [1122, 882], [1124, 884], [1127, 884], [1130, 882], [1132, 880], [1132, 873], [1134, 873], [1134, 869], [1132, 867], [1132, 864], [1135, 864], [1137, 862], [1137, 858], [1135, 858], [1133, 860], [1130, 860], [1130, 859], [1127, 856], [1125, 856], [1124, 855]]}, "center": {"241-258": [1122, 869]}}, -{"id": 5184, "name": "British national animals", "description": "Placed vertically along the United Kingdom flag are the three national animals of the countries of Great Britain: the English Lion, the Scottish Unicorn, and the Welsh Y Ddraig Goch (The Red Dragon). Northern Ireland has no national animal, and thus is not represented here.", "links": {"subreddit": ["england", "placewales", "scotland", "UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"241-258": [[1123, 789], [1121, 792], [1119, 792], [1117, 794], [1117, 798], [1115, 798], [1115, 806], [1114, 807], [1114, 826], [1107, 831], [1107, 838], [1108, 839], [1108, 842], [1110, 844], [1110, 864], [1111, 865], [1111, 873], [1112, 873], [1112, 879], [1115, 882], [1122, 882], [1124, 884], [1127, 884], [1132, 880], [1132, 873], [1134, 873], [1134, 869], [1131, 865], [1132, 864], [1137, 864], [1137, 850], [1139, 850], [1139, 848], [1138, 847], [1138, 831], [1136, 829], [1135, 829], [1134, 828], [1131, 828], [1131, 814], [1130, 813], [1130, 800], [1128, 800], [1127, 799], [1126, 800], [1126, 794], [1124, 794], [1124, 789]]}, "center": {"241-258": [1124, 840]}}, -{"id": 5185, "name": "White Cliffs of Dover", "description": "The White Cliffs of Dover are a timeless symbol of Britain, a geographical oddity found near Dover on the southern coast of the country. The cliffs are made of chalk, which gives them their white color. They are close enough to be seen from France on a good day, and have long served as deterrent against invasions of the UK, going back to Roman emperor Julius Caesar, who wrote of them in his first mention of Britain as \"a wild island with giant natural fortification\". They became a symbol of national pride during World War II, largely thanks to Dane Vera Lynn's song \"The White Cliffs of Dover\". The cliffs have been featured in Shakespeare's works, and were the site where Charles II returned to reinstate the monarchy after the interregnum. They have also hosted many world records such as the site of the world's first international radio transmission.", "links": {"website": ["https://en.wikipedia.org/wiki/White_Cliffs_of_Dover"], "subreddit": ["UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"209-258": [[1026, 876], [1017, 882], [1012, 894], [1016, 896], [1016, 898], [1046, 898], [1046, 895], [1038, 888], [1035, 878], [1033, 876]]}, "center": {"209-258": [1027, 888]}}, -{"id": 5186, "name": "St Paul's Cathedral", "description": "St Paul's Cathedral is a famous cathedral in London, United Kingdom.", "links": {"website": ["https://en.wikipedia.org/wiki/St_Paul%27s_Cathedral"], "subreddit": ["UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"211-258": [[1085, 849], [1083, 851], [1083, 862], [1082, 862], [1082, 865], [1077, 870], [1075, 877], [1075, 879], [1073, 879], [1073, 887], [1070, 887], [1070, 898], [1111, 898], [1116, 891], [1116, 887], [1115, 887], [1115, 882], [1112, 876], [1109, 882], [1109, 887], [1098, 887], [1097, 886], [1097, 879], [1095, 879], [1095, 876], [1087, 862], [1087, 851]]}, "center": {"211-258": [1085, 886]}}, -{"id": 5187, "name": "The Gherkin", "description": "The Gherkin, a.k.a. 30 St Mary Axe, is a distinctive skyscraper in London, United Kingdom. Its name comes from its resemblance to a pickled gherkin.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Gherkin"], "subreddit": ["UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"211-258": [[1071, 854], [1068, 858], [1068, 860], [1070, 862], [1070, 865], [1071, 866], [1071, 873], [1070, 873], [1070, 888], [1072, 888], [1074, 886], [1074, 880], [1077, 880], [1077, 873], [1078, 870], [1078, 866], [1074, 855]]}, "center": {"211-258": [1075, 869]}}, -{"id": 5188, "name": "The Shard", "description": "The Shard is a skyscraper in London, United Kingdom. It is known for lacking a roof, and has a viewing area that allows visitors to see up to 40 miles (64 kilometers) away.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Shard"], "subreddit": ["UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"210-258": [[1080, 836], [1075, 857], [1078, 870], [1083, 865], [1083, 863], [1084, 862], [1084, 857], [1085, 856], [1085, 853]]}, "center": {"210-258": [1080, 854]}}, -{"id": 5189, "name": "London Eye", "description": "The London Eye is a Ferris wheel in central London, United Kingdom, and is arguably the most famous Ferris wheel in the world. It has 32 pods, one for each of London's 32 boroughs, and is a popular tourist attraction. It opened on December 31st, 1999. The largest Wheel of its kind in Europe, it is 135 metres tall at its top, with an 120-metre diameter.", "links": {"website": ["https://en.wikipedia.org/wiki/London_Eye"], "subreddit": ["UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"210-258": [[1050, 851], [1048, 853], [1043, 855], [1041, 857], [1039, 862], [1037, 864], [1038, 865], [1039, 865], [1039, 874], [1043, 874], [1045, 870], [1046, 873], [1046, 880], [1060, 880], [1060, 874], [1059, 873], [1059, 865], [1063, 857], [1067, 857], [1068, 858], [1070, 858], [1070, 857], [1068, 855], [1061, 851]]}, "center": {"210-258": [1050, 862]}}, -{"id": 5190, "name": "MrPapu", "description": "MrPapu is a shitposting YouTuber who started uploading videos in 2022. This image is his skin from the game Minecraft, which he uses at the end of all his videos.", "links": {"website": ["https://www.youtube.com/@Mr_Papu"], "discord": ["8SpSbgaSPa"]}, "path": {"220-237": [[-1149, -918], [-1149, -910], [-1140, -910], [-1140, -918]], "246-258": [[-1148, -918], [-1148, -910], [-1140, -910], [-1140, -918]]}, "center": {"220-237": [-1144, -914], "246-258": [-1144, -914]}}, -{"id": 5191, "name": "Map of Karnataka", "description": "Karnataka, located in southern India, is a state known for its rich cultural heritage, majestic palaces, ancient temples, and breathtaking landscapes, including the picturesque Western Ghats. The state's capital Bengaluru/Bangalore is the innovation hub of the country. \n\nVisit Beautiful Karnataka: \nhttps://karnatakatourism.org/", "links": {"website": ["https://en.wikipedia.org/wiki/Karnataka"]}, "path": {"250-258": [[284, 902], [284, 924], [298, 924], [298, 902]]}, "center": {"250-258": [291, 913]}}, -{"id": 5192, "name": "Tyler, the Creator - Wolf", "description": "Wolf is the second studio album by the rapper Tyler, the Creator, released in 2013. \nThe artwork celebrates the 10th anniversary of the album release.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Wolf_(Tyler,_the_Creator_album)", "https://www.youtube.com/watch?v=AknjeiApwhg&list=PL8YH4mOwWryUDIn7cIJ7kyJTQwZfsdPZ-"], "subreddit": ["tylerthecreator"]}, "path": {"250-258": [[301, -520], [314, -520], [314, -534], [301, -534]]}, "center": {"250-258": [308, -527]}}, +{"id": 5181, "name": "Scottish unicorn", "description": "The Scottish unicorn is a long and storied animal, believed to have originated in Celtic mythology with its connotations of purity and the like. By the 12th century, it had become associated closely with Scotland, particularly Scottish kings. It has often been seen as symbollic of the Scottish people themselves.", "links": {"website": ["https://en.wikipedia.org/wiki/National_symbols_of_Scotland"], "subreddit": ["Scotland", "UKOnPlace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"242-258, T": [[1123, 790], [1122, 791], [1121, 792], [1119, 792], [1118, 793], [1117, 794], [1117, 799], [1116, 798], [1115, 799], [1115, 801], [1117, 803], [1117, 805], [1116, 805], [1114, 807], [1115, 808], [1115, 813], [1116, 814], [1117, 813], [1117, 816], [1118, 817], [1118, 818], [1120, 820], [1121, 820], [1122, 819], [1121, 818], [1121, 817], [1120, 816], [1120, 813], [1121, 813], [1124, 810], [1124, 811], [1127, 814], [1128, 814], [1129, 815], [1130, 815], [1131, 814], [1129, 812], [1128, 812], [1127, 811], [1127, 807], [1125, 805], [1124, 805], [1125, 804], [1127, 804], [1127, 805], [1128, 806], [1130, 804], [1130, 801], [1129, 800], [1128, 800], [1127, 799], [1126, 800], [1125, 800], [1125, 799], [1124, 798], [1125, 798], [1126, 797], [1126, 795], [1125, 794], [1124, 794], [1123, 793], [1124, 792], [1124, 791]]}, "center": {"242-258, T": [1120, 808]}}, +{"id": 5182, "name": "Welsh Dragon", "description": "The Welsh Dragon, also known as the Red Dragon of Cadwaladr, is a symbol of Wales, appearing on the Welsh flag and other Welsh heraldry. The symbol originated from the 7th-century king Cadwaladr, who reigned over lands that are now modern-day Wales. It has recently gained the colloquial name Dewi (David) in relation to Saint David, the Welsh patron saint.\n\nThis dragon was made in collaboration with r/placewales.", "links": {"website": ["https://en.wikipedia.org/wiki/Welsh_Dragon"], "subreddit": ["placewales", "UKOnPlace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"242-258, T": [[1118, 824], [1111, 828], [1111, 829], [1107, 829], [1107, 842], [1112, 846], [1113, 846], [1114, 845], [1116, 845], [1118, 847], [1118, 848], [1114, 851], [1114, 852], [1122, 852], [1122, 849], [1125, 849], [1125, 853], [1132, 853], [1132, 846], [1135, 849], [1137, 850], [1139, 850], [1139, 848], [1135, 844], [1135, 840], [1138, 836], [1138, 832], [1139, 831], [1137, 828], [1135, 830], [1134, 828], [1128, 828], [1125, 830], [1123, 834], [1120, 837], [1119, 837], [1119, 833], [1120, 833], [1120, 828]]}, "center": {"242-258, T": [1128, 840]}}, +{"id": 5183, "name": "English Lion", "description": "The national animal of England is a lion. It originated in the former Kingdom of England, going back the arms of King Richard I, commonly known as Richard the Lionheart, around the late 1100s. Since then it has been closely associated and tied to England's symbolism, including three lions (from the old kingdom) as the English association football (soccer) team logo.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_England"], "subreddit": ["england", "UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"241-258, T": [[1122, 855], [1118, 858], [1118, 859], [1113, 859], [1110, 863], [1110, 864], [1111, 865], [1111, 873], [1113, 873], [1113, 878], [1112, 879], [1115, 882], [1116, 882], [1118, 880], [1119, 880], [1120, 881], [1122, 881], [1122, 882], [1124, 884], [1127, 884], [1130, 882], [1132, 880], [1132, 873], [1134, 873], [1134, 869], [1132, 867], [1132, 864], [1135, 864], [1137, 862], [1137, 858], [1135, 858], [1133, 860], [1130, 860], [1130, 859], [1127, 856], [1125, 856], [1124, 855]]}, "center": {"241-258, T": [1122, 869]}}, +{"id": 5184, "name": "British national animals", "description": "Placed vertically along the United Kingdom flag are the three national animals of the countries of Great Britain: the English Lion, the Scottish Unicorn, and the Welsh Y Ddraig Goch (The Red Dragon). Northern Ireland has no national animal, and thus is not represented here.", "links": {"subreddit": ["england", "placewales", "scotland", "UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"241-258, T": [[1123, 789], [1121, 792], [1119, 792], [1117, 794], [1117, 798], [1115, 798], [1115, 806], [1114, 807], [1114, 826], [1107, 831], [1107, 838], [1108, 839], [1108, 842], [1110, 844], [1110, 864], [1111, 865], [1111, 873], [1112, 873], [1112, 879], [1115, 882], [1122, 882], [1124, 884], [1127, 884], [1132, 880], [1132, 873], [1134, 873], [1134, 869], [1131, 865], [1132, 864], [1137, 864], [1137, 850], [1139, 850], [1139, 848], [1138, 847], [1138, 831], [1136, 829], [1135, 829], [1134, 828], [1131, 828], [1131, 814], [1130, 813], [1130, 800], [1128, 800], [1127, 799], [1126, 800], [1126, 794], [1124, 794], [1124, 789]]}, "center": {"241-258, T": [1124, 840]}}, +{"id": 5185, "name": "White Cliffs of Dover", "description": "The White Cliffs of Dover are a timeless symbol of Britain, a geographical oddity found near Dover on the southern coast of the country. The cliffs are made of chalk, which gives them their white color. They are close enough to be seen from France on a good day, and have long served as deterrent against invasions of the UK, going back to Roman emperor Julius Caesar, who wrote of them in his first mention of Britain as \"a wild island with giant natural fortification\". They became a symbol of national pride during World War II, largely thanks to Dane Vera Lynn's song \"The White Cliffs of Dover\". The cliffs have been featured in Shakespeare's works, and were the site where Charles II returned to reinstate the monarchy after the interregnum. They have also hosted many world records such as the site of the world's first international radio transmission.", "links": {"website": ["https://en.wikipedia.org/wiki/White_Cliffs_of_Dover"], "subreddit": ["UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"209-258, T": [[1026, 876], [1017, 882], [1012, 894], [1016, 896], [1016, 898], [1046, 898], [1046, 895], [1038, 888], [1035, 878], [1033, 876]]}, "center": {"209-258, T": [1027, 888]}}, +{"id": 5186, "name": "St Paul's Cathedral", "description": "St Paul's Cathedral is a famous cathedral in London, United Kingdom.", "links": {"website": ["https://en.wikipedia.org/wiki/St_Paul%27s_Cathedral"], "subreddit": ["UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"211-258, T": [[1085, 849], [1083, 851], [1083, 862], [1082, 862], [1082, 865], [1077, 870], [1075, 877], [1075, 879], [1073, 879], [1073, 887], [1070, 887], [1070, 898], [1111, 898], [1116, 891], [1116, 887], [1115, 887], [1115, 882], [1112, 876], [1109, 882], [1109, 887], [1098, 887], [1097, 886], [1097, 879], [1095, 879], [1095, 876], [1087, 862], [1087, 851]]}, "center": {"211-258, T": [1085, 886]}}, +{"id": 5187, "name": "The Gherkin", "description": "The Gherkin, a.k.a. 30 St Mary Axe, is a distinctive skyscraper in London, United Kingdom. Its name comes from its resemblance to a pickled gherkin.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Gherkin"], "subreddit": ["UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"211-258, T": [[1071, 854], [1068, 858], [1068, 860], [1070, 862], [1070, 865], [1071, 866], [1071, 873], [1070, 873], [1070, 888], [1072, 888], [1074, 886], [1074, 880], [1077, 880], [1077, 873], [1078, 870], [1078, 866], [1074, 855]]}, "center": {"211-258, T": [1075, 869]}}, +{"id": 5188, "name": "The Shard", "description": "The Shard is a skyscraper in London, United Kingdom. It is known for lacking a roof, and has a viewing area that allows visitors to see up to 40 miles (64 kilometers) away.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Shard"], "subreddit": ["UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"210-258, T": [[1080, 836], [1075, 857], [1078, 870], [1083, 865], [1083, 863], [1084, 862], [1084, 857], [1085, 856], [1085, 853]]}, "center": {"210-258, T": [1080, 854]}}, +{"id": 5189, "name": "London Eye", "description": "The London Eye is a Ferris wheel in central London, United Kingdom, and is arguably the most famous Ferris wheel in the world. It has 32 pods, one for each of London's 32 boroughs, and is a popular tourist attraction. It opened on December 31st, 1999. The largest Wheel of its kind in Europe, it is 135 metres tall at its top, with an 120-metre diameter.", "links": {"website": ["https://en.wikipedia.org/wiki/London_Eye"], "subreddit": ["UKOnPlace", "ukplace"], "discord": ["UKOnPlace", "ukplace"]}, "path": {"210-258, T": [[1050, 851], [1048, 853], [1043, 855], [1041, 857], [1039, 862], [1037, 864], [1038, 865], [1039, 865], [1039, 874], [1043, 874], [1045, 870], [1046, 873], [1046, 880], [1060, 880], [1060, 874], [1059, 873], [1059, 865], [1063, 857], [1067, 857], [1068, 858], [1070, 858], [1070, 857], [1068, 855], [1061, 851]]}, "center": {"210-258, T": [1050, 862]}}, +{"id": 5190, "name": "MrPapu", "description": "MrPapu is a shitposting YouTuber who started uploading videos in 2022. This image is his skin from the game Minecraft, which he uses at the end of all his videos.", "links": {"website": ["https://www.youtube.com/@Mr_Papu"], "discord": ["8SpSbgaSPa"]}, "path": {"220-237": [[-1149, -918], [-1149, -910], [-1140, -910], [-1140, -918]], "246-258, T": [[-1148, -918], [-1148, -910], [-1140, -910], [-1140, -918]]}, "center": {"220-237": [-1144, -914], "246-258, T": [-1144, -914]}}, +{"id": 5191, "name": "Map of Karnataka", "description": "Karnataka, located in southern India, is a state known for its rich cultural heritage, majestic palaces, ancient temples, and breathtaking landscapes, including the picturesque Western Ghats. The state's capital Bengaluru/Bangalore is the innovation hub of the country. \n\nVisit Beautiful Karnataka: \nhttps://karnatakatourism.org/", "links": {"website": ["https://en.wikipedia.org/wiki/Karnataka"]}, "path": {"250-258, T": [[284, 902], [284, 924], [298, 924], [298, 902]]}, "center": {"250-258, T": [291, 913]}}, +{"id": 5192, "name": "Tyler, the Creator - Wolf", "description": "Wolf is the second studio album by the rapper Tyler, the Creator, released in 2013. \nThe artwork celebrates the 10th anniversary of the album release.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Wolf_(Tyler,_the_Creator_album)", "https://www.youtube.com/watch?v=AknjeiApwhg&list=PL8YH4mOwWryUDIn7cIJ7kyJTQwZfsdPZ-"], "subreddit": ["tylerthecreator"]}, "path": {"250-258, T": [[301, -520], [314, -520], [314, -534], [301, -534]]}, "center": {"250-258, T": [308, -527]}}, {"id": 5193, "name": "Katsu-chan from Taiko no Tatsujin", "description": "My boy has seen unspeakable horrors and kept very chill while xQc was attacking the big dragon, it did not survive Vietnam sadly", "links": {"subreddit": ["taikonotatsujin"], "discord": ["SJvRubwBpz"]}, "path": {"208": [[1294, 656], [1304, 656], [1304, 657], [1305, 659], [1306, 660], [1306, 667], [1305, 668], [1304, 671], [1302, 671], [1300, 669], [1298, 669], [1297, 670], [1295, 670], [1294, 669], [1293, 668], [1293, 667], [1292, 666], [1291, 665], [1291, 663], [1290, 662], [1290, 659], [1293, 657]], "209": [[1291, 659], [1292, 658], [1293, 657], [1294, 657], [1294, 656], [1306, 656], [1306, 657], [1307, 658], [1307, 659], [1308, 660], [1308, 665], [1307, 665], [1307, 666], [1306, 667], [1306, 668], [1305, 669], [1304, 670], [1303, 671], [1300, 669], [1299, 669], [1298, 669], [1296, 671], [1293, 668], [1293, 667], [1292, 666], [1291, 665], [1291, 664], [1290, 663], [1290, 660], [1294, 656]], "206-207": [[1294, 657], [1294, 656], [1298, 656], [1298, 657], [1299, 657], [1300, 657], [1300, 658], [1301, 658], [1301, 660], [1302, 661], [1302, 663], [1301, 664], [1300, 666], [1299, 667], [1298, 668], [1295, 668], [1294, 667], [1293, 667], [1292, 666], [1291, 665], [1291, 664], [1290, 663], [1290, 660], [1291, 660], [1292, 658], [1294, 657], [1293, 657], [1294, 657], [1294, 656]], "211-218": [[1295, 651], [1304, 651], [1304, 657], [1308, 660], [1308, 666], [1303, 670], [1295, 670], [1291, 663], [1292, 657], [1293, 656], [1294, 651], [1294, 652], [1293, 651]], "219-231": [[1291, 657], [1307, 657], [1307, 658], [1308, 659], [1308, 665], [1307, 665], [1307, 667], [1305, 669], [1305, 670], [1296, 670], [1295, 669], [1292, 666], [1291, 665], [1291, 664], [1290, 660], [1292, 658], [1292, 657]]}, "center": {"208": [1298, 663], "209": [1300, 662], "206-207": [1296, 662], "211-218": [1299, 662], "219-231": [1299, 664]}}, {"id": 5194, "name": "SR400X", "description": "Minecraft Content Creator\n- Texturepacker and Datapacker\n- Makes Command Tutorials on Youtube", "links": {"website": ["https://linktr.ee/sr400x"]}, "path": {"81-89": [[828, 313], [835, 313], [835, 320], [828, 320]]}, "center": {"81-89": [832, 317]}}, -{"id": 5195, "name": "Kiryu Kazuma", "description": "The Dragon of Dojima Kiryu Kazuma from the game series Ryu Ga Gotoku also known as in the western world Yakuza.", "links": {"subreddit": ["yakuzagames"]}, "path": {"250-258": [[-1136, -117], [-1135, -108], [-1129, -109], [-1130, -117], [-1130, -118]]}, "center": {"250-258": [-1133, -113]}}, -{"id": 5196, "name": "Luca POG!", "description": "The pixelated head of Luca Kaneshiro (ルカ・カネシロ), a male English-speaking Virtual YouTuber affiliated with NIJISANJI EN's fourth wave \"Luxiem\". His signature catchphrase \"POG!\" is written above his head.\n\nDespite claiming to be an \"evil and mean\" mafia boss, Luca is a sweet and energetic person who is sometimes compared to a golden retriever. Although he has a mischievous streak that often leads to him teasing others or causing mayhem in games, Luca's trollish antics are noted by his peers to be completely devoid of malice.\n\nHe is known for his love of using the word \"POG\" and frequent use of the phrase \"deez nuts\". He can also be surprisingly innocent and dense from time to time; notably, he often parrots things without thinking too much about them, sometimes even saying innuendos or double entendres without realizing their meaning.", "links": {"website": ["https://www.youtube.com/channel/UC7Gb7Uawe20QyFibhLl1lzA"], "subreddit": ["Nijisanji"], "discord": ["vtubersplace"]}, "path": {"115-258": [[-670, -306], [-670, -300], [-669, -300], [-669, -292], [-661, -292], [-661, -300], [-660, -300], [-658, -300], [-658, -306]]}, "center": {"115-258": [-665, -302]}}, -{"id": 5197, "name": "Crismensaurio", "description": "Streamer Colombiado dedicado a la creacion de contenido relacionado principalmente a anime y videojuegos, amannte de los dinosaurio y el juego de lulo! Ayudalo a crecer uwu", "links": {"website": ["https://www.twitch.tv/crismensaurio", "https://www.tiktok.com/@crismensaurio", "https://www.instagram.com/crismensaurio/", "https://twitter.com/crismensaurio"], "discord": ["9PzeGBn4fC"]}, "path": {"225-258": [[-1445, 162], [-1414, 162], [-1414, 170], [-1417, 170], [-1417, 176], [-1418, 176], [-1418, 197], [-1441, 198], [-1441, 170], [-1445, 170]]}, "center": {"225-258": [-1429, 178]}}, -{"id": 5198, "name": "Casablanca Cathedral", "description": "Casablanca Cathedral or Church of the Sacred Heart is a former Roman Catholic church located in Casablanca, Morocco was constructed in 1930.\",", "links": {"subreddit": ["morocco"]}, "path": {"250-258": [[263, 110], [265, 105], [266, 98], [269, 98], [273, 108], [285, 108], [287, 102], [289, 98], [291, 98], [293, 106], [296, 112], [296, 124], [264, 124], [263, 108]]}, "center": {"250-258": [276, 116]}}, +{"id": 5195, "name": "Kiryu Kazuma", "description": "The Dragon of Dojima Kiryu Kazuma from the game series Ryu Ga Gotoku also known as in the western world Yakuza.", "links": {"subreddit": ["yakuzagames"]}, "path": {"250-258, T": [[-1136, -117], [-1135, -108], [-1129, -109], [-1130, -117], [-1130, -118]]}, "center": {"250-258, T": [-1133, -113]}}, +{"id": 5196, "name": "Luca POG!", "description": "The pixelated head of Luca Kaneshiro (ルカ・カネシロ), a male English-speaking Virtual YouTuber affiliated with NIJISANJI EN's fourth wave \"Luxiem\". His signature catchphrase \"POG!\" is written above his head.\n\nDespite claiming to be an \"evil and mean\" mafia boss, Luca is a sweet and energetic person who is sometimes compared to a golden retriever. Although he has a mischievous streak that often leads to him teasing others or causing mayhem in games, Luca's trollish antics are noted by his peers to be completely devoid of malice.\n\nHe is known for his love of using the word \"POG\" and frequent use of the phrase \"deez nuts\". He can also be surprisingly innocent and dense from time to time; notably, he often parrots things without thinking too much about them, sometimes even saying innuendos or double entendres without realizing their meaning.", "links": {"website": ["https://www.youtube.com/channel/UC7Gb7Uawe20QyFibhLl1lzA"], "subreddit": ["Nijisanji"], "discord": ["vtubersplace"]}, "path": {"115-258, T": [[-670, -306], [-670, -300], [-669, -300], [-669, -292], [-661, -292], [-661, -300], [-660, -300], [-658, -300], [-658, -306]]}, "center": {"115-258, T": [-665, -302]}}, +{"id": 5197, "name": "Crismensaurio", "description": "Streamer Colombiado dedicado a la creacion de contenido relacionado principalmente a anime y videojuegos, amannte de los dinosaurio y el juego de lulo! Ayudalo a crecer uwu", "links": {"website": ["https://www.twitch.tv/crismensaurio", "https://www.tiktok.com/@crismensaurio", "https://www.instagram.com/crismensaurio/", "https://twitter.com/crismensaurio"], "discord": ["9PzeGBn4fC"]}, "path": {"225-258, T": [[-1445, 162], [-1414, 162], [-1414, 170], [-1417, 170], [-1417, 176], [-1418, 176], [-1418, 197], [-1441, 198], [-1441, 170], [-1445, 170]]}, "center": {"225-258, T": [-1429, 178]}}, +{"id": 5198, "name": "Casablanca Cathedral", "description": "Casablanca Cathedral or Church of the Sacred Heart is a former Roman Catholic church located in Casablanca, Morocco was constructed in 1930.\",", "links": {"subreddit": ["morocco"]}, "path": {"250-258, T": [[263, 110], [265, 105], [266, 98], [269, 98], [273, 108], [285, 108], [287, 102], [289, 98], [291, 98], [293, 106], [296, 112], [296, 124], [264, 124], [263, 108]]}, "center": {"250-258, T": [276, 116]}}, {"id": 5199, "name": "\"DJ\"", "description": "This is a character made by a user, u/SytherSnake, who created a subreddit that dedicates his own original character \"DJ\" which is shown in his other art that is created in his social media around Twitter and Reddit as well.", "links": {"website": ["https://twitter.com/SytherSnake"], "subreddit": ["DJ_Series"], "discord": ["FrfuBTaZ"]}, "path": {"243-248": [[-310, -1000], [-310, -992], [-292, -992], [-292, -1000], [-302, -1000]]}, "center": {"243-248": [-301, -996]}}, -{"id": 5200, "name": "Shion Yorigami", "description": "The older of the two Yorigami sisters, who made their debut in Touhou 15.5: Antinomy of Common Flowers, and later re-appearing in Touhou 17.5: Sunken Fossil World. She is a goddess of poverty, capable of bringing misfortune to anyone who comes into contact with it, but most of all herself, as she's holding all that negative energy within her body.\n\nThe origin for this art on the canvas isn't clear, but according to some members of the r/touhou discord server designated for r/place, it was originally intended to be a pixel art of Ryo Yamada, a character from the hit anime series Bocchi the Rock!, but was later terraformed to be Shion.", "links": {"website": ["https://en.touhouwiki.net/wiki/Shion_Yorigami"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"248-258": [[1254, 745], [1254, 746], [1255, 746], [1256, 746], [1257, 746], [1258, 746], [1260, 746], [1261, 746], [1262, 746], [1263, 746], [1263, 745], [1263, 744], [1264, 744], [1264, 743], [1264, 742], [1264, 741], [1264, 740], [1264, 739], [1264, 738], [1264, 737], [1264, 736], [1264, 735], [1264, 734], [1264, 733], [1264, 732], [1263, 732], [1262, 732], [1261, 732], [1260, 732], [1260, 733], [1259, 733], [1258, 733], [1257, 733], [1257, 732], [1256, 732], [1255, 732], [1254, 732], [1253, 732], [1253, 733], [1253, 734], [1253, 735], [1253, 736], [1253, 737], [1253, 738], [1253, 740], [1253, 741], [1253, 742], [1253, 743], [1253, 744], [1254, 744], [1254, 745], [1254, 746]]}, "center": {"248-258": [1259, 739]}}, +{"id": 5200, "name": "Shion Yorigami", "description": "The older of the two Yorigami sisters, who made their debut in Touhou 15.5: Antinomy of Common Flowers, and later re-appearing in Touhou 17.5: Sunken Fossil World. She is a goddess of poverty, capable of bringing misfortune to anyone who comes into contact with it, but most of all herself, as she's holding all that negative energy within her body.\n\nThe origin for this art on the canvas isn't clear, but according to some members of the r/touhou discord server designated for r/place, it was originally intended to be a pixel art of Ryo Yamada, a character from the hit anime series Bocchi the Rock!, but was later terraformed to be Shion.", "links": {"website": ["https://en.touhouwiki.net/wiki/Shion_Yorigami"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"248-258, T": [[1254, 745], [1254, 746], [1255, 746], [1256, 746], [1257, 746], [1258, 746], [1260, 746], [1261, 746], [1262, 746], [1263, 746], [1263, 745], [1263, 744], [1264, 744], [1264, 743], [1264, 742], [1264, 741], [1264, 740], [1264, 739], [1264, 738], [1264, 737], [1264, 736], [1264, 735], [1264, 734], [1264, 733], [1264, 732], [1263, 732], [1262, 732], [1261, 732], [1260, 732], [1260, 733], [1259, 733], [1258, 733], [1257, 733], [1257, 732], [1256, 732], [1255, 732], [1254, 732], [1253, 732], [1253, 733], [1253, 734], [1253, 735], [1253, 736], [1253, 737], [1253, 738], [1253, 740], [1253, 741], [1253, 742], [1253, 743], [1253, 744], [1254, 744], [1254, 745], [1254, 746]]}, "center": {"248-258, T": [1259, 739]}}, {"id": 5201, "name": "Littlepip", "description": "Littlepip is the main character and protagonist of Fallout Equestria. She is a unicorn pony, hailing from Stable 2 of the 100 Stables/Survival shelters of the post-apocalyptic wasteland.", "links": {"website": ["https://en.wikipedia.org/wiki/Fallout:_Equestria"], "subreddit": ["falloutequestria"]}, "path": {"80-98": [[-33, 209], [-23, 209], [-23, 201], [-28, 203], [-34, 208], [-34, 209], [-33, 208], [-32, 208], [-26, 208], [-28, 204]]}, "center": {"80-98": [-25, 204]}}, -{"id": 5202, "name": "Super Mario", "description": "Released in 1985 Super Mario Bros. established many core Mario elements, such as Goombas, Koopa Troopas, Bowser, Peach, and its three power-ups: the Super Mushroom, increasing the character's size and providing an extra hit point, Fire Flower, allowing the character to throw fireballs as weapons, and Super Star, granting temporary invincibility. The \"Super\" in the title came from the integration of the Super Mushroom into the game.[24] The brothers Mario and Luigi must rescue Princess Toadstool/Peach from Bowser/King Koopa in the Mushroom Kingdom.", "links": {"website": ["https://mario.nintendo.com/history/"]}, "path": {"214-258": [[-1209, 276], [-1209, 269], [-1208, 267], [-1209, 266], [-1209, 259], [-1207, 257], [-1206, 257], [-1208, 255], [-1208, 254], [-1206, 248], [-1202, 245], [-1199, 245], [-1197, 243], [-1193, 243], [-1192, 245], [-1192, 258], [-1194, 260], [-1195, 265], [-1193, 264], [-1192, 273], [-1199, 271], [-1201, 274], [-1206, 274]]}, "center": {"214-258": [-1200, 253]}}, -{"id": 5203, "name": "Akira Nishikiyama", "description": "Akira Nishikiyama from the game series Ryu Ga Gotoku also known as in the western world Yakuza.", "links": {"subreddit": ["yakuzagames"]}, "path": {"249-258": [[-1141, -93], [-1142, -86], [-1135, -86], [-1135, -93], [-1143, -94]]}, "center": {"249-258": [-1138, -89]}}, -{"id": 5204, "name": "Cyndaquil", "description": "Cyndaquil is a Fire-type Pokémon introduced in Generation II. Along with Chikorita and Totodile, Cyndaquil is one of the three starter Pokémon of Johto.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Cyndaquil_(Pok%C3%A9mon)"]}, "path": {"201-258": [[-1344, 359], [-1343, 359], [-1343, 357], [-1342, 357], [-1342, 355], [-1341, 355], [-1341, 354], [-1340, 354], [-1340, 353], [-1337, 353], [-1337, 354], [-1336, 354], [-1335, 354], [-1335, 352], [-1333, 352], [-1333, 353], [-1332, 353], [-1331, 353], [-1331, 352], [-1330, 352], [-1330, 351], [-1329, 351], [-1329, 352], [-1329, 353], [-1328, 353], [-1327, 353], [-1327, 352], [-1326, 352], [-1326, 351], [-1325, 351], [-1325, 353], [-1326, 353], [-1326, 354], [-1326, 355], [-1326, 356], [-1325, 356], [-1325, 357], [-1326, 357], [-1326, 360], [-1325, 360], [-1325, 361], [-1328, 361], [-1328, 362], [-1330, 362], [-1331, 364], [-1330, 364], [-1331, 364], [-1331, 365], [-1331, 367], [-1332, 367], [-1332, 368], [-1333, 368], [-1333, 367], [-1334, 367], [-1334, 366], [-1339, 366], [-1339, 365], [-1338, 365], [-1338, 363], [-1339, 363], [-1339, 362], [-1343, 362], [-1343, 361], [-1344, 361]]}, "center": {"201-258": [-1334, 359]}}, -{"id": 5205, "name": "Tatung Rice Cooker", "description": "Taiwanese rice cooker from the brand Tatung is Taiwan's emblematic cooking appliance, known for its durability and introduced in 1960.", "links": {"website": ["https://taiwantoday.tw/news.php?unit=8,29,32,45&post=12699", "https://www.tatung.com/en/products/index/513"]}, "path": {"250-258": [[-87, 578], [-92, 580], [-89, 586], [-85, 586], [-82, 580]]}, "center": {"250-258": [-87, 582]}}, -{"id": 5206, "name": "TIny Sweetie Belle", "description": "Sweetie Belle is a school-age unicorn pony and Rarity's younger sister. She makes her first major appearance in the episode Call of the Cutie.", "links": {"website": ["https://mlp.fandom.com/wiki/Sweetie_Belle"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"182-258": [[566, 892], [565, 891], [566, 892], [567, 891], [565, 890], [565, 891], [564, 892], [563, 892], [561, 893], [562, 894], [564, 894], [564, 893], [565, 893], [565, 894], [566, 893], [567, 892]]}, "center": {"182-258": [565, 892]}}, -{"id": 5207, "name": "Tom York", "description": "Fictional character. Sausage disguised as a mouse from the chilean TV cartoon \"Los Pulentos\"", "links": {"website": ["https://es.wikipedia.org/wiki/Anexo:Personajes_de_Pulentos"]}, "path": {"241-258": [[-1038, -811], [-1038, -814], [-1036, -814], [-1036, -811], [-1036, -816], [-1035, -816], [-1035, -818], [-1036, -818], [-1036, -822], [-1036, -821], [-1038, -821], [-1038, -822], [-1038, -818], [-1040, -818], [-1039, -818], [-1039, -816], [-1038, -816]]}, "center": {"241-258": [-1037, -817]}}, +{"id": 5202, "name": "Super Mario", "description": "Released in 1985 Super Mario Bros. established many core Mario elements, such as Goombas, Koopa Troopas, Bowser, Peach, and its three power-ups: the Super Mushroom, increasing the character's size and providing an extra hit point, Fire Flower, allowing the character to throw fireballs as weapons, and Super Star, granting temporary invincibility. The \"Super\" in the title came from the integration of the Super Mushroom into the game.[24] The brothers Mario and Luigi must rescue Princess Toadstool/Peach from Bowser/King Koopa in the Mushroom Kingdom.", "links": {"website": ["https://mario.nintendo.com/history/"]}, "path": {"214-258, T": [[-1209, 276], [-1209, 269], [-1208, 267], [-1209, 266], [-1209, 259], [-1207, 257], [-1206, 257], [-1208, 255], [-1208, 254], [-1206, 248], [-1202, 245], [-1199, 245], [-1197, 243], [-1193, 243], [-1192, 245], [-1192, 258], [-1194, 260], [-1195, 265], [-1193, 264], [-1192, 273], [-1199, 271], [-1201, 274], [-1206, 274]]}, "center": {"214-258, T": [-1200, 253]}}, +{"id": 5203, "name": "Akira Nishikiyama", "description": "Akira Nishikiyama from the game series Ryu Ga Gotoku also known as in the western world Yakuza.", "links": {"subreddit": ["yakuzagames"]}, "path": {"249-258, T": [[-1141, -93], [-1142, -86], [-1135, -86], [-1135, -93], [-1143, -94]]}, "center": {"249-258, T": [-1138, -89]}}, +{"id": 5204, "name": "Cyndaquil", "description": "Cyndaquil is a Fire-type Pokémon introduced in Generation II. Along with Chikorita and Totodile, Cyndaquil is one of the three starter Pokémon of Johto.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Cyndaquil_(Pok%C3%A9mon)"]}, "path": {"201-258, T": [[-1344, 359], [-1343, 359], [-1343, 357], [-1342, 357], [-1342, 355], [-1341, 355], [-1341, 354], [-1340, 354], [-1340, 353], [-1337, 353], [-1337, 354], [-1336, 354], [-1335, 354], [-1335, 352], [-1333, 352], [-1333, 353], [-1332, 353], [-1331, 353], [-1331, 352], [-1330, 352], [-1330, 351], [-1329, 351], [-1329, 352], [-1329, 353], [-1328, 353], [-1327, 353], [-1327, 352], [-1326, 352], [-1326, 351], [-1325, 351], [-1325, 353], [-1326, 353], [-1326, 354], [-1326, 355], [-1326, 356], [-1325, 356], [-1325, 357], [-1326, 357], [-1326, 360], [-1325, 360], [-1325, 361], [-1328, 361], [-1328, 362], [-1330, 362], [-1331, 364], [-1330, 364], [-1331, 364], [-1331, 365], [-1331, 367], [-1332, 367], [-1332, 368], [-1333, 368], [-1333, 367], [-1334, 367], [-1334, 366], [-1339, 366], [-1339, 365], [-1338, 365], [-1338, 363], [-1339, 363], [-1339, 362], [-1343, 362], [-1343, 361], [-1344, 361]]}, "center": {"201-258, T": [-1334, 359]}}, +{"id": 5205, "name": "Tatung Rice Cooker", "description": "Taiwanese rice cooker from the brand Tatung is Taiwan's emblematic cooking appliance, known for its durability and introduced in 1960.", "links": {"website": ["https://taiwantoday.tw/news.php?unit=8,29,32,45&post=12699", "https://www.tatung.com/en/products/index/513"]}, "path": {"250-258, T": [[-87, 578], [-92, 580], [-89, 586], [-85, 586], [-82, 580]]}, "center": {"250-258, T": [-87, 582]}}, +{"id": 5206, "name": "TIny Sweetie Belle", "description": "Sweetie Belle is a school-age unicorn pony and Rarity's younger sister. She makes her first major appearance in the episode Call of the Cutie.", "links": {"website": ["https://mlp.fandom.com/wiki/Sweetie_Belle"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"182-258, T": [[566, 892], [565, 891], [566, 892], [567, 891], [565, 890], [565, 891], [564, 892], [563, 892], [561, 893], [562, 894], [564, 894], [564, 893], [565, 893], [565, 894], [566, 893], [567, 892]]}, "center": {"182-258, T": [565, 892]}}, +{"id": 5207, "name": "Tom York", "description": "Fictional character. Sausage disguised as a mouse from the chilean TV cartoon \"Los Pulentos\"", "links": {"website": ["https://es.wikipedia.org/wiki/Anexo:Personajes_de_Pulentos"]}, "path": {"241-258, T": [[-1038, -811], [-1038, -814], [-1036, -814], [-1036, -811], [-1036, -816], [-1035, -816], [-1035, -818], [-1036, -818], [-1036, -822], [-1036, -821], [-1038, -821], [-1038, -822], [-1038, -818], [-1040, -818], [-1039, -818], [-1039, -816], [-1038, -816]]}, "center": {"241-258, T": [-1037, -817]}}, {"id": 5208, "name": "Huh, there's a little fella on this.", "description": "That's a funny little character, I like that. Have you seen this little guy?", "links": {"website": ["https://www.youtube.com/watch?v=Ns6acW9RFqs"], "subreddit": ["ColdOnes"], "discord": ["coldones"]}, "path": {"239-249": [[-967, 751], [-982, 761], [-993, 780], [-996, 812], [-945, 811], [-937, 762], [-932, 752], [-935, 746], [-946, 748], [-943, 760], [-947, 769], [-955, 754], [-962, 751]], "183-213": [[-994, 783], [-999, 784], [-1007, 794], [-1006, 803], [-1003, 805], [-1005, 807], [-1003, 811], [-998, 811], [-999, 819], [-990, 822], [-991, 831], [-998, 832], [-1000, 836], [-995, 838], [-987, 838], [-984, 822], [-980, 822], [-982, 826], [-981, 828], [-978, 828], [-974, 828], [-972, 823], [-969, 822], [-969, 826], [-975, 836], [-966, 842], [-960, 839], [-960, 836], [-967, 833], [-965, 827], [-964, 822], [-952, 818], [-946, 813], [-947, 807], [-943, 800], [-942, 792], [-946, 790], [-946, 780], [-941, 776], [-937, 766], [-933, 763], [-932, 755], [-936, 752], [-938, 746], [-941, 746], [-941, 753], [-944, 757], [-943, 765], [-944, 772], [-948, 777], [-949, 766], [-958, 754], [-964, 751], [-973, 753], [-983, 761], [-991, 773]]}, "center": {"239-249": [-967, 786], "183-213": [-972, 796]}}, -{"id": 5209, "name": "Five Nights At Freddy's", "description": "Five Nights At Freddy's is a indie horror game and series created by Scott Cawthon. The purple man in the drawn picture is William Afton (AKA Purple Guy), who is known to be the main villain of the franchise. The FNAF Franchise has 16 games, 7 of them are not canon, 9 of them are.", "links": {"subreddit": ["fivenightsatfreddys"], "discord": ["freddit"]}, "path": {"163-258": [[32, 909], [32, 933], [55, 933], [55, 909]]}, "center": {"163-258": [44, 921]}}, -{"id": 5210, "name": "Tiny South African Flag", "description": "South Africa is located in the southern part of Africa and is known for its varied topography, great natural beauty, and cultural diversity. It is also known as the Land of Rainbows Nation!", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa", "https://www.britannica.com/place/South-Africa"]}, "path": {"250-258": [[1487, 744], [1499, 744], [1499, 754], [1487, 754]]}, "center": {"250-258": [1493, 749]}}, -{"id": 5211, "name": "Sigil of the Unreplaced: \"The Stronghold\"", "description": "This is the second of three art pieces created by a single user & his three alt accounts. The first piece can be found on the green lattice, to the right of ElSpreen's domain.\n\nIf you wish to see the whole story, read that entry first.\n\nEverything that the First Account had sought to achieve, everything that justified the very existence of the Second, Third, & Fourth Accounts, had finally been realized in full. To gain solid, unwavering control of a 7x7 area even in their absence was already unheard of to them. But a new problem arose: the four accounts were left with idle hands. Without the need to protect the First Base, the three successors were left without purpose. And so the First Account sought out a new challenge for them.\n\nWith the continued preservation of the First Base left in the trustworthy hands of the lattice, the four accounts departed from their home turf, in order to undertake a more ambitious project.\n\nThe Stronghold was just the daunting challenge they needed. An intricate circle 21x21 pixels in size, with details reminiscent to that of a mandala. The sigil that had been so deeply intertwined with the lattice had been torn out & proudly placed into its own, unique context, discarding the lattice's familiar palette in the process.\n\nConstruction of the Stronghold had actually begun much further to the south, but with the intervention of a community strong enough to envelop the very German Flag beneath it, the site had to be abandoned. Nothing of note remains there.\n\nThe construction at its current site however, went much smoother than the four accounts could have ever anticipated. The presence of other, smaller arts meant that the immediate section of the flag wasn't being maintained, allowing smaller groups to move around freely. This allowed them to create their piece with minimal resistance. \n\nBut something even more alien to them occurred here: Accounts completely foreign to them had come to aid their cause. Their resolve was strong, so much so that the Stronghold's completion was realized in the four account's temporary absence.\n\nIt's believed that the Second Account's incessant rambling earned the acknowledgment of the Green Lattice, ensuring the continued preservation of the First Base. But it was the Third Account's rallying that led to the successful recruitment of new allies.\n\nIn the early stages of its construction, the four accounts faced a few difficulties. Multiple mistakes were made during the creation of the circle, & a neighboring art piece that was too close had to be moved over to the left, a notable feat in & of itself. \n\nBut eventually, the Stronghold saw its completion, & survived right up until the whiteout, much to the four account's surprise.\n\nBut of course, this is only the second piece of art. There's one more site that remains.\n\n(Ironically, this was the first site to face destruction, as this was one of the first areas in which the whiteout really took root.)", "links": {}, "path": {"213-258": [[-667, -1000], [-689, -1000], [-689, -978], [-667, -978]]}, "center": {"213-258": [-678, -989]}}, -{"id": 5212, "name": "Rainbow Dash", "description": "Rainbow Dash, a character from My Little Pony: Friendship is Magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Rainbow_Dash"], "subreddit": ["mylittlepony"]}, "path": {"250-258": [[-1387, 115], [-1372, 115], [-1372, 100], [-1387, 99], [-1388, 106]]}, "center": {"250-258": [-1380, 107]}}, +{"id": 5209, "name": "Five Nights At Freddy's", "description": "Five Nights At Freddy's is a indie horror game and series created by Scott Cawthon. The purple man in the drawn picture is William Afton (AKA Purple Guy), who is known to be the main villain of the franchise. The FNAF Franchise has 16 games, 7 of them are not canon, 9 of them are.", "links": {"subreddit": ["fivenightsatfreddys"], "discord": ["freddit"]}, "path": {"163-258, T": [[32, 909], [32, 933], [55, 933], [55, 909]]}, "center": {"163-258, T": [44, 921]}}, +{"id": 5210, "name": "Tiny South African Flag", "description": "South Africa is located in the southern part of Africa and is known for its varied topography, great natural beauty, and cultural diversity. It is also known as the Land of Rainbows Nation!", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa", "https://www.britannica.com/place/South-Africa"]}, "path": {"250-258, T": [[1487, 744], [1499, 744], [1499, 754], [1487, 754]]}, "center": {"250-258, T": [1493, 749]}}, +{"id": 5211, "name": "Sigil of the Unreplaced: \"The Stronghold\"", "description": "This is the second of three art pieces created by a single user & his three alt accounts. The first piece can be found on the green lattice, to the right of ElSpreen's domain.\n\nIf you wish to see the whole story, read that entry first.\n\nEverything that the First Account had sought to achieve, everything that justified the very existence of the Second, Third, & Fourth Accounts, had finally been realized in full. To gain solid, unwavering control of a 7x7 area even in their absence was already unheard of to them. But a new problem arose: the four accounts were left with idle hands. Without the need to protect the First Base, the three successors were left without purpose. And so the First Account sought out a new challenge for them.\n\nWith the continued preservation of the First Base left in the trustworthy hands of the lattice, the four accounts departed from their home turf, in order to undertake a more ambitious project.\n\nThe Stronghold was just the daunting challenge they needed. An intricate circle 21x21 pixels in size, with details reminiscent to that of a mandala. The sigil that had been so deeply intertwined with the lattice had been torn out & proudly placed into its own, unique context, discarding the lattice's familiar palette in the process.\n\nConstruction of the Stronghold had actually begun much further to the south, but with the intervention of a community strong enough to envelop the very German Flag beneath it, the site had to be abandoned. Nothing of note remains there.\n\nThe construction at its current site however, went much smoother than the four accounts could have ever anticipated. The presence of other, smaller arts meant that the immediate section of the flag wasn't being maintained, allowing smaller groups to move around freely. This allowed them to create their piece with minimal resistance. \n\nBut something even more alien to them occurred here: Accounts completely foreign to them had come to aid their cause. Their resolve was strong, so much so that the Stronghold's completion was realized in the four account's temporary absence.\n\nIt's believed that the Second Account's incessant rambling earned the acknowledgment of the Green Lattice, ensuring the continued preservation of the First Base. But it was the Third Account's rallying that led to the successful recruitment of new allies.\n\nIn the early stages of its construction, the four accounts faced a few difficulties. Multiple mistakes were made during the creation of the circle, & a neighboring art piece that was too close had to be moved over to the left, a notable feat in & of itself. \n\nBut eventually, the Stronghold saw its completion, & survived right up until the whiteout, much to the four account's surprise.\n\nBut of course, this is only the second piece of art. There's one more site that remains.\n\n(Ironically, this was the first site to face destruction, as this was one of the first areas in which the whiteout really took root.)", "links": {}, "path": {"213-258, T": [[-667, -1000], [-689, -1000], [-689, -978], [-667, -978]]}, "center": {"213-258, T": [-678, -989]}}, +{"id": 5212, "name": "Rainbow Dash", "description": "Rainbow Dash, a character from My Little Pony: Friendship is Magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Rainbow_Dash"], "subreddit": ["mylittlepony"]}, "path": {"250-258, T": [[-1387, 115], [-1372, 115], [-1372, 100], [-1387, 99], [-1388, 106]]}, "center": {"250-258, T": [-1380, 107]}}, {"id": 5213, "name": "Yui from K-on! and Don-Chan from Taiko no Tatsujin", "description": "Two strangers faced with the same objective: Survive and coexist", "links": {"website": ["https://en.wikipedia.org/wiki/K-On!"], "subreddit": ["k_on", "taikonotatsujin"], "discord": ["kon", "SJvRubwBpz"]}, "path": {"156-158": [[673, 697], [703, 697], [703, 719], [672, 719]]}, "center": {"156-158": [688, 708]}}, {"id": 5214, "name": "Fech The Ferret", "description": "Fech is a pink ferret from the indie video game \"Fech the Ferret\" Developed by Aucritas.\nBuilt on what would soon be called \"The German Lattice\" this is one of the earliest sighting of Fech on r/Place 2023.", "links": {"website": ["https://playfe.ch"], "subreddit": ["fech"], "discord": ["9QKKx6X"]}, "path": {"129-138": [[394, -922], [400, -922], [400, -932], [396, -932], [396, -926], [395, -926], [395, -924], [394, -924]]}, "center": {"129-137": [398, -924]}}, -{"id": 5215, "name": "Goro Majima", "description": "Goro Majima the Mad Dog of Shimano from the game series Ryu Ga Gotoku also known as in the western world Yakuza.", "links": {"subreddit": ["yakuzagames"]}, "path": {"249-258": [[-1142, -116], [-1142, -111], [-1136, -111], [-1136, -117], [-1142, -117]]}, "center": {"249-258": [-1139, -114]}}, +{"id": 5215, "name": "Goro Majima", "description": "Goro Majima the Mad Dog of Shimano from the game series Ryu Ga Gotoku also known as in the western world Yakuza.", "links": {"subreddit": ["yakuzagames"]}, "path": {"249-258, T": [[-1142, -116], [-1142, -111], [-1136, -111], [-1136, -117], [-1142, -117]]}, "center": {"249-258, T": [-1139, -114]}}, {"id": 5216, "name": "Flag of South Korea", "description": "South Korea is a country in East Asia. Its national flag is known as Taegeukgi.\n\nThe very first complete flag of r/Korea_Place. It was made together with Taiwanese allies such as r/placeTW and r/taiwanica. The flags of Korea and Taiwan were then expanded pixel by pixel until the proportion was 2:3. Both flags were taken over by Bangladesh and eventually Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Korea", "https://en.wikipedia.org/wiki/Flag_of_South_Korea"], "subreddit": ["Korea_Place", "placeTW", "taiwanica"], "discord": ["NDGSVQasUK"]}, "path": {"17": [[135, 160], [135, 165], [140, 165], [140, 160]], "18": [[134, 160], [134, 165], [140, 165], [140, 160]], "19-23": [[133, 160], [133, 165], [140, 165], [140, 160]]}, "center": {"17": [138, 163], "18": [137, 163], "19-23": [137, 163]}}, -{"id": 5217, "name": "Ichiban Kasuga", "description": "Ichiban Kasuga from the game named Yakuza: Like a Dragon", "links": {"subreddit": ["yakuzagames"]}, "path": {"249-258": [[-1141, -110], [-1142, -102], [-1136, -102], [-1135, -110], [-1142, -110], [-1135, -102], [-1135, -110]]}, "center": {"249-258": [-1140, -104]}}, +{"id": 5217, "name": "Ichiban Kasuga", "description": "Ichiban Kasuga from the game named Yakuza: Like a Dragon", "links": {"subreddit": ["yakuzagames"]}, "path": {"249-258, T": [[-1141, -110], [-1142, -102], [-1136, -102], [-1135, -110], [-1142, -110], [-1135, -102], [-1135, -110]]}, "center": {"249-258, T": [-1140, -104]}}, {"id": 5218, "name": "North American P-51 Mustang", "description": "The North American Aviation P-51 Mustang is an American long-range, single-seat fighter and fighter-bomber used during World War II and the Korean War, among other conflicts.", "links": {"website": ["https://en.wikipedia.org/wiki/North_American_P-51_Mustang"]}, "path": {"210-211": [[-118, 105], [-118, 107], [-117, 107], [-117, 108], [-116, 108], [-116, 109], [-115, 109], [-115, 110], [-115, 111], [-114, 111], [-114, 112], [-113, 112], [-113, 113], [-113, 114], [-113, 115], [-113, 116], [-114, 116], [-113, 117], [-112, 118], [-109, 118], [-108, 119], [-108, 120], [-107, 120], [-106, 120], [-105, 120], [-105, 121], [-104, 121], [-103, 121], [-102, 121], [-102, 122], [-101, 122], [-100, 122], [-99, 122], [-99, 123], [-98, 123], [-98, 124], [-96, 124], [-96, 125], [-94, 125], [-94, 126], [-93, 126], [-93, 127], [-92, 127], [-91, 127], [-91, 129], [-90, 129], [-90, 128], [-88, 128], [-87, 127], [-88, 126], [-89, 126], [-89, 125], [-90, 125], [-90, 124], [-91, 124], [-93, 124], [-93, 123], [-94, 123], [-94, 122], [-95, 122], [-96, 122], [-96, 121], [-97, 121], [-97, 118], [-94, 118], [-94, 117], [-92, 117], [-92, 116], [-89, 116], [-88, 116], [-88, 117], [-87, 117], [-86, 117], [-86, 115], [-88, 115], [-88, 112], [-87, 112], [-87, 111], [-86, 111], [-86, 107], [-89, 107], [-89, 108], [-90, 108], [-90, 110], [-93, 110], [-93, 112], [-95, 112], [-95, 111], [-97, 111], [-97, 110], [-101, 110], [-101, 111], [-104, 111], [-104, 112], [-106, 112], [-107, 112], [-107, 111], [-109, 111], [-109, 110], [-110, 110], [-110, 109], [-112, 109], [-112, 108], [-113, 108], [-113, 107], [-114, 107], [-114, 106], [-115, 106], [-115, 105], [-117, 105]]}, "center": {"210-211": [-101, 116]}}, -{"id": 5219, "name": "L&P Can", "description": "Lemon & Paeroa, also known as L&P, is a sweet, lemon flavored soft drink manufactured in New Zealand. Created in 1907, it was traditionally made by combining lemon juice with carbonated mineral water from the town of Paeroa, but is now owned and manufactured by multi-national Coca-Cola.", "links": {"website": ["https://en.wikipedia.org/wiki/Lemon_%26_Paeroa"]}, "path": {"250-258": [[-877, 24], [-877, 34], [-870, 34], [-869, 24]]}, "center": {"250-258": [-873, 29]}}, -{"id": 5220, "name": "Yugo (Wakfu season 4)", "description": "Yugo is the main protagonist from Wakfu, a french animated series sequel to dofus. This artwork resembles the new design he will get on the upcoming season 4 for the series.", "links": {"website": ["https://wakfu.fandom.com/wiki/Yugo"], "subreddit": ["wakfu"], "discord": ["HuRcPkbX"]}, "path": {"122-258": [[945, -678], [946, -678], [947, -678], [950, -678], [954, -678], [955, -677], [955, -676], [955, -675], [954, -674], [955, -674], [956, -674], [956, -672], [958, -672], [958, -671], [960, -671], [962, -671], [963, -670], [965, -670], [966, -670], [967, -671], [968, -672], [969, -673], [971, -673], [972, -674], [973, -675], [979, -675], [980, -674], [981, -673], [982, -672], [981, -671], [981, -670], [980, -669], [980, -666], [979, -666], [979, -665], [979, -664], [978, -664], [977, -664], [977, -663], [977, -662], [977, -661], [975, -661], [976, -660], [976, -659], [976, -658], [977, -658], [978, -657], [978, -656], [979, -655], [979, -654], [978, -654], [977, -654], [976, -654], [975, -655], [972, -656], [970, -655], [968, -653], [962, -648], [959, -646], [954, -642], [950, -641], [947, -642], [944, -644], [943, -648], [944, -652], [946, -653], [949, -656], [952, -658], [954, -660], [955, -661], [956, -662], [955, -663], [954, -662], [951, -659], [949, -658], [947, -656], [945, -655], [944, -656], [945, -658], [946, -659], [948, -661], [950, -663], [951, -664], [952, -665], [949, -666], [949, -668], [947, -670], [945, -672], [944, -673], [944, -677]]}, "center": {"122-258": [965, -662]}}, -{"id": 5221, "name": "Super Mario", "description": "Released in 1985 Super Mario Bros. established many core Mario elements, such as Goombas, Koopa Troopas, Bowser, Peach, and its three power-ups: the Super Mushroom, increasing the character's size and providing an extra hit point, Fire Flower, allowing the character to throw fireballs as weapons, and Super Star, granting temporary invincibility. The \"Super\" in the title came from the integration of the Super Mushroom into the game.[24] The brothers Mario and Luigi must rescue Princess Toadstool/Peach from Bowser/King Koopa in the Mushroom Kingdom.", "links": {"website": ["https://mario.nintendo.com/history/"]}, "path": {"192-258": [[-1210, 237], [-1190, 236], [-1191, 276], [-1211, 278], [-1210, 279], [-1211, 256]]}, "center": {"192-258": [-1201, 256]}}, +{"id": 5219, "name": "L&P Can", "description": "Lemon & Paeroa, also known as L&P, is a sweet, lemon flavored soft drink manufactured in New Zealand. Created in 1907, it was traditionally made by combining lemon juice with carbonated mineral water from the town of Paeroa, but is now owned and manufactured by multi-national Coca-Cola.", "links": {"website": ["https://en.wikipedia.org/wiki/Lemon_%26_Paeroa"]}, "path": {"250-258, T": [[-877, 24], [-877, 34], [-870, 34], [-869, 24]]}, "center": {"250-258, T": [-873, 29]}}, +{"id": 5220, "name": "Yugo (Wakfu season 4)", "description": "Yugo is the main protagonist from Wakfu, a french animated series sequel to dofus. This artwork resembles the new design he will get on the upcoming season 4 for the series.", "links": {"website": ["https://wakfu.fandom.com/wiki/Yugo"], "subreddit": ["wakfu"], "discord": ["HuRcPkbX"]}, "path": {"122-258, T": [[945, -678], [946, -678], [947, -678], [950, -678], [954, -678], [955, -677], [955, -676], [955, -675], [954, -674], [955, -674], [956, -674], [956, -672], [958, -672], [958, -671], [960, -671], [962, -671], [963, -670], [965, -670], [966, -670], [967, -671], [968, -672], [969, -673], [971, -673], [972, -674], [973, -675], [979, -675], [980, -674], [981, -673], [982, -672], [981, -671], [981, -670], [980, -669], [980, -666], [979, -666], [979, -665], [979, -664], [978, -664], [977, -664], [977, -663], [977, -662], [977, -661], [975, -661], [976, -660], [976, -659], [976, -658], [977, -658], [978, -657], [978, -656], [979, -655], [979, -654], [978, -654], [977, -654], [976, -654], [975, -655], [972, -656], [970, -655], [968, -653], [962, -648], [959, -646], [954, -642], [950, -641], [947, -642], [944, -644], [943, -648], [944, -652], [946, -653], [949, -656], [952, -658], [954, -660], [955, -661], [956, -662], [955, -663], [954, -662], [951, -659], [949, -658], [947, -656], [945, -655], [944, -656], [945, -658], [946, -659], [948, -661], [950, -663], [951, -664], [952, -665], [949, -666], [949, -668], [947, -670], [945, -672], [944, -673], [944, -677]]}, "center": {"122-258, T": [965, -662]}}, +{"id": 5221, "name": "Super Mario", "description": "Released in 1985 Super Mario Bros. established many core Mario elements, such as Goombas, Koopa Troopas, Bowser, Peach, and its three power-ups: the Super Mushroom, increasing the character's size and providing an extra hit point, Fire Flower, allowing the character to throw fireballs as weapons, and Super Star, granting temporary invincibility. The \"Super\" in the title came from the integration of the Super Mushroom into the game.[24] The brothers Mario and Luigi must rescue Princess Toadstool/Peach from Bowser/King Koopa in the Mushroom Kingdom.", "links": {"website": ["https://mario.nintendo.com/history/"]}, "path": {"192-258, T": [[-1210, 237], [-1190, 236], [-1191, 276], [-1211, 278], [-1210, 279], [-1211, 256]]}, "center": {"192-258, T": [-1201, 256]}}, {"id": 5222, "name": "Pera", "description": "A meme/emote from IlloJuan's community, the Pera is drawn like is Guille (his ex-boyfriend). It shows how much he still loves him, and how much he loves his ongoing friendship with him.\nWhile they were together their favorite fruit to share it was the Pera (pear) that's the reason.\n\nPera is a fruit, in english would it be Pear.", "links": {"website": ["https://www.twitch.tv/illojuan", "https://www.youtube.com/@IlloJuan_", "https://www.youtube.com/channel/UCYLtdpKKvlzXe4ifcBU3cjw"], "subreddit": ["LMDShow"]}, "path": {"14-15": [[68, -345], [68, -309], [96, -308], [98, -343]]}, "center": {"14-15": [82, -323]}}, -{"id": 5223, "name": "deadmau5", "description": "deadmau5 is an electronic music producer.", "links": {"website": ["https://deadmau5.com/", "https://en.wikipedia.org/wiki/Deadmau5"], "subreddit": ["deadmau5"], "discord": ["mau5cord"]}, "path": {"250-258": [[-1080, -491], [-1082, -493], [-1082, -496], [-1083, -496], [-1088, -502], [-1087, -505], [-1083, -509], [-1081, -509], [-1075, -504], [-1069, -509], [-1066, -508], [-1061, -503], [-1067, -496], [-1068, -496], [-1068, -493], [-1071, -491], [-1072, -490], [-1078, -490]]}, "center": {"250-258": [-1075, -497]}}, +{"id": 5223, "name": "deadmau5", "description": "deadmau5 is an electronic music producer.", "links": {"website": ["https://deadmau5.com/", "https://en.wikipedia.org/wiki/Deadmau5"], "subreddit": ["deadmau5"], "discord": ["mau5cord"]}, "path": {"250-258, T": [[-1080, -491], [-1082, -493], [-1082, -496], [-1083, -496], [-1088, -502], [-1087, -505], [-1083, -509], [-1081, -509], [-1075, -504], [-1069, -509], [-1066, -508], [-1061, -503], [-1067, -496], [-1068, -496], [-1068, -493], [-1071, -491], [-1072, -490], [-1078, -490]]}, "center": {"250-258, T": [-1075, -497]}}, {"id": 5224, "name": "Casablanca", "description": "Casablanca,is the largest city in Morocco and the country's economic and business center. Located on the Atlantic coast of the Chaouia plain in the central-western part of Morocco, the city has a population of about 3.71 million in the urban area, and over 4.27 million in the Greater Casablanca, making it the most populous city in the Maghreb region, and the eighth-largest in the Arab world.", "links": {"website": ["https://www.casablancacity.ma/fr"], "subreddit": ["morocco"]}, "path": {"203": [[171, 121], [171, 122], [116, 124], [115, 98], [307, 98], [306, 123], [203, 124], [137, 124], [115, 124]]}, "center": {"203": [180, 111]}}, -{"id": 5225, "name": "Internet Explorer", "description": "Internet Explorer (IE or MSIE) was Microsoft's official web browser designed for windows systems. First included for the add on package 'Plus!' for Windows 95, it became the prepackaged internet browser for all windows systems until it was replaced in the late 2010s by it's successor, Microsoft Edge.\nIt is memed quite a lot for it's incredibly bad web page loading speed.", "links": {"website": ["https://en.wikipedia.org/wiki/Internet_Explorer"]}, "path": {"182-191, 203-213, 220-258": [[-1435, 989], [-1433, 984], [-1432, 980], [-1427, 978], [-1421, 977], [-1420, 979], [-1422, 985], [-1421, 988], [-1425, 990], [-1427, 991], [-1431, 992], [-1433, 992]]}, "center": {"182-191, 203-213, 220-258": [-1427, 985]}}, -{"id": 5226, "name": "Sigil of the Unreplaced: \"The First Base\"", "description": "The first of three pieces created by a single user & his three alt accounts. The second piece can be found to the upper right of Bernd das Brothanos. the third can be found directly under the first panel of the art depicting the Void Monster of ElRubius & the Butterfly Dog.\n\nWith roots going back to last year's place, the design was inspired directly by the lattice itself; created so as to blend in & not draw unwanted attention, fearing for its deletion. \n\nUpon the realization that such vigilance was no longer needed, the four accounts decided to move on to a more ambitious project.\n\nOnly one incident occurred in which the piece had to be rebuilt (involving a depiction of Hana Yomeguri), after which it lasted in full right up until the formation of the giant C.\n\nWith enough persistence, knowledge, & luck, even a single user can make their mark on the canvas. This is what the sigil has come to represent.", "links": {}, "path": {"168-173": [[394, -868], [402, -868], [402, -860], [394, -860]], "175-258": [[394, -856], [402, -856], [402, -848], [394, -848]]}, "center": {"168-173": [398, -864], "175-258": [398, -852]}}, -{"id": 5227, "name": "Void Repellant / Beads", "description": "Just before this logo was built, another logo was built over where the final void ended up. Members of the r/AnarchyChess Discord tried to keep the logo there by covering it in \"void repellant,\" some pink pixels they surrounded the logo with.\n\nThe logo eventually succumbed to the void, so the users moved the logo to the void's old home, now completely safe to inhabit.\n\nSince they were still in the void, they covered the logo in a different color, this time indigo, new and improved void repellant.\n\nThere's a second meaning to the color as well, hinted at by the pixels sticking out.\n\nWhile the chess player Hans Niemann was under suspicion for cheating, there was a joke theory among members of r/AnarchyChess that he was using vibrating anal beads to cheat. This colored outline is supposed to represent those.", "links": {"discord": ["anarchychess"]}, "path": {"209-258": [[-1205, 543], [-1203, 543], [-1203, 544], [-1200, 544], [-1200, 542], [-1201, 542], [-1200, 542], [-1200, 538], [-1200, 539], [-1197, 539], [-1194, 539], [-1194, 538], [-1194, 539], [-1191, 539], [-1191, 538], [-1191, 539], [-1189, 539], [-1189, 541], [-1188, 541], [-1189, 541], [-1189, 544], [-1188, 544], [-1189, 544], [-1189, 546], [-1188, 547], [-1189, 546], [-1191, 546], [-1191, 547], [-1191, 546], [-1194, 546], [-1194, 547], [-1194, 549], [-1194, 548], [-1195, 548], [-1194, 548], [-1193, 548], [-1194, 548], [-1194, 546], [-1198, 546], [-1199, 546], [-1198, 546], [-1198, 548], [-1198, 549], [-1197, 549], [-1197, 551], [-1198, 551], [-1198, 553], [-1199, 553], [-1199, 554], [-1200, 554], [-1200, 555], [-1201, 555], [-1201, 556], [-1203, 556], [-1203, 557], [-1205, 557], [-1205, 556], [-1207, 556], [-1207, 555], [-1208, 555], [-1208, 554], [-1209, 554], [-1209, 553], [-1210, 553], [-1210, 552], [-1210, 551], [-1211, 551], [-1211, 549], [-1210, 549], [-1210, 547], [-1209, 547], [-1209, 546], [-1208, 546], [-1208, 545], [-1207, 545], [-1207, 544], [-1205, 544]]}, "center": {"209-258": [-1204, 550]}}, +{"id": 5225, "name": "Internet Explorer", "description": "Internet Explorer (IE or MSIE) was Microsoft's official web browser designed for windows systems. First included for the add on package 'Plus!' for Windows 95, it became the prepackaged internet browser for all windows systems until it was replaced in the late 2010s by it's successor, Microsoft Edge.\nIt is memed quite a lot for it's incredibly bad web page loading speed.", "links": {"website": ["https://en.wikipedia.org/wiki/Internet_Explorer"]}, "path": {"182-191, 203-213, 220-258, T": [[-1435, 989], [-1433, 984], [-1432, 980], [-1427, 978], [-1421, 977], [-1420, 979], [-1422, 985], [-1421, 988], [-1425, 990], [-1427, 991], [-1431, 992], [-1433, 992]]}, "center": {"182-191, 203-213, 220-258, T": [-1427, 985]}}, +{"id": 5226, "name": "Sigil of the Unreplaced: \"The First Base\"", "description": "The first of three pieces created by a single user & his three alt accounts. The second piece can be found to the upper right of Bernd das Brothanos. the third can be found directly under the first panel of the art depicting the Void Monster of ElRubius & the Butterfly Dog.\n\nWith roots going back to last year's place, the design was inspired directly by the lattice itself; created so as to blend in & not draw unwanted attention, fearing for its deletion. \n\nUpon the realization that such vigilance was no longer needed, the four accounts decided to move on to a more ambitious project.\n\nOnly one incident occurred in which the piece had to be rebuilt (involving a depiction of Hana Yomeguri), after which it lasted in full right up until the formation of the giant C.\n\nWith enough persistence, knowledge, & luck, even a single user can make their mark on the canvas. This is what the sigil has come to represent.", "links": {}, "path": {"168-173": [[394, -868], [402, -868], [402, -860], [394, -860]], "175-258, T": [[394, -856], [402, -856], [402, -848], [394, -848]]}, "center": {"168-173": [398, -864], "175-258, T": [398, -852]}}, +{"id": 5227, "name": "Void Repellant / Beads", "description": "Just before this logo was built, another logo was built over where the final void ended up. Members of the r/AnarchyChess Discord tried to keep the logo there by covering it in \"void repellant,\" some pink pixels they surrounded the logo with.\n\nThe logo eventually succumbed to the void, so the users moved the logo to the void's old home, now completely safe to inhabit.\n\nSince they were still in the void, they covered the logo in a different color, this time indigo, new and improved void repellant.\n\nThere's a second meaning to the color as well, hinted at by the pixels sticking out.\n\nWhile the chess player Hans Niemann was under suspicion for cheating, there was a joke theory among members of r/AnarchyChess that he was using vibrating anal beads to cheat. This colored outline is supposed to represent those.", "links": {"discord": ["anarchychess"]}, "path": {"209-258, T": [[-1205, 543], [-1203, 543], [-1203, 544], [-1200, 544], [-1200, 542], [-1201, 542], [-1200, 542], [-1200, 538], [-1200, 539], [-1197, 539], [-1194, 539], [-1194, 538], [-1194, 539], [-1191, 539], [-1191, 538], [-1191, 539], [-1189, 539], [-1189, 541], [-1188, 541], [-1189, 541], [-1189, 544], [-1188, 544], [-1189, 544], [-1189, 546], [-1188, 547], [-1189, 546], [-1191, 546], [-1191, 547], [-1191, 546], [-1194, 546], [-1194, 547], [-1194, 549], [-1194, 548], [-1195, 548], [-1194, 548], [-1193, 548], [-1194, 548], [-1194, 546], [-1198, 546], [-1199, 546], [-1198, 546], [-1198, 548], [-1198, 549], [-1197, 549], [-1197, 551], [-1198, 551], [-1198, 553], [-1199, 553], [-1199, 554], [-1200, 554], [-1200, 555], [-1201, 555], [-1201, 556], [-1203, 556], [-1203, 557], [-1205, 557], [-1205, 556], [-1207, 556], [-1207, 555], [-1208, 555], [-1208, 554], [-1209, 554], [-1209, 553], [-1210, 553], [-1210, 552], [-1210, 551], [-1211, 551], [-1211, 549], [-1210, 549], [-1210, 547], [-1209, 547], [-1209, 546], [-1208, 546], [-1208, 545], [-1207, 545], [-1207, 544], [-1205, 544]]}, "center": {"209-258, T": [-1204, 550]}}, {"id": 5228, "name": "Twin Center", "description": "The Casablanca Twin Center is a complex of two skyscrapers located at Casablanca, Morocco. The two structures, the West Tower and the East Tower, have 28 floors each.[2] The center houses a complex of shops, offices, and a five-star hotel, and lies at the heart of Casablanca in the Maarif district, at the crossroads between Zerktouni Boulevard and the Boulevard Al Massira Al Khadra. The main architect was Ricardo Bofill and the associate architect was the Moroccan Elie Mouyal.", "links": {"subreddit": ["morocco"]}, "path": {"203": [[234, 123], [237, 119], [238, 119], [239, 99], [262, 99], [263, 119], [271, 124], [234, 124]]}, "center": {"203": [251, 112]}}, -{"id": 5229, "name": "No Mana", "description": "No Mana is a Californian electronic music producer, DJ, and musician. He mainly produces progressive house music and other genres of electronic music.\nThis logo is based on his EP \"13UP\".", "links": {"website": ["https://ihavenomanas.com/"], "subreddit": ["nomana"]}, "path": {"250-258": [[-137, 912], [-118, 912], [-118, 918], [-119, 918], [-120, 919], [-120, 923], [-121, 923], [-121, 924], [-125, 924], [-125, 923], [-126, 923], [-126, 921], [-131, 921], [-131, 920], [-134, 920], [-134, 919], [-136, 919], [-136, 918], [-137, 918]]}, "center": {"250-258": [-126, 917]}}, -{"id": 5230, "name": "Sulphur-crested cockatoo", "description": "A sulphur-crested cockatoo, a common Australian bird", "links": {"website": ["https://en.wikipedia.org/wiki/Sulphur-crested_cockatoo"], "subreddit": ["australia"]}, "path": {"250-258": [[-869, 47], [-869, 46], [-870, 46], [-870, 45], [-871, 45], [-872, 45], [-872, 44], [-873, 43], [-872, 43], [-873, 40], [-872, 40], [-872, 39], [-872, 38], [-873, 38], [-872, 37], [-871, 37], [-871, 38], [-870, 38], [-869, 37], [-869, 38], [-869, 39], [-869, 40], [-869, 41], [-869, 42], [-869, 43], [-869, 44], [-869, 45], [-869, 46]]}, "center": {"250-258": [-871, 41]}}, -{"id": 5231, "name": "Rezz", "description": "Isabelle Rezazadeh, aka Rezz, is a Canadian DJ, and record producer.", "links": {"website": ["http://officialrezz.com/"], "subreddit": ["Rezz"]}, "path": {"250-258": [[-1087, -199], [-1067, -199], [-1067, -192], [-1087, -192]]}, "center": {"250-258": [-1077, -195]}}, -{"id": 5232, "name": "Bubba", "description": "Pet and mascot of Amelia Watson, VTuber from Hololive.", "links": {"website": ["https://www.youtube.com/@WatsonAmelia"]}, "path": {"250-258": [[-262, -829], [-257, -829], [-257, -826], [-258, -826], [-258, -825], [-258, -824], [-262, -824], [-262, -826], [-263, -826], [-263, -829]]}, "center": {"250-258": [-260, -827]}}, -{"id": 5233, "name": "Elira Pendora", "description": "Elira Pendora (エリーラ ペンドラ) is an English-speaking female Virtual YouTuber affiliated with NIJISANJI EN's first wave \"LazuLight\".\n\nFriendly, supportive, and welcoming, Elira is a well-rounded streamer who vibes well with everyone. Often seen as a big, lovable dork, she connects with her viewers over common interests such as shonen manga or anime and tends to be well-versed in \"zoomer\" culture, despite her canonical age. Her singing is held in high regard by many of the other members of NIJISANJI.", "links": {"website": ["https://www.youtube.com/channel/UCIeSUTOTkF9Hs7q3SGcO-Ow"], "subreddit": ["Nijisanji"], "discord": ["famelira"]}, "path": {"179-258": [[-158, -771], [-157, -772], [-156, -773], [-155, -774], [-155, -775], [-152, -775], [-152, -774], [-151, -773], [-148, -773], [-147, -774], [-147, -775], [-144, -775], [-144, -774], [-143, -773], [-142, -772], [-141, -773], [-140, -772], [-141, -771], [-142, -770], [-143, -770], [-144, -769], [-144, -762], [-143, -761], [-142, -762], [-141, -761], [-142, -760], [-143, -759], [-145, -759], [-146, -758], [-153, -758], [-154, -759], [-156, -759], [-157, -760], [-158, -761], [-157, -762], [-156, -761], [-155, -762], [-155, -769], [-156, -770]]}, "center": {"179-258": [-149, -766]}}, -{"id": 5234, "name": "Björk", "description": "Björk Guðmundsdóttir is an Icelandic singer, songwriter and artist, known for her influential work, unique vocal range and eccentric personality. She is depicted in her famous swan dress she wore at the 2001 Academy Awards, which also featured in the cover of her album Vespertine. The pixel squares at the top represent her main discography.", "links": {"website": ["https://www.bjork.com/"], "subreddit": ["bjork"]}, "path": {"250-258": [[424, -838], [424, -824], [435, -824], [435, -838]]}, "center": {"250-258": [430, -831]}}, -{"id": 5235, "name": "Austrian Alps", "description": "A small Artwork showing Austrians Alps, the Alps cover 2 thirds of Austrias whole Landmass.", "links": {"website": ["https://en.wikipedia.org/wiki/Alps", "https://en.wikipedia.org/wiki/Central_Eastern_Alps"], "subreddit": ["placeaustria"], "discord": ["placeaustria"]}, "path": {"250-258": [[-124, -27], [-122, -39], [-119, -46], [-123, -47], [-128, -47], [-133, -57], [-143, -31], [-143, -27], [-175, -27], [-174, -41], [-165, -53], [-160, -56], [-134, -57], [-144, -27], [-133, -27]]}, "center": {"250-258": [-155, -42]}}, -{"id": 5236, "name": "Nymphéas by Monet", "description": "Water Lilies (French: Nymphéas [nɛ̃.fe.a]) is a series of approximately 250 oil paintings by French Impressionist Claude Monet (1840–1926). The paintings depict his flower garden at his home in Giverny, and were the main focus of his artistic production during the last thirty years of his life. Many of the works were painted while Monet suffered from cataracts.", "links": {"website": ["https://en.wikipedia.org/wiki/Water_Lilies_(Monet_series)"]}, "path": {"250-258": [[-771, 714], [-773, 783], [-660, 782], [-660, 712]]}, "center": {"250-258": [-715, 748]}}, -{"id": 5237, "name": "Moon Stick (Sailor Moon)", "description": "The top of one of Sailor Moon's first and perhaps most iconic weapon, with the Silver Crystal.", "links": {"subreddit": ["sailormoon"]}, "path": {"250-258": [[317, -967], [304, -967], [304, -947], [307, -947], [307, -948], [308, -949], [308, -950], [309, -951], [310, -952], [311, -952], [312, -951], [313, -950], [314, -951], [315, -952], [316, -952], [317, -951], [318, -950], [319, -949], [319, -948], [319, -961], [318, -962], [317, -963]]}, "center": {"250-258": [311, -959]}}, -{"id": 5238, "name": "Luna (Sailor Moon)", "description": "A talking cat serving as an advisor to Sailor Moon and her fellow Sailor Guardians.", "links": {"subreddit": ["sailormoon"]}, "path": {"250-258": [[-571, -184], [-571, -183], [-572, -183], [-572, -181], [-573, -180], [-573, -177], [-572, -176], [-571, -175], [-565, -175], [-564, -176], [-563, -177], [-563, -180], [-564, -181], [-564, -183], [-565, -184], [-566, -183], [-567, -182], [-569, -182], [-570, -183]]}, "center": {"250-258": [-569, -179]}}, -{"id": 5239, "name": "Sigil of the Unreplaced: \"The Sanctuary\"", "description": "This is the third of three art pieces created by a single user & his three alt accounts. The first piece can be found on the green lattice, to the right of ElSpreen's domain.\n\nIf you wish to see the whole story, read that entry first.\n\nBy this point both the First Base & the Stronghold were holding their ground with little to no resistance. And with the event coming to close, the four accounts sought to complete yet another piece of art. \n\nUnbeknownst to them, this piece would be their last.\n\nHaving previously created pieces with comparatively limited palettes, the four accounts wished to create something more complex. Whilst it was initially planned to mimic the appearance of a lotus flower, due to its limited size the Sanctuary ended up being themed around that of an aquarium.\n\nThe scale of both the Sanctuary & the Stronghold was based upon the location of their first sites. Which explains why the Sanctuary is only 17x17 pixels in size.\n\nThe Sanctuary also faced issues during its initial construction. The original site along the Mittelflagge was actively being maintained by the Germans, & so construction was moved further left.\n\nSimilar to the Stronghold, the area around the new site was filled with smaller artworks, meaning that there was no active maintenance in that area. & with the Third Account rallying others to their aid once more, construction went off without issue. \n\nAnother boon that the Sanctuary shared with the Stronghold was that both pieces were relatively close to larger, more well-renowned arts, meaning that streamer attacks were much less likely. Bot attacks weren't nearly as predictable, but all three pieces never encountered such an attack.\n\nAfter some time, the four account's third creation saw its completion. & so the four accounts departed in order to rest, with plans to create one more art if the other three survived. That way there'd be one piece for each of them.\n\nDaybreak however, brought with it an unfortunate turn of events.\n\nThe three pieces remained largely unscathed, with only a few signs of griefing. But the four accounts were not so lucky.\n\nThe Second Account found herself suspended on the grounds of \"Voting Manipulation\", a term that was unfamiliar to the four accounts. The Third & Fourth Accounts were only warned. But all three of them were barred from interacting with the canvas. Only the First Account was left unscathed. As such, all efforts were put into fixing the existing pieces.\n\nNot much occurred after that. Repairs were made, & the whiteout came & went. Although plans for a fourth piece were dashed, the four accounts were content, for they had accomplished far more than they had initially set out to do.\n\nFar more than they were able to accomplish last year.\n\nTo them it felt like redemption, in a way.\n\n& so, the story of the four accounts comes to an end, with them making their mark on the canvas not once, but three times...\n\n༺口囗⼞囗口༻\n\nHoly fuck that took way too long to write. Congratulations if you made it this far, sorry if I wasted your time on something that honestly doesn't matter too much in the long run. \n\nI'm just kinda ecstatic that I managed to do so much on here as a single individual, so I just kinda went into as much detail as possible.\n\nAnyways, that's it. Here lies proof that, even without the coordinated help of others, you can still manage to do something cool on the canvas.\n\nAlso, word of advice for you people who haven't used alts before: don't fucking upvote your own posts with your alt accounts! That's what voting manipulation means!\n\nMy main account got suspended after the event for 3 days because of this! Don' do it! Bad idea!\n\nAlright, go look at some other cool shit, I'm going to bed.", "links": {}, "path": {"230-258": [[-278, -610], [-260, -610], [-260, -592], [-278, -592]]}, "center": {"230-258": [-269, -601]}}, -{"id": 5240, "name": "Artemis (Sailor Moon)", "description": "A talking cat and advisor to Sailor Venus (and other Sailor Guardians), alongside his partner Luna.", "links": {"subreddit": ["sailormoon"]}, "path": {"250-258": [[323, -930], [323, -928], [322, -927], [322, -924], [323, -923], [329, -923], [330, -924], [330, -927], [329, -928], [329, -930], [328, -929], [327, -928], [325, -928], [324, -929]]}, "center": {"250-258": [325, -925]}}, -{"id": 5241, "name": "Camp Half-Blood", "description": "Camp Half-Blood is a fictional summer camp located on Long Island, New York from the world of Percy Jackson and the Olympians by Rick Riordan. It is a training ground for demigods in order to defend themselves from Ancient Greek mythological monsters.\n\n\"P A\" is a reference to the two lead characters and couple, Percy & Annabeth.\n\n\"DAM\" is an inside joke in the series.\n\nCamp Half-Blood's Roman-demigod alternate: Camp Jupiter, can be spotted elsewhere on the canvas.", "links": {"website": ["https://riordan.fandom.com/wiki/Percy_Jackson_and_the_Olympians"], "subreddit": ["camphalfblood"], "discord": ["ZZ3zVMM9A6"]}, "path": {"173-194": [[579, -521], [579, -498], [643, -498], [642, -521]], "250-258": [[544, -520], [605, -520], [605, -498], [544, -498]]}, "center": {"173-194": [611, -509], "250-258": [575, -509]}}, -{"id": 5242, "name": "\"Cazuela from Cazueland\"", "description": "Official logo of the Chilean Discord server known by the name \"Cazueland\" founded on April 14, 2020 by its owner \"madac_\" to form a community with which to play various games and organize different activities.", "links": {"discord": ["BrumpcDFVB"]}, "path": {"250-258": [[468, -397], [467, -397], [467, -396], [466, -399], [464, -398], [463, -396], [464, -394], [466, -392], [469, -392], [468, -391], [471, -391], [472, -393], [473, -392], [475, -394], [476, -397], [473, -399], [471, -400], [472, -401], [473, -401], [472, -402], [471, -403], [471, -401], [470, -402], [469, -400], [467, -401], [468, -402], [466, -402], [467, -403], [474, -395], [474, -397], [471, -396], [469, -396], [467, -396], [465, -397], [470, -397], [472, -396], [470, -399], [474, -397], [467, -395], [467, -400], [471, -401], [471, -400], [468, -397], [472, -396], [473, -395], [469, -395], [473, -396]]}, "center": {"250-258": [470, -393]}}, +{"id": 5229, "name": "No Mana", "description": "No Mana is a Californian electronic music producer, DJ, and musician. He mainly produces progressive house music and other genres of electronic music.\nThis logo is based on his EP \"13UP\".", "links": {"website": ["https://ihavenomanas.com/"], "subreddit": ["nomana"]}, "path": {"250-258, T": [[-137, 912], [-118, 912], [-118, 918], [-119, 918], [-120, 919], [-120, 923], [-121, 923], [-121, 924], [-125, 924], [-125, 923], [-126, 923], [-126, 921], [-131, 921], [-131, 920], [-134, 920], [-134, 919], [-136, 919], [-136, 918], [-137, 918]]}, "center": {"250-258, T": [-126, 917]}}, +{"id": 5230, "name": "Sulphur-crested cockatoo", "description": "A sulphur-crested cockatoo, a common Australian bird", "links": {"website": ["https://en.wikipedia.org/wiki/Sulphur-crested_cockatoo"], "subreddit": ["australia"]}, "path": {"250-258, T": [[-869, 47], [-869, 46], [-870, 46], [-870, 45], [-871, 45], [-872, 45], [-872, 44], [-873, 43], [-872, 43], [-873, 40], [-872, 40], [-872, 39], [-872, 38], [-873, 38], [-872, 37], [-871, 37], [-871, 38], [-870, 38], [-869, 37], [-869, 38], [-869, 39], [-869, 40], [-869, 41], [-869, 42], [-869, 43], [-869, 44], [-869, 45], [-869, 46]]}, "center": {"250-258, T": [-871, 41]}}, +{"id": 5231, "name": "Rezz", "description": "Isabelle Rezazadeh, aka Rezz, is a Canadian DJ, and record producer.", "links": {"website": ["http://officialrezz.com/"], "subreddit": ["Rezz"]}, "path": {"250-258, T": [[-1087, -199], [-1067, -199], [-1067, -192], [-1087, -192]]}, "center": {"250-258, T": [-1077, -195]}}, +{"id": 5232, "name": "Bubba", "description": "Pet and mascot of Amelia Watson, VTuber from Hololive.", "links": {"website": ["https://www.youtube.com/@WatsonAmelia"]}, "path": {"250-258, T": [[-262, -829], [-257, -829], [-257, -826], [-258, -826], [-258, -825], [-258, -824], [-262, -824], [-262, -826], [-263, -826], [-263, -829]]}, "center": {"250-258, T": [-260, -827]}}, +{"id": 5233, "name": "Elira Pendora", "description": "Elira Pendora (エリーラ ペンドラ) is an English-speaking female Virtual YouTuber affiliated with NIJISANJI EN's first wave \"LazuLight\".\n\nFriendly, supportive, and welcoming, Elira is a well-rounded streamer who vibes well with everyone. Often seen as a big, lovable dork, she connects with her viewers over common interests such as shonen manga or anime and tends to be well-versed in \"zoomer\" culture, despite her canonical age. Her singing is held in high regard by many of the other members of NIJISANJI.", "links": {"website": ["https://www.youtube.com/channel/UCIeSUTOTkF9Hs7q3SGcO-Ow"], "subreddit": ["Nijisanji"], "discord": ["famelira"]}, "path": {"179-258, T": [[-158, -771], [-157, -772], [-156, -773], [-155, -774], [-155, -775], [-152, -775], [-152, -774], [-151, -773], [-148, -773], [-147, -774], [-147, -775], [-144, -775], [-144, -774], [-143, -773], [-142, -772], [-141, -773], [-140, -772], [-141, -771], [-142, -770], [-143, -770], [-144, -769], [-144, -762], [-143, -761], [-142, -762], [-141, -761], [-142, -760], [-143, -759], [-145, -759], [-146, -758], [-153, -758], [-154, -759], [-156, -759], [-157, -760], [-158, -761], [-157, -762], [-156, -761], [-155, -762], [-155, -769], [-156, -770]]}, "center": {"179-258, T": [-149, -766]}}, +{"id": 5234, "name": "Björk", "description": "Björk Guðmundsdóttir is an Icelandic singer, songwriter and artist, known for her influential work, unique vocal range and eccentric personality. She is depicted in her famous swan dress she wore at the 2001 Academy Awards, which also featured in the cover of her album Vespertine. The pixel squares at the top represent her main discography.", "links": {"website": ["https://www.bjork.com/"], "subreddit": ["bjork"]}, "path": {"250-258, T": [[424, -838], [424, -824], [435, -824], [435, -838]]}, "center": {"250-258, T": [430, -831]}}, +{"id": 5235, "name": "Austrian Alps", "description": "A small Artwork showing Austrians Alps, the Alps cover 2 thirds of Austrias whole Landmass.", "links": {"website": ["https://en.wikipedia.org/wiki/Alps", "https://en.wikipedia.org/wiki/Central_Eastern_Alps"], "subreddit": ["placeaustria"], "discord": ["placeaustria"]}, "path": {"250-258, T": [[-124, -27], [-122, -39], [-119, -46], [-123, -47], [-128, -47], [-133, -57], [-143, -31], [-143, -27], [-175, -27], [-174, -41], [-165, -53], [-160, -56], [-134, -57], [-144, -27], [-133, -27]]}, "center": {"250-258, T": [-155, -42]}}, +{"id": 5236, "name": "Nymphéas by Monet", "description": "Water Lilies (French: Nymphéas [nɛ̃.fe.a]) is a series of approximately 250 oil paintings by French Impressionist Claude Monet (1840–1926). The paintings depict his flower garden at his home in Giverny, and were the main focus of his artistic production during the last thirty years of his life. Many of the works were painted while Monet suffered from cataracts.", "links": {"website": ["https://en.wikipedia.org/wiki/Water_Lilies_(Monet_series)"]}, "path": {"250-258, T": [[-771, 714], [-773, 783], [-660, 782], [-660, 712]]}, "center": {"250-258, T": [-715, 748]}}, +{"id": 5237, "name": "Moon Stick (Sailor Moon)", "description": "The top of one of Sailor Moon's first and perhaps most iconic weapon, with the Silver Crystal.", "links": {"subreddit": ["sailormoon"]}, "path": {"250-258, T": [[317, -967], [304, -967], [304, -947], [307, -947], [307, -948], [308, -949], [308, -950], [309, -951], [310, -952], [311, -952], [312, -951], [313, -950], [314, -951], [315, -952], [316, -952], [317, -951], [318, -950], [319, -949], [319, -948], [319, -961], [318, -962], [317, -963]]}, "center": {"250-258, T": [311, -959]}}, +{"id": 5238, "name": "Luna (Sailor Moon)", "description": "A talking cat serving as an advisor to Sailor Moon and her fellow Sailor Guardians.", "links": {"subreddit": ["sailormoon"]}, "path": {"250-258, T": [[-571, -184], [-571, -183], [-572, -183], [-572, -181], [-573, -180], [-573, -177], [-572, -176], [-571, -175], [-565, -175], [-564, -176], [-563, -177], [-563, -180], [-564, -181], [-564, -183], [-565, -184], [-566, -183], [-567, -182], [-569, -182], [-570, -183]]}, "center": {"250-258, T": [-569, -179]}}, +{"id": 5239, "name": "Sigil of the Unreplaced: \"The Sanctuary\"", "description": "This is the third of three art pieces created by a single user & his three alt accounts. The first piece can be found on the green lattice, to the right of ElSpreen's domain.\n\nIf you wish to see the whole story, read that entry first.\n\nBy this point both the First Base & the Stronghold were holding their ground with little to no resistance. And with the event coming to close, the four accounts sought to complete yet another piece of art. \n\nUnbeknownst to them, this piece would be their last.\n\nHaving previously created pieces with comparatively limited palettes, the four accounts wished to create something more complex. Whilst it was initially planned to mimic the appearance of a lotus flower, due to its limited size the Sanctuary ended up being themed around that of an aquarium.\n\nThe scale of both the Sanctuary & the Stronghold was based upon the location of their first sites. Which explains why the Sanctuary is only 17x17 pixels in size.\n\nThe Sanctuary also faced issues during its initial construction. The original site along the Mittelflagge was actively being maintained by the Germans, & so construction was moved further left.\n\nSimilar to the Stronghold, the area around the new site was filled with smaller artworks, meaning that there was no active maintenance in that area. & with the Third Account rallying others to their aid once more, construction went off without issue. \n\nAnother boon that the Sanctuary shared with the Stronghold was that both pieces were relatively close to larger, more well-renowned arts, meaning that streamer attacks were much less likely. Bot attacks weren't nearly as predictable, but all three pieces never encountered such an attack.\n\nAfter some time, the four account's third creation saw its completion. & so the four accounts departed in order to rest, with plans to create one more art if the other three survived. That way there'd be one piece for each of them.\n\nDaybreak however, brought with it an unfortunate turn of events.\n\nThe three pieces remained largely unscathed, with only a few signs of griefing. But the four accounts were not so lucky.\n\nThe Second Account found herself suspended on the grounds of \"Voting Manipulation\", a term that was unfamiliar to the four accounts. The Third & Fourth Accounts were only warned. But all three of them were barred from interacting with the canvas. Only the First Account was left unscathed. As such, all efforts were put into fixing the existing pieces.\n\nNot much occurred after that. Repairs were made, & the whiteout came & went. Although plans for a fourth piece were dashed, the four accounts were content, for they had accomplished far more than they had initially set out to do.\n\nFar more than they were able to accomplish last year.\n\nTo them it felt like redemption, in a way.\n\n& so, the story of the four accounts comes to an end, with them making their mark on the canvas not once, but three times...\n\n༺口囗⼞囗口༻\n\nHoly fuck that took way too long to write. Congratulations if you made it this far, sorry if I wasted your time on something that honestly doesn't matter too much in the long run. \n\nI'm just kinda ecstatic that I managed to do so much on here as a single individual, so I just kinda went into as much detail as possible.\n\nAnyways, that's it. Here lies proof that, even without the coordinated help of others, you can still manage to do something cool on the canvas.\n\nAlso, word of advice for you people who haven't used alts before: don't fucking upvote your own posts with your alt accounts! That's what voting manipulation means!\n\nMy main account got suspended after the event for 3 days because of this! Don' do it! Bad idea!\n\nAlright, go look at some other cool shit, I'm going to bed.", "links": {}, "path": {"230-258, T": [[-278, -610], [-260, -610], [-260, -592], [-278, -592]]}, "center": {"230-258, T": [-269, -601]}}, +{"id": 5240, "name": "Artemis (Sailor Moon)", "description": "A talking cat and advisor to Sailor Venus (and other Sailor Guardians), alongside his partner Luna.", "links": {"subreddit": ["sailormoon"]}, "path": {"250-258, T": [[323, -930], [323, -928], [322, -927], [322, -924], [323, -923], [329, -923], [330, -924], [330, -927], [329, -928], [329, -930], [328, -929], [327, -928], [325, -928], [324, -929]]}, "center": {"250-258, T": [325, -925]}}, +{"id": 5241, "name": "Camp Half-Blood", "description": "Camp Half-Blood is a fictional summer camp located on Long Island, New York from the world of Percy Jackson and the Olympians by Rick Riordan. It is a training ground for demigods in order to defend themselves from Ancient Greek mythological monsters.\n\n\"P A\" is a reference to the two lead characters and couple, Percy & Annabeth.\n\n\"DAM\" is an inside joke in the series.\n\nCamp Half-Blood's Roman-demigod alternate: Camp Jupiter, can be spotted elsewhere on the canvas.", "links": {"website": ["https://riordan.fandom.com/wiki/Percy_Jackson_and_the_Olympians"], "subreddit": ["camphalfblood"], "discord": ["ZZ3zVMM9A6"]}, "path": {"173-194": [[579, -521], [579, -498], [643, -498], [642, -521]], "250-258, T": [[544, -520], [605, -520], [605, -498], [544, -498]]}, "center": {"173-194": [611, -509], "250-258, T": [575, -509]}}, +{"id": 5242, "name": "\"Cazuela from Cazueland\"", "description": "Official logo of the Chilean Discord server known by the name \"Cazueland\" founded on April 14, 2020 by its owner \"madac_\" to form a community with which to play various games and organize different activities.", "links": {"discord": ["BrumpcDFVB"]}, "path": {"250-258, T": [[468, -397], [467, -397], [467, -396], [466, -399], [464, -398], [463, -396], [464, -394], [466, -392], [469, -392], [468, -391], [471, -391], [472, -393], [473, -392], [475, -394], [476, -397], [473, -399], [471, -400], [472, -401], [473, -401], [472, -402], [471, -403], [471, -401], [470, -402], [469, -400], [467, -401], [468, -402], [466, -402], [467, -403], [474, -395], [474, -397], [471, -396], [469, -396], [467, -396], [465, -397], [470, -397], [472, -396], [470, -399], [474, -397], [467, -395], [467, -400], [471, -401], [471, -400], [468, -397], [472, -396], [473, -395], [469, -395], [473, -396]]}, "center": {"250-258, T": [470, -393]}}, {"id": 5243, "name": "Corona", "description": "A popular brand of beer originating from Mexico.", "links": {}, "path": {"245": [[-203, 161], [-203, 130], [-199, 124], [-199, 111], [-200, 110], [-200, 107], [-199, 107], [-198, 106], [-192, 106], [-191, 161]]}, "center": {"245": [-197, 142]}}, -{"id": 5244, "name": "Submarine - Alex Turner", "description": "This is the album cover of Submarine EP from Alex Turner that he recorded for the eponymous film from the year 2011.", "links": {"website": ["https://en.m.wikipedia.org/wiki/File:Alex_Turner_Submarine.jpg#mw-jump-to-license"], "subreddit": ["arcticmonkeys"]}, "path": {"159-258": [[-382, 501], [-383, 501], [-382, 515], [-369, 514], [-369, 501]]}, "center": {"159-258": [-376, 508]}}, +{"id": 5244, "name": "Submarine - Alex Turner", "description": "This is the album cover of Submarine EP from Alex Turner that he recorded for the eponymous film from the year 2011.", "links": {"website": ["https://en.m.wikipedia.org/wiki/File:Alex_Turner_Submarine.jpg#mw-jump-to-license"], "subreddit": ["arcticmonkeys"]}, "path": {"159-258, T": [[-382, 501], [-383, 501], [-382, 515], [-369, 514], [-369, 501]]}, "center": {"159-258, T": [-376, 508]}}, {"id": 5245, "name": "Femboy Flag", "description": "A pride flag representing the femboy community. A femboy, also known as tomgirl, rosboy, janegirl, or calicogirl, is a person who chooses to adopt a more feminine appearance, such as by wearing feminine clothes or makeup, while usually retaining some aspect of boyishness in their appearance or identity. This can also sometimes refer to the way one acts or communicates, or what interests or hobbies one has. Most femboys still see themselves as male, as the name implies, but someone who identifies with the femboy label can be trans, nonbinary, or one of many other gender identities across the spectrum.", "links": {"website": ["https://aesthetics.fandom.com/wiki/Femboy"], "subreddit": ["femboy"]}, "path": {"157-169": [[-915, 761], [-999, 761], [-999, 767], [-915, 767]]}, "center": {"157-169": [-957, 764]}}, -{"id": 5246, "name": "BSZ Wiesau", "description": "vocational school in Wiesau, Germany", "links": {"subreddit": ["ich_iw"]}, "path": {"250-258": [[-1287, 226], [-1226, 226], [-1226, 238], [-1287, 238]]}, "center": {"250-258": [-1256, 232]}}, -{"id": 5247, "name": "Cappadocia", "description": "Cappadocia (Turkish: Kapadokya) is a historical region in Central Anatolia, Turkey. The area is a popular tourist destination, as it has many areas with unique geological, historic, and cultural features. The most important towns and destinations in Cappadocia are Ürgüp, Göreme, Love Valley, Ihlara Valley. Hot-air ballooning is very popular in Cappadocia and is available in Göreme. Trekking is enjoyed in Ihlara Valley, Monastery Valley (Güzelyurt), Ürgüp and Göreme.", "links": {"website": ["https://cappadocia.goturkiye.com/homepage"]}, "path": {"250-258": [[-366, 405], [-335, 405], [-337, 445], [-367, 444], [-367, 445], [-367, 434]]}, "center": {"250-258": [-351, 421]}}, -{"id": 5248, "name": "Water Lilies and the Japanese Bridge", "description": "\"Water Lilies and the Japanese Bridge\" is a painting made by Claude Monet in 1899. It is a part of a 20-year long series of Lily paintings.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Claude_Monet", "https://it.m.wikipedia.org/wiki/Lo_stagno_delle_ninfee,_armonia_verde"]}, "path": {"238-258": [[-773, 713], [-661, 713], [-661, 783], [-773, 783]]}, "center": {"238-258": [-717, 748]}}, +{"id": 5246, "name": "BSZ Wiesau", "description": "vocational school in Wiesau, Germany", "links": {"subreddit": ["ich_iw"]}, "path": {"250-258, T": [[-1287, 226], [-1226, 226], [-1226, 238], [-1287, 238]]}, "center": {"250-258, T": [-1256, 232]}}, +{"id": 5247, "name": "Cappadocia", "description": "Cappadocia (Turkish: Kapadokya) is a historical region in Central Anatolia, Turkey. The area is a popular tourist destination, as it has many areas with unique geological, historic, and cultural features. The most important towns and destinations in Cappadocia are Ürgüp, Göreme, Love Valley, Ihlara Valley. Hot-air ballooning is very popular in Cappadocia and is available in Göreme. Trekking is enjoyed in Ihlara Valley, Monastery Valley (Güzelyurt), Ürgüp and Göreme.", "links": {"website": ["https://cappadocia.goturkiye.com/homepage"]}, "path": {"250-258, T": [[-366, 405], [-335, 405], [-337, 445], [-367, 444], [-367, 445], [-367, 434]]}, "center": {"250-258, T": [-351, 421]}}, +{"id": 5248, "name": "Water Lilies and the Japanese Bridge", "description": "\"Water Lilies and the Japanese Bridge\" is a painting made by Claude Monet in 1899. It is a part of a 20-year long series of Lily paintings.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Claude_Monet", "https://it.m.wikipedia.org/wiki/Lo_stagno_delle_ninfee,_armonia_verde"]}, "path": {"238-258, T": [[-773, 713], [-661, 713], [-661, 783], [-773, 783]]}, "center": {"238-258, T": [-717, 748]}}, {"id": 5249, "name": "Duck (Stardew Valley)", "description": "The adorable duck from Stardew Valley!", "links": {"website": ["https://stardewvalley.net"], "subreddit": ["StardewValley"]}, "path": {"246": [[988, -472], [983, -472], [983, -471], [982, -470], [981, -469], [981, -468], [980, -467], [979, -466], [979, -464], [980, -464], [979, -463], [979, -460], [980, -460], [981, -459], [982, -458], [983, -458], [983, -457], [991, -457], [991, -458], [993, -458], [993, -459], [995, -459], [995, -460], [996, -460], [996, -465], [995, -465], [995, -466], [993, -466], [993, -467], [991, -467], [991, -468], [990, -468], [990, -470], [989, -470], [989, -472]]}, "center": {"246": [986, -463]}}, -{"id": 5250, "name": "Carling Black Label", "description": "Carling Black Label is a lager distributed by Carling Brewing Company.\n\nIn South Africa, Black Label began to take on a different tone with the anti-apartheid movement. This was partly due to the fact that, at 5.5%, it had more alcohol than the other brands of beer that generally had 5.0%, as noted in the popular advertising catch phrase \"only hard working students deserve an extra 0.5 percent\"\n\nFurthermore, the connotation of black to the racial issue became a point of pride to the native Africans.", "links": {"website": ["https://en.wikipedia.org/wiki/Carling_Black_Label"], "subreddit": ["southafrica"]}, "path": {"250-258": [[-1301, -650], [-1301, -630], [-1295, -630], [-1295, -650]]}, "center": {"250-258": [-1298, -640]}}, -{"id": 5251, "name": "Junimo", "description": "The Junimo is a forest spirit from the indie game Stardew Valley.", "links": {"website": ["https://stardewvalleywiki.com/Junimos"], "subreddit": ["StardewValley", "IndieAlliance"], "discord": ["5TyCKk8h", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"163-258": [[-723, 392], [-721, 393], [-717, 396], [-718, 394], [-719, 393], [-718, 392], [-716, 393], [-716, 394], [-716, 398], [-717, 398], [-717, 403], [-718, 404], [-719, 405], [-721, 406], [-722, 407], [-723, 406], [-724, 406], [-725, 407], [-726, 406], [-727, 406], [-728, 405], [-729, 404], [-730, 403], [-730, 398], [-731, 397], [-731, 393], [-729, 392], [-728, 393], [-729, 394], [-729, 396], [-728, 395], [-727, 394], [-726, 393], [-724, 393]]}, "center": {"163-258": [-723, 400]}}, -{"id": 5252, "name": "Baal Krishna playing flute", "description": "This Art resembles Lord Shri Krishna, the Hindu god of Compassion, playing the flute on Mt. Govardhangiri.", "links": {"subreddit": ["IndiaPlace"]}, "path": {"89-258": [[797, -194], [854, -194], [831, -217], [831, -220], [828, -220], [828, -227], [830, -227], [830, -232], [832, -232], [832, -244], [833, -244], [833, -246], [838, -246], [838, -248], [833, -248], [833, -251], [832, -251], [832, -255], [831, -255], [831, -257], [834, -258], [835, -259], [836, -260], [836, -265], [832, -265], [828, -259], [827, -260], [827, -264], [826, -264], [826, -266], [824, -268], [821, -263], [821, -260], [820, -259], [820, -257], [819, -257], [819, -255], [818, -255], [818, -251], [817, -251], [817, -249], [816, -249], [817, -248], [798, -248], [798, -246], [813, -246], [813, -244], [814, -244], [814, -243], [818, -243], [818, -242], [819, -241], [819, -228], [820, -228], [820, -227], [822, -227], [822, -226], [822, -220], [819, -220], [819, -216], [818, -216], [818, -214], [812, -208], [805, -201], [802, -198]]}, "center": {"89-258": [826, -205]}}, -{"id": 5253, "name": "Chase", "description": "Chase the police dog pup from the kids show Paw Patrol.", "links": {"subreddit": ["pawpatrol"]}, "path": {"250-258": [[-1214, 104], [-1216, 102], [-1218, 101], [-1220, 99], [-1222, 98], [-1223, 99], [-1224, 101], [-1223, 103], [-1223, 104], [-1223, 106], [-1222, 106], [-1222, 109], [-1221, 110], [-1221, 112], [-1219, 112], [-1220, 113], [-1218, 114], [-1219, 113], [-1217, 115], [-1218, 115], [-1217, 116], [-1215, 116], [-1213, 116], [-1212, 115], [-1211, 114], [-1210, 112], [-1210, 110], [-1210, 109], [-1209, 108], [-1210, 106], [-1210, 105], [-1209, 106]]}, "center": {"250-258": [-1215, 109]}}, -{"id": 5254, "name": "Tokino Sora", "description": "Tokino Sora (ときのそら) is the founding member of Hololive production. Debuted on 7 September 2017, she was the first to debut even before Hololive generations were even a thing. She is referred to as a 'Solo Debutant' and currently a part of 'hololive 0th gen' with her fellow solo debutants: Roboco-san, Sakura Miko, Hoshimachi Suisei, and AZKi.\n\nWell-respected by her fans, her peers, and the entire community at large as a pioneer, spearheading the way on what will eventually become one of the biggest VTuber agencies in Japan, and the entire world. By the time of writing this article, Sora has over 1.1 Million subscribers on Youtube.", "links": {"website": ["https://www.youtube.com/@TokinoSora"], "subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"250-258": [[1227, -804], [1226, -818], [1224, -824], [1227, -825], [1227, -826], [1224, -827], [1222, -829], [1221, -831], [1220, -832], [1219, -831], [1217, -831], [1216, -832], [1210, -832], [1210, -831], [1207, -831], [1207, -829], [1206, -829], [1203, -827], [1200, -824], [1200, -821], [1199, -820], [1199, -818], [1201, -816], [1200, -815], [1200, -811], [1201, -808], [1201, -805], [1203, -804], [1204, -803], [1210, -803], [1211, -804]]}, "center": {"250-258": [1213, -817]}}, -{"id": 5255, "name": "Coluche", "description": "Michel Gérard Joseph Colucci (French: [miʃɛl ʒeʁaʁ ʒɔzɛf kɔlytʃi], Italian: [koˈluttʃi]; 28 October 1944 – 19 June 1986), better known under his stage name Coluche (IPA: [kɔlyʃ]), was a French stage comedian and cinema actor. He adopted Coluche as a stage name at age 26, when he began his entertainment career. He became known for his irreverent attitude towards politics and the establishment, and he incorporated this into much of his material. He was one of the first major comedians to regularly use profanities as a source of humor on French television. He also founded the charity \"Les Restaurants du Cœur\" which still provides free meals and other products to people in need.", "links": {"website": ["https://en.wikipedia.org/wiki/Coluche"]}, "path": {"250-258": [[681, -677], [685, -694], [705, -705], [710, -732], [723, -739], [736, -733], [741, -722], [741, -711], [740, -708], [755, -696], [764, -692], [764, -680], [766, -677]]}, "center": {"250-258": [723, -697]}}, -{"id": 5256, "name": "Aloy from Horizon (Game-series)", "description": "Aloy is the main protagonist of Horizon Zero Dawn and Horizon Forbidden West games.\n\nHorizon Zero Dawn and Horizon Forbidden West are both developed by Guerrilla Games, a Dutch game developer part of PlayStation Studios.", "links": {"website": ["https://en.wikipedia.org/wiki/Horizon_(video_game_series)", "https://en.wikipedia.org/wiki/Guerrilla_Games"], "subreddit": ["PlaceNL", "Horizon"], "discord": ["PlaceNL"], "wiki": ["Aloy_(Horizon)"]}, "path": {"250-258": [[-1083, -463], [-1082, -463], [-1082, -465], [-1081, -465], [-1081, -467], [-1080, -467], [-1080, -468], [-1079, -468], [-1079, -469], [-1074, -469], [-1074, -468], [-1073, -468], [-1073, -467], [-1072, -467], [-1072, -465], [-1071, -465], [-1071, -463], [-1070, -463], [-1070, -456], [-1071, -456], [-1071, -455], [-1073, -455], [-1073, -452], [-1074, -452], [-1074, -451], [-1075, -451], [-1075, -452], [-1076, -452], [-1078, -452], [-1078, -451], [-1079, -451], [-1079, -452], [-1080, -452], [-1080, -455], [-1082, -455], [-1082, -456], [-1083, -456]]}, "center": {"250-258": [-1076, -460]}}, -{"id": 5257, "name": "Half life 3", "description": "the lambda symbol with a superscript 3, likely meaning the long awaited (and still waiting) Half Life 3!\n\n(while writing this description i googled hl3 and a \"leak\" on reddit turned out to be a dude using an outdated app 😭😭)", "links": {}, "path": {"224-258": [[-1217, -529], [-1197, -529], [-1197, -511], [-1217, -511]]}, "center": {"224-258": [-1207, -520]}}, -{"id": 5258, "name": "The Normal Album pattern (Will Wood)", "description": "A recreation of patterning featured on the cover of \"The Normal Album\" by Will Wood", "links": {"subreddit": ["willwood"]}, "path": {"250-258": [[-1348, 407], [-1348, 408], [-1330, 408], [-1330, 407]]}, "center": {"250-258": [-1339, 408]}}, -{"id": 5259, "name": "Ingress", "description": "Ingress is an augmented reality mobile game developed and published by Niantic.", "links": {"website": ["https://en.wikipedia.org/wiki/Ingress_(video_game)"], "subreddit": ["Ingress"]}, "path": {"250-258": [[-999, -332], [-966, -332], [-966, -368], [-999, -368]]}, "center": {"250-258": [-982, -350]}}, -{"id": 5260, "name": "Strawhats Crew Jolly Roger", "description": "jolly roger for Strawhat Pirates from Eiichiro Oda's manga One Piece", "links": {"subreddit": ["onepiece"]}, "path": {"250-258": [[-583, 972], [-583, 998], [-559, 998], [-560, 972]]}, "center": {"250-258": [-571, 985]}}, +{"id": 5250, "name": "Carling Black Label", "description": "Carling Black Label is a lager distributed by Carling Brewing Company.\n\nIn South Africa, Black Label began to take on a different tone with the anti-apartheid movement. This was partly due to the fact that, at 5.5%, it had more alcohol than the other brands of beer that generally had 5.0%, as noted in the popular advertising catch phrase \"only hard working students deserve an extra 0.5 percent\"\n\nFurthermore, the connotation of black to the racial issue became a point of pride to the native Africans.", "links": {"website": ["https://en.wikipedia.org/wiki/Carling_Black_Label"], "subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1301, -650], [-1301, -630], [-1295, -630], [-1295, -650]]}, "center": {"250-258, T": [-1298, -640]}}, +{"id": 5251, "name": "Junimo", "description": "The Junimo is a forest spirit from the indie game Stardew Valley.", "links": {"website": ["https://stardewvalleywiki.com/Junimos"], "subreddit": ["StardewValley", "IndieAlliance"], "discord": ["5TyCKk8h", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"163-258, T": [[-723, 392], [-721, 393], [-717, 396], [-718, 394], [-719, 393], [-718, 392], [-716, 393], [-716, 394], [-716, 398], [-717, 398], [-717, 403], [-718, 404], [-719, 405], [-721, 406], [-722, 407], [-723, 406], [-724, 406], [-725, 407], [-726, 406], [-727, 406], [-728, 405], [-729, 404], [-730, 403], [-730, 398], [-731, 397], [-731, 393], [-729, 392], [-728, 393], [-729, 394], [-729, 396], [-728, 395], [-727, 394], [-726, 393], [-724, 393]]}, "center": {"163-258, T": [-723, 400]}}, +{"id": 5252, "name": "Baal Krishna playing flute", "description": "This Art resembles Lord Shri Krishna, the Hindu god of Compassion, playing the flute on Mt. Govardhangiri.", "links": {"subreddit": ["IndiaPlace"]}, "path": {"89-258, T": [[797, -194], [854, -194], [831, -217], [831, -220], [828, -220], [828, -227], [830, -227], [830, -232], [832, -232], [832, -244], [833, -244], [833, -246], [838, -246], [838, -248], [833, -248], [833, -251], [832, -251], [832, -255], [831, -255], [831, -257], [834, -258], [835, -259], [836, -260], [836, -265], [832, -265], [828, -259], [827, -260], [827, -264], [826, -264], [826, -266], [824, -268], [821, -263], [821, -260], [820, -259], [820, -257], [819, -257], [819, -255], [818, -255], [818, -251], [817, -251], [817, -249], [816, -249], [817, -248], [798, -248], [798, -246], [813, -246], [813, -244], [814, -244], [814, -243], [818, -243], [818, -242], [819, -241], [819, -228], [820, -228], [820, -227], [822, -227], [822, -226], [822, -220], [819, -220], [819, -216], [818, -216], [818, -214], [812, -208], [805, -201], [802, -198]]}, "center": {"89-258, T": [826, -205]}}, +{"id": 5253, "name": "Chase", "description": "Chase the police dog pup from the kids show Paw Patrol.", "links": {"subreddit": ["pawpatrol"]}, "path": {"250-258, T": [[-1214, 104], [-1216, 102], [-1218, 101], [-1220, 99], [-1222, 98], [-1223, 99], [-1224, 101], [-1223, 103], [-1223, 104], [-1223, 106], [-1222, 106], [-1222, 109], [-1221, 110], [-1221, 112], [-1219, 112], [-1220, 113], [-1218, 114], [-1219, 113], [-1217, 115], [-1218, 115], [-1217, 116], [-1215, 116], [-1213, 116], [-1212, 115], [-1211, 114], [-1210, 112], [-1210, 110], [-1210, 109], [-1209, 108], [-1210, 106], [-1210, 105], [-1209, 106]]}, "center": {"250-258, T": [-1215, 109]}}, +{"id": 5254, "name": "Tokino Sora", "description": "Tokino Sora (ときのそら) is the founding member of Hololive production. Debuted on 7 September 2017, she was the first to debut even before Hololive generations were even a thing. She is referred to as a 'Solo Debutant' and currently a part of 'hololive 0th gen' with her fellow solo debutants: Roboco-san, Sakura Miko, Hoshimachi Suisei, and AZKi.\n\nWell-respected by her fans, her peers, and the entire community at large as a pioneer, spearheading the way on what will eventually become one of the biggest VTuber agencies in Japan, and the entire world. By the time of writing this article, Sora has over 1.1 Million subscribers on Youtube.", "links": {"website": ["https://www.youtube.com/@TokinoSora"], "subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"250-258, T": [[1227, -804], [1226, -818], [1224, -824], [1227, -825], [1227, -826], [1224, -827], [1222, -829], [1221, -831], [1220, -832], [1219, -831], [1217, -831], [1216, -832], [1210, -832], [1210, -831], [1207, -831], [1207, -829], [1206, -829], [1203, -827], [1200, -824], [1200, -821], [1199, -820], [1199, -818], [1201, -816], [1200, -815], [1200, -811], [1201, -808], [1201, -805], [1203, -804], [1204, -803], [1210, -803], [1211, -804]]}, "center": {"250-258, T": [1213, -817]}}, +{"id": 5255, "name": "Coluche", "description": "Michel Gérard Joseph Colucci (French: [miʃɛl ʒeʁaʁ ʒɔzɛf kɔlytʃi], Italian: [koˈluttʃi]; 28 October 1944 – 19 June 1986), better known under his stage name Coluche (IPA: [kɔlyʃ]), was a French stage comedian and cinema actor. He adopted Coluche as a stage name at age 26, when he began his entertainment career. He became known for his irreverent attitude towards politics and the establishment, and he incorporated this into much of his material. He was one of the first major comedians to regularly use profanities as a source of humor on French television. He also founded the charity \"Les Restaurants du Cœur\" which still provides free meals and other products to people in need.", "links": {"website": ["https://en.wikipedia.org/wiki/Coluche"]}, "path": {"250-258, T": [[681, -677], [685, -694], [705, -705], [710, -732], [723, -739], [736, -733], [741, -722], [741, -711], [740, -708], [755, -696], [764, -692], [764, -680], [766, -677]]}, "center": {"250-258, T": [723, -697]}}, +{"id": 5256, "name": "Aloy from Horizon (Game-series)", "description": "Aloy is the main protagonist of Horizon Zero Dawn and Horizon Forbidden West games.\n\nHorizon Zero Dawn and Horizon Forbidden West are both developed by Guerrilla Games, a Dutch game developer part of PlayStation Studios.", "links": {"website": ["https://en.wikipedia.org/wiki/Horizon_(video_game_series)", "https://en.wikipedia.org/wiki/Guerrilla_Games"], "subreddit": ["PlaceNL", "Horizon"], "discord": ["PlaceNL"], "wiki": ["Aloy_(Horizon)"]}, "path": {"250-258, T": [[-1083, -463], [-1082, -463], [-1082, -465], [-1081, -465], [-1081, -467], [-1080, -467], [-1080, -468], [-1079, -468], [-1079, -469], [-1074, -469], [-1074, -468], [-1073, -468], [-1073, -467], [-1072, -467], [-1072, -465], [-1071, -465], [-1071, -463], [-1070, -463], [-1070, -456], [-1071, -456], [-1071, -455], [-1073, -455], [-1073, -452], [-1074, -452], [-1074, -451], [-1075, -451], [-1075, -452], [-1076, -452], [-1078, -452], [-1078, -451], [-1079, -451], [-1079, -452], [-1080, -452], [-1080, -455], [-1082, -455], [-1082, -456], [-1083, -456]]}, "center": {"250-258, T": [-1076, -460]}}, +{"id": 5257, "name": "Half life 3", "description": "the lambda symbol with a superscript 3, likely meaning the long awaited (and still waiting) Half Life 3!\n\n(while writing this description i googled hl3 and a \"leak\" on reddit turned out to be a dude using an outdated app 😭😭)", "links": {}, "path": {"224-258, T": [[-1217, -529], [-1197, -529], [-1197, -511], [-1217, -511]]}, "center": {"224-258, T": [-1207, -520]}}, +{"id": 5258, "name": "The Normal Album pattern (Will Wood)", "description": "A recreation of patterning featured on the cover of \"The Normal Album\" by Will Wood", "links": {"subreddit": ["willwood"]}, "path": {"250-258, T": [[-1348, 407], [-1348, 408], [-1330, 408], [-1330, 407]]}, "center": {"250-258, T": [-1339, 408]}}, +{"id": 5259, "name": "Ingress", "description": "Ingress is an augmented reality mobile game developed and published by Niantic.", "links": {"website": ["https://en.wikipedia.org/wiki/Ingress_(video_game)"], "subreddit": ["Ingress"]}, "path": {"250-258, T": [[-999, -332], [-966, -332], [-966, -368], [-999, -368]]}, "center": {"250-258, T": [-982, -350]}}, +{"id": 5260, "name": "Strawhats Crew Jolly Roger", "description": "jolly roger for Strawhat Pirates from Eiichiro Oda's manga One Piece", "links": {"subreddit": ["onepiece"]}, "path": {"250-258, T": [[-583, 972], [-583, 998], [-559, 998], [-560, 972]]}, "center": {"250-258, T": [-571, 985]}}, {"id": 5261, "name": "The Duck Dude", "description": "A beautiful duck made by a little group of friends.", "links": {}, "path": {"52-61": [[-107, 387], [-117, 387], [-117, 396], [-107, 396]]}, "center": {"52-61": [-112, 392]}}, {"id": 5262, "name": "God of Fear and Hunger Sigil", "description": "The first symbol created by the Fear and Hunger community.\nThe Symbol represents the god of Fear and Hunger which is an important beeing in the video game series 'Fear and Hunger' and 'Fear and Hunger 2: Termina'\nIt was later destroyed by the belgium flag.", "links": {"subreddit": ["FearAndHunger"]}, "path": {"3-7": [[-366, -250], [-358, -250], [-358, -242], [-366, -242]]}, "center": {"3-7": [-362, -246]}}, -{"id": 5263, "name": "Holiday trip with \"autopech\" (car breakdown)", "description": "A typical Dutch summer holiday trip (car and caravan) experiencing a breakdown and stopping at a yellow roadside emergency phone ('praatpaal') to call for help. The yellow emergency phones were removed in July 2017 due to the abundance of mobile phones.\n\nOn the right side of the Dutch flag you can see an ANWB-van on its way to help.", "links": {"website": ["https://nl.wikipedia.org/wiki/Praatpaal"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"108-258": [[-738, -468], [-754, -468], [-759, -464], [-758, -455], [-764, -455], [-765, -459], [-773, -465], [-782, -465], [-786, -461], [-792, -467], [-804, -458], [-804, -451], [-735, -451], [-735, -465]]}, "center": {"108-258": [-744, -459]}}, +{"id": 5263, "name": "Holiday trip with \"autopech\" (car breakdown)", "description": "A typical Dutch summer holiday trip (car and caravan) experiencing a breakdown and stopping at a yellow roadside emergency phone ('praatpaal') to call for help. The yellow emergency phones were removed in July 2017 due to the abundance of mobile phones.\n\nOn the right side of the Dutch flag you can see an ANWB-van on its way to help.", "links": {"website": ["https://nl.wikipedia.org/wiki/Praatpaal"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"108-258, T": [[-738, -468], [-754, -468], [-759, -464], [-758, -455], [-764, -455], [-765, -459], [-773, -465], [-782, -465], [-786, -461], [-792, -467], [-804, -458], [-804, -451], [-735, -451], [-735, -465]]}, "center": {"108-258, T": [-744, -459]}}, {"id": 5264, "name": "Nutribun Flag", "description": "The short-lived flag of the Nutribun Republic, the discord server of the Filipino shitposting subreddit r/2philippines4u", "links": {"subreddit": ["2philippines4u"], "discord": ["nutribun-republic-996688646063271996"]}, "path": {"1-12": [[470, 250], [499, 250], [499, 265], [470, 265]]}, "center": {"1-12": [485, 258]}}, {"id": 5265, "name": "Adiyogi Shiva", "description": "Shiva is known as The Destroyer within the Trimurti, the Hindu trinity, which also includes Brahma and Vishnu. In the Shaivite tradition of Hinduism, Shiva is the Supreme Lord who creates, protects and transforms the universe.", "links": {"website": ["https://en.wikipedia.org/wiki/Shiva"]}, "path": {"168": [[717, -256], [694, -273], [731, -278], [741, -224], [687, -222], [699, -270]]}, "center": {"168": [710, -240]}}, {"id": 5266, "name": "F**k Face Pod", "description": "We as a small and proud subreddit were able to change four lines of fuck spez in aggressively defended German flag territory into f**k face pod in the wee hours of the morning when most redditors were sleeping. it was finally overrun by a large mug of beer. Though it didn't last to long, I would like to think our mighty community is proud to have been represented none the less on r/place.", "links": {"subreddit": ["FUCKFACEPOD"]}, "path": {"185": [[-5, -972], [-6, -972], [-6, -994], [44, -995], [44, -972]]}, "center": {"185": [19, -983]}}, -{"id": 5267, "name": "Weighted Companion Cube", "description": "This is the Weighted Companion Cube from the game \"Portal\".\n\n\"The Enrichment Center reminds you that the Weighted Companion Cube will never threaten to stab you and, in fact, cannot speak. In the event that the Weighted Companion Cube does speak, the Enrichment Center urges you to disregard its advice.\"", "links": {"website": ["https://store.steampowered.com/app/400/Portal/"], "subreddit": ["portal"]}, "path": {"229-258": [[42, -711], [42, -698], [56, -697], [56, -711]]}, "center": {"229-258": [49, -704]}}, -{"id": 5268, "name": "Pokémon Mystery Dungeon badge", "description": "A badge from the game series Pokémon Mystery Dungeon.", "links": {"website": ["https://en.wikipedia.org/wiki/Pok%C3%A9mon_Mystery_Dungeon"], "subreddit": ["MysteryDungeon"]}, "path": {"248-258": [[-1419, 340], [-1421, 337], [-1425, 339], [-1426, 346], [-1420, 350], [-1408, 349], [-1404, 344], [-1406, 337], [-1412, 338], [-1416, 338]]}, "center": {"248-258": [-1414, 344]}}, -{"id": 5269, "name": "Springbok", "description": "The springbok or springbuck is a medium-sized antelope found mainly in south and southwest Africa.\n\nThe springbok is the national animal of South Africa, Is present on the South African R1 coin and is the nickname for the South African rugby team.", "links": {"website": ["https://en.wikipedia.org/wiki/Springbok"], "subreddit": ["southafrica"]}, "path": {"250-258": [[-1295, -632], [-1295, -627], [-1298, -627], [-1298, -623], [-1300, -623], [-1300, -617], [-1297, -617], [-1297, -610], [-1284, -610], [-1284, -616], [-1279, -616], [-1279, -621], [-1279, -622], [-1280, -622], [-1280, -623], [-1281, -623], [-1281, -624], [-1282, -624], [-1282, -625], [-1283, -625], [-1283, -626], [-1284, -626], [-1284, -629], [-1285, -629], [-1285, -632]]}, "center": {"250-258": [-1290, -621]}}, -{"id": 5270, "name": "Psyduck", "description": "Psyduck is a Pokémon.", "links": {"subreddit": ["pokemon"]}, "path": {"250-258": [[961, -502], [967, -505], [967, -508], [964, -509], [965, -512], [960, -519], [961, -522], [954, -523], [954, -521], [950, -521], [948, -515], [949, -512], [948, -510], [950, -508], [948, -506], [953, -503], [957, -501], [962, -502]]}, "center": {"250-258": [957, -511]}}, -{"id": 5271, "name": "Kannada (Language)", "description": "These are characters(Above \"ಕ\" - \"K\" the first consonant in the script, Below \"ಅ\" - \"A\" the first vowel in the script) from the Kannada Language(44 million native speakers), one of the official languages of India and Karnataka(a state in South India).", "links": {"website": ["https://en.wikipedia.org/wiki/Kannada"], "subreddit": ["kannada", "karnataka", "harate"]}, "path": {"250-258": [[680, 652], [680, 675], [693, 675], [693, 652]]}, "center": {"250-258": [687, 664]}}, -{"id": 5272, "name": "S.P.H.E.R.E.", "description": "The S.P.H.E.R.E. is a friends group based in Paris, whose simplified logo was added to the canvas by some of its members.", "links": {}, "path": {"212-258": [[-1132, 252], [-1129, 255], [-1129, 259], [-1132, 262], [-1136, 262], [-1139, 259], [-1139, 255], [-1136, 252]]}, "center": {"212-258": [-1134, 257]}}, +{"id": 5267, "name": "Weighted Companion Cube", "description": "This is the Weighted Companion Cube from the game \"Portal\".\n\n\"The Enrichment Center reminds you that the Weighted Companion Cube will never threaten to stab you and, in fact, cannot speak. In the event that the Weighted Companion Cube does speak, the Enrichment Center urges you to disregard its advice.\"", "links": {"website": ["https://store.steampowered.com/app/400/Portal/"], "subreddit": ["portal"]}, "path": {"229-258, T": [[42, -711], [42, -698], [56, -697], [56, -711]]}, "center": {"229-258, T": [49, -704]}}, +{"id": 5268, "name": "Pokémon Mystery Dungeon badge", "description": "A badge from the game series Pokémon Mystery Dungeon.", "links": {"website": ["https://en.wikipedia.org/wiki/Pok%C3%A9mon_Mystery_Dungeon"], "subreddit": ["MysteryDungeon"]}, "path": {"248-258, T": [[-1419, 340], [-1421, 337], [-1425, 339], [-1426, 346], [-1420, 350], [-1408, 349], [-1404, 344], [-1406, 337], [-1412, 338], [-1416, 338]]}, "center": {"248-258, T": [-1414, 344]}}, +{"id": 5269, "name": "Springbok", "description": "The springbok or springbuck is a medium-sized antelope found mainly in south and southwest Africa.\n\nThe springbok is the national animal of South Africa, Is present on the South African R1 coin and is the nickname for the South African rugby team.", "links": {"website": ["https://en.wikipedia.org/wiki/Springbok"], "subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1295, -632], [-1295, -627], [-1298, -627], [-1298, -623], [-1300, -623], [-1300, -617], [-1297, -617], [-1297, -610], [-1284, -610], [-1284, -616], [-1279, -616], [-1279, -621], [-1279, -622], [-1280, -622], [-1280, -623], [-1281, -623], [-1281, -624], [-1282, -624], [-1282, -625], [-1283, -625], [-1283, -626], [-1284, -626], [-1284, -629], [-1285, -629], [-1285, -632]]}, "center": {"250-258, T": [-1290, -621]}}, +{"id": 5270, "name": "Psyduck", "description": "Psyduck is a Pokémon.", "links": {"subreddit": ["pokemon"]}, "path": {"250-258, T": [[961, -502], [967, -505], [967, -508], [964, -509], [965, -512], [960, -519], [961, -522], [954, -523], [954, -521], [950, -521], [948, -515], [949, -512], [948, -510], [950, -508], [948, -506], [953, -503], [957, -501], [962, -502]]}, "center": {"250-258, T": [957, -511]}}, +{"id": 5271, "name": "Kannada (Language)", "description": "These are characters(Above \"ಕ\" - \"K\" the first consonant in the script, Below \"ಅ\" - \"A\" the first vowel in the script) from the Kannada Language(44 million native speakers), one of the official languages of India and Karnataka(a state in South India).", "links": {"website": ["https://en.wikipedia.org/wiki/Kannada"], "subreddit": ["kannada", "karnataka", "harate"]}, "path": {"250-258, T": [[680, 652], [680, 675], [693, 675], [693, 652]]}, "center": {"250-258, T": [687, 664]}}, +{"id": 5272, "name": "S.P.H.E.R.E.", "description": "The S.P.H.E.R.E. is a friends group based in Paris, whose simplified logo was added to the canvas by some of its members.", "links": {}, "path": {"212-258, T": [[-1132, 252], [-1129, 255], [-1129, 259], [-1132, 262], [-1136, 262], [-1139, 259], [-1139, 255], [-1136, 252]]}, "center": {"212-258, T": [-1134, 257]}}, {"id": 5273, "name": "OKAMI", "description": "OKAMI is a very popular german chatbotproject on Whatsapp that exists since August 2020.", "links": {"subreddit": ["ookami", "ookami_v2"]}, "path": {"187-197": [[-803, -987], [-803, -983], [-779, -983], [-779, -987]], "198-200": [[-790, -987], [-779, -987], [-779, -983], [-789, -983], [-789, -984], [-790, -985]], "201-232": [[-790, -987], [-770, -987], [-770, -983], [-790, -983]]}, "center": {"187-197": [-791, -985], "198-200": [-784, -985], "201-232": [-780, -985]}}, {"id": 5274, "name": "FUC(K SPEZ)", "description": "u/spez, real name Steve Huffman, is the CEO of Reddit. This \"Fuck Spez\" message was written in protest of the recent pricing changes to the Reddit API that have killed off many third-party Reddit apps, along with Spez's controversial responses to user outcry.\n\nThe phrase \"Fuck Spez\" (ID: 3158) appearing prominently at the end of the r/place edition, just minutes before the canvas was terminated, represents a last-minute, collaborative effort by multiple communities.\n\nDespite the haste in its preparation, the phrase's appearance on the canvas attests to the power of collective action within the r/place event. Different communities came together in a swift and coordinated effort to make a statement - a testament to the bonds formed and the spirit of unity shared amongst Reddit users during this unique digital event.", "links": {}, "path": {"255-258": [[-453, -381], [-454, -80], [-396, -80], [-396, -200], [-302, -199], [-303, -255], [-394, -255], [-396, -323], [-299, -323], [-300, -379], [-451, -381], [-306, -341], [-299, -379], [-185, -378], [-186, -160], [-170, -144], [-151, -127], [-126, -118], [-99, -137], [-79, -147], [-76, -171], [-76, -377], [-36, -376], [-34, -104], [-37, -90], [-48, -80], [-61, -77], [-202, -77], [-223, -83], [-238, -89], [-242, -107], [-243, -133], [-241, -379], [13, -375], [12, -78], [202, -76], [202, -140], [91, -142], [94, -284], [202, -283], [200, -370], [13, -374]]}, "center": {"255-258": [63, -323]}}, -{"id": 5275, "name": "G59 Skull", "description": "A skull logo for the hip hop record label G59 Records(Grey 59), most known for being owned by the duo the $uicideboy$", "links": {"website": ["https://g59records.com/"], "subreddit": ["G59"]}, "path": {"250-258": [[-1252, 521], [-1233, 521], [-1234, 543], [-1253, 543], [-1253, 521]]}, "center": {"250-258": [-1243, 532]}}, +{"id": 5275, "name": "G59 Skull", "description": "A skull logo for the hip hop record label G59 Records(Grey 59), most known for being owned by the duo the $uicideboy$", "links": {"website": ["https://g59records.com/"], "subreddit": ["G59"]}, "path": {"250-258, T": [[-1252, 521], [-1233, 521], [-1234, 543], [-1253, 543], [-1253, 521]]}, "center": {"250-258, T": [-1243, 532]}}, {"id": 5276, "name": "the Penguin", "description": "A small discord group made a little penguin, he died :')", "links": {}, "path": {"2-11": [[-264, 264], [-263, 282], [-249, 282], [-249, 264]]}, "center": {"2-11": [-256, 273]}}, -{"id": 5277, "name": "Stardew Valley Duck", "description": "The adorable duck from Stardew Valley", "links": {"website": ["https://stardewvalley.net"], "subreddit": ["StardewValley"]}, "path": {"250-258": [[3, 328], [6, 328], [6, 329], [7, 329], [7, 334], [6, 334], [6, 335], [5, 335], [5, 336], [4, 336], [4, 337], [4, 338], [-11, 338], [-11, 332], [-10, 332], [-10, 331], [-9, 331], [-10, 330], [-12, 330], [-12, 327], [-11, 327], [-11, 326], [-10, 326], [-10, 324], [-8, 324], [-8, 322], [0, 322], [0, 323], [1, 323], [1, 325], [2, 325], [2, 326], [3, 326], [3, 327]]}, "center": {"250-258": [-3, 331]}}, -{"id": 5278, "name": "Hello Internet", "description": "Logo of the podcast \"Hello Internet\" by content creators CGP Grey and Brady Haran.", "links": {"website": ["http://www.hellointernet.fm/"], "subreddit": ["HelloInternet"]}, "path": {"197-258": [[-589, 962], [-597, 962], [-597, 954], [-589, 954]]}, "center": {"197-258": [-593, 958]}}, -{"id": 5279, "name": "BASIL / STRANGER", "description": "BASIL is a major supporting character and the tritagonist in OMORI. He serves as one of the major driving forces behind the story's events as the party spends most of the game looking for him after his sudden disappearance.\n\nHe was initially drawn as his headspace character but during the whiteout, he was changed into STRANGER.\n\nSTRANGERS are a group of characters and NPCs in OMORI. They serve as mysterious, cryptic entities that occasionally appear before OMORI and his friends in HEADSPACE. Most of them seem to know about the truth regarding the game's overall plot.", "links": {"website": ["https://omori.fandom.com/wiki/BASIL", "https://omori.fandom.com/wiki/STRANGER?so=search"], "subreddit": ["omori"]}, "path": {"12-258": [[-284, -259], [-291, -259], [-302, -250], [-291, -230], [-283, -230], [-273, -251]]}, "center": {"12-258": [-288, -247]}}, -{"id": 5280, "name": "Ween", "description": "This is the area of the band Ween, most commonly known for \"Ocean Man\" and \"Loop de Loop\" from Spongebob, or \"Roses are Free\" and \"Transdermal Celebration\". The little guy is the band's lovable mascot/logo/deity, The Boognish. He is said to have appeared to the founding members, Gene and Dean, only twice. Once in 8th grade computer class, and once whilst tripping balls on acid. Truly spiritual.", "links": {"subreddit": ["ween"]}, "path": {"174-258": [[389, 24], [414, 24], [420, 23], [425, 21], [431, 25], [431, 30], [428, 38], [421, 42], [414, 36], [415, 32], [389, 31], [389, 29], [387, 30]]}, "center": {"174-258": [422, 30]}}, +{"id": 5277, "name": "Stardew Valley Duck", "description": "The adorable duck from Stardew Valley", "links": {"website": ["https://stardewvalley.net"], "subreddit": ["StardewValley"]}, "path": {"250-258, T": [[3, 328], [6, 328], [6, 329], [7, 329], [7, 334], [6, 334], [6, 335], [5, 335], [5, 336], [4, 336], [4, 337], [4, 338], [-11, 338], [-11, 332], [-10, 332], [-10, 331], [-9, 331], [-10, 330], [-12, 330], [-12, 327], [-11, 327], [-11, 326], [-10, 326], [-10, 324], [-8, 324], [-8, 322], [0, 322], [0, 323], [1, 323], [1, 325], [2, 325], [2, 326], [3, 326], [3, 327]]}, "center": {"250-258, T": [-3, 331]}}, +{"id": 5278, "name": "Hello Internet", "description": "Logo of the podcast \"Hello Internet\" by content creators CGP Grey and Brady Haran.", "links": {"website": ["http://www.hellointernet.fm/"], "subreddit": ["HelloInternet"]}, "path": {"197-258, T": [[-589, 962], [-597, 962], [-597, 954], [-589, 954]]}, "center": {"197-258, T": [-593, 958]}}, +{"id": 5279, "name": "BASIL / STRANGER", "description": "BASIL is a major supporting character and the tritagonist in OMORI. He serves as one of the major driving forces behind the story's events as the party spends most of the game looking for him after his sudden disappearance.\n\nHe was initially drawn as his headspace character but during the whiteout, he was changed into STRANGER.\n\nSTRANGERS are a group of characters and NPCs in OMORI. They serve as mysterious, cryptic entities that occasionally appear before OMORI and his friends in HEADSPACE. Most of them seem to know about the truth regarding the game's overall plot.", "links": {"website": ["https://omori.fandom.com/wiki/BASIL", "https://omori.fandom.com/wiki/STRANGER?so=search"], "subreddit": ["omori"]}, "path": {"12-258, T": [[-284, -259], [-291, -259], [-302, -250], [-291, -230], [-283, -230], [-273, -251]]}, "center": {"12-258, T": [-288, -247]}}, +{"id": 5280, "name": "Ween", "description": "This is the area of the band Ween, most commonly known for \"Ocean Man\" and \"Loop de Loop\" from Spongebob, or \"Roses are Free\" and \"Transdermal Celebration\". The little guy is the band's lovable mascot/logo/deity, The Boognish. He is said to have appeared to the founding members, Gene and Dean, only twice. Once in 8th grade computer class, and once whilst tripping balls on acid. Truly spiritual.", "links": {"subreddit": ["ween"]}, "path": {"174-258, T": [[389, 24], [414, 24], [420, 23], [425, 21], [431, 25], [431, 30], [428, 38], [421, 42], [414, 36], [415, 32], [389, 31], [389, 29], [387, 30]]}, "center": {"174-258, T": [422, 30]}}, {"id": 5281, "name": "Etika Memorial (1990-2019)", "description": "Desmond Daniel Amofah (May 12, 1990 - c. June 19, 2019) was an American streamer and YouTuber known for his over-the-top reactions to Super Smash Bros character reveals and Nintendo Directs. His online career began in 2007 but he really began to take off after Super Smash Bros. 4, and gathered a very passionate fanbase throughout his years creating content. He referred to his fanbase as the JOYCONBOYZ, thus the presence of the Nintendo Switch. He was unfortunately found dead on June 25th, 2019 following a series of erratic behavior, including distressing tweets regarding suicide, channel deletions, and even going missing. May he rest in peace.", "links": {"subreddit": ["EtikaRedditNetwork"]}, "path": {"253": [[-845, 869], [-845, 868], [-844, 868], [-844, 867], [-809, 867], [-808, 868], [-807, 869], [-806, 870], [-806, 881], [-807, 882], [-808, 883], [-809, 884], [-844, 885], [-845, 884], [-846, 883], [-847, 882], [-847, 870], [-846, 869]]}, "center": {"253": [-829, 876]}}, {"id": 5282, "name": "Beta Objects", "description": "Beta Objects is an upcoming web series by Froggy_2763. The series is mostly made up of sentient objects as its cast. The character here is \"Basil,\" a sentient basil leaf with no arms.", "links": {"website": ["https://beta-objects.fandom.com/wiki/Beta_Objects_Wiki"], "subreddit": ["BetaObjects"], "discord": ["bfSKw5V68P"]}, "path": {"10": [[257, -79], [257, -98], [266, -98], [266, -79]]}, "center": {"10": [262, -88]}}, -{"id": 5283, "name": "Wilson", "description": "Wilson is the wooden gear mascot of the Wintergatan Youtube channel.", "links": {"website": ["https://wintergatan.net", "https://www.youtube.com/@Wintergatan"], "subreddit": ["wintergatan"]}, "path": {"200-258": [[-281, 700], [-274, 700], [-273, 702], [-273, 706], [-274, 708], [-281, 708], [-282, 706], [-282, 702]]}, "center": {"200-258": [-277, 704]}}, -{"id": 5284, "name": "Eskom", "description": "Eskom is a South African electricity public utility.\n\nIn January 2008, Eskom controversially introduced \"load shedding\" – planned rolling blackouts based on a rotating schedule, in periods where short supply threatened the integrity of the grid.", "links": {"website": ["https://en.wikipedia.org/wiki/Eskom"], "subreddit": ["southafrica"]}, "path": {"250-258": [[-1295, -650], [-1295, -632], [-1289, -632], [-1289, -650]]}, "center": {"250-258": [-1292, -641]}}, +{"id": 5283, "name": "Wilson", "description": "Wilson is the wooden gear mascot of the Wintergatan Youtube channel.", "links": {"website": ["https://wintergatan.net", "https://www.youtube.com/@Wintergatan"], "subreddit": ["wintergatan"]}, "path": {"200-258, T": [[-281, 700], [-274, 700], [-273, 702], [-273, 706], [-274, 708], [-281, 708], [-282, 706], [-282, 702]]}, "center": {"200-258, T": [-277, 704]}}, +{"id": 5284, "name": "Eskom", "description": "Eskom is a South African electricity public utility.\n\nIn January 2008, Eskom controversially introduced \"load shedding\" – planned rolling blackouts based on a rotating schedule, in periods where short supply threatened the integrity of the grid.", "links": {"website": ["https://en.wikipedia.org/wiki/Eskom"], "subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1295, -650], [-1295, -632], [-1289, -632], [-1289, -650]]}, "center": {"250-258, T": [-1292, -641]}}, {"id": 5285, "name": "Patrick Star", "description": "The Spanish streamer Rubius joked about drawing a sexy Patrick Star, displayed on his screen, over the star of the Turkish flag.\nThe streamer's community didn't fight for the drawing since it was a joke, so it lasted very little (only a few pixels were present in this snapshot).", "links": {"website": ["https://www.twitch.tv/rubius", "https://en.wikipedia.org/wiki/Patrick_Star"]}, "path": {"114": [[-232, 329], [-244, 353], [-261, 354], [-246, 373], [-264, 399], [-232, 381], [-209, 398], [-220, 368], [-197, 355], [-221, 351]]}, "center": {"114": [-234, 364]}}, -{"id": 5286, "name": "Varik", "description": "The protagonist of Toby \"Radiation\" Fox's infamous Earthbound Halloween Hack. In a world where Ness, Paula, Jeff, and Poo's souls never return to their bodies after the defeat of Giygas, Dr. Andonuts goes insane with grief and begins unleashing horrible monsters upon the world, and Varik is sent to kill him.\n\nHis appearance is based on Ares from the Brandish series.", "links": {}, "path": {"160-258": [[948, -71], [949, -72], [950, -73], [950, -75], [949, -75], [948, -76], [947, -77], [948, -78], [949, -79], [948, -80], [949, -81], [950, -82], [947, -85], [947, -87], [948, -87], [949, -92], [950, -93], [957, -93], [960, -93], [959, -91], [961, -90], [961, -89], [960, -88], [961, -87], [961, -86], [959, -84], [959, -83], [958, -82], [959, -81], [959, -79], [958, -79], [961, -77], [959, -75], [958, -73], [958, -71], [959, -71], [959, -70], [948, -70]]}, "center": {"160-258": [954, -87]}}, -{"id": 5287, "name": "Lightning McQueen", "description": "Kachow!", "links": {}, "path": {"234-258": [[-1427, -622], [-1412, -622], [-1412, -611], [-1427, -611]]}, "center": {"234-258": [-1419, -616]}}, -{"id": 5288, "name": "KKHTA heart-eye", "description": "An eye representing Touhou derivative work and psychological horror web series Koishi Komeiji's Heart-Throbbing Adventure part 6 intro. \n\nThe series is infamous for it's gorey themes and has a mixed reputation within the Touhou community, but has gathered a cult following over the years.\n\nThe origin's of this eye actually comes from Touhou 11 ~ Subterranean Animism, where the extra stage boss - Koishi Komeiji - has a red heart with an eye in it shown during her dialogue.", "links": {}, "path": {"71-118": [[197, 171], [200, 168], [200, 165], [194, 165], [194, 168]], "119-258": [[181, 168], [184, 164], [184, 162], [178, 162], [178, 165]]}, "center": {"71-118": [197, 167], "119-258": [181, 164]}}, -{"id": 5289, "name": "EVE & WALL-E", "description": "The robot couple EVE (Right) & WALL-E (Left) from the 2008 Disney Pixar film WALL-E.", "links": {"website": ["https://en.wikipedia.org/wiki/WALL-E"]}, "path": {"115-253": [[-368, 279], [-368, 276], [-366, 274], [-366, 273], [-367, 272], [-367, 268], [-364, 265], [-358, 264], [-357, 265], [-356, 265], [-353, 268], [-352, 267], [-346, 267], [-348, 265], [-345, 262], [-343, 262], [-340, 265], [-341, 266], [-341, 269], [-338, 272], [-338, 275], [-335, 272], [-331, 272], [-328, 275], [-328, 276], [-332, 280], [-332, 282], [-333, 283], [-334, 283], [-336, 281], [-338, 281], [-336, 283], [-336, 286], [-337, 287], [-340, 287], [-341, 286], [-341, 285], [-342, 284], [-346, 284], [-347, 285], [-347, 286], [-348, 287], [-351, 287], [-352, 286], [-352, 283], [-350, 281], [-352, 281], [-353, 282], [-355, 282], [-356, 283], [-356, 284], [-359, 287], [-361, 287], [-364, 284], [-364, 283]]}, "center": {"115-253": [-358, 274]}}, -{"id": 5290, "name": "Takkie and Siepie", "description": "Takkie (Dog) and Siepie (Cat) are two characters in the 'Jip en Janneke' children's books written by the dutch writer Annie M.G. Schmidt and illustrated by Fiep Westendorp.", "links": {"website": ["https://en.wikipedia.org/wiki/Jip_and_Janneke"]}, "path": {"250-258": [[-664, -515], [-628, -515], [-628, -505], [-664, -505]]}, "center": {"250-258": [-646, -510]}}, +{"id": 5286, "name": "Varik", "description": "The protagonist of Toby \"Radiation\" Fox's infamous Earthbound Halloween Hack. In a world where Ness, Paula, Jeff, and Poo's souls never return to their bodies after the defeat of Giygas, Dr. Andonuts goes insane with grief and begins unleashing horrible monsters upon the world, and Varik is sent to kill him.\n\nHis appearance is based on Ares from the Brandish series.", "links": {}, "path": {"160-258, T": [[948, -71], [949, -72], [950, -73], [950, -75], [949, -75], [948, -76], [947, -77], [948, -78], [949, -79], [948, -80], [949, -81], [950, -82], [947, -85], [947, -87], [948, -87], [949, -92], [950, -93], [957, -93], [960, -93], [959, -91], [961, -90], [961, -89], [960, -88], [961, -87], [961, -86], [959, -84], [959, -83], [958, -82], [959, -81], [959, -79], [958, -79], [961, -77], [959, -75], [958, -73], [958, -71], [959, -71], [959, -70], [948, -70]]}, "center": {"160-258, T": [954, -87]}}, +{"id": 5287, "name": "Lightning McQueen", "description": "Kachow!", "links": {}, "path": {"234-258, T": [[-1427, -622], [-1412, -622], [-1412, -611], [-1427, -611]]}, "center": {"234-258, T": [-1419, -616]}}, +{"id": 5288, "name": "KKHTA heart-eye", "description": "An eye representing Touhou derivative work and psychological horror web series Koishi Komeiji's Heart-Throbbing Adventure part 6 intro. \n\nThe series is infamous for it's gorey themes and has a mixed reputation within the Touhou community, but has gathered a cult following over the years.\n\nThe origin's of this eye actually comes from Touhou 11 ~ Subterranean Animism, where the extra stage boss - Koishi Komeiji - has a red heart with an eye in it shown during her dialogue.", "links": {}, "path": {"71-118": [[197, 171], [200, 168], [200, 165], [194, 165], [194, 168]], "119-258, T": [[181, 168], [184, 164], [184, 162], [178, 162], [178, 165]]}, "center": {"71-118": [197, 167], "119-258, T": [181, 164]}}, +{"id": 5289, "name": "EVE & WALL-E", "description": "The robot couple EVE (Right) & WALL-E (Left) from the 2008 Disney Pixar film WALL-E.", "links": {"website": ["https://en.wikipedia.org/wiki/WALL-E"]}, "path": {"115-253, T": [[-368, 279], [-368, 276], [-366, 274], [-366, 273], [-367, 272], [-367, 268], [-364, 265], [-358, 264], [-357, 265], [-356, 265], [-353, 268], [-352, 267], [-346, 267], [-348, 265], [-345, 262], [-343, 262], [-340, 265], [-341, 266], [-341, 269], [-338, 272], [-338, 275], [-335, 272], [-331, 272], [-328, 275], [-328, 276], [-332, 280], [-332, 282], [-333, 283], [-334, 283], [-336, 281], [-338, 281], [-336, 283], [-336, 286], [-337, 287], [-340, 287], [-341, 286], [-341, 285], [-342, 284], [-346, 284], [-347, 285], [-347, 286], [-348, 287], [-351, 287], [-352, 286], [-352, 283], [-350, 281], [-352, 281], [-353, 282], [-355, 282], [-356, 283], [-356, 284], [-359, 287], [-361, 287], [-364, 284], [-364, 283]]}, "center": {"115-253, T": [-358, 274]}}, +{"id": 5290, "name": "Takkie and Siepie", "description": "Takkie (Dog) and Siepie (Cat) are two characters in the 'Jip en Janneke' children's books written by the dutch writer Annie M.G. Schmidt and illustrated by Fiep Westendorp.", "links": {"website": ["https://en.wikipedia.org/wiki/Jip_and_Janneke"]}, "path": {"250-258, T": [[-664, -515], [-628, -515], [-628, -505], [-664, -505]]}, "center": {"250-258, T": [-646, -510]}}, {"id": 5291, "name": "The name of a Youtuber: Rocketcrafter11", "description": "This little Youtuber immortalised himself with the help of friends in this year's r/place.", "links": {"website": ["https://www.youtube.com/@Rocketcrafter11"]}, "path": {"238-247": [[-226, 994], [-173, 994], [-173, 999], [-226, 999]]}, "center": {"238-247": [-199, 997]}}, {"id": 5292, "name": "Anya Forger", "description": "Anya Forger, a telepathic young girl from the anime Spy x Family", "links": {"website": ["https://en.wikipedia.org/wiki/Spy_%C3%97_Family"]}, "path": {"242": [[1176, -744], [1174, -744], [1174, -754], [1175, -758], [1180, -760], [1180, -762], [1183, -762], [1183, -760], [1186, -759], [1190, -759], [1190, -755], [1191, -744]]}, "center": {"242": [1182, -752]}}, {"id": 5293, "name": "Gamerboy80 and Chazm", "description": "Hypixel youtubers known for playing bedwars with each other and streaming other various games.", "links": {"website": ["https://youtube.com/@gamerboy80", "https://youtube.com/@Chazm", "https://m.twitch.tv/gamerboy80twitch/home"], "subreddit": ["gamerboy80"]}, "path": {"219-239": [[-194, 843], [-177, 843], [-176, 843], [-176, 852], [-194, 852]]}, "center": {"219-239": [-185, 848]}}, -{"id": 5294, "name": "Whatever People Say I Am, That's What I'm Not Album Cover", "description": "This is the cover of the first Arctic Monkeys album Whatever People Say I Am, That's What I'm Not", "links": {"website": ["https://en.wikipedia.org/wiki/Whatever_People_Say_I_Am,_That%27s_What_I%27m_Not"], "subreddit": ["arcticmonkeys"]}, "path": {"153-258": [[-381, 485], [-381, 499], [-382, 498], [-382, 485], [-382, 484], [-380, 485], [-381, 499], [-369, 499], [-369, 484]]}, "center": {"153-258": [-375, 491]}}, -{"id": 5295, "name": "Polandball", "description": "Polandball is an internet meme initiated on [Drawball.com](https://Drawball.com)", "links": {"website": ["https://en.wikipedia.org/wiki/Countryballs", "https://www.polandballwiki.com/wiki/Polandball_Wiki"]}, "path": {"250-258": [[649, -144], [649, -145], [648, -145], [648, -147], [649, -147], [649, -149], [650, -149], [650, -150], [651, -150], [651, -151], [652, -151], [653, -151], [653, -152], [659, -152], [660, -151], [661, -151], [661, -150], [662, -150], [662, -149], [663, -149], [663, -147], [664, -147], [664, -145], [663, -145], [663, -144], [662, -144], [662, -142], [650, -142], [650, -144]]}, "center": {"250-258": [656, -147]}}, +{"id": 5294, "name": "Whatever People Say I Am, That's What I'm Not Album Cover", "description": "This is the cover of the first Arctic Monkeys album Whatever People Say I Am, That's What I'm Not", "links": {"website": ["https://en.wikipedia.org/wiki/Whatever_People_Say_I_Am,_That%27s_What_I%27m_Not"], "subreddit": ["arcticmonkeys"]}, "path": {"153-258, T": [[-381, 485], [-381, 499], [-382, 498], [-382, 485], [-382, 484], [-380, 485], [-381, 499], [-369, 499], [-369, 484]]}, "center": {"153-258, T": [-375, 491]}}, +{"id": 5295, "name": "Polandball", "description": "Polandball is an internet meme initiated on [Drawball.com](https://Drawball.com)", "links": {"website": ["https://en.wikipedia.org/wiki/Countryballs", "https://www.polandballwiki.com/wiki/Polandball_Wiki"]}, "path": {"250-258, T": [[649, -144], [649, -145], [648, -145], [648, -147], [649, -147], [649, -149], [650, -149], [650, -150], [651, -150], [651, -151], [652, -151], [653, -151], [653, -152], [659, -152], [660, -151], [661, -151], [661, -150], [662, -150], [662, -149], [663, -149], [663, -147], [664, -147], [664, -145], [663, -145], [663, -144], [662, -144], [662, -142], [650, -142], [650, -144]]}, "center": {"250-258, T": [656, -147]}}, {"id": 5296, "name": "Mayhem", "description": "Mayhem is a Norwegian black metal band formed in 1984. They are known for being a key part of the Norwegian/Scandinavian black metal scene in the 90s, and as one of the most influential and well-known bands in the genre as a whole. \n\nThere is also a tribute to the band's lyricist and lead vocalist, Per Yngve \"Pelle\" Ohlin, (also known by his stage name Dead) who died aged 22 in 1991.", "links": {"subreddit": ["Mayhem"]}, "path": {"248": [[-3, 855], [-3, 871], [29, 871], [29, 855]]}, "center": {"248": [13, 863]}}, -{"id": 5297, "name": "Ruperto_xd2", "description": "Name of one of the internal groups of the \"ARKEANOS\" created by the stremer Ruperto", "links": {"website": ["https://www.twitch.tv/ruperto_xd2"]}, "path": {"250-258": [[-702, 429], [-702, 444], [-655, 444], [-655, 430]]}, "center": {"250-258": [-687, 437]}}, -{"id": 5298, "name": "Pindakaas (met stukjes pinda)", "description": "Pindakaas, or Peanutbutter, with added chunks of peanut for extra crunch, by Calvé.", "links": {"website": ["https://www.calve.nl/producten/pindakaas/pindakaas-met-stukjes-pinda.html"], "subreddit": ["PlaceNL"]}, "path": {"250-258": [[-324, -547], [-322, -547], [-322, -548], [-310, -548], [-310, -547], [-308, -547], [-308, -544], [-309, -544], [-309, -542], [-308, -542], [-308, -523], [-309, -523], [-309, -522], [-311, -522], [-311, -521], [-321, -521], [-321, -522], [-323, -522], [-323, -523], [-324, -523], [-324, -542], [-323, -542], [-323, -544], [-324, -544]]}, "center": {"250-258": [-316, -535]}}, -{"id": 5299, "name": "Tapeworm (Will Wood)", "description": "Pixel art of a tapeworm, as interpreted by Will Wood on the cover of his album \"Everything is a Lot\". The worm has a monochromatic tapering design and is presented here on a red background.", "links": {"subreddit": ["willwood"]}, "path": {"250-258": [[-1348, 404], [-1327, 404], [-1327, 401], [-1322, 401], [-1322, 404], [-1325, 404], [-1325, 406], [-1348, 406]]}, "center": {"250-258": [-1325, 403]}}, -{"id": 5300, "name": "TOA - Toha Heavy Industries", "description": "It is a fictional, major manufacturing and engineering corporation existing in the worlds of BLAME!, Biomega, and Knights of Sidonia, all written and illustrated by Tsutomu Nihei.", "links": {"subreddit": ["Netsphere", "BLAME"]}, "path": {"238-258": [[-1480, -648], [-1500, -648], [-1500, -627], [-1480, -627]]}, "center": {"238-258": [-1490, -637]}}, -{"id": 5302, "name": "Pom Pom", "description": "Pom Pom is the main character of the Hungarian TV show 'Tales of Pom Pom' which aired between 1980 and 1984. Pom Pom is an unknown creature that resembles a fur patch and is thus often used as a wig by his friend, Picur.", "links": {"website": ["https://hu.wikipedia.org/wiki/Pom_Pom_mes%C3%A9i"]}, "path": {"250-258": [[-1190, -14], [-1193, -13], [-1193, -20], [-1196, -24], [-1195, -25], [-1196, -26], [-1197, -25], [-1200, -26], [-1203, -26], [-1206, -23], [-1208, -25], [-1207, -20], [-1207, -13], [-1209, -14], [-1211, -9], [-1207, -7], [-1193, -7], [-1190, -8]]}, "center": {"250-258": [-1200, -15]}}, -{"id": 5303, "name": "Thorfinn's Dagger", "description": "Thorfinn Thorsson, also nicknamed Karlsefni, is a former warrior of Askeladd's band as well as a former slave on Ketil's farm, who is currently a trader and adventurer attempting to settle in Vinland. He is the main protagonist of the popular manga/anime Vinland Saga written and illustrated by Makoto Yukimura. \n\nThorfinn was gifted this dagger by Thors to protect himself but sadly Thorfinn used it for revenge. \n\nJust as Thorfinn put down his weapons, we place his dagger symbolically upon the Hill of Swords, for \"no one has enemies\" - Band of the Hawk", "links": {"website": ["https://vinlandsaga.fandom.com/wiki/Thorfinn"], "subreddit": ["Berserk"], "discord": ["M699v8xSqz"]}, "path": {"193-194": [[604, 946], [604, 948], [603, 949], [604, 950], [604, 954], [607, 954], [607, 950], [608, 949], [607, 948], [607, 946]], "195-258": [[607, 935], [607, 941], [606, 942], [607, 943], [607, 945], [613, 945], [613, 943], [614, 942], [613, 941], [613, 935]]}, "center": {"193-194": [606, 949], "195-258": [610, 940]}}, -{"id": 5304, "name": "La Baleine - Free Games", "description": "A whale representing a multi-gaming discord of friends, which was created and defended in collaboration with the neighbors on the right, La Baguette, and without the help of Neodou, which represents 80% of our discord.nUne baleine représentant un discord multi gaming de potos, qui à été créer et défendu en collaboration avec les voisins de droite, La Baguette, et sans l'aide de Neodou, qui représente 80% de notre discord.", "links": {}, "path": {"103-258": [[-571, 115], [-571, 122], [-587, 122], [-587, 115], [-587, 108], [-575, 108], [-575, 115]]}, "center": {"103-258": [-581, 116]}}, -{"id": 5305, "name": "Sakuya Izayoi", "description": "Sakuya Izayoi, the Chief Maid of the Scarlet Devil Mansion. She made her first appearance as the Stage 5 boss of Touhou 6, Embodiment of Scarlet Devil. She is a reoccurring, sometimes playable character in Touhou Project games. Sakuya has the ability to manipulate space-time, including stopping time.", "links": {"website": ["https://en.touhouwiki.net/wiki/Sakuya_Izayoi"], "subreddit": ["Touhou"]}, "path": {"139-258": [[147, 230], [158, 230], [158, 222], [147, 222]]}, "center": {"139-258": [153, 226]}}, -{"id": 5306, "name": "Squishmallows", "description": "Squishmallows are a popular stuffed animal brand, launched in 2017 by Kellytoy. They are notable for their unique squishy, almost-marshmallow-like texture. Depicted here are three cow ones, which are a particularly popular species amongst collectors. Their names from left to right are: Patty, Ronnie, and Caedyn.", "links": {"subreddit": ["squishmallows"]}, "path": {"250-258": [[-786, -219], [-786, -206], [-750, -206], [-750, -219], [-772, -219]]}, "center": {"250-258": [-768, -212]}}, +{"id": 5297, "name": "Ruperto_xd2", "description": "Name of one of the internal groups of the \"ARKEANOS\" created by the stremer Ruperto", "links": {"website": ["https://www.twitch.tv/ruperto_xd2"]}, "path": {"250-258, T": [[-702, 429], [-702, 444], [-655, 444], [-655, 430]]}, "center": {"250-258, T": [-687, 437]}}, +{"id": 5298, "name": "Pindakaas (met stukjes pinda)", "description": "Pindakaas, or Peanutbutter, with added chunks of peanut for extra crunch, by Calvé.", "links": {"website": ["https://www.calve.nl/producten/pindakaas/pindakaas-met-stukjes-pinda.html"], "subreddit": ["PlaceNL"]}, "path": {"250-258, T": [[-324, -547], [-322, -547], [-322, -548], [-310, -548], [-310, -547], [-308, -547], [-308, -544], [-309, -544], [-309, -542], [-308, -542], [-308, -523], [-309, -523], [-309, -522], [-311, -522], [-311, -521], [-321, -521], [-321, -522], [-323, -522], [-323, -523], [-324, -523], [-324, -542], [-323, -542], [-323, -544], [-324, -544]]}, "center": {"250-258, T": [-316, -535]}}, +{"id": 5299, "name": "Tapeworm (Will Wood)", "description": "Pixel art of a tapeworm, as interpreted by Will Wood on the cover of his album \"Everything is a Lot\". The worm has a monochromatic tapering design and is presented here on a red background.", "links": {"subreddit": ["willwood"]}, "path": {"250-258, T": [[-1348, 404], [-1327, 404], [-1327, 401], [-1322, 401], [-1322, 404], [-1325, 404], [-1325, 406], [-1348, 406]]}, "center": {"250-258, T": [-1325, 403]}}, +{"id": 5300, "name": "TOA - Toha Heavy Industries", "description": "It is a fictional, major manufacturing and engineering corporation existing in the worlds of BLAME!, Biomega, and Knights of Sidonia, all written and illustrated by Tsutomu Nihei.", "links": {"subreddit": ["Netsphere", "BLAME"]}, "path": {"238-258, T": [[-1480, -648], [-1500, -648], [-1500, -627], [-1480, -627]]}, "center": {"238-258, T": [-1490, -637]}}, +{"id": 5302, "name": "Pom Pom", "description": "Pom Pom is the main character of the Hungarian TV show 'Tales of Pom Pom' which aired between 1980 and 1984. Pom Pom is an unknown creature that resembles a fur patch and is thus often used as a wig by his friend, Picur.", "links": {"website": ["https://hu.wikipedia.org/wiki/Pom_Pom_mes%C3%A9i"]}, "path": {"250-258, T": [[-1190, -14], [-1193, -13], [-1193, -20], [-1196, -24], [-1195, -25], [-1196, -26], [-1197, -25], [-1200, -26], [-1203, -26], [-1206, -23], [-1208, -25], [-1207, -20], [-1207, -13], [-1209, -14], [-1211, -9], [-1207, -7], [-1193, -7], [-1190, -8]]}, "center": {"250-258, T": [-1200, -15]}}, +{"id": 5303, "name": "Thorfinn's Dagger", "description": "Thorfinn Thorsson, also nicknamed Karlsefni, is a former warrior of Askeladd's band as well as a former slave on Ketil's farm, who is currently a trader and adventurer attempting to settle in Vinland. He is the main protagonist of the popular manga/anime Vinland Saga written and illustrated by Makoto Yukimura. \n\nThorfinn was gifted this dagger by Thors to protect himself but sadly Thorfinn used it for revenge. \n\nJust as Thorfinn put down his weapons, we place his dagger symbolically upon the Hill of Swords, for \"no one has enemies\" - Band of the Hawk", "links": {"website": ["https://vinlandsaga.fandom.com/wiki/Thorfinn"], "subreddit": ["Berserk"], "discord": ["M699v8xSqz"]}, "path": {"193-194": [[604, 946], [604, 948], [603, 949], [604, 950], [604, 954], [607, 954], [607, 950], [608, 949], [607, 948], [607, 946]], "195-258, T": [[607, 935], [607, 941], [606, 942], [607, 943], [607, 945], [613, 945], [613, 943], [614, 942], [613, 941], [613, 935]]}, "center": {"193-194": [606, 949], "195-258, T": [610, 940]}}, +{"id": 5304, "name": "La Baleine - Free Games", "description": "A whale representing a multi-gaming discord of friends, which was created and defended in collaboration with the neighbors on the right, La Baguette, and without the help of Neodou, which represents 80% of our discord.nUne baleine représentant un discord multi gaming de potos, qui à été créer et défendu en collaboration avec les voisins de droite, La Baguette, et sans l'aide de Neodou, qui représente 80% de notre discord.", "links": {}, "path": {"103-258, T": [[-571, 115], [-571, 122], [-587, 122], [-587, 115], [-587, 108], [-575, 108], [-575, 115]]}, "center": {"103-258, T": [-581, 116]}}, +{"id": 5305, "name": "Sakuya Izayoi", "description": "Sakuya Izayoi, the Chief Maid of the Scarlet Devil Mansion. She made her first appearance as the Stage 5 boss of Touhou 6, Embodiment of Scarlet Devil. She is a reoccurring, sometimes playable character in Touhou Project games. Sakuya has the ability to manipulate space-time, including stopping time.", "links": {"website": ["https://en.touhouwiki.net/wiki/Sakuya_Izayoi"], "subreddit": ["Touhou"]}, "path": {"139-258, T": [[147, 230], [158, 230], [158, 222], [147, 222]]}, "center": {"139-258, T": [153, 226]}}, +{"id": 5306, "name": "Squishmallows", "description": "Squishmallows are a popular stuffed animal brand, launched in 2017 by Kellytoy. They are notable for their unique squishy, almost-marshmallow-like texture. Depicted here are three cow ones, which are a particularly popular species amongst collectors. Their names from left to right are: Patty, Ronnie, and Caedyn.", "links": {"subreddit": ["squishmallows"]}, "path": {"250-258, T": [[-786, -219], [-786, -206], [-750, -206], [-750, -219], [-772, -219]]}, "center": {"250-258, T": [-768, -212]}}, {"id": 5307, "name": "Edna and Harvey", "description": "Edna and Harvey from the two german adventure video games \"Edna bricht aus\" and \"Harveys neue Augen\" developed by Daedalic Entertainment.", "links": {"website": ["https://en.wikipedia.org/wiki/Edna_%26_Harvey:_The_Breakout", "https://en.wikipedia.org/wiki/Edna_%26_Harvey:_Harvey%27s_New_Eyes"]}, "path": {"226": [[-1102, -551], [-1103, -569], [-1103, -581], [-1099, -585], [-1095, -586], [-1092, -584], [-1090, -584], [-1086, -583], [-1083, -578], [-1082, -570], [-1082, -561], [-1077, -553], [-1076, -551], [-1098, -551], [-1099, -554], [-1101, -553], [-1102, -553], [-1099, -554], [-1097, -551], [-1076, -552], [-1060, -551], [-1064, -557], [-1064, -562], [-1063, -567], [-1066, -570], [-1066, -573], [-1062, -580], [-1060, -576], [-1059, -577], [-1059, -583], [-1063, -586], [-1066, -580], [-1069, -573], [-1071, -581], [-1074, -586], [-1078, -581], [-1080, -576], [-1076, -576], [-1075, -577], [-1074, -578], [-1074, -575], [-1072, -572], [-1074, -571], [-1076, -568], [-1079, -564], [-1079, -561], [-1077, -559], [-1077, -556], [-1073, -556], [-1073, -559], [-1068, -559], [-1068, -557], [-1073, -553], [-1073, -551]]}, "center": {"226": [-1093, -572]}}, -{"id": 5308, "name": "ČD class 810", "description": "ČSD Class M 152.0 is the most common Czechoslovak diesel motor coach in the Czech Republic and Slovakia. It was designed, manufactured and used in the former Czechoslovakia and now used in the Czech Republic (ČD Class 810) and Slovakia (ZSSK Class 812). It was produced from 1975 to 1982 by Vagonka Studénka.", "links": {"website": ["https://en.wikipedia.org/wiki/%C4%8CSD_Class_M_152.0"]}, "path": {"48-258": [[-56, -375], [-57, -377], [-57, -379], [-56, -383], [-58, -387], [-56, -389], [-1, -389], [2, -387], [1, -384], [0, -379], [1, -375], [2, -371], [-10, -370], [-57, -370], [-57, -375], [-57, -377], [-57, -380]]}, "center": {"48-258": [-28, -379]}}, -{"id": 5309, "name": "Flag of South Africa", "description": "South Africa, officially the Republic of South Africa, is the southernmost country in Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa"], "subreddit": ["southafrica"]}, "path": {"250-258": [[1487, 744], [1500, 744], [1500, 754], [1487, 754]]}, "center": {"250-258": [1494, 749]}}, -{"id": 5310, "name": "Flowey the Flower", "description": "The primary antagonist of Undertale. A wicked creature who believe that the truth of the world is to kill or be killed. Up until the arrival of Frisk, he has singular power over the timeline, and can reset the world as he pleases. Unable to accomplish his goals on his own, though, he manipulates Frisk into defeating Asgore so he can steal the human souls Asgore has collected for himself and become a godlike being.", "links": {"subreddit": ["Undertale"]}, "path": {"217-258": [[-1116, -788], [-1112, -788], [-1113, -789], [-1113, -791], [-1112, -792], [-1112, -794], [-1113, -795], [-1113, -796], [-1111, -796], [-1108, -795], [-1108, -797], [-1107, -800], [-1105, -800], [-1104, -802], [-1106, -804], [-1107, -804], [-1109, -807], [-1112, -807], [-1113, -806], [-1115, -806], [-1116, -807], [-1119, -807], [-1119, -806], [-1120, -805], [-1120, -804], [-1123, -804], [-1124, -802], [-1123, -801], [-1122, -800], [-1121, -799], [-1121, -795], [-1118, -795], [-1117, -796], [-1116, -795], [-1115, -794], [-1114, -793], [-1115, -792], [-1115, -790], [-1116, -790]]}, "center": {"217-258": [-1115, -801]}}, -{"id": 5311, "name": "Snorlax", "description": "Snorlax is a huge, bipedal, dark blue-green mammalian Pokémon with a cream-colored face, belly, and feet. Its body is composed of mostly its belly, as its limbs are comparatively small. Its head is large with small, pointed ears, and two pointed teeth protruding from its lower jaw. It has round feet, which both have three claws and a circular brown paw pad, and short arms with five claws on each hand. Snorlax's bulk makes it the heaviest Normal type.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Snorlax_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"250-258": [[-1350, 270], [-1351, 269], [-1352, 269], [-1352, 273], [-1353, 274], [-1354, 274], [-1355, 274], [-1356, 274], [-1357, 275], [-1358, 276], [-1359, 277], [-1360, 278], [-1361, 279], [-1362, 279], [-1363, 280], [-1364, 281], [-1364, 282], [-1363, 284], [-1362, 286], [-1357, 287], [-1355, 289], [-1353, 290], [-1351, 290], [-1350, 289], [-1347, 288], [-1343, 285], [-1343, 284], [-1342, 279], [-1341, 278], [-1340, 275], [-1339, 271], [-1339, 270], [-1343, 271], [-1345, 271], [-1349, 270], [-1350, 269], [-1351, 269]]}, "center": {"250-258": [-1351, 281]}}, -{"id": 5312, "name": "Mini Perry The Platypus", "description": "Mini version of the beloved character from the animated TV show \"Phineas and Ferb.\"", "links": {"website": ["https://phineasandferb.fandom.com/wiki/Perry_the_Platypus"]}, "path": {"249-258": [[-1016, -173], [-1016, -174], [-1015, -175], [-1019, -179], [-1019, -182], [-1018, -183], [-1015, -183], [-1015, -184], [-1016, -185], [-1016, -187], [-1015, -187], [-1014, -188], [-1014, -189], [-1013, -190], [-1009, -190], [-1008, -189], [-1008, -188], [-1007, -187], [-1006, -187], [-1006, -185], [-1007, -184], [-1006, -183], [-1006, -181], [-1007, -180], [-1006, -179], [-1005, -179], [-1005, -173]]}, "center": {"249-258": [-1012, -179]}}, -{"id": 5313, "name": "Guts (Berserk)", "description": "A chibi rendition of the main character of the Manga/Anime series \"Berserk\" by Kentaro Miura.\nThis chibi was made by the Band of the Hawk discord group in collaboration with the Jojo community.", "links": {"website": ["https://berserk.fandom.com/wiki/Guts"], "discord": ["5Yr3UEYXRZ"]}, "path": {"212-258": [[-1133, -99], [-1131, -99], [-1130, -98], [-1130, -94], [-1130, -93], [-1129, -93], [-1130, -92], [-1130, -91], [-1131, -92], [-1132, -92], [-1133, -91], [-1133, -92], [-1134, -93], [-1133, -94], [-1134, -95], [-1134, -98]]}, "center": {"212-258": [-1132, -97]}}, +{"id": 5308, "name": "ČD class 810", "description": "ČSD Class M 152.0 is the most common Czechoslovak diesel motor coach in the Czech Republic and Slovakia. It was designed, manufactured and used in the former Czechoslovakia and now used in the Czech Republic (ČD Class 810) and Slovakia (ZSSK Class 812). It was produced from 1975 to 1982 by Vagonka Studénka.", "links": {"website": ["https://en.wikipedia.org/wiki/%C4%8CSD_Class_M_152.0"]}, "path": {"48-258, T": [[-56, -375], [-57, -377], [-57, -379], [-56, -383], [-58, -387], [-56, -389], [-1, -389], [2, -387], [1, -384], [0, -379], [1, -375], [2, -371], [-10, -370], [-57, -370], [-57, -375], [-57, -377], [-57, -380]]}, "center": {"48-258, T": [-28, -379]}}, +{"id": 5309, "name": "Flag of South Africa", "description": "South Africa, officially the Republic of South Africa, is the southernmost country in Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa"], "subreddit": ["southafrica"]}, "path": {"250-258, T": [[1487, 744], [1500, 744], [1500, 754], [1487, 754]]}, "center": {"250-258, T": [1494, 749]}}, +{"id": 5310, "name": "Flowey the Flower", "description": "The primary antagonist of Undertale. A wicked creature who believe that the truth of the world is to kill or be killed. Up until the arrival of Frisk, he has singular power over the timeline, and can reset the world as he pleases. Unable to accomplish his goals on his own, though, he manipulates Frisk into defeating Asgore so he can steal the human souls Asgore has collected for himself and become a godlike being.", "links": {"subreddit": ["Undertale"]}, "path": {"217-258, T": [[-1116, -788], [-1112, -788], [-1113, -789], [-1113, -791], [-1112, -792], [-1112, -794], [-1113, -795], [-1113, -796], [-1111, -796], [-1108, -795], [-1108, -797], [-1107, -800], [-1105, -800], [-1104, -802], [-1106, -804], [-1107, -804], [-1109, -807], [-1112, -807], [-1113, -806], [-1115, -806], [-1116, -807], [-1119, -807], [-1119, -806], [-1120, -805], [-1120, -804], [-1123, -804], [-1124, -802], [-1123, -801], [-1122, -800], [-1121, -799], [-1121, -795], [-1118, -795], [-1117, -796], [-1116, -795], [-1115, -794], [-1114, -793], [-1115, -792], [-1115, -790], [-1116, -790]]}, "center": {"217-258, T": [-1115, -801]}}, +{"id": 5311, "name": "Snorlax", "description": "Snorlax is a huge, bipedal, dark blue-green mammalian Pokémon with a cream-colored face, belly, and feet. Its body is composed of mostly its belly, as its limbs are comparatively small. Its head is large with small, pointed ears, and two pointed teeth protruding from its lower jaw. It has round feet, which both have three claws and a circular brown paw pad, and short arms with five claws on each hand. Snorlax's bulk makes it the heaviest Normal type.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Snorlax_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"250-258, T": [[-1350, 270], [-1351, 269], [-1352, 269], [-1352, 273], [-1353, 274], [-1354, 274], [-1355, 274], [-1356, 274], [-1357, 275], [-1358, 276], [-1359, 277], [-1360, 278], [-1361, 279], [-1362, 279], [-1363, 280], [-1364, 281], [-1364, 282], [-1363, 284], [-1362, 286], [-1357, 287], [-1355, 289], [-1353, 290], [-1351, 290], [-1350, 289], [-1347, 288], [-1343, 285], [-1343, 284], [-1342, 279], [-1341, 278], [-1340, 275], [-1339, 271], [-1339, 270], [-1343, 271], [-1345, 271], [-1349, 270], [-1350, 269], [-1351, 269]]}, "center": {"250-258, T": [-1351, 281]}}, +{"id": 5312, "name": "Mini Perry The Platypus", "description": "Mini version of the beloved character from the animated TV show \"Phineas and Ferb.\"", "links": {"website": ["https://phineasandferb.fandom.com/wiki/Perry_the_Platypus"]}, "path": {"249-258, T": [[-1016, -173], [-1016, -174], [-1015, -175], [-1019, -179], [-1019, -182], [-1018, -183], [-1015, -183], [-1015, -184], [-1016, -185], [-1016, -187], [-1015, -187], [-1014, -188], [-1014, -189], [-1013, -190], [-1009, -190], [-1008, -189], [-1008, -188], [-1007, -187], [-1006, -187], [-1006, -185], [-1007, -184], [-1006, -183], [-1006, -181], [-1007, -180], [-1006, -179], [-1005, -179], [-1005, -173]]}, "center": {"249-258, T": [-1012, -179]}}, +{"id": 5313, "name": "Guts (Berserk)", "description": "A chibi rendition of the main character of the Manga/Anime series \"Berserk\" by Kentaro Miura.\nThis chibi was made by the Band of the Hawk discord group in collaboration with the Jojo community.", "links": {"website": ["https://berserk.fandom.com/wiki/Guts"], "discord": ["5Yr3UEYXRZ"]}, "path": {"212-258, T": [[-1133, -99], [-1131, -99], [-1130, -98], [-1130, -94], [-1130, -93], [-1129, -93], [-1130, -92], [-1130, -91], [-1131, -92], [-1132, -92], [-1133, -91], [-1133, -92], [-1134, -93], [-1133, -94], [-1134, -95], [-1134, -98]]}, "center": {"212-258, T": [-1132, -97]}}, {"id": 5314, "name": "Mochidoru Suisei", "description": "A small, super-deformed plushie of the VTuber Hoshimachi Suisei, created as part of a collaboration between her parent company, hololive, and Don Quijote, a large Japanese discount store chain.\n\nA combination of scarcity, design, voracity of her fanbase, and memes incorporating Suisei's \"unexpectdly compelling performance\" as a traitor in Project Winter has caused the Mochidoru Suisei to skyrocket in aftermarket sales to the value of multiple hundreds in USD. This is in contrast to most other Mochidoru, often selling for around $100 USD, or sold off cheaply as excess stock.", "links": {}, "path": {"178-240": [[-647, 916], [-627, 916], [-627, 941], [-647, 941]]}, "center": {"178-240": [-637, 929]}}, -{"id": 5315, "name": "Koopa Kid / Mini Bowser", "description": "A character originating from the Mario Party games, first appearing in the original from 1998, with his last appearance being in Mario Party 7 on 2005. He's either an antagonistic NPC, or a playable character.\n\nThe reason for his inclusion in the spanish flag is due to a collaboration with a Mario Party Netplay user.", "links": {"discord": ["marioparty"]}, "path": {"165-258": [[768, -64], [768, -60], [769, -60], [769, -57], [768, -57], [768, -55], [769, -55], [769, -53], [770, -53], [770, -52], [777, -52], [777, -53], [778, -53], [778, -55], [779, -55], [779, -57], [778, -57], [778, -60], [779, -60], [779, -63], [778, -63], [778, -64], [778, -63], [777, -63], [777, -62], [776, -62], [775, -62], [775, -63], [774, -63], [774, -64], [773, -64], [773, -63], [772, -63], [772, -62], [770, -62], [770, -63], [769, -63], [769, -64]]}, "center": {"165-258": [773, -58]}}, -{"id": 5316, "name": "buizel", "description": "a wonderful Pokemon first introduced in pokemon diamond and pearl", "links": {}, "path": {"250-258": [[-1335, 295], [-1343, 299], [-1344, 298], [-1350, 298], [-1351, 299], [-1351, 301], [-1344, 309], [-1343, 311], [-1341, 314], [-1339, 315], [-1335, 317], [-1333, 316], [-1331, 316], [-1327, 315], [-1325, 312], [-1323, 308], [-1321, 305], [-1323, 302], [-1330, 301], [-1331, 300], [-1332, 297]]}, "center": {"250-258": [-1335, 308]}}, -{"id": 5317, "name": "Bolletje Schuddebuikjes", "description": "Bolletje Schuddebuikjes is a typical Dutch topping on bread, made out of spiced biscuits (Speculaas). It consists of the smaller version of a \"Dutch spiced ginger nut\" (Dutch: Pepernoot).", "links": {"website": ["https://bolletje.nl/onze-producten/schuddebuikjes-speculaas"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"211-258": [[1383, -520], [1383, -511], [1382, -511], [1382, -501], [1384, -501], [1384, -495], [1385, -494], [1385, -481], [1398, -481], [1398, -511], [1397, -511], [1397, -520]]}, "center": {"211-258": [1390, -506]}}, -{"id": 5318, "name": "Monkey D. Luffy", "description": "Monkey D. Luffy, also known as \"Straw Hat Luffy\" or \"Straw Hat\", is the protagonist of Eiichiro Oda's manga and anime One Piece. He is the founder and captain of the increasingly infamous and powerful Straw Hat Pirates, as well as the most powerful of its top fighters. He desires to find the legendary treasure left behind by the late Gol D. Roger and thereby become the Pirate King, which would help facilitate an unknown dream of his that he has told only to Shanks, his brothers, and crew. He believes that being the Pirate King means having the most freedom in the world.\n\nThe scene depicted in this art is from episode 1015 of the One Piece anime (\"Straw Hat Luffy - The Man Who Will Become the Pirate King\"), after Luffy knocks down Kaidou with a single Red Roc punch. Luffy then declares that he will become the Pirate King.\n\nAfter the Vietnam Bot Incident, Luffy survives and he's smiling, indicating the victory against the bots.\n\nThis art was a collaboration between r/OnePiece and the streamers Papaplatte and Stegi.\n\nCurrent Bounty: 3,000,000,000 Belly", "links": {"website": ["https://onepiece.fandom.com/wiki/Monkey_D._Luffy", "https://youtu.be/AfZmNBonIeI?t=138", "https://onepiece.fandom.com/wiki/Episode_1015"], "subreddit": ["OnePiece", "MemePiece", "Piratefolk"], "discord": ["oneplace"]}, "path": {"203-258": [[1284, 394], [1284, 516], [1500, 516], [1500, 395]]}, "center": {"203-258": [1392, 455]}}, -{"id": 5319, "name": "Hadeda ibis", "description": "is an ibis native to Sub-Saharan Africa. It is named for its loud three to four note calls uttered in flight especially in the mornings and evenings when they fly out or return to their roost trees.", "links": {"website": ["https://en.wikipedia.org/wiki/Hadada_ibis"], "subreddit": ["southafrica"]}, "path": {"250-258": [[-1330, -650], [-1306, -650], [-1306, -639], [-1330, -638]]}, "center": {"250-258": [-1318, -644]}}, +{"id": 5315, "name": "Koopa Kid / Mini Bowser", "description": "A character originating from the Mario Party games, first appearing in the original from 1998, with his last appearance being in Mario Party 7 on 2005. He's either an antagonistic NPC, or a playable character.\n\nThe reason for his inclusion in the spanish flag is due to a collaboration with a Mario Party Netplay user.", "links": {"discord": ["marioparty"]}, "path": {"165-258, T": [[768, -64], [768, -60], [769, -60], [769, -57], [768, -57], [768, -55], [769, -55], [769, -53], [770, -53], [770, -52], [777, -52], [777, -53], [778, -53], [778, -55], [779, -55], [779, -57], [778, -57], [778, -60], [779, -60], [779, -63], [778, -63], [778, -64], [778, -63], [777, -63], [777, -62], [776, -62], [775, -62], [775, -63], [774, -63], [774, -64], [773, -64], [773, -63], [772, -63], [772, -62], [770, -62], [770, -63], [769, -63], [769, -64]]}, "center": {"165-258, T": [773, -58]}}, +{"id": 5316, "name": "buizel", "description": "a wonderful Pokemon first introduced in pokemon diamond and pearl", "links": {}, "path": {"250-258, T": [[-1335, 295], [-1343, 299], [-1344, 298], [-1350, 298], [-1351, 299], [-1351, 301], [-1344, 309], [-1343, 311], [-1341, 314], [-1339, 315], [-1335, 317], [-1333, 316], [-1331, 316], [-1327, 315], [-1325, 312], [-1323, 308], [-1321, 305], [-1323, 302], [-1330, 301], [-1331, 300], [-1332, 297]]}, "center": {"250-258, T": [-1335, 308]}}, +{"id": 5317, "name": "Bolletje Schuddebuikjes", "description": "Bolletje Schuddebuikjes is a typical Dutch topping on bread, made out of spiced biscuits (Speculaas). It consists of the smaller version of a \"Dutch spiced ginger nut\" (Dutch: Pepernoot).", "links": {"website": ["https://bolletje.nl/onze-producten/schuddebuikjes-speculaas"], "subreddit": ["placeNL"], "discord": ["placeNL"]}, "path": {"211-258, T": [[1383, -520], [1383, -511], [1382, -511], [1382, -501], [1384, -501], [1384, -495], [1385, -494], [1385, -481], [1398, -481], [1398, -511], [1397, -511], [1397, -520]]}, "center": {"211-258, T": [1390, -506]}}, +{"id": 5318, "name": "Monkey D. Luffy", "description": "Monkey D. Luffy, also known as \"Straw Hat Luffy\" or \"Straw Hat\", is the protagonist of Eiichiro Oda's manga and anime One Piece. He is the founder and captain of the increasingly infamous and powerful Straw Hat Pirates, as well as the most powerful of its top fighters. He desires to find the legendary treasure left behind by the late Gol D. Roger and thereby become the Pirate King, which would help facilitate an unknown dream of his that he has told only to Shanks, his brothers, and crew. He believes that being the Pirate King means having the most freedom in the world.\n\nThe scene depicted in this art is from episode 1015 of the One Piece anime (\"Straw Hat Luffy - The Man Who Will Become the Pirate King\"), after Luffy knocks down Kaidou with a single Red Roc punch. Luffy then declares that he will become the Pirate King.\n\nAfter the Vietnam Bot Incident, Luffy survives and he's smiling, indicating the victory against the bots.\n\nThis art was a collaboration between r/OnePiece and the streamers Papaplatte and Stegi.\n\nCurrent Bounty: 3,000,000,000 Belly", "links": {"website": ["https://onepiece.fandom.com/wiki/Monkey_D._Luffy", "https://youtu.be/AfZmNBonIeI?t=138", "https://onepiece.fandom.com/wiki/Episode_1015"], "subreddit": ["OnePiece", "MemePiece", "Piratefolk"], "discord": ["oneplace"]}, "path": {"203-258, T": [[1284, 394], [1284, 516], [1500, 516], [1500, 395]]}, "center": {"203-258, T": [1392, 455]}}, +{"id": 5319, "name": "Hadeda ibis", "description": "is an ibis native to Sub-Saharan Africa. It is named for its loud three to four note calls uttered in flight especially in the mornings and evenings when they fly out or return to their roost trees.", "links": {"website": ["https://en.wikipedia.org/wiki/Hadada_ibis"], "subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1330, -650], [-1306, -650], [-1306, -639], [-1330, -638]]}, "center": {"250-258, T": [-1318, -644]}}, {"id": 5320, "name": "Indomie Mi Goreng Fried Instant Noodles", "description": "Ingredients \n\nNoodles: Wheat Flour (62%), Refined Palm Oil (Contains Antioxidant 319), Salt, Acidity Regulators (451, 501, 500), Thickener (412), Colour (101).\nSeasoning Powder: Salt, Sugar, Flavour Enhancers (621, 631, 627), Garlic Powder, Onion Powder, Yeast Extract, Artificial Flavour, Pepper, Anti Caking Agent (551).\nSeasoning Oil: Refined Palm Oil (Contains Antioxidant 319), Onion.\nSweet Soy Sauce: Sugar, Water, Salt, Wheat, Soy Bean, Spices, Sesame Oil.\nChilli Sauce: Chilli, Water, Sugar, Salt, Tapioca Starch, Acidity Regulators (260, 330), Herbs, Flavour Enhancers (621, 627, 631), Flavours, Preservatives 1211, 223). Fried Onion: Onion, Refined Palm Oil (Contains Antioxidant 319).", "links": {"website": ["https://indomie.com.au/"], "subreddit": ["InstantRamen"]}, "path": {"251-258": [[-1355, 190], [-1355, 167], [-1319, 166], [-1320, 176], [-1320, 177], [-1329, 177], [-1329, 188]]}, "center": {"251-258": [-1341, 178]}}, -{"id": 5321, "name": "G*59 Records", "description": "The logo of G*59 Records. A record label owned and operated by American hip hop duo Suicideboys.", "links": {"website": ["https://en.wikipedia.org/wiki/Suicideboys"], "subreddit": ["G59"]}, "path": {"250-258": [[-1252, 522], [-1234, 522], [-1234, 542], [-1252, 542]]}, "center": {"250-258": [-1243, 532]}}, -{"id": 5322, "name": "Outer Planets Alliance symbol", "description": "The Outer Planets Alliance (OPA) is a faction in The Expanse series. The OPA is social political or militarized movement for the people who live in the asteroid belt (Belters) and the outer planets of the solar system. \n\nThe Expanse is a Science fiction TV series based on the novel series by James S.A. Corey.", "links": {"website": ["https://expanse.fandom.com/wiki/Outer_Planets_Alliance"], "subreddit": ["TheExpanse"], "discord": ["Y7EPR3zqbd"]}, "path": {"209-258": [[-1350, 527], [-1350, 534], [-1354, 538], [-1364, 538], [-1368, 534], [-1368, 526], [-1363, 521], [-1355, 521]]}, "center": {"209-258": [-1359, 530]}}, -{"id": 5323, "name": "Sroa", "description": "A depiction of the original hololive talent Tokino Sora holding a heart. Sora is affectionately named \"Sroa\" by the Vtubers place discord, the group that coordinated the building of Sroa", "links": {"subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"250-258": [[1220, -832], [1220, -831], [1221, -831], [1221, -830], [1221, -829], [1222, -829], [1222, -827], [1224, -827], [1224, -826], [1227, -826], [1227, -825], [1226, -825], [1226, -823], [1224, -823], [1224, -820], [1227, -820], [1227, -812], [1227, -804], [1224, -804], [1210, -804], [1210, -803], [1205, -803], [1204, -803], [1201, -806], [1201, -810], [1200, -811], [1200, -815], [1201, -816], [1201, -817], [1200, -817], [1199, -818], [1199, -819], [1200, -820], [1200, -824], [1202, -825], [1202, -826], [1203, -827], [1204, -828], [1205, -828], [1206, -829], [1208, -831], [1210, -831], [1210, -832], [1216, -832], [1217, -832]]}, "center": {"250-258": [1213, -816]}}, -{"id": 5324, "name": "Visegrad Countryballs", "description": "Countryballs of Czechia, Poland and Hungary. Placed to commemorate comunities that helped against ElSpreen attack", "links": {"subreddit": ["Poland", "Polska", "2visegrad4you"]}, "path": {"250-258": [[633, -146], [634, -142], [678, -142], [679, -146], [674, -151], [656, -152], [638, -151]]}, "center": {"250-258": [656, -147]}}, -{"id": 5325, "name": "YEEZY Bear & r/GoodAssSub", "description": "r/Kanye, r/GoodAssSub, r/ThroughTheWire, r/HellOfASub, and r/WestSubEver created this snippet of the r/GoodAssSub banner in partnership with the One Piece community.\nThe Dropout bear was originally designed by graphic designer Sam Hansen. Its first commercial appearance was on the cover art for West's debut single \"Through the Wire\" in September 2003, and it's likeness was changed and used for some of Kanye West's singles and starring on the covers of his first three albums: The College Dropout, Late Registration, and Graduation. The bear's likeness was used during the promotion of 2018's Kids See Ghosts, and was planned to star in a 2020 animated series with a fox mascot for Kid Cudi. The Dropout Bear has not been very relevant in modern promotion for Kanye West's work, but it has served as an icon for Kanye West and his community.\nThe GoodAssSub banner was created by /u/MonochromaticMan and this r/place piece was created by /u/TheSunniest.", "links": {"subreddit": ["GoodAssSub", "HellOfASub"], "discord": ["6FCukKehRX", "xsaEDr9RC3"]}, "path": {"242-258": [[1445, 701], [1445, 744], [1482, 744], [1481, 701], [1464, 701]]}, "center": {"242-258": [1463, 723]}}, +{"id": 5321, "name": "G*59 Records", "description": "The logo of G*59 Records. A record label owned and operated by American hip hop duo Suicideboys.", "links": {"website": ["https://en.wikipedia.org/wiki/Suicideboys"], "subreddit": ["G59"]}, "path": {"250-258, T": [[-1252, 522], [-1234, 522], [-1234, 542], [-1252, 542]]}, "center": {"250-258, T": [-1243, 532]}}, +{"id": 5322, "name": "Outer Planets Alliance symbol", "description": "The Outer Planets Alliance (OPA) is a faction in The Expanse series. The OPA is social political or militarized movement for the people who live in the asteroid belt (Belters) and the outer planets of the solar system. \n\nThe Expanse is a Science fiction TV series based on the novel series by James S.A. Corey.", "links": {"website": ["https://expanse.fandom.com/wiki/Outer_Planets_Alliance"], "subreddit": ["TheExpanse"], "discord": ["Y7EPR3zqbd"]}, "path": {"209-258, T": [[-1350, 527], [-1350, 534], [-1354, 538], [-1364, 538], [-1368, 534], [-1368, 526], [-1363, 521], [-1355, 521]]}, "center": {"209-258, T": [-1359, 530]}}, +{"id": 5323, "name": "Sroa", "description": "A depiction of the original hololive talent Tokino Sora holding a heart. Sora is affectionately named \"Sroa\" by the Vtubers place discord, the group that coordinated the building of Sroa", "links": {"subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"250-258, T": [[1220, -832], [1220, -831], [1221, -831], [1221, -830], [1221, -829], [1222, -829], [1222, -827], [1224, -827], [1224, -826], [1227, -826], [1227, -825], [1226, -825], [1226, -823], [1224, -823], [1224, -820], [1227, -820], [1227, -812], [1227, -804], [1224, -804], [1210, -804], [1210, -803], [1205, -803], [1204, -803], [1201, -806], [1201, -810], [1200, -811], [1200, -815], [1201, -816], [1201, -817], [1200, -817], [1199, -818], [1199, -819], [1200, -820], [1200, -824], [1202, -825], [1202, -826], [1203, -827], [1204, -828], [1205, -828], [1206, -829], [1208, -831], [1210, -831], [1210, -832], [1216, -832], [1217, -832]]}, "center": {"250-258, T": [1213, -816]}}, +{"id": 5324, "name": "Visegrad Countryballs", "description": "Countryballs of Czechia, Poland and Hungary. Placed to commemorate comunities that helped against ElSpreen attack", "links": {"subreddit": ["Poland", "Polska", "2visegrad4you"]}, "path": {"250-258, T": [[633, -146], [634, -142], [678, -142], [679, -146], [674, -151], [656, -152], [638, -151]]}, "center": {"250-258, T": [656, -147]}}, +{"id": 5325, "name": "YEEZY Bear & r/GoodAssSub", "description": "r/Kanye, r/GoodAssSub, r/ThroughTheWire, r/HellOfASub, and r/WestSubEver created this snippet of the r/GoodAssSub banner in partnership with the One Piece community.\nThe Dropout bear was originally designed by graphic designer Sam Hansen. Its first commercial appearance was on the cover art for West's debut single \"Through the Wire\" in September 2003, and it's likeness was changed and used for some of Kanye West's singles and starring on the covers of his first three albums: The College Dropout, Late Registration, and Graduation. The bear's likeness was used during the promotion of 2018's Kids See Ghosts, and was planned to star in a 2020 animated series with a fox mascot for Kid Cudi. The Dropout Bear has not been very relevant in modern promotion for Kanye West's work, but it has served as an icon for Kanye West and his community.\nThe GoodAssSub banner was created by /u/MonochromaticMan and this r/place piece was created by /u/TheSunniest.", "links": {"subreddit": ["GoodAssSub", "HellOfASub"], "discord": ["6FCukKehRX", "xsaEDr9RC3"]}, "path": {"242-258, T": [[1445, 701], [1445, 744], [1482, 744], [1481, 701], [1464, 701]]}, "center": {"242-258, T": [1463, 723]}}, {"id": 5327, "name": "Racing Club de Lens", "description": "Racing Club de Lens (abbreviated RC Lens or even RCL) aka les Sang et Or (Blood and Gold) are a French football team from the North of France. They are known for their strong cultural and historic background, which is linked to the mining past of its territory (known as the Mining Basin). They are performing in League 1, the highest tier in French football, in which they achieved to earn the 2nd place at the end of the 2022-23 season after being promoted from League 2 only 3 years prior. This has led them to play in UEFA Champions League for the first since almost 20 years.\n(Link reddit is not official)", "links": {"website": ["https://www.rclens.fr/fr"], "subreddit": ["rclens"]}, "path": {"237": [[885, -864], [885, -834], [905, -834], [905, -837], [924, -837], [924, -864]]}, "center": {"237": [899, -850]}}, -{"id": 5328, "name": "Kenflow", "description": "Representative phrase of Kenflow member of arkeanos", "links": {}, "path": {"250-258": [[-560, 665], [-560, 695], [-501, 696], [-501, 664], [-501, 656], [-560, 656], [-560, 666]]}, "center": {"250-258": [-530, 676]}}, +{"id": 5328, "name": "Kenflow", "description": "Representative phrase of Kenflow member of arkeanos", "links": {}, "path": {"250-258, T": [[-560, 665], [-560, 695], [-501, 696], [-501, 664], [-501, 656], [-560, 656], [-560, 666]]}, "center": {"250-258, T": [-530, 676]}}, {"id": 5329, "name": "Survivor - Fuck Spez", "description": "The Survivor slugcat from indie game Rain World, holding up 2 middle fingers in support of the \"Fuck Spez\" movment.", "links": {"website": ["https://rainworldgame.com/"], "subreddit": ["rainworld"], "discord": ["rainworld", "62g9EUBEKF"]}, "path": {"14-22": [[297, 118], [327, 117], [327, 142], [297, 142], [297, 137]]}, "center": {"14-22": [312, 130]}}, -{"id": 5330, "name": "Buizel", "description": "Buizel is a water-type Pokémon introduced in Generation IV and resembles a weasel and a river otter. Its name is a likely combination of buoy and weasel.", "links": {"website": ["https://www.pokemon.com/us/pokedex/buizel"]}, "path": {"250-258": [[-1345, 303], [-1344, 303], [-1344, 302], [-1343, 301], [-1343, 300], [-1342, 300], [-1342, 299], [-1341, 299], [-1341, 298], [-1340, 298], [-1339, 298], [-1339, 297], [-1337, 297], [-1337, 296], [-1336, 296], [-1336, 295], [-1335, 295], [-1334, 296], [-1333, 297], [-1333, 298], [-1332, 298], [-1332, 299], [-1332, 300], [-1331, 300], [-1330, 301], [-1329, 302], [-1327, 302], [-1325, 302], [-1324, 303], [-1323, 303], [-1323, 308], [-1324, 309], [-1325, 310], [-1325, 311], [-1325, 312], [-1327, 312], [-1327, 313], [-1329, 313], [-1329, 314], [-1330, 314], [-1330, 315], [-1331, 315], [-1332, 315], [-1333, 315], [-1334, 315], [-1335, 315], [-1338, 315], [-1339, 314], [-1340, 314], [-1340, 313], [-1340, 310], [-1342, 310], [-1342, 309], [-1343, 309], [-1343, 307], [-1344, 307], [-1344, 306], [-1345, 306]]}, "center": {"250-258": [-1334, 307]}}, -{"id": 5331, "name": "Albedo & Demiurge", "description": "Albedo & Demiurge are 2 characters from the Isekai Manga and Anime \"Overlord\".\n\nAlbedo is the Overseer of the Guardians of the Great Tomb of Nazarick. She is in charge of the general management and supervision of the activities done by the seven Floor Guardians, meaning that she ranks above the other NPCs in Nazarick. Albedo is infatuated and needy/clingy with Ainz, often showing obsessive tendencies when it comes to his affairs. She is always vying for Ainz's affections, showcasing outbursts of jealousy whenever anyone else appears to be getting close to him, she is also the middle sister of the older sister Nigredo and younger sister Rubedo. Along with her sisters, she was created by Tabula Smaragdina.\n\nDemiurge is the Floor Guardian of the 7th Floor of the Great Tomb of Nazarick, the Commander of the NPC defenses and the 2nd in command of the Floor Guardians. He is the creation of Ulbert Alain Odle.", "links": {"website": ["https://overlordmaruyama.fandom.com/wiki/Albedo", "https://overlordmaruyama.fandom.com/wiki/Demiurge"]}, "path": {"119-258": [[899, -193], [899, -174], [921, -174], [921, -193]]}, "center": {"119-258": [910, -183]}}, -{"id": 5332, "name": "MOON", "description": "Moons are the version of Reddit Community Points used by r/CryptoCurrency. They also function as a real cryptocurrency, trading under the symbol MOON. Moons are named after the meme expression \"to the moon\", describing a cryptocurrency or stock rocketing upwards in value \"to the moon\".\n\nAt the bottom, they ask Kraken when the MOON will be listed.", "links": {"website": ["https://www.coingecko.com/en/coins/moon"], "subreddit": ["CryptoCurrency"]}, "path": {"250-258": [[-1111, -703], [-1087, -703], [-1086, -644], [-1112, -670], [-1112, -702], [-1111, -703], [-1105, -703]]}, "center": {"250-258": [-1099, -676]}}, -{"id": 5333, "name": "Dragon Slayer", "description": "The Dragon Slayer is the massive sword belonging to Guts, the main character of the manga/anime \"Berserk\" by Kentaro Miura. Guts has wielded this sword as his signature weapon ever since surviving the Eclipse.\n\n\"That thing was too big to be called a sword. Massive, thick, heavy and far too rough. Indeed, it was like a heap of raw Iron.\" -Narration, Berserk Chapter 1 \"The Black Swordsman\"", "links": {"website": ["https://berserk.fandom.com/wiki/Dragon_Slayer"], "subreddit": ["Berserk"], "discord": ["M699v8xSqz"]}, "path": {"162-258": [[565, 907], [565, 917], [563, 919], [563, 945], [561, 947], [561, 948], [564, 948], [564, 947], [573, 947], [573, 948], [576, 948], [576, 947], [574, 945], [573, 945], [573, 919], [576, 919], [576, 916], [571, 912], [571, 907]]}, "center": {"162-258": [568, 942]}}, -{"id": 5334, "name": "Etika Memorial", "description": "Desmond Daniel Amofah (May 12, 1990 – c. June 19, 2019), better known as Etika, was an American YouTuber and online streamer. He became known online for his highly energetic reactions to Super Smash Bros. character reveals and Nintendo Direct presentations, and for playing and reacting to various games. This memorial features a Nintendo Switch featuring pixel art of Etika with his logo, an 11 pixel long Subway sandwich (an inside joke of the community), and Pyra and Mythra from Xenoblade Chronicles 2 (Etika was very fond of the game and Mythra).", "links": {"subreddit": ["EtikaRedditNetwork"], "discord": ["GSZsaRtVAN"]}, "path": {"162-258": [[-846, 867], [-798, 867], [-798, 868], [-797, 868], [-796, 869], [-796, 870], [-791, 870], [-792, 884], [-844, 884], [-844, 883], [-845, 883], [-845, 882], [-846, 882]]}, "center": {"162-258": [-818, 876]}}, -{"id": 5335, "name": "Springbok Rugby/Siya Kolisi", "description": "The South Africa national rugby union team, commonly known as the Springboks (colloquially the Boks, Bokke or Amabokoboko),[1] is the country's national team governed by the South African Rugby Union. The Springboks play in green and gold jerseys with white shorts.\n\nSiyamthanda Kolisi (born 16 June 1991) is a South African professional rugby union player who currently captains the South Africa national team.\n\nIn 2018, Kolisi was appointed captain of the Springboks, becoming the first black man to hold the position.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa_national_rugby_union_team", "https://en.wikipedia.org/wiki/Siya_Kolisi"], "subreddit": ["southafrica"]}, "path": {"250-258": [[-1356, -643], [-1346, -643], [-1346, -630], [-1356, -630]]}, "center": {"250-258": [-1351, -636]}}, -{"id": 5336, "name": "Neco-Arc (Germany Flag / Extension of the Middle)", "description": "Neco-Arc is a Neco Spirit appearing in the Tsukihime visual novel series. She is a pint-size cat girl parody of Arcueid Brunestud, acting as the mascot character of Type-Moon.\n\nThere's TWO of them Can be found on Nordflagge and Mittelflagge.", "links": {"website": ["https://typemoon.fandom.com/wiki/Neco-Arc"], "subreddit": ["necoarc"]}, "path": {"207-258": [[1327, -628], [1336, -632], [1339, -633], [1344, -633], [1344, -631], [1351, -631], [1352, -630], [1353, -629], [1352, -628], [1351, -627], [1351, -626], [1350, -621], [1351, -617], [1350, -617], [1350, -616], [1349, -615], [1348, -614], [1347, -614], [1346, -610], [1347, -609], [1347, -608], [1347, -607], [1349, -607], [1349, -599], [1348, -598], [1345, -598], [1345, -596], [1345, -595], [1346, -594], [1347, -594], [1347, -593], [1348, -592], [1347, -590], [1335, -590], [1335, -591], [1334, -593], [1335, -594], [1336, -595], [1337, -597], [1336, -597], [1335, -597], [1334, -598], [1333, -599], [1332, -600], [1332, -601], [1333, -604], [1334, -607], [1333, -607], [1335, -610], [1334, -611], [1333, -610], [1332, -609], [1331, -610], [1329, -611], [1328, -610], [1327, -611]]}, "center": {"207-258": [1339, -621]}}, -{"id": 5337, "name": "Carling Black Label Beer", "description": "Carling Black Label is a lager distributed by Carling Brewing Company. This beer is very popular in South Africa", "links": {"website": ["https://www.carlingblacklabel.co.za/agegate?destination="], "subreddit": ["southafrica"], "discord": ["jgcSTDum"]}, "path": {"250-258": [[-1300, -631], [-1296, -631], [-1296, -643], [-1297, -643], [-1297, -649], [-1299, -649], [-1299, -643], [-1300, -643], [-1300, -638]]}, "center": {"250-258": [-1298, -639]}}, +{"id": 5330, "name": "Buizel", "description": "Buizel is a water-type Pokémon introduced in Generation IV and resembles a weasel and a river otter. Its name is a likely combination of buoy and weasel.", "links": {"website": ["https://www.pokemon.com/us/pokedex/buizel"]}, "path": {"250-258, T": [[-1345, 303], [-1344, 303], [-1344, 302], [-1343, 301], [-1343, 300], [-1342, 300], [-1342, 299], [-1341, 299], [-1341, 298], [-1340, 298], [-1339, 298], [-1339, 297], [-1337, 297], [-1337, 296], [-1336, 296], [-1336, 295], [-1335, 295], [-1334, 296], [-1333, 297], [-1333, 298], [-1332, 298], [-1332, 299], [-1332, 300], [-1331, 300], [-1330, 301], [-1329, 302], [-1327, 302], [-1325, 302], [-1324, 303], [-1323, 303], [-1323, 308], [-1324, 309], [-1325, 310], [-1325, 311], [-1325, 312], [-1327, 312], [-1327, 313], [-1329, 313], [-1329, 314], [-1330, 314], [-1330, 315], [-1331, 315], [-1332, 315], [-1333, 315], [-1334, 315], [-1335, 315], [-1338, 315], [-1339, 314], [-1340, 314], [-1340, 313], [-1340, 310], [-1342, 310], [-1342, 309], [-1343, 309], [-1343, 307], [-1344, 307], [-1344, 306], [-1345, 306]]}, "center": {"250-258, T": [-1334, 307]}}, +{"id": 5331, "name": "Albedo & Demiurge", "description": "Albedo & Demiurge are 2 characters from the Isekai Manga and Anime \"Overlord\".\n\nAlbedo is the Overseer of the Guardians of the Great Tomb of Nazarick. She is in charge of the general management and supervision of the activities done by the seven Floor Guardians, meaning that she ranks above the other NPCs in Nazarick. Albedo is infatuated and needy/clingy with Ainz, often showing obsessive tendencies when it comes to his affairs. She is always vying for Ainz's affections, showcasing outbursts of jealousy whenever anyone else appears to be getting close to him, she is also the middle sister of the older sister Nigredo and younger sister Rubedo. Along with her sisters, she was created by Tabula Smaragdina.\n\nDemiurge is the Floor Guardian of the 7th Floor of the Great Tomb of Nazarick, the Commander of the NPC defenses and the 2nd in command of the Floor Guardians. He is the creation of Ulbert Alain Odle.", "links": {"website": ["https://overlordmaruyama.fandom.com/wiki/Albedo", "https://overlordmaruyama.fandom.com/wiki/Demiurge"]}, "path": {"119-258, T": [[899, -193], [899, -174], [921, -174], [921, -193]]}, "center": {"119-258, T": [910, -183]}}, +{"id": 5332, "name": "MOON", "description": "Moons are the version of Reddit Community Points used by r/CryptoCurrency. They also function as a real cryptocurrency, trading under the symbol MOON. Moons are named after the meme expression \"to the moon\", describing a cryptocurrency or stock rocketing upwards in value \"to the moon\".\n\nAt the bottom, they ask Kraken when the MOON will be listed.", "links": {"website": ["https://www.coingecko.com/en/coins/moon"], "subreddit": ["CryptoCurrency"]}, "path": {"250-258, T": [[-1111, -703], [-1087, -703], [-1086, -644], [-1112, -670], [-1112, -702], [-1111, -703], [-1105, -703]]}, "center": {"250-258, T": [-1099, -676]}}, +{"id": 5333, "name": "Dragon Slayer", "description": "The Dragon Slayer is the massive sword belonging to Guts, the main character of the manga/anime \"Berserk\" by Kentaro Miura. Guts has wielded this sword as his signature weapon ever since surviving the Eclipse.\n\n\"That thing was too big to be called a sword. Massive, thick, heavy and far too rough. Indeed, it was like a heap of raw Iron.\" -Narration, Berserk Chapter 1 \"The Black Swordsman\"", "links": {"website": ["https://berserk.fandom.com/wiki/Dragon_Slayer"], "subreddit": ["Berserk"], "discord": ["M699v8xSqz"]}, "path": {"162-258, T": [[565, 907], [565, 917], [563, 919], [563, 945], [561, 947], [561, 948], [564, 948], [564, 947], [573, 947], [573, 948], [576, 948], [576, 947], [574, 945], [573, 945], [573, 919], [576, 919], [576, 916], [571, 912], [571, 907]]}, "center": {"162-258, T": [568, 942]}}, +{"id": 5334, "name": "Etika Memorial", "description": "Desmond Daniel Amofah (May 12, 1990 – c. June 19, 2019), better known as Etika, was an American YouTuber and online streamer. He became known online for his highly energetic reactions to Super Smash Bros. character reveals and Nintendo Direct presentations, and for playing and reacting to various games. This memorial features a Nintendo Switch featuring pixel art of Etika with his logo, an 11 pixel long Subway sandwich (an inside joke of the community), and Pyra and Mythra from Xenoblade Chronicles 2 (Etika was very fond of the game and Mythra).", "links": {"subreddit": ["EtikaRedditNetwork"], "discord": ["GSZsaRtVAN"]}, "path": {"162-258, T": [[-846, 867], [-798, 867], [-798, 868], [-797, 868], [-796, 869], [-796, 870], [-791, 870], [-792, 884], [-844, 884], [-844, 883], [-845, 883], [-845, 882], [-846, 882]]}, "center": {"162-258, T": [-818, 876]}}, +{"id": 5335, "name": "Springbok Rugby/Siya Kolisi", "description": "The South Africa national rugby union team, commonly known as the Springboks (colloquially the Boks, Bokke or Amabokoboko),[1] is the country's national team governed by the South African Rugby Union. The Springboks play in green and gold jerseys with white shorts.\n\nSiyamthanda Kolisi (born 16 June 1991) is a South African professional rugby union player who currently captains the South Africa national team.\n\nIn 2018, Kolisi was appointed captain of the Springboks, becoming the first black man to hold the position.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa_national_rugby_union_team", "https://en.wikipedia.org/wiki/Siya_Kolisi"], "subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1356, -643], [-1346, -643], [-1346, -630], [-1356, -630]]}, "center": {"250-258, T": [-1351, -636]}}, +{"id": 5336, "name": "Neco-Arc (Germany Flag / Extension of the Middle)", "description": "Neco-Arc is a Neco Spirit appearing in the Tsukihime visual novel series. She is a pint-size cat girl parody of Arcueid Brunestud, acting as the mascot character of Type-Moon.\n\nThere's TWO of them Can be found on Nordflagge and Mittelflagge.", "links": {"website": ["https://typemoon.fandom.com/wiki/Neco-Arc"], "subreddit": ["necoarc"]}, "path": {"207-258, T": [[1327, -628], [1336, -632], [1339, -633], [1344, -633], [1344, -631], [1351, -631], [1352, -630], [1353, -629], [1352, -628], [1351, -627], [1351, -626], [1350, -621], [1351, -617], [1350, -617], [1350, -616], [1349, -615], [1348, -614], [1347, -614], [1346, -610], [1347, -609], [1347, -608], [1347, -607], [1349, -607], [1349, -599], [1348, -598], [1345, -598], [1345, -596], [1345, -595], [1346, -594], [1347, -594], [1347, -593], [1348, -592], [1347, -590], [1335, -590], [1335, -591], [1334, -593], [1335, -594], [1336, -595], [1337, -597], [1336, -597], [1335, -597], [1334, -598], [1333, -599], [1332, -600], [1332, -601], [1333, -604], [1334, -607], [1333, -607], [1335, -610], [1334, -611], [1333, -610], [1332, -609], [1331, -610], [1329, -611], [1328, -610], [1327, -611]]}, "center": {"207-258, T": [1339, -621]}}, +{"id": 5337, "name": "Carling Black Label Beer", "description": "Carling Black Label is a lager distributed by Carling Brewing Company. This beer is very popular in South Africa", "links": {"website": ["https://www.carlingblacklabel.co.za/agegate?destination="], "subreddit": ["southafrica"], "discord": ["jgcSTDum"]}, "path": {"250-258, T": [[-1300, -631], [-1296, -631], [-1296, -643], [-1297, -643], [-1297, -649], [-1299, -649], [-1299, -643], [-1300, -643], [-1300, -638]]}, "center": {"250-258, T": [-1298, -639]}}, {"id": 5338, "name": "SkopySMP", "description": "The S is the Server icon from the Minecraft Server called SkopySMP.\nIt's a Minecraft Survival Server for the Version 1.20 and 1.20.1\n\nMore to the SkopySMP on", "links": {"website": ["https://sites.google.com/view/skopysmp/start"], "subreddit": ["SkopySMP"], "discord": ["txnZjs2f5Y"]}, "path": {"48-56": [[338, 68], [331, 68], [331, 80], [338, 81]]}, "center": {"48-56": [335, 75]}}, {"id": 5339, "name": "T-West + Lugga", "description": "This little text was made by 2 german people within 2 hours.", "links": {}, "path": {"194-203": [[-1043, -778], [-1043, -775], [-1034, -775], [-1034, -778], [-1036, -778], [-1036, -783], [-1043, -783], [-1043, -775]]}, "center": {"194-203": [-1039, -779]}}, -{"id": 5340, "name": "Inazuma Eleven (イナズマイレブン)", "description": "The Inazuma Japan logo and face of Mark Evans from the franchise Inazuma Eleven (イナズマイレブン). Inazuma Eleven is a football-themed media franchise created by Level-5. The franchise has video games, manga series and animated films/series.", "links": {"website": ["https://inazuma-eleven.fandom.com/wiki/Inazuma_Eleven_Wiki"], "subreddit": ["inazumaeleven"]}, "path": {"246-258": [[-1293, 970], [-1293, 953], [-1298, 955], [-1304, 960], [-1305, 961], [-1312, 961], [-1312, 970]]}, "center": {"246-258": [-1299, 964]}}, -{"id": 5341, "name": "Shoutouts to Simpleflips", "description": "SimpleFlips is an American YouTuber and streamer known for his Super Mario 64 ROM hack and Super Mario Maker 2 videos. SimpleFlips began his YouTube career primarily as a speedrunner for Super Mario 64, and this game is what most people know him for. He is also famous for his multitude of running jokes and memes that are referenced in his content, as well as for being an active member of the YouTube group Minus World.", "links": {"website": ["https://www.youtube.com/@SimpleFlips"], "subreddit": ["simpleflips"]}, "path": {"250-258": [[416, -977], [416, -985], [414, -985], [414, -987], [410, -987], [406, -983], [406, -977], [416, -977], [416, -985]]}, "center": {"250-258": [411, -981]}}, -{"id": 5342, "name": "Ship of the VOC/17th Century Dutch Navy", "description": "Either a ship of the Vereenigde Oostindische Compagnie (the Dutch East India Company), a large trade company that made the Dutch Republic the richest nation on earth, but also played part in slavery and other atrocities, or a 17th century Dutch naval ship.", "links": {"website": ["https://en.wikipedia.org/wiki/Dutch_East_India_Company", "https://en.wikipedia.org/wiki/Naval_history_of_the_Netherlands#A_world_power"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"61-258": [[711, -481], [715, -474], [716, -473], [715, -471], [717, -462], [720, -461], [727, -460], [740, -460], [759, -462], [760, -464], [771, -469], [771, -472], [769, -470], [765, -469], [763, -474], [760, -482], [760, -484], [765, -487], [763, -492], [757, -491], [754, -486], [753, -480], [750, -470], [743, -488], [747, -489], [749, -491], [748, -496], [740, -497], [738, -493], [733, -469], [732, -469], [728, -482], [731, -483], [736, -483], [737, -485], [731, -485], [727, -484], [725, -483], [723, -478], [723, -473], [721, -472], [717, -474], [719, -475], [721, -478], [720, -483], [712, -483]]}, "center": {"61-258": [741, -468]}}, +{"id": 5340, "name": "Inazuma Eleven (イナズマイレブン)", "description": "The Inazuma Japan logo and face of Mark Evans from the franchise Inazuma Eleven (イナズマイレブン). Inazuma Eleven is a football-themed media franchise created by Level-5. The franchise has video games, manga series and animated films/series.", "links": {"website": ["https://inazuma-eleven.fandom.com/wiki/Inazuma_Eleven_Wiki"], "subreddit": ["inazumaeleven"]}, "path": {"246-258, T": [[-1293, 970], [-1293, 953], [-1298, 955], [-1304, 960], [-1305, 961], [-1312, 961], [-1312, 970]]}, "center": {"246-258, T": [-1299, 964]}}, +{"id": 5341, "name": "Shoutouts to Simpleflips", "description": "SimpleFlips is an American YouTuber and streamer known for his Super Mario 64 ROM hack and Super Mario Maker 2 videos. SimpleFlips began his YouTube career primarily as a speedrunner for Super Mario 64, and this game is what most people know him for. He is also famous for his multitude of running jokes and memes that are referenced in his content, as well as for being an active member of the YouTube group Minus World.", "links": {"website": ["https://www.youtube.com/@SimpleFlips"], "subreddit": ["simpleflips"]}, "path": {"250-258, T": [[416, -977], [416, -985], [414, -985], [414, -987], [410, -987], [406, -983], [406, -977], [416, -977], [416, -985]]}, "center": {"250-258, T": [411, -981]}}, +{"id": 5342, "name": "Ship of the VOC/17th Century Dutch Navy", "description": "Either a ship of the Vereenigde Oostindische Compagnie (the Dutch East India Company), a large trade company that made the Dutch Republic the richest nation on earth, but also played part in slavery and other atrocities, or a 17th century Dutch naval ship.", "links": {"website": ["https://en.wikipedia.org/wiki/Dutch_East_India_Company", "https://en.wikipedia.org/wiki/Naval_history_of_the_Netherlands#A_world_power"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"61-258, T": [[711, -481], [715, -474], [716, -473], [715, -471], [717, -462], [720, -461], [727, -460], [740, -460], [759, -462], [760, -464], [771, -469], [771, -472], [769, -470], [765, -469], [763, -474], [760, -482], [760, -484], [765, -487], [763, -492], [757, -491], [754, -486], [753, -480], [750, -470], [743, -488], [747, -489], [749, -491], [748, -496], [740, -497], [738, -493], [733, -469], [732, -469], [728, -482], [731, -483], [736, -483], [737, -485], [731, -485], [727, -484], [725, -483], [723, -478], [723, -473], [721, -472], [717, -474], [719, -475], [721, -478], [720, -483], [712, -483]]}, "center": {"61-258, T": [741, -468]}}, {"id": 5343, "name": "Chestnut Puck (Berserk)", "description": "Puck is an elf of the Pisky race, descendants of the ancient spirits of wind. He is a secondary character from the manga/anime \"Berserk\" by Kentaro Miura. Puck is a former denizen of Elfhelm, the idyllic elven realm of the Flower Storm Monarch, he left out of sheer boredom and became Guts' first newfound companion since.\n\nDuring comedic moments in the first manga story, Puck has exaggerated \"chibi\" comic features. In later arcs of both the manga and anime, Puck is drawn in his standard \"chestnut\" chibi form: his limbs become stubby, and his body appears short and round. In this form, his hair is represented by a blue tinged point on his head, and his eyes appear as horizontal lines. \n\nThis piece was made by the Band of the Hawk discord group but unfortunately Puck was erased in a battle against the streamer Bratishkinoff.\n\n\"Without me this story'd be way too dark. You gotta have color in your life.\" - Puck, Berserk Volume 15 \"Elf Fire\"", "links": {"website": ["https://berserk.fandom.com/wiki/Puck"], "discord": ["5Yr3UEYXRZ"]}, "path": {"129-152": [[-31, -635], [-34, -632], [-35, -632], [-36, -631], [-37, -630], [-38, -629], [-39, -628], [-39, -626], [-40, -625], [-41, -626], [-44, -626], [-45, -625], [-45, -623], [-41, -619], [-40, -619], [-36, -615], [-35, -615], [-35, -611], [-19, -611], [-19, -612], [-20, -612], [-20, -613], [-21, -614], [-21, -615], [-22, -616], [-22, -617], [-20, -617], [-19, -618], [-18, -619], [-17, -620], [-17, -623], [-18, -623], [-19, -624], [-19, -625], [-20, -626], [-20, -629], [-21, -630], [-26, -630], [-27, -631], [-28, -632], [-28, -633], [-29, -634], [-30, -635]]}, "center": {"129-152": [-30, -622]}}, {"id": 5344, "name": "Subnautica", "description": "Subnautica is a open world survival game featuring a stunning underwater scenery with many biomes and creatures. The artwork features two peepers, one of the most common creature in the game", "links": {"website": ["https://en.wikipedia.org/wiki/Subnautica"], "subreddit": ["subnautica"]}, "path": {"245": [[-283, 674], [-283, 666], [-287, 666], [-287, 651], [-298, 651], [-298, 650], [-299, 650], [-300, 646], [-305, 646], [-305, 650], [-307, 650], [-307, 651], [-318, 652], [-318, 663], [-323, 666], [-323, 674]]}, "center": {"245": [-302, 662]}}, -{"id": 5345, "name": "MartinCAT's logo", "description": "Its the logo from MartinCAT, builded by MartinCAT, and mapped by MartinCAT. Its me", "links": {}, "path": {"204-258": [[894, -513], [901, -514], [904, -513], [904, -501], [894, -500], [892, -500], [893, -512], [892, -513], [892, -514]]}, "center": {"204-258": [898, -506]}}, -{"id": 5347, "name": "Morrog", "description": "Morrog is a famous dutch streamer", "links": {"website": ["https://www.twitch.tv/morrog"]}, "path": {"250-258": [[679, -1000], [750, -1000], [749, -972], [680, -973], [679, -1000], [681, -1000]]}, "center": {"250-258": [715, -986]}}, -{"id": 5348, "name": "Nessie (Apex Legends)", "description": "Nessie is a plush toy easter egg found in the Titanfall Franchise and Apex Legends.", "links": {"subreddit": ["apex_legends", "titanfall", "ApexLore"]}, "path": {"236-258": [[1060, -486], [1067, -491], [1068, -495], [1072, -495], [1072, -491], [1070, -489], [1070, -487], [1072, -485], [1070, -483], [1064, -483], [1062, -485]]}, "center": {"236-258": [1067, -487]}}, -{"id": 5349, "name": "L + J", "description": "Made by a little couple from Germany.\nLeon & Jocelyne", "links": {}, "path": {"210-258": [[-738, -416], [-739, -416], [-739, -415], [-739, -414], [-739, -413], [-739, -412], [-739, -411], [-739, -410], [-738, -410], [-737, -410], [-736, -410], [-735, -410], [-734, -410], [-733, -410], [-732, -410], [-732, -409], [-731, -409], [-730, -409], [-730, -410], [-729, -410], [-729, -411], [-729, -412], [-729, -413], [-729, -414], [-729, -415], [-730, -415], [-731, -415], [-731, -416], [-731, -417], [-731, -418], [-731, -419], [-731, -420], [-732, -420], [-733, -420], [-734, -420], [-735, -420], [-736, -420], [-737, -420], [-737, -419], [-737, -418], [-737, -417], [-737, -416]]}, "center": {"210-258": [-734, -413]}}, -{"id": 5350, "name": "Gin Ibushi", "description": "A 6th grader and a participant forced into the Death Game in YTTD, meow. One of Big Sis Sara's main allies throughout the game, woof.\nUsed to be in a different spot before moving in with Big Sis Sara and some loner, meow.", "links": {"website": ["https://vgperson.com/games/yourturntodie.htm"], "subreddit": ["yourturntodie"]}, "path": {"250-258": [[531, -318], [532, -319], [533, -319], [534, -319], [535, -320], [536, -321], [550, -321], [552, -321], [553, -320], [554, -319], [556, -319], [558, -318], [558, -337], [556, -337], [555, -338], [554, -338], [553, -339], [550, -340], [549, -341], [539, -341], [538, -340], [536, -339], [535, -339], [534, -338], [533, -338], [531, -337], [532, -337], [530, -336], [529, -336], [528, -335], [527, -335], [526, -334], [527, -333], [528, -332], [529, -331], [529, -329], [528, -328], [528, -327], [527, -327]]}, "center": {"250-258": [545, -331]}}, -{"id": 5351, "name": "Romolo - A.S. Roma", "description": "Romolo is a mascotte for A.S Roma, an professional football club based in Rome, Italy.", "links": {"website": ["https://www.asroma.com/it"], "subreddit": ["italy"]}, "path": {"250-258": [[-677, 93], [-684, 86], [-675, 86], [-673, 96], [-685, 97], [-685, 87], [-683, 86], [-680, 88]]}, "center": {"250-258": [-681, 93]}}, -{"id": 5353, "name": "Jack Stauber - HiLo", "description": "A very minimalist depiction of musician and artist Jack Stauber's 4th (non-Micropop) album HiLo.", "links": {"subreddit": ["jackstauber"]}, "path": {"250-258": [[-1286, 440], [-1273, 440], [-1273, 453], [-1286, 453]]}, "center": {"250-258": [-1279, 447]}}, -{"id": 5354, "name": "Disco elysium", "description": "Disco Elysium is a 2019 role-playing video game developed and published by ZA/UM. Players take the role of an amnesiac detective who has been tasked with solving a murder mystery in a fictionnal city. \nIt is a non-traditional role-playing game featuring very little combat. Instead, events are resolved through skill checks and dialogue trees via a system of 24 skills that represents different aspects of the protagonist, such as his perception and pain threshold.\nDisco Elysium received universal acclaim for its narrative and art, won a number of awards by several publications including Game of the Year, and has been listed as one of the greatest video games ever made.", "links": {"website": ["https://en.wikipedia.org/wiki/Disco_Elysium"], "subreddit": ["DiscoElysium"]}, "path": {"238-258": [[1444, 85], [1444, 91], [1478, 91], [1477, 86], [1460, 86]]}, "center": {"238-258": [1450, 88]}}, -{"id": 5355, "name": "Duner", "description": "This is a duner - a flower with two petals from the universe (history) with the temporary name \"blessing\" or \"blessing of nature\", authored by nisil (@SoilNisil or @GoatNisil). before that, the art was demolished 3 times, and three times they did not try to rebuild. all this was done by one person (actually nisil)", "links": {"website": ["https://vk.com/dirty_nisil"], "subreddit": ["dunertale"]}, "path": {"220-258": [[-339, 958], [-333, 958], [-329, 961], [-329, 967], [-327, 971], [-340, 971], [-339, 968], [-339, 965], [-340, 964], [-340, 958]]}, "center": {"220-258": [-334, 964]}}, -{"id": 5356, "name": "Party of Humanists (German Political Party)", "description": "The Party of Humanists (German: Partei der Humanisten) is a minor political party in Germany that first participated in the 2017 federal election. The underlying ideology is evolutionary humanism. The core themes of the Humanist Party are science and education, the right of self-determination of the individual, and secularization. For example, the party supports the liberal and self-responsible use of drugs, supports legal voluntary euthanasia and is against circumcision of children. The party also supports the implementation of universal basic income.", "links": {"website": ["https://www.pdh.eu"], "subreddit": ["ParteiDerHumanisten"]}, "path": {"206-258": [[677, -964], [677, -949], [688, -948], [701, -960], [701, -965], [677, -965], [677, -964], [677, -963], [677, -962], [677, -960], [677, -958]]}, "center": {"206-258": [685, -957]}}, -{"id": 5357, "name": "Ween", "description": "The Ween logo (Boognish). Ween is an American alternative rock band from New Hope, Pennsylvania.", "links": {"website": ["https://ween.com"], "subreddit": ["ween"]}, "path": {"250-258": [[388, 31], [388, 25], [411, 25], [411, 23], [413, 23], [413, 24], [418, 21], [424, 21], [424, 20], [428, 21], [428, 22], [429, 23], [431, 23], [432, 29], [433, 29], [433, 31], [430, 34], [430, 36], [429, 36], [429, 39], [425, 41], [420, 41], [416, 39], [415, 38], [415, 33], [413, 31]]}, "center": {"250-258": [422, 30]}}, -{"id": 5358, "name": "Ryunosuke Naruhodo", "description": "Pixel art of Ryunosuke Naruhodo, the ancestor of Phoenix Wright and protagonist of The Great Ace Attorney (also known as DGS). Previously placed to the right of Estrangeiro's shoulder (Cellbit's artwork), he was destroyed by xQc. Rebuilt here in collaboration with Nimona.", "links": {"subreddit": ["placeattorney", "aceattorney"], "discord": ["WrHBcnUf"]}, "path": {"250-258": [[1459, 63], [1463, 63], [1463, 61], [1465, 63], [1467, 63], [1468, 64], [1468, 65], [1469, 66], [1468, 67], [1468, 70], [1470, 71], [1470, 76], [1463, 76], [1462, 75], [1462, 73], [1461, 73], [1461, 70], [1459, 68], [1459, 63], [1463, 63]]}, "center": {"250-258": [1463, 67]}}, -{"id": 5359, "name": "Żubr (European bison)", "description": "The European bison, the heaviest wild land animal in Europe. During the early years of the 20th century, bison were hunted to extinction in the wild.\nThe species now numbering several thousand and returned to the wild by captive breeding programmes. By the end of 2019 the number was 2 269, most of which lives in the Białowieża Forest and Bieszczady National Park. Poland has been described as the world's breeding centre of the European bison.", "links": {"subreddit": ["poland"]}, "path": {"250-258": [[688, -132], [703, -132], [704, -145], [686, -146]]}, "center": {"250-258": [695, -139]}}, -{"id": 5360, "name": "Autechre", "description": "Autechre is an English electronic music duo consisting of Rob Brown and Sean Booth, both from Rochdale, Greater Manchester. Formed in 1987, they are among the best known and influential acts signed to UK electronic label Warp Records, through which all of Autechre's full-length albums have been released beginning with their 1993 debut Incunabula. They gained initial recognition when they were featured on Warp's 1992 compilation Artificial Intelligence.", "links": {"website": ["https://autechre.warp.net/"], "subreddit": ["autechre"]}, "path": {"250-258": [[-611, 248], [-611, 254], [-599, 254], [-599, 248]]}, "center": {"250-258": [-605, 251]}}, -{"id": 5361, "name": "Peace at Home, Peace in the World", "description": "In Turkish, the slogan \"Yurtta sulh, cihanda sulh\" – \"Peace at home, peace in the world\" – was first pronounced by Mustafa Kemal Atatürk on 20 April 1931 to the public during his tours of Anatolia. This stance was later integrated and implemented as the foreign policy of the Republic of Turkey.", "links": {"website": ["https://en.wikipedia.org/wiki/Peace_at_Home,_Peace_in_the_World#:~:text=In%20Turkish%2C%20the%20slogan%20%22Yurtta,of%20the%20Republic%20of%20Turkey."], "subreddit": ["Turkey"]}, "path": {"250-258": [[-235, 306], [-169, 305], [-169, 325], [-235, 325]]}, "center": {"250-258": [-195, 315]}}, -{"id": 5362, "name": "Xenoblade Chronicles 2 Pyra and Mythra", "description": "Two small pixel art chibis of the main characters of Xenoblade Chronicles 2, Pyra (bottom) and Mythra (top) as part of the Etika memorial. This was a joint effort between the Etika community and the Xenoblade community, as Etika was very fond of Xenoblade Chronicles 2 and the characters (especially Mythra). This memorial used to be built elsewhere on the canvas but was relocated by the Netherlands (r/placeNL), they also helped defend the memorial for the remainder of r/place.", "links": {"subreddit": ["EtikaRedditNetwork", "Xenoblade_Chronicles"], "discord": ["GSZsaRtVAN", "wvJmPuUfmz"]}, "path": {"163-258": [[-806, 867], [-798, 867], [-797, 868], [-796, 869], [-796, 884], [-806, 884]]}, "center": {"163-258": [-801, 876]}}, -{"id": 5363, "name": "Schuddebuikjes", "description": "A Dutch bread topping made from Speculaas, these tiny cookies can also be enjoyed as a snack", "links": {"website": ["https://bolletje.nl/onze-producten/schuddebuikjes-speculaas"]}, "path": {"250-258": [[1397, -482], [1397, -510], [1396, -510], [1396, -519], [1384, -519], [1384, -510], [1383, -510], [1383, -501], [1384, -501], [1384, -495], [1384, -494], [1385, -494], [1385, -482]]}, "center": {"250-258": [1390, -505]}}, -{"id": 5364, "name": "Tricky the Clown (FNF)", "description": "This is Tricky the Clown from Madness Combat, depicted as his appearance from the Friday Night Funkin' mod, VS Tricky. The mod was created by Banbuds and his team.\n\nThis was made by Spanish streamer FranqitoM and his chat on Twitch.", "links": {"website": ["https://gamebanana.com/mods/44334"], "subreddit": ["FridayNightFunkin", "madnesscombat"]}, "path": {"203-258": [[1428, 319], [1425, 315], [1426, 310], [1434, 306], [1436, 304], [1436, 300], [1434, 299], [1430, 296], [1428, 292], [1425, 284], [1411, 281], [1407, 278], [1402, 272], [1404, 266], [1402, 263], [1403, 258], [1401, 254], [1402, 249], [1406, 243], [1412, 239], [1418, 242], [1417, 245], [1415, 248], [1416, 253], [1420, 256], [1428, 249], [1436, 247], [1437, 243], [1430, 243], [1430, 239], [1440, 234], [1448, 235], [1453, 238], [1456, 240], [1455, 242], [1459, 245], [1459, 250], [1460, 252], [1460, 257], [1461, 259], [1462, 261], [1467, 261], [1473, 256], [1477, 259], [1478, 256], [1484, 261], [1487, 260], [1488, 265], [1491, 268], [1492, 272], [1482, 276], [1481, 279], [1495, 280], [1495, 283], [1490, 288], [1483, 288], [1483, 293], [1475, 298], [1470, 296], [1467, 297], [1470, 300], [1474, 305], [1482, 308], [1484, 312], [1485, 320], [1480, 323], [1466, 322], [1462, 314], [1457, 316], [1451, 316], [1448, 320], [1443, 322], [1438, 323], [1431, 321]]}, "center": {"203-258": [1449, 280]}}, +{"id": 5345, "name": "MartinCAT's logo", "description": "Its the logo from MartinCAT, builded by MartinCAT, and mapped by MartinCAT. Its me", "links": {}, "path": {"204-258, T": [[894, -513], [901, -514], [904, -513], [904, -501], [894, -500], [892, -500], [893, -512], [892, -513], [892, -514]]}, "center": {"204-258, T": [898, -506]}}, +{"id": 5347, "name": "Morrog", "description": "Morrog is a famous dutch streamer", "links": {"website": ["https://www.twitch.tv/morrog"]}, "path": {"250-258, T": [[679, -1000], [750, -1000], [749, -972], [680, -973], [679, -1000], [681, -1000]]}, "center": {"250-258, T": [715, -986]}}, +{"id": 5348, "name": "Nessie (Apex Legends)", "description": "Nessie is a plush toy easter egg found in the Titanfall Franchise and Apex Legends.", "links": {"subreddit": ["apex_legends", "titanfall", "ApexLore"]}, "path": {"236-258, T": [[1060, -486], [1067, -491], [1068, -495], [1072, -495], [1072, -491], [1070, -489], [1070, -487], [1072, -485], [1070, -483], [1064, -483], [1062, -485]]}, "center": {"236-258, T": [1067, -487]}}, +{"id": 5349, "name": "L + J", "description": "Made by a little couple from Germany.\nLeon & Jocelyne", "links": {}, "path": {"210-258, T": [[-738, -416], [-739, -416], [-739, -415], [-739, -414], [-739, -413], [-739, -412], [-739, -411], [-739, -410], [-738, -410], [-737, -410], [-736, -410], [-735, -410], [-734, -410], [-733, -410], [-732, -410], [-732, -409], [-731, -409], [-730, -409], [-730, -410], [-729, -410], [-729, -411], [-729, -412], [-729, -413], [-729, -414], [-729, -415], [-730, -415], [-731, -415], [-731, -416], [-731, -417], [-731, -418], [-731, -419], [-731, -420], [-732, -420], [-733, -420], [-734, -420], [-735, -420], [-736, -420], [-737, -420], [-737, -419], [-737, -418], [-737, -417], [-737, -416]]}, "center": {"210-258, T": [-734, -413]}}, +{"id": 5350, "name": "Gin Ibushi", "description": "A 6th grader and a participant forced into the Death Game in YTTD, meow. One of Big Sis Sara's main allies throughout the game, woof.\nUsed to be in a different spot before moving in with Big Sis Sara and some loner, meow.", "links": {"website": ["https://vgperson.com/games/yourturntodie.htm"], "subreddit": ["yourturntodie"]}, "path": {"250-258, T": [[531, -318], [532, -319], [533, -319], [534, -319], [535, -320], [536, -321], [550, -321], [552, -321], [553, -320], [554, -319], [556, -319], [558, -318], [558, -337], [556, -337], [555, -338], [554, -338], [553, -339], [550, -340], [549, -341], [539, -341], [538, -340], [536, -339], [535, -339], [534, -338], [533, -338], [531, -337], [532, -337], [530, -336], [529, -336], [528, -335], [527, -335], [526, -334], [527, -333], [528, -332], [529, -331], [529, -329], [528, -328], [528, -327], [527, -327]]}, "center": {"250-258, T": [545, -331]}}, +{"id": 5351, "name": "Romolo - A.S. Roma", "description": "Romolo is a mascotte for A.S Roma, an professional football club based in Rome, Italy.", "links": {"website": ["https://www.asroma.com/it"], "subreddit": ["italy"]}, "path": {"250-258, T": [[-677, 93], [-684, 86], [-675, 86], [-673, 96], [-685, 97], [-685, 87], [-683, 86], [-680, 88]]}, "center": {"250-258, T": [-681, 93]}}, +{"id": 5353, "name": "Jack Stauber - HiLo", "description": "A very minimalist depiction of musician and artist Jack Stauber's 4th (non-Micropop) album HiLo.", "links": {"subreddit": ["jackstauber"]}, "path": {"250-258, T": [[-1286, 440], [-1273, 440], [-1273, 453], [-1286, 453]]}, "center": {"250-258, T": [-1279, 447]}}, +{"id": 5354, "name": "Disco elysium", "description": "Disco Elysium is a 2019 role-playing video game developed and published by ZA/UM. Players take the role of an amnesiac detective who has been tasked with solving a murder mystery in a fictionnal city. \nIt is a non-traditional role-playing game featuring very little combat. Instead, events are resolved through skill checks and dialogue trees via a system of 24 skills that represents different aspects of the protagonist, such as his perception and pain threshold.\nDisco Elysium received universal acclaim for its narrative and art, won a number of awards by several publications including Game of the Year, and has been listed as one of the greatest video games ever made.", "links": {"website": ["https://en.wikipedia.org/wiki/Disco_Elysium"], "subreddit": ["DiscoElysium"]}, "path": {"238-258, T": [[1444, 85], [1444, 91], [1478, 91], [1477, 86], [1460, 86]]}, "center": {"238-258, T": [1450, 88]}}, +{"id": 5355, "name": "Duner", "description": "This is a duner - a flower with two petals from the universe (history) with the temporary name \"blessing\" or \"blessing of nature\", authored by nisil (@SoilNisil or @GoatNisil). before that, the art was demolished 3 times, and three times they did not try to rebuild. all this was done by one person (actually nisil)", "links": {"website": ["https://vk.com/dirty_nisil"], "subreddit": ["dunertale"]}, "path": {"220-258, T": [[-339, 958], [-333, 958], [-329, 961], [-329, 967], [-327, 971], [-340, 971], [-339, 968], [-339, 965], [-340, 964], [-340, 958]]}, "center": {"220-258, T": [-334, 964]}}, +{"id": 5356, "name": "Party of Humanists (German Political Party)", "description": "The Party of Humanists (German: Partei der Humanisten) is a minor political party in Germany that first participated in the 2017 federal election. The underlying ideology is evolutionary humanism. The core themes of the Humanist Party are science and education, the right of self-determination of the individual, and secularization. For example, the party supports the liberal and self-responsible use of drugs, supports legal voluntary euthanasia and is against circumcision of children. The party also supports the implementation of universal basic income.", "links": {"website": ["https://www.pdh.eu"], "subreddit": ["ParteiDerHumanisten"]}, "path": {"206-258, T": [[677, -964], [677, -949], [688, -948], [701, -960], [701, -965], [677, -965], [677, -964], [677, -963], [677, -962], [677, -960], [677, -958]]}, "center": {"206-258, T": [685, -957]}}, +{"id": 5357, "name": "Ween", "description": "The Ween logo (Boognish). Ween is an American alternative rock band from New Hope, Pennsylvania.", "links": {"website": ["https://ween.com"], "subreddit": ["ween"]}, "path": {"250-258, T": [[388, 31], [388, 25], [411, 25], [411, 23], [413, 23], [413, 24], [418, 21], [424, 21], [424, 20], [428, 21], [428, 22], [429, 23], [431, 23], [432, 29], [433, 29], [433, 31], [430, 34], [430, 36], [429, 36], [429, 39], [425, 41], [420, 41], [416, 39], [415, 38], [415, 33], [413, 31]]}, "center": {"250-258, T": [422, 30]}}, +{"id": 5358, "name": "Ryunosuke Naruhodo", "description": "Pixel art of Ryunosuke Naruhodo, the ancestor of Phoenix Wright and protagonist of The Great Ace Attorney (also known as DGS). Previously placed to the right of Estrangeiro's shoulder (Cellbit's artwork), he was destroyed by xQc. Rebuilt here in collaboration with Nimona.", "links": {"subreddit": ["placeattorney", "aceattorney"], "discord": ["WrHBcnUf"]}, "path": {"250-258, T": [[1459, 63], [1463, 63], [1463, 61], [1465, 63], [1467, 63], [1468, 64], [1468, 65], [1469, 66], [1468, 67], [1468, 70], [1470, 71], [1470, 76], [1463, 76], [1462, 75], [1462, 73], [1461, 73], [1461, 70], [1459, 68], [1459, 63], [1463, 63]]}, "center": {"250-258, T": [1463, 67]}}, +{"id": 5359, "name": "Żubr (European bison)", "description": "The European bison, the heaviest wild land animal in Europe. During the early years of the 20th century, bison were hunted to extinction in the wild.\nThe species now numbering several thousand and returned to the wild by captive breeding programmes. By the end of 2019 the number was 2 269, most of which lives in the Białowieża Forest and Bieszczady National Park. Poland has been described as the world's breeding centre of the European bison.", "links": {"subreddit": ["poland"]}, "path": {"250-258, T": [[688, -132], [703, -132], [704, -145], [686, -146]]}, "center": {"250-258, T": [695, -139]}}, +{"id": 5360, "name": "Autechre", "description": "Autechre is an English electronic music duo consisting of Rob Brown and Sean Booth, both from Rochdale, Greater Manchester. Formed in 1987, they are among the best known and influential acts signed to UK electronic label Warp Records, through which all of Autechre's full-length albums have been released beginning with their 1993 debut Incunabula. They gained initial recognition when they were featured on Warp's 1992 compilation Artificial Intelligence.", "links": {"website": ["https://autechre.warp.net/"], "subreddit": ["autechre"]}, "path": {"250-258, T": [[-611, 248], [-611, 254], [-599, 254], [-599, 248]]}, "center": {"250-258, T": [-605, 251]}}, +{"id": 5361, "name": "Peace at Home, Peace in the World", "description": "In Turkish, the slogan \"Yurtta sulh, cihanda sulh\" – \"Peace at home, peace in the world\" – was first pronounced by Mustafa Kemal Atatürk on 20 April 1931 to the public during his tours of Anatolia. This stance was later integrated and implemented as the foreign policy of the Republic of Turkey.", "links": {"website": ["https://en.wikipedia.org/wiki/Peace_at_Home,_Peace_in_the_World#:~:text=In%20Turkish%2C%20the%20slogan%20%22Yurtta,of%20the%20Republic%20of%20Turkey."], "subreddit": ["Turkey"]}, "path": {"250-258, T": [[-235, 306], [-169, 305], [-169, 325], [-235, 325]]}, "center": {"250-258, T": [-195, 315]}}, +{"id": 5362, "name": "Xenoblade Chronicles 2 Pyra and Mythra", "description": "Two small pixel art chibis of the main characters of Xenoblade Chronicles 2, Pyra (bottom) and Mythra (top) as part of the Etika memorial. This was a joint effort between the Etika community and the Xenoblade community, as Etika was very fond of Xenoblade Chronicles 2 and the characters (especially Mythra). This memorial used to be built elsewhere on the canvas but was relocated by the Netherlands (r/placeNL), they also helped defend the memorial for the remainder of r/place.", "links": {"subreddit": ["EtikaRedditNetwork", "Xenoblade_Chronicles"], "discord": ["GSZsaRtVAN", "wvJmPuUfmz"]}, "path": {"163-258, T": [[-806, 867], [-798, 867], [-797, 868], [-796, 869], [-796, 884], [-806, 884]]}, "center": {"163-258, T": [-801, 876]}}, +{"id": 5363, "name": "Schuddebuikjes", "description": "A Dutch bread topping made from Speculaas, these tiny cookies can also be enjoyed as a snack", "links": {"website": ["https://bolletje.nl/onze-producten/schuddebuikjes-speculaas"]}, "path": {"250-258, T": [[1397, -482], [1397, -510], [1396, -510], [1396, -519], [1384, -519], [1384, -510], [1383, -510], [1383, -501], [1384, -501], [1384, -495], [1384, -494], [1385, -494], [1385, -482]]}, "center": {"250-258, T": [1390, -505]}}, +{"id": 5364, "name": "Tricky the Clown (FNF)", "description": "This is Tricky the Clown from Madness Combat, depicted as his appearance from the Friday Night Funkin' mod, VS Tricky. The mod was created by Banbuds and his team.\n\nThis was made by Spanish streamer FranqitoM and his chat on Twitch.", "links": {"website": ["https://gamebanana.com/mods/44334"], "subreddit": ["FridayNightFunkin", "madnesscombat"]}, "path": {"203-258, T": [[1428, 319], [1425, 315], [1426, 310], [1434, 306], [1436, 304], [1436, 300], [1434, 299], [1430, 296], [1428, 292], [1425, 284], [1411, 281], [1407, 278], [1402, 272], [1404, 266], [1402, 263], [1403, 258], [1401, 254], [1402, 249], [1406, 243], [1412, 239], [1418, 242], [1417, 245], [1415, 248], [1416, 253], [1420, 256], [1428, 249], [1436, 247], [1437, 243], [1430, 243], [1430, 239], [1440, 234], [1448, 235], [1453, 238], [1456, 240], [1455, 242], [1459, 245], [1459, 250], [1460, 252], [1460, 257], [1461, 259], [1462, 261], [1467, 261], [1473, 256], [1477, 259], [1478, 256], [1484, 261], [1487, 260], [1488, 265], [1491, 268], [1492, 272], [1482, 276], [1481, 279], [1495, 280], [1495, 283], [1490, 288], [1483, 288], [1483, 293], [1475, 298], [1470, 296], [1467, 297], [1470, 300], [1474, 305], [1482, 308], [1484, 312], [1485, 320], [1480, 323], [1466, 322], [1462, 314], [1457, 316], [1451, 316], [1448, 320], [1443, 322], [1438, 323], [1431, 321]]}, "center": {"203-258, T": [1449, 280]}}, {"id": 5365, "name": "Plave", "description": "Plave is a South Korean virtual boy band formed by VLast. The group currently consists of five members: Noah, Bamby, Yejun, Eunho and Hamin. The group made their official debut on March 12, 2023, with the release of their first single album Asterum", "links": {"website": ["https://www.vlast.co.kr/plave"], "subreddit": ["plave"]}, "path": {"256-258": [[-1265, 277], [-1253, 277], [-1253, 291], [-1265, 291]]}, "center": {"256-258": [-1259, 284]}}, {"id": 5366, "name": "Flag of Columbia", "description": "Stylized using the country borders outline", "links": {}, "path": {"168": [[-1000, 970], [-1001, 843], [-882, 843], [-882, 931], [-883, 969], [-999, 970]]}, "center": {"168": [-941, 906]}}, -{"id": 5367, "name": "Boost for Reddit on the Taskbar", "description": "Boost for Reddit on the Windows Vista Taskbar.\n\nBoost for Reddit is a third party Reddit client app for Android, developed by u/rmayayo.", "links": {"website": ["https://boostforreddit.com/"], "subreddit": ["BoostForReddit"]}, "path": {"187-258": [[-1274, 987], [-1274, 982], [-1273, 981], [-1273, 980], [-1271, 978], [-1270, 978], [-1269, 977], [-1264, 977], [-1263, 978], [-1262, 978], [-1260, 980], [-1260, 981], [-1259, 982], [-1259, 987], [-1260, 988], [-1260, 989], [-1262, 991], [-1263, 991], [-1264, 992], [-1269, 992], [-1270, 991], [-1271, 991], [-1273, 989], [-1273, 988]]}, "center": {"187-258": [-1266, 985]}}, -{"id": 5368, "name": "Natagn", "description": "Small French minecraft youtuber, who made with his small, intelligent, brave, magnificent and incredible community, the head of his skin and the \"N\" above.", "links": {"discord": ["6u74FYBN"]}, "path": {"242-258": [[-1305, 277], [-1305, 278], [-1298, 278], [-1297, 277], [-1296, 276], [-1296, 264], [-1297, 264], [-1298, 265], [-1299, 266], [-1301, 266], [-1302, 265], [-1305, 265], [-1305, 278]]}, "center": {"242-258": [-1300, 271]}}, -{"id": 5369, "name": "Frisk", "description": "The main controllable character of Undertale. A human who fell into the underground and has the power to shape the world with their choices.", "links": {"subreddit": ["Undertale"]}, "path": {"211-258": [[-1136, -756], [-1135, -756], [-1135, -757], [-1135, -758], [-1137, -758], [-1137, -761], [-1139, -761], [-1139, -765], [-1137, -767], [-1136, -767], [-1135, -768], [-1133, -768], [-1133, -770], [-1139, -770], [-1139, -769], [-1140, -770], [-1141, -771], [-1141, -773], [-1141, -778], [-1140, -779], [-1139, -781], [-1138, -782], [-1137, -783], [-1136, -784], [-1128, -784], [-1125, -781], [-1124, -781], [-1123, -778], [-1123, -771], [-1124, -770], [-1126, -771], [-1126, -769], [-1130, -770], [-1130, -768], [-1127, -767], [-1126, -767], [-1124, -765], [-1123, -762], [-1126, -762], [-1126, -758], [-1128, -758], [-1128, -757], [-1127, -756], [-1131, -756], [-1131, -758], [-1133, -758], [-1133, -756]]}, "center": {"211-258": [-1132, -777]}}, -{"id": 5370, "name": "Lexspielts \"Lex\"", "description": "Lex-Artwork made by German streamer lexspielt and his small community of about 35 followers.", "links": {"wiki": ["Lexspielts_%22Lex%22"], "discord": ["Dh59vdsNVz"]}, "path": {"160-258": [[297, -941], [306, -941], [306, -933], [299, -933], [297, -941], [299, -933]]}, "center": {"160-258": [302, -937]}}, +{"id": 5367, "name": "Boost for Reddit on the Taskbar", "description": "Boost for Reddit on the Windows Vista Taskbar.\n\nBoost for Reddit is a third party Reddit client app for Android, developed by u/rmayayo.", "links": {"website": ["https://boostforreddit.com/"], "subreddit": ["BoostForReddit"]}, "path": {"187-258, T": [[-1274, 987], [-1274, 982], [-1273, 981], [-1273, 980], [-1271, 978], [-1270, 978], [-1269, 977], [-1264, 977], [-1263, 978], [-1262, 978], [-1260, 980], [-1260, 981], [-1259, 982], [-1259, 987], [-1260, 988], [-1260, 989], [-1262, 991], [-1263, 991], [-1264, 992], [-1269, 992], [-1270, 991], [-1271, 991], [-1273, 989], [-1273, 988]]}, "center": {"187-258, T": [-1266, 985]}}, +{"id": 5368, "name": "Natagn", "description": "Small French minecraft youtuber, who made with his small, intelligent, brave, magnificent and incredible community, the head of his skin and the \"N\" above.", "links": {"discord": ["6u74FYBN"]}, "path": {"242-258, T": [[-1305, 277], [-1305, 278], [-1298, 278], [-1297, 277], [-1296, 276], [-1296, 264], [-1297, 264], [-1298, 265], [-1299, 266], [-1301, 266], [-1302, 265], [-1305, 265], [-1305, 278]]}, "center": {"242-258, T": [-1300, 271]}}, +{"id": 5369, "name": "Frisk", "description": "The main controllable character of Undertale. A human who fell into the underground and has the power to shape the world with their choices.", "links": {"subreddit": ["Undertale"]}, "path": {"211-258, T": [[-1136, -756], [-1135, -756], [-1135, -757], [-1135, -758], [-1137, -758], [-1137, -761], [-1139, -761], [-1139, -765], [-1137, -767], [-1136, -767], [-1135, -768], [-1133, -768], [-1133, -770], [-1139, -770], [-1139, -769], [-1140, -770], [-1141, -771], [-1141, -773], [-1141, -778], [-1140, -779], [-1139, -781], [-1138, -782], [-1137, -783], [-1136, -784], [-1128, -784], [-1125, -781], [-1124, -781], [-1123, -778], [-1123, -771], [-1124, -770], [-1126, -771], [-1126, -769], [-1130, -770], [-1130, -768], [-1127, -767], [-1126, -767], [-1124, -765], [-1123, -762], [-1126, -762], [-1126, -758], [-1128, -758], [-1128, -757], [-1127, -756], [-1131, -756], [-1131, -758], [-1133, -758], [-1133, -756]]}, "center": {"211-258, T": [-1132, -777]}}, +{"id": 5370, "name": "Lexspielts \"Lex\"", "description": "Lex-Artwork made by German streamer lexspielt and his small community of about 35 followers.", "links": {"wiki": ["Lexspielts_%22Lex%22"], "discord": ["Dh59vdsNVz"]}, "path": {"160-258, T": [[297, -941], [306, -941], [306, -933], [299, -933], [297, -941], [299, -933]]}, "center": {"160-258, T": [302, -937]}}, {"id": 5371, "name": "Sloth First try.", "description": "The first try to get a sloth onto the map but other Artworks did spread to fast that it did need to move to a new Home at 300 -630 for the last 2 days of r/place.", "links": {"subreddit": ["sloths"]}, "path": {"16-59": [[-25, 426], [-25, 435], [-17, 441], [-9, 441], [-9, 425]]}, "center": {"16-59": [-16, 433]}}, -{"id": 5372, "name": "Hungarian Grey", "description": "The Hungarian Gray Cow, or \"Magyar Szürke Szarvasmarha,\" is a native breed deeply rooted in Hungary's history. Bred by the Magyar tribes who settled in the Carpathian Basin, these cows played a vital role in Hungarian agriculture for centuries. With their stunning appearance, sturdy frames, and adaptability, they were essential in providing milk for dairy products and aiding in farm work. However, modernization and foreign breeds threatened their existence. Recognizing their cultural significance, Hungary implemented conservation efforts, ensuring the Hungarian Gray Cow remains a living heritage, symbolizing the nation's commitment to preserving its agricultural traditions and cultural identity.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungarian_Grey"]}, "path": {"248-258": [[-1353, -7], [-1352, -8], [-1352, -9], [-1351, -10], [-1351, -11], [-1350, -12], [-1350, -19], [-1351, -20], [-1351, -21], [-1352, -22], [-1352, -23], [-1353, -24], [-1353, -27], [-1354, -28], [-1354, -31], [-1356, -31], [-1358, -33], [-1356, -35], [-1355, -35], [-1356, -36], [-1358, -36], [-1361, -39], [-1361, -40], [-1360, -41], [-1359, -41], [-1358, -40], [-1356, -40], [-1355, -39], [-1354, -39], [-1352, -37], [-1346, -37], [-1344, -39], [-1343, -39], [-1342, -40], [-1340, -40], [-1339, -41], [-1338, -41], [-1337, -40], [-1337, -39], [-1340, -36], [-1342, -36], [-1343, -35], [-1342, -35], [-1340, -33], [-1320, -33], [-1319, -32], [-1318, -32], [-1313, -27], [-1313, -21], [-1315, -19], [-1315, -18], [-1316, -17], [-1315, -17], [-1314, -18], [-1313, -17], [-1315, -15], [-1316, -15], [-1318, -17], [-1318, -22], [-1317, -23], [-1317, -26], [-1318, -27], [-1318, -28], [-1318, -25], [-1319, -24], [-1319, -16], [-1320, -15], [-1320, -13], [-1319, -12], [-1319, -9], [-1320, -8], [-1320, -7], [-1321, -6], [-1327, -6], [-1328, -7], [-1325, -10], [-1325, -13], [-1326, -14], [-1327, -14], [-1330, -17], [-1331, -16], [-1332, -17], [-1337, -17], [-1338, -18], [-1340, -18], [-1340, -10], [-1339, -9], [-1339, -7], [-1340, -6], [-1343, -6], [-1344, -7], [-1343, -8], [-1343, -9], [-1344, -10], [-1344, -12], [-1345, -13], [-1345, -14], [-1345, -13], [-1346, -12], [-1346, -11], [-1347, -10], [-1347, -9], [-1348, -8], [-1348, -7], [-1349, -6], [-1352, -6]]}, "center": {"248-258": [-1344, -25]}}, -{"id": 5373, "name": "Triskelion (triskell)", "description": "The triskelion, a symbol of Celtic culture that is commonly found in the French region of Brittany (Bretagne)", "links": {"website": ["https://en.wikipedia.org/wiki/Triskelion"]}, "path": {"20-258": [[-488, 364], [-481, 364], [-475, 370], [-474, 372], [-469, 372], [-464, 375], [-463, 378], [-463, 385], [-467, 389], [-469, 390], [-476, 390], [-479, 395], [-481, 397], [-490, 397], [-494, 392], [-494, 383], [-491, 380], [-491, 378], [-493, 377], [-494, 375], [-494, 370], [-490, 364]]}, "center": {"250-258": [-481, 381]}}, -{"id": 5374, "name": "\"Peace at Home, Peace at r/Place\"", "description": "Turkish users actively participated in this event and wrote the quote \"Peace at Home, Peace in the World\" by Mustafa Kemal Atatürk with a little change. Turkish users wrote this phrase, uttered by Mustafa Kemal Atatürk, as \"Peace at Home, Peace at r/Place\" in accordance with the nature of r/place..\n\nThis quote is one of the most important principles of Mustafa Kemal Atatürk, the founder of the Republic of Turkey, and carries a message of peace.", "links": {"subreddit": ["turkey", "placeturkey"]}, "path": {"250-258": [[-235, 307], [-170, 307], [-169, 322], [-234, 323]]}, "center": {"250-258": [-202, 315]}}, -{"id": 5375, "name": "BSZ Wiesau", "description": "", "links": {"website": ["https://bsz-wiesau.de"], "subreddit": ["ich_iw"]}, "path": {"246-258": [[-1287, 226], [-1226, 226], [-1226, 238], [-1287, 238]]}, "center": {"246-258": [-1256, 232]}}, -{"id": 5376, "name": "Samus Aran", "description": "Protagonist of the Metroid series of videogames. A bounty hunter raised by the Chozo who often works with or for the Galactic Federation against the Space Pirates or the titular Metroid species.\n\nThe reason for her inclusion on the spanish flag was due to a collaboration with users of r/Metroid.", "links": {"subreddit": ["Metroid"]}, "path": {"145-258": [[565, -68], [569, -68], [569, -67], [570, -67], [570, -66], [571, -66], [571, -64], [572, -64], [572, -63], [574, -63], [574, -62], [575, -62], [575, -61], [576, -61], [576, -59], [575, -59], [575, -55], [559, -55], [559, -59], [558, -59], [558, -61], [559, -61], [559, -62], [560, -62], [560, -63], [562, -63], [562, -64], [563, -64], [563, -66], [564, -66], [564, -68]]}, "center": {"145-258": [567, -60]}}, -{"id": 5377, "name": "Boards Of Canada", "description": "Boards of Canada are a Scottish electronic music duo consisting of the brothers Michael Sandison and Marcus Eoin, formed initially as a group in 1986 before becoming a duo in the 1990s", "links": {"website": ["https://warp.net/artists/91407-boards-of-canada"], "subreddit": ["boardsofcanada"]}, "path": {"250-258": [[-639, 244], [-639, 257], [-620, 257], [-620, 244]]}, "center": {"250-258": [-629, 251]}}, -{"id": 5378, "name": "Asriel Dreemur", "description": "A central character to Undertale. The son of Asgore and Toriel. He became best friends with the fallen human Chara, who was adopted by Toriel and Asgore upon falling into the Underground. Together they devise a scheme to free monster kind from the barrier they have been trapped in. By combining their souls, they are able to exit the barrier and go to steal more human souls to shatter it. Ultimately they are killed in the process, staggering back to the Underground and bursting into dust across Asgore's flower garden. With the loss of his Children, Asgore declares war on humanity, killing all who fall into the Underground to collect their souls and destroy the barrier himself.", "links": {"subreddit": ["Undertale"]}, "path": {"200-258": [[-1121, -756], [-1121, -757], [-1118, -759], [-1118, -760], [-1119, -761], [-1122, -761], [-1122, -765], [-1121, -767], [-1120, -768], [-1119, -769], [-1122, -772], [-1122, -776], [-1120, -779], [-1122, -780], [-1122, -781], [-1120, -781], [-1117, -786], [-1112, -786], [-1107, -781], [-1107, -780], [-1109, -779], [-1108, -777], [-1107, -772], [-1110, -769], [-1106, -764], [-1105, -764], [-1105, -762], [-1106, -762], [-1107, -762], [-1109, -764], [-1110, -763], [-1111, -761], [-1111, -759], [-1110, -759], [-1109, -758], [-1108, -756], [-1112, -756], [-1114, -758], [-1116, -757], [-1117, -756]]}, "center": {"200-258": [-1115, -774]}}, -{"id": 5379, "name": "Foxwhale Heart", "description": "An orange, green and blue heart symbolizing the two members (Dapler and Juicimated) of a game development and entertainment media duo named Foxwhale Studios.", "links": {"website": ["https://linktr.ee/foxwhale"], "subreddit": ["FoxwhaleStudios"], "discord": ["Vg3wPQsKG5"]}, "path": {"250-258": [[458, 84], [459, 84], [460, 85], [461, 85], [462, 84], [463, 84], [464, 85], [465, 86], [465, 88], [464, 89], [463, 90], [462, 91], [461, 92], [460, 92], [459, 91], [458, 90], [457, 89], [456, 88], [456, 86], [457, 85]]}, "center": {"250-258": [461, 88]}}, +{"id": 5372, "name": "Hungarian Grey", "description": "The Hungarian Gray Cow, or \"Magyar Szürke Szarvasmarha,\" is a native breed deeply rooted in Hungary's history. Bred by the Magyar tribes who settled in the Carpathian Basin, these cows played a vital role in Hungarian agriculture for centuries. With their stunning appearance, sturdy frames, and adaptability, they were essential in providing milk for dairy products and aiding in farm work. However, modernization and foreign breeds threatened their existence. Recognizing their cultural significance, Hungary implemented conservation efforts, ensuring the Hungarian Gray Cow remains a living heritage, symbolizing the nation's commitment to preserving its agricultural traditions and cultural identity.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungarian_Grey"]}, "path": {"248-258, T": [[-1353, -7], [-1352, -8], [-1352, -9], [-1351, -10], [-1351, -11], [-1350, -12], [-1350, -19], [-1351, -20], [-1351, -21], [-1352, -22], [-1352, -23], [-1353, -24], [-1353, -27], [-1354, -28], [-1354, -31], [-1356, -31], [-1358, -33], [-1356, -35], [-1355, -35], [-1356, -36], [-1358, -36], [-1361, -39], [-1361, -40], [-1360, -41], [-1359, -41], [-1358, -40], [-1356, -40], [-1355, -39], [-1354, -39], [-1352, -37], [-1346, -37], [-1344, -39], [-1343, -39], [-1342, -40], [-1340, -40], [-1339, -41], [-1338, -41], [-1337, -40], [-1337, -39], [-1340, -36], [-1342, -36], [-1343, -35], [-1342, -35], [-1340, -33], [-1320, -33], [-1319, -32], [-1318, -32], [-1313, -27], [-1313, -21], [-1315, -19], [-1315, -18], [-1316, -17], [-1315, -17], [-1314, -18], [-1313, -17], [-1315, -15], [-1316, -15], [-1318, -17], [-1318, -22], [-1317, -23], [-1317, -26], [-1318, -27], [-1318, -28], [-1318, -25], [-1319, -24], [-1319, -16], [-1320, -15], [-1320, -13], [-1319, -12], [-1319, -9], [-1320, -8], [-1320, -7], [-1321, -6], [-1327, -6], [-1328, -7], [-1325, -10], [-1325, -13], [-1326, -14], [-1327, -14], [-1330, -17], [-1331, -16], [-1332, -17], [-1337, -17], [-1338, -18], [-1340, -18], [-1340, -10], [-1339, -9], [-1339, -7], [-1340, -6], [-1343, -6], [-1344, -7], [-1343, -8], [-1343, -9], [-1344, -10], [-1344, -12], [-1345, -13], [-1345, -14], [-1345, -13], [-1346, -12], [-1346, -11], [-1347, -10], [-1347, -9], [-1348, -8], [-1348, -7], [-1349, -6], [-1352, -6]]}, "center": {"248-258, T": [-1344, -25]}}, +{"id": 5373, "name": "Triskelion (triskell)", "description": "The triskelion, a symbol of Celtic culture that is commonly found in the French region of Brittany (Bretagne)", "links": {"website": ["https://en.wikipedia.org/wiki/Triskelion"]}, "path": {"20-258, T": [[-488, 364], [-481, 364], [-475, 370], [-474, 372], [-469, 372], [-464, 375], [-463, 378], [-463, 385], [-467, 389], [-469, 390], [-476, 390], [-479, 395], [-481, 397], [-490, 397], [-494, 392], [-494, 383], [-491, 380], [-491, 378], [-493, 377], [-494, 375], [-494, 370], [-490, 364]]}, "center": {"250-258, T": [-481, 381]}}, +{"id": 5374, "name": "\"Peace at Home, Peace at r/Place\"", "description": "Turkish users actively participated in this event and wrote the quote \"Peace at Home, Peace in the World\" by Mustafa Kemal Atatürk with a little change. Turkish users wrote this phrase, uttered by Mustafa Kemal Atatürk, as \"Peace at Home, Peace at r/Place\" in accordance with the nature of r/place..\n\nThis quote is one of the most important principles of Mustafa Kemal Atatürk, the founder of the Republic of Turkey, and carries a message of peace.", "links": {"subreddit": ["turkey", "placeturkey"]}, "path": {"250-258, T": [[-235, 307], [-170, 307], [-169, 322], [-234, 323]]}, "center": {"250-258, T": [-202, 315]}}, +{"id": 5375, "name": "BSZ Wiesau", "description": "", "links": {"website": ["https://bsz-wiesau.de"], "subreddit": ["ich_iw"]}, "path": {"246-258, T": [[-1287, 226], [-1226, 226], [-1226, 238], [-1287, 238]]}, "center": {"246-258, T": [-1256, 232]}}, +{"id": 5376, "name": "Samus Aran", "description": "Protagonist of the Metroid series of videogames. A bounty hunter raised by the Chozo who often works with or for the Galactic Federation against the Space Pirates or the titular Metroid species.\n\nThe reason for her inclusion on the spanish flag was due to a collaboration with users of r/Metroid.", "links": {"subreddit": ["Metroid"]}, "path": {"145-258, T": [[565, -68], [569, -68], [569, -67], [570, -67], [570, -66], [571, -66], [571, -64], [572, -64], [572, -63], [574, -63], [574, -62], [575, -62], [575, -61], [576, -61], [576, -59], [575, -59], [575, -55], [559, -55], [559, -59], [558, -59], [558, -61], [559, -61], [559, -62], [560, -62], [560, -63], [562, -63], [562, -64], [563, -64], [563, -66], [564, -66], [564, -68]]}, "center": {"145-258, T": [567, -60]}}, +{"id": 5377, "name": "Boards Of Canada", "description": "Boards of Canada are a Scottish electronic music duo consisting of the brothers Michael Sandison and Marcus Eoin, formed initially as a group in 1986 before becoming a duo in the 1990s", "links": {"website": ["https://warp.net/artists/91407-boards-of-canada"], "subreddit": ["boardsofcanada"]}, "path": {"250-258, T": [[-639, 244], [-639, 257], [-620, 257], [-620, 244]]}, "center": {"250-258, T": [-629, 251]}}, +{"id": 5378, "name": "Asriel Dreemur", "description": "A central character to Undertale. The son of Asgore and Toriel. He became best friends with the fallen human Chara, who was adopted by Toriel and Asgore upon falling into the Underground. Together they devise a scheme to free monster kind from the barrier they have been trapped in. By combining their souls, they are able to exit the barrier and go to steal more human souls to shatter it. Ultimately they are killed in the process, staggering back to the Underground and bursting into dust across Asgore's flower garden. With the loss of his Children, Asgore declares war on humanity, killing all who fall into the Underground to collect their souls and destroy the barrier himself.", "links": {"subreddit": ["Undertale"]}, "path": {"200-258, T": [[-1121, -756], [-1121, -757], [-1118, -759], [-1118, -760], [-1119, -761], [-1122, -761], [-1122, -765], [-1121, -767], [-1120, -768], [-1119, -769], [-1122, -772], [-1122, -776], [-1120, -779], [-1122, -780], [-1122, -781], [-1120, -781], [-1117, -786], [-1112, -786], [-1107, -781], [-1107, -780], [-1109, -779], [-1108, -777], [-1107, -772], [-1110, -769], [-1106, -764], [-1105, -764], [-1105, -762], [-1106, -762], [-1107, -762], [-1109, -764], [-1110, -763], [-1111, -761], [-1111, -759], [-1110, -759], [-1109, -758], [-1108, -756], [-1112, -756], [-1114, -758], [-1116, -757], [-1117, -756]]}, "center": {"200-258, T": [-1115, -774]}}, +{"id": 5379, "name": "Foxwhale Heart", "description": "An orange, green and blue heart symbolizing the two members (Dapler and Juicimated) of a game development and entertainment media duo named Foxwhale Studios.", "links": {"website": ["https://linktr.ee/foxwhale"], "subreddit": ["FoxwhaleStudios"], "discord": ["Vg3wPQsKG5"]}, "path": {"250-258, T": [[458, 84], [459, 84], [460, 85], [461, 85], [462, 84], [463, 84], [464, 85], [465, 86], [465, 88], [464, 89], [463, 90], [462, 91], [461, 92], [460, 92], [459, 91], [458, 90], [457, 89], [456, 88], [456, 86], [457, 85]]}, "center": {"250-258, T": [461, 88]}}, {"id": 5380, "name": "Eusébio", "description": "Mostly known as one of the 2 greatest Portugal's football player ever with Cristiano Ronaldo. He was Pele's rival for World's Best in the 60s", "links": {"website": ["https://en.wikipedia.org/wiki/Eusébio"]}, "path": {"78": [[458, 313], [462, 300], [473, 292], [485, 295], [492, 307], [491, 318], [489, 327], [488, 334], [489, 343], [466, 335], [466, 343], [464, 334]]}, "center": {"78": [475, 312]}}, -{"id": 5381, "name": "Bibi's face", "description": "Bibi is the hat and mascot of the Japanese Virtual youtuber Tokoyami Towa, Normally bibi's form is that of a cap that Towa always wears but he can shapeshift into either a small creature similar to that of a cat, or sleep in his egg.", "links": {"subreddit": ["hololive"], "discord": ["konyappi"]}, "path": {"250-258": [[-230, -823], [-217, -823], [-217, -818], [-230, -818]]}, "center": {"250-258": [-223, -820]}}, -{"id": 5382, "name": "Madotsuki", "description": "The main character of the 2004 RPG Maker exploration game Yume Nikki. She explores her vast and varied dream worlds full of surreal imagery and many odd NPCs, while in the real world being isolated to her room and refusing to leave. There is no dialogue and minimal text beyond instructions, so it is a very interpretive experience that has become the playground for many people's theories.\n\nYume Nikki served to inspire many indie games that would follow it, such as Undertale, OneShot, Lisa, Doki Doki Literature Club, and of course, Omori. As Omori similarly features a hikikomori character who explores a vast dream world, and because the Yume Nikki community is small and had difficulty getting her down elsewhere on the canvas, Madotsuki was given an honorary place on Mari's picnic.\n\nYume", "links": {"subreddit": ["Yumenikki"]}, "path": {"103-258": [[-240, -204], [-240, -208], [-239, -210], [-238, -211], [-236, -212], [-230, -212], [-229, -210], [-228, -205], [-227, -205], [-226, -204], [-225, -203], [-225, -202], [-224, -201], [-225, -200], [-227, -201], [-229, -202], [-228, -200], [-228, -198], [-227, -197], [-226, -195], [-224, -194], [-226, -193], [-235, -192], [-237, -193], [-238, -194], [-235, -196], [-235, -198], [-234, -199], [-235, -200], [-236, -201], [-238, -202]]}, "center": {"103-258": [-234, -206]}}, +{"id": 5381, "name": "Bibi's face", "description": "Bibi is the hat and mascot of the Japanese Virtual youtuber Tokoyami Towa, Normally bibi's form is that of a cap that Towa always wears but he can shapeshift into either a small creature similar to that of a cat, or sleep in his egg.", "links": {"subreddit": ["hololive"], "discord": ["konyappi"]}, "path": {"250-258, T": [[-230, -823], [-217, -823], [-217, -818], [-230, -818]]}, "center": {"250-258, T": [-223, -820]}}, +{"id": 5382, "name": "Madotsuki", "description": "The main character of the 2004 RPG Maker exploration game Yume Nikki. She explores her vast and varied dream worlds full of surreal imagery and many odd NPCs, while in the real world being isolated to her room and refusing to leave. There is no dialogue and minimal text beyond instructions, so it is a very interpretive experience that has become the playground for many people's theories.\n\nYume Nikki served to inspire many indie games that would follow it, such as Undertale, OneShot, Lisa, Doki Doki Literature Club, and of course, Omori. As Omori similarly features a hikikomori character who explores a vast dream world, and because the Yume Nikki community is small and had difficulty getting her down elsewhere on the canvas, Madotsuki was given an honorary place on Mari's picnic.\n\nYume", "links": {"subreddit": ["Yumenikki"]}, "path": {"103-258, T": [[-240, -204], [-240, -208], [-239, -210], [-238, -211], [-236, -212], [-230, -212], [-229, -210], [-228, -205], [-227, -205], [-226, -204], [-225, -203], [-225, -202], [-224, -201], [-225, -200], [-227, -201], [-229, -202], [-228, -200], [-228, -198], [-227, -197], [-226, -195], [-224, -194], [-226, -193], [-235, -192], [-237, -193], [-238, -194], [-235, -196], [-235, -198], [-234, -199], [-235, -200], [-236, -201], [-238, -202]]}, "center": {"103-258, T": [-234, -206]}}, {"id": 5383, "name": "L T=<3", "description": "Two lovers somehow managed to represent their love.", "links": {}, "path": {"215": [[-1070, -115], [-1055, -115], [-1055, -110], [-1070, -110]]}, "center": {"215": [-1062, -112]}}, -{"id": 5385, "name": "Nugget SMP", "description": "", "links": {}, "path": {"250-258": [[-475, -865], [-434, -865], [-435, -849], [-475, -850]]}, "center": {"250-258": [-455, -857]}}, -{"id": 5386, "name": "Nighttime Lighthouse", "description": "A little landscape art of a lighthouse at night, with a Breton flag. This was the second area held by Bretons of r/Bretagne and PlaceBZH.\nIt was destroyed by the nearby Void, and moved next to the Kanagawa wave. A taller lighthouse was initially planned, but couldn't be built.\nThe first location features an ermine, usual Breton heraldic symbol.", "links": {"subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"203-217": [[1038, 306], [1078, 306], [1078, 331], [1038, 331]], "230-242": [[1001, -16], [1027, -16], [1027, -9], [1036, -9], [1036, -12], [1037, -12], [1037, -3], [1033, -1], [1032, 1], [1024, 9], [1001, 9]], "243-258": [[1001, -16], [1027, -16], [1027, -9], [1036, -9], [1036, -11], [1037, -11], [1038, -3], [1032, 0], [1024, 8], [1018, 18], [1001, 18]]}, "center": {"203-217": [1058, 319], "230-242": [1014, -3], "243-258": [1015, -2]}}, +{"id": 5385, "name": "Nugget SMP", "description": "", "links": {}, "path": {"250-258, T": [[-475, -865], [-434, -865], [-435, -849], [-475, -850]]}, "center": {"250-258, T": [-455, -857]}}, +{"id": 5386, "name": "Nighttime Lighthouse", "description": "A little landscape art of a lighthouse at night, with a Breton flag. This was the second area held by Bretons of r/Bretagne and PlaceBZH.\nIt was destroyed by the nearby Void, and moved next to the Kanagawa wave. A taller lighthouse was initially planned, but couldn't be built.\nThe first location features an ermine, usual Breton heraldic symbol.", "links": {"subreddit": ["Bretagne"], "discord": ["8EGb5u9JZF"]}, "path": {"203-217": [[1038, 306], [1078, 306], [1078, 331], [1038, 331]], "230-242": [[1001, -16], [1027, -16], [1027, -9], [1036, -9], [1036, -12], [1037, -12], [1037, -3], [1033, -1], [1032, 1], [1024, 9], [1001, 9]], "243-258, T": [[1001, -16], [1027, -16], [1027, -9], [1036, -9], [1036, -11], [1037, -11], [1038, -3], [1032, 0], [1024, 8], [1018, 18], [1001, 18]]}, "center": {"203-217": [1058, 319], "230-242": [1014, -3], "243-258, T": [1015, -2]}}, {"id": 5387, "name": "3men1couch", "description": "small german community of the twitch streamer 3men1couch managed to defend this drawing for several hours. quality over quantity <3", "links": {"website": ["https://www.twitch.tv/3men1couch"], "discord": ["RKg4wWG"]}, "path": {"87-106": [[-599, -255], [-579, -255], [-579, -247], [-599, -247]]}, "center": {"87-106": [-589, -251]}}, -{"id": 5388, "name": "Printful", "description": "Printful is an on-demand printing and fulfilment company that helps people turn their ideas into brands and products.", "links": {"website": ["https://www.printful.com/"]}, "path": {"191-258": [[-3, 565], [-31, 565], [-31, 585], [-3, 585]]}, "center": {"191-258": [-17, 575]}}, +{"id": 5388, "name": "Printful", "description": "Printful is an on-demand printing and fulfilment company that helps people turn their ideas into brands and products.", "links": {"website": ["https://www.printful.com/"]}, "path": {"191-258, T": [[-3, 565], [-31, 565], [-31, 585], [-3, 585]]}, "center": {"191-258, T": [-17, 575]}}, {"id": 5389, "name": "Me and You", "description": "Me and you twitch emote, which could not be finished because a bot destroyed it.", "links": {}, "path": {"205": [[1345, 898], [1345, 844], [1400, 845], [1400, 896], [1346, 898]]}, "center": {"205": [1372, 871]}}, -{"id": 5390, "name": "Printful", "description": "Printful is a Latvian company that provides on-demand printing and dropshipping services.\n\nThey offer a wide range of customizable products, such as apparel, accessories, and home goods, allowing businesses to create and sell their own branded merchandise without the need for inventory management or upfront costs.", "links": {"website": ["https://www.printful.com/"], "subreddit": ["printful"]}, "path": {"250-258": [[-31, 566], [-3, 566], [-3, 585], [-31, 585]]}, "center": {"250-258": [-17, 576]}}, -{"id": 5391, "name": "Vilnius Cathedrals Bell Tower", "description": "Vilnius Cathedral is the main Catholic cathedral in Lithuania. It is situated in Vilnius Old Town, just off Cathedral Square. Dedicated to the Christian saints Stanislaus and Ladislaus, the church is the heart of Catholic spiritual life in Lithuania. Made by Lithuanian streamer LTURepublic and his viewers.", "links": {"website": ["https://www.katedra.lt/"]}, "path": {"243-258": [[-126, -26], [-121, -19], [-120, 8], [-124, 11], [-124, 17], [-128, 17], [-128, 11], [-129, 10], [-131, 8], [-132, 6], [-131, -10], [-130, -19]]}, "center": {"243-258": [-126, 4]}}, -{"id": 5392, "name": "Grazer Uhrturm", "description": "The Uhrturm is the landmark of Austrias 2nd biggest city, Graz", "links": {"website": ["https://de.wikipedia.org/wiki/Grazer_Uhrturm"], "subreddit": ["Graz"]}, "path": {"250-258": [[-1006, -33], [-1006, -41], [-1006, -42], [-1005, -33], [-1005, -34], [-998, -34], [-998, -33], [-997, -33], [-997, -37], [-998, -38], [-999, -39], [-999, -40], [-1000, -41], [-1000, -42], [-1001, -43], [-1001, -50], [-1000, -50], [-1000, -55], [-1004, -50], [-1005, -49], [-1006, -46], [-1006, -43], [-1008, -43], [-1008, -42], [-1006, -42]]}, "center": {"250-258": [-1002, -37]}}, -{"id": 5393, "name": "Lenich", "description": "Mascot / Original character of the \"The Chalkeaters\" compositing artist Lenich.", "links": {"website": ["https://twitter.com/LenichCat", "https://twitter.com/TheChalkeaters"], "subreddit": ["thechalkeaters"]}, "path": {"208-258": [[-835, 360], [-835, 365], [-842, 365], [-842, 360]]}, "center": {"208-258": [-838, 363]}}, -{"id": 5394, "name": "Belgium Beer Duvel", "description": "The famous Belgium beer, built and maintained on the canvas by r/belgium", "links": {"website": ["https://www.duvel.com/"], "subreddit": ["belgium"]}, "path": {"68-258": [[-359, -190], [-362, -193], [-357, -197], [-350, -195], [-345, -198], [-343, -206], [-340, -208], [-339, -208], [-349, -217], [-355, -212], [-358, -211], [-360, -209], [-361, -206], [-361, -202], [-359, -199], [-362, -196], [-366, -197]]}, "center": {"68-258": [-352, -204]}}, -{"id": 5395, "name": "Blasphemous", "description": "Blasphemous is an indie metroidvania video game developed by the Spanish company The Game Kitchen.", "links": {"website": ["https://thegamekitchen.com/blasphemous/"], "subreddit": ["Blasphemous"]}, "path": {"161-258": [[260, -75], [253, -66], [267, -65], [253, -58], [260, -50], [267, -58]]}, "center": {"161-258": [260, -57]}}, +{"id": 5390, "name": "Printful", "description": "Printful is a Latvian company that provides on-demand printing and dropshipping services.\n\nThey offer a wide range of customizable products, such as apparel, accessories, and home goods, allowing businesses to create and sell their own branded merchandise without the need for inventory management or upfront costs.", "links": {"website": ["https://www.printful.com/"], "subreddit": ["printful"]}, "path": {"250-258, T": [[-31, 566], [-3, 566], [-3, 585], [-31, 585]]}, "center": {"250-258, T": [-17, 576]}}, +{"id": 5391, "name": "Vilnius Cathedrals Bell Tower", "description": "Vilnius Cathedral is the main Catholic cathedral in Lithuania. It is situated in Vilnius Old Town, just off Cathedral Square. Dedicated to the Christian saints Stanislaus and Ladislaus, the church is the heart of Catholic spiritual life in Lithuania. Made by Lithuanian streamer LTURepublic and his viewers.", "links": {"website": ["https://www.katedra.lt/"]}, "path": {"243-258, T": [[-126, -26], [-121, -19], [-120, 8], [-124, 11], [-124, 17], [-128, 17], [-128, 11], [-129, 10], [-131, 8], [-132, 6], [-131, -10], [-130, -19]]}, "center": {"243-258, T": [-126, 4]}}, +{"id": 5392, "name": "Grazer Uhrturm", "description": "The Uhrturm is the landmark of Austrias 2nd biggest city, Graz", "links": {"website": ["https://de.wikipedia.org/wiki/Grazer_Uhrturm"], "subreddit": ["Graz"]}, "path": {"250-258, T": [[-1006, -33], [-1006, -41], [-1006, -42], [-1005, -33], [-1005, -34], [-998, -34], [-998, -33], [-997, -33], [-997, -37], [-998, -38], [-999, -39], [-999, -40], [-1000, -41], [-1000, -42], [-1001, -43], [-1001, -50], [-1000, -50], [-1000, -55], [-1004, -50], [-1005, -49], [-1006, -46], [-1006, -43], [-1008, -43], [-1008, -42], [-1006, -42]]}, "center": {"250-258, T": [-1002, -37]}}, +{"id": 5393, "name": "Lenich", "description": "Mascot / Original character of the \"The Chalkeaters\" compositing artist Lenich.", "links": {"website": ["https://twitter.com/LenichCat", "https://twitter.com/TheChalkeaters"], "subreddit": ["thechalkeaters"]}, "path": {"208-258, T": [[-835, 360], [-835, 365], [-842, 365], [-842, 360]]}, "center": {"208-258, T": [-838, 363]}}, +{"id": 5394, "name": "Belgium Beer Duvel", "description": "The famous Belgium beer, built and maintained on the canvas by r/belgium", "links": {"website": ["https://www.duvel.com/"], "subreddit": ["belgium"]}, "path": {"68-258, T": [[-359, -190], [-362, -193], [-357, -197], [-350, -195], [-345, -198], [-343, -206], [-340, -208], [-339, -208], [-349, -217], [-355, -212], [-358, -211], [-360, -209], [-361, -206], [-361, -202], [-359, -199], [-362, -196], [-366, -197]]}, "center": {"68-258, T": [-352, -204]}}, +{"id": 5395, "name": "Blasphemous", "description": "Blasphemous is an indie metroidvania video game developed by the Spanish company The Game Kitchen.", "links": {"website": ["https://thegamekitchen.com/blasphemous/"], "subreddit": ["Blasphemous"]}, "path": {"161-258, T": [[260, -75], [253, -66], [267, -65], [253, -58], [260, -50], [267, -58]]}, "center": {"161-258, T": [260, -57]}}, {"id": 5396, "name": "Nazaré Waves", "description": "Nazaré is a Portuguese town popular as a surfing destination because of the high breaking waves that form due to the presence of the underwater Nazaré Canyon.", "links": {"website": ["https://en.wikipedia.org/wiki/Nazar%C3%A9,_Portugal#Surfing"]}, "path": {"72-218": [[573, 314], [589, 304], [616, 302], [615, 359], [600, 320]]}, "center": {"72-218": [606, 312]}}, -{"id": 5397, "name": "osu!", "description": "osu! is a free-to-play rhythm game where the player clicks circles to the beat. The game was created by Dean \\\"peppy\\\" Herbert and released on September 16, 2007.\n\nThis is r/osuplace's button on the Windows Vista taskbar.", "links": {"website": ["https://www.osu.place/", "https://osu.ppy.sh/", "https://en.wikipedia.org/wiki/Osu!"], "subreddit": ["osuplace", "placestart"], "discord": ["osuplace"]}, "path": {"185-258": [[-1098, 972], [-1098, 996], [-1006, 996], [-1006, 972]]}, "center": {"185-258": [-1052, 984]}}, +{"id": 5397, "name": "osu!", "description": "osu! is a free-to-play rhythm game where the player clicks circles to the beat. The game was created by Dean \\\"peppy\\\" Herbert and released on September 16, 2007.\n\nThis is r/osuplace's button on the Windows Vista taskbar.", "links": {"website": ["https://www.osu.place/", "https://osu.ppy.sh/", "https://en.wikipedia.org/wiki/Osu!"], "subreddit": ["osuplace", "placestart"], "discord": ["osuplace"]}, "path": {"185-258, T": [[-1098, 972], [-1098, 996], [-1006, 996], [-1006, 972]]}, "center": {"185-258, T": [-1052, 984]}}, {"id": 5398, "name": "Fiat 126p Maluch", "description": "One of the most popular cars to see on Polish roads in '80s and '90s. Despite its tiny size had many practical utilities. Manufactured fully in Poland, thanks to licensing from FIAT. Driven by Tom Hanks.", "links": {"website": ["https://en.wikipedia.org/wiki/Fiat_126"], "subreddit": ["poland"], "discord": ["QDmhDbYmAP"]}, "path": {"204-209": [[1198, 701], [1199, 713], [1203, 718], [1249, 719], [1262, 719], [1264, 703], [1252, 688], [1223, 687], [1212, 695], [1202, 700]]}, "center": {"204-209": [1231, 703]}}, -{"id": 5399, "name": "Ayumu \"Osaka\" Kasuga", "description": "Ayumu Kasuga (commonly known as Osaka to her Tokyoite classmates due to her regional accent) from the manga and anime series \"Azumanga Daioh\".", "links": {"subreddit": ["Osaker"]}, "path": {"250-258": [[-761, -117], [-761, -108], [-759, -106], [-750, -106], [-748, -108], [-748, -116], [-749, -118], [-750, -119], [-751, -120], [-758, -120]]}, "center": {"250-258": [-754, -113]}}, -{"id": 5400, "name": "Perro Wilson", "description": "Homenaje a este can el cual ayudo en la búsqueda de niños indígenas perdidos en la selva después de un accidente aéreo (perro se perdió en la selva no fue encontrado)\n\nTribute to this dog which helped in the search for indigenous children lost in the jungle after a plane crash (dog was lost in the jungle and was not found)", "links": {"subreddit": ["Colombia"]}, "path": {"250-258": [[-1014, 938], [-996, 938], [-1004, 964], [-1015, 938]]}, "center": {"250-258": [-1005, 945]}}, +{"id": 5399, "name": "Ayumu \"Osaka\" Kasuga", "description": "Ayumu Kasuga (commonly known as Osaka to her Tokyoite classmates due to her regional accent) from the manga and anime series \"Azumanga Daioh\".", "links": {"subreddit": ["Osaker"]}, "path": {"250-258, T": [[-761, -117], [-761, -108], [-759, -106], [-750, -106], [-748, -108], [-748, -116], [-749, -118], [-750, -119], [-751, -120], [-758, -120]]}, "center": {"250-258, T": [-754, -113]}}, +{"id": 5400, "name": "Perro Wilson", "description": "Homenaje a este can el cual ayudo en la búsqueda de niños indígenas perdidos en la selva después de un accidente aéreo (perro se perdió en la selva no fue encontrado)\n\nTribute to this dog which helped in the search for indigenous children lost in the jungle after a plane crash (dog was lost in the jungle and was not found)", "links": {"subreddit": ["Colombia"]}, "path": {"250-258, T": [[-1014, 938], [-996, 938], [-1004, 964], [-1015, 938]]}, "center": {"250-258, T": [-1005, 945]}}, {"id": 5401, "name": "Two bunnies from Paquerette Down the Bunburrows", "description": "Bunnies from the game titled \"Paquerette Down the Bunburrows\"", "links": {"website": ["https://twitter.com/BunstackGames"], "subreddit": ["bunburrows"], "discord": ["phGXxPp"]}, "path": {"7-19": [[395, 71], [395, 67], [399, 61], [400, 61], [403, 66], [405, 69], [405, 70], [404, 72], [396, 72]], "61-69": [[357, 59], [357, 54], [360, 53], [360, 50], [362, 50], [367, 56], [367, 60], [358, 60]], "20-42, 49-56": [[385, 72], [385, 65], [389, 65], [390, 59], [401, 59], [402, 65], [407, 70], [407, 72], [403, 72]]}, "center": {"7-19": [399, 68], "61-69": [362, 56], "20-42, 49-56": [395, 66]}}, {"id": 5402, "name": "Knook", "description": "The knook is an imaginary chess piece that can move both like a rook and a knight. It was made by r/AnarchyChess, where it is an inside joke, and it was protected by the Irish people.", "links": {"subreddit": ["AnarchyChess"]}, "path": {"138": [[319, -154], [338, -153], [338, -135], [319, -134]]}, "center": {"138": [329, -144]}}, -{"id": 5403, "name": "Cobaltmine", "description": "A small Pixelart by a few users of the discord-channel \"Cobaltmine\".\nBig shoutout to the \"Nachtwächter\" Plaguedoctor!", "links": {}, "path": {"250-258": [[-1006, -916], [-991, -916], [-991, -929], [-1006, -929]]}, "center": {"250-258": [-998, -922]}}, -{"id": 5404, "name": "Tonguepeta (tongue Nepeta)", "description": "Nepeta Leijon From the web-comic Homestuck underneath a one piece character's tongue", "links": {"website": ["https://www.homestuck.com/", "https://bambosh.dev/unofficial-homestuck-collection/"], "subreddit": ["homestuck"], "discord": ["BJrU9w3Exr"]}, "path": {"138-163": [[-450, -648], [-459, -648], [-459, -640], [-458, -640], [-458, -635], [-450, -635]], "165-170": [[-454, -646], [-457, -646], [-457, -640], [-456, -640], [-456, -639], [-450, -639], [-450, -646]], "192-212": [[-425, -645], [-433, -645], [-433, -640], [-432, -640], [-431, -639], [-431, -637], [-426, -637], [-426, -638], [-425, -638]], "213-258": [[-424, -636], [-424, -646], [-433, -646], [-433, -645], [-434, -644], [-434, -641], [-435, -641], [-435, -638], [-434, -638], [-434, -635], [-424, -635]]}, "center": {"138-163": [-454, -643], "165-170": [-453, -642], "192-212": [-428, -641], "213-258": [-429, -640]}}, -{"id": 5405, "name": "Pilsen (Paraguay)", "description": "Pilsen is a Paraguayan brand of pilsner beer. Created on October 12, 1912, it is the oldest beer brand in Paraguay and one of the largest in the country. The beer is produced by Cervercería Paraguaya S.A., which is owned by the Anheuser-Busch InBev consortium.", "links": {"website": ["https://en.wikipedia.org/wiki/Cerveza_Pilsen_(Paraguay)"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"250-258": [[127, 820], [127, 853], [141, 853], [140, 820], [140, 818], [127, 818]]}, "center": {"250-258": [134, 836]}}, -{"id": 5406, "name": "Alhaitham", "description": "Alhaitham is a powerful 5* character in Genshin Impact wielding the Dendro Element and fights using dual swords, in the story he is an intelligent and calculating man working as the Scribe for the Akademiya in Sumeru, the land from which he hails\n\nYou can watch his character demo in the link", "links": {"website": ["https://youtu.be/6XbHqN8Cs60"]}, "path": {"250-258": [[-94, 353], [-93, 351], [-80, 354], [-77, 339], [-82, 330], [-87, 330], [-91, 337], [-88, 340]]}, "center": {"250-258": [-84, 346]}}, -{"id": 5407, "name": "Who Made This Chicken", "description": "This is a chicken leg created by YouTube creator and streamer Jaden Williams in reference to his most popular YouTube short in which a stereotypical gangster complains about dry chicken, and threatens to call \"Miguel\" when he finds out who made it.", "links": {"website": ["https://www.youtube.com/shorts/eUZI-_h5uvw"]}, "path": {"250-258": [[459, -394], [459, -392], [458, -391], [456, -391], [455, -392], [455, -393], [454, -393], [454, -394], [453, -395], [452, -395], [451, -396], [450, -396], [449, -396], [448, -397], [447, -397], [446, -398], [445, -398], [444, -397], [444, -396], [444, -395], [444, -394], [443, -393], [441, -393], [440, -394], [440, -395], [439, -396], [438, -397], [437, -397], [436, -398], [434, -398], [433, -399], [432, -399], [431, -400], [430, -400], [429, -401], [428, -402], [427, -403], [427, -406], [431, -410], [434, -410], [438, -406], [438, -405], [439, -404], [442, -404], [443, -405], [444, -406], [445, -407], [446, -408], [449, -408], [453, -404], [453, -403], [454, -402], [454, -399], [455, -398], [455, -397], [457, -395]]}, "center": {"250-258": [447, -403]}}, -{"id": 5408, "name": "UTOPIA Logo", "description": "\"UTOPIA\" is the fourth studio album by American rapper and singer Travis Scott, released through Cactus Jack and Epic Records on July 28th, 2023.", "links": {"website": ["https://www.travisscott.com"], "subreddit": ["travisscott"], "discord": ["cactusjack", "travisscott", "tfpxx"]}, "path": {"250-258": [[416, 890], [416, 903], [442, 903], [442, 890]]}, "center": {"250-258": [429, 897]}}, -{"id": 5409, "name": "Unfinished Minecraft Herobrine", "description": "Herobrine is a classic fan-made entity for the popular game Minecraft. Originally known as Notch's dead brother and is currently a trans rights icon, he's been persistently scaring players and being removed since 2010.", "links": {"website": ["https://minecraft.fandom.com/wiki/Herobrine"], "subreddit": ["minecraft"]}, "path": {"250-258": [[-708, -994], [-708, -989], [-708, -988], [-709, -988], [-709, -984], [-708, -983], [-704, -983], [-703, -984], [-702, -985], [-702, -988], [-702, -994]]}, "center": {"250-258": [-705, -986]}}, +{"id": 5403, "name": "Cobaltmine", "description": "A small Pixelart by a few users of the discord-channel \"Cobaltmine\".\nBig shoutout to the \"Nachtwächter\" Plaguedoctor!", "links": {}, "path": {"250-258, T": [[-1006, -916], [-991, -916], [-991, -929], [-1006, -929]]}, "center": {"250-258, T": [-998, -922]}}, +{"id": 5404, "name": "Tonguepeta (tongue Nepeta)", "description": "Nepeta Leijon From the web-comic Homestuck underneath a one piece character's tongue", "links": {"website": ["https://www.homestuck.com/", "https://bambosh.dev/unofficial-homestuck-collection/"], "subreddit": ["homestuck"], "discord": ["BJrU9w3Exr"]}, "path": {"138-163": [[-450, -648], [-459, -648], [-459, -640], [-458, -640], [-458, -635], [-450, -635]], "165-170": [[-454, -646], [-457, -646], [-457, -640], [-456, -640], [-456, -639], [-450, -639], [-450, -646]], "192-212": [[-425, -645], [-433, -645], [-433, -640], [-432, -640], [-431, -639], [-431, -637], [-426, -637], [-426, -638], [-425, -638]], "213-258, T": [[-424, -636], [-424, -646], [-433, -646], [-433, -645], [-434, -644], [-434, -641], [-435, -641], [-435, -638], [-434, -638], [-434, -635], [-424, -635]]}, "center": {"138-163": [-454, -643], "165-170": [-453, -642], "192-212": [-428, -641], "213-258, T": [-429, -640]}}, +{"id": 5405, "name": "Pilsen (Paraguay)", "description": "Pilsen is a Paraguayan brand of pilsner beer. Created on October 12, 1912, it is the oldest beer brand in Paraguay and one of the largest in the country. The beer is produced by Cervercería Paraguaya S.A., which is owned by the Anheuser-Busch InBev consortium.", "links": {"website": ["https://en.wikipedia.org/wiki/Cerveza_Pilsen_(Paraguay)"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"250-258, T": [[127, 820], [127, 853], [141, 853], [140, 820], [140, 818], [127, 818]]}, "center": {"250-258, T": [134, 836]}}, +{"id": 5406, "name": "Alhaitham", "description": "Alhaitham is a powerful 5* character in Genshin Impact wielding the Dendro Element and fights using dual swords, in the story he is an intelligent and calculating man working as the Scribe for the Akademiya in Sumeru, the land from which he hails\n\nYou can watch his character demo in the link", "links": {"website": ["https://youtu.be/6XbHqN8Cs60"]}, "path": {"250-258, T": [[-94, 353], [-93, 351], [-80, 354], [-77, 339], [-82, 330], [-87, 330], [-91, 337], [-88, 340]]}, "center": {"250-258, T": [-84, 346]}}, +{"id": 5407, "name": "Who Made This Chicken", "description": "This is a chicken leg created by YouTube creator and streamer Jaden Williams in reference to his most popular YouTube short in which a stereotypical gangster complains about dry chicken, and threatens to call \"Miguel\" when he finds out who made it.", "links": {"website": ["https://www.youtube.com/shorts/eUZI-_h5uvw"]}, "path": {"250-258, T": [[459, -394], [459, -392], [458, -391], [456, -391], [455, -392], [455, -393], [454, -393], [454, -394], [453, -395], [452, -395], [451, -396], [450, -396], [449, -396], [448, -397], [447, -397], [446, -398], [445, -398], [444, -397], [444, -396], [444, -395], [444, -394], [443, -393], [441, -393], [440, -394], [440, -395], [439, -396], [438, -397], [437, -397], [436, -398], [434, -398], [433, -399], [432, -399], [431, -400], [430, -400], [429, -401], [428, -402], [427, -403], [427, -406], [431, -410], [434, -410], [438, -406], [438, -405], [439, -404], [442, -404], [443, -405], [444, -406], [445, -407], [446, -408], [449, -408], [453, -404], [453, -403], [454, -402], [454, -399], [455, -398], [455, -397], [457, -395]]}, "center": {"250-258, T": [447, -403]}}, +{"id": 5408, "name": "UTOPIA Logo", "description": "\"UTOPIA\" is the fourth studio album by American rapper and singer Travis Scott, released through Cactus Jack and Epic Records on July 28th, 2023.", "links": {"website": ["https://www.travisscott.com"], "subreddit": ["travisscott"], "discord": ["cactusjack", "travisscott", "tfpxx"]}, "path": {"250-258, T": [[416, 890], [416, 903], [442, 903], [442, 890]]}, "center": {"250-258, T": [429, 897]}}, +{"id": 5409, "name": "Unfinished Minecraft Herobrine", "description": "Herobrine is a classic fan-made entity for the popular game Minecraft. Originally known as Notch's dead brother and is currently a trans rights icon, he's been persistently scaring players and being removed since 2010.", "links": {"website": ["https://minecraft.fandom.com/wiki/Herobrine"], "subreddit": ["minecraft"]}, "path": {"250-258, T": [[-708, -994], [-708, -989], [-708, -988], [-709, -988], [-709, -984], [-708, -983], [-704, -983], [-703, -984], [-702, -985], [-702, -988], [-702, -994]]}, "center": {"250-258, T": [-705, -986]}}, {"id": 5410, "name": "Sweden", "description": "The country of Sweden as it appears on a map, with the flag of Sweden as the background.\n\nDespite working together on a different part on r/place, the Nordic countries used the r/PlaceEU map to fight over disputed geographical territory. Denmark tried to take Scania in southern Sweden, Norway tried to take Jämtland in Sweden, Sweden tried to take Bornholm from Denmark, and Finland just wanted to occupy Sweden. This fighting ended suddenly when Sweden's original flag was attacked, leading the three surrounding countries to carve up Sweden, removing it from the map.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden", "https://en.wikipedia.org/wiki/Flag_of_Sweden"], "subreddit": ["sweden", "PlaceEU"]}, "path": {"158-249": [[-239, 644], [-240, 649], [-242, 649], [-247, 654], [-247, 659], [-256, 681], [-255, 682], [-255, 699], [-257, 704], [-257, 706], [-252, 716], [-252, 722], [-251, 723], [-248, 723], [-247, 718], [-242, 718], [-240, 716], [-240, 713], [-241, 713], [-241, 704], [-235, 697], [-239, 693], [-241, 693], [-242, 690], [-242, 687], [-241, 682], [-234, 674], [-234, 667], [-230, 658], [-230, 656], [-234, 649], [-236, 649]]}, "center": {"158-249": [-243, 671]}}, -{"id": 5411, "name": "Pat & Mat", "description": "Pat & Mat is a Czechoslovak slapstick stop-motion animated series created by Lubomír Beneš and Vladimír Jiránek. It is beloved among the Dutch public as well, where it is known as \"Buurman en Buurman\"", "links": {"website": ["https://en.wikipedia.org/wiki/Pat_%26_Mat"], "subreddit": ["PlaceNL"], "discord": ["PlaceNL"]}, "path": {"196-258": [[-764, -461], [-760, -461], [-760, -464], [-759, -464], [-760, -473], [-760, -475], [-761, -475], [-761, -476], [-762, -476], [-764, -479], [-766, -479], [-768, -476], [-769, -475], [-770, -474], [-770, -472], [-771, -472], [-771, -471], [-770, -470], [-771, -464], [-770, -464], [-770, -461]]}, "center": {"196-258": [-765, -468]}}, -{"id": 5412, "name": "Breton lighthouse", "description": "This lighthouse represents Brittany, westernmost region of France with a strong identify and culture, as this region has a great number of iconic lighthouses scattered on its shoreline. Right of the lighthouse lies a small version of the \"Gwenn Ha Due\", the flag of Brittany", "links": {"subreddit": ["Bretagne"]}, "path": {"250-258": [[1001, -17], [1027, -16], [1027, -10], [1035, -9], [1036, -9], [1035, -1], [1024, 6], [1020, 12], [1017, 18], [1001, 18], [1001, 10]]}, "center": {"250-258": [1014, -3]}}, +{"id": 5411, "name": "Pat & Mat", "description": "Pat & Mat is a Czechoslovak slapstick stop-motion animated series created by Lubomír Beneš and Vladimír Jiránek. It is beloved among the Dutch public as well, where it is known as \"Buurman en Buurman\"", "links": {"website": ["https://en.wikipedia.org/wiki/Pat_%26_Mat"], "subreddit": ["PlaceNL"], "discord": ["PlaceNL"]}, "path": {"196-258, T": [[-764, -461], [-760, -461], [-760, -464], [-759, -464], [-760, -473], [-760, -475], [-761, -475], [-761, -476], [-762, -476], [-764, -479], [-766, -479], [-768, -476], [-769, -475], [-770, -474], [-770, -472], [-771, -472], [-771, -471], [-770, -470], [-771, -464], [-770, -464], [-770, -461]]}, "center": {"196-258, T": [-765, -468]}}, +{"id": 5412, "name": "Breton lighthouse", "description": "This lighthouse represents Brittany, westernmost region of France with a strong identify and culture, as this region has a great number of iconic lighthouses scattered on its shoreline. Right of the lighthouse lies a small version of the \"Gwenn Ha Due\", the flag of Brittany", "links": {"subreddit": ["Bretagne"]}, "path": {"250-258, T": [[1001, -17], [1027, -16], [1027, -10], [1035, -9], [1036, -9], [1035, -1], [1024, 6], [1020, 12], [1017, 18], [1001, 18], [1001, 10]]}, "center": {"250-258, T": [1014, -3]}}, {"id": 5413, "name": "Classified Information", "description": "\"Created by a group of friends from the Discord group Classified Information, kinsoku jikou desu~!\n\nInspired by Mikuru Asahina.\"", "links": {}, "path": {"236": [[-1114, 457], [-1114, 466], [-1099, 466], [-1099, 457]]}, "center": {"236": [-1106, 462]}}, {"id": 5414, "name": "Mini Turkish Flag (with Purple Among Us)", "description": "Turkish Flag with an Among Us character wearing an ottoman fez next to Doctor Simi", "links": {}, "path": {"253": [[-1458, 913], [-1447, 913], [-1447, 923], [-1458, 923]]}, "center": {"253": [-1452, 918]}}, -{"id": 5415, "name": "Wizard", "description": "An 8bit wizard holding a magic staff, standing above the r/PlaceNL text. It was originally made on top of the flag of the Netherlands by a small team of participants but was later relocated after the flag expansion.", "links": {}, "path": {"250-258": [[-21, -515], [-21, -499], [-11, -499], [-11, -515]]}, "center": {"250-258": [-16, -507]}}, -{"id": 5416, "name": "Ado", "description": "Ado is an utaite (Japanese cover artist who posts to Nico Nico Douga) who began her activities on January 10, 2017 at the age of 14. In late 2020, she exploded on the music scene with the release of \"USSEEWA\" at just 17 years old. Since then, Ado has been garnering lots of attention when releasing new covers or original music.", "links": {"website": ["https://www.youtube.com/@Ado1024"], "subreddit": ["Ado"]}, "path": {"222-258": [[-307, 901], [-253, 901], [-253, 929], [-307, 929]]}, "center": {"222-258": [-280, 915]}}, -{"id": 5417, "name": "Yellow van of JacexDowózWideo", "description": "Yellow van and delivery drivers, mascots of JacexDowózWideo - polish variety twitch channel and it's community.", "links": {"website": ["https://www.twitch.tv/jacexdowozwideo"], "discord": ["jacex"]}, "path": {"250-258": [[600, -128], [600, -121], [631, -120], [631, -131], [630, -132], [616, -132], [616, -128]]}, "center": {"250-258": [622, -126]}}, -{"id": 5418, "name": "MURPH", "description": "A 10-year long redditor who wanted to get something on the final canvas and chose to put his nickname in with the help of two friends.", "links": {}, "path": {"250-258": [[-392, -1000], [-392, -995], [-369, -995], [-369, -1000], [-391, -1000]]}, "center": {"250-258": [-380, -997]}}, -{"id": 5419, "name": "Sylvain Lemarié", "description": "Sylvain Lemarié was a French voice actor and director who dubbed a wide variety of characters in cinema, TV shows, and video games. This art depicts the helmet of Saint XIV from the game Destiny 2, one of Lemarié's many roles. Lemarié died on April 19, 2023 (age 70).\n\nLemarié began his career with small roles, including various characters in the Batman animated series, or a small part in Aladdin. These talents enabled him to dub larger series such as Transformers in 2000, and then to take on a series of roles, including that of the Grim Reaper in The Grim Adventures of Billy and Mandy, Les Aventuriers de l'au-delà, Avatar: Le Dernier Maître de l'Air, and Java in Martin Mystère. He also continued to dub for larger productions such as Star Wars and Star Trek. He dubbed for a number of major productions, including Sons of Anarchy, King Aelle (Ivan Kaye) in the Viskings series, Hol Horse in the JoJo's Bizarre Adventure OVAs, Sig Curtis in Fullmetal Alchemist: Brotherhood, Jinbei in One Piece, Ron Perlman in Pacific Rim, Buck (Randal Reeder) in Deadpool, and the French voice of Ron Perlman.\n\nThis art is a collaboration between French and Destiny communities. Rest in peace Lemarié.", "links": {"website": ["https://fr.wikipedia.org/wiki/Sylvain_Lemari%C3%A9", "https://www.destinypedia.com/Saint-14"], "subreddit": ["placeFR", "DestinyTheGame", "destiny2"], "discord": ["placeFR", "DestinyReddit", "d2"]}, "path": {"214-258": [[893, -321], [893, -309], [908, -307], [922, -309], [924, -311], [924, -321], [919, -321], [917, -319], [914, -319], [915, -324], [912, -329], [915, -332], [915, -335], [914, -335], [914, -342], [916, -338], [920, -338], [925, -340], [923, -347], [922, -347], [922, -350], [920, -350], [914, -354], [913, -354], [912, -355], [904, -355], [903, -354], [901, -353], [899, -354], [898, -353], [898, -350], [903, -346], [908, -345], [908, -344], [907, -343], [906, -343], [905, -344], [902, -344], [902, -343], [900, -343], [900, -342], [897, -338], [895, -336], [895, -330], [896, -330], [896, -324], [899, -323], [900, -324], [902, -325], [904, -326], [906, -327], [909, -328], [910, -325], [903, -324], [902, -323], [902, -320], [903, -319], [900, -319], [893, -321], [893, -320]]}, "center": {"214-258": [906, -335]}}, +{"id": 5415, "name": "Wizard", "description": "An 8bit wizard holding a magic staff, standing above the r/PlaceNL text. It was originally made on top of the flag of the Netherlands by a small team of participants but was later relocated after the flag expansion.", "links": {}, "path": {"250-258, T": [[-21, -515], [-21, -499], [-11, -499], [-11, -515]]}, "center": {"250-258, T": [-16, -507]}}, +{"id": 5416, "name": "Ado", "description": "Ado is an utaite (Japanese cover artist who posts to Nico Nico Douga) who began her activities on January 10, 2017 at the age of 14. In late 2020, she exploded on the music scene with the release of \"USSEEWA\" at just 17 years old. Since then, Ado has been garnering lots of attention when releasing new covers or original music.", "links": {"website": ["https://www.youtube.com/@Ado1024"], "subreddit": ["Ado"]}, "path": {"222-258, T": [[-307, 901], [-253, 901], [-253, 929], [-307, 929]]}, "center": {"222-258, T": [-280, 915]}}, +{"id": 5417, "name": "Yellow van of JacexDowózWideo", "description": "Yellow van and delivery drivers, mascots of JacexDowózWideo - polish variety twitch channel and it's community.", "links": {"website": ["https://www.twitch.tv/jacexdowozwideo"], "discord": ["jacex"]}, "path": {"250-258, T": [[600, -128], [600, -121], [631, -120], [631, -131], [630, -132], [616, -132], [616, -128]]}, "center": {"250-258, T": [622, -126]}}, +{"id": 5418, "name": "MURPH", "description": "A 10-year long redditor who wanted to get something on the final canvas and chose to put his nickname in with the help of two friends.", "links": {}, "path": {"250-258, T": [[-392, -1000], [-392, -995], [-369, -995], [-369, -1000], [-391, -1000]]}, "center": {"250-258, T": [-380, -997]}}, +{"id": 5419, "name": "Sylvain Lemarié", "description": "Sylvain Lemarié was a French voice actor and director who dubbed a wide variety of characters in cinema, TV shows, and video games. This art depicts the helmet of Saint XIV from the game Destiny 2, one of Lemarié's many roles. Lemarié died on April 19, 2023 (age 70).\n\nLemarié began his career with small roles, including various characters in the Batman animated series, or a small part in Aladdin. These talents enabled him to dub larger series such as Transformers in 2000, and then to take on a series of roles, including that of the Grim Reaper in The Grim Adventures of Billy and Mandy, Les Aventuriers de l'au-delà, Avatar: Le Dernier Maître de l'Air, and Java in Martin Mystère. He also continued to dub for larger productions such as Star Wars and Star Trek. He dubbed for a number of major productions, including Sons of Anarchy, King Aelle (Ivan Kaye) in the Viskings series, Hol Horse in the JoJo's Bizarre Adventure OVAs, Sig Curtis in Fullmetal Alchemist: Brotherhood, Jinbei in One Piece, Ron Perlman in Pacific Rim, Buck (Randal Reeder) in Deadpool, and the French voice of Ron Perlman.\n\nThis art is a collaboration between French and Destiny communities. Rest in peace Lemarié.", "links": {"website": ["https://fr.wikipedia.org/wiki/Sylvain_Lemari%C3%A9", "https://www.destinypedia.com/Saint-14"], "subreddit": ["placeFR", "DestinyTheGame", "destiny2"], "discord": ["placeFR", "DestinyReddit", "d2"]}, "path": {"214-258, T": [[893, -321], [893, -309], [908, -307], [922, -309], [924, -311], [924, -321], [919, -321], [917, -319], [914, -319], [915, -324], [912, -329], [915, -332], [915, -335], [914, -335], [914, -342], [916, -338], [920, -338], [925, -340], [923, -347], [922, -347], [922, -350], [920, -350], [914, -354], [913, -354], [912, -355], [904, -355], [903, -354], [901, -353], [899, -354], [898, -353], [898, -350], [903, -346], [908, -345], [908, -344], [907, -343], [906, -343], [905, -344], [902, -344], [902, -343], [900, -343], [900, -342], [897, -338], [895, -336], [895, -330], [896, -330], [896, -324], [899, -323], [900, -324], [902, -325], [904, -326], [906, -327], [909, -328], [910, -325], [903, -324], [902, -323], [902, -320], [903, -319], [900, -319], [893, -321], [893, -320]]}, "center": {"214-258, T": [906, -335]}}, {"id": 5420, "name": "Ghost bc Grucifix", "description": "This is the symbol for the occult Swedish band Ghost", "links": {"website": ["https://en.m.wikipedia.org/wiki/Ghost_(Swedish_band)"], "subreddit": ["Ghostbc"]}, "path": {"78": [[65, -210], [66, -211], [67, -211], [68, -211], [69, -210], [68, -209], [68, -208], [68, -206], [68, -205], [68, -204], [69, -203], [70, -202], [71, -201], [71, -200], [72, -200], [72, -201], [73, -201], [74, -200], [74, -199], [74, -198], [73, -197], [72, -198], [71, -197], [70, -196], [69, -195], [68, -194], [69, -193], [68, -192], [67, -192], [66, -192], [65, -193], [66, -194], [65, -195], [64, -196], [63, -197], [62, -198], [61, -197], [60, -198], [60, -199], [60, -200], [61, -200], [62, -200], [63, -201], [64, -202], [65, -203], [66, -204], [66, -207], [66, -209]]}, "center": {"78": [67, -199]}}, -{"id": 5421, "name": "Ice skating", "description": "When it freezes, the Dutch get their ice skates out. This artwork represents the Dutch ice skaters (from professionals to young learners with the chair). A popular ice skating competition is the \"elfstedentocht\", where ice skating happens through eleven towns in the Netherlands.", "links": {"subreddit": ["PlaceNL"], "discord": ["z8jmzuhN"]}, "path": {"250-258": [[-603, -550], [-603, -532], [-504, -532], [-504, -550]]}, "center": {"250-258": [-553, -541]}}, -{"id": 5422, "name": "Paraguayan soccer team shirt", "description": "", "links": {"subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"170-258": [[111, 821], [130, 821], [130, 817], [129, 806], [131, 807], [133, 807], [138, 802], [138, 800], [136, 799], [133, 796], [131, 796], [130, 795], [129, 795], [123, 793], [122, 794], [119, 794], [118, 793], [115, 793], [113, 795], [110, 795], [109, 796], [105, 799], [103, 799], [103, 801], [104, 802], [105, 804], [107, 806], [108, 807], [112, 807], [112, 817], [111, 817]]}, "center": {"170-258": [120, 803]}}, -{"id": 5423, "name": "86", "description": "is a Japanese science fiction light novel series written by Asato Asato. with season one of the anime series finishing in March 2022.\n\nThis artwork contains the main character Vladilena Milizé holding the flag of the Republic of San Magnolia and Fido, a giant scavenger robot. Next to Fido is a Red poppy flower that represent the remembrance of fallen soldiers.", "links": {"website": ["https://en.wikipedia.org/wiki/86_(novel_series)"], "subreddit": ["EightySix"]}, "path": {"250-258": [[-1352, 935], [-1360, 931], [-1326, 932], [-1327, 949], [-1362, 949], [-1361, 931]]}, "center": {"250-258": [-1344, 940]}}, -{"id": 5424, "name": "Dikkertje Dap", "description": "'Dikkertje Dap' is a popular childrens rhyme created by Annie M.G. Schmidt. It is about a boy (called Dikkertje Dap) climbing a ladder to tell a giraffe stories.", "links": {"website": ["https://youtu.be/-YlsgB9Cj-o"], "subreddit": ["PlaceNL"], "discord": ["z8jmzuhN"]}, "path": {"250-258": [[-499, -541], [-492, -535], [-493, -534], [-499, -534], [-506, -522], [-498, -500], [-502, -499], [-502, -498], [-503, -498], [-503, -495], [-505, -495], [-506, -496], [-508, -497], [-509, -496], [-510, -495], [-511, -494], [-511, -499], [-512, -499], [-512, -500], [-513, -500], [-513, -501], [-520, -501], [-520, -500], [-521, -499], [-522, -498], [-522, -495], [-523, -495], [-526, -496], [-527, -497], [-528, -498], [-529, -499], [-531, -500], [-531, -501], [-536, -501], [-538, -503], [-530, -517], [-520, -524], [-516, -531], [-508, -537]]}, "center": {"250-258": [-515, -513]}}, -{"id": 5425, "name": "Smiley Face", "description": "A smiley face created by two friends and two kind strangers. It is a recreation of a smiley face from 2017's edition of r/place made by one of the group members and another friend.", "links": {}, "path": {"250-258": [[-1474, 867], [-1474, 864], [-1473, 863], [-1472, 862], [-1471, 861], [-1469, 861], [-1468, 862], [-1467, 863], [-1466, 864], [-1466, 867], [-1467, 868], [-1468, 869], [-1469, 870], [-1471, 870], [-1472, 869], [-1473, 868]]}, "center": {"250-258": [-1470, 866]}}, -{"id": 5426, "name": "On est Nantes putain", "description": "Nantes is a city in western France. Nantes have ~300k inhabitants\n\n\"On est Nantes Putain\" is the motto of the FC Nantes, a soccer club.", "links": {"website": ["https://fr.m.wikipedia.org/wiki/Football_Club_de_Nantes", "https://en.m.wikipedia.org/wiki/Nantes"]}, "path": {"212-258": [[-1500, 574], [-1472, 574], [-1472, 594], [-1500, 594]]}, "center": {"212-258": [-1486, 584]}}, +{"id": 5421, "name": "Ice skating", "description": "When it freezes, the Dutch get their ice skates out. This artwork represents the Dutch ice skaters (from professionals to young learners with the chair). A popular ice skating competition is the \"elfstedentocht\", where ice skating happens through eleven towns in the Netherlands.", "links": {"subreddit": ["PlaceNL"], "discord": ["z8jmzuhN"]}, "path": {"250-258, T": [[-603, -550], [-603, -532], [-504, -532], [-504, -550]]}, "center": {"250-258, T": [-553, -541]}}, +{"id": 5422, "name": "Paraguayan soccer team shirt", "description": "", "links": {"subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"170-258, T": [[111, 821], [130, 821], [130, 817], [129, 806], [131, 807], [133, 807], [138, 802], [138, 800], [136, 799], [133, 796], [131, 796], [130, 795], [129, 795], [123, 793], [122, 794], [119, 794], [118, 793], [115, 793], [113, 795], [110, 795], [109, 796], [105, 799], [103, 799], [103, 801], [104, 802], [105, 804], [107, 806], [108, 807], [112, 807], [112, 817], [111, 817]]}, "center": {"170-258, T": [120, 803]}}, +{"id": 5423, "name": "86", "description": "is a Japanese science fiction light novel series written by Asato Asato. with season one of the anime series finishing in March 2022.\n\nThis artwork contains the main character Vladilena Milizé holding the flag of the Republic of San Magnolia and Fido, a giant scavenger robot. Next to Fido is a Red poppy flower that represent the remembrance of fallen soldiers.", "links": {"website": ["https://en.wikipedia.org/wiki/86_(novel_series)"], "subreddit": ["EightySix"]}, "path": {"250-258, T": [[-1352, 935], [-1360, 931], [-1326, 932], [-1327, 949], [-1362, 949], [-1361, 931]]}, "center": {"250-258, T": [-1344, 940]}}, +{"id": 5424, "name": "Dikkertje Dap", "description": "'Dikkertje Dap' is a popular childrens rhyme created by Annie M.G. Schmidt. It is about a boy (called Dikkertje Dap) climbing a ladder to tell a giraffe stories.", "links": {"website": ["https://youtu.be/-YlsgB9Cj-o"], "subreddit": ["PlaceNL"], "discord": ["z8jmzuhN"]}, "path": {"250-258, T": [[-499, -541], [-492, -535], [-493, -534], [-499, -534], [-506, -522], [-498, -500], [-502, -499], [-502, -498], [-503, -498], [-503, -495], [-505, -495], [-506, -496], [-508, -497], [-509, -496], [-510, -495], [-511, -494], [-511, -499], [-512, -499], [-512, -500], [-513, -500], [-513, -501], [-520, -501], [-520, -500], [-521, -499], [-522, -498], [-522, -495], [-523, -495], [-526, -496], [-527, -497], [-528, -498], [-529, -499], [-531, -500], [-531, -501], [-536, -501], [-538, -503], [-530, -517], [-520, -524], [-516, -531], [-508, -537]]}, "center": {"250-258, T": [-515, -513]}}, +{"id": 5425, "name": "Smiley Face", "description": "A smiley face created by two friends and two kind strangers. It is a recreation of a smiley face from 2017's edition of r/place made by one of the group members and another friend.", "links": {}, "path": {"250-258, T": [[-1474, 867], [-1474, 864], [-1473, 863], [-1472, 862], [-1471, 861], [-1469, 861], [-1468, 862], [-1467, 863], [-1466, 864], [-1466, 867], [-1467, 868], [-1468, 869], [-1469, 870], [-1471, 870], [-1472, 869], [-1473, 868]]}, "center": {"250-258, T": [-1470, 866]}}, +{"id": 5426, "name": "On est Nantes putain", "description": "Nantes is a city in western France. Nantes have ~300k inhabitants\n\n\"On est Nantes Putain\" is the motto of the FC Nantes, a soccer club.", "links": {"website": ["https://fr.m.wikipedia.org/wiki/Football_Club_de_Nantes", "https://en.m.wikipedia.org/wiki/Nantes"]}, "path": {"212-258, T": [[-1500, 574], [-1472, 574], [-1472, 594], [-1500, 594]]}, "center": {"212-258, T": [-1486, 584]}}, {"id": 5427, "name": "Zera", "description": "A tiny artwork representing the head of Zera, a handsome demon man and major character from Temmie Chang's RPG Dweller's Empty Path.", "links": {"website": ["https://tuyoki.itch.io/dwellers-empty-path"], "subreddit": ["DwellersEmptyPath"], "discord": ["GB8KJYk"]}, "path": {"217-229": [[1174, 632], [1175, 632], [1175, 631], [1177, 631], [1177, 632], [1178, 632], [1178, 634], [1179, 634], [1178, 634], [1178, 635], [1175, 636], [1174, 636], [1174, 634], [1173, 634], [1174, 634]]}, "center": {"217-229": [1176, 634]}}, -{"id": 5428, "name": "Prolapse Rose", "description": "A reference to the Howie Mandel TikTok \"When my friend Neil bent over, this happened. Does somebody know, is this Covid related? And if it is… what do we do about it?\". Whilst Howie maintains that he thought the image contained some squashed cake it was infact a graphic image of a prolapsed anus. \n\nThe TikTok was watched and further made viral by Ethan Klein on the H3 podcast, where is has since become an ongoing and often referenced joke. When Howie was a guest on the podcast he was treated to the wonders of Prolapse Specialist HungerFF.", "links": {"website": ["https://www.youtube.com/live/QpElkT_nkgY?feature=share&t=307"], "subreddit": ["h3h3productions"]}, "path": {"250-258": [[831, 422], [832, 429], [837, 436], [847, 435], [846, 428], [845, 428], [845, 425], [843, 424], [842, 423], [841, 422]]}, "center": {"250-258": [839, 429]}}, +{"id": 5428, "name": "Prolapse Rose", "description": "A reference to the Howie Mandel TikTok \"When my friend Neil bent over, this happened. Does somebody know, is this Covid related? And if it is… what do we do about it?\". Whilst Howie maintains that he thought the image contained some squashed cake it was infact a graphic image of a prolapsed anus. \n\nThe TikTok was watched and further made viral by Ethan Klein on the H3 podcast, where is has since become an ongoing and often referenced joke. When Howie was a guest on the podcast he was treated to the wonders of Prolapse Specialist HungerFF.", "links": {"website": ["https://www.youtube.com/live/QpElkT_nkgY?feature=share&t=307"], "subreddit": ["h3h3productions"]}, "path": {"250-258, T": [[831, 422], [832, 429], [837, 436], [847, 435], [846, 428], [845, 428], [845, 425], [843, 424], [842, 423], [841, 422]]}, "center": {"250-258, T": [839, 429]}}, {"id": 5429, "name": "Ultimate Chicken Horse", "description": "Multiplayer competitive platform video game. Developed and published by Canadian studio Clever Endeavour Games.", "links": {"website": ["https://en.wikipedia.org/wiki/Ultimate_Chicken_Horse"], "subreddit": ["ultimatechickenhorse"], "discord": ["UCH"]}, "path": {"151-163": [[40, -26], [52, -26], [52, -12], [40, -12]]}, "center": {"151-163": [46, -19]}}, {"id": 5430, "name": "Elwood's Organic Dog Meat", "description": "A QR code linking to a website.", "links": {"website": ["https://www.elwooddogmeat.com/"]}, "path": {"155-158": [[501, 698], [537, 698], [537, 734], [501, 734]]}, "center": {"155-158": [519, 716]}}, -{"id": 5431, "name": "Rock of Cashel", "description": "The Rock of Cashel, also known as Cashel of the Kings and St. Patrick's Rock, is a historical site located at Cashel, County Tipperary, Ireland.\n\nThe Rock of Cashel was the traditional seat of the kings of Munster for several hundred years prior to the Norman invasion of Ireland in 1101.", "links": {"website": ["https://en.wikipedia.org/wiki/Rock_of_Cashel"]}, "path": {"114-258": [[-865, 150], [-811, 150], [-811, 122], [-813, 122], [-813, 117], [-817, 116], [-821, 118], [-823, 125], [-826, 126], [-826, 115], [-831, 114], [-833, 129], [-846, 129], [-846, 116], [-850, 114], [-853, 122], [-854, 131], [-860, 131], [-859, 125], [-863, 123], [-865, 129]]}, "center": {"114-258": [-824, 138]}}, -{"id": 5432, "name": "Lighthouses of the Dutch Wadden", "description": "The lighthouses located on the Dutch Wadden islands (Texel, Vlieland, Terschelling, Ameland & Schiermonnikoog)", "links": {"subreddit": ["PlaceNL"], "discord": ["z8jmzuhN"]}, "path": {"250-258": [[-1111, -527], [-1111, -511], [-1111, -510], [-1064, -510], [-1064, -521], [-1063, -522], [-1064, -523], [-1064, -527], [-1065, -527], [-1066, -528], [-1073, -528], [-1074, -529], [-1077, -529], [-1076, -528], [-1111, -528]]}, "center": {"250-258": [-1087, -519]}}, +{"id": 5431, "name": "Rock of Cashel", "description": "The Rock of Cashel, also known as Cashel of the Kings and St. Patrick's Rock, is a historical site located at Cashel, County Tipperary, Ireland.\n\nThe Rock of Cashel was the traditional seat of the kings of Munster for several hundred years prior to the Norman invasion of Ireland in 1101.", "links": {"website": ["https://en.wikipedia.org/wiki/Rock_of_Cashel"]}, "path": {"114-258, T": [[-865, 150], [-811, 150], [-811, 122], [-813, 122], [-813, 117], [-817, 116], [-821, 118], [-823, 125], [-826, 126], [-826, 115], [-831, 114], [-833, 129], [-846, 129], [-846, 116], [-850, 114], [-853, 122], [-854, 131], [-860, 131], [-859, 125], [-863, 123], [-865, 129]]}, "center": {"114-258, T": [-824, 138]}}, +{"id": 5432, "name": "Lighthouses of the Dutch Wadden", "description": "The lighthouses located on the Dutch Wadden islands (Texel, Vlieland, Terschelling, Ameland & Schiermonnikoog)", "links": {"subreddit": ["PlaceNL"], "discord": ["z8jmzuhN"]}, "path": {"250-258, T": [[-1111, -527], [-1111, -511], [-1111, -510], [-1064, -510], [-1064, -521], [-1063, -522], [-1064, -523], [-1064, -527], [-1065, -527], [-1066, -528], [-1073, -528], [-1074, -529], [-1077, -529], [-1076, -528], [-1111, -528]]}, "center": {"250-258, T": [-1087, -519]}}, {"id": 5433, "name": "Mano del desierto", "description": "La Mano del desierto es una escultura ubicada a 75 km al sur de la ciudad de Antofagasta, Chile. Fue construida por el escultor chileno Mario Irarrázabal, a 1100 m s. n. m. (metros sobre el nivel del mar) La escultura, construida a base en hormigón armado, posee una altura de 11 m. Fue inaugurada el 28 de marzo de 1992.\n_____\n The \"Mano del desierto\" (Hand of the Desert) is a sculpture located 75 km south of the city of Antofagasta, Chile. It was built by the Chilean sculptor Mario Irarrázabal, at 1100 m above sea level. The sculpture, built on a reinforced concrete base, is 11 m high. It was inaugurated on March 28, 1992.", "links": {"website": ["https://es.wikipedia.org/wiki/Mano_del_desierto"], "subreddit": ["chile"]}, "path": {"245": [[-1376, -848], [-1372, -870], [-1357, -869], [-1356, -892], [-1344, -891], [-1330, -868], [-1327, -841], [-1377, -841]]}, "center": {"245": [-1346, -857]}}, -{"id": 5434, "name": "Sunny Passion's colors", "description": "Sunny Passion is a group in the Love Live! Franchise. It is made up of Yuna Hijirisawa and Mao Hiiragi. Their image colors are yellow and magenta, respectively.", "links": {"website": ["https://love-live.fandom.com/wiki/Sunny_Passion"]}, "path": {"250-258": [[-656, -238], [-653, -238], [-653, -236], [-656, -236]]}, "center": {"250-258": [-654, -237]}}, -{"id": 5435, "name": "Contribution by u/Triple4s", "description": "u/Triple4s managed to secure quite a large portion of the canvas. For this he used 11 different accounts in 4 different browsers. He is very proud of his work. So proud, in fact, that he has the audacity to make an r/place Atlas entry just to flex on the world.", "links": {}, "path": {"247-258": [[-1500, 0], [-1471, 0], [-1471, 8], [-1500, 8]]}, "center": {"247-258": [-1485, 4]}}, -{"id": 5436, "name": "Edward (Cowboy Bebop)", "description": "An unfinished artwork of Edward, also known as Radical Edward or Ed, from the famous anime Cowboy Bebop. She is a skilled hacker from planet earth who joins the Bebop after helping the gang capture an advanced Artificial Intelligence named MPU.\n\n\"Not coming for Ed, oo-la-la!\"", "links": {"website": ["https://cowboybebop.fandom.com/wiki/Edward"]}, "path": {"250-258": [[184, -508], [191, -508], [191, -500], [184, -500]]}, "center": {"250-258": [188, -504]}}, -{"id": 5437, "name": "Mace to the face!", "description": "The subreddit \"Brigitte Mains\" serves as a dedicated community for Overwatch players who are passionate about mastering the hero Brigitte. It offers a platform for players to share strategies, tips, and experiences, fostering a supportive environment for enthusiasts of this powerful support-tank character. This subreddit community rallied together to place this pixel artwork of her signature shield.", "links": {"website": ["https://overwatch.blizzard.com/en-us/heroes/brigitte/"], "subreddit": ["BrigitteMains", "Overwatch"], "discord": ["xXmB7fF"]}, "path": {"250-258": [[-250, 939], [-238, 939], [-238, 951], [-250, 951]]}, "center": {"250-258": [-244, 945]}}, -{"id": 5438, "name": "Minato Aqua", "description": "Minato Aqua is a female Japanese Virtual YouTuber associated with hololive, debuting as part of its second generation of VTubers alongside Murasaki Shion, Nakiri Ayame, Yuzuki Choco and Oozora Subaru.\n\nAqua is known for her soft voice, and her airhead personality. She is an introvert, and show difficulties interacting with other people.\n\nDespite her seemingly shy and soft nature, she is deceptively skilled at highly technical video games like Sekiro, Dark Souls, Apex Legends (Master Rank), and League of Legends (Diamon Rank).\n\nWhen paired with Hoshimachi Suisei and Tokoyami Towa (the two girls on her right), they are known as StartEnd.\n\nStartEnd was created to participate an Apex Tournament, in which she was the ace of the team, as well as its spearhead, always rushing to combat, which prompt Towa to compare her to a \"mad dog\" she needed to keep on a leash.", "links": {"website": ["https://www.youtube.com/@MinatoAqua"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"208-258": [[1319, -819], [1322, -819], [1323, -818], [1328, -818], [1328, -815], [1330, -814], [1332, -811], [1331, -810], [1333, -805], [1339, -797], [1346, -789], [1346, -787], [1333, -787], [1330, -789], [1330, -793], [1333, -796], [1330, -798], [1327, -792], [1322, -790], [1324, -787], [1314, -787], [1316, -791], [1311, -792], [1308, -798], [1305, -795], [1304, -791], [1306, -788], [1304, -787], [1292, -787], [1299, -797], [1307, -807], [1308, -814], [1314, -818]]}, "center": {"208-258": [1319, -805]}}, -{"id": 5439, "name": "Mickey S.R.L. (A Paraguayan company)", "description": "Walt Disney's multinational conglomerate is an impenetrable copyrighted entertainment fortress, but that wasn't always the case. Mickey S.R.L., a Paraguayan packaged food products company that produces spices, sugar, ground biscuits, etc., uses the cartoon of the iconic mouse to this day as the official logo of its brand.\n(Disney lost against a Paraguayan company that used Mickey Mouse as the main logo lol)", "links": {"website": ["https://youtu.be/9vmbi5lvniI"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"154-258": [[318, 203], [337, 203], [337, 185], [318, 185]]}, "center": {"154-258": [328, 194]}}, -{"id": 5440, "name": "Mykure", "description": "The white-eared opossum (Didelphis albiventris), known as the timbu and Mykure in Paraguay, saruê and sariguê in Bahia, amicurê and mucura in northern Brazil and comadreja overa in Argentina, is an opossum species found in Argentina, Bolivia, Brazil, Paraguay, and Uruguay. It is a terrestrial and, sometimes, arboreal animal, and a habitat generalist, living in a wide range of different habitats.", "links": {"website": ["https://es.wikipedia.org/wiki/Didelphis_albiventris"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"250-258": [[-1107, 62], [-1107, 86], [-1065, 86], [-1065, 62]]}, "center": {"250-258": [-1086, 74]}}, -{"id": 5441, "name": "Inspecteur BS", "description": "Inspecteur BS is the main character of the tv shows Inspecteur BS created by TAV and was also one of the most important characters of TAV. Despite his stupidity, he always succeeds in his investigations with the help of a lot of luck,\n\nCreated in September 2022, it only made a few appearances in TAV videos. It was only in October 2022 that he was entitled to his own tv show which recounts his adventures in search of a criminal. In March 2023, the character is killed, since the actor no longer wishes to be part of TAV. A video was then released in his tribute on the TAV channel.", "links": {"subreddit": ["TAV_"]}, "path": {"248-258": [[-1308, 437], [-1308, 451], [-1294, 451], [-1294, 437]]}, "center": {"248-258": [-1301, 444]}}, -{"id": 5442, "name": "Liberal Democratic Party of Turkey", "description": "The Liberal Democratic Party of Turkey is a minor liberal party in Turkey whose symbol is the dolphin.", "links": {"website": ["https://en.wikipedia.org/wiki/Liberal_Democratic_Party_(Turkey)"]}, "path": {"190-258": [[-227, 808], [-228, 814], [-230, 816], [-229, 821], [-225, 824], [-222, 825], [-216, 822], [-213, 820], [-214, 816], [-217, 813], [-219, 811], [-217, 810], [-217, 808], [-227, 808], [-227, 810], [-228, 810]]}, "center": {"190-258": [-222, 817]}}, +{"id": 5434, "name": "Sunny Passion's colors", "description": "Sunny Passion is a group in the Love Live! Franchise. It is made up of Yuna Hijirisawa and Mao Hiiragi. Their image colors are yellow and magenta, respectively.", "links": {"website": ["https://love-live.fandom.com/wiki/Sunny_Passion"]}, "path": {"250-258, T": [[-656, -238], [-653, -238], [-653, -236], [-656, -236]]}, "center": {"250-258, T": [-654, -237]}}, +{"id": 5435, "name": "Contribution by u/Triple4s", "description": "u/Triple4s managed to secure quite a large portion of the canvas. For this he used 11 different accounts in 4 different browsers. He is very proud of his work. So proud, in fact, that he has the audacity to make an r/place Atlas entry just to flex on the world.", "links": {}, "path": {"247-258, T": [[-1500, 0], [-1471, 0], [-1471, 8], [-1500, 8]]}, "center": {"247-258, T": [-1485, 4]}}, +{"id": 5436, "name": "Edward (Cowboy Bebop)", "description": "An unfinished artwork of Edward, also known as Radical Edward or Ed, from the famous anime Cowboy Bebop. She is a skilled hacker from planet earth who joins the Bebop after helping the gang capture an advanced Artificial Intelligence named MPU.\n\n\"Not coming for Ed, oo-la-la!\"", "links": {"website": ["https://cowboybebop.fandom.com/wiki/Edward"]}, "path": {"250-258, T": [[184, -508], [191, -508], [191, -500], [184, -500]]}, "center": {"250-258, T": [188, -504]}}, +{"id": 5437, "name": "Mace to the face!", "description": "The subreddit \"Brigitte Mains\" serves as a dedicated community for Overwatch players who are passionate about mastering the hero Brigitte. It offers a platform for players to share strategies, tips, and experiences, fostering a supportive environment for enthusiasts of this powerful support-tank character. This subreddit community rallied together to place this pixel artwork of her signature shield.", "links": {"website": ["https://overwatch.blizzard.com/en-us/heroes/brigitte/"], "subreddit": ["BrigitteMains", "Overwatch"], "discord": ["xXmB7fF"]}, "path": {"250-258, T": [[-250, 939], [-238, 939], [-238, 951], [-250, 951]]}, "center": {"250-258, T": [-244, 945]}}, +{"id": 5438, "name": "Minato Aqua", "description": "Minato Aqua is a female Japanese Virtual YouTuber associated with hololive, debuting as part of its second generation of VTubers alongside Murasaki Shion, Nakiri Ayame, Yuzuki Choco and Oozora Subaru.\n\nAqua is known for her soft voice, and her airhead personality. She is an introvert, and show difficulties interacting with other people.\n\nDespite her seemingly shy and soft nature, she is deceptively skilled at highly technical video games like Sekiro, Dark Souls, Apex Legends (Master Rank), and League of Legends (Diamon Rank).\n\nWhen paired with Hoshimachi Suisei and Tokoyami Towa (the two girls on her right), they are known as StartEnd.\n\nStartEnd was created to participate an Apex Tournament, in which she was the ace of the team, as well as its spearhead, always rushing to combat, which prompt Towa to compare her to a \"mad dog\" she needed to keep on a leash.", "links": {"website": ["https://www.youtube.com/@MinatoAqua"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"208-258, T": [[1319, -819], [1322, -819], [1323, -818], [1328, -818], [1328, -815], [1330, -814], [1332, -811], [1331, -810], [1333, -805], [1339, -797], [1346, -789], [1346, -787], [1333, -787], [1330, -789], [1330, -793], [1333, -796], [1330, -798], [1327, -792], [1322, -790], [1324, -787], [1314, -787], [1316, -791], [1311, -792], [1308, -798], [1305, -795], [1304, -791], [1306, -788], [1304, -787], [1292, -787], [1299, -797], [1307, -807], [1308, -814], [1314, -818]]}, "center": {"208-258, T": [1319, -805]}}, +{"id": 5439, "name": "Mickey S.R.L. (A Paraguayan company)", "description": "Walt Disney's multinational conglomerate is an impenetrable copyrighted entertainment fortress, but that wasn't always the case. Mickey S.R.L., a Paraguayan packaged food products company that produces spices, sugar, ground biscuits, etc., uses the cartoon of the iconic mouse to this day as the official logo of its brand.\n(Disney lost against a Paraguayan company that used Mickey Mouse as the main logo lol)", "links": {"website": ["https://youtu.be/9vmbi5lvniI"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"154-258, T": [[318, 203], [337, 203], [337, 185], [318, 185]]}, "center": {"154-258, T": [328, 194]}}, +{"id": 5440, "name": "Mykure", "description": "The white-eared opossum (Didelphis albiventris), known as the timbu and Mykure in Paraguay, saruê and sariguê in Bahia, amicurê and mucura in northern Brazil and comadreja overa in Argentina, is an opossum species found in Argentina, Bolivia, Brazil, Paraguay, and Uruguay. It is a terrestrial and, sometimes, arboreal animal, and a habitat generalist, living in a wide range of different habitats.", "links": {"website": ["https://es.wikipedia.org/wiki/Didelphis_albiventris"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"250-258, T": [[-1107, 62], [-1107, 86], [-1065, 86], [-1065, 62]]}, "center": {"250-258, T": [-1086, 74]}}, +{"id": 5441, "name": "Inspecteur BS", "description": "Inspecteur BS is the main character of the tv shows Inspecteur BS created by TAV and was also one of the most important characters of TAV. Despite his stupidity, he always succeeds in his investigations with the help of a lot of luck,\n\nCreated in September 2022, it only made a few appearances in TAV videos. It was only in October 2022 that he was entitled to his own tv show which recounts his adventures in search of a criminal. In March 2023, the character is killed, since the actor no longer wishes to be part of TAV. A video was then released in his tribute on the TAV channel.", "links": {"subreddit": ["TAV_"]}, "path": {"248-258, T": [[-1308, 437], [-1308, 451], [-1294, 451], [-1294, 437]]}, "center": {"248-258, T": [-1301, 444]}}, +{"id": 5442, "name": "Liberal Democratic Party of Turkey", "description": "The Liberal Democratic Party of Turkey is a minor liberal party in Turkey whose symbol is the dolphin.", "links": {"website": ["https://en.wikipedia.org/wiki/Liberal_Democratic_Party_(Turkey)"]}, "path": {"190-258, T": [[-227, 808], [-228, 814], [-230, 816], [-229, 821], [-225, 824], [-222, 825], [-216, 822], [-213, 820], [-214, 816], [-217, 813], [-219, 811], [-217, 810], [-217, 808], [-227, 808], [-227, 810], [-228, 810]]}, "center": {"190-258, T": [-222, 817]}}, {"id": 5443, "name": "Naranjito", "description": "Naranjito was the mascot of the Soccer World Cup organized by Spain in 1982. The character represented an orange, a typical fruit of the area of Valencia, Murcia, Seville and other Andalusian cities, dressed in the uniform of the Spanish soccer team and with a ball of this sport under the left arm", "links": {"subreddit": ["esPlace"]}, "path": {"92-248": [[496, -71], [509, -71], [509, -54], [502, -47], [491, -48], [483, -58], [493, -69], [497, -70]]}, "center": {"92-248": [498, -58]}}, -{"id": 5444, "name": "D. Afonso Henriques", "description": "D. Afonso I, more commonly known as D. Afonso Henriques, was the first king of Portugal and the main figurehead of the foundation of the country. His conquests from the mours and his efforts to establish a strong Portuguese army have earned him the cognomen \"The Conqueror\".", "links": {"website": ["https://pt.wikipedia.org/wiki/Afonso_Henriques"], "discord": ["TugaPlace"]}, "path": {"250-258": [[586, 294], [590, 294], [590, 292], [591, 292], [591, 291], [593, 291], [593, 288], [594, 288], [594, 281], [595, 281], [595, 280], [595, 281], [596, 281], [597, 281], [597, 280], [597, 279], [596, 279], [596, 278], [595, 278], [595, 261], [594, 261], [594, 260], [592, 260], [592, 261], [591, 261], [591, 278], [591, 276], [590, 276], [590, 274], [589, 274], [589, 273], [588, 273], [588, 271], [589, 271], [589, 270], [590, 270], [590, 265], [589, 265], [589, 264], [588, 264], [588, 263], [585, 263], [585, 264], [584, 264], [584, 265], [583, 265], [583, 269], [580, 269], [580, 270], [577, 270], [577, 271], [576, 271], [576, 272], [575, 272], [575, 283], [576, 283], [576, 284], [577, 284], [577, 286], [580, 286], [580, 285], [582, 285], [582, 286], [584, 286], [584, 287], [585, 287], [585, 288], [586, 288]]}, "center": {"250-258": [582, 278]}}, -{"id": 5445, "name": "PA-san", "description": "A side character from the highly popular Aki Hamaji manga/anime series, Bocchi The Rock. As her name suggests, she works as a sound engineer at STARRY, a Shimokitazawa live house founded and run by Seika Igichi.\n\nPA-san's design was initially completed in a space to the right of ZUN's portrait. However, as r/Wales wanted to use that same space for their own ongoing project, they requested the BTR community to move her to a space above it, to which the latter agreed. The community eventually rebuilt her face, but they were unable to complete her hair design before the color palette switched to greyscale.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"246-258": [[1292, 756], [1297, 756], [1307, 756], [1306, 736], [1295, 726], [1286, 725], [1278, 729], [1278, 738], [1278, 756]]}, "center": {"246-258": [1292, 742]}}, -{"id": 5446, "name": "Pomudachi", "description": "Pomudachis are the fan mascot of Nijisanji EN Vtuber, Pomu Rainpuff. They look like garlic shaped plants, but are meant to represent seeds that will eventually grow into Pomu as part of her world pomufication plan. \nIt is dressed up as popular character Naked Snake/Big Boss from the Metal Gear Franchise to show Pomu's love of the series.", "links": {"website": ["https://www.nijisanji.jp/en", "https://www.youtube.com/@PomuRainpuff"], "subreddit": ["Nijisanji"]}, "path": {"250-258": [[-628, -249], [-632, -255], [-631, -260], [-627, -262], [-624, -263], [-618, -255], [-623, -249], [-625, -249]]}, "center": {"250-258": [-626, -256]}}, -{"id": 5447, "name": "Chaos Emeralds", "description": "The Chaos Emeralds are objects that appear in the Sonic the Hedgehog series. They are seven ancient emeralds and secret stones tied to the Master Emerald that possess unlimited power. Those who hold them can use them to cause miracles and other feats, such as warping time and space, powering machines, and initiating super transformations. Anyone who combines all seven Chaos Emeralds can control unimaginable power. Even when not including their mystical powers, the Chaos Emeralds' monetary value and beauty make them prime targets of treasure hunters who seek to make a mint.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["tails"]}, "path": {"238-258": [[-1111, 372], [-1096, 388], [-1088, 390], [-1085, 377], [-1089, 374], [-1091, 372], [-1100, 370], [-1108, 370]]}, "center": {"238-258": [-1094, 380]}}, -{"id": 5448, "name": "STUJHA", "description": "", "links": {"website": ["https://www.twitch.tv/stintik", "https://www.twitch.tv/mazellovvv"]}, "path": {"250-258": [[550, 548], [571, 548], [571, 588], [558, 588], [557, 575], [552, 575], [552, 561], [549, 561]]}, "center": {"250-258": [561, 558]}}, -{"id": 5449, "name": "NeZaK_", "description": "Name of a well-known Italian streamer \"NeZaK_\".", "links": {"website": ["https://twitch.tv/nezak_"]}, "path": {"250-258": [[1459, 191], [1459, 203], [1499, 203], [1499, 191]]}, "center": {"250-258": [1479, 197]}}, -{"id": 5450, "name": "Common Sense", "description": "A German and English Discord server", "links": {"subreddit": ["CommonSense_DC"], "discord": ["KA3xBr27tU"]}, "path": {"250-258": [[416, -926], [416, -920], [425, -920], [425, -926]]}, "center": {"250-258": [421, -923]}}, -{"id": 5451, "name": "Grateful Dead \"Marching Bear\"", "description": "Mascot for the band the Grateful Dead. Designed by sound engineer and LSD chemist Owsley \"Bear\" Stanley, the mascot is often referred to as a dancing bear.", "links": {"website": ["https://extrachill.com/dancing-grateful-dead-bears-meaning"], "subreddit": ["gratefuldead"]}, "path": {"103-125": [[333, 31], [333, 29], [330, 29], [330, 27], [329, 27], [329, 24], [332, 21], [334, 21], [336, 19], [336, 18], [333, 15], [332, 14], [332, 11], [333, 10], [336, 10], [336, 11], [342, 11], [342, 10], [345, 10], [346, 11], [346, 14], [342, 18], [342, 19], [345, 22], [346, 22], [348, 24], [349, 24], [349, 27], [348, 28], [344, 28], [344, 31]], "126-258": [[332, 13], [333, 10], [335, 10], [336, 11], [342, 11], [343, 10], [345, 10], [346, 14], [343, 17], [343, 19], [345, 20], [351, 25], [351, 32], [348, 31], [346, 32], [344, 34], [343, 36], [342, 35], [338, 36], [337, 36], [337, 34], [334, 32], [330, 32], [329, 33], [329, 24], [334, 20], [336, 19], [332, 14]]}, "center": {"103-125": [339, 25], "126-258": [340, 26]}}, +{"id": 5444, "name": "D. Afonso Henriques", "description": "D. Afonso I, more commonly known as D. Afonso Henriques, was the first king of Portugal and the main figurehead of the foundation of the country. His conquests from the mours and his efforts to establish a strong Portuguese army have earned him the cognomen \"The Conqueror\".", "links": {"website": ["https://pt.wikipedia.org/wiki/Afonso_Henriques"], "discord": ["TugaPlace"]}, "path": {"250-258, T": [[586, 294], [590, 294], [590, 292], [591, 292], [591, 291], [593, 291], [593, 288], [594, 288], [594, 281], [595, 281], [595, 280], [595, 281], [596, 281], [597, 281], [597, 280], [597, 279], [596, 279], [596, 278], [595, 278], [595, 261], [594, 261], [594, 260], [592, 260], [592, 261], [591, 261], [591, 278], [591, 276], [590, 276], [590, 274], [589, 274], [589, 273], [588, 273], [588, 271], [589, 271], [589, 270], [590, 270], [590, 265], [589, 265], [589, 264], [588, 264], [588, 263], [585, 263], [585, 264], [584, 264], [584, 265], [583, 265], [583, 269], [580, 269], [580, 270], [577, 270], [577, 271], [576, 271], [576, 272], [575, 272], [575, 283], [576, 283], [576, 284], [577, 284], [577, 286], [580, 286], [580, 285], [582, 285], [582, 286], [584, 286], [584, 287], [585, 287], [585, 288], [586, 288]]}, "center": {"250-258, T": [582, 278]}}, +{"id": 5445, "name": "PA-san", "description": "A side character from the highly popular Aki Hamaji manga/anime series, Bocchi The Rock. As her name suggests, she works as a sound engineer at STARRY, a Shimokitazawa live house founded and run by Seika Igichi.\n\nPA-san's design was initially completed in a space to the right of ZUN's portrait. However, as r/Wales wanted to use that same space for their own ongoing project, they requested the BTR community to move her to a space above it, to which the latter agreed. The community eventually rebuilt her face, but they were unable to complete her hair design before the color palette switched to greyscale.", "links": {"subreddit": ["BocchiTheRock", "KessokuBand"], "discord": ["bocchi", "kessokuband"]}, "path": {"246-258, T": [[1292, 756], [1297, 756], [1307, 756], [1306, 736], [1295, 726], [1286, 725], [1278, 729], [1278, 738], [1278, 756]]}, "center": {"246-258, T": [1292, 742]}}, +{"id": 5446, "name": "Pomudachi", "description": "Pomudachis are the fan mascot of Nijisanji EN Vtuber, Pomu Rainpuff. They look like garlic shaped plants, but are meant to represent seeds that will eventually grow into Pomu as part of her world pomufication plan. \nIt is dressed up as popular character Naked Snake/Big Boss from the Metal Gear Franchise to show Pomu's love of the series.", "links": {"website": ["https://www.nijisanji.jp/en", "https://www.youtube.com/@PomuRainpuff"], "subreddit": ["Nijisanji"]}, "path": {"250-258, T": [[-628, -249], [-632, -255], [-631, -260], [-627, -262], [-624, -263], [-618, -255], [-623, -249], [-625, -249]]}, "center": {"250-258, T": [-626, -256]}}, +{"id": 5447, "name": "Chaos Emeralds", "description": "The Chaos Emeralds are objects that appear in the Sonic the Hedgehog series. They are seven ancient emeralds and secret stones tied to the Master Emerald that possess unlimited power. Those who hold them can use them to cause miracles and other feats, such as warping time and space, powering machines, and initiating super transformations. Anyone who combines all seven Chaos Emeralds can control unimaginable power. Even when not including their mystical powers, the Chaos Emeralds' monetary value and beauty make them prime targets of treasure hunters who seek to make a mint.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["tails"]}, "path": {"238-258, T": [[-1111, 372], [-1096, 388], [-1088, 390], [-1085, 377], [-1089, 374], [-1091, 372], [-1100, 370], [-1108, 370]]}, "center": {"238-258, T": [-1094, 380]}}, +{"id": 5448, "name": "STUJHA", "description": "", "links": {"website": ["https://www.twitch.tv/stintik", "https://www.twitch.tv/mazellovvv"]}, "path": {"250-258, T": [[550, 548], [571, 548], [571, 588], [558, 588], [557, 575], [552, 575], [552, 561], [549, 561]]}, "center": {"250-258, T": [561, 558]}}, +{"id": 5449, "name": "NeZaK_", "description": "Name of a well-known Italian streamer \"NeZaK_\".", "links": {"website": ["https://twitch.tv/nezak_"]}, "path": {"250-258, T": [[1459, 191], [1459, 203], [1499, 203], [1499, 191]]}, "center": {"250-258, T": [1479, 197]}}, +{"id": 5450, "name": "Common Sense", "description": "A German and English Discord server", "links": {"subreddit": ["CommonSense_DC"], "discord": ["KA3xBr27tU"]}, "path": {"250-258, T": [[416, -926], [416, -920], [425, -920], [425, -926]]}, "center": {"250-258, T": [421, -923]}}, +{"id": 5451, "name": "Grateful Dead \"Marching Bear\"", "description": "Mascot for the band the Grateful Dead. Designed by sound engineer and LSD chemist Owsley \"Bear\" Stanley, the mascot is often referred to as a dancing bear.", "links": {"website": ["https://extrachill.com/dancing-grateful-dead-bears-meaning"], "subreddit": ["gratefuldead"]}, "path": {"103-125": [[333, 31], [333, 29], [330, 29], [330, 27], [329, 27], [329, 24], [332, 21], [334, 21], [336, 19], [336, 18], [333, 15], [332, 14], [332, 11], [333, 10], [336, 10], [336, 11], [342, 11], [342, 10], [345, 10], [346, 11], [346, 14], [342, 18], [342, 19], [345, 22], [346, 22], [348, 24], [349, 24], [349, 27], [348, 28], [344, 28], [344, 31]], "126-258, T": [[332, 13], [333, 10], [335, 10], [336, 11], [342, 11], [343, 10], [345, 10], [346, 14], [343, 17], [343, 19], [345, 20], [351, 25], [351, 32], [348, 31], [346, 32], [344, 34], [343, 36], [342, 35], [338, 36], [337, 36], [337, 34], [334, 32], [330, 32], [329, 33], [329, 24], [334, 20], [336, 19], [332, 14]]}, "center": {"103-125": [339, 25], "126-258, T": [340, 26]}}, {"id": 5452, "name": "Flag of Romania", "description": "Romania is a country in Eastern Europe.\nBuild by Iraphahell", "links": {"website": ["https://www.youtube.com/@iRaphahell"]}, "path": {"205-230": [[1250, 720], [1306, 720], [1306, 755], [1250, 755]]}, "center": {"205-230": [1278, 738]}}, -{"id": 5453, "name": "Printed circuit board", "description": "(green) Printed circuit board with (grey rectangular) microprocessors in background. Taiwan is known for semiconductor manufacturing.", "links": {"website": ["https://en.wikipedia.org/wiki/Printed_circuit_board", "https://en.wikipedia.org/wiki/Microprocessor"]}, "path": {"152-258": [[-93, 407], [-92, 421], [-61, 421], [-61, 407]]}, "center": {"152-258": [-77, 414]}}, -{"id": 5454, "name": "Louvre Collab Work Spot 10", "description": "A collaboration between the Overlord, Pump It Up, Hypixel Zombies and Femboy communities", "links": {"subreddit": ["overlord", "Femboy", "PumpItUp"], "discord": ["QeVmNmXwvD"]}, "path": {"119-258": [[895, -167], [948, -167], [947, -143], [946, -143], [946, -138], [947, -138], [896, -138], [895, -138]]}, "center": {"119-258": [922, -152]}}, -{"id": 5455, "name": "Discord", "description": "A small discord logo art", "links": {}, "path": {"250-258": [[-1226, 529], [-1228, 530], [-1227, 528], [-1227, 526], [-1225, 526], [-1223, 527], [-1223, 528], [-1223, 526], [-1222, 528], [-1221, 529], [-1221, 530], [-1220, 529], [-1221, 531], [-1220, 531], [-1221, 532], [-1222, 533], [-1223, 534], [-1227, 533], [-1228, 532], [-1228, 533], [-1229, 531], [-1229, 530], [-1228, 528]]}, "center": {"250-258": [-1224, 531]}}, -{"id": 5456, "name": "Hibou de l'Hoxystase - Hoxystase Owl", "description": "A small owl created by the Hoxystase community on discord. A french discord server based around an interesting way to communicate.\n\nHe represents u/Azolti 's logo, one of the members of the Hoxystase community.\n\nThere are two other small owls like this one in the canvas, also created by the Hoxystase community.", "links": {"discord": ["fxgww6p"]}, "path": {"250-258": [[975, -645], [975, -642], [974, -642], [974, -641], [975, -641], [975, -640], [974, -639], [975, -639], [976, -640], [979, -640], [979, -639], [980, -639], [979, -640], [979, -641], [980, -641], [980, -642], [979, -642], [979, -645], [978, -644], [976, -644]]}, "center": {"250-258": [977, -642]}}, +{"id": 5453, "name": "Printed circuit board", "description": "(green) Printed circuit board with (grey rectangular) microprocessors in background. Taiwan is known for semiconductor manufacturing.", "links": {"website": ["https://en.wikipedia.org/wiki/Printed_circuit_board", "https://en.wikipedia.org/wiki/Microprocessor"]}, "path": {"152-258, T": [[-93, 407], [-92, 421], [-61, 421], [-61, 407]]}, "center": {"152-258, T": [-77, 414]}}, +{"id": 5454, "name": "Louvre Collab Work Spot 10", "description": "A collaboration between the Overlord, Pump It Up, Hypixel Zombies and Femboy communities", "links": {"subreddit": ["overlord", "Femboy", "PumpItUp"], "discord": ["QeVmNmXwvD"]}, "path": {"119-258, T": [[895, -167], [948, -167], [947, -143], [946, -143], [946, -138], [947, -138], [896, -138], [895, -138]]}, "center": {"119-258, T": [922, -152]}}, +{"id": 5455, "name": "Discord", "description": "A small discord logo art", "links": {}, "path": {"250-258, T": [[-1226, 529], [-1228, 530], [-1227, 528], [-1227, 526], [-1225, 526], [-1223, 527], [-1223, 528], [-1223, 526], [-1222, 528], [-1221, 529], [-1221, 530], [-1220, 529], [-1221, 531], [-1220, 531], [-1221, 532], [-1222, 533], [-1223, 534], [-1227, 533], [-1228, 532], [-1228, 533], [-1229, 531], [-1229, 530], [-1228, 528]]}, "center": {"250-258, T": [-1224, 531]}}, +{"id": 5456, "name": "Hibou de l'Hoxystase - Hoxystase Owl", "description": "A small owl created by the Hoxystase community on discord. A french discord server based around an interesting way to communicate.\n\nHe represents u/Azolti 's logo, one of the members of the Hoxystase community.\n\nThere are two other small owls like this one in the canvas, also created by the Hoxystase community.", "links": {"discord": ["fxgww6p"]}, "path": {"250-258, T": [[975, -645], [975, -642], [974, -642], [974, -641], [975, -641], [975, -640], [974, -639], [975, -639], [976, -640], [979, -640], [979, -639], [980, -639], [979, -640], [979, -641], [980, -641], [980, -642], [979, -642], [979, -645], [978, -644], [976, -644]]}, "center": {"250-258, T": [977, -642]}}, {"id": 5457, "name": "ČVUT", "description": "Czech Technical University in Prague (CTU, or locally ČVUT) is one of the largest universities in the Czech Republic with 8 faculties, and is one of the oldest institutes of technology in Central Europe.", "links": {"website": ["https://www.cvut.cz/"]}, "path": {"185-194": [[-710, 744], [-710, 750], [-690, 750], [-690, 744]]}, "center": {"185-194": [-700, 747]}}, -{"id": 5458, "name": "Every Child Matters - orange Heart", "description": "Every child matters is an indigenous initiative that displays with Canadian flag this year. The orange heart symbolizes the importance of indigenous children in Canada and that there are murdered and lost, kidnapped or stolen indigenous women and children in Canada. \nMeant to display respect but also hope for indigenous outcomes and outreach to be heard. Suggested by Zo8", "links": {"subreddit": ["placecanada"], "discord": ["Placecanada"]}, "path": {"250-258": [[133, 191], [137, 191], [137, 195], [133, 195]]}, "center": {"250-258": [135, 193]}}, -{"id": 5459, "name": "Wielkie Cyce PL", "description": "Wielkie Cyce PL is a small group of streamers from Poland. This art shows pixel art faces of all 7 streamers from wc.pl and initials WC alongside Polish flag.", "links": {"website": ["https://wielkiecyce.pl/"]}, "path": {"245-258": [[1482, 384], [1499, 384], [1499, 395], [1482, 395]]}, "center": {"245-258": [1491, 390]}}, +{"id": 5458, "name": "Every Child Matters - orange Heart", "description": "Every child matters is an indigenous initiative that displays with Canadian flag this year. The orange heart symbolizes the importance of indigenous children in Canada and that there are murdered and lost, kidnapped or stolen indigenous women and children in Canada. \nMeant to display respect but also hope for indigenous outcomes and outreach to be heard. Suggested by Zo8", "links": {"subreddit": ["placecanada"], "discord": ["Placecanada"]}, "path": {"250-258, T": [[133, 191], [137, 191], [137, 195], [133, 195]]}, "center": {"250-258, T": [135, 193]}}, +{"id": 5459, "name": "Wielkie Cyce PL", "description": "Wielkie Cyce PL is a small group of streamers from Poland. This art shows pixel art faces of all 7 streamers from wc.pl and initials WC alongside Polish flag.", "links": {"website": ["https://wielkiecyce.pl/"]}, "path": {"245-258, T": [[1482, 384], [1499, 384], [1499, 395], [1482, 395]]}, "center": {"245-258, T": [1491, 390]}}, {"id": 5460, "name": "Yuufish", "description": "Yuufish is a fish version of the character Yuuri from the manga Girls' Last Tour. Cute, isn't it?", "links": {"subreddit": ["GirlsLastTour"]}, "path": {"212-224": [[1342, 780], [1342, 772], [1355, 772], [1355, 780]]}, "center": {"212-224": [1349, 776]}}, -{"id": 5461, "name": "Kirby", "description": "Poyo!", "links": {}, "path": {"250-258": [[-1473, 61], [-1470, 61], [-1469, 60], [-1468, 59], [-1467, 59], [-1467, 56], [-1468, 55], [-1467, 54], [-1467, 52], [-1469, 50], [-1469, 49], [-1471, 47], [-1472, 47], [-1473, 46], [-1480, 46], [-1481, 47], [-1482, 48], [-1482, 53], [-1481, 54], [-1481, 56], [-1480, 57], [-1481, 58], [-1482, 59], [-1483, 60], [-1483, 61], [-1476, 61], [-1475, 60], [-1474, 60]]}, "center": {"250-258": [-1474, 54]}}, -{"id": 5462, "name": "Hoshimachi Suisei", "description": "Hoshimachi Suisei is a female Japanese Virtual YouTuber associated with hololive.\nOriginally an independent VTuber, she eventually was recruited into hololive production's label InoNaka Music, and was then transferred to the main hololive branch on 1 December 2019.\n\nSuisei is mostly known for her outstanding singing capabilities. She has released 2 albums, and appeared in the famous youtube channel \"The First Take\", which invite the most prominent artist in Japan.\n\nShe is also respected for being an hard-working girl. As an independant vtuber, she drew and animated her 2D model herself. She was also composing, writing the lyrics, and animating the music video for her original songs all by herself.\n\nShe is also extremely good at Tetris, managing to hold for several minutes against the 2nd best world wide player Roy, while simultaneously entertaining chat (albeit she had an advantage in game bonuses).\n\nWhen paired with Minato Aqua and Tokoyami Towa (the two girls next to her), they are known as StartEnd.", "links": {"website": ["https://www.youtube.com/@HoshimachiSuisei"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"206-258": [[1355, -831], [1362, -826], [1365, -814], [1362, -802], [1356, -798], [1356, -803], [1352, -801], [1343, -807], [1342, -804], [1345, -800], [1342, -798], [1339, -798], [1340, -800], [1337, -806], [1340, -809], [1340, -811], [1336, -812], [1338, -816], [1336, -820], [1343, -826], [1348, -831]]}, "center": {"206-258": [1352, -816]}}, -{"id": 5463, "name": "National Pantheon of Heroes", "description": "El Oratorio de Nuestra Señora de la Asunción y Panteón Nacional de los Héroes conocido también como el Panteón Nacional o simplemente Panteón de los Héroes es una parada obligatoria para todos los turistas y delegaciones de extranjeros que llegan al Paraguay y visitan Asunción. Es, al mismo tiempo, una joya arquitectónica de gran valor artístico, cultural y patrimonial.\n\nThe Oratory of Our Lady of the Asunción and National Pantheon of Heroes, also known as the National Pantheon or simply Pantheon of Heroes, is a mandatory stop for all tourists and foreign delegations that arrive in Paraguay and visit Asunción. It is, at the same time, an architectural jewel of great artistic, cultural and patrimonial value.", "links": {"website": ["https://es.wikipedia.org/wiki/Pante%C3%B3n_Nacional_de_los_H%C3%A9roes"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"250-258": [[-21, -827], [-21, -856], [-1, -856], [-1, -826]]}, "center": {"250-258": [-11, -841]}}, -{"id": 5464, "name": "The Taiwan blue magpie", "description": "A bird species in the crow family that is endemic to Taiwan.", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan_blue_magpie"]}, "path": {"160-258": [[-81, 432], [-78, 433], [-78, 436], [-77, 442], [-78, 444], [-84, 444], [-84, 437], [-82, 433]]}, "center": {"160-258": [-81, 440]}}, +{"id": 5461, "name": "Kirby", "description": "Poyo!", "links": {}, "path": {"250-258, T": [[-1473, 61], [-1470, 61], [-1469, 60], [-1468, 59], [-1467, 59], [-1467, 56], [-1468, 55], [-1467, 54], [-1467, 52], [-1469, 50], [-1469, 49], [-1471, 47], [-1472, 47], [-1473, 46], [-1480, 46], [-1481, 47], [-1482, 48], [-1482, 53], [-1481, 54], [-1481, 56], [-1480, 57], [-1481, 58], [-1482, 59], [-1483, 60], [-1483, 61], [-1476, 61], [-1475, 60], [-1474, 60]]}, "center": {"250-258, T": [-1474, 54]}}, +{"id": 5462, "name": "Hoshimachi Suisei", "description": "Hoshimachi Suisei is a female Japanese Virtual YouTuber associated with hololive.\nOriginally an independent VTuber, she eventually was recruited into hololive production's label InoNaka Music, and was then transferred to the main hololive branch on 1 December 2019.\n\nSuisei is mostly known for her outstanding singing capabilities. She has released 2 albums, and appeared in the famous youtube channel \"The First Take\", which invite the most prominent artist in Japan.\n\nShe is also respected for being an hard-working girl. As an independant vtuber, she drew and animated her 2D model herself. She was also composing, writing the lyrics, and animating the music video for her original songs all by herself.\n\nShe is also extremely good at Tetris, managing to hold for several minutes against the 2nd best world wide player Roy, while simultaneously entertaining chat (albeit she had an advantage in game bonuses).\n\nWhen paired with Minato Aqua and Tokoyami Towa (the two girls next to her), they are known as StartEnd.", "links": {"website": ["https://www.youtube.com/@HoshimachiSuisei"], "subreddit": ["hololive"], "discord": ["vtubersplace"]}, "path": {"206-258, T": [[1355, -831], [1362, -826], [1365, -814], [1362, -802], [1356, -798], [1356, -803], [1352, -801], [1343, -807], [1342, -804], [1345, -800], [1342, -798], [1339, -798], [1340, -800], [1337, -806], [1340, -809], [1340, -811], [1336, -812], [1338, -816], [1336, -820], [1343, -826], [1348, -831]]}, "center": {"206-258, T": [1352, -816]}}, +{"id": 5463, "name": "National Pantheon of Heroes", "description": "El Oratorio de Nuestra Señora de la Asunción y Panteón Nacional de los Héroes conocido también como el Panteón Nacional o simplemente Panteón de los Héroes es una parada obligatoria para todos los turistas y delegaciones de extranjeros que llegan al Paraguay y visitan Asunción. Es, al mismo tiempo, una joya arquitectónica de gran valor artístico, cultural y patrimonial.\n\nThe Oratory of Our Lady of the Asunción and National Pantheon of Heroes, also known as the National Pantheon or simply Pantheon of Heroes, is a mandatory stop for all tourists and foreign delegations that arrive in Paraguay and visit Asunción. It is, at the same time, an architectural jewel of great artistic, cultural and patrimonial value.", "links": {"website": ["https://es.wikipedia.org/wiki/Pante%C3%B3n_Nacional_de_los_H%C3%A9roes"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"250-258, T": [[-21, -827], [-21, -856], [-1, -856], [-1, -826]]}, "center": {"250-258, T": [-11, -841]}}, +{"id": 5464, "name": "The Taiwan blue magpie", "description": "A bird species in the crow family that is endemic to Taiwan.", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan_blue_magpie"]}, "path": {"160-258, T": [[-81, 432], [-78, 433], [-78, 436], [-77, 442], [-78, 444], [-84, 444], [-84, 437], [-82, 433]]}, "center": {"160-258, T": [-81, 440]}}, {"id": 5465, "name": "STRAY KIDS/SKZOO", "description": "Stray Kids are a South Korean boy group. \n\nSKZOO (a pun between Stray Kids and zoo) are the representative animals of each member. \n\nFrom top row, left to right the characters are Seungmin (PuppyM, a puppy), I.N. (FoxI.Ny, a fennec fox), Hyunjin (Jiniret, a ferret), Han (HAN QUOKKA, a quokka), Felix (BbokAri, a chick), Bang Chan (Wolf Chan, a wolf), Lee Know (LeeBit, a bunny) and Changbin (DWAEKKI, a pig/rabbit hybrid).\n\nThe space also features a small rainbow square on the top right.", "links": {"website": ["https://stray-kids.fandom.com/wiki/SKZOO"]}, "path": {"243": [[-1400, -368], [-1382, -368], [-1383, -352], [-1400, -352]]}, "center": {"243": [-1391, -360]}}, {"id": 5466, "name": "GetOnMyLvL", "description": "GetOnMyLvL is the personal brand of German youtuber and streamer MontanaBlack88. He is quite old already, in Germany we call this a \"Rentner\" but he is still one of the most famous German streamers.", "links": {"website": ["https://www.twitch.tv/montanablack88"]}, "path": {"18-19": [[340, -121], [387, -120], [386, -72], [340, -72]]}, "center": {"18-19": [363, -96]}}, -{"id": 5467, "name": "Clyde", "description": "Clyde lost his battle with cancer on the 22nd of july 2023. He was the best and I'll be forever grateful to have had him in my life. I love you Clyde", "links": {}, "path": {"140-258": [[262, -918], [278, -918], [278, -919], [279, -920], [280, -921], [281, -922], [282, -923], [283, -924], [284, -925], [284, -926], [284, -927], [283, -928], [282, -929], [281, -929], [280, -928], [279, -927], [278, -927], [277, -928], [277, -931], [276, -931], [276, -933], [275, -933], [275, -934], [272, -934], [272, -933], [271, -933], [271, -930], [269, -930], [269, -933], [268, -933], [268, -934], [265, -934], [265, -933], [264, -933], [264, -931], [263, -931], [263, -928], [262, -925], [261, -925], [261, -919], [262, -919]]}, "center": {"140-258": [271, -924]}}, +{"id": 5467, "name": "Clyde", "description": "Clyde lost his battle with cancer on the 22nd of july 2023. He was the best and I'll be forever grateful to have had him in my life. I love you Clyde", "links": {}, "path": {"140-258, T": [[262, -918], [278, -918], [278, -919], [279, -920], [280, -921], [281, -922], [282, -923], [283, -924], [284, -925], [284, -926], [284, -927], [283, -928], [282, -929], [281, -929], [280, -928], [279, -927], [278, -927], [277, -928], [277, -931], [276, -931], [276, -933], [275, -933], [275, -934], [272, -934], [272, -933], [271, -933], [271, -930], [269, -930], [269, -933], [268, -933], [268, -934], [265, -934], [265, -933], [264, -933], [264, -931], [263, -931], [263, -928], [262, -925], [261, -925], [261, -919], [262, -919]]}, "center": {"140-258, T": [271, -924]}}, {"id": 5468, "name": "Flag of Bosnia and Herzegovina", "description": "The Flag of Bosnia and Herzegovina. It is a nation on the Balkan Peninsula.", "links": {"website": ["https://en.wikipedia.org/wiki/Bosnia_and_Herzegovina", "https://en.wikipedia.org/wiki/Flag_of_Bosnia_and_Herzegovina"], "subreddit": ["bih"]}, "path": {"140-146": [[884, 102], [884, 87], [851, 87], [851, 102]], "147-150": [[883, 88], [846, 88], [846, 105], [883, 105]], "151-153": [[884, 114], [845, 114], [845, 87], [884, 87]], "136-139": [[884, 87], [870, 87], [870, 96], [884, 96]]}, "center": {"140-146": [868, 95], "147-150": [865, 97], "151-153": [865, 101], "136-139": [877, 92]}}, -{"id": 5469, "name": "Celebrating French Animation", "description": "Drawn by Super-Furet, this art is a tribute to many popular French cartoons and animated features. \n\nIt prominently shows Miraculous: The Tales of Ladybug and Cat Noir at the bottom (with the main characters and their arch-nemesis), as well as Code Lyoko, Totally Spies, Wakfu, Ōban, Star-Racers, and the movie The King and the Mockingbird.\n\nA day later, the condor from The Mysterious Cities of Gold was added on the top right.\n\nThe art was made through the help of the PlaceFR and Miraculous communities.", "links": {"website": ["https://twitter.com/SuperFuret"], "subreddit": ["PlaceFR", "france", "miraculousladybug", "totallyspies", "codelyoko"]}, "path": {"121-258": [[911, -700], [910, -700], [909, -699], [909, -695], [908, -694], [908, -692], [907, -691], [907, -690], [906, -689], [906, -688], [901, -683], [901, -687], [894, -694], [894, -695], [893, -696], [881, -697], [880, -696], [879, -696], [878, -695], [877, -695], [876, -694], [874, -692], [874, -691], [873, -690], [873, -689], [872, -688], [871, -687], [870, -687], [869, -686], [869, -685], [868, -684], [868, -674], [869, -673], [869, -671], [874, -665], [875, -665], [877, -663], [876, -663], [875, -662], [875, -661], [874, -661], [873, -660], [873, -658], [872, -658], [870, -656], [870, -655], [869, -654], [869, -652], [869, -649], [872, -646], [872, -643], [881, -634], [881, -629], [882, -628], [882, -626], [883, -625], [885, -625], [886, -624], [887, -623], [887, -622], [890, -619], [891, -619], [892, -618], [893, -618], [894, -617], [896, -615], [898, -615], [900, -615], [900, -611], [901, -610], [901, -608], [898, -604], [898, -602], [897, -602], [895, -600], [893, -599], [887, -593], [887, -591], [887, -592], [884, -595], [883, -595], [882, -596], [881, -596], [880, -597], [879, -598], [878, -598], [877, -599], [877, -601], [877, -602], [876, -604], [878, -606], [877, -607], [877, -608], [875, -610], [873, -607], [872, -606], [872, -602], [872, -606], [870, -607], [871, -608], [871, -609], [868, -612], [866, -610], [866, -607], [867, -606], [866, -607], [866, -611], [864, -613], [862, -611], [862, -605], [865, -602], [865, -601], [870, -596], [870, -595], [873, -592], [874, -592], [879, -587], [879, -582], [878, -581], [877, -582], [876, -582], [875, -583], [874, -582], [873, -582], [872, -581], [871, -582], [871, -583], [871, -582], [870, -581], [868, -581], [867, -580], [866, -580], [865, -579], [863, -579], [861, -577], [860, -577], [859, -576], [860, -575], [856, -572], [856, -569], [855, -568], [855, -567], [854, -566], [854, -554], [856, -552], [856, -550], [858, -548], [859, -548], [860, -547], [860, -546], [862, -544], [862, -543], [864, -541], [865, -541], [866, -540], [867, -540], [868, -539], [869, -539], [872, -536], [871, -536], [863, -528], [863, -525], [864, -524], [867, -524], [875, -532], [875, -531], [879, -527], [879, -526], [881, -524], [885, -524], [896, -535], [896, -536], [897, -537], [897, -538], [898, -539], [898, -540], [899, -541], [900, -542], [901, -542], [909, -542], [910, -541], [909, -541], [895, -527], [895, -526], [894, -525], [894, -524], [887, -517], [886, -517], [884, -515], [883, -515], [882, -514], [880, -514], [879, -513], [877, -513], [876, -512], [876, -511], [876, -509], [876, -508], [877, -507], [889, -507], [889, -509], [894, -509], [894, -512], [899, -517], [900, -517], [904, -521], [904, -522], [905, -523], [905, -524], [906, -524], [907, -525], [908, -526], [909, -526], [910, -527], [911, -526], [912, -526], [912, -525], [911, -524], [911, -522], [910, -521], [910, -516], [914, -512], [922, -512], [923, -511], [929, -511], [927, -509], [926, -509], [925, -508], [924, -507], [924, -506], [925, -505], [926, -504], [932, -504], [933, -505], [934, -505], [935, -506], [935, -508], [936, -509], [937, -510], [937, -511], [938, -511], [939, -512], [937, -514], [938, -517], [937, -518], [936, -519], [934, -519], [933, -520], [930, -520], [929, -521], [928, -521], [930, -521], [931, -522], [932, -523], [933, -524], [933, -526], [936, -526], [937, -525], [940, -525], [941, -526], [942, -526], [944, -528], [945, -528], [949, -527], [950, -526], [952, -526], [953, -525], [954, -525], [955, -524], [974, -524], [975, -525], [977, -525], [978, -526], [979, -526], [980, -527], [981, -528], [981, -529], [982, -530], [986, -534], [986, -536], [987, -537], [987, -539], [986, -540], [984, -543], [983, -543], [983, -544], [982, -545], [985, -548], [985, -549], [988, -552], [988, -558], [987, -559], [987, -561], [979, -569], [978, -569], [976, -571], [975, -571], [974, -572], [972, -572], [971, -573], [970, -573], [969, -574], [967, -574], [966, -575], [967, -576], [967, -584], [968, -585], [968, -587], [969, -588], [970, -588], [971, -589], [975, -594], [975, -595], [975, -596], [974, -597], [973, -598], [972, -598], [971, -597], [970, -598], [968, -596], [967, -595], [966, -597], [966, -602], [967, -601], [968, -601], [969, -602], [968, -603], [967, -603], [967, -606], [969, -608], [968, -609], [969, -610], [970, -610], [981, -621], [980, -622], [979, -621], [979, -622], [977, -624], [975, -622], [974, -622], [967, -615], [966, -615], [964, -613], [958, -613], [957, -612], [952, -612], [951, -613], [950, -613], [947, -613], [946, -614], [946, -642], [952, -642], [951, -641], [951, -639], [952, -638], [953, -638], [953, -635], [954, -634], [954, -633], [955, -632], [956, -633], [956, -632], [957, -631], [958, -630], [960, -630], [961, -631], [962, -632], [963, -631], [964, -632], [963, -633], [963, -634], [964, -635], [964, -637], [966, -637], [967, -638], [969, -638], [970, -639], [973, -639], [974, -639], [975, -640], [974, -641], [974, -642], [975, -643], [975, -645], [976, -644], [978, -644], [979, -645], [979, -644], [979, -643], [980, -642], [982, -642], [983, -641], [984, -642], [984, -643], [986, -641], [987, -642], [988, -642], [988, -648], [987, -649], [987, -650], [982, -650], [982, -651], [983, -652], [983, -653], [982, -654], [981, -655], [982, -656], [984, -656], [985, -655], [986, -655], [987, -656], [987, -661], [988, -660], [988, -659], [989, -658], [990, -659], [990, -663], [990, -670], [988, -672], [987, -673], [990, -676], [990, -680], [989, -681], [989, -684], [988, -685], [988, -692], [985, -695], [983, -695], [983, -699], [986, -699], [987, -698], [988, -699], [987, -700], [989, -700], [989, -701], [987, -703], [988, -704], [987, -705], [985, -705], [984, -706], [980, -706], [979, -707], [977, -709], [977, -711], [979, -711], [980, -712], [980, -715], [981, -716], [979, -718], [978, -718], [977, -717], [977, -716], [976, -717], [975, -717], [972, -714], [969, -714], [968, -715], [965, -715], [963, -717], [961, -717], [960, -716], [957, -719], [955, -719], [954, -720], [953, -720], [951, -718], [952, -717], [951, -717], [950, -716], [952, -714], [953, -714], [954, -713], [955, -713], [956, -712], [957, -712], [959, -710], [960, -710], [961, -709], [962, -709], [963, -708], [958, -703], [961, -702], [966, -702], [967, -703], [968, -703], [969, -704], [972, -704], [974, -702], [975, -702], [976, -703], [976, -702], [977, -701], [978, -701], [979, -700], [982, -700], [983, -699], [983, -695], [982, -695], [981, -696], [976, -696], [975, -697], [974, -697], [973, -698], [971, -698], [970, -697], [969, -697], [966, -694], [966, -693], [965, -692], [965, -690], [966, -689], [966, -687], [963, -687], [962, -688], [961, -688], [959, -690], [960, -691], [960, -692], [959, -693], [958, -692], [956, -692], [957, -692], [955, -694], [954, -693], [950, -689], [950, -682], [949, -681], [949, -679], [948, -678], [945, -678], [944, -679], [944, -685], [941, -688], [938, -688], [933, -693], [931, -693], [928, -690], [923, -690], [922, -697], [919, -700], [916, -697], [913, -700]]}, "center": {"121-258": [923, -575]}}, -{"id": 5470, "name": "Space Needle", "description": "The Space Needle is an observation tower located in Seattle, Washington. Originally constructed for the 1962 World's Fair, it stands at 605 ft (184 m) tall and has served as an icon for the Emerald City ever since.", "links": {"website": ["https://en.wikipedia.org/wiki/Space_Needle"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"180-258": [[810, 852], [810, 856], [809, 856], [808, 857], [808, 858], [807, 859], [806, 860], [805, 860], [804, 861], [802, 862], [803, 863], [804, 863], [805, 864], [806, 865], [806, 866], [807, 866], [807, 868], [808, 869], [808, 874], [809, 874], [809, 880], [807, 880], [809, 880], [809, 883], [813, 883], [813, 882], [812, 881], [812, 880], [811, 879], [811, 875], [812, 874], [812, 870], [813, 869], [813, 868], [814, 867], [814, 866], [815, 865], [815, 860], [814, 859], [814, 858], [813, 857], [812, 857], [811, 856]]}, "center": {"180-258": [810, 863]}}, -{"id": 5471, "name": "Minecraft Logo", "description": "The icon displayed is the logo of the best selling game of all time, Minecraft. The object depicted is the classic grass block that has become extremely iconic over the years, and WAS Minecrafts logo until they replaced with a black and white creeper. (A monster in the game that is essentially the mascot of the game.)", "links": {"website": ["https://wikipedia.com/Minecraft"], "subreddit": ["minecraft"]}, "path": {"250-258": [[-704, 980], [-698, 975], [-691, 979], [-691, 990], [-696, 992], [-696, 993], [-700, 993], [-704, 989], [-705, 981]]}, "center": {"250-258": [-698, 984]}}, -{"id": 5472, "name": "Stardew Valley duck", "description": "A duck from Stardew Valley with a Dutch heart. A collaboration between Stardew Valley and PlaceNL.", "links": {"website": ["https://stardewvalleywiki.com/Duck"], "subreddit": ["PlaceNL", "StardewValley"], "discord": ["placenl"]}, "path": {"116-258": [[989, -451], [994, -452], [998, -455], [998, -457], [996, -461], [996, -464], [990, -467], [988, -470], [989, -479], [987, -481], [982, -481], [980, -478], [980, -465], [980, -461], [979, -457], [976, -455], [978, -451], [992, -451]]}, "center": {"116-258": [988, -459]}}, -{"id": 5473, "name": "Pingu", "description": "Pingu is a stop-motion animated children's television series co-created by Otmar Gutmann and Erika Brueggemann that originally aired in Switzerland, but switched to the United Kingdom in the 2003 revival series.\n\nWas redrawn on top of Kazakhstan flag after the flag took its original place. As a compensation Pingu received a Takiya - kazakh national headwear", "links": {"website": ["https://en.wikipedia.org/wiki/Pingu", "https://en.wikipedia.org/wiki/Taqiyah_(cap)"]}, "path": {"162-258": [[-855, 912], [-854, 912], [-851, 909], [-848, 905], [-845, 903], [-842, 902], [-840, 905], [-840, 908], [-842, 913], [-843, 914], [-854, 914]]}, "center": {"162-258": [-845, 909]}}, -{"id": 5474, "name": "Friends, not food", "description": "Artwork featuring a cow, the letter V for vegan, and \"friends not food\" as text. Also includes a flower placed by someone unaffiliated, but later incorporated officially.\n\nA collaboration between vegan activists and r/IndiaPlace.", "links": {}, "path": {"198-258": [[423, -220], [423, -231], [414, -231], [418, -232], [418, -234], [419, -235], [419, -237], [418, -237], [417, -239], [417, -245], [419, -247], [425, -247], [427, -250], [429, -250], [429, -251], [431, -251], [431, -252], [434, -252], [434, -253], [440, -253], [440, -252], [443, -252], [443, -251], [445, -251], [445, -250], [447, -250], [449, -247], [450, -247], [450, -245], [451, -245], [451, -243], [452, -243], [452, -241], [453, -241], [453, -237], [454, -237], [454, -234], [455, -234], [455, -232], [457, -232], [457, -231], [460, -231], [451, -230], [451, -228], [451, -227], [453, -227], [453, -220]]}, "center": {"198-258": [437, -237]}}, -{"id": 5475, "name": "Alhaitham", "description": "A playable character from Genshin Impact. \n\nHe is a 5-star dendro sword user, known for his fractious relationship with roommate Kaveh, and an improbably buff physique despite his repeated claims of being a mere 'feeble scholar'.", "links": {"subreddit": ["AlHaithamMains"]}, "path": {"181-258": [[-94, 355], [-92, 351], [-88, 344], [-88, 342], [-86, 342], [-89, 340], [-91, 337], [-88, 332], [-88, 328], [-84, 330], [-79, 336], [-81, 340], [-78, 340], [-80, 343], [-78, 343], [-78, 351], [-81, 356], [-94, 356]]}, "center": {"181-258": [-84, 350]}}, +{"id": 5469, "name": "Celebrating French Animation", "description": "Drawn by Super-Furet, this art is a tribute to many popular French cartoons and animated features. \n\nIt prominently shows Miraculous: The Tales of Ladybug and Cat Noir at the bottom (with the main characters and their arch-nemesis), as well as Code Lyoko, Totally Spies, Wakfu, Ōban, Star-Racers, and the movie The King and the Mockingbird.\n\nA day later, the condor from The Mysterious Cities of Gold was added on the top right.\n\nThe art was made through the help of the PlaceFR and Miraculous communities.", "links": {"website": ["https://twitter.com/SuperFuret"], "subreddit": ["PlaceFR", "france", "miraculousladybug", "totallyspies", "codelyoko"]}, "path": {"121-258, T": [[911, -700], [910, -700], [909, -699], [909, -695], [908, -694], [908, -692], [907, -691], [907, -690], [906, -689], [906, -688], [901, -683], [901, -687], [894, -694], [894, -695], [893, -696], [881, -697], [880, -696], [879, -696], [878, -695], [877, -695], [876, -694], [874, -692], [874, -691], [873, -690], [873, -689], [872, -688], [871, -687], [870, -687], [869, -686], [869, -685], [868, -684], [868, -674], [869, -673], [869, -671], [874, -665], [875, -665], [877, -663], [876, -663], [875, -662], [875, -661], [874, -661], [873, -660], [873, -658], [872, -658], [870, -656], [870, -655], [869, -654], [869, -652], [869, -649], [872, -646], [872, -643], [881, -634], [881, -629], [882, -628], [882, -626], [883, -625], [885, -625], [886, -624], [887, -623], [887, -622], [890, -619], [891, -619], [892, -618], [893, -618], [894, -617], [896, -615], [898, -615], [900, -615], [900, -611], [901, -610], [901, -608], [898, -604], [898, -602], [897, -602], [895, -600], [893, -599], [887, -593], [887, -591], [887, -592], [884, -595], [883, -595], [882, -596], [881, -596], [880, -597], [879, -598], [878, -598], [877, -599], [877, -601], [877, -602], [876, -604], [878, -606], [877, -607], [877, -608], [875, -610], [873, -607], [872, -606], [872, -602], [872, -606], [870, -607], [871, -608], [871, -609], [868, -612], [866, -610], [866, -607], [867, -606], [866, -607], [866, -611], [864, -613], [862, -611], [862, -605], [865, -602], [865, -601], [870, -596], [870, -595], [873, -592], [874, -592], [879, -587], [879, -582], [878, -581], [877, -582], [876, -582], [875, -583], [874, -582], [873, -582], [872, -581], [871, -582], [871, -583], [871, -582], [870, -581], [868, -581], [867, -580], [866, -580], [865, -579], [863, -579], [861, -577], [860, -577], [859, -576], [860, -575], [856, -572], [856, -569], [855, -568], [855, -567], [854, -566], [854, -554], [856, -552], [856, -550], [858, -548], [859, -548], [860, -547], [860, -546], [862, -544], [862, -543], [864, -541], [865, -541], [866, -540], [867, -540], [868, -539], [869, -539], [872, -536], [871, -536], [863, -528], [863, -525], [864, -524], [867, -524], [875, -532], [875, -531], [879, -527], [879, -526], [881, -524], [885, -524], [896, -535], [896, -536], [897, -537], [897, -538], [898, -539], [898, -540], [899, -541], [900, -542], [901, -542], [909, -542], [910, -541], [909, -541], [895, -527], [895, -526], [894, -525], [894, -524], [887, -517], [886, -517], [884, -515], [883, -515], [882, -514], [880, -514], [879, -513], [877, -513], [876, -512], [876, -511], [876, -509], [876, -508], [877, -507], [889, -507], [889, -509], [894, -509], [894, -512], [899, -517], [900, -517], [904, -521], [904, -522], [905, -523], [905, -524], [906, -524], [907, -525], [908, -526], [909, -526], [910, -527], [911, -526], [912, -526], [912, -525], [911, -524], [911, -522], [910, -521], [910, -516], [914, -512], [922, -512], [923, -511], [929, -511], [927, -509], [926, -509], [925, -508], [924, -507], [924, -506], [925, -505], [926, -504], [932, -504], [933, -505], [934, -505], [935, -506], [935, -508], [936, -509], [937, -510], [937, -511], [938, -511], [939, -512], [937, -514], [938, -517], [937, -518], [936, -519], [934, -519], [933, -520], [930, -520], [929, -521], [928, -521], [930, -521], [931, -522], [932, -523], [933, -524], [933, -526], [936, -526], [937, -525], [940, -525], [941, -526], [942, -526], [944, -528], [945, -528], [949, -527], [950, -526], [952, -526], [953, -525], [954, -525], [955, -524], [974, -524], [975, -525], [977, -525], [978, -526], [979, -526], [980, -527], [981, -528], [981, -529], [982, -530], [986, -534], [986, -536], [987, -537], [987, -539], [986, -540], [984, -543], [983, -543], [983, -544], [982, -545], [985, -548], [985, -549], [988, -552], [988, -558], [987, -559], [987, -561], [979, -569], [978, -569], [976, -571], [975, -571], [974, -572], [972, -572], [971, -573], [970, -573], [969, -574], [967, -574], [966, -575], [967, -576], [967, -584], [968, -585], [968, -587], [969, -588], [970, -588], [971, -589], [975, -594], [975, -595], [975, -596], [974, -597], [973, -598], [972, -598], [971, -597], [970, -598], [968, -596], [967, -595], [966, -597], [966, -602], [967, -601], [968, -601], [969, -602], [968, -603], [967, -603], [967, -606], [969, -608], [968, -609], [969, -610], [970, -610], [981, -621], [980, -622], [979, -621], [979, -622], [977, -624], [975, -622], [974, -622], [967, -615], [966, -615], [964, -613], [958, -613], [957, -612], [952, -612], [951, -613], [950, -613], [947, -613], [946, -614], [946, -642], [952, -642], [951, -641], [951, -639], [952, -638], [953, -638], [953, -635], [954, -634], [954, -633], [955, -632], [956, -633], [956, -632], [957, -631], [958, -630], [960, -630], [961, -631], [962, -632], [963, -631], [964, -632], [963, -633], [963, -634], [964, -635], [964, -637], [966, -637], [967, -638], [969, -638], [970, -639], [973, -639], [974, -639], [975, -640], [974, -641], [974, -642], [975, -643], [975, -645], [976, -644], [978, -644], [979, -645], [979, -644], [979, -643], [980, -642], [982, -642], [983, -641], [984, -642], [984, -643], [986, -641], [987, -642], [988, -642], [988, -648], [987, -649], [987, -650], [982, -650], [982, -651], [983, -652], [983, -653], [982, -654], [981, -655], [982, -656], [984, -656], [985, -655], [986, -655], [987, -656], [987, -661], [988, -660], [988, -659], [989, -658], [990, -659], [990, -663], [990, -670], [988, -672], [987, -673], [990, -676], [990, -680], [989, -681], [989, -684], [988, -685], [988, -692], [985, -695], [983, -695], [983, -699], [986, -699], [987, -698], [988, -699], [987, -700], [989, -700], [989, -701], [987, -703], [988, -704], [987, -705], [985, -705], [984, -706], [980, -706], [979, -707], [977, -709], [977, -711], [979, -711], [980, -712], [980, -715], [981, -716], [979, -718], [978, -718], [977, -717], [977, -716], [976, -717], [975, -717], [972, -714], [969, -714], [968, -715], [965, -715], [963, -717], [961, -717], [960, -716], [957, -719], [955, -719], [954, -720], [953, -720], [951, -718], [952, -717], [951, -717], [950, -716], [952, -714], [953, -714], [954, -713], [955, -713], [956, -712], [957, -712], [959, -710], [960, -710], [961, -709], [962, -709], [963, -708], [958, -703], [961, -702], [966, -702], [967, -703], [968, -703], [969, -704], [972, -704], [974, -702], [975, -702], [976, -703], [976, -702], [977, -701], [978, -701], [979, -700], [982, -700], [983, -699], [983, -695], [982, -695], [981, -696], [976, -696], [975, -697], [974, -697], [973, -698], [971, -698], [970, -697], [969, -697], [966, -694], [966, -693], [965, -692], [965, -690], [966, -689], [966, -687], [963, -687], [962, -688], [961, -688], [959, -690], [960, -691], [960, -692], [959, -693], [958, -692], [956, -692], [957, -692], [955, -694], [954, -693], [950, -689], [950, -682], [949, -681], [949, -679], [948, -678], [945, -678], [944, -679], [944, -685], [941, -688], [938, -688], [933, -693], [931, -693], [928, -690], [923, -690], [922, -697], [919, -700], [916, -697], [913, -700]]}, "center": {"121-258, T": [923, -575]}}, +{"id": 5470, "name": "Space Needle", "description": "The Space Needle is an observation tower located in Seattle, Washington. Originally constructed for the 1962 World's Fair, it stands at 605 ft (184 m) tall and has served as an icon for the Emerald City ever since.", "links": {"website": ["https://en.wikipedia.org/wiki/Space_Needle"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"180-258, T": [[810, 852], [810, 856], [809, 856], [808, 857], [808, 858], [807, 859], [806, 860], [805, 860], [804, 861], [802, 862], [803, 863], [804, 863], [805, 864], [806, 865], [806, 866], [807, 866], [807, 868], [808, 869], [808, 874], [809, 874], [809, 880], [807, 880], [809, 880], [809, 883], [813, 883], [813, 882], [812, 881], [812, 880], [811, 879], [811, 875], [812, 874], [812, 870], [813, 869], [813, 868], [814, 867], [814, 866], [815, 865], [815, 860], [814, 859], [814, 858], [813, 857], [812, 857], [811, 856]]}, "center": {"180-258, T": [810, 863]}}, +{"id": 5471, "name": "Minecraft Logo", "description": "The icon displayed is the logo of the best selling game of all time, Minecraft. The object depicted is the classic grass block that has become extremely iconic over the years, and WAS Minecrafts logo until they replaced with a black and white creeper. (A monster in the game that is essentially the mascot of the game.)", "links": {"website": ["https://wikipedia.com/Minecraft"], "subreddit": ["minecraft"]}, "path": {"250-258, T": [[-704, 980], [-698, 975], [-691, 979], [-691, 990], [-696, 992], [-696, 993], [-700, 993], [-704, 989], [-705, 981]]}, "center": {"250-258, T": [-698, 984]}}, +{"id": 5472, "name": "Stardew Valley duck", "description": "A duck from Stardew Valley with a Dutch heart. A collaboration between Stardew Valley and PlaceNL.", "links": {"website": ["https://stardewvalleywiki.com/Duck"], "subreddit": ["PlaceNL", "StardewValley"], "discord": ["placenl"]}, "path": {"116-258, T": [[989, -451], [994, -452], [998, -455], [998, -457], [996, -461], [996, -464], [990, -467], [988, -470], [989, -479], [987, -481], [982, -481], [980, -478], [980, -465], [980, -461], [979, -457], [976, -455], [978, -451], [992, -451]]}, "center": {"116-258, T": [988, -459]}}, +{"id": 5473, "name": "Pingu", "description": "Pingu is a stop-motion animated children's television series co-created by Otmar Gutmann and Erika Brueggemann that originally aired in Switzerland, but switched to the United Kingdom in the 2003 revival series.\n\nWas redrawn on top of Kazakhstan flag after the flag took its original place. As a compensation Pingu received a Takiya - kazakh national headwear", "links": {"website": ["https://en.wikipedia.org/wiki/Pingu", "https://en.wikipedia.org/wiki/Taqiyah_(cap)"]}, "path": {"162-258, T": [[-855, 912], [-854, 912], [-851, 909], [-848, 905], [-845, 903], [-842, 902], [-840, 905], [-840, 908], [-842, 913], [-843, 914], [-854, 914]]}, "center": {"162-258, T": [-845, 909]}}, +{"id": 5474, "name": "Friends, not food", "description": "Artwork featuring a cow, the letter V for vegan, and \"friends not food\" as text. Also includes a flower placed by someone unaffiliated, but later incorporated officially.\n\nA collaboration between vegan activists and r/IndiaPlace.", "links": {}, "path": {"198-258, T": [[423, -220], [423, -231], [414, -231], [418, -232], [418, -234], [419, -235], [419, -237], [418, -237], [417, -239], [417, -245], [419, -247], [425, -247], [427, -250], [429, -250], [429, -251], [431, -251], [431, -252], [434, -252], [434, -253], [440, -253], [440, -252], [443, -252], [443, -251], [445, -251], [445, -250], [447, -250], [449, -247], [450, -247], [450, -245], [451, -245], [451, -243], [452, -243], [452, -241], [453, -241], [453, -237], [454, -237], [454, -234], [455, -234], [455, -232], [457, -232], [457, -231], [460, -231], [451, -230], [451, -228], [451, -227], [453, -227], [453, -220]]}, "center": {"198-258, T": [437, -237]}}, +{"id": 5475, "name": "Alhaitham", "description": "A playable character from Genshin Impact. \n\nHe is a 5-star dendro sword user, known for his fractious relationship with roommate Kaveh, and an improbably buff physique despite his repeated claims of being a mere 'feeble scholar'.", "links": {"subreddit": ["AlHaithamMains"]}, "path": {"181-258, T": [[-94, 355], [-92, 351], [-88, 344], [-88, 342], [-86, 342], [-89, 340], [-91, 337], [-88, 332], [-88, 328], [-84, 330], [-79, 336], [-81, 340], [-78, 340], [-80, 343], [-78, 343], [-78, 351], [-81, 356], [-94, 356]]}, "center": {"181-258, T": [-84, 350]}}, {"id": 5476, "name": "Kabuto (Pokemon)", "description": "A terrible drawing of kabuto a water rock fossil pokemon from generation 1 created by the chaos creation group after finally winning against one of their main rivals.\n\nAn attempt was made to recreate the kabuto that was destroyed by the fire with a cowboy hat. The group may or may not have forgotten what the kabutos original pixel art looked like.", "links": {"subreddit": ["ChaosCreations"]}, "path": {"253": [[1040, -986], [1044, -986], [1044, -983], [1040, -983]]}, "center": {"253": [1042, -984]}}, -{"id": 5477, "name": "University of North Carolina at Chapel Hill.", "description": "The University of North Carolina at Chapel Hill, also commonly shortened to UNC or Carolina, is a public university located in Chapel Hill, North Carolina, United States. The interlocking NC logo seen is used by the university's Division I athletic programs, nicknamed the Tar Heels (members of the Atlantic Coast Conference), which are best known for their large success in men's basketball, who have won the NCAA \"March Madness\" Men's Basketball tournament six times. Situated directly above UNC on the canvas is Duke University, one of UNC's most hated rivals in athletics, most notably men's basketball.", "links": {"website": ["https://www.unc.edu/", "https://en.m.wikipedia.org/wiki/University_of_North_Carolina_at_Chapel_Hill"], "subreddit": ["UNC", "tarheels"]}, "path": {"250-258": [[382, 930], [382, 937], [391, 937], [391, 930]]}, "center": {"250-258": [387, 934]}}, -{"id": 5478, "name": "Reimu Fumo", "description": "Reimu Fumo is a chibi plush doll of Reimu Hakurei, the most popular character from the Touhou Project franchise.", "links": {"subreddit": ["touhou", "fumo", "canadaplace"], "discord": ["apl"]}, "path": {"214-258": [[1448, 85], [1446, 83], [1446, 73], [1444, 71], [1444, 66], [1448, 66], [1449, 67], [1450, 67], [1451, 68], [1452, 68], [1453, 69], [1458, 69], [1459, 68], [1460, 68], [1460, 69], [1462, 70], [1462, 74], [1463, 75], [1463, 76], [1464, 77], [1464, 83], [1462, 85]]}, "center": {"214-258": [1454, 77]}}, -{"id": 5479, "name": "Tomoko Kuroki", "description": "The awkward and asocial main character from manga and anime series Watamote. Built and maintained under protection from the Pixel Anime Faction.", "links": {"subreddit": ["watamote"]}, "path": {"250-258": [[-761, -118], [-759, -119], [-757, -120], [-749, -120], [-748, -117], [-748, -120], [-743, -123], [-742, -124], [-738, -124], [-738, -127], [-740, -128], [-740, -132], [-739, -132], [-740, -133], [-741, -134], [-742, -136], [-758, -136], [-759, -135], [-759, -132], [-761, -131], [-761, -129], [-759, -129], [-759, -126], [-760, -126], [-760, -122], [-761, -122]]}, "center": {"250-258": [-750, -128]}}, -{"id": 5480, "name": "Nerdfighters Unite to End Tuberculosis", "description": "Nerdfighteria drew this crabulous crab holding up a sign advocating for the end of Tuberculosis, the world's deadliest infectious disease, on behalf of John and Hank Green's advocacy. Don't Forget To Be Awesome! #DFTBA #PatientsNotPatents", "links": {"website": ["https://www.youtube.com/vlogbrothers"], "subreddit": ["nerdfighters"]}, "path": {"177-258": [[-1436, 596], [-1436, 619], [-1419, 619], [-1419, 596]]}, "center": {"177-258": [-1427, 608]}}, -{"id": 5481, "name": "A Na'vi male, aka (lilguy)", "description": "He is a Na'vi character that represents the greatest movie franchise of all time.", "links": {"subreddit": ["Avatar"]}, "path": {"250-258": [[-1402, 89], [-1402, 100], [-1394, 100], [-1394, 89]]}, "center": {"250-258": [-1398, 95]}}, +{"id": 5477, "name": "University of North Carolina at Chapel Hill.", "description": "The University of North Carolina at Chapel Hill, also commonly shortened to UNC or Carolina, is a public university located in Chapel Hill, North Carolina, United States. The interlocking NC logo seen is used by the university's Division I athletic programs, nicknamed the Tar Heels (members of the Atlantic Coast Conference), which are best known for their large success in men's basketball, who have won the NCAA \"March Madness\" Men's Basketball tournament six times. Situated directly above UNC on the canvas is Duke University, one of UNC's most hated rivals in athletics, most notably men's basketball.", "links": {"website": ["https://www.unc.edu/", "https://en.m.wikipedia.org/wiki/University_of_North_Carolina_at_Chapel_Hill"], "subreddit": ["UNC", "tarheels"]}, "path": {"250-258, T": [[382, 930], [382, 937], [391, 937], [391, 930]]}, "center": {"250-258, T": [387, 934]}}, +{"id": 5478, "name": "Reimu Fumo", "description": "Reimu Fumo is a chibi plush doll of Reimu Hakurei, the most popular character from the Touhou Project franchise.", "links": {"subreddit": ["touhou", "fumo", "canadaplace"], "discord": ["apl"]}, "path": {"214-258, T": [[1448, 85], [1446, 83], [1446, 73], [1444, 71], [1444, 66], [1448, 66], [1449, 67], [1450, 67], [1451, 68], [1452, 68], [1453, 69], [1458, 69], [1459, 68], [1460, 68], [1460, 69], [1462, 70], [1462, 74], [1463, 75], [1463, 76], [1464, 77], [1464, 83], [1462, 85]]}, "center": {"214-258, T": [1454, 77]}}, +{"id": 5479, "name": "Tomoko Kuroki", "description": "The awkward and asocial main character from manga and anime series Watamote. Built and maintained under protection from the Pixel Anime Faction.", "links": {"subreddit": ["watamote"]}, "path": {"250-258, T": [[-761, -118], [-759, -119], [-757, -120], [-749, -120], [-748, -117], [-748, -120], [-743, -123], [-742, -124], [-738, -124], [-738, -127], [-740, -128], [-740, -132], [-739, -132], [-740, -133], [-741, -134], [-742, -136], [-758, -136], [-759, -135], [-759, -132], [-761, -131], [-761, -129], [-759, -129], [-759, -126], [-760, -126], [-760, -122], [-761, -122]]}, "center": {"250-258, T": [-750, -128]}}, +{"id": 5480, "name": "Nerdfighters Unite to End Tuberculosis", "description": "Nerdfighteria drew this crabulous crab holding up a sign advocating for the end of Tuberculosis, the world's deadliest infectious disease, on behalf of John and Hank Green's advocacy. Don't Forget To Be Awesome! #DFTBA #PatientsNotPatents", "links": {"website": ["https://www.youtube.com/vlogbrothers"], "subreddit": ["nerdfighters"]}, "path": {"177-258, T": [[-1436, 596], [-1436, 619], [-1419, 619], [-1419, 596]]}, "center": {"177-258, T": [-1427, 608]}}, +{"id": 5481, "name": "A Na'vi male, aka (lilguy)", "description": "He is a Na'vi character that represents the greatest movie franchise of all time.", "links": {"subreddit": ["Avatar"]}, "path": {"250-258, T": [[-1402, 89], [-1402, 100], [-1394, 100], [-1394, 89]]}, "center": {"250-258, T": [-1398, 95]}}, {"id": 5482, "name": "Larger Fiat 126p", "description": "Larger pixel art of Fiat 126p.\n\nThis charming car was mass-produced under license in communist Poland and became a cult classic.\n\nIt was built by the Polish r/place community and was their only project in the final expansion of the canvas.\n\nDespite heroic defense, it was coverd up by a massive Yu-Gi-Oh dragon.", "links": {"subreddit": ["poland", "polska"]}, "path": {"208": [[1220, 717], [1216, 718], [1203, 721], [1198, 713], [1198, 700], [1211, 697], [1219, 688], [1253, 687], [1266, 706], [1262, 720], [1242, 720], [1219, 720], [1217, 718]]}, "center": {"208": [1232, 704]}}, -{"id": 5483, "name": "Turnip Boy", "description": "Turnip Boy is the protagonist of an indie game titled \"Turnip Boy Commits Tax Evasion\". He owned a Greenhouse in the center of Veggieville, but was evicted by Mayor Onion after failing to pay $143,753 (plus 50% interest) in taxes. Many consider him a menace to Society.\n\nAnd they are right.", "links": {"website": ["https://tbcte.fandom.com/wiki/Turnip_Boy"]}, "path": {"250-258": [[-921, -935], [-925, -935], [-925, -932], [-924, -932], [-924, -931], [-923, -931], [-923, -930], [-922, -928], [-923, -928], [-923, -927], [-924, -927], [-924, -926], [-925, -926], [-925, -924], [-926, -924], [-926, -920], [-925, -920], [-925, -918], [-924, -918], [-924, -916], [-923, -916], [-923, -915], [-922, -914], [-921, -914], [-920, -915], [-920, -916], [-917, -916], [-917, -915], [-916, -914], [-915, -914], [-914, -915], [-913, -916], [-913, -917], [-912, -918], [-912, -919], [-911, -920], [-911, -924], [-912, -925], [-912, -926], [-913, -927], [-914, -928], [-915, -928], [-915, -929], [-914, -930], [-913, -931], [-912, -932], [-912, -934], [-913, -935], [-916, -935], [-917, -936], [-918, -937], [-919, -937], [-920, -936], [-921, -935], [-921, -934]]}, "center": {"250-258": [-918, -922]}}, -{"id": 5484, "name": "Neco-Arc (Mittelflagge)", "description": "Neco-Arc is a Neco Spirit appearing in the Tsukihime visual novel series. She is a pint-size cat girl parody of Arcueid Brunestud, acting as the mascot character of Type-Moon.\n\nMade by the \"amiguitos toxicos\" discord community.\n\nThere's TWO of them Can be found on Nordflagge and Germany Flag / Extension of the Middle.", "links": {"website": ["https://typemoon.fandom.com/wiki/Neco-Arc"]}, "path": {"217-258": [[538, -550], [558, -550], [559, -554], [561, -559], [560, -561], [555, -564], [554, -566], [552, -565], [549, -565], [546, -565], [543, -564], [541, -568], [539, -568], [537, -567], [535, -566], [536, -564], [538, -561], [539, -559], [538, -557]]}, "center": {"217-258": [548, -558]}}, +{"id": 5483, "name": "Turnip Boy", "description": "Turnip Boy is the protagonist of an indie game titled \"Turnip Boy Commits Tax Evasion\". He owned a Greenhouse in the center of Veggieville, but was evicted by Mayor Onion after failing to pay $143,753 (plus 50% interest) in taxes. Many consider him a menace to Society.\n\nAnd they are right.", "links": {"website": ["https://tbcte.fandom.com/wiki/Turnip_Boy"]}, "path": {"250-258, T": [[-921, -935], [-925, -935], [-925, -932], [-924, -932], [-924, -931], [-923, -931], [-923, -930], [-922, -928], [-923, -928], [-923, -927], [-924, -927], [-924, -926], [-925, -926], [-925, -924], [-926, -924], [-926, -920], [-925, -920], [-925, -918], [-924, -918], [-924, -916], [-923, -916], [-923, -915], [-922, -914], [-921, -914], [-920, -915], [-920, -916], [-917, -916], [-917, -915], [-916, -914], [-915, -914], [-914, -915], [-913, -916], [-913, -917], [-912, -918], [-912, -919], [-911, -920], [-911, -924], [-912, -925], [-912, -926], [-913, -927], [-914, -928], [-915, -928], [-915, -929], [-914, -930], [-913, -931], [-912, -932], [-912, -934], [-913, -935], [-916, -935], [-917, -936], [-918, -937], [-919, -937], [-920, -936], [-921, -935], [-921, -934]]}, "center": {"250-258, T": [-918, -922]}}, +{"id": 5484, "name": "Neco-Arc (Mittelflagge)", "description": "Neco-Arc is a Neco Spirit appearing in the Tsukihime visual novel series. She is a pint-size cat girl parody of Arcueid Brunestud, acting as the mascot character of Type-Moon.\n\nMade by the \"amiguitos toxicos\" discord community.\n\nThere's TWO of them Can be found on Nordflagge and Germany Flag / Extension of the Middle.", "links": {"website": ["https://typemoon.fandom.com/wiki/Neco-Arc"]}, "path": {"217-258, T": [[538, -550], [558, -550], [559, -554], [561, -559], [560, -561], [555, -564], [554, -566], [552, -565], [549, -565], [546, -565], [543, -564], [541, -568], [539, -568], [537, -567], [535, -566], [536, -564], [538, -561], [539, -559], [538, -557]]}, "center": {"217-258, T": [548, -558]}}, {"id": 5485, "name": "Unturned Zombie Face", "description": "The face of a zombie from the game \"Unturned\" made by Nelson Sexton. The face stayed there for quite some time before being overtaken by a small german flag that was repelled. the face stayed there for a short while before it was attacked by BFDI fans trying to put characters Marker and Pencil, but were eventually stopped. another short time went by and a black lambda successfully took over the face, and remained there until a picture of a unicorn took over.", "links": {"website": ["https://store.steampowered.com/app/304930/Unturned/"], "subreddit": ["Unturned"], "discord": ["unturned"]}, "path": {"174-197": [[-589, 816], [-590, 815], [-572, 815], [-572, 832], [-590, 832], [-590, 815]]}, "center": {"174-197": [-581, 824]}}, -{"id": 5486, "name": "Little Possums", "description": "A couples' two little possums featuring their initials above their heads together until the end <3", "links": {}, "path": {"250-258": [[-824, -942], [-824, -950], [-822, -950], [-822, -956], [-814, -956], [-814, -950], [-799, -950], [-799, -944], [-809, -944], [-811, -942]]}, "center": {"250-258": [-818, -947]}}, -{"id": 5487, "name": "Tsunomaki Watame (Minecraft Head)", "description": "Watame is part of the 4th generation of Japanese talents in Hololive under COVER Corp. and is one of the most prolific Hololive members. She is known for her passion for music with a nearly weekly singing stream, high production videos, her subtitled short video series and her long streams. As her main passion is music, she has a lot of English subbed original songs and cover songs that she would be very happy if you checked them out!\n\nFor those unfamiliar with Hololive in general, it is a group under COVER corp that do everything from video game streaming to live concerts. What makes them different from your typical streamers is they are also vtubers (virtual youtubers) that use 2d/3d avatars for their activities which allows them more anonymity and creativity in their pursuits.\n\nWhile the main branch of Hololive Production is Japanese they also have an Indonesian and English branches as well as a group for male talents called the Holostars. All of the talents are currently listed on the right side of the sub-Reddit along with links to their Youtube page and Twitter. There is a very diverse set of talents, skills and interests so it's likely you would be able to find something for you.", "links": {"website": ["https://www.youtube.com/@TsunomakiWatame"], "subreddit": ["hololive"], "discord": ["vtubersplace", "watame"]}, "path": {"195-258": [[-191, -803], [-191, -794], [-182, -794], [-182, -803]]}, "center": {"195-258": [-186, -798]}}, +{"id": 5486, "name": "Little Possums", "description": "A couples' two little possums featuring their initials above their heads together until the end <3", "links": {}, "path": {"250-258, T": [[-824, -942], [-824, -950], [-822, -950], [-822, -956], [-814, -956], [-814, -950], [-799, -950], [-799, -944], [-809, -944], [-811, -942]]}, "center": {"250-258, T": [-818, -947]}}, +{"id": 5487, "name": "Tsunomaki Watame (Minecraft Head)", "description": "Watame is part of the 4th generation of Japanese talents in Hololive under COVER Corp. and is one of the most prolific Hololive members. She is known for her passion for music with a nearly weekly singing stream, high production videos, her subtitled short video series and her long streams. As her main passion is music, she has a lot of English subbed original songs and cover songs that she would be very happy if you checked them out!\n\nFor those unfamiliar with Hololive in general, it is a group under COVER corp that do everything from video game streaming to live concerts. What makes them different from your typical streamers is they are also vtubers (virtual youtubers) that use 2d/3d avatars for their activities which allows them more anonymity and creativity in their pursuits.\n\nWhile the main branch of Hololive Production is Japanese they also have an Indonesian and English branches as well as a group for male talents called the Holostars. All of the talents are currently listed on the right side of the sub-Reddit along with links to their Youtube page and Twitter. There is a very diverse set of talents, skills and interests so it's likely you would be able to find something for you.", "links": {"website": ["https://www.youtube.com/@TsunomakiWatame"], "subreddit": ["hololive"], "discord": ["vtubersplace", "watame"]}, "path": {"195-258, T": [[-191, -803], [-191, -794], [-182, -794], [-182, -803]]}, "center": {"195-258, T": [-186, -798]}}, {"id": 5488, "name": "ACAB on the french flag", "description": "An anagram of \"all cops are bastards\", it is a famous slogan used by antifascists and politically left people and protestors, as if yet, nobody knows if a central organisation did it or just random people grouping together directly through the canvas", "links": {}, "path": {"70-203": [[-460, 74], [-429, 74], [-429, 86], [-460, 86]]}, "center": {"70-203": [-444, 80]}}, -{"id": 5489, "name": "Mini-TMNT", "description": "Teenage Mutant Ninja Turtles, sometimes abbreviated to TMNT, is an American media franchise created by the comic book artists Kevin Eastman and Peter Laird. \nIt follows Donatello (Purble), Leonardo (Blue), Michelangelo (Orange) and Raphael (Red), four anthropomorphic turtle brothers trained in ninjutsu who fight evil in New York City.", "links": {"website": ["https://en.wikipedia.org/wiki/Teenage_Mutant_Ninja_Turtles"]}, "path": {"250-258": [[-1022, -397], [-1022, -391], [-968, -391], [-968, -397]]}, "center": {"250-258": [-995, -394]}}, -{"id": 5490, "name": "Solvognen", "description": "Solvognen (English: The Sun Wagon/Chariot) is an estimated 3400 year old bronze and gold decoration from the bronze age, and is a danish national treasure. \n\nIt was found on the island of Sealand in 1902.\n\nIt depicts the sun being carried in a wagon, driven by a horse. It is highly believed that this shows the old pagan belief that the sun (and the moon) was driven around the sky by horse.", "links": {"website": ["https://en.natmus.dk/historical-knowledge/denmark/prehistoric-period-until-1050-ad/the-bronze-age/the-sun-chariot/"], "subreddit": ["Denmark", "Nordics"], "discord": ["syNkmSN2"]}, "path": {"250-258": [[-193, -211], [-191, -214], [-190, -215], [-184, -216], [-182, -216], [-181, -216], [-178, -214], [-177, -212], [-176, -211], [-175, -209], [-176, -206], [-177, -203], [-178, -202], [-179, -201], [-182, -199], [-182, -197], [-174, -197], [-173, -199], [-173, -200], [-171, -202], [-170, -203], [-170, -204], [-170, -206], [-170, -207], [-171, -207], [-171, -206], [-172, -205], [-169, -208], [-163, -208], [-160, -207], [-159, -207], [-158, -208], [-158, -209], [-157, -210], [-156, -211], [-153, -208], [-154, -208], [-155, -209], [-157, -208], [-158, -207], [-158, -206], [-158, -204], [-158, -203], [-158, -202], [-156, -202], [-155, -201], [-154, -200], [-153, -199], [-153, -196], [-154, -194], [-155, -193], [-155, -192], [-157, -192], [-158, -192], [-160, -192], [-161, -194], [-162, -196], [-162, -197], [-164, -197], [-164, -196], [-166, -194], [-166, -193], [-167, -193], [-168, -193], [-171, -194], [-172, -195], [-173, -196], [-173, -198], [-182, -198], [-182, -196], [-183, -195], [-183, -194], [-185, -193], [-191, -194], [-191, -195], [-192, -198], [-190, -201], [-191, -202], [-192, -203], [-192, -204], [-193, -204], [-193, -206], [-193, -209], [-193, -210]]}, "center": {"250-258": [-184, -208]}}, +{"id": 5489, "name": "Mini-TMNT", "description": "Teenage Mutant Ninja Turtles, sometimes abbreviated to TMNT, is an American media franchise created by the comic book artists Kevin Eastman and Peter Laird. \nIt follows Donatello (Purble), Leonardo (Blue), Michelangelo (Orange) and Raphael (Red), four anthropomorphic turtle brothers trained in ninjutsu who fight evil in New York City.", "links": {"website": ["https://en.wikipedia.org/wiki/Teenage_Mutant_Ninja_Turtles"]}, "path": {"250-258, T": [[-1022, -397], [-1022, -391], [-968, -391], [-968, -397]]}, "center": {"250-258, T": [-995, -394]}}, +{"id": 5490, "name": "Solvognen", "description": "Solvognen (English: The Sun Wagon/Chariot) is an estimated 3400 year old bronze and gold decoration from the bronze age, and is a danish national treasure. \n\nIt was found on the island of Sealand in 1902.\n\nIt depicts the sun being carried in a wagon, driven by a horse. It is highly believed that this shows the old pagan belief that the sun (and the moon) was driven around the sky by horse.", "links": {"website": ["https://en.natmus.dk/historical-knowledge/denmark/prehistoric-period-until-1050-ad/the-bronze-age/the-sun-chariot/"], "subreddit": ["Denmark", "Nordics"], "discord": ["syNkmSN2"]}, "path": {"250-258, T": [[-193, -211], [-191, -214], [-190, -215], [-184, -216], [-182, -216], [-181, -216], [-178, -214], [-177, -212], [-176, -211], [-175, -209], [-176, -206], [-177, -203], [-178, -202], [-179, -201], [-182, -199], [-182, -197], [-174, -197], [-173, -199], [-173, -200], [-171, -202], [-170, -203], [-170, -204], [-170, -206], [-170, -207], [-171, -207], [-171, -206], [-172, -205], [-169, -208], [-163, -208], [-160, -207], [-159, -207], [-158, -208], [-158, -209], [-157, -210], [-156, -211], [-153, -208], [-154, -208], [-155, -209], [-157, -208], [-158, -207], [-158, -206], [-158, -204], [-158, -203], [-158, -202], [-156, -202], [-155, -201], [-154, -200], [-153, -199], [-153, -196], [-154, -194], [-155, -193], [-155, -192], [-157, -192], [-158, -192], [-160, -192], [-161, -194], [-162, -196], [-162, -197], [-164, -197], [-164, -196], [-166, -194], [-166, -193], [-167, -193], [-168, -193], [-171, -194], [-172, -195], [-173, -196], [-173, -198], [-182, -198], [-182, -196], [-183, -195], [-183, -194], [-185, -193], [-191, -194], [-191, -195], [-192, -198], [-190, -201], [-191, -202], [-192, -203], [-192, -204], [-193, -204], [-193, -206], [-193, -209], [-193, -210]]}, "center": {"250-258, T": [-184, -208]}}, {"id": 5491, "name": "Flag of Honduras.", "description": "A small flag of Honduras, including a parrot and the country's intitials: 'HN'. Honduras is a Spanish-speaking Central American country.", "links": {"website": ["https://en.wikipedia.org/wiki/Honduras"], "subreddit": ["placehn", "Honduras"]}, "path": {"126-145": [[162, -501], [162, -496], [163, -494], [164, -493], [165, -494], [166, -492], [166, -490], [167, -489], [167, -481], [187, -481], [188, -481], [188, -501]]}, "center": {"126-145": [177, -491]}}, -{"id": 5492, "name": "University of Central Florida", "description": "The University of Central Florida, most commonly shortened to UCF, is a public university located in Orlando, Florida, United States. The university is one of the largest in the country in terms of enrollment, having over 68,000 attending students as of 2022. The university's Division I athletic programs, the Knights, currently compete in the Big 12 since they joined the conference in 2023.", "links": {"website": ["https://www.ucf.edu/"], "subreddit": ["ucf"]}, "path": {"221-258": [[391, 924], [391, 942], [395, 938], [395, 924], [394, 924], [393, 925]]}, "center": {"221-258": [393, 933]}}, -{"id": 5493, "name": "Bluetooth", "description": "The bluetooth logo.\n\nIt is named after the first christian king of Denmark, Harald Bluetooth.\n\nIt was painted indigo in the last few hours of Place as a remembrance.", "links": {"subreddit": ["Denmark", "Nordics"], "discord": ["syNkmSN2"]}, "path": {"250-258": [[-83, -183], [-73, -183], [-73, -201], [-83, -201]]}, "center": {"250-258": [-78, -192]}}, -{"id": 5494, "name": "Spaghetti on a Plate", "description": "A plate filled with spaghetti, tomato sauce and a fork.\n\nWas created by a small group of people with the goal of reaching the end of the r/place 2023 without getting destroyed.\nThe motif was chosen because the group leader ate spaghetti for lunch.", "links": {}, "path": {"234-258": [[-367, -489], [-368, -489], [-366, -495], [-361, -496], [-357, -495], [-361, -488], [-366, -487], [-368, -488]]}, "center": {"234-258": [-363, -492]}}, -{"id": 5495, "name": "MarioRRom", "description": "MarioRRom is a streamer/youtuber from Argentina. He is currently a Geometry Dash player and put together this art together with his MarioRRom community.", "links": {"website": ["https://www.youtube.com/@MarioRRom"], "subreddit": ["MarioRRom"], "discord": ["nbMqcStyuB"]}, "path": {"172-258": [[-146, -600], [-135, -600], [-135, -606], [-91, -606], [-91, -599], [-85, -599], [-85, -593], [-146, -593]]}, "center": {"172-258": [-115, -599]}}, -{"id": 5496, "name": "Umphreys McGee", "description": "Logo for the American jam band from South Bend Indiana. Known for experimenting with many musical such as rock, metal, funk, jazz, blues, reggae, electronic, bluegrass, country and, folk. The band is named after front man Brendan Baylis' cousin, Humphrey Magee", "links": {"website": ["https://www.umphreys.com/"], "subreddit": ["umphreys"]}, "path": {"250-258": [[489, 11], [490, 15], [490, 14], [493, 15], [495, 15], [496, 15], [496, 14], [498, 15], [494, 16], [488, 10], [491, 17], [489, 16], [497, 13], [491, 13], [496, 17], [497, 16], [491, 17], [489, 11], [488, 10], [487, 10], [488, 11], [487, 8], [488, 10], [489, 10], [497, 14], [497, 13], [498, 17], [489, 15], [495, 15]]}, "center": {"250-258": [495, 14]}}, -{"id": 5497, "name": "BFDI Outpost", "description": "One of the few outposts from bfdi.\nSee Needle Place for more information about bfdi.", "links": {"subreddit": ["battlefordreamisland"]}, "path": {"250-258": [[-971, -195], [-971, -192], [-956, -192], [-955, -193], [-954, -192], [-954, -194], [-952, -194], [-952, -192], [-951, -192], [-950, -193], [-951, -194], [-950, -195], [-951, -196], [-952, -196], [-952, -200], [-954, -200], [-954, -199], [-955, -198], [-955, -197], [-956, -196], [-957, -196], [-958, -195], [-959, -196], [-960, -196], [-961, -196], [-962, -195], [-971, -195], [-970, -195]]}, "center": {"250-258": [-960, -194]}}, -{"id": 5498, "name": "officio narrativus", "description": "Podcast de warhammer 40k en español.\nTodos los viernes a partir de la 9PM hora peruana por huntleo, tammy y lordnekito simp de okayu.", "links": {"website": ["https://www.twitch.tv/gohuntleo", "https://www.twitch.tv/tammy_bb", "https://www.twitch.tv/lordnekito"]}, "path": {"250-258": [[-671, -898], [-671, -889], [-699, -890], [-699, -899], [-707, -899], [-708, -889], [-700, -899], [-707, -889], [-708, -880], [-697, -881], [-697, -891], [-707, -899], [-708, -911], [-691, -911], [-691, -899], [-671, -899], [-703, -898], [-704, -898]]}, "center": {"250-258": [-697, -905]}}, -{"id": 5499, "name": "Toilet-bound Hanako-kun", "description": "Toilet-Bound Hanako-kun (Japanese: 地縛少年花子くん) is a Japanese manga series written by Iro and illustrated by Aida. \nIt has been serialized in Square Enix's magazine Monthly GFantasy since 2014. \n\nThe Art depicts Hanako-kun at the bottom alongside his two haku-joudai (spirit orbs) and two \"mokke\" (rabit-like supernaturals) at the top.", "links": {"subreddit": ["hanakokun"]}, "path": {"237-258": [[-1026, 252], [-1025, 252], [-1006, 252], [-1006, 259], [-1006, 260], [-1010, 260], [-1017, 260], [-1020, 260], [-1020, 262], [-1017, 262], [-1017, 266], [-1019, 266], [-1019, 273], [-1028, 273], [-1028, 263], [-1029, 263], [-1029, 259], [-1026, 259], [-1026, 252], [-1025, 252]]}, "center": {"237-258": [-1023, 265]}}, -{"id": 5500, "name": "The Ring", "description": "The Ring, also known as the Gold Ring, is an object that appears in the Sonic the Hedgehog series. Rings serve as a unique health system in gameplay throughout most of the series; in most cases, as long as the players hold even one Ring, it will protect them from losing a life upon taking damage. Instead, the players lose a portion of their Rings, though the amount varies between games. Aside from this, Rings have served many other purposes in different games, and collecting them grants things like extra lives, Continues and points.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["tails"]}, "path": {"245-258": [[-1097, 377], [-1095, 381], [-1092, 379], [-1093, 376], [-1096, 376]]}, "center": {"245-258": [-1094, 378]}}, -{"id": 5501, "name": "Darkwolf", "description": "Peruvian music producer and sometimes streamer. Owner of Arctic Dog Records. An attempt was made to complete the name with a single person, did not work.", "links": {"website": ["https://www.twitch.tv/darkwolf150pe", "https://www.instagram.com/arcticdogrecords/", "https://www.fiverr.com/alfonzogarcia"], "discord": ["B5aRpWMGct"]}, "path": {"240-258": [[-689, -878], [-689, -866], [-672, -865], [-672, -878], [-680, -879]]}, "center": {"240-258": [-680, -872]}}, -{"id": 5502, "name": "Leeds United", "description": "Leeds United Football Club dons a gradient variation of the club's scarf with their colours of white, yellow and blue. It includes the year the club was founded in its design.", "links": {"subreddit": ["leedsunited"]}, "path": {"151-258": [[-916, -226], [-896, -226], [-896, -212], [-916, -211]]}, "center": {"151-258": [-906, -219]}}, -{"id": 5503, "name": "Clover (Totally Spies!)", "description": "Totally Spies! is a french animated series, largely inspired by Charlie's Angels, where three teenagers, Clover, Sam and Alex, are spies working for WOOHP (World Office Of Human Protection), a secret organization led by Jerry. They are sent across the world to counteract evil plans plotted by villains, helped with their gadgets. \n\nIt has spawned 5 seasons between 2001 and 2008, a spin-off series called \"The Amazing Spiez!\" between 2009 and 2012, a 6th season in 2013, and a 7th season is in production, due to air in 2024.\n\nThe character depicted on the art is Clover, checking a smart gadget called the \"Compowder\". Clover is a girly and flirtatious character who loves boys, fashion, and beauty. Despite her vanity, she is loyal to her friends and willing to help them, even if it means getting messy. She's knowledgeable about pop culture and male celebrities. Villains often seek revenge against her.", "links": {"website": ["https://en.wikipedia.org/wiki/Totally_Spies!", "https://fr.wikipedia.org/wiki/Totally_Spies!"], "subreddit": ["TotallySpies"]}, "path": {"121-258": [[951, -685], [956, -675], [962, -671], [965, -671], [973, -675], [981, -674], [981, -669], [975, -659], [979, -657], [978, -655], [971, -656], [957, -647], [951, -642], [956, -632], [958, -630], [962, -631], [964, -634], [970, -639], [973, -650], [977, -652], [983, -644], [988, -643], [988, -650], [989, -670], [986, -673], [990, -676], [989, -683], [987, -687], [987, -693], [982, -695], [975, -696], [973, -698], [968, -696], [964, -689], [965, -686], [962, -681], [963, -688], [959, -693], [954, -694], [951, -692], [950, -688]]}, "center": {"121-258": [977, -685]}}, -{"id": 5504, "name": "Chestnut Puck (Berserk) (Romania Collaboration)", "description": "Puck is an elf of the Pisky race, descendants of the ancient spirits of wind. He is a secondary character from the manga/anime \"Berserk\" by Kentaro Miura. Puck is a former denizen of Elfhelm, the idyllic elven realm of the Flower Storm Monarch, he left out of sheer boredom and became Guts' first newfound companion since.\n\nDuring comedic moments in the first manga story, Puck has exaggerated \"chibi\" comic features. In later arcs of both the manga and anime, Puck is drawn in his standard \"chestnut\" chibi form: his limbs become stubby, and his body appears short and round. In this form, his hair is represented by a blue tinged point on his head, and his eyes appear as horizontal lines. \n\nAfter being erased by the streamer Bratishkinoff, the Band of the Hawk were approached by r/placeRomania and they offered Puck a place on their flag and even went the extra mile to create his look purely from a reference image, the Romanian community then proceeded to defend Puck while also changing his expression periodically, the most notable and enjoyable expression change was by far \"Count Puckula\" \n\n\"All right. You win, Puck. That can be your place.\" -Guts, Berserk Volume 16 \"The Beast of Darkness\"", "links": {"website": ["https://berserk.fandom.com/wiki/Puck"], "subreddit": ["placeromania"], "discord": ["5Yr3UEYXRZ", "SvschqVVmF"]}, "path": {"154-258": [[-317, 151], [-318, 151], [-318, 150], [-323, 150], [-323, 152], [-324, 152], [-324, 153], [-325, 153], [-327, 155], [-327, 158], [-328, 159], [-329, 160], [-329, 161], [-330, 162], [-331, 163], [-328, 167], [-327, 168], [-327, 170], [-324, 173], [-322, 173], [-321, 174], [-320, 173], [-319, 172], [-318, 172], [-317, 173], [-316, 172], [-315, 172], [-314, 173], [-313, 174], [-312, 173], [-311, 172], [-309, 172], [-307, 171], [-307, 169], [-305, 169], [-304, 168], [-304, 161], [-305, 160], [-305, 158], [-306, 157], [-306, 156], [-307, 155], [-307, 154], [-308, 154], [-310, 152], [-312, 152], [-312, 151], [-317, 151], [-317, 150]]}, "center": {"154-258": [-317, 161]}}, +{"id": 5492, "name": "University of Central Florida", "description": "The University of Central Florida, most commonly shortened to UCF, is a public university located in Orlando, Florida, United States. The university is one of the largest in the country in terms of enrollment, having over 68,000 attending students as of 2022. The university's Division I athletic programs, the Knights, currently compete in the Big 12 since they joined the conference in 2023.", "links": {"website": ["https://www.ucf.edu/"], "subreddit": ["ucf"]}, "path": {"221-258, T": [[391, 924], [391, 942], [395, 938], [395, 924], [394, 924], [393, 925]]}, "center": {"221-258, T": [393, 933]}}, +{"id": 5493, "name": "Bluetooth", "description": "The bluetooth logo.\n\nIt is named after the first christian king of Denmark, Harald Bluetooth.\n\nIt was painted indigo in the last few hours of Place as a remembrance.", "links": {"subreddit": ["Denmark", "Nordics"], "discord": ["syNkmSN2"]}, "path": {"250-258, T": [[-83, -183], [-73, -183], [-73, -201], [-83, -201]]}, "center": {"250-258, T": [-78, -192]}}, +{"id": 5494, "name": "Spaghetti on a Plate", "description": "A plate filled with spaghetti, tomato sauce and a fork.\n\nWas created by a small group of people with the goal of reaching the end of the r/place 2023 without getting destroyed.\nThe motif was chosen because the group leader ate spaghetti for lunch.", "links": {}, "path": {"234-258, T": [[-367, -489], [-368, -489], [-366, -495], [-361, -496], [-357, -495], [-361, -488], [-366, -487], [-368, -488]]}, "center": {"234-258, T": [-363, -492]}}, +{"id": 5495, "name": "MarioRRom", "description": "MarioRRom is a streamer/youtuber from Argentina. He is currently a Geometry Dash player and put together this art together with his MarioRRom community.", "links": {"website": ["https://www.youtube.com/@MarioRRom"], "subreddit": ["MarioRRom"], "discord": ["nbMqcStyuB"]}, "path": {"172-258, T": [[-146, -600], [-135, -600], [-135, -606], [-91, -606], [-91, -599], [-85, -599], [-85, -593], [-146, -593]]}, "center": {"172-258, T": [-115, -599]}}, +{"id": 5496, "name": "Umphreys McGee", "description": "Logo for the American jam band from South Bend Indiana. Known for experimenting with many musical such as rock, metal, funk, jazz, blues, reggae, electronic, bluegrass, country and, folk. The band is named after front man Brendan Baylis' cousin, Humphrey Magee", "links": {"website": ["https://www.umphreys.com/"], "subreddit": ["umphreys"]}, "path": {"250-258, T": [[489, 11], [490, 15], [490, 14], [493, 15], [495, 15], [496, 15], [496, 14], [498, 15], [494, 16], [488, 10], [491, 17], [489, 16], [497, 13], [491, 13], [496, 17], [497, 16], [491, 17], [489, 11], [488, 10], [487, 10], [488, 11], [487, 8], [488, 10], [489, 10], [497, 14], [497, 13], [498, 17], [489, 15], [495, 15]]}, "center": {"250-258, T": [495, 14]}}, +{"id": 5497, "name": "BFDI Outpost", "description": "One of the few outposts from bfdi.\nSee Needle Place for more information about bfdi.", "links": {"subreddit": ["battlefordreamisland"]}, "path": {"250-258, T": [[-971, -195], [-971, -192], [-956, -192], [-955, -193], [-954, -192], [-954, -194], [-952, -194], [-952, -192], [-951, -192], [-950, -193], [-951, -194], [-950, -195], [-951, -196], [-952, -196], [-952, -200], [-954, -200], [-954, -199], [-955, -198], [-955, -197], [-956, -196], [-957, -196], [-958, -195], [-959, -196], [-960, -196], [-961, -196], [-962, -195], [-971, -195], [-970, -195]]}, "center": {"250-258, T": [-960, -194]}}, +{"id": 5498, "name": "officio narrativus", "description": "Podcast de warhammer 40k en español.\nTodos los viernes a partir de la 9PM hora peruana por huntleo, tammy y lordnekito simp de okayu.", "links": {"website": ["https://www.twitch.tv/gohuntleo", "https://www.twitch.tv/tammy_bb", "https://www.twitch.tv/lordnekito"]}, "path": {"250-258, T": [[-671, -898], [-671, -889], [-699, -890], [-699, -899], [-707, -899], [-708, -889], [-700, -899], [-707, -889], [-708, -880], [-697, -881], [-697, -891], [-707, -899], [-708, -911], [-691, -911], [-691, -899], [-671, -899], [-703, -898], [-704, -898]]}, "center": {"250-258, T": [-697, -905]}}, +{"id": 5499, "name": "Toilet-bound Hanako-kun", "description": "Toilet-Bound Hanako-kun (Japanese: 地縛少年花子くん) is a Japanese manga series written by Iro and illustrated by Aida. \nIt has been serialized in Square Enix's magazine Monthly GFantasy since 2014. \n\nThe Art depicts Hanako-kun at the bottom alongside his two haku-joudai (spirit orbs) and two \"mokke\" (rabit-like supernaturals) at the top.", "links": {"subreddit": ["hanakokun"]}, "path": {"237-258, T": [[-1026, 252], [-1025, 252], [-1006, 252], [-1006, 259], [-1006, 260], [-1010, 260], [-1017, 260], [-1020, 260], [-1020, 262], [-1017, 262], [-1017, 266], [-1019, 266], [-1019, 273], [-1028, 273], [-1028, 263], [-1029, 263], [-1029, 259], [-1026, 259], [-1026, 252], [-1025, 252]]}, "center": {"237-258, T": [-1023, 265]}}, +{"id": 5500, "name": "The Ring", "description": "The Ring, also known as the Gold Ring, is an object that appears in the Sonic the Hedgehog series. Rings serve as a unique health system in gameplay throughout most of the series; in most cases, as long as the players hold even one Ring, it will protect them from losing a life upon taking damage. Instead, the players lose a portion of their Rings, though the amount varies between games. Aside from this, Rings have served many other purposes in different games, and collecting them grants things like extra lives, Continues and points.", "links": {"subreddit": ["sonicthehedgehog"], "discord": ["tails"]}, "path": {"245-258, T": [[-1097, 377], [-1095, 381], [-1092, 379], [-1093, 376], [-1096, 376]]}, "center": {"245-258, T": [-1094, 378]}}, +{"id": 5501, "name": "Darkwolf", "description": "Peruvian music producer and sometimes streamer. Owner of Arctic Dog Records. An attempt was made to complete the name with a single person, did not work.", "links": {"website": ["https://www.twitch.tv/darkwolf150pe", "https://www.instagram.com/arcticdogrecords/", "https://www.fiverr.com/alfonzogarcia"], "discord": ["B5aRpWMGct"]}, "path": {"240-258, T": [[-689, -878], [-689, -866], [-672, -865], [-672, -878], [-680, -879]]}, "center": {"240-258, T": [-680, -872]}}, +{"id": 5502, "name": "Leeds United", "description": "Leeds United Football Club dons a gradient variation of the club's scarf with their colours of white, yellow and blue. It includes the year the club was founded in its design.", "links": {"subreddit": ["leedsunited"]}, "path": {"151-258, T": [[-916, -226], [-896, -226], [-896, -212], [-916, -211]]}, "center": {"151-258, T": [-906, -219]}}, +{"id": 5503, "name": "Clover (Totally Spies!)", "description": "Totally Spies! is a french animated series, largely inspired by Charlie's Angels, where three teenagers, Clover, Sam and Alex, are spies working for WOOHP (World Office Of Human Protection), a secret organization led by Jerry. They are sent across the world to counteract evil plans plotted by villains, helped with their gadgets. \n\nIt has spawned 5 seasons between 2001 and 2008, a spin-off series called \"The Amazing Spiez!\" between 2009 and 2012, a 6th season in 2013, and a 7th season is in production, due to air in 2024.\n\nThe character depicted on the art is Clover, checking a smart gadget called the \"Compowder\". Clover is a girly and flirtatious character who loves boys, fashion, and beauty. Despite her vanity, she is loyal to her friends and willing to help them, even if it means getting messy. She's knowledgeable about pop culture and male celebrities. Villains often seek revenge against her.", "links": {"website": ["https://en.wikipedia.org/wiki/Totally_Spies!", "https://fr.wikipedia.org/wiki/Totally_Spies!"], "subreddit": ["TotallySpies"]}, "path": {"121-258, T": [[951, -685], [956, -675], [962, -671], [965, -671], [973, -675], [981, -674], [981, -669], [975, -659], [979, -657], [978, -655], [971, -656], [957, -647], [951, -642], [956, -632], [958, -630], [962, -631], [964, -634], [970, -639], [973, -650], [977, -652], [983, -644], [988, -643], [988, -650], [989, -670], [986, -673], [990, -676], [989, -683], [987, -687], [987, -693], [982, -695], [975, -696], [973, -698], [968, -696], [964, -689], [965, -686], [962, -681], [963, -688], [959, -693], [954, -694], [951, -692], [950, -688]]}, "center": {"121-258, T": [977, -685]}}, +{"id": 5504, "name": "Chestnut Puck (Berserk) (Romania Collaboration)", "description": "Puck is an elf of the Pisky race, descendants of the ancient spirits of wind. He is a secondary character from the manga/anime \"Berserk\" by Kentaro Miura. Puck is a former denizen of Elfhelm, the idyllic elven realm of the Flower Storm Monarch, he left out of sheer boredom and became Guts' first newfound companion since.\n\nDuring comedic moments in the first manga story, Puck has exaggerated \"chibi\" comic features. In later arcs of both the manga and anime, Puck is drawn in his standard \"chestnut\" chibi form: his limbs become stubby, and his body appears short and round. In this form, his hair is represented by a blue tinged point on his head, and his eyes appear as horizontal lines. \n\nAfter being erased by the streamer Bratishkinoff, the Band of the Hawk were approached by r/placeRomania and they offered Puck a place on their flag and even went the extra mile to create his look purely from a reference image, the Romanian community then proceeded to defend Puck while also changing his expression periodically, the most notable and enjoyable expression change was by far \"Count Puckula\" \n\n\"All right. You win, Puck. That can be your place.\" -Guts, Berserk Volume 16 \"The Beast of Darkness\"", "links": {"website": ["https://berserk.fandom.com/wiki/Puck"], "subreddit": ["placeromania"], "discord": ["5Yr3UEYXRZ", "SvschqVVmF"]}, "path": {"154-258, T": [[-317, 151], [-318, 151], [-318, 150], [-323, 150], [-323, 152], [-324, 152], [-324, 153], [-325, 153], [-327, 155], [-327, 158], [-328, 159], [-329, 160], [-329, 161], [-330, 162], [-331, 163], [-328, 167], [-327, 168], [-327, 170], [-324, 173], [-322, 173], [-321, 174], [-320, 173], [-319, 172], [-318, 172], [-317, 173], [-316, 172], [-315, 172], [-314, 173], [-313, 174], [-312, 173], [-311, 172], [-309, 172], [-307, 171], [-307, 169], [-305, 169], [-304, 168], [-304, 161], [-305, 160], [-305, 158], [-306, 157], [-306, 156], [-307, 155], [-307, 154], [-308, 154], [-310, 152], [-312, 152], [-312, 151], [-317, 151], [-317, 150]]}, "center": {"154-258, T": [-317, 161]}}, {"id": 5505, "name": "r/beatleschizophrenia lemon", "description": "Lemon is r/beatleschizophrenias mascot and was a work from a few people. The work was move over 3 times and fineally completed where it's at now.", "links": {"subreddit": ["beatleschizophrenia"], "discord": ["nshWnZqm"]}, "path": {"232": [[-1005, 196], [-1005, 195], [-1004, 196], [-1003, 195], [-1002, 194], [-1001, 193], [-1006, 194], [-1007, 194], [-1008, 193], [-1009, 192], [-1009, 191], [-1009, 189], [-1009, 187], [-1009, 185], [-1008, 185], [-1007, 184], [-1006, 183], [-1005, 182], [-1004, 182], [-1003, 183], [-1002, 184], [-1001, 185], [-1000, 185], [-1000, 187], [-1000, 189], [-1000, 191]]}, "center": {"232": [-1004, 189]}}, -{"id": 5506, "name": "Shy Guy", "description": "A small pixel art made of the shy guy from the Super Mario series. Made by Sinji and Mitch :)", "links": {}, "path": {"245-258": [[-206, 845], [-206, 853], [-197, 853], [-197, 845], [-206, 845], [-203, 851], [-206, 845], [-197, 845], [-197, 853], [-206, 853]]}, "center": {"245-258": [-206, 845]}}, -{"id": 5507, "name": "TAV", "description": "Created in February 2022 by two friends, TAV is a fake tv channel that parodies the Quebec tv channel TVA.", "links": {"subreddit": ["TAV_"]}, "path": {"249-258": [[-1306, 448], [-1306, 451], [-1295, 451], [-1295, 448]]}, "center": {"249-258": [-1300, 450]}}, -{"id": 5508, "name": "Goodbye & Good Riddance", "description": "This art represents the cover art of Goodbye & Good Riddance. Goodbye & Good Riddance is the debut studio album by American rapper and singer Juice Wrld. It was released on May 25, 2018. Its currently 5x platinum in the US.", "links": {"subreddit": ["juicewrld"], "discord": ["juicewrld"]}, "path": {"250-258": [[-1398, 576], [-1383, 576], [-1383, 587], [-1398, 587]]}, "center": {"250-258": [-1390, 582]}}, -{"id": 5509, "name": "Bugcat Capoo", "description": "Bugcat Capoo (貓貓蟲咖波 Māo māo chóng kā bō), sometimes abbreviated to Capoo, is a cartoon character resembling a chubby blue cat with six legs.", "links": {"website": ["https://en.wikipedia.org/wiki/Bugcat_Capoo"]}, "path": {"152-258": [[-83, 409], [-83, 420], [-69, 420], [-69, 408], [-83, 408]]}, "center": {"152-258": [-76, 414]}}, -{"id": 5510, "name": "Go vegan", "description": "A \"go vegan\" message along with a heart and a pig face from Minecraft, later turned into Kirby potentially by someone unaffiliated.\n__________________________________\n\nUn mensaje de \"hazte vegano\" junto con un corazón y una cara de cerdo de Minecraft, más tarde convertido en Kirby potencialmente por alguien externo a la agrupación", "links": {}, "path": {"220-258": [[-1161, -747], [-1133, -747], [-1133, -735], [-1161, -734]]}, "center": {"220-258": [-1149, -741]}}, +{"id": 5506, "name": "Shy Guy", "description": "A small pixel art made of the shy guy from the Super Mario series. Made by Sinji and Mitch :)", "links": {}, "path": {"245-258, T": [[-206, 845], [-206, 853], [-197, 853], [-197, 845], [-206, 845], [-203, 851], [-206, 845], [-197, 845], [-197, 853], [-206, 853]]}, "center": {"245-258, T": [-206, 845]}}, +{"id": 5507, "name": "TAV", "description": "Created in February 2022 by two friends, TAV is a fake tv channel that parodies the Quebec tv channel TVA.", "links": {"subreddit": ["TAV_"]}, "path": {"249-258, T": [[-1306, 448], [-1306, 451], [-1295, 451], [-1295, 448]]}, "center": {"249-258, T": [-1300, 450]}}, +{"id": 5508, "name": "Goodbye & Good Riddance", "description": "This art represents the cover art of Goodbye & Good Riddance. Goodbye & Good Riddance is the debut studio album by American rapper and singer Juice Wrld. It was released on May 25, 2018. Its currently 5x platinum in the US.", "links": {"subreddit": ["juicewrld"], "discord": ["juicewrld"]}, "path": {"250-258, T": [[-1398, 576], [-1383, 576], [-1383, 587], [-1398, 587]]}, "center": {"250-258, T": [-1390, 582]}}, +{"id": 5509, "name": "Bugcat Capoo", "description": "Bugcat Capoo (貓貓蟲咖波 Māo māo chóng kā bō), sometimes abbreviated to Capoo, is a cartoon character resembling a chubby blue cat with six legs.", "links": {"website": ["https://en.wikipedia.org/wiki/Bugcat_Capoo"]}, "path": {"152-258, T": [[-83, 409], [-83, 420], [-69, 420], [-69, 408], [-83, 408]]}, "center": {"152-258, T": [-76, 414]}}, +{"id": 5510, "name": "Go vegan", "description": "A \"go vegan\" message along with a heart and a pig face from Minecraft, later turned into Kirby potentially by someone unaffiliated.\n__________________________________\n\nUn mensaje de \"hazte vegano\" junto con un corazón y una cara de cerdo de Minecraft, más tarde convertido en Kirby potencialmente por alguien externo a la agrupación", "links": {}, "path": {"220-258, T": [[-1161, -747], [-1133, -747], [-1133, -735], [-1161, -734]]}, "center": {"220-258, T": [-1149, -741]}}, {"id": 5511, "name": "👽HellaClan👽", "description": "Comunidad de HellaNella", "links": {"website": ["https://www.twitch.tv/hellanella"]}, "path": {"228-246": [[1181, -971], [1180, -972], [1183, -971], [1184, -971], [1184, -972], [1185, -970], [1181, -970], [1180, -970], [1183, -972], [1184, -972]]}, "center": {"228-246": [1183, -970]}}, -{"id": 5512, "name": "Goose", "description": "Goose is an American jam band. The quintet, based in Norwalk, CT, is comprised of Rick/Rich Mitarotonda (vocals, guitar), Peter Anspach (vocals, keyboards/guitar), Trevor Tweeks/Bass (bass), Ben Atkind (drums) & Percussionist Jeff Areval.", "links": {"website": ["https://en.wikipedia.org/wiki/Goose_(American_band)"], "subreddit": ["GoosetheBand"]}, "path": {"250-258": [[223, -1], [223, -14], [244, -10], [248, -6], [248, -3], [245, -3], [245, -4], [242, -4], [241, -6], [239, -6], [239, -4], [237, -3], [235, -3], [233, -2], [230, -2], [229, -1]]}, "center": {"250-258": [229, -7]}}, -{"id": 5513, "name": "A Robot", "description": "Traffic lights, traffic signals, or stoplights are known as robots in South Africa", "links": {"subreddit": ["southafrica"], "discord": ["jgcSTDum"]}, "path": {"250-258": [[-1311, -631], [-1311, -633], [-1311, -634], [-1312, -634], [-1312, -638], [-1310, -638], [-1310, -634]]}, "center": {"250-258": [-1311, -635]}}, -{"id": 5514, "name": "Flag of Dorset", "description": "Dorset is a ceremonial county in South West England, bordering Devon to the west, Somerset to the north west, Wiltshire to the north east, Hampshire to the east, and the English Channel to the south.", "links": {"website": ["https://en.wikipedia.org/wiki/Dorset", "https://en.wikipedia.org/wiki/Flag_of_Dorset"], "subreddit": ["Dorset", "ukplace", "UKonPlace", "unitedkingdom"]}, "path": {"250-258": [[-334, -299], [-320, -299], [-320, -291], [-334, -291], [-334, -295]]}, "center": {"250-258": [-327, -295]}}, +{"id": 5512, "name": "Goose", "description": "Goose is an American jam band. The quintet, based in Norwalk, CT, is comprised of Rick/Rich Mitarotonda (vocals, guitar), Peter Anspach (vocals, keyboards/guitar), Trevor Tweeks/Bass (bass), Ben Atkind (drums) & Percussionist Jeff Areval.", "links": {"website": ["https://en.wikipedia.org/wiki/Goose_(American_band)"], "subreddit": ["GoosetheBand"]}, "path": {"250-258, T": [[223, -1], [223, -14], [244, -10], [248, -6], [248, -3], [245, -3], [245, -4], [242, -4], [241, -6], [239, -6], [239, -4], [237, -3], [235, -3], [233, -2], [230, -2], [229, -1]]}, "center": {"250-258, T": [229, -7]}}, +{"id": 5513, "name": "A Robot", "description": "Traffic lights, traffic signals, or stoplights are known as robots in South Africa", "links": {"subreddit": ["southafrica"], "discord": ["jgcSTDum"]}, "path": {"250-258, T": [[-1311, -631], [-1311, -633], [-1311, -634], [-1312, -634], [-1312, -638], [-1310, -638], [-1310, -634]]}, "center": {"250-258, T": [-1311, -635]}}, +{"id": 5514, "name": "Flag of Dorset", "description": "Dorset is a ceremonial county in South West England, bordering Devon to the west, Somerset to the north west, Wiltshire to the north east, Hampshire to the east, and the English Channel to the south.", "links": {"website": ["https://en.wikipedia.org/wiki/Dorset", "https://en.wikipedia.org/wiki/Flag_of_Dorset"], "subreddit": ["Dorset", "ukplace", "UKonPlace", "unitedkingdom"]}, "path": {"250-258, T": [[-334, -299], [-320, -299], [-320, -291], [-334, -291], [-334, -295]]}, "center": {"250-258, T": [-327, -295]}}, {"id": 5515, "name": "The best part of Denmark (Jylland)", "description": "Jutland (Danish: Jylland [ˈjyˌlænˀ]; German: Jütland [ˈjyːtlant] (listen); Old English: Ēota land [ˈeːotɑˌlɑnd]), known anciently as the Cimbric or Cimbrian Peninsula (Latin: Cimbricus Chersonesus; Danish: den Kimbriske Halvø or den Jyske Halvø; German: Kimbrische Halbinsel), is a peninsula of Northern Europe that forms the continental portion of Denmark and part of northern Germany. The names are derived from the Jutes and the Cimbri, respectively.", "links": {"website": ["https://en.wikipedia.org/wiki/Jutland"], "subreddit": ["Denmark", "nordics"]}, "path": {"240": [[-34, -225], [-47, -220], [-55, -234], [-56, -254], [-48, -271], [-39, -270], [-33, -278], [-27, -281], [-28, -269], [-31, -260], [-23, -255], [-26, -249], [-34, -247], [-36, -236], [-36, -229], [-35, -225]]}, "center": {"240": [-42, -255]}}, -{"id": 5516, "name": "Inabakumori's Frog", "description": "The frog from Inabakumori's music video, \"Rainy Boots\", illustrated by Nukunuku Nigirmeshi. The song premiered on June 23, 2021 and has amassed more than 5.3 million views since its release.", "links": {"website": ["https://www.youtube.com/watch?v=G5hScSFkib4"], "subreddit": ["inabakumori"], "discord": ["inabakumori"]}, "path": {"213-258": [[-316, 861], [-316, 882], [-299, 882], [-299, 861]]}, "center": {"213-258": [-307, 872]}}, -{"id": 5517, "name": "Bandera Diversidad Colombiana", "description": "Bandra sobre el orgullo de los homosexuales de colombia", "links": {}, "path": {"250-258": [[-999, 653], [-1000, 669], [-883, 672], [-884, 651]]}, "center": {"250-258": [-894, 661]}}, -{"id": 5518, "name": "Kirmada", "description": "Kirmada is a demon who tries to attack Dholakpur and has a grudge on Bheem. He praises and worships Shatan and has appeared in the Chhota Bheem and Krishna film series.", "links": {"website": ["https://chhotabheem.fandom.com/wiki/Kirmada"], "subreddit": ["indiaplace"]}, "path": {"250-258": [[-1114, -188], [-1114, -138], [-1064, -139], [-1065, -188]]}, "center": {"250-258": [-1089, -163]}}, +{"id": 5516, "name": "Inabakumori's Frog", "description": "The frog from Inabakumori's music video, \"Rainy Boots\", illustrated by Nukunuku Nigirmeshi. The song premiered on June 23, 2021 and has amassed more than 5.3 million views since its release.", "links": {"website": ["https://www.youtube.com/watch?v=G5hScSFkib4"], "subreddit": ["inabakumori"], "discord": ["inabakumori"]}, "path": {"213-258, T": [[-316, 861], [-316, 882], [-299, 882], [-299, 861]]}, "center": {"213-258, T": [-307, 872]}}, +{"id": 5517, "name": "Bandera Diversidad Colombiana", "description": "Bandra sobre el orgullo de los homosexuales de colombia", "links": {}, "path": {"250-258, T": [[-999, 653], [-1000, 669], [-883, 672], [-884, 651]]}, "center": {"250-258, T": [-894, 661]}}, +{"id": 5518, "name": "Kirmada", "description": "Kirmada is a demon who tries to attack Dholakpur and has a grudge on Bheem. He praises and worships Shatan and has appeared in the Chhota Bheem and Krishna film series.", "links": {"website": ["https://chhotabheem.fandom.com/wiki/Kirmada"], "subreddit": ["indiaplace"]}, "path": {"250-258, T": [[-1114, -188], [-1114, -138], [-1064, -139], [-1065, -188]]}, "center": {"250-258, T": [-1089, -163]}}, {"id": 5519, "name": "r/havewemet", "description": "A small group of regulars for r/havewemet banded together for a short period of time to create a small duck with the initials LDP to represent the fictional town of Lower Duck Pond.", "links": {"subreddit": ["havewemet"]}, "path": {"124-142": [[-973, -323], [-978, -326], [-978, -310], [-963, -310], [-963, -326], [-977, -326], [-978, -326]]}, "center": {"124-142": [-970, -317]}}, -{"id": 5520, "name": "C J", "description": "Initials of the name of @Jaybee_arts and @orinisshh on twitter", "links": {"website": ["https://twitter.com/orinisshh", "https://twitter.com/JayBee_arts"]}, "path": {"250-258": [[-649, 253], [-649, 257], [-642, 257], [-642, 253]]}, "center": {"250-258": [-645, 255]}}, +{"id": 5520, "name": "C J", "description": "Initials of the name of @Jaybee_arts and @orinisshh on twitter", "links": {"website": ["https://twitter.com/orinisshh", "https://twitter.com/JayBee_arts"]}, "path": {"250-258, T": [[-649, 253], [-649, 257], [-642, 257], [-642, 253]]}, "center": {"250-258, T": [-645, 255]}}, {"id": 5521, "name": "le Puy du Fou", "description": "Le parc du Puy du Fou est un lieu magique situé en France, reconnu mondialement pour son concept unique de \"parc à thème historique\". Il transporte ses visiteurs à travers le temps en proposant des spectacles grandioses et authentiques retraçant différentes époques de l'histoire. La Cinéscénie, spectacle nocturne époustouflant, met en scène plus de 2 000 acteurs et retrace l'histoire de la Vendée. Au cœur de cette réalisation exceptionnelle se trouvent les bénévoles, des passionnés qui jouent un rôle essentiel dans la réussite des spectacles, offrant leur temps et leur dévouement pour donner vie à ces événements inoubliables.", "links": {"website": ["https://www.puydufou.com/"]}, "path": {"239": [[977, -97], [993, -97], [993, -86], [989, -81], [982, -81], [977, -87], [977, -97], [986, -97], [982, -96]]}, "center": {"239": [985, -89]}}, -{"id": 5523, "name": "Mayhem", "description": "Mayhem is a Norwegian black metal band formed in Langhus in 1984. They were one of the founders of the Norwegian black metal scene, and their music has strongly influenced the black metal genre.\n\nAbove the Mayhem logo is a memorial to Pelle Ohlin, known by his stage name \"Dead\", a former vocalist of the band.", "links": {"website": ["https://www.thetruemayhem.com"], "subreddit": ["Mayhem"]}, "path": {"160-188": [[-3, 872], [29, 872], [29, 862], [-3, 862]], "189-258": [[-4, 854], [-4, 872], [30, 872], [30, 854]]}, "center": {"160-188": [13, 867], "189-258": [13, 863]}}, -{"id": 5524, "name": "Geocache II", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is a bison tube.", "links": {"website": ["https://www.geocaching.com/"], "subreddit": ["geocaching"]}, "path": {"210-252": [[-845, -264], [-847, -262], [-842, -262], [-844, -264], [-847, -262], [-847, -255], [-842, -255], [-842, -261], [-847, -261], [-847, -262], [-843, -263]]}, "center": {"210-252": [-845, -259]}}, -{"id": 5525, "name": "LFØ Flower", "description": "\"And this is a horse. Her name is Flower\"\nFlower is an OC created by LFØ on youtube.\nShe is the star character of an in progress animated series by LFØ on youtube/patreon.", "links": {"website": ["https://www.youtube.com/watch?v=rohvbRKHTnA", "https://www.patreon.com/FlowersPatreon"], "discord": ["Hjhk6dhUkZ"]}, "path": {"167-258": [[-499, -635], [-499, -637], [-500, -637], [-500, -641], [-497, -641], [-497, -640], [-496, -640], [-496, -638], [-494, -638], [-494, -635]]}, "center": {"167-258": [-497, -637]}}, -{"id": 5526, "name": "Indio Picaro", "description": "The indio pícaro (saucy Indian) is a traditional Chilean wooden statuette referencing a Mapuche Indian with a broad smile that, when the body is lifted, shows an erect penis or pubic hair (Guacolda or india pícara). The indio pícaro is found in traditional artisan shops in south-central Chile. It is usually made of wood, and generally viewed as a \"gag gift\" or joke, sometimes as decoration.", "links": {"website": ["https://en.wikipedia.org/wiki/Indio_P%C3%ADcaro"], "subreddit": ["chile"]}, "path": {"250-258": [[-833, -854], [-833, -832], [-807, -832], [-810, -836], [-791, -836], [-792, -839], [-794, -841], [-808, -840], [-808, -852], [-812, -856], [-816, -858], [-821, -857], [-822, -852], [-821, -847], [-825, -851], [-826, -855]]}, "center": {"250-258": [-825, -840]}}, -{"id": 5527, "name": "boba (bubble tea)", "description": "a tea-based drink that originated in Taiwan in the early 1980s", "links": {"website": ["https://en.wikipedia.org/wiki/Bubble_tea"]}, "path": {"203-258": [[-72, 559], [-72, 562], [-74, 562], [-74, 568], [-73, 569], [-69, 569], [-68, 568], [-68, 562], [-72, 562]]}, "center": {"203-258": [-71, 565]}}, -{"id": 5528, "name": "Moroccan Tea", "description": "Moroccan tea, is a Moroccan preparation of gunpowder green tea with spearmint leaves and sugar.", "links": {"subreddit": ["morocco"]}, "path": {"111-258": [[432, 54], [432, 58], [431, 59], [428, 59], [428, 54], [426, 54], [426, 61], [425, 62], [422, 62], [422, 64], [422, 65], [418, 65], [418, 59], [417, 59], [417, 58], [414, 58], [414, 57], [413, 57], [413, 56], [412, 56], [412, 55], [411, 55], [411, 54], [412, 54], [413, 54], [413, 55], [414, 56], [415, 55], [416, 53], [418, 51], [419, 51], [422, 54], [423, 53], [425, 53], [429, 53], [432, 53]]}, "center": {"111-258": [422, 58]}}, -{"id": 5529, "name": "ItsKyroYT", "description": "Esta es la skin de un pequeño creador de contenido español llamado Kyro, él junto a sus amigos trabajaron duro para que su cara quedara en el recuerdo", "links": {"website": ["https://www.youtube.com/@itsKyroYT"]}, "path": {"250-258": [[858, -889], [867, -889], [867, -880], [858, -880]]}, "center": {"250-258": [863, -884]}}, -{"id": 5530, "name": "Butterfree", "description": "A cute butterfly-inspired pokemon, created near the earlier stages of its evolution line, Metapod and Caterpie.", "links": {}, "path": {"227-258": [[-1262, 180], [-1260, 183], [-1258, 180], [-1256, 179], [-1255, 177], [-1249, 171], [-1249, 166], [-1250, 166], [-1250, 165], [-1254, 165], [-1255, 166], [-1256, 166], [-1257, 167], [-1258, 167], [-1257, 169], [-1259, 169], [-1258, 167], [-1258, 162], [-1259, 162], [-1259, 160], [-1262, 161], [-1263, 164], [-1264, 167], [-1265, 163], [-1267, 161], [-1268, 160], [-1270, 160], [-1271, 162], [-1270, 163], [-1268, 164], [-1265, 167], [-1266, 167], [-1267, 166], [-1268, 165], [-1271, 164], [-1275, 164], [-1274, 165], [-1275, 166], [-1275, 168], [-1272, 168], [-1272, 167], [-1271, 166], [-1270, 166], [-1269, 167], [-1268, 167], [-1269, 168], [-1270, 169], [-1271, 170], [-1271, 174], [-1270, 174], [-1270, 175], [-1268, 175], [-1267, 176], [-1267, 178], [-1266, 178], [-1265, 179], [-1265, 181], [-1264, 181], [-1263, 183], [-1262, 183], [-1262, 181]]}, "center": {"227-258": [-1262, 174]}}, -{"id": 5531, "name": "Belarus", "description": "The country of Belarus as it appears on a map. The white-red-white flag in the background was introduced as a flag of the Belarusian Democratic Republic (March to December 1918). This flag was also the official flag of the Republic of Belarus from 1991 to 1995. Since 1995, the WRW flag has been used as a symbol of resistance to the regime of Belarus's current leader, Alexander Lukashenko, particularly with the protests following the 2020 Belarusian presidential election.", "links": {"website": ["https://en.wikipedia.org/wiki/Belarus", "https://en.wikipedia.org/wiki/White-red-white_flag"], "subreddit": ["belarus", "PlaceEU"]}, "path": {"158-258": [[-206, 713], [-211, 718], [-213, 723], [-216, 726], [-216, 728], [-215, 729], [-215, 737], [-210, 737], [-192, 734], [-192, 732], [-188, 728], [-183, 728], [-183, 726], [-187, 721], [-190, 721], [-193, 719], [-193, 714], [-196, 714], [-197, 712], [-200, 712], [-200, 713]]}, "center": {"158-258": [-202, 725]}}, +{"id": 5523, "name": "Mayhem", "description": "Mayhem is a Norwegian black metal band formed in Langhus in 1984. They were one of the founders of the Norwegian black metal scene, and their music has strongly influenced the black metal genre.\n\nAbove the Mayhem logo is a memorial to Pelle Ohlin, known by his stage name \"Dead\", a former vocalist of the band.", "links": {"website": ["https://www.thetruemayhem.com"], "subreddit": ["Mayhem"]}, "path": {"160-188": [[-3, 872], [29, 872], [29, 862], [-3, 862]], "189-258, T": [[-4, 854], [-4, 872], [30, 872], [30, 854]]}, "center": {"160-188": [13, 867], "189-258, T": [13, 863]}}, +{"id": 5524, "name": "Geocache II", "description": "Geocaching is an outdoor recreational activity, in which participants use a GPS or mobile device to hide and seek containers, called geocaches at specific locations marked by coordinates all over the world.\n\nThis is one of six geocaches hidden by r/geocaching around the canvas. The cache is a bison tube.", "links": {"website": ["https://www.geocaching.com/"], "subreddit": ["geocaching"]}, "path": {"210-252, T": [[-845, -264], [-847, -262], [-842, -262], [-844, -264], [-847, -262], [-847, -255], [-842, -255], [-842, -261], [-847, -261], [-847, -262], [-843, -263]]}, "center": {"210-252, T": [-845, -259]}}, +{"id": 5525, "name": "LFØ Flower", "description": "\"And this is a horse. Her name is Flower\"\nFlower is an OC created by LFØ on youtube.\nShe is the star character of an in progress animated series by LFØ on youtube/patreon.", "links": {"website": ["https://www.youtube.com/watch?v=rohvbRKHTnA", "https://www.patreon.com/FlowersPatreon"], "discord": ["Hjhk6dhUkZ"]}, "path": {"167-258, T": [[-499, -635], [-499, -637], [-500, -637], [-500, -641], [-497, -641], [-497, -640], [-496, -640], [-496, -638], [-494, -638], [-494, -635]]}, "center": {"167-258, T": [-497, -637]}}, +{"id": 5526, "name": "Indio Picaro", "description": "The indio pícaro (saucy Indian) is a traditional Chilean wooden statuette referencing a Mapuche Indian with a broad smile that, when the body is lifted, shows an erect penis or pubic hair (Guacolda or india pícara). The indio pícaro is found in traditional artisan shops in south-central Chile. It is usually made of wood, and generally viewed as a \"gag gift\" or joke, sometimes as decoration.", "links": {"website": ["https://en.wikipedia.org/wiki/Indio_P%C3%ADcaro"], "subreddit": ["chile"]}, "path": {"250-258, T": [[-833, -854], [-833, -832], [-807, -832], [-810, -836], [-791, -836], [-792, -839], [-794, -841], [-808, -840], [-808, -852], [-812, -856], [-816, -858], [-821, -857], [-822, -852], [-821, -847], [-825, -851], [-826, -855]]}, "center": {"250-258, T": [-825, -840]}}, +{"id": 5527, "name": "boba (bubble tea)", "description": "a tea-based drink that originated in Taiwan in the early 1980s", "links": {"website": ["https://en.wikipedia.org/wiki/Bubble_tea"]}, "path": {"203-258, T": [[-72, 559], [-72, 562], [-74, 562], [-74, 568], [-73, 569], [-69, 569], [-68, 568], [-68, 562], [-72, 562]]}, "center": {"203-258, T": [-71, 565]}}, +{"id": 5528, "name": "Moroccan Tea", "description": "Moroccan tea, is a Moroccan preparation of gunpowder green tea with spearmint leaves and sugar.", "links": {"subreddit": ["morocco"]}, "path": {"111-258, T": [[432, 54], [432, 58], [431, 59], [428, 59], [428, 54], [426, 54], [426, 61], [425, 62], [422, 62], [422, 64], [422, 65], [418, 65], [418, 59], [417, 59], [417, 58], [414, 58], [414, 57], [413, 57], [413, 56], [412, 56], [412, 55], [411, 55], [411, 54], [412, 54], [413, 54], [413, 55], [414, 56], [415, 55], [416, 53], [418, 51], [419, 51], [422, 54], [423, 53], [425, 53], [429, 53], [432, 53]]}, "center": {"111-258, T": [422, 58]}}, +{"id": 5529, "name": "ItsKyroYT", "description": "Esta es la skin de un pequeño creador de contenido español llamado Kyro, él junto a sus amigos trabajaron duro para que su cara quedara en el recuerdo", "links": {"website": ["https://www.youtube.com/@itsKyroYT"]}, "path": {"250-258, T": [[858, -889], [867, -889], [867, -880], [858, -880]]}, "center": {"250-258, T": [863, -884]}}, +{"id": 5530, "name": "Butterfree", "description": "A cute butterfly-inspired pokemon, created near the earlier stages of its evolution line, Metapod and Caterpie.", "links": {}, "path": {"227-258, T": [[-1262, 180], [-1260, 183], [-1258, 180], [-1256, 179], [-1255, 177], [-1249, 171], [-1249, 166], [-1250, 166], [-1250, 165], [-1254, 165], [-1255, 166], [-1256, 166], [-1257, 167], [-1258, 167], [-1257, 169], [-1259, 169], [-1258, 167], [-1258, 162], [-1259, 162], [-1259, 160], [-1262, 161], [-1263, 164], [-1264, 167], [-1265, 163], [-1267, 161], [-1268, 160], [-1270, 160], [-1271, 162], [-1270, 163], [-1268, 164], [-1265, 167], [-1266, 167], [-1267, 166], [-1268, 165], [-1271, 164], [-1275, 164], [-1274, 165], [-1275, 166], [-1275, 168], [-1272, 168], [-1272, 167], [-1271, 166], [-1270, 166], [-1269, 167], [-1268, 167], [-1269, 168], [-1270, 169], [-1271, 170], [-1271, 174], [-1270, 174], [-1270, 175], [-1268, 175], [-1267, 176], [-1267, 178], [-1266, 178], [-1265, 179], [-1265, 181], [-1264, 181], [-1263, 183], [-1262, 183], [-1262, 181]]}, "center": {"227-258, T": [-1262, 174]}}, +{"id": 5531, "name": "Belarus", "description": "The country of Belarus as it appears on a map. The white-red-white flag in the background was introduced as a flag of the Belarusian Democratic Republic (March to December 1918). This flag was also the official flag of the Republic of Belarus from 1991 to 1995. Since 1995, the WRW flag has been used as a symbol of resistance to the regime of Belarus's current leader, Alexander Lukashenko, particularly with the protests following the 2020 Belarusian presidential election.", "links": {"website": ["https://en.wikipedia.org/wiki/Belarus", "https://en.wikipedia.org/wiki/White-red-white_flag"], "subreddit": ["belarus", "PlaceEU"]}, "path": {"158-258, T": [[-206, 713], [-211, 718], [-213, 723], [-216, 726], [-216, 728], [-215, 729], [-215, 737], [-210, 737], [-192, 734], [-192, 732], [-188, 728], [-183, 728], [-183, 726], [-187, 721], [-190, 721], [-193, 719], [-193, 714], [-196, 714], [-197, 712], [-200, 712], [-200, 713]]}, "center": {"158-258, T": [-202, 725]}}, {"id": 5532, "name": "Bellum logo", "description": "Bellum logo made by the fandom, was a Rust series with Spanish-speaking streamers produced by Agustabell212, Ricoy\nXOKAS, Carola", "links": {"website": ["https://twitter.com/Bellum_Rust", "http://twitch.tv/agustabell212", "http://twitch.tv/ricoy", "http://twitch.tv/elxokas", "http://twitch.tv/carola"], "subreddit": ["agustabell212"]}, "path": {"22-23": [[206, -98], [254, -97], [256, -73], [204, -73], [204, -97]]}, "center": {"22-23": [228, -85]}}, -{"id": 5533, "name": "States Lion", "description": "A collaborative artwork of Belgium, The Netherlands, and Luxembourg, the States Lion represents the history that the nations have in common; their fight for independence in the Eighty Years' War.\n\nThe States Lion is featured in the coat of arms of each of the three nations.", "links": {"website": ["https://en.wikipedia.org/wiki/Dutch_Republic_Lion"], "subreddit": ["PlaceNL"], "discord": ["placenl"], "wiki": ["States_Lion"]}, "path": {"184-258": [[-1350, -541], [-1349, -537], [-1352, -535], [-1346, -527], [-1344, -529], [-1340, -528], [-1340, -531], [-1340, -534], [-1341, -536], [-1335, -540], [-1331, -541], [-1325, -538], [-1322, -531], [-1323, -528], [-1325, -524], [-1327, -522], [-1328, -516], [-1319, -506], [-1315, -504], [-1310, -505], [-1309, -512], [-1320, -526], [-1320, -533], [-1316, -538], [-1311, -539], [-1308, -537], [-1305, -536], [-1305, -534], [-1301, -527], [-1305, -528], [-1310, -533], [-1312, -536], [-1317, -532], [-1316, -525], [-1308, -515], [-1307, -513], [-1307, -505], [-1310, -502], [-1317, -502], [-1314, -497], [-1309, -488], [-1311, -482], [-1315, -482], [-1320, -488], [-1323, -490], [-1325, -490], [-1327, -493], [-1328, -499], [-1339, -495], [-1341, -492], [-1344, -486], [-1346, -483], [-1353, -480], [-1357, -481], [-1359, -483], [-1359, -485], [-1356, -487], [-1355, -485], [-1354, -485], [-1350, -487], [-1349, -492], [-1348, -494], [-1350, -497], [-1349, -501], [-1345, -502], [-1342, -502], [-1340, -501], [-1337, -504], [-1329, -505], [-1332, -508], [-1338, -509], [-1340, -511], [-1347, -511], [-1351, -507], [-1358, -507], [-1361, -506], [-1363, -507], [-1365, -511], [-1360, -513], [-1358, -514], [-1356, -512], [-1354, -511], [-1351, -514], [-1349, -515], [-1350, -517], [-1351, -520], [-1352, -522], [-1355, -526], [-1356, -531], [-1357, -533], [-1359, -535], [-1358, -540], [-1353, -540]]}, "center": {"184-258": [-1337, -519]}}, -{"id": 5534, "name": "The Chaos Creation Group", "description": "built as the 6th expansion was made this drawing was made to represent a group of ocs made by a group, made an alliance with r/eagles who was also allied with BWD,\nthey saved the oc group and in returned helped repair the eagle, bwd and the fire thing. Even if they didnt know it they were archrivals with jim and his face and also the purple eyes face with a hat who kept putting the brim onto their outline.\n\nDuring the time they were built they were constantly attacked by one user constantly, a group of gray pixels and groups of users trying to overpower them.\n\nDespite the failure of adding two more ocs due to jim and purple eyed face, they managed to take over purple eyes and replaced them with a kabuto, while chaos creation outlasted jim by a few minutes during the whiteout they considered it a complete success", "links": {"subreddit": ["ChaosCreations"]}, "path": {"208-258": [[1045, -1000], [1039, -1000], [1033, -1000], [1027, -1000], [1027, -994], [1033, -994], [1033, -982], [1039, -982], [1044, -982], [1044, -988], [1039, -988], [1039, -994], [1045, -994]]}, "center": {"208-258": [1036, -996]}}, -{"id": 5535, "name": "Pansexual flag", "description": "Pansexual pride flag. Three horizontal stripes of color, pink, yellow and blue. The blue portion of the flag represents those who identify as male (regardless of biological sex), The pink represents those who identify as female (regardless of biological sex), and the yellow portion, found in between the blue and pink portions, represents those who identify as both genders, neither gender, or a third gender; such as genderqueer and agender. The yellow also represents non-binary attraction between the male and female genders.\n\nMade with help of many amazing people <3", "links": {"subreddit": ["pansexual"]}, "path": {"244-258": [[-1413, 162], [-1413, 170], [-1379, 170], [-1379, 168], [-1378, 168], [-1378, 162]]}, "center": {"244-258": [-1395, 166]}}, -{"id": 5536, "name": "Slava_Ukraini", "description": "\"Glory to Ukraine!\" (Ukrainian: Слава Україні!, romanized: Slava Ukraini!, IPA: [ˈsɫaʋɐ ʊkrɐˈjinʲi] (listen)) is a Ukrainian national salute, known as a symbol of Ukrainian sovereignty and resistance to foreign aggression. It is the battle cry of the Armed Forces of Ukraine. It is often accompanied by the response \"Glory to the heroes!\" (Ukrainian: Героям слава!, romanized: Heroiam slava!, IPA: [ɦeˈrɔjɐm ˈsɫaʋɐ]).", "links": {"website": ["https://en.wikipedia.org/wiki/Slava_Ukraini"]}, "path": {"250-258": [[-163, -170], [-163, -159], [-79, -159], [-80, -170]]}, "center": {"250-258": [-121, -164]}}, -{"id": 5537, "name": "Wilson", "description": "Wilson is the wooden gear mascot of the Wintergatan Youtube channel", "links": {"website": ["https://wintergatan.net", "https://www.youtube.com/@Wintergatan"], "subreddit": ["wintergatan"]}, "path": {"193-258": [[-588, 337], [-582, 337], [-582, 345], [-588, 345], [-589, 343], [-589, 339]]}, "center": {"193-258": [-585, 341]}}, -{"id": 5538, "name": "Flying Banana", "description": "The Flying Banana is a custom-made electric guitar containing additional frets for 24-TET tuning.\nIt was built for King Gizzard & The Lizard Wizard front-man, Stu Mackenzie and can be heard in the albums \"Flying Mictotonal Banana\", \"KG\" and \"LW\".", "links": {"website": ["https://imgur.com/gallery/whFDM"], "subreddit": ["kgatlw"]}, "path": {"151-258": [[273, 10], [275, 10], [276, 11], [277, 10], [277, 6], [276, 5], [275, 4], [275, -3], [276, -4], [276, -5], [273, -5], [272, -4], [272, -2], [273, -1], [273, 4], [271, 6], [271, 10], [272, 11]]}, "center": {"151-258": [274, 7]}}, -{"id": 5539, "name": "Manollo", "description": "Manollo is a known god in Brazil by some small communities. He is a communist dwarf with a long white beard and yellow skin. He was born in Russia in an unknown year, but some sources claim that he was really important in the Cold War, helping the Soviet Union to develop important war technologies. It is known that he worked a long time being a stripper in some russian clubs, but one day he drank too much alcohol and he ended up in a small city in Rio de Janeiro. Since then, many people believe and worship him, as being the god of alcohol, communism and what adults do in bed.", "links": {}, "path": {"124-258": [[512, -911], [496, -911], [496, -901], [512, -901]]}, "center": {"124-258": [504, -906]}}, -{"id": 5540, "name": "Juice WRLD", "description": "This is made in memorial of the late rapper Juice WRLD. Juice Wrld has had a long association with the number 999 and it features heavily on the rapper's social media pages, in his music and in his tattoos. \n\n\"In the last book of the Bible, it says that 666 is the mark of the beast, right?\" Juice Wrld explained, \"999 represents taking whatever hell, whatever bad situation or whatever struggle you're going through and turning it into something positive and using it to push yourself forward.\"", "links": {"subreddit": ["juicewrld"], "discord": ["juicewrld"]}, "path": {"203-258": [[-1398, 588], [-1398, 601], [-1368, 601], [-1368, 580], [-1372, 576], [-1382, 576], [-1382, 588]]}, "center": {"203-258": [-1376, 593]}}, +{"id": 5533, "name": "States Lion", "description": "A collaborative artwork of Belgium, The Netherlands, and Luxembourg, the States Lion represents the history that the nations have in common; their fight for independence in the Eighty Years' War.\n\nThe States Lion is featured in the coat of arms of each of the three nations.", "links": {"website": ["https://en.wikipedia.org/wiki/Dutch_Republic_Lion"], "subreddit": ["PlaceNL"], "discord": ["placenl"], "wiki": ["States_Lion"]}, "path": {"184-258, T": [[-1350, -541], [-1349, -537], [-1352, -535], [-1346, -527], [-1344, -529], [-1340, -528], [-1340, -531], [-1340, -534], [-1341, -536], [-1335, -540], [-1331, -541], [-1325, -538], [-1322, -531], [-1323, -528], [-1325, -524], [-1327, -522], [-1328, -516], [-1319, -506], [-1315, -504], [-1310, -505], [-1309, -512], [-1320, -526], [-1320, -533], [-1316, -538], [-1311, -539], [-1308, -537], [-1305, -536], [-1305, -534], [-1301, -527], [-1305, -528], [-1310, -533], [-1312, -536], [-1317, -532], [-1316, -525], [-1308, -515], [-1307, -513], [-1307, -505], [-1310, -502], [-1317, -502], [-1314, -497], [-1309, -488], [-1311, -482], [-1315, -482], [-1320, -488], [-1323, -490], [-1325, -490], [-1327, -493], [-1328, -499], [-1339, -495], [-1341, -492], [-1344, -486], [-1346, -483], [-1353, -480], [-1357, -481], [-1359, -483], [-1359, -485], [-1356, -487], [-1355, -485], [-1354, -485], [-1350, -487], [-1349, -492], [-1348, -494], [-1350, -497], [-1349, -501], [-1345, -502], [-1342, -502], [-1340, -501], [-1337, -504], [-1329, -505], [-1332, -508], [-1338, -509], [-1340, -511], [-1347, -511], [-1351, -507], [-1358, -507], [-1361, -506], [-1363, -507], [-1365, -511], [-1360, -513], [-1358, -514], [-1356, -512], [-1354, -511], [-1351, -514], [-1349, -515], [-1350, -517], [-1351, -520], [-1352, -522], [-1355, -526], [-1356, -531], [-1357, -533], [-1359, -535], [-1358, -540], [-1353, -540]]}, "center": {"184-258, T": [-1337, -519]}}, +{"id": 5534, "name": "The Chaos Creation Group", "description": "built as the 6th expansion was made this drawing was made to represent a group of ocs made by a group, made an alliance with r/eagles who was also allied with BWD,\nthey saved the oc group and in returned helped repair the eagle, bwd and the fire thing. Even if they didnt know it they were archrivals with jim and his face and also the purple eyes face with a hat who kept putting the brim onto their outline.\n\nDuring the time they were built they were constantly attacked by one user constantly, a group of gray pixels and groups of users trying to overpower them.\n\nDespite the failure of adding two more ocs due to jim and purple eyed face, they managed to take over purple eyes and replaced them with a kabuto, while chaos creation outlasted jim by a few minutes during the whiteout they considered it a complete success", "links": {"subreddit": ["ChaosCreations"]}, "path": {"208-258, T": [[1045, -1000], [1039, -1000], [1033, -1000], [1027, -1000], [1027, -994], [1033, -994], [1033, -982], [1039, -982], [1044, -982], [1044, -988], [1039, -988], [1039, -994], [1045, -994]]}, "center": {"208-258, T": [1036, -996]}}, +{"id": 5535, "name": "Pansexual flag", "description": "Pansexual pride flag. Three horizontal stripes of color, pink, yellow and blue. The blue portion of the flag represents those who identify as male (regardless of biological sex), The pink represents those who identify as female (regardless of biological sex), and the yellow portion, found in between the blue and pink portions, represents those who identify as both genders, neither gender, or a third gender; such as genderqueer and agender. The yellow also represents non-binary attraction between the male and female genders.\n\nMade with help of many amazing people <3", "links": {"subreddit": ["pansexual"]}, "path": {"244-258, T": [[-1413, 162], [-1413, 170], [-1379, 170], [-1379, 168], [-1378, 168], [-1378, 162]]}, "center": {"244-258, T": [-1395, 166]}}, +{"id": 5536, "name": "Slava_Ukraini", "description": "\"Glory to Ukraine!\" (Ukrainian: Слава Україні!, romanized: Slava Ukraini!, IPA: [ˈsɫaʋɐ ʊkrɐˈjinʲi] (listen)) is a Ukrainian national salute, known as a symbol of Ukrainian sovereignty and resistance to foreign aggression. It is the battle cry of the Armed Forces of Ukraine. It is often accompanied by the response \"Glory to the heroes!\" (Ukrainian: Героям слава!, romanized: Heroiam slava!, IPA: [ɦeˈrɔjɐm ˈsɫaʋɐ]).", "links": {"website": ["https://en.wikipedia.org/wiki/Slava_Ukraini"]}, "path": {"250-258, T": [[-163, -170], [-163, -159], [-79, -159], [-80, -170]]}, "center": {"250-258, T": [-121, -164]}}, +{"id": 5537, "name": "Wilson", "description": "Wilson is the wooden gear mascot of the Wintergatan Youtube channel", "links": {"website": ["https://wintergatan.net", "https://www.youtube.com/@Wintergatan"], "subreddit": ["wintergatan"]}, "path": {"193-258, T": [[-588, 337], [-582, 337], [-582, 345], [-588, 345], [-589, 343], [-589, 339]]}, "center": {"193-258, T": [-585, 341]}}, +{"id": 5538, "name": "Flying Banana", "description": "The Flying Banana is a custom-made electric guitar containing additional frets for 24-TET tuning.\nIt was built for King Gizzard & The Lizard Wizard front-man, Stu Mackenzie and can be heard in the albums \"Flying Mictotonal Banana\", \"KG\" and \"LW\".", "links": {"website": ["https://imgur.com/gallery/whFDM"], "subreddit": ["kgatlw"]}, "path": {"151-258, T": [[273, 10], [275, 10], [276, 11], [277, 10], [277, 6], [276, 5], [275, 4], [275, -3], [276, -4], [276, -5], [273, -5], [272, -4], [272, -2], [273, -1], [273, 4], [271, 6], [271, 10], [272, 11]]}, "center": {"151-258, T": [274, 7]}}, +{"id": 5539, "name": "Manollo", "description": "Manollo is a known god in Brazil by some small communities. He is a communist dwarf with a long white beard and yellow skin. He was born in Russia in an unknown year, but some sources claim that he was really important in the Cold War, helping the Soviet Union to develop important war technologies. It is known that he worked a long time being a stripper in some russian clubs, but one day he drank too much alcohol and he ended up in a small city in Rio de Janeiro. Since then, many people believe and worship him, as being the god of alcohol, communism and what adults do in bed.", "links": {}, "path": {"124-258, T": [[512, -911], [496, -911], [496, -901], [512, -901]]}, "center": {"124-258, T": [504, -906]}}, +{"id": 5540, "name": "Juice WRLD", "description": "This is made in memorial of the late rapper Juice WRLD. Juice Wrld has had a long association with the number 999 and it features heavily on the rapper's social media pages, in his music and in his tattoos. \n\n\"In the last book of the Bible, it says that 666 is the mark of the beast, right?\" Juice Wrld explained, \"999 represents taking whatever hell, whatever bad situation or whatever struggle you're going through and turning it into something positive and using it to push yourself forward.\"", "links": {"subreddit": ["juicewrld"], "discord": ["juicewrld"]}, "path": {"203-258, T": [[-1398, 588], [-1398, 601], [-1368, 601], [-1368, 580], [-1372, 576], [-1382, 576], [-1382, 588]]}, "center": {"203-258, T": [-1376, 593]}}, {"id": 5541, "name": "Megamind REAL Memorial", "description": "Brought to you by members of the Zman1064 community, this face originating from the video game Unturned and adopted by a long-time player was put onto r/place as a memorial for that particular player.", "links": {"discord": ["aGVnFHmd4G"]}, "path": {"162": [[-15, -628], [2, -628], [2, -611], [-15, -610]]}, "center": {"162": [-6, -619]}}, -{"id": 5542, "name": "NES Controller", "description": "A controller for the NES / Nintendo Entertainment System / Famicom gaming system.", "links": {}, "path": {"212-252": [[-839, -261], [-815, -261], [-815, -250], [-839, -250]]}, "center": {"212-252": [-827, -255]}}, -{"id": 5543, "name": "r/P250Cassette", "description": "A small group of people dedicated to a P250 skin in CSGO. In order to make the logo fit, the \"Cassette\" had to be abbreviated and the P in P250 had to be rotated sideways.", "links": {"website": ["https://steamcommunity.com/groups/welovecassettes"], "subreddit": ["p250cassette"]}, "path": {"213-258": [[324, -1000], [323, -1000], [325, -1000], [351, -1000], [351, -996], [328, -996], [325, -998], [323, -1000]]}, "center": {"213-258": [337, -998]}}, +{"id": 5542, "name": "NES Controller", "description": "A controller for the NES / Nintendo Entertainment System / Famicom gaming system.", "links": {}, "path": {"212-252, T": [[-839, -261], [-815, -261], [-815, -250], [-839, -250]]}, "center": {"212-252, T": [-827, -255]}}, +{"id": 5543, "name": "r/P250Cassette", "description": "A small group of people dedicated to a P250 skin in CSGO. In order to make the logo fit, the \"Cassette\" had to be abbreviated and the P in P250 had to be rotated sideways.", "links": {"website": ["https://steamcommunity.com/groups/welovecassettes"], "subreddit": ["p250cassette"]}, "path": {"213-258, T": [[324, -1000], [323, -1000], [325, -1000], [351, -1000], [351, -996], [328, -996], [325, -998], [323, -1000]]}, "center": {"213-258, T": [337, -998]}}, {"id": 5544, "name": "Cat Planet Cat", "description": "The sprite used for the titular cats in the small freeware game \"Cat Planet\" by Sylvie. Was briefly popular in 2010 when played by the youtuber Raocow.", "links": {"website": ["https://tvtropes.org/pmwiki/pmwiki.php/VideoGame/CatPlanet"]}, "path": {"206-214": [[616, -546], [630, -546], [630, -531], [616, -531]]}, "center": {"206-214": [623, -538]}}, -{"id": 5545, "name": "Pico", "description": "Pico es el camino, es el sentido de todo.\nComunidad de aficionados a Pico.\n\nPico is the way, it is the meaning of everything.\nPico Fan Community.", "links": {"subreddit": ["piqueros"], "discord": ["7nze2GjD"]}, "path": {"250-258": [[-1115, -719], [-1115, -730], [-1107, -730], [-1107, -719]]}, "center": {"250-258": [-1111, -724]}}, -{"id": 5546, "name": "Zera", "description": "A tiny artwork representing the head of Zera, a handsome demon man and major character from Temmie Chang's RPG Dweller's Empty Path.\nSecond location of the artwork after the unofficial Vietnamese expansion erased the first one. Its construction managed to continue during the Dragon's smoke storm thanks to the duck staying strong next to it.", "links": {"website": ["https://tuyoki.itch.io/dwellers-empty-path"], "subreddit": ["DwellersEmptyPath"], "discord": ["GB8KJYk"]}, "path": {"244-252": [[1392, 643], [1394, 643], [1394, 644], [1395, 644], [1395, 645], [1395, 646], [1396, 646], [1395, 646], [1395, 647], [1392, 647], [1392, 648], [1392, 647], [1391, 647], [1391, 646], [1390, 646], [1391, 646], [1391, 644], [1392, 644]]}, "center": {"244-252": [1393, 645]}}, +{"id": 5545, "name": "Pico", "description": "Pico es el camino, es el sentido de todo.\nComunidad de aficionados a Pico.\n\nPico is the way, it is the meaning of everything.\nPico Fan Community.", "links": {"subreddit": ["piqueros"], "discord": ["7nze2GjD"]}, "path": {"250-258, T": [[-1115, -719], [-1115, -730], [-1107, -730], [-1107, -719]]}, "center": {"250-258, T": [-1111, -724]}}, +{"id": 5546, "name": "Zera", "description": "A tiny artwork representing the head of Zera, a handsome demon man and major character from Temmie Chang's RPG Dweller's Empty Path.\nSecond location of the artwork after the unofficial Vietnamese expansion erased the first one. Its construction managed to continue during the Dragon's smoke storm thanks to the duck staying strong next to it.", "links": {"website": ["https://tuyoki.itch.io/dwellers-empty-path"], "subreddit": ["DwellersEmptyPath"], "discord": ["GB8KJYk"]}, "path": {"244-252, T": [[1392, 643], [1394, 643], [1394, 644], [1395, 644], [1395, 645], [1395, 646], [1396, 646], [1395, 646], [1395, 647], [1392, 647], [1392, 648], [1392, 647], [1391, 647], [1391, 646], [1390, 646], [1391, 646], [1391, 644], [1392, 644]]}, "center": {"244-252, T": [1393, 645]}}, {"id": 5547, "name": "iRaphahell Youtuber Logo", "description": "iRaphahell is a Romanian gamer and YouTuber. He is one of the most popular gaming YouTubers in Romania.", "links": {"website": ["https://www.instagram.com/iraphahell_official/", "https://www.youtube.com/@iRaphahell", "https://twitter.com/iRaphahell"], "discord": ["iraphahell"]}, "path": {"204-230": [[1264, 729], [1289, 729], [1289, 755], [1264, 755]]}, "center": {"204-230": [1277, 742]}}, {"id": 5548, "name": "isirulaub.at", "description": "Two of austrias biggest streamers creating the link to the famous horse riding hotel \"Reitzentrum Hausruckhof\"", "links": {"website": ["https://isiurlaub.at"]}, "path": {"207": [[1449, 30], [1477, 30], [1476, 35], [1448, 35]]}, "center": {"207": [1463, 33]}}, -{"id": 5549, "name": "Original brushbug", "description": "This represents one of the magical creatures from the manga series Witch Hat Atelier.\n\nWitch Hat Atelier (とんがり帽子のアトリエ) is an ongoing manga written and illustrated by Kamome Shirahama.\n\nThe series follows a girl named Coco, who dreams of being a witch, but in her world only those born with magical abilities are able to become witches. However, after meeting a witch named Qifrey, it seems like there may be hope for Coco after all.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Witch_Hat_Atelier_Wiki"], "subreddit": ["WitchHatAtelier"], "discord": ["xpQSRKjH"]}, "path": {"151-258": [[306, -864], [321, -864], [321, -850], [307, -850], [306, -850]]}, "center": {"151-258": [314, -857]}}, -{"id": 5550, "name": "Lea (CrossCode)", "description": "Main protagonist of 2D retro-inspired Action RPG game 'CrossCode'. Characteristically she is only able to speak limited amount of words, 'Hi' being one of them.", "links": {"website": ["http://cross-code.com/en/home"], "subreddit": ["CrossCode"]}, "path": {"223-258": [[392, 948], [392, 941], [398, 941], [398, 938], [401, 938], [401, 937], [403, 937], [403, 935], [412, 935], [412, 936], [413, 936], [413, 937], [414, 937], [415, 937], [415, 938], [418, 938], [418, 941], [417, 941], [417, 947], [416, 947], [416, 948], [415, 948], [415, 949], [414, 949], [414, 950], [415, 950], [415, 952], [416, 952], [416, 954], [400, 954], [400, 950], [398, 950], [398, 949], [392, 949]]}, "center": {"223-258": [407, 945]}}, +{"id": 5549, "name": "Original brushbug", "description": "This represents one of the magical creatures from the manga series Witch Hat Atelier.\n\nWitch Hat Atelier (とんがり帽子のアトリエ) is an ongoing manga written and illustrated by Kamome Shirahama.\n\nThe series follows a girl named Coco, who dreams of being a witch, but in her world only those born with magical abilities are able to become witches. However, after meeting a witch named Qifrey, it seems like there may be hope for Coco after all.", "links": {"website": ["https://witch-hat-atelier.fandom.com/wiki/Witch_Hat_Atelier_Wiki"], "subreddit": ["WitchHatAtelier"], "discord": ["xpQSRKjH"]}, "path": {"151-258, T": [[306, -864], [321, -864], [321, -850], [307, -850], [306, -850]]}, "center": {"151-258, T": [314, -857]}}, +{"id": 5550, "name": "Lea (CrossCode)", "description": "Main protagonist of 2D retro-inspired Action RPG game 'CrossCode'. Characteristically she is only able to speak limited amount of words, 'Hi' being one of them.", "links": {"website": ["http://cross-code.com/en/home"], "subreddit": ["CrossCode"]}, "path": {"223-258, T": [[392, 948], [392, 941], [398, 941], [398, 938], [401, 938], [401, 937], [403, 937], [403, 935], [412, 935], [412, 936], [413, 936], [413, 937], [414, 937], [415, 937], [415, 938], [418, 938], [418, 941], [417, 941], [417, 947], [416, 947], [416, 948], [415, 948], [415, 949], [414, 949], [414, 950], [415, 950], [415, 952], [416, 952], [416, 954], [400, 954], [400, 950], [398, 950], [398, 949], [392, 949]]}, "center": {"223-258, T": [407, 945]}}, {"id": 5551, "name": "Taylor Swift and Kanye West kissing", "description": "This is a reference to the infamous VMA 2009 incident between Taylor Swift and Kanye West", "links": {"subreddit": ["goodasssub"], "discord": ["hbd6DFGM44"]}, "path": {"190-216": [[681, 617], [692, 617], [692, 631], [681, 631]]}, "center": {"190-216": [687, 624]}}, -{"id": 5552, "name": "Juan Valdez LOGO", "description": "", "links": {}, "path": {"250-258": [[-383, -822], [-360, -861], [-335, -820]]}, "center": {"250-258": [-360, -834]}}, -{"id": 5553, "name": "Strawhat Crew (Amongus Edition)", "description": "Strawhat crew (including Vivi) from manga One Piece", "links": {"subreddit": ["onepiece"]}, "path": {"250-258": [[-1253, -93], [-1256, -89], [-1256, -87], [-1201, -86], [-1202, -92], [-1226, -95]]}, "center": {"250-258": [-1226, -91]}}, -{"id": 5554, "name": "Leonardo Watch (Blood Blockade Battlefront / Kekkai Sensen)", "description": "Leonardo Watch (レオナルド・ウォッチ, Reonarudo Wocchi) is the primary protagonist of the series. He is a photographer who came to Hellsalem's Lot to help his younger sister, Michella Watch. Upon visiting Hellsalem's Lot, an entity known as Riga El Menuhyut gave him the \"All-Seeing Eyes of the Gods\" at the cost of his younger sister's eyesight.", "links": {"website": ["https://kekkai-sensen.fandom.com/wiki/Leonardo_Watch"], "subreddit": ["KekkaiSensen"], "discord": ["7m5MNmM"]}, "path": {"250-258": [[76, -722], [80, -722], [80, -721], [81, -721], [82, -721], [82, -720], [82, -719], [83, -719], [84, -719], [84, -718], [84, -717], [84, -716], [85, -716], [85, -715], [86, -715], [86, -714], [86, -713], [87, -713], [88, -713], [88, -714], [89, -714], [90, -714], [90, -713], [90, -712], [89, -712], [89, -711], [89, -710], [88, -710], [88, -709], [87, -709], [87, -708], [86, -708], [87, -708], [87, -707], [87, -706], [86, -705], [86, -704], [85, -704], [87, -704], [87, -703], [88, -703], [88, -702], [88, -701], [88, -700], [72, -700], [72, -701], [71, -701], [71, -703], [72, -703], [72, -704], [73, -704], [72, -704], [72, -705], [71, -705], [71, -706], [71, -707], [71, -708], [72, -708], [71, -708], [71, -709], [70, -709], [70, -710], [70, -711], [70, -712], [69, -712], [69, -713], [69, -714], [70, -714], [70, -715], [70, -716], [69, -716], [69, -717], [69, -718], [68, -718], [68, -719], [68, -720], [69, -720], [70, -720], [70, -719], [71, -719], [71, -720], [72, -720], [73, -720], [74, -720], [74, -721], [75, -721]]}, "center": {"250-258": [78, -712]}}, -{"id": 5555, "name": "Letenia and Ixef", "description": "A lovely couple from Choualbox <3", "links": {"website": ["https://choualbox.com/"]}, "path": {"250-258": [[55, 663], [74, 663], [74, 672], [65, 672], [60, 678], [55, 678], [55, 671]]}, "center": {"250-258": [61, 669]}}, -{"id": 5556, "name": "Tirika", "description": "Tirika, la mascota oficial de la XII edición de los Juegos Suramericanos Odesur 2022\nTirika esta basado en El tirica, también denominado comúnmente gato tigre chico o gato pintado chico, es una especie de mamífero carnívoro de la familia de los felinos y del género Leopardus, que se distribuye en selvas subtropicales del centro-este de América del Sur.\n\nTirika, the official mascot of the XII edition of the Odesur 2022 South American Games\nTirika is based on The tirica, also commonly called small tiger cat or small painted cat, is a species of carnivorous mammal of the feline family and of the Leopardus genus, which is distributed in subtropical jungles of central-eastern South America.", "links": {"website": ["https://www.asu2022.org.py/item/articulo/1007"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"250-258": [[-63, -842], [-58, -846], [-46, -845], [-42, -841], [-42, -827], [-45, -825], [-61, -825], [-63, -833]]}, "center": {"250-258": [-52, -835]}}, -{"id": 5557, "name": "Coat of arms of Paraguay", "description": "The coat of arms is on the Paraguay national flag. It lies in the white center section on the flag. The obverse of the arms features a round white background with the yellow five-pointed star surrounded by a palm branch to the left and an olive branch to the right both tied together surrounded by the Name of the State: \"REPÚBLICA DEL PARAGUAY\" (In Spanish for, \"REPUBLIC OF PARAGUAY\").\n\nThe reverse of the arms features a golden lion in front of the staff and the Phrygian cap with the National Motto: \"PAZ Y JUSTICIA\" (In Spanish for, \"PEACE AND JUSTICE\").", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Paraguay"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"250-258": [[-42, -898], [-42, -885], [-21, -885], [-22, -897], [-42, -898], [-40, -839], [-21, -839], [-22, -854], [-40, -854]]}, "center": {"250-258": [-32, -846]}}, -{"id": 5558, "name": "boba (bubble tea)", "description": "a tea-based drink that originated in Taiwan in the early 1980s", "links": {"website": ["https://en.wikipedia.org/wiki/Bubble_tea"]}, "path": {"152-258": [[-65, 430], [-62, 428], [-62, 422], [-66, 422], [-76, 422], [-76, 417], [-76, 422], [-65, 422]]}, "center": {"152-258": [-64, 426]}}, +{"id": 5552, "name": "Juan Valdez LOGO", "description": "", "links": {}, "path": {"250-258, T": [[-383, -822], [-360, -861], [-335, -820]]}, "center": {"250-258, T": [-360, -834]}}, +{"id": 5553, "name": "Strawhat Crew (Amongus Edition)", "description": "Strawhat crew (including Vivi) from manga One Piece", "links": {"subreddit": ["onepiece"]}, "path": {"250-258, T": [[-1253, -93], [-1256, -89], [-1256, -87], [-1201, -86], [-1202, -92], [-1226, -95]]}, "center": {"250-258, T": [-1226, -91]}}, +{"id": 5554, "name": "Leonardo Watch (Blood Blockade Battlefront / Kekkai Sensen)", "description": "Leonardo Watch (レオナルド・ウォッチ, Reonarudo Wocchi) is the primary protagonist of the series. He is a photographer who came to Hellsalem's Lot to help his younger sister, Michella Watch. Upon visiting Hellsalem's Lot, an entity known as Riga El Menuhyut gave him the \"All-Seeing Eyes of the Gods\" at the cost of his younger sister's eyesight.", "links": {"website": ["https://kekkai-sensen.fandom.com/wiki/Leonardo_Watch"], "subreddit": ["KekkaiSensen"], "discord": ["7m5MNmM"]}, "path": {"250-258, T": [[76, -722], [80, -722], [80, -721], [81, -721], [82, -721], [82, -720], [82, -719], [83, -719], [84, -719], [84, -718], [84, -717], [84, -716], [85, -716], [85, -715], [86, -715], [86, -714], [86, -713], [87, -713], [88, -713], [88, -714], [89, -714], [90, -714], [90, -713], [90, -712], [89, -712], [89, -711], [89, -710], [88, -710], [88, -709], [87, -709], [87, -708], [86, -708], [87, -708], [87, -707], [87, -706], [86, -705], [86, -704], [85, -704], [87, -704], [87, -703], [88, -703], [88, -702], [88, -701], [88, -700], [72, -700], [72, -701], [71, -701], [71, -703], [72, -703], [72, -704], [73, -704], [72, -704], [72, -705], [71, -705], [71, -706], [71, -707], [71, -708], [72, -708], [71, -708], [71, -709], [70, -709], [70, -710], [70, -711], [70, -712], [69, -712], [69, -713], [69, -714], [70, -714], [70, -715], [70, -716], [69, -716], [69, -717], [69, -718], [68, -718], [68, -719], [68, -720], [69, -720], [70, -720], [70, -719], [71, -719], [71, -720], [72, -720], [73, -720], [74, -720], [74, -721], [75, -721]]}, "center": {"250-258, T": [78, -712]}}, +{"id": 5555, "name": "Letenia and Ixef", "description": "A lovely couple from Choualbox <3", "links": {"website": ["https://choualbox.com/"]}, "path": {"250-258, T": [[55, 663], [74, 663], [74, 672], [65, 672], [60, 678], [55, 678], [55, 671]]}, "center": {"250-258, T": [61, 669]}}, +{"id": 5556, "name": "Tirika", "description": "Tirika, la mascota oficial de la XII edición de los Juegos Suramericanos Odesur 2022\nTirika esta basado en El tirica, también denominado comúnmente gato tigre chico o gato pintado chico, es una especie de mamífero carnívoro de la familia de los felinos y del género Leopardus, que se distribuye en selvas subtropicales del centro-este de América del Sur.\n\nTirika, the official mascot of the XII edition of the Odesur 2022 South American Games\nTirika is based on The tirica, also commonly called small tiger cat or small painted cat, is a species of carnivorous mammal of the feline family and of the Leopardus genus, which is distributed in subtropical jungles of central-eastern South America.", "links": {"website": ["https://www.asu2022.org.py/item/articulo/1007"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"250-258, T": [[-63, -842], [-58, -846], [-46, -845], [-42, -841], [-42, -827], [-45, -825], [-61, -825], [-63, -833]]}, "center": {"250-258, T": [-52, -835]}}, +{"id": 5557, "name": "Coat of arms of Paraguay", "description": "The coat of arms is on the Paraguay national flag. It lies in the white center section on the flag. The obverse of the arms features a round white background with the yellow five-pointed star surrounded by a palm branch to the left and an olive branch to the right both tied together surrounded by the Name of the State: \"REPÚBLICA DEL PARAGUAY\" (In Spanish for, \"REPUBLIC OF PARAGUAY\").\n\nThe reverse of the arms features a golden lion in front of the staff and the Phrygian cap with the National Motto: \"PAZ Y JUSTICIA\" (In Spanish for, \"PEACE AND JUSTICE\").", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Paraguay"], "subreddit": ["Paraguay"], "discord": ["2FCnzvAeyt"]}, "path": {"250-258, T": [[-42, -898], [-42, -885], [-21, -885], [-22, -897], [-42, -898], [-40, -839], [-21, -839], [-22, -854], [-40, -854]]}, "center": {"250-258, T": [-32, -846]}}, +{"id": 5558, "name": "boba (bubble tea)", "description": "a tea-based drink that originated in Taiwan in the early 1980s", "links": {"website": ["https://en.wikipedia.org/wiki/Bubble_tea"]}, "path": {"152-258, T": [[-65, 430], [-62, 428], [-62, 422], [-66, 422], [-76, 422], [-76, 417], [-76, 422], [-65, 422]]}, "center": {"152-258, T": [-64, 426]}}, {"id": 5559, "name": "Tiny AJ", "description": "A small, stylized depiction of the Character Applejack from the TV series My Little Pony: Friendship is Magic", "links": {"subreddit": ["mylittlepony"]}, "path": {"55-58": [[835, -215], [839, -215], [839, -211], [835, -211]]}, "center": {"55-58": [837, -213]}}, {"id": 5560, "name": "Devoun", "description": "Devoun, is an Australian gaming and commentary YouTuber well known for creating content on one of Roblox's popular games, Piggy, and doing Roblox commentaries in a series called Roblox Drama, similar to DramaAlert.", "links": {"website": ["https://www.youtube.com/@Devoun"], "subreddit": ["bloxymemes"], "discord": ["ARzfxNHdy6"]}, "path": {"251-258": [[-47, -501], [-23, -500], [-22, -514], [-46, -515], [-47, -502], [-38, -501], [-36, -500]]}, "center": {"251-258": [-34, -507]}}, -{"id": 5561, "name": "µ's' colors", "description": "µ's is the first group of the Love Live! franchise. It is made up of nine members represented here by their image colors.\nFrom left to right then top to bottom, respectively:\n-Honoka Kousaka (orange)\n-Kotori Minami (grey)\n-Umi Sonoda (deep blue)\n-Maki Nishikino (red)\n-Rin Hoshizora (yellow)\n-Hanayo Koizumi (green)\n-Nico Yazawa (pink)\n-Nozomi Toujou (purple)\n-Eli Ayase (ice blue)", "links": {"website": ["https://love-live.fandom.com/wiki/Muse"]}, "path": {"250-258": [[-655, -236], [-655, -232], [-651, -232], [-651, -236]]}, "center": {"250-258": [-653, -234]}}, -{"id": 5562, "name": "Red Carnation", "description": "The Red Carnation flower is a symbol of what became known as the Carnation Revolution that took place in the 25th of April of 1974. This revolution, led by the portuguese military, put an end to the 48 year-long dictatorship instaured in Portugal. The flower became a symbol of the revolution when a woman put them in the barrels of the soldiers' guns. It has since been a symbol of liberty and democracy in Portugal.", "links": {"website": ["https://en.wikipedia.org/wiki/Carnation_Revolution"], "discord": ["TugaPlace"]}, "path": {"250-258": [[366, 345], [374, 345], [374, 343], [375, 343], [375, 341], [374, 341], [374, 340], [373, 340], [373, 338], [374, 338], [374, 336], [373, 336], [375, 336], [375, 335], [376, 335], [376, 334], [377, 334], [377, 330], [374, 330], [375, 330], [375, 329], [376, 329], [376, 328], [377, 328], [377, 325], [376, 325], [376, 324], [375, 324], [375, 323], [374, 323], [374, 322], [371, 322], [371, 323], [370, 323], [370, 322], [366, 322], [366, 323], [365, 323], [365, 324], [364, 324], [364, 327], [365, 327], [365, 328], [366, 328], [366, 329], [367, 329], [367, 330], [368, 330], [368, 332], [369, 332], [369, 336], [368, 336], [368, 337], [367, 337], [367, 339], [368, 339], [368, 340], [369, 340], [365, 340], [365, 343], [366, 343]]}, "center": {"250-258": [371, 327]}}, -{"id": 5564, "name": "Mauerstraßenwetten (german equivalent community to \"Wallstreetbets\")", "description": "A yew pointing at a blackboard, the German text says \"green when closing MSW\". It's the product of the german cooperation with the Mauerstraßenwetten (MSW) subreddit..\nThe yew is an insider joke of the MSW community.", "links": {"subreddit": ["mauerstrassenwetten", "placede"]}, "path": {"199-258": [[-1313, -591], [-1316, -586], [-1319, -578], [-1321, -572], [-1321, -560], [-1319, -554], [-1325, -552], [-1325, -551], [-1290, -550], [-1292, -554], [-1296, -556], [-1295, -558], [-1295, -562], [-1298, -566], [-1299, -569], [-1296, -570], [-1295, -567], [-1294, -566], [-1284, -566], [-1291, -554], [-1290, -551], [-1288, -551], [-1280, -565], [-1268, -566], [-1260, -552], [-1258, -552], [-1258, -555], [-1264, -566], [-1254, -566], [-1252, -568], [-1252, -570], [-1253, -571], [-1253, -605], [-1256, -608], [-1292, -608], [-1296, -605], [-1296, -597], [-1297, -598], [-1301, -598], [-1302, -597], [-1307, -597], [-1308, -597], [-1310, -599], [-1314, -599], [-1315, -597], [-1316, -596], [-1316, -594], [-1315, -592], [-1314, -590], [-1314, -589]]}, "center": {"199-258": [-1275, -587]}}, -{"id": 5565, "name": "Flag of Bangladesh", "description": "Bangladesh is a country in south-east Asia.\nThis art features the flag of Bangladesh during the liberation war of 1971. The flag had the map of the country in golden shade inside the red circle.\nThe monuments on the right are Shaheed Minar and Smritishoudho, signifying the sacrifices of the martyrs during the 1952 language movement and the 1971 liberation war martyrs. The Royal Bengal Tiger, found in the Sundarbans is featured on the left.", "links": {"website": ["https://bangladesh.gov.bd/"], "subreddit": ["bangladesh"], "discord": ["bangladesh"]}, "path": {"250-258": [[348, -549], [348, -520], [390, -520], [390, -549], [373, -549], [370, -549]]}, "center": {"250-258": [369, -534]}}, -{"id": 5566, "name": "Five-Star Wish", "description": "The Five-Star Wish is an image from Genshin Impact's gacha animation. It depicts a golden star with a rainbow halo around it. Signifying that the player has obtained a five-star character or weapon via a gacha animation.", "links": {"subreddit": ["Genshin_Impact"]}, "path": {"250-258": [[7, 264], [-2, 266], [-5, 270], [-6, 270], [-9, 269], [-8, 273], [-8, 274], [-9, 277], [-9, 280], [-10, 282], [-10, 285], [-10, 287], [-8, 288], [-7, 290], [-4, 294], [0, 298], [7, 301], [12, 300], [21, 294], [24, 287], [25, 283], [27, 282], [24, 278], [22, 274], [16, 274], [9, 266]]}, "center": {"250-258": [7, 285]}}, -{"id": 5567, "name": "Content creator uberbora", "description": "this is the logo of a small twitch streamer called uberbora. he also developes games and does 3d designing. if you are interested go check out his channel he is a pretty chill dude.", "links": {"website": ["https://www.twitch.tv/uberbora", "https://www.youtube.com/@uberbora/featured"], "subreddit": ["uberya"], "discord": ["qmCeW6TNTr"]}, "path": {"250-258": [[-215, 845], [-206, 854], [-215, 854], [-215, 845], [-206, 845], [-206, 854], [-215, 854]]}, "center": {"250-258": [-209, 848]}}, -{"id": 5568, "name": "Spain", "description": "When the r/PlaceEU map was created, people from the regions of Catalonia, Basque Country, and Galicia didn't like that the map depicted them as part of Spain, so they made their flags on top instead. Later, when people saw that the three independence movements succeeded in r/place, people decided to make all autonomous communities of Spain just for the LOLs. This is all that remained of the Spanish flag by the end of r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Flag_of_Spain"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"158-248": [[-324, 780], [-325, 781], [-325, 782], [-326, 783], [-326, 789], [-327, 790], [-327, 792], [-328, 792], [-329, 793], [-329, 794], [-330, 795], [-330, 797], [-331, 798], [-331, 799], [-332, 800], [-333, 801], [-333, 805], [-334, 806], [-334, 809], [-335, 810], [-335, 813], [-334, 814], [-333, 814], [-333, 818], [-331, 820], [-331, 821], [-330, 822], [-329, 822], [-328, 821], [-328, 820], [-317, 820], [-316, 821], [-315, 820], [-313, 820], [-312, 819], [-312, 818], [-311, 817], [-308, 817], [-307, 816], [-307, 815], [-306, 814], [-306, 813], [-304, 813], [-304, 812], [-303, 812], [-302, 811], [-304, 809], [-304, 806], [-299, 801], [-299, 796], [-300, 795], [-299, 794], [-299, 792], [-298, 791], [-299, 790], [-300, 790], [-301, 789], [-302, 790], [-302, 789], [-303, 788], [-304, 788], [-305, 789], [-306, 790], [-311, 790], [-312, 789], [-313, 789], [-315, 787], [-314, 786], [-314, 783], [-318, 783], [-318, 782], [-319, 782], [-320, 781], [-321, 781]], "249-258": [[-317, 812], [-315, 812], [-314, 813], [-313, 812], [-312, 812], [-311, 813], [-308, 810], [-308, 806], [-307, 805], [-307, 804], [-309, 802], [-310, 801], [-310, 800], [-313, 800], [-314, 801], [-316, 801], [-319, 805], [-322, 805], [-322, 807], [-323, 808], [-323, 811], [-320, 811], [-319, 811], [-318, 812]]}, "center": {"158-248": [-318, 805], "249-258": [-313, 807]}}, -{"id": 5569, "name": "Saint Sophia Cathedral", "description": "Saint Sophia Cathedral in Kyiv, Ukraine, is an architectural monument of Kievan Rus'. The former cathedral is one of the city's best known landmarks and the first heritage site in Ukraine to be inscribed on the World Heritage List along with the Kyiv Cave Monastery complex. Aside from its main building, the cathedral includes an ensemble of supporting structures such as a bell tower and the House of Metropolitan. In 2011 the historic site was reassigned from the jurisdiction of the Ministry of Regional Development of Ukraine to the Ministry of Culture of Ukraine. One of the reasons for the move was that both Saint Sophia Cathedral and Kyiv Pechersk Lavra are recognized by the UNESCO World Heritage Program as one complex, while in Ukraine the two were governed by different government entities. It is currently a museum.\n\nIn Ukrainian the cathedral is known as Sobor Sviatoi Sofii (Собор Святої Софії) or Sofiiskyi sobor (Софійський собор).", "links": {"subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"155-258": [[-223, -77], [-223, -89], [-225, -91], [-226, -94], [-228, -95], [-229, -96], [-232, -98], [-232, -101], [-233, -104], [-235, -108], [-238, -113], [-241, -116], [-243, -119], [-241, -122], [-241, -125], [-242, -127], [-243, -130], [-241, -132], [-242, -133], [-247, -134], [-248, -132], [-245, -126], [-246, -121], [-246, -118], [-250, -111], [-251, -100], [-252, -99], [-253, -104], [-254, -107], [-254, -110], [-255, -113], [-256, -116], [-257, -118], [-259, -113], [-259, -116], [-260, -120], [-261, -122], [-264, -124], [-265, -133], [-265, -137], [-267, -145], [-268, -147], [-271, -135], [-271, -132], [-271, -128], [-271, -124], [-284, -104], [-285, -108], [-288, -116], [-289, -120], [-288, -123], [-290, -126], [-290, -130], [-288, -131], [-292, -136], [-295, -134], [-300, -110], [-302, -108], [-303, -105], [-305, -101], [-307, -100], [-308, -98], [-310, -97], [-311, -94], [-312, -93], [-313, -90], [-314, -88], [-314, -85], [-314, -83], [-314, -76]]}, "center": {"155-258": [-269, -94]}}, -{"id": 5570, "name": "Logos of the teams r/saints & r/patriots", "description": "Logos of the teams r/saints & r/patriots", "links": {"subreddit": ["saints", "patriots"]}, "path": {"250-258": [[1459, -680], [1460, -680], [1476, -680], [1476, -673], [1459, -672]]}, "center": {"250-258": [1467, -676]}}, +{"id": 5561, "name": "µ's' colors", "description": "µ's is the first group of the Love Live! franchise. It is made up of nine members represented here by their image colors.\nFrom left to right then top to bottom, respectively:\n-Honoka Kousaka (orange)\n-Kotori Minami (grey)\n-Umi Sonoda (deep blue)\n-Maki Nishikino (red)\n-Rin Hoshizora (yellow)\n-Hanayo Koizumi (green)\n-Nico Yazawa (pink)\n-Nozomi Toujou (purple)\n-Eli Ayase (ice blue)", "links": {"website": ["https://love-live.fandom.com/wiki/Muse"]}, "path": {"250-258, T": [[-655, -236], [-655, -232], [-651, -232], [-651, -236]]}, "center": {"250-258, T": [-653, -234]}}, +{"id": 5562, "name": "Red Carnation", "description": "The Red Carnation flower is a symbol of what became known as the Carnation Revolution that took place in the 25th of April of 1974. This revolution, led by the portuguese military, put an end to the 48 year-long dictatorship instaured in Portugal. The flower became a symbol of the revolution when a woman put them in the barrels of the soldiers' guns. It has since been a symbol of liberty and democracy in Portugal.", "links": {"website": ["https://en.wikipedia.org/wiki/Carnation_Revolution"], "discord": ["TugaPlace"]}, "path": {"250-258, T": [[366, 345], [374, 345], [374, 343], [375, 343], [375, 341], [374, 341], [374, 340], [373, 340], [373, 338], [374, 338], [374, 336], [373, 336], [375, 336], [375, 335], [376, 335], [376, 334], [377, 334], [377, 330], [374, 330], [375, 330], [375, 329], [376, 329], [376, 328], [377, 328], [377, 325], [376, 325], [376, 324], [375, 324], [375, 323], [374, 323], [374, 322], [371, 322], [371, 323], [370, 323], [370, 322], [366, 322], [366, 323], [365, 323], [365, 324], [364, 324], [364, 327], [365, 327], [365, 328], [366, 328], [366, 329], [367, 329], [367, 330], [368, 330], [368, 332], [369, 332], [369, 336], [368, 336], [368, 337], [367, 337], [367, 339], [368, 339], [368, 340], [369, 340], [365, 340], [365, 343], [366, 343]]}, "center": {"250-258, T": [371, 327]}}, +{"id": 5564, "name": "Mauerstraßenwetten (german equivalent community to \"Wallstreetbets\")", "description": "A yew pointing at a blackboard, the German text says \"green when closing MSW\". It's the product of the german cooperation with the Mauerstraßenwetten (MSW) subreddit..\nThe yew is an insider joke of the MSW community.", "links": {"subreddit": ["mauerstrassenwetten", "placede"]}, "path": {"199-258, T": [[-1313, -591], [-1316, -586], [-1319, -578], [-1321, -572], [-1321, -560], [-1319, -554], [-1325, -552], [-1325, -551], [-1290, -550], [-1292, -554], [-1296, -556], [-1295, -558], [-1295, -562], [-1298, -566], [-1299, -569], [-1296, -570], [-1295, -567], [-1294, -566], [-1284, -566], [-1291, -554], [-1290, -551], [-1288, -551], [-1280, -565], [-1268, -566], [-1260, -552], [-1258, -552], [-1258, -555], [-1264, -566], [-1254, -566], [-1252, -568], [-1252, -570], [-1253, -571], [-1253, -605], [-1256, -608], [-1292, -608], [-1296, -605], [-1296, -597], [-1297, -598], [-1301, -598], [-1302, -597], [-1307, -597], [-1308, -597], [-1310, -599], [-1314, -599], [-1315, -597], [-1316, -596], [-1316, -594], [-1315, -592], [-1314, -590], [-1314, -589]]}, "center": {"199-258, T": [-1275, -587]}}, +{"id": 5565, "name": "Flag of Bangladesh", "description": "Bangladesh is a country in south-east Asia.\nThis art features the flag of Bangladesh during the liberation war of 1971. The flag had the map of the country in golden shade inside the red circle.\nThe monuments on the right are Shaheed Minar and Smritishoudho, signifying the sacrifices of the martyrs during the 1952 language movement and the 1971 liberation war martyrs. The Royal Bengal Tiger, found in the Sundarbans is featured on the left.", "links": {"website": ["https://bangladesh.gov.bd/"], "subreddit": ["bangladesh"], "discord": ["bangladesh"]}, "path": {"250-258, T": [[348, -549], [348, -520], [390, -520], [390, -549], [373, -549], [370, -549]]}, "center": {"250-258, T": [369, -534]}}, +{"id": 5566, "name": "Five-Star Wish", "description": "The Five-Star Wish is an image from Genshin Impact's gacha animation. It depicts a golden star with a rainbow halo around it. Signifying that the player has obtained a five-star character or weapon via a gacha animation.", "links": {"subreddit": ["Genshin_Impact"]}, "path": {"250-258, T": [[7, 264], [-2, 266], [-5, 270], [-6, 270], [-9, 269], [-8, 273], [-8, 274], [-9, 277], [-9, 280], [-10, 282], [-10, 285], [-10, 287], [-8, 288], [-7, 290], [-4, 294], [0, 298], [7, 301], [12, 300], [21, 294], [24, 287], [25, 283], [27, 282], [24, 278], [22, 274], [16, 274], [9, 266]]}, "center": {"250-258, T": [7, 285]}}, +{"id": 5567, "name": "Content creator uberbora", "description": "this is the logo of a small twitch streamer called uberbora. he also developes games and does 3d designing. if you are interested go check out his channel he is a pretty chill dude.", "links": {"website": ["https://www.twitch.tv/uberbora", "https://www.youtube.com/@uberbora/featured"], "subreddit": ["uberya"], "discord": ["qmCeW6TNTr"]}, "path": {"250-258, T": [[-215, 845], [-206, 854], [-215, 854], [-215, 845], [-206, 845], [-206, 854], [-215, 854]]}, "center": {"250-258, T": [-209, 848]}}, +{"id": 5568, "name": "Spain", "description": "When the r/PlaceEU map was created, people from the regions of Catalonia, Basque Country, and Galicia didn't like that the map depicted them as part of Spain, so they made their flags on top instead. Later, when people saw that the three independence movements succeeded in r/place, people decided to make all autonomous communities of Spain just for the LOLs. This is all that remained of the Spanish flag by the end of r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Flag_of_Spain"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"158-248": [[-324, 780], [-325, 781], [-325, 782], [-326, 783], [-326, 789], [-327, 790], [-327, 792], [-328, 792], [-329, 793], [-329, 794], [-330, 795], [-330, 797], [-331, 798], [-331, 799], [-332, 800], [-333, 801], [-333, 805], [-334, 806], [-334, 809], [-335, 810], [-335, 813], [-334, 814], [-333, 814], [-333, 818], [-331, 820], [-331, 821], [-330, 822], [-329, 822], [-328, 821], [-328, 820], [-317, 820], [-316, 821], [-315, 820], [-313, 820], [-312, 819], [-312, 818], [-311, 817], [-308, 817], [-307, 816], [-307, 815], [-306, 814], [-306, 813], [-304, 813], [-304, 812], [-303, 812], [-302, 811], [-304, 809], [-304, 806], [-299, 801], [-299, 796], [-300, 795], [-299, 794], [-299, 792], [-298, 791], [-299, 790], [-300, 790], [-301, 789], [-302, 790], [-302, 789], [-303, 788], [-304, 788], [-305, 789], [-306, 790], [-311, 790], [-312, 789], [-313, 789], [-315, 787], [-314, 786], [-314, 783], [-318, 783], [-318, 782], [-319, 782], [-320, 781], [-321, 781]], "249-258, T": [[-317, 812], [-315, 812], [-314, 813], [-313, 812], [-312, 812], [-311, 813], [-308, 810], [-308, 806], [-307, 805], [-307, 804], [-309, 802], [-310, 801], [-310, 800], [-313, 800], [-314, 801], [-316, 801], [-319, 805], [-322, 805], [-322, 807], [-323, 808], [-323, 811], [-320, 811], [-319, 811], [-318, 812]]}, "center": {"158-248": [-318, 805], "249-258, T": [-313, 807]}}, +{"id": 5569, "name": "Saint Sophia Cathedral", "description": "Saint Sophia Cathedral in Kyiv, Ukraine, is an architectural monument of Kievan Rus'. The former cathedral is one of the city's best known landmarks and the first heritage site in Ukraine to be inscribed on the World Heritage List along with the Kyiv Cave Monastery complex. Aside from its main building, the cathedral includes an ensemble of supporting structures such as a bell tower and the House of Metropolitan. In 2011 the historic site was reassigned from the jurisdiction of the Ministry of Regional Development of Ukraine to the Ministry of Culture of Ukraine. One of the reasons for the move was that both Saint Sophia Cathedral and Kyiv Pechersk Lavra are recognized by the UNESCO World Heritage Program as one complex, while in Ukraine the two were governed by different government entities. It is currently a museum.\n\nIn Ukrainian the cathedral is known as Sobor Sviatoi Sofii (Собор Святої Софії) or Sofiiskyi sobor (Софійський собор).", "links": {"subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"155-258, T": [[-223, -77], [-223, -89], [-225, -91], [-226, -94], [-228, -95], [-229, -96], [-232, -98], [-232, -101], [-233, -104], [-235, -108], [-238, -113], [-241, -116], [-243, -119], [-241, -122], [-241, -125], [-242, -127], [-243, -130], [-241, -132], [-242, -133], [-247, -134], [-248, -132], [-245, -126], [-246, -121], [-246, -118], [-250, -111], [-251, -100], [-252, -99], [-253, -104], [-254, -107], [-254, -110], [-255, -113], [-256, -116], [-257, -118], [-259, -113], [-259, -116], [-260, -120], [-261, -122], [-264, -124], [-265, -133], [-265, -137], [-267, -145], [-268, -147], [-271, -135], [-271, -132], [-271, -128], [-271, -124], [-284, -104], [-285, -108], [-288, -116], [-289, -120], [-288, -123], [-290, -126], [-290, -130], [-288, -131], [-292, -136], [-295, -134], [-300, -110], [-302, -108], [-303, -105], [-305, -101], [-307, -100], [-308, -98], [-310, -97], [-311, -94], [-312, -93], [-313, -90], [-314, -88], [-314, -85], [-314, -83], [-314, -76]]}, "center": {"155-258, T": [-269, -94]}}, +{"id": 5570, "name": "Logos of the teams r/saints & r/patriots", "description": "Logos of the teams r/saints & r/patriots", "links": {"subreddit": ["saints", "patriots"]}, "path": {"250-258, T": [[1459, -680], [1460, -680], [1476, -680], [1476, -673], [1459, -672]]}, "center": {"250-258, T": [1467, -676]}}, {"id": 5571, "name": "Ralsei", "description": "Ralsei is the soft and gentle third member of Deltarune's fun gang. This Ralsei was built as a collaboration effort between Deltarune and My Little Pony orchestrated by Deltarune discord user GreatandPowerfulSUZI. This Ralsei gained a red white and blue top hat in an attempt to appease the American flag hivemind, but it was not successful. AFIP would later put a different, more American Ralsei on the flag, since they had agreed to let him stay.", "links": {"discord": ["Deltarune", "BronyPlace", "AFIP"]}, "path": {"53-69": [[-78, 165], [-77, 166], [-77, 167], [-76, 167], [-76, 169], [-76, 170], [-75, 170], [-76, 171], [-74, 172], [-74, 173], [-74, 174], [-74, 175], [-75, 176], [-77, 176], [-78, 177], [-77, 178], [-76, 178], [-76, 179], [-75, 179], [-75, 180], [-75, 182], [-77, 182], [-81, 182], [-82, 181], [-83, 181], [-84, 182], [-86, 182], [-87, 182], [-88, 181], [-88, 180], [-87, 179], [-87, 177], [-87, 176], [-88, 176], [-88, 175], [-89, 175], [-89, 174], [-89, 172], [-88, 172], [-88, 171], [-87, 171], [-87, 170], [-87, 168], [-88, 168], [-88, 167], [-88, 166], [-86, 165], [-84, 164], [-83, 163], [-85, 163], [-85, 161], [-85, 159], [-85, 158], [-79, 158], [-79, 162], [-79, 164]]}, "center": {"53-69": [-82, 173]}}, -{"id": 5572, "name": "STRAY KIDS/SKZOO", "description": "Stray Kids are a South Korean boy group.\n\nSKZOO (a pun between Stray Kids and zoo) are the representative animals of each member.\n\nFrom top row, left to right the characters are Seungmin (PuppyM, a puppy), I.N. (FoxI.Ny, a fennec fox), Hyunjin (Jiniret, a ferret), Han (HAN QUOKKA, a quokka), Felix (BbokAri, a chick), Bang Chan (Wolf Chan, a wolf), Lee Know (LeeBit, a bunny) and Changbin (DWAEKKI, a pig/rabbit hybrid).\n\nThe space also features a small rainbow square on the top right.", "links": {"website": ["https://stray-kids.fandom.com/wiki/SKZOO"]}, "path": {"177-258": [[-1400, -368], [-1382, -368], [-1382, -352], [-1400, -352]]}, "center": {"177-258": [-1391, -360]}}, +{"id": 5572, "name": "STRAY KIDS/SKZOO", "description": "Stray Kids are a South Korean boy group.\n\nSKZOO (a pun between Stray Kids and zoo) are the representative animals of each member.\n\nFrom top row, left to right the characters are Seungmin (PuppyM, a puppy), I.N. (FoxI.Ny, a fennec fox), Hyunjin (Jiniret, a ferret), Han (HAN QUOKKA, a quokka), Felix (BbokAri, a chick), Bang Chan (Wolf Chan, a wolf), Lee Know (LeeBit, a bunny) and Changbin (DWAEKKI, a pig/rabbit hybrid).\n\nThe space also features a small rainbow square on the top right.", "links": {"website": ["https://stray-kids.fandom.com/wiki/SKZOO"]}, "path": {"177-258, T": [[-1400, -368], [-1382, -368], [-1382, -352], [-1400, -352]]}, "center": {"177-258, T": [-1391, -360]}}, {"id": 5573, "name": "I:S::K:F", "description": "I:S::K:F (Ignorance, Slavery. Knowledge, Freedom) is the motto of the Messengers, which refers both to the real world fans of the band Starset, and the in universe members of The Starset Society, an organization that exists as part of the lore of the band.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Starset"], "subreddit": ["Starset"]}, "path": {"7-40": [[-308, 108], [-308, 116], [-284, 116], [-284, 108]]}, "center": {"7-40": [-296, 112]}}, -{"id": 5574, "name": "Corsica", "description": "Corsica is an island in the Mediterranean Sea that is part of France. The flag of Corsica is used as a background here. \n\nCorsica has one of the most famous independence/autonomist movement in Europe. After Europe was drawn on the canvas and until its end, Corsicans from r/placeCorse fought against the French and the Italians to get their independence and succeeded several times until appearing in the final screenshot!", "links": {"website": ["https://en.wikipedia.org/wiki/Corsica", "https://en.wikipedia.org/wiki/Flag_of_Corsica"], "subreddit": ["placeCorse"], "discord": ["5zBBNrAJbN"]}, "path": {"159-258": [[-263, 798], [-263, 797], [-262, 797], [-262, 796], [-262, 795], [-261, 795], [-261, 788], [-262, 788], [-262, 784], [-265, 784], [-265, 786], [-262, 786], [-262, 790], [-264, 790], [-264, 791], [-264, 792], [-265, 792], [-265, 793], [-266, 793], [-266, 795], [-265, 795], [-265, 797], [-264, 797]]}, "center": {"159-258": [-263, 794]}}, -{"id": 5575, "name": "Lain Iwakura", "description": "Lain Iwakura is the main character of psychological techno-horror anime series \"Serial Experiments Lain\".", "links": {"subreddit": ["Lain"]}, "path": {"250-258": [[-690, -113], [-681, -113], [-680, -114], [-680, -115], [-677, -118], [-677, -125], [-676, -126], [-676, -136], [-678, -138], [-679, -139], [-688, -139], [-691, -136], [-691, -135], [-692, -134], [-692, -127], [-691, -126], [-690, -127], [-689, -126], [-689, -125], [-688, -124], [-689, -123], [-692, -120], [-692, -115]]}, "center": {"250-258": [-684, -131]}}, -{"id": 5576, "name": "TeaRex emote from Rhetsina", "description": "This is the TeaRex emote from the streamer Rhetsina on Twitch. Rhetsina aka. Rhetsi is a german speaking content creator", "links": {"website": ["https://www.twitch.tv/rhetsina"], "discord": ["4sHzh5rTtn"]}, "path": {"250-251": [[-1191, -747], [-1184, -749], [-1194, -747], [-1193, -731], [-1175, -731], [-1169, -743], [-1173, -748], [-1175, -751], [-1192, -751]]}, "center": {"250-251": [-1181, -740]}}, -{"id": 5577, "name": "Portals", "description": "The classic orange and blue portals of the Portal franchise. Because the Aperture Science Handheld Portal Device cant help but find its way to this cosmic meeting room.", "links": {"website": ["https://half-life.fandom.com"], "subreddit": ["portal"]}, "path": {"96-258": [[201, -388], [203, -390], [209, -385], [209, -379], [251, -379], [251, -385], [256, -389], [260, -388], [255, -387], [253, -371], [258, -368], [252, -368], [250, -379], [209, -379], [208, -374], [207, -368], [201, -369], [205, -370], [205, -383], [204, -386]]}, "center": {"96-258": [207, -384]}}, +{"id": 5574, "name": "Corsica", "description": "Corsica is an island in the Mediterranean Sea that is part of France. The flag of Corsica is used as a background here. \n\nCorsica has one of the most famous independence/autonomist movement in Europe. After Europe was drawn on the canvas and until its end, Corsicans from r/placeCorse fought against the French and the Italians to get their independence and succeeded several times until appearing in the final screenshot!", "links": {"website": ["https://en.wikipedia.org/wiki/Corsica", "https://en.wikipedia.org/wiki/Flag_of_Corsica"], "subreddit": ["placeCorse"], "discord": ["5zBBNrAJbN"]}, "path": {"159-258, T": [[-263, 798], [-263, 797], [-262, 797], [-262, 796], [-262, 795], [-261, 795], [-261, 788], [-262, 788], [-262, 784], [-265, 784], [-265, 786], [-262, 786], [-262, 790], [-264, 790], [-264, 791], [-264, 792], [-265, 792], [-265, 793], [-266, 793], [-266, 795], [-265, 795], [-265, 797], [-264, 797]]}, "center": {"159-258, T": [-263, 794]}}, +{"id": 5575, "name": "Lain Iwakura", "description": "Lain Iwakura is the main character of psychological techno-horror anime series \"Serial Experiments Lain\".", "links": {"subreddit": ["Lain"]}, "path": {"250-258, T": [[-690, -113], [-681, -113], [-680, -114], [-680, -115], [-677, -118], [-677, -125], [-676, -126], [-676, -136], [-678, -138], [-679, -139], [-688, -139], [-691, -136], [-691, -135], [-692, -134], [-692, -127], [-691, -126], [-690, -127], [-689, -126], [-689, -125], [-688, -124], [-689, -123], [-692, -120], [-692, -115]]}, "center": {"250-258, T": [-684, -131]}}, +{"id": 5576, "name": "TeaRex emote from Rhetsina", "description": "This is the TeaRex emote from the streamer Rhetsina on Twitch. Rhetsina aka. Rhetsi is a german speaking content creator", "links": {"website": ["https://www.twitch.tv/rhetsina"], "discord": ["4sHzh5rTtn"]}, "path": {"250-251, T": [[-1191, -747], [-1184, -749], [-1194, -747], [-1193, -731], [-1175, -731], [-1169, -743], [-1173, -748], [-1175, -751], [-1192, -751]]}, "center": {"250-251, T": [-1181, -740]}}, +{"id": 5577, "name": "Portals", "description": "The classic orange and blue portals of the Portal franchise. Because the Aperture Science Handheld Portal Device cant help but find its way to this cosmic meeting room.", "links": {"website": ["https://half-life.fandom.com"], "subreddit": ["portal"]}, "path": {"96-258, T": [[201, -388], [203, -390], [209, -385], [209, -379], [251, -379], [251, -385], [256, -389], [260, -388], [255, -387], [253, -371], [258, -368], [252, -368], [250, -379], [209, -379], [208, -374], [207, -368], [201, -369], [205, -370], [205, -383], [204, -386]]}, "center": {"96-258, T": [207, -384]}}, {"id": 5578, "name": "Sonichu (Pre-Scream Exile)", "description": "Art of Sonichu in the \"Der Rahmen/De Randlijst\" frame before it was replaced by \"The Scream\". The character would reappear in the centre-left of r/place.\n\nSonichu is an OC by the infamous lolcow Chris Chan. Sonichu stars in the eponymous \"Sonichu\" comic. Once the main character, his plot gets overshadowed by Chris's \"love quest\" and various sagas with Chris Chan's trolls.\n\nSonichu himself is a combination between Sonic and Pikachu, although his name surprisingly comes from the anglicisation of Sonikku, Sonic's Japanese name. He is married to the transwoman Rosechu and is considered a Mary Sue by the majority of Christorians.", "links": {"website": ["https://sonichu.com/cwcki"], "subreddit": ["ChrisChanSonichu"]}, "path": {"215-230": [[-576, 702], [-589, 702], [-596, 692], [-596, 677], [-579, 677], [-578, 690]]}, "center": {"215-230": [-587, 689]}}, -{"id": 5579, "name": "Captain Rex helmet", "description": "Captain Rex (designation number CT-7567) is a fictional character in the Star Wars franchise created by George Lucas. He was introduced as a main character in the animated The Clone Wars 2008 film and the related television series of the same name. Rex is a clone trooper of the Grand Army of the Republic, cloned from the Mandalorian bounty hunter Jango Fett, and serves the Galactic Republic under the command of Jedi General Anakin Skywalker and Jedi Commander Ahsoka Tano. \n\nSince his introduction in The Clone Wars, he has also appeared in the 2014 Star Wars Rebels television series, the 2021 Star Wars: The Bad Batch television series, the 2022 Tales of the Jedi television series and various spin-off media.", "links": {"website": ["https://starwars.fandom.com/wiki/Rex"], "subreddit": ["StarWars_Place"], "discord": ["TheGalacticRepublic"]}, "path": {"220-258": [[1049, -714], [1047, -726], [1054, -723], [1065, -720], [1065, -707], [1051, -706], [1047, -721]]}, "center": {"220-258": [1057, -714]}}, -{"id": 5580, "name": "Flag of Dorset", "description": "Dorset is a county in southwest England. It's known for the Jurassic Coast, a long stretch on the English Channel where the cliffs contain many fossils, and rock formations show millions of years of geological history. Two prominent natural landmarks are Durdle Door, an ancient stone arch, and the layered cliffs at nearby Lulworth Cove. The towns of Poole, Weymouth and Swanage are popular for their sandy beaches", "links": {}, "path": {"250-258": [[-333, -298], [-321, -298], [-321, -292], [-333, -292], [-333, -296]]}, "center": {"250-258": [-327, -295]}}, -{"id": 5581, "name": "Sonichu", "description": "Art of Sonichu, an OC by the infamous lolcow Chris Chan. He is a major supporting character in the eponymous comic \"Sonichu\".\n\nA larger art piece of Sonichu was constructed in the \"Der Rahman/De Randlijst\" frame (located in the northeast) before it was replaced by the scream.", "links": {"website": ["https://sonichu.com/cwcki"], "subreddit": ["ChrisChanSonichu"]}, "path": {"250-258": [[-1238, 255], [-1255, 259], [-1251, 273], [-1241, 272]]}, "center": {"250-258": [-1246, 264]}}, -{"id": 5582, "name": "Agumon", "description": "A very well-known Digimon and main character in many series and games.", "links": {"subreddit": ["digimon"]}, "path": {"250-258": [[1297, -493], [1307, -494], [1310, -489], [1308, -488], [1309, -484], [1311, -481], [1298, -481], [1297, -488]]}, "center": {"250-258": [1303, -487]}}, -{"id": 5583, "name": "League Of Legends icon", "description": "Icon of League of Legends, a popular MOBA game developed by Riot Games", "links": {"website": ["https://www.leagueoflegends.com"], "subreddit": ["leagueoflegends"]}, "path": {"245-258": [[688, -675], [697, -675], [697, -666], [688, -666]]}, "center": {"245-258": [693, -670]}}, +{"id": 5579, "name": "Captain Rex helmet", "description": "Captain Rex (designation number CT-7567) is a fictional character in the Star Wars franchise created by George Lucas. He was introduced as a main character in the animated The Clone Wars 2008 film and the related television series of the same name. Rex is a clone trooper of the Grand Army of the Republic, cloned from the Mandalorian bounty hunter Jango Fett, and serves the Galactic Republic under the command of Jedi General Anakin Skywalker and Jedi Commander Ahsoka Tano. \n\nSince his introduction in The Clone Wars, he has also appeared in the 2014 Star Wars Rebels television series, the 2021 Star Wars: The Bad Batch television series, the 2022 Tales of the Jedi television series and various spin-off media.", "links": {"website": ["https://starwars.fandom.com/wiki/Rex"], "subreddit": ["StarWars_Place"], "discord": ["TheGalacticRepublic"]}, "path": {"220-258, T": [[1049, -714], [1047, -726], [1054, -723], [1065, -720], [1065, -707], [1051, -706], [1047, -721]]}, "center": {"220-258, T": [1057, -714]}}, +{"id": 5580, "name": "Flag of Dorset", "description": "Dorset is a county in southwest England. It's known for the Jurassic Coast, a long stretch on the English Channel where the cliffs contain many fossils, and rock formations show millions of years of geological history. Two prominent natural landmarks are Durdle Door, an ancient stone arch, and the layered cliffs at nearby Lulworth Cove. The towns of Poole, Weymouth and Swanage are popular for their sandy beaches", "links": {}, "path": {"250-258, T": [[-333, -298], [-321, -298], [-321, -292], [-333, -292], [-333, -296]]}, "center": {"250-258, T": [-327, -295]}}, +{"id": 5581, "name": "Sonichu", "description": "Art of Sonichu, an OC by the infamous lolcow Chris Chan. He is a major supporting character in the eponymous comic \"Sonichu\".\n\nA larger art piece of Sonichu was constructed in the \"Der Rahman/De Randlijst\" frame (located in the northeast) before it was replaced by the scream.", "links": {"website": ["https://sonichu.com/cwcki"], "subreddit": ["ChrisChanSonichu"]}, "path": {"250-258, T": [[-1238, 255], [-1255, 259], [-1251, 273], [-1241, 272]]}, "center": {"250-258, T": [-1246, 264]}}, +{"id": 5582, "name": "Agumon", "description": "A very well-known Digimon and main character in many series and games.", "links": {"subreddit": ["digimon"]}, "path": {"250-258, T": [[1297, -493], [1307, -494], [1310, -489], [1308, -488], [1309, -484], [1311, -481], [1298, -481], [1297, -488]]}, "center": {"250-258, T": [1303, -487]}}, +{"id": 5583, "name": "League Of Legends icon", "description": "Icon of League of Legends, a popular MOBA game developed by Riot Games", "links": {"website": ["https://www.leagueoflegends.com"], "subreddit": ["leagueoflegends"]}, "path": {"245-258, T": [[688, -675], [697, -675], [697, -666], [688, -666]]}, "center": {"245-258, T": [693, -670]}}, {"id": 5584, "name": "Caterpie evolution line", "description": "Caterpie is a pokemon from the first generation of the series. This are it's other 2 evolutions, Metapod an Butterfree.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Caterpie_(Pok%C3%A9mon)", "https://www.cgtrader.com/3d-print-models/art/sculptures/caterpie-evolution-line"]}, "path": {"226": [[-1314, 164], [-1314, 170], [-1315, 171], [-1315, 172], [-1316, 173], [-1316, 175], [-1315, 176], [-1315, 177], [-1314, 178], [-1314, 183], [-1214, 183], [-1214, 161], [-1314, 161]]}, "center": {"226": [-1265, 172]}}, -{"id": 5585, "name": "Amaterasu from Okami", "description": "Amaterasu (Ammy) from the game Okami, originally released in 2006 for the PlayStation 2. Okami is now playable on Nintendo Switch, PS4, Windows, and Modern X Box consoles. The game follows Amy clearing a curse from the land she protects. in 2006 Okami was IGN's Game of the Year", "links": {"website": ["https://en.wikipedia.org/wiki/%C5%8Ckami"], "subreddit": ["okami"]}, "path": {"250-258": [[-1226, -687], [-1216, -687], [-1216, -678], [-1226, -678]]}, "center": {"250-258": [-1221, -682]}}, -{"id": 5586, "name": "Triforce", "description": "Source of power from Legend of Zelda", "links": {"website": ["https://zelda.fandom.com/wiki/Triforce"]}, "path": {"167-258": [[-149, 837], [-133, 852], [-164, 852]]}, "center": {"167-258": [-149, 846]}}, -{"id": 5587, "name": "Gintoki and Justaway", "description": "Gintoki and a Justaway from the anime and manga series Gintama by Hideaki Sorachi", "links": {"subreddit": ["gintama"]}, "path": {"250-258": [[1380, 190], [1393, 191], [1393, 224], [1380, 224]]}, "center": {"250-258": [1387, 207]}}, -{"id": 5588, "name": "DVA", "description": "Dva is a character from Overwatch and was pixeled by the user DvaJuice and his friends Tobi, Lattensepp aka Nils", "links": {"website": ["https://www.instagram.com/dvajuice/"]}, "path": {"250-258": [[-558, -315], [-540, -315], [-540, -310], [-558, -310]]}, "center": {"250-258": [-549, -312]}}, -{"id": 5589, "name": "Texas A&M University", "description": "", "links": {"subreddit": ["aggies"]}, "path": {"250-258": [[412, 903], [439, 904], [438, 924], [412, 924]]}, "center": {"250-258": [425, 914]}}, +{"id": 5585, "name": "Amaterasu from Okami", "description": "Amaterasu (Ammy) from the game Okami, originally released in 2006 for the PlayStation 2. Okami is now playable on Nintendo Switch, PS4, Windows, and Modern X Box consoles. The game follows Amy clearing a curse from the land she protects. in 2006 Okami was IGN's Game of the Year", "links": {"website": ["https://en.wikipedia.org/wiki/%C5%8Ckami"], "subreddit": ["okami"]}, "path": {"250-258, T": [[-1226, -687], [-1216, -687], [-1216, -678], [-1226, -678]]}, "center": {"250-258, T": [-1221, -682]}}, +{"id": 5586, "name": "Triforce", "description": "Source of power from Legend of Zelda", "links": {"website": ["https://zelda.fandom.com/wiki/Triforce"]}, "path": {"167-258, T": [[-149, 837], [-133, 852], [-164, 852]]}, "center": {"167-258, T": [-149, 846]}}, +{"id": 5587, "name": "Gintoki and Justaway", "description": "Gintoki and a Justaway from the anime and manga series Gintama by Hideaki Sorachi", "links": {"subreddit": ["gintama"]}, "path": {"250-258, T": [[1380, 190], [1393, 191], [1393, 224], [1380, 224]]}, "center": {"250-258, T": [1387, 207]}}, +{"id": 5588, "name": "DVA", "description": "Dva is a character from Overwatch and was pixeled by the user DvaJuice and his friends Tobi, Lattensepp aka Nils", "links": {"website": ["https://www.instagram.com/dvajuice/"]}, "path": {"250-258, T": [[-558, -315], [-540, -315], [-540, -310], [-558, -310]]}, "center": {"250-258, T": [-549, -312]}}, +{"id": 5589, "name": "Texas A&M University", "description": "", "links": {"subreddit": ["aggies"]}, "path": {"250-258, T": [[412, 903], [439, 904], [438, 924], [412, 924]]}, "center": {"250-258, T": [425, 914]}}, {"id": 5590, "name": "DuendePablo", "description": "\"La Comarca\" is the community of the argentinian content creator \"DuendePablo\"", "links": {"website": ["https://www.twitch.tv/duendepablo", "https://www.youtube.com/c/DuendeGaming", "https://twitter.com/DuendeGaming"], "discord": ["duende"]}, "path": {"253": [[678, 945], [705, 945], [705, 970], [678, 970]]}, "center": {"253": [692, 958]}}, -{"id": 5591, "name": "Comander Cody helmet", "description": "Cody, formerly designated CC-2224, was a male Clone Marshal Commander in the Grand Army of the Republic who commanded the 7th Sky Corps—including its renowned subunit the 212th Attack Battalion—during the Clone Wars. He served as the second-in-command of High Jedi General Obi-Wan Kenobi within the Third Systems Army and the 7th Sky Corps. \n\nIn the Battle of Utapau , Cody carried out an action that proved to be his most enduring legacy: he was the man to order Kenobi's death, albeit not by choice. The Clone Commander received a transmission from Darth Sidious, who instructed him to execute Order 66.", "links": {"website": ["https://starwars.fandom.com/wiki/Cody?so=search"], "subreddit": ["StarWars_Place"], "discord": ["TheGalacticRepublic"]}, "path": {"222-258": [[1066, -707], [1067, -728], [1076, -729], [1078, -724], [1081, -721], [1082, -706], [1066, -706], [1066, -709]]}, "center": {"222-258": [1074, -714]}}, -{"id": 5592, "name": "Onche", "description": "Onche is a French forum created in 2018 as an alternative to the Blabla 18-25 forum from jeuxvideo.com. It was created by former 18-25 users as the forum was becoming more and more censored via strict moderation measures.\n\nDespite being a small forum with low traffic, Onche offers more freedom of speech than 18-25. The two communities otherwise remian very similar.", "links": {"website": ["https://onche.org/"], "discord": ["fBd573d"]}, "path": {"49-258": [[-166, 357], [-166, 389], [-161, 389], [-161, 357], [-163, 357]]}, "center": {"49-258": [-163, 373]}}, -{"id": 5593, "name": "Imperial-class Star Destroyer", "description": "The Imperial-class Star Destroyer known generally as the Imperial Star Destroyer, was a product line of massive dagger-shaped capital ships of the Imperial Navy of the Galactic Empire and later the naval branch of the First Order\n\nThe Imperial-Star Destroyer replaced the smaller Venator-class used by the Galactic Republic during the Clone Wars and was generally the Galactic Empire's star cruiser of choice. At the height of its power, the Empire operated over 25,000 Star Destroyers.", "links": {"website": ["https://starwars.fandom.com/wiki/Imperial-class_Star_Destroyer"], "subreddit": ["StarWars"]}, "path": {"246-251": [[1022, -772], [1029, -771], [1031, -768], [1040, -766], [1045, -759], [1044, -755], [1053, -744], [1056, -737], [1063, -726], [1063, -723], [1057, -724], [1045, -733], [1034, -740], [1027, -746], [1018, -751], [1011, -751], [1004, -758], [1012, -764], [1019, -769], [1022, -772], [1024, -772]]}, "center": {"246-251": [1032, -756]}}, -{"id": 5595, "name": "Lambda-class shuttle", "description": "The Lambda-class T-4a shuttle, also known as the Lambda-class shuttle, Imperial Lambda, Imperial Transport or the Imperial Shuttle, was a multi-purpose transport with a trihedral foil design used by the Galactic Empire during the Galactic Civil War, and was considered an elegant departure from the standards of brutish Imperial engineering. The shuttles were often used by high-ranking Imperial officers and such dignitaries as Darth Vader and Emperor Sheev Palpatine, but were more commonly found ferrying stormtroopers or cargo.", "links": {"website": ["https://starwars.fandom.com/wiki/Lambda-class_T-4a_shuttle"], "subreddit": ["StarWars"]}, "path": {"250-258": [[1004, -717], [1011, -727], [1011, -731], [1014, -732], [1016, -746], [1017, -749], [1022, -745], [1023, -741], [1025, -735], [1025, -732], [1030, -727], [1033, -717], [1028, -718], [1020, -725], [1007, -714], [1004, -716]]}, "center": {"250-258": [1020, -731]}}, +{"id": 5591, "name": "Comander Cody helmet", "description": "Cody, formerly designated CC-2224, was a male Clone Marshal Commander in the Grand Army of the Republic who commanded the 7th Sky Corps—including its renowned subunit the 212th Attack Battalion—during the Clone Wars. He served as the second-in-command of High Jedi General Obi-Wan Kenobi within the Third Systems Army and the 7th Sky Corps. \n\nIn the Battle of Utapau , Cody carried out an action that proved to be his most enduring legacy: he was the man to order Kenobi's death, albeit not by choice. The Clone Commander received a transmission from Darth Sidious, who instructed him to execute Order 66.", "links": {"website": ["https://starwars.fandom.com/wiki/Cody?so=search"], "subreddit": ["StarWars_Place"], "discord": ["TheGalacticRepublic"]}, "path": {"222-258, T": [[1066, -707], [1067, -728], [1076, -729], [1078, -724], [1081, -721], [1082, -706], [1066, -706], [1066, -709]]}, "center": {"222-258, T": [1074, -714]}}, +{"id": 5592, "name": "Onche", "description": "Onche is a French forum created in 2018 as an alternative to the Blabla 18-25 forum from jeuxvideo.com. It was created by former 18-25 users as the forum was becoming more and more censored via strict moderation measures.\n\nDespite being a small forum with low traffic, Onche offers more freedom of speech than 18-25. The two communities otherwise remian very similar.", "links": {"website": ["https://onche.org/"], "discord": ["fBd573d"]}, "path": {"49-258, T": [[-166, 357], [-166, 389], [-161, 389], [-161, 357], [-163, 357]]}, "center": {"49-258, T": [-163, 373]}}, +{"id": 5593, "name": "Imperial-class Star Destroyer", "description": "The Imperial-class Star Destroyer known generally as the Imperial Star Destroyer, was a product line of massive dagger-shaped capital ships of the Imperial Navy of the Galactic Empire and later the naval branch of the First Order\n\nThe Imperial-Star Destroyer replaced the smaller Venator-class used by the Galactic Republic during the Clone Wars and was generally the Galactic Empire's star cruiser of choice. At the height of its power, the Empire operated over 25,000 Star Destroyers.", "links": {"website": ["https://starwars.fandom.com/wiki/Imperial-class_Star_Destroyer"], "subreddit": ["StarWars"]}, "path": {"246-251, T": [[1022, -772], [1029, -771], [1031, -768], [1040, -766], [1045, -759], [1044, -755], [1053, -744], [1056, -737], [1063, -726], [1063, -723], [1057, -724], [1045, -733], [1034, -740], [1027, -746], [1018, -751], [1011, -751], [1004, -758], [1012, -764], [1019, -769], [1022, -772], [1024, -772]]}, "center": {"246-251, T": [1032, -756]}}, +{"id": 5595, "name": "Lambda-class shuttle", "description": "The Lambda-class T-4a shuttle, also known as the Lambda-class shuttle, Imperial Lambda, Imperial Transport or the Imperial Shuttle, was a multi-purpose transport with a trihedral foil design used by the Galactic Empire during the Galactic Civil War, and was considered an elegant departure from the standards of brutish Imperial engineering. The shuttles were often used by high-ranking Imperial officers and such dignitaries as Darth Vader and Emperor Sheev Palpatine, but were more commonly found ferrying stormtroopers or cargo.", "links": {"website": ["https://starwars.fandom.com/wiki/Lambda-class_T-4a_shuttle"], "subreddit": ["StarWars"]}, "path": {"250-258, T": [[1004, -717], [1011, -727], [1011, -731], [1014, -732], [1016, -746], [1017, -749], [1022, -745], [1023, -741], [1025, -735], [1025, -732], [1030, -727], [1033, -717], [1028, -718], [1020, -725], [1007, -714], [1004, -716]]}, "center": {"250-258, T": [1020, -731]}}, {"id": 5596, "name": "Hikari", "description": "Hikari from the mobile rhythm game Arcaea", "links": {"website": ["https://lowiro.com"], "subreddit": ["arcaea"], "discord": ["arcaea"]}, "path": {"185-222": [[-623, 664], [-605, 664], [-605, 655], [-623, 655], [-623, 664], [-623, 648], [-622, 648], [-622, 647], [-621, 647], [-621, 645], [-620, 645], [-620, 643], [-619, 643], [-619, 642], [-616, 642], [-616, 652], [-615, 652], [-615, 653], [-614, 653], [-614, 654], [-613, 654], [-613, 655], [-623, 655]]}, "center": {"185-222": [-618, 660]}}, -{"id": 5597, "name": "Spez Démission !", "description": "\"Spez Démission\" is a banner directly referencing a slogan used since the Yellow Vests protests in 2018, \"Macron Démission\", where many people asked the president elect Emmanuel Macron to resign after he made some questionable choices at the helm of the country.", "links": {}, "path": {"60-258": [[-501, -9], [-501, 8], [-369, 9], [-370, -9]]}, "center": {"60-258": [-384, 0]}}, -{"id": 5598, "name": "MeLu", "description": "♥Melu♥ es una youtuber argentina dedicada a subir vídeos de gameplays y hacer animaciones", "links": {"website": ["https://www.youtube.com/@MeLuYT"]}, "path": {"250-258": [[-234, -845], [-225, -845], [-225, -836], [-234, -836]]}, "center": {"250-258": [-229, -840]}}, -{"id": 5599, "name": "Skrunkly", "description": "This is the mascot of idol VTuber Rin Penrose which was constructed by vtubers place, featuring the original two colors. \n\nThe word skrunkly means \"something which looks weird yet cute or appealing\".", "links": {"website": ["https://idol-company.com/"], "subreddit": ["idolcorp"], "discord": ["vtubersplace"]}, "path": {"250-258": [[-339, -892], [-343, -888], [-343, -885], [-339, -881], [-336, -881], [-332, -885], [-332, -888], [-334, -890], [-338, -891], [-335, -891]]}, "center": {"250-258": [-338, -886]}}, -{"id": 5600, "name": "Emblem of Arstotzka", "description": "Arstotzka is a communist country and the main setting of the game Papers, Please. It is where the player character works at the Grestin border checkpoint. The country's infamous motto is \"Glory to Arstotzka\".", "links": {"website": ["https://store.steampowered.com/app/239030/Papers_Please/"], "subreddit": ["papersplease"]}, "path": {"226-258": [[1203, -759], [1226, -759], [1226, -754], [1215, -744], [1200, -755], [1202, -758]]}, "center": {"226-258": [1214, -753]}}, -{"id": 5601, "name": "RocketbeansTV/Rocketbeans Entertainment (RBTV)", "description": "RocktebeansTV part of the big list of Streamers on this artwork.\nRocketbeansTV is a Livestream Channel and GMBH (founded by Arno Heinisch, Nils Bomhoff, Simon Krätschmer, Daniel Budiman, Etienne Gardé). RBTV had a 24/7 Livestream from 2015 - 2021, but then changed the format to just live shows. They are also producing many gaming shows (for example let's plays, and game talks) and many entertainment shows.", "links": {"website": ["https://rocketbeans.tv/"]}, "path": {"250-258": [[-771, -357], [-774, -355], [-776, -354], [-778, -355], [-778, -357], [-779, -360], [-779, -363], [-778, -365], [-776, -367], [-773, -367], [-770, -367], [-769, -367], [-768, -366], [-767, -365], [-766, -363], [-766, -360], [-769, -363], [-770, -358]]}, "center": {"250-258": [-774, -362]}}, -{"id": 5602, "name": "Rei Ayanami", "description": "Rei is a central character of the renowned anime series \"Neon Geneis Evangelion\". Here she is stylised in her chibi plush form, an image which has become a popular internet meme.", "links": {"subreddit": ["Evangelion"]}, "path": {"250-258": [[-676, -119], [-676, -121], [-675, -121], [-673, -123], [-673, -125], [-674, -125], [-674, -127], [-675, -127], [-675, -136], [-672, -139], [-663, -139], [-661, -137], [-661, -119], [-663, -120], [-663, -117], [-665, -117], [-666, -118], [-667, -118], [-668, -119], [-675, -119]]}, "center": {"250-258": [-668, -132]}}, -{"id": 5603, "name": "TJ", "description": "TJ (until November 19, 2014 - TJournal) was a Russian online publication and news aggregator that existed from 2011 to 2022.\nOn March 14, 2022, the publication's website was blocked in Russia for publications about Russia's invasion of Ukraine.\nOn August 22, 2022, the administration of the site announced its closure due to the problem of financing the project after it was blocked.\nSignificant part of sites audience moved to Reddit, mainly to r/tjournal_refugees.\nAnother offspring, r/true_tj was later blocked and moved to Discord instead.", "links": {"website": ["https://ru.wikipedia.org/wiki/TJ"], "subreddit": ["tjournal_refugees"], "discord": ["DKdXpnQycr"]}, "path": {"180-258": [[117, 125], [122, 125], [122, 130], [117, 130]]}, "center": {"180-258": [120, 128]}}, -{"id": 5604, "name": "Thailand-Transplace Alliance", "description": "r/Thailand and r/transplace became allies within the first quarter of r/place 2023. This partnership began after the first main r/transplace flag was moved due to Fuck Spez art, then later the Thailand flag was formed from a section of the Costa Rica flag that had been split off by Italy. Thereafter, Thailand and Transplace assisted each other in maintenance and numerous rebuilds. \nThis collaboration was signified with a heart including the flag of Thailand, and flags signifying transgender and non-binary identifications.", "links": {"subreddit": ["Thailand", "thaithai", "transplace"]}, "path": {"53-258": [[113, 82], [118, 82], [118, 65], [113, 65]]}, "center": {"53-258": [116, 74]}}, -{"id": 5605, "name": "Easter Rising, 1916", "description": "The 1916 Easter Rising was a pivotal event in Ireland's struggle for independence from British rule. It took place from April 24 to April 29, 1916, in Dublin, Ireland.\n\nThe rebellion was led by Irish nationalists who sought to establish an Irish Republic and end British control over the island.", "links": {"website": ["https://en.wikipedia.org/wiki/Easter_Rising"]}, "path": {"72-258": [[299, -107], [299, -81], [318, -81], [318, -107]]}, "center": {"72-258": [309, -94]}}, +{"id": 5597, "name": "Spez Démission !", "description": "\"Spez Démission\" is a banner directly referencing a slogan used since the Yellow Vests protests in 2018, \"Macron Démission\", where many people asked the president elect Emmanuel Macron to resign after he made some questionable choices at the helm of the country.", "links": {}, "path": {"60-258, T": [[-501, -9], [-501, 8], [-369, 9], [-370, -9]]}, "center": {"60-258, T": [-384, 0]}}, +{"id": 5598, "name": "MeLu", "description": "♥Melu♥ es una youtuber argentina dedicada a subir vídeos de gameplays y hacer animaciones", "links": {"website": ["https://www.youtube.com/@MeLuYT"]}, "path": {"250-258, T": [[-234, -845], [-225, -845], [-225, -836], [-234, -836]]}, "center": {"250-258, T": [-229, -840]}}, +{"id": 5599, "name": "Skrunkly", "description": "This is the mascot of idol VTuber Rin Penrose which was constructed by vtubers place, featuring the original two colors. \n\nThe word skrunkly means \"something which looks weird yet cute or appealing\".", "links": {"website": ["https://idol-company.com/"], "subreddit": ["idolcorp"], "discord": ["vtubersplace"]}, "path": {"250-258, T": [[-339, -892], [-343, -888], [-343, -885], [-339, -881], [-336, -881], [-332, -885], [-332, -888], [-334, -890], [-338, -891], [-335, -891]]}, "center": {"250-258, T": [-338, -886]}}, +{"id": 5600, "name": "Emblem of Arstotzka", "description": "Arstotzka is a communist country and the main setting of the game Papers, Please. It is where the player character works at the Grestin border checkpoint. The country's infamous motto is \"Glory to Arstotzka\".", "links": {"website": ["https://store.steampowered.com/app/239030/Papers_Please/"], "subreddit": ["papersplease"]}, "path": {"226-258, T": [[1203, -759], [1226, -759], [1226, -754], [1215, -744], [1200, -755], [1202, -758]]}, "center": {"226-258, T": [1214, -753]}}, +{"id": 5601, "name": "RocketbeansTV/Rocketbeans Entertainment (RBTV)", "description": "RocktebeansTV part of the big list of Streamers on this artwork.\nRocketbeansTV is a Livestream Channel and GMBH (founded by Arno Heinisch, Nils Bomhoff, Simon Krätschmer, Daniel Budiman, Etienne Gardé). RBTV had a 24/7 Livestream from 2015 - 2021, but then changed the format to just live shows. They are also producing many gaming shows (for example let's plays, and game talks) and many entertainment shows.", "links": {"website": ["https://rocketbeans.tv/"]}, "path": {"250-258, T": [[-771, -357], [-774, -355], [-776, -354], [-778, -355], [-778, -357], [-779, -360], [-779, -363], [-778, -365], [-776, -367], [-773, -367], [-770, -367], [-769, -367], [-768, -366], [-767, -365], [-766, -363], [-766, -360], [-769, -363], [-770, -358]]}, "center": {"250-258, T": [-774, -362]}}, +{"id": 5602, "name": "Rei Ayanami", "description": "Rei is a central character of the renowned anime series \"Neon Geneis Evangelion\". Here she is stylised in her chibi plush form, an image which has become a popular internet meme.", "links": {"subreddit": ["Evangelion"]}, "path": {"250-258, T": [[-676, -119], [-676, -121], [-675, -121], [-673, -123], [-673, -125], [-674, -125], [-674, -127], [-675, -127], [-675, -136], [-672, -139], [-663, -139], [-661, -137], [-661, -119], [-663, -120], [-663, -117], [-665, -117], [-666, -118], [-667, -118], [-668, -119], [-675, -119]]}, "center": {"250-258, T": [-668, -132]}}, +{"id": 5603, "name": "TJ", "description": "TJ (until November 19, 2014 - TJournal) was a Russian online publication and news aggregator that existed from 2011 to 2022.\nOn March 14, 2022, the publication's website was blocked in Russia for publications about Russia's invasion of Ukraine.\nOn August 22, 2022, the administration of the site announced its closure due to the problem of financing the project after it was blocked.\nSignificant part of sites audience moved to Reddit, mainly to r/tjournal_refugees.\nAnother offspring, r/true_tj was later blocked and moved to Discord instead.", "links": {"website": ["https://ru.wikipedia.org/wiki/TJ"], "subreddit": ["tjournal_refugees"], "discord": ["DKdXpnQycr"]}, "path": {"180-258, T": [[117, 125], [122, 125], [122, 130], [117, 130]]}, "center": {"180-258, T": [120, 128]}}, +{"id": 5604, "name": "Thailand-Transplace Alliance", "description": "r/Thailand and r/transplace became allies within the first quarter of r/place 2023. This partnership began after the first main r/transplace flag was moved due to Fuck Spez art, then later the Thailand flag was formed from a section of the Costa Rica flag that had been split off by Italy. Thereafter, Thailand and Transplace assisted each other in maintenance and numerous rebuilds. \nThis collaboration was signified with a heart including the flag of Thailand, and flags signifying transgender and non-binary identifications.", "links": {"subreddit": ["Thailand", "thaithai", "transplace"]}, "path": {"53-258, T": [[113, 82], [118, 82], [118, 65], [113, 65]]}, "center": {"53-258, T": [116, 74]}}, +{"id": 5605, "name": "Easter Rising, 1916", "description": "The 1916 Easter Rising was a pivotal event in Ireland's struggle for independence from British rule. It took place from April 24 to April 29, 1916, in Dublin, Ireland.\n\nThe rebellion was led by Irish nationalists who sought to establish an Irish Republic and end British control over the island.", "links": {"website": ["https://en.wikipedia.org/wiki/Easter_Rising"]}, "path": {"72-258, T": [[299, -107], [299, -81], [318, -81], [318, -107]]}, "center": {"72-258, T": [309, -94]}}, {"id": 5606, "name": "The Grey Lattice", "description": "During the greyout, the Green Lattice decided to rebrand as the Grey Lattice as green and light green were no longer avaliable. Grey, light grey, and black pixels were used.", "links": {"subreddit": ["GreenLattice"]}, "path": {"255-258": [[389, -912], [472, -912], [472, -819], [391, -823]]}, "center": {"255-258": [431, -871]}}, -{"id": 5607, "name": "Free Navalny message", "description": "Alexei Anatolievich Navalny (Russian: Алексей Анатольевич Навальный) is a Russian opposition leader, lawyer, and anti-corruption activist. He has organised anti-government demonstrations and run for office to advocate reforms against corruption in Russia, and against president Vladimir Putin and his government. Navalny is the leader of the founder of the Anti-Corruption Foundation (FBK). He is recognised by Amnesty International as a prisoner of conscience.\nHe is imprisoned since early 2021.", "links": {"website": ["https://en.wikipedia.org/wiki/Alexei_Navalny"]}, "path": {"212-258": [[130, 125], [178, 125], [178, 131], [130, 131]]}, "center": {"212-258": [154, 128]}}, -{"id": 5608, "name": "Pikachu", "description": "Pikachu from Pokémon made by DvaJuice, Tobi and Lattensepp aka Nils", "links": {"website": ["https://www.instagram.com/dvajuice/"]}, "path": {"121-258": [[-537, -276], [-526, -276], [-526, -257], [-529, -257], [-529, -262], [-530, -262], [-530, -263], [-531, -263], [-532, -263], [-533, -263], [-533, -262], [-533, -263], [-534, -263], [-534, -264], [-535, -264], [-535, -265], [-536, -265], [-537, -265], [-537, -276], [-537, -257], [-530, -257], [-531, -258], [-532, -259], [-533, -260], [-534, -261], [-537, -261]]}, "center": {"121-258": [-531, -270]}}, -{"id": 5609, "name": "Cross for the Four Day Marches", "description": "The Cross for the Four Day Marches (Dutch: Vierdaagsekruis) is a Dutch Royal decoration awarded for successful participation in the International Four Days Marches Nijmegen (Vierdaagse in Dutch) held annually at Nijmegen, The Netherlands.\n\nThe Four Days Marches were held during the first days of r/Place 2023.", "links": {"website": ["https://www.4daagse.nl/", "https://en.wikipedia.org/wiki/Cross_for_the_Four_Day_Marches"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"213-258": [[-1012, -521], [-1012, -510], [-1009, -507], [-1012, -505], [-1012, -501], [-1009, -498], [-1007, -498], [-1004, -501], [-1005, -505], [-1007, -508], [-1004, -510], [-1004, -521]]}, "center": {"213-258": [-1008, -517]}}, -{"id": 5610, "name": "Let op! Geld lenen kost geld", "description": "\"Let op! Geld lenen kost geld\" (English: \"Beware! Borrowing money costs money\") is the slogan that in the Netherlands must be mandatorily used in all advertisements for credit. This slogan aims to make consumers aware of the cost and warn them of the possible risks of borrowing money.", "links": {"website": ["https://www.denederlandsekredietmaatschappij.nl/geld-lenen-kost-geld/"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"231-258": [[-1197, -502], [-1147, -502], [-1147, -491], [-1197, -491]]}, "center": {"231-258": [-1172, -496]}}, -{"id": 5611, "name": "Doctor Who Tardis", "description": "Tardis from Doctor Who", "links": {"website": ["https://tardis.fandom.com/wiki/The_Doctor%27s_TARDIS"], "subreddit": ["doctorwho", "TARDISplace", "DoctorWhumour"], "discord": ["3P2kPYzkNs"]}, "path": {"212-258": [[-1012, -527], [-1004, -527], [-1004, -541], [-1012, -541]]}, "center": {"212-258": [-1008, -534]}}, -{"id": 5612, "name": "TV Rain", "description": "TV Rain (Russian: Дождь, tr. Dozhd, stylized as ДО///ДЬ) is an independent Russian television channel. Launched in 2010. It focuses on news, discussions, culture, politics, business reports, and documentaries, with most shows broadcast live.\nIn March 2022, Russian authorities blocked access to TV Rain in response to its coverage of the 2022 Russian invasion of Ukraine. TV Rain continued to broadcast via YouTube.", "links": {"website": ["https://tvrain.tv/", "https://en.wikipedia.org/wiki/TV_Rain", "https://youtube.com/tvrain"]}, "path": {"245-258": [[123, 125], [129, 125], [129, 130], [123, 130]]}, "center": {"245-258": [126, 128]}}, -{"id": 5613, "name": "Golden Strawberry", "description": "A collectible from 2018 2D platformer \"Celeste\"", "links": {"subreddit": ["celestegame"]}, "path": {"245-258": [[-1497, 753], [-1496, 753], [-1494, 755], [-1492, 753], [-1491, 753], [-1489, 755], [-1487, 753], [-1486, 753], [-1486, 757], [-1488, 759], [-1487, 760], [-1487, 763], [-1491, 767], [-1492, 767], [-1496, 763], [-1496, 760], [-1495, 759], [-1496, 758], [-1497, 757]]}, "center": {"245-258": [-1491, 762]}}, -{"id": 5614, "name": "The Bird", "description": "'Le Roi et l'Oiseau' (The King and the Mockingbird) is a 1980 traditionally-animated fantasy film, directed by Paul Grimault.\n\nThe film is today regarded as a masterpiece of French animation and has been cited by the Japanese directors Hayao Miyazaki and Isao Takahata as an influence.", "links": {"website": ["https://en.wikipedia.org/wiki/The_King_and_the_Mockingbird", "https://dubbing.fandom.com/wiki/The_King_and_the_Mockingbird", "https://www.imdb.com/title/tt0044414/"]}, "path": {"121-258": [[910, -700], [915, -698], [915, -692], [914, -687], [913, -685], [915, -687], [918, -691], [919, -697], [920, -697], [920, -689], [913, -674], [911, -670], [915, -672], [919, -675], [921, -677], [921, -675], [919, -671], [916, -667], [912, -664], [905, -658], [899, -656], [897, -655], [897, -653], [897, -650], [896, -647], [897, -643], [899, -639], [903, -634], [908, -634], [911, -636], [913, -639], [909, -640], [908, -641], [907, -644], [908, -648], [914, -651], [919, -652], [920, -652], [920, -654], [922, -653], [924, -653], [926, -654], [928, -656], [928, -660], [928, -661], [933, -659], [936, -658], [938, -656], [939, -654], [940, -653], [940, -651], [938, -650], [937, -649], [935, -649], [933, -648], [934, -647], [935, -645], [937, -644], [934, -643], [933, -643], [931, -643], [930, -641], [928, -640], [926, -638], [923, -635], [921, -634], [919, -633], [919, -630], [916, -625], [916, -622], [918, -621], [921, -620], [921, -618], [919, -619], [917, -618], [914, -619], [911, -619], [913, -617], [909, -616], [908, -618], [907, -623], [906, -621], [904, -621], [903, -623], [901, -624], [899, -623], [900, -621], [903, -616], [899, -616], [896, -616], [892, -620], [888, -622], [886, -626], [883, -626], [882, -635], [879, -638], [879, -644], [878, -644], [878, -650], [879, -654], [882, -659], [885, -665], [888, -668], [892, -671], [897, -676], [900, -680], [904, -684], [907, -687], [907, -689], [909, -694], [910, -696], [910, -698]]}, "center": {"121-258": [901, -667]}}, -{"id": 5615, "name": "Eastern Green Lattice", "description": "The Green Lattice is one of the original r/place groups that formed in 2017. Their goal is to create a pattern of green, light green and black pixels and to defend other pixel art.\n\nThe Green Lattice was able to further expand with the help of streamer Spreen after the 6th expansion creating this area.", "links": {"subreddit": ["GreenLattice"], "discord": ["GpEwNaYg7B"]}, "path": {"206-217": [[1043, -710], [1168, -710], [1168, -612], [1042, -610]], "218-258": [[1067, -863], [1063, -864], [1063, -823], [1000, -822], [1001, -700], [1042, -699], [1040, -609], [1170, -610], [1209, -637], [1209, -643], [1169, -642], [1172, -756], [1178, -763], [1179, -774], [1129, -773], [1129, -779], [1099, -779], [1099, -803], [1096, -803], [1096, -811], [1092, -821], [1089, -824], [1078, -824], [1078, -864]]}, "center": {"206-217": [1117, -661], "218-258": [1106, -710]}}, +{"id": 5607, "name": "Free Navalny message", "description": "Alexei Anatolievich Navalny (Russian: Алексей Анатольевич Навальный) is a Russian opposition leader, lawyer, and anti-corruption activist. He has organised anti-government demonstrations and run for office to advocate reforms against corruption in Russia, and against president Vladimir Putin and his government. Navalny is the leader of the founder of the Anti-Corruption Foundation (FBK). He is recognised by Amnesty International as a prisoner of conscience.\nHe is imprisoned since early 2021.", "links": {"website": ["https://en.wikipedia.org/wiki/Alexei_Navalny"]}, "path": {"212-258, T": [[130, 125], [178, 125], [178, 131], [130, 131]]}, "center": {"212-258, T": [154, 128]}}, +{"id": 5608, "name": "Pikachu", "description": "Pikachu from Pokémon made by DvaJuice, Tobi and Lattensepp aka Nils", "links": {"website": ["https://www.instagram.com/dvajuice/"]}, "path": {"121-258, T": [[-537, -276], [-526, -276], [-526, -257], [-529, -257], [-529, -262], [-530, -262], [-530, -263], [-531, -263], [-532, -263], [-533, -263], [-533, -262], [-533, -263], [-534, -263], [-534, -264], [-535, -264], [-535, -265], [-536, -265], [-537, -265], [-537, -276], [-537, -257], [-530, -257], [-531, -258], [-532, -259], [-533, -260], [-534, -261], [-537, -261]]}, "center": {"121-258, T": [-531, -270]}}, +{"id": 5609, "name": "Cross for the Four Day Marches", "description": "The Cross for the Four Day Marches (Dutch: Vierdaagsekruis) is a Dutch Royal decoration awarded for successful participation in the International Four Days Marches Nijmegen (Vierdaagse in Dutch) held annually at Nijmegen, The Netherlands.\n\nThe Four Days Marches were held during the first days of r/Place 2023.", "links": {"website": ["https://www.4daagse.nl/", "https://en.wikipedia.org/wiki/Cross_for_the_Four_Day_Marches"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"213-258, T": [[-1012, -521], [-1012, -510], [-1009, -507], [-1012, -505], [-1012, -501], [-1009, -498], [-1007, -498], [-1004, -501], [-1005, -505], [-1007, -508], [-1004, -510], [-1004, -521]]}, "center": {"213-258, T": [-1008, -517]}}, +{"id": 5610, "name": "Let op! Geld lenen kost geld", "description": "\"Let op! Geld lenen kost geld\" (English: \"Beware! Borrowing money costs money\") is the slogan that in the Netherlands must be mandatorily used in all advertisements for credit. This slogan aims to make consumers aware of the cost and warn them of the possible risks of borrowing money.", "links": {"website": ["https://www.denederlandsekredietmaatschappij.nl/geld-lenen-kost-geld/"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"231-258, T": [[-1197, -502], [-1147, -502], [-1147, -491], [-1197, -491]]}, "center": {"231-258, T": [-1172, -496]}}, +{"id": 5611, "name": "Doctor Who Tardis", "description": "Tardis from Doctor Who", "links": {"website": ["https://tardis.fandom.com/wiki/The_Doctor%27s_TARDIS"], "subreddit": ["doctorwho", "TARDISplace", "DoctorWhumour"], "discord": ["3P2kPYzkNs"]}, "path": {"212-258, T": [[-1012, -527], [-1004, -527], [-1004, -541], [-1012, -541]]}, "center": {"212-258, T": [-1008, -534]}}, +{"id": 5612, "name": "TV Rain", "description": "TV Rain (Russian: Дождь, tr. Dozhd, stylized as ДО///ДЬ) is an independent Russian television channel. Launched in 2010. It focuses on news, discussions, culture, politics, business reports, and documentaries, with most shows broadcast live.\nIn March 2022, Russian authorities blocked access to TV Rain in response to its coverage of the 2022 Russian invasion of Ukraine. TV Rain continued to broadcast via YouTube.", "links": {"website": ["https://tvrain.tv/", "https://en.wikipedia.org/wiki/TV_Rain", "https://youtube.com/tvrain"]}, "path": {"245-258, T": [[123, 125], [129, 125], [129, 130], [123, 130]]}, "center": {"245-258, T": [126, 128]}}, +{"id": 5613, "name": "Golden Strawberry", "description": "A collectible from 2018 2D platformer \"Celeste\"", "links": {"subreddit": ["celestegame"]}, "path": {"245-258, T": [[-1497, 753], [-1496, 753], [-1494, 755], [-1492, 753], [-1491, 753], [-1489, 755], [-1487, 753], [-1486, 753], [-1486, 757], [-1488, 759], [-1487, 760], [-1487, 763], [-1491, 767], [-1492, 767], [-1496, 763], [-1496, 760], [-1495, 759], [-1496, 758], [-1497, 757]]}, "center": {"245-258, T": [-1491, 762]}}, +{"id": 5614, "name": "The Bird", "description": "'Le Roi et l'Oiseau' (The King and the Mockingbird) is a 1980 traditionally-animated fantasy film, directed by Paul Grimault.\n\nThe film is today regarded as a masterpiece of French animation and has been cited by the Japanese directors Hayao Miyazaki and Isao Takahata as an influence.", "links": {"website": ["https://en.wikipedia.org/wiki/The_King_and_the_Mockingbird", "https://dubbing.fandom.com/wiki/The_King_and_the_Mockingbird", "https://www.imdb.com/title/tt0044414/"]}, "path": {"121-258, T": [[910, -700], [915, -698], [915, -692], [914, -687], [913, -685], [915, -687], [918, -691], [919, -697], [920, -697], [920, -689], [913, -674], [911, -670], [915, -672], [919, -675], [921, -677], [921, -675], [919, -671], [916, -667], [912, -664], [905, -658], [899, -656], [897, -655], [897, -653], [897, -650], [896, -647], [897, -643], [899, -639], [903, -634], [908, -634], [911, -636], [913, -639], [909, -640], [908, -641], [907, -644], [908, -648], [914, -651], [919, -652], [920, -652], [920, -654], [922, -653], [924, -653], [926, -654], [928, -656], [928, -660], [928, -661], [933, -659], [936, -658], [938, -656], [939, -654], [940, -653], [940, -651], [938, -650], [937, -649], [935, -649], [933, -648], [934, -647], [935, -645], [937, -644], [934, -643], [933, -643], [931, -643], [930, -641], [928, -640], [926, -638], [923, -635], [921, -634], [919, -633], [919, -630], [916, -625], [916, -622], [918, -621], [921, -620], [921, -618], [919, -619], [917, -618], [914, -619], [911, -619], [913, -617], [909, -616], [908, -618], [907, -623], [906, -621], [904, -621], [903, -623], [901, -624], [899, -623], [900, -621], [903, -616], [899, -616], [896, -616], [892, -620], [888, -622], [886, -626], [883, -626], [882, -635], [879, -638], [879, -644], [878, -644], [878, -650], [879, -654], [882, -659], [885, -665], [888, -668], [892, -671], [897, -676], [900, -680], [904, -684], [907, -687], [907, -689], [909, -694], [910, -696], [910, -698]]}, "center": {"121-258, T": [901, -667]}}, +{"id": 5615, "name": "Eastern Green Lattice", "description": "The Green Lattice is one of the original r/place groups that formed in 2017. Their goal is to create a pattern of green, light green and black pixels and to defend other pixel art.\n\nThe Green Lattice was able to further expand with the help of streamer Spreen after the 6th expansion creating this area.", "links": {"subreddit": ["GreenLattice"], "discord": ["GpEwNaYg7B"]}, "path": {"206-217": [[1043, -710], [1168, -710], [1168, -612], [1042, -610]], "218-258, T": [[1067, -863], [1063, -864], [1063, -823], [1000, -822], [1001, -700], [1042, -699], [1040, -609], [1170, -610], [1209, -637], [1209, -643], [1169, -642], [1172, -756], [1178, -763], [1179, -774], [1129, -773], [1129, -779], [1099, -779], [1099, -803], [1096, -803], [1096, -811], [1092, -821], [1089, -824], [1078, -824], [1078, -864]]}, "center": {"206-217": [1117, -661], "218-258, T": [1106, -710]}}, {"id": 5616, "name": "SamRiddeli from RotMG", "description": "Pixel art of Realm of the Mad God (RotMG), a free-to-play, massively multiplayer, \"bullet hell,\" roguelike RPG. The art was created by the SamRiddeli Fan Club, a group of players within the in-game community, and features RotMG player SamRiddeli, known in the community for his skill and having a large amount of fame (points).", "links": {"website": ["https://www.realmeye.com/player/SamRiddeli"], "subreddit": ["RotMG"], "discord": ["Fpq9apH"]}, "path": {"211-228": [[1130, 553], [1139, 553], [1139, 562], [1130, 562]]}, "center": {"211-228": [1135, 558]}}, {"id": 5617, "name": "Fido from 86", "description": "Fido is a primary supporting character in the 86 -Eighty Six- series.\n\nFido was the result of an artificial intelligence project developed by Reisha Nouzen, acting as a sort of household pet before the Legion war.\n\nA couple of ''Fido's'' were placed on various locations on the canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/86_(novel_series)"], "subreddit": ["EightySix"]}, "path": {"204-218": [[1078, 283], [1093, 283], [1093, 291], [1078, 290]]}, "center": {"204-218": [1086, 287]}}, {"id": 5618, "name": "Freedom of Russia Legion", "description": "Letter L (for \"Legion\") in colors of Russian anti-war flag.\nThe Freedom of Russia Legion (FRL, Russian: Легион «Свобода России», romanized: Legion \"Svoboda Rossii\"; abbr. ЛСР, romanized: LSR), also called the Free Russia Legion, is a Ukrainian-based paramilitary group of Russian citizens, which opposes the Russian regime of Vladimir Putin and its invasion of Ukraine. It was formed in March 2022 and is reportedly part of Ukraine's International Legion. It consists of defectors from the Russian Armed Forces, and other Russian volunteers, some of whom had emigrated to Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Freedom_of_Russia_Legion", "https://legionliberty.army/", "https://www.youtube.com/channel/UC1QLYxn3iiejeZMIKzNjXCQ"]}, "path": {"115-169": [[149, 130], [153, 130], [153, 134], [155, 134], [155, 138], [149, 138]]}, "center": {"115-169": [151, 136]}}, -{"id": 5619, "name": "Calcetin con rombos man", "description": "Sock with Diamonds Man, also known as César Quintanilla in his normal life, is a superhero from 31 Minutes. Live in Ciudad Comóda and defend the rights of children around the world.", "links": {"website": ["https://31minutos.fandom.com/wiki/Calcet%C3%ADn_con_Rombos_Man"], "subreddit": ["chile"]}, "path": {"250-258": [[-1106, -756], [-1106, -790], [-1106, -791], [-1107, -791], [-1107, -792], [-1108, -792], [-1108, -793], [-1108, -794], [-1107, -794], [-1107, -795], [-1107, -796], [-1106, -796], [-1106, -797], [-1106, -798], [-1106, -799], [-1105, -799], [-1105, -800], [-1104, -800], [-1104, -801], [-1104, -802], [-1103, -802], [-1103, -803], [-1102, -803], [-1102, -804], [-1101, -804], [-1101, -805], [-1100, -805], [-1100, -806], [-1099, -806], [-1099, -807], [-1098, -807], [-1098, -808], [-1097, -808], [-1096, -808], [-1095, -808], [-1095, -809], [-1087, -809], [-1087, -810], [-1077, -810], [-1077, -809], [-1072, -809], [-1072, -808], [-1071, -808], [-1071, -807], [-1070, -807], [-1070, -806], [-1068, -806], [-1068, -805], [-1066, -805], [-1067, -804], [-1067, -803], [-1066, -796], [-1065, -796], [-1065, -795], [-1077, -795], [-1077, -794], [-1077, -793], [-1079, -792], [-1079, -782], [-1078, -779], [-1078, -778], [-1077, -773], [-1076, -773], [-1076, -766], [-1075, -766], [-1075, -761], [-1074, -761], [-1074, -756]]}, "center": {"250-258": [-1092, -771]}}, -{"id": 5620, "name": "LekkerSicko", "description": "LekkerSicko is an emote and basically the mascot of the Dutch streamer duo Lekker Spelen.\n\nIt is a chicken with red eyes smoking a joint while holding a beer and holding up his sunglasses. It was drawn in Disney Art Academy for the Nintendo DS in a stream where they drew new emotes with a time limit.\n\nThe emote is used to express excitement, or more specifically as a replacement for \"nice\", \"well done\" or \"impressive\".", "links": {"website": ["https://www.twitch.tv/lekkerspelen", "https://www.youtube.com/c/lekkerspelen"], "subreddit": ["lekkerspelen", "PlaceNL"], "discord": ["THuHVwH", "placenl"]}, "path": {"249-258": [[-532, -462], [-535, -459], [-535, -455], [-532, -451], [-522, -451], [-516, -451], [-516, -454], [-518, -456], [-522, -457], [-522, -463], [-530, -463]]}, "center": {"249-258": [-528, -457]}}, +{"id": 5619, "name": "Calcetin con rombos man", "description": "Sock with Diamonds Man, also known as César Quintanilla in his normal life, is a superhero from 31 Minutes. Live in Ciudad Comóda and defend the rights of children around the world.", "links": {"website": ["https://31minutos.fandom.com/wiki/Calcet%C3%ADn_con_Rombos_Man"], "subreddit": ["chile"]}, "path": {"250-258, T": [[-1106, -756], [-1106, -790], [-1106, -791], [-1107, -791], [-1107, -792], [-1108, -792], [-1108, -793], [-1108, -794], [-1107, -794], [-1107, -795], [-1107, -796], [-1106, -796], [-1106, -797], [-1106, -798], [-1106, -799], [-1105, -799], [-1105, -800], [-1104, -800], [-1104, -801], [-1104, -802], [-1103, -802], [-1103, -803], [-1102, -803], [-1102, -804], [-1101, -804], [-1101, -805], [-1100, -805], [-1100, -806], [-1099, -806], [-1099, -807], [-1098, -807], [-1098, -808], [-1097, -808], [-1096, -808], [-1095, -808], [-1095, -809], [-1087, -809], [-1087, -810], [-1077, -810], [-1077, -809], [-1072, -809], [-1072, -808], [-1071, -808], [-1071, -807], [-1070, -807], [-1070, -806], [-1068, -806], [-1068, -805], [-1066, -805], [-1067, -804], [-1067, -803], [-1066, -796], [-1065, -796], [-1065, -795], [-1077, -795], [-1077, -794], [-1077, -793], [-1079, -792], [-1079, -782], [-1078, -779], [-1078, -778], [-1077, -773], [-1076, -773], [-1076, -766], [-1075, -766], [-1075, -761], [-1074, -761], [-1074, -756]]}, "center": {"250-258, T": [-1092, -771]}}, +{"id": 5620, "name": "LekkerSicko", "description": "LekkerSicko is an emote and basically the mascot of the Dutch streamer duo Lekker Spelen.\n\nIt is a chicken with red eyes smoking a joint while holding a beer and holding up his sunglasses. It was drawn in Disney Art Academy for the Nintendo DS in a stream where they drew new emotes with a time limit.\n\nThe emote is used to express excitement, or more specifically as a replacement for \"nice\", \"well done\" or \"impressive\".", "links": {"website": ["https://www.twitch.tv/lekkerspelen", "https://www.youtube.com/c/lekkerspelen"], "subreddit": ["lekkerspelen", "PlaceNL"], "discord": ["THuHVwH", "placenl"]}, "path": {"249-258, T": [[-532, -462], [-535, -459], [-535, -455], [-532, -451], [-522, -451], [-516, -451], [-516, -454], [-518, -456], [-522, -457], [-522, -463], [-530, -463]]}, "center": {"249-258, T": [-528, -457]}}, {"id": 5621, "name": "Jimbo (Rupaul's Drag Race)", "description": "Promo picture of the drag queen Jimbo, the winner of season 8 of Rupaul's Drag Race All Stars", "links": {"subreddit": ["rupaulsdragrace"]}, "path": {"247": [[-1294, 696], [-1292, 698], [-1294, 713], [-1278, 713], [-1278, 696], [-1294, 696], [-1294, 713], [-1278, 713], [-1278, 696]]}, "center": {"247": [-1293, 699]}}, -{"id": 5622, "name": "PeepoSad", "description": "\"PeepoSad\" is an community made emote on 7Tv, a Twitch extension.\nThe Pixelart was made by The Ghiletofar (A Brazilian Twitch streamer) Community.", "links": {"website": ["https://7tv.app/emotes/641c7b02dfb4252b32ff0a40", "https://twitch.tv/ghiletofar"], "subreddit": ["calvers"]}, "path": {"162-258": [[-2, 529], [-2, 542], [12, 542], [12, 529]]}, "center": {"162-258": [5, 536]}}, -{"id": 5623, "name": "Kagehira Mika", "description": "", "links": {"subreddit": ["norse"]}, "path": {"250-258": [[1185, -133], [1195, -133], [1195, -124], [1185, -124]]}, "center": {"250-258": [1190, -128]}}, +{"id": 5622, "name": "PeepoSad", "description": "\"PeepoSad\" is an community made emote on 7Tv, a Twitch extension.\nThe Pixelart was made by The Ghiletofar (A Brazilian Twitch streamer) Community.", "links": {"website": ["https://7tv.app/emotes/641c7b02dfb4252b32ff0a40", "https://twitch.tv/ghiletofar"], "subreddit": ["calvers"]}, "path": {"162-258, T": [[-2, 529], [-2, 542], [12, 542], [12, 529]]}, "center": {"162-258, T": [5, 536]}}, +{"id": 5623, "name": "Kagehira Mika", "description": "", "links": {"subreddit": ["norse"]}, "path": {"250-258, T": [[1185, -133], [1195, -133], [1195, -124], [1185, -124]]}, "center": {"250-258, T": [1190, -128]}}, {"id": 5624, "name": "Rhine", "description": "The Rhine is one of the major European rivers. The river begins in the Swiss canton of Graubünden in the southeastern Swiss Alps. In Germany, the Rhine turns into a predominantly westerly direction and flows into the Netherlands where it eventually empties into the North Sea. It drains an area of 9,973 sq km and its name derives from the Celtic Rēnos.\n\nThis art piece was a collab between the Dutch and Swiss communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Rhine"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"251": [[-702, -536], [-682, -548], [-671, -549], [-669, -541], [-656, -527], [-637, -522], [-594, -522], [-595, -532], [-606, -534], [-614, -535], [-616, -541], [-610, -542], [-611, -545], [-617, -545], [-617, -550], [-620, -550], [-620, -545], [-625, -544], [-630, -543], [-633, -542], [-631, -538], [-631, -537], [-637, -538], [-647, -539], [-663, -549], [-673, -555], [-697, -555], [-703, -551], [-704, -563], [-706, -565], [-710, -561], [-714, -556], [-715, -549], [-713, -549], [-713, -546], [-721, -538]]}, "center": {"251": [-623, -532]}}, -{"id": 5625, "name": "Ecuador's Tardis", "description": "The TARDIS is an extraterrestrial spacecraft from the \"Doctor Who\" series that appears to be a British police call box but is much larger on the inside.\n\nIt allows the Doctor to travel through space and time, serving as a central element of his adventures.", "links": {"website": ["https://en.wikipedia.org/wiki/TARDIS", "https://en.wikipedia.org/wiki/Doctor_Who"], "subreddit": ["DoctorWhumour", "TARDISplace"], "discord": ["3P2kPYzkNs"]}, "path": {"156-258": [[-350, -874], [-349, -875], [-349, -879], [-350, -880], [-350, -881], [-346, -883], [-342, -881], [-343, -879], [-343, -875], [-342, -874]]}, "center": {"156-258": [-346, -878]}}, -{"id": 5626, "name": "Navalny Headquarters logo", "description": "Rectangle consisting of red and white areas, middle vertical area is broken in two parts closer to the bottom. This simultaneously represents (in inverse colors) Russian letter \"Н\" (First letter of Alexei Navalny last name) and exclamation mark.\nThe Navalny Headquarters (Russian: Штабы Навального, romanized: Shtaby Naval'nogo) is a Russian underground organization (since 2022) and former network of regional organizations (in 2017-2021) founded by opposition leader Alexei Navalny as part of the 2017 presidential campaign. It lasted until April 2021, when the liquidation of the headquarters was announced in connection with the demand of the Moscow prosecutor's office to recognize the \"public movement \"Navalny Headquarters\" as an extremist organization. It was re-established in October 2022.", "links": {"website": ["https://en.wikipedia.org/wiki/Navalny_Headquarters", "https://shtab.navalny.com/"]}, "path": {"212-258": [[178, 125], [183, 125], [183, 131], [178, 131]]}, "center": {"212-258": [181, 128]}}, -{"id": 5627, "name": "Royal Space Society (No Man's Sky)", "description": "The Royal Space Society is a player-based community within No Man's Sky consisting primarily of Spanish-speaking players.", "links": {"website": ["https://www.royalspacesociety.com/no-mans-sky/"]}, "path": {"191-258": [[-611, -971], [-611, -964], [-610, -963], [-583, -963], [-583, -971]]}, "center": {"191-258": [-597, -967]}}, -{"id": 5628, "name": "Guinesus", "description": "A amogus discuised as the harp on a Guiness pint glass", "links": {"website": ["https://en.wikipedia.org/wiki/Guinness"]}, "path": {"109-258": [[284, -94], [283, -93], [283, -83], [284, -83], [284, -76], [292, -76], [292, -83], [293, -83], [293, -93], [292, -94]]}, "center": {"109-258": [288, -89]}}, -{"id": 5629, "name": "PlaceNL", "description": "PlaceNL is the community that represents the Netherlands on r/Place since 2017. This is their logo.", "links": {"website": ["https://placenl.nl"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"16-258": [[-24, -482], [69, -482], [69, -486], [65, -486], [65, -498], [-24, -498]]}, "center": {"16-258": [23, -490]}}, -{"id": 5630, "name": "Polder", "description": "The Netherlands is famous for empoldering, a method of reclaiming land from the sea or from inland lakes, and a way to control floods. Empoldering involves the use of a polder, a piece of land in a low-lying area that has been reclaimed from a body of water by building dikes and drainage canals.", "links": {"website": ["https://simple.wikipedia.org/wiki/Polder"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"14-258": [[80, -461], [86, -452], [92, -452], [96, -455], [293, -456], [295, -466], [302, -450], [68, -450], [74, -462], [77, -462]]}, "center": {"14-258": [77, -456]}}, -{"id": 5631, "name": "Pastel de Nata", "description": "Pastel de Nata, known in English as Custard Tart is a typical Portuguese desert, which was featured on the canvas due to it's commonality in Portugal, and also global appeal.", "links": {}, "path": {"60-258": [[335, 345], [345, 345], [345, 354], [336, 353], [336, 351]]}, "center": {"60-258": [340, 349]}}, -{"id": 5632, "name": "Padrão", "description": "A padrão is a stone pillar left by Portuguese maritime explorers in the 15th and 16th centuries to record significant landfalls and thereby establish primacy and possession.", "links": {"website": ["https://en.wikipedia.org/wiki/Padr%C3%A3o"]}, "path": {"68-258": [[587, 323], [601, 323], [599, 351], [588, 350]]}, "center": {"68-258": [594, 330]}}, +{"id": 5625, "name": "Ecuador's Tardis", "description": "The TARDIS is an extraterrestrial spacecraft from the \"Doctor Who\" series that appears to be a British police call box but is much larger on the inside.\n\nIt allows the Doctor to travel through space and time, serving as a central element of his adventures.", "links": {"website": ["https://en.wikipedia.org/wiki/TARDIS", "https://en.wikipedia.org/wiki/Doctor_Who"], "subreddit": ["DoctorWhumour", "TARDISplace"], "discord": ["3P2kPYzkNs"]}, "path": {"156-258, T": [[-350, -874], [-349, -875], [-349, -879], [-350, -880], [-350, -881], [-346, -883], [-342, -881], [-343, -879], [-343, -875], [-342, -874]]}, "center": {"156-258, T": [-346, -878]}}, +{"id": 5626, "name": "Navalny Headquarters logo", "description": "Rectangle consisting of red and white areas, middle vertical area is broken in two parts closer to the bottom. This simultaneously represents (in inverse colors) Russian letter \"Н\" (First letter of Alexei Navalny last name) and exclamation mark.\nThe Navalny Headquarters (Russian: Штабы Навального, romanized: Shtaby Naval'nogo) is a Russian underground organization (since 2022) and former network of regional organizations (in 2017-2021) founded by opposition leader Alexei Navalny as part of the 2017 presidential campaign. It lasted until April 2021, when the liquidation of the headquarters was announced in connection with the demand of the Moscow prosecutor's office to recognize the \"public movement \"Navalny Headquarters\" as an extremist organization. It was re-established in October 2022.", "links": {"website": ["https://en.wikipedia.org/wiki/Navalny_Headquarters", "https://shtab.navalny.com/"]}, "path": {"212-258, T": [[178, 125], [183, 125], [183, 131], [178, 131]]}, "center": {"212-258, T": [181, 128]}}, +{"id": 5627, "name": "Royal Space Society (No Man's Sky)", "description": "The Royal Space Society is a player-based community within No Man's Sky consisting primarily of Spanish-speaking players.", "links": {"website": ["https://www.royalspacesociety.com/no-mans-sky/"]}, "path": {"191-258, T": [[-611, -971], [-611, -964], [-610, -963], [-583, -963], [-583, -971]]}, "center": {"191-258, T": [-597, -967]}}, +{"id": 5628, "name": "Guinesus", "description": "A amogus discuised as the harp on a Guiness pint glass", "links": {"website": ["https://en.wikipedia.org/wiki/Guinness"]}, "path": {"109-258, T": [[284, -94], [283, -93], [283, -83], [284, -83], [284, -76], [292, -76], [292, -83], [293, -83], [293, -93], [292, -94]]}, "center": {"109-258, T": [288, -89]}}, +{"id": 5629, "name": "PlaceNL", "description": "PlaceNL is the community that represents the Netherlands on r/Place since 2017. This is their logo.", "links": {"website": ["https://placenl.nl"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"16-258, T": [[-24, -482], [69, -482], [69, -486], [65, -486], [65, -498], [-24, -498]]}, "center": {"16-258, T": [23, -490]}}, +{"id": 5630, "name": "Polder", "description": "The Netherlands is famous for empoldering, a method of reclaiming land from the sea or from inland lakes, and a way to control floods. Empoldering involves the use of a polder, a piece of land in a low-lying area that has been reclaimed from a body of water by building dikes and drainage canals.", "links": {"website": ["https://simple.wikipedia.org/wiki/Polder"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"14-258, T": [[80, -461], [86, -452], [92, -452], [96, -455], [293, -456], [295, -466], [302, -450], [68, -450], [74, -462], [77, -462]]}, "center": {"14-258, T": [77, -456]}}, +{"id": 5631, "name": "Pastel de Nata", "description": "Pastel de Nata, known in English as Custard Tart is a typical Portuguese desert, which was featured on the canvas due to it's commonality in Portugal, and also global appeal.", "links": {}, "path": {"60-258, T": [[335, 345], [345, 345], [345, 354], [336, 353], [336, 351]]}, "center": {"60-258, T": [340, 349]}}, +{"id": 5632, "name": "Padrão", "description": "A padrão is a stone pillar left by Portuguese maritime explorers in the 15th and 16th centuries to record significant landfalls and thereby establish primacy and possession.", "links": {"website": ["https://en.wikipedia.org/wiki/Padr%C3%A3o"]}, "path": {"68-258, T": [[587, 323], [601, 323], [599, 351], [588, 350]]}, "center": {"68-258, T": [594, 330]}}, {"id": 5633, "name": "Minecraft bee", "description": "The head of a bee from minecraft", "links": {"subreddit": ["minecraft"]}, "path": {"3-27": [[468, -321], [468, -324], [499, -324], [499, -293], [468, -293]]}, "center": {"3-27": [484, -308]}}, {"id": 5635, "name": "Kaveh", "description": "A playable 4 star character from the game Genshin Impact. \n\nKaveh is a renown architect who graduated with honors from the Sumeru Akademiya, one his greatest achievements being the Palace of Alcazarzaray. Due to an unfortunate series of events he ended up falling deep in debt which lead him to reside with Alhaitham, the Akademiya Scribe, and an old friend with which he haven't spoken for years due to a big falling out back when both were Akademiya students working on a joint project.", "links": {"website": ["https://www.youtube.com/watch?v=MciOgsEOHZM"], "subreddit": ["KavehMains"]}, "path": {"251-258": [[-78, 339], [-78, 352], [-70, 353], [-69, 334], [-77, 333], [-80, 340]]}, "center": {"251-258": [-73, 338]}}, -{"id": 5636, "name": "The Greek column with grape vines", "description": "Inspired from Greece's ancient architectual styles of Ionic, Doric, and Corinthian. It's general and unspecific subscription to any one of these styles helps to represent them all. \nWhile the inclusion of grape vines helps communicate Greece's long history with the fruit, be it via the extensive production of wine, both today and in the ancient times, tsipouro, and ouzo, which had come later, or raisins during the 19th and early 20th centuries.", "links": {"website": ["https://en.wikipedia.org/wiki/Classical_order#Greek_orders", "https://en.wikipedia.org/wiki/Greek_wine", "https://en.wikipedia.org/wiki/Ouzo", "https://en.wikipedia.org/wiki/Tsipouro"], "subreddit": ["GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"250-258": [[-290, 42], [-290, 69], [-273, 69], [-274, 42]]}, "center": {"250-258": [-282, 56]}}, -{"id": 5637, "name": "Da pikachu", "description": "Small pikachu in the used to be pokemon card area.\nMade by pokemon fans without any connections to each other.\nWent through various cycles of crying and not crying. \nWas nearly invaded by among us.", "links": {}, "path": {"250-258": [[-1210, 229], [-1209, 229], [-1208, 229], [-1207, 229], [-1206, 228], [-1205, 228], [-1204, 228], [-1203, 228], [-1202, 228], [-1201, 228], [-1200, 228], [-1199, 228], [-1199, 227], [-1198, 226], [-1197, 225], [-1196, 224], [-1195, 224], [-1195, 225], [-1195, 226], [-1196, 227], [-1196, 228], [-1195, 228], [-1194, 228], [-1193, 229], [-1192, 230], [-1191, 231], [-1191, 229], [-1191, 228], [-1190, 228], [-1189, 228], [-1188, 228], [-1187, 228], [-1186, 228], [-1186, 229], [-1185, 229], [-1185, 230], [-1185, 231], [-1186, 231], [-1187, 231], [-1188, 231], [-1189, 231], [-1189, 232], [-1190, 233], [-1190, 234], [-1190, 235], [-1191, 236], [-1193, 236], [-1194, 236], [-1195, 236], [-1196, 236], [-1197, 236], [-1196, 236], [-1197, 236], [-1198, 236], [-1198, 237], [-1199, 238], [-1200, 238], [-1200, 237], [-1201, 237], [-1202, 237], [-1203, 237], [-1204, 237], [-1205, 237], [-1206, 237], [-1207, 238], [-1208, 238], [-1209, 237], [-1209, 236], [-1208, 235], [-1208, 234], [-1208, 233], [-1208, 232], [-1208, 231], [-1209, 231], [-1210, 231], [-1211, 230]]}, "center": {"250-258": [-1201, 233]}}, -{"id": 5638, "name": "The Greek Duck Ship", "description": "The ship is inspired by Greece's long and deep ties with seafaring, while the Ducks are included due to a woman coming to r/PlaceGreece's discord and speaking of the enjoyment her little sister had regarding the ducks which existed where the Greek flag eventually came to be. As such, members of the community wanted to fullfill her wish.", "links": {"website": ["https://en.wikipedia.org/wiki/Greek_shipping"], "subreddit": ["GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"250-258": [[-367, 58], [-367, 69], [-349, 69], [-351, 58]]}, "center": {"250-258": [-358, 64]}}, +{"id": 5636, "name": "The Greek column with grape vines", "description": "Inspired from Greece's ancient architectual styles of Ionic, Doric, and Corinthian. It's general and unspecific subscription to any one of these styles helps to represent them all. \nWhile the inclusion of grape vines helps communicate Greece's long history with the fruit, be it via the extensive production of wine, both today and in the ancient times, tsipouro, and ouzo, which had come later, or raisins during the 19th and early 20th centuries.", "links": {"website": ["https://en.wikipedia.org/wiki/Classical_order#Greek_orders", "https://en.wikipedia.org/wiki/Greek_wine", "https://en.wikipedia.org/wiki/Ouzo", "https://en.wikipedia.org/wiki/Tsipouro"], "subreddit": ["GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"250-258, T": [[-290, 42], [-290, 69], [-273, 69], [-274, 42]]}, "center": {"250-258, T": [-282, 56]}}, +{"id": 5637, "name": "Da pikachu", "description": "Small pikachu in the used to be pokemon card area.\nMade by pokemon fans without any connections to each other.\nWent through various cycles of crying and not crying. \nWas nearly invaded by among us.", "links": {}, "path": {"250-258, T": [[-1210, 229], [-1209, 229], [-1208, 229], [-1207, 229], [-1206, 228], [-1205, 228], [-1204, 228], [-1203, 228], [-1202, 228], [-1201, 228], [-1200, 228], [-1199, 228], [-1199, 227], [-1198, 226], [-1197, 225], [-1196, 224], [-1195, 224], [-1195, 225], [-1195, 226], [-1196, 227], [-1196, 228], [-1195, 228], [-1194, 228], [-1193, 229], [-1192, 230], [-1191, 231], [-1191, 229], [-1191, 228], [-1190, 228], [-1189, 228], [-1188, 228], [-1187, 228], [-1186, 228], [-1186, 229], [-1185, 229], [-1185, 230], [-1185, 231], [-1186, 231], [-1187, 231], [-1188, 231], [-1189, 231], [-1189, 232], [-1190, 233], [-1190, 234], [-1190, 235], [-1191, 236], [-1193, 236], [-1194, 236], [-1195, 236], [-1196, 236], [-1197, 236], [-1196, 236], [-1197, 236], [-1198, 236], [-1198, 237], [-1199, 238], [-1200, 238], [-1200, 237], [-1201, 237], [-1202, 237], [-1203, 237], [-1204, 237], [-1205, 237], [-1206, 237], [-1207, 238], [-1208, 238], [-1209, 237], [-1209, 236], [-1208, 235], [-1208, 234], [-1208, 233], [-1208, 232], [-1208, 231], [-1209, 231], [-1210, 231], [-1211, 230]]}, "center": {"250-258, T": [-1201, 233]}}, +{"id": 5638, "name": "The Greek Duck Ship", "description": "The ship is inspired by Greece's long and deep ties with seafaring, while the Ducks are included due to a woman coming to r/PlaceGreece's discord and speaking of the enjoyment her little sister had regarding the ducks which existed where the Greek flag eventually came to be. As such, members of the community wanted to fullfill her wish.", "links": {"website": ["https://en.wikipedia.org/wiki/Greek_shipping"], "subreddit": ["GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"250-258, T": [[-367, 58], [-367, 69], [-349, 69], [-351, 58]]}, "center": {"250-258, T": [-358, 64]}}, {"id": 5639, "name": "Poldermolen", "description": "A polder mill or mill pumping station is a windmill that moves water from a lower level to a higher level, and used for empoldering. It is also referred to as a watermill, but that causes confusion with the type of water-powered mill. This type of mill is found mainly in the polder areas of central and western Netherlands.", "links": {"subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"14-231": [[74, -462], [75, -469], [71, -465], [70, -466], [70, -469], [75, -473], [71, -478], [72, -480], [78, -474], [79, -474], [83, -478], [85, -477], [79, -471], [84, -466], [82, -464], [78, -468], [80, -461]]}, "center": {"14-231": [76, -471]}}, -{"id": 5640, "name": "Miffy", "description": "Miffy (Dutch: Nijntje) is a fictional rabbit and the main character children's picture book series \"Miffy\", written and drawn by Dick Bruna. \"Nijntje\" is a shortened version of the word \"konijntje\", or \"little rabbit\".", "links": {"website": ["https://www.nijntje.nl/", "https://www.miffy.com/"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"62-258": [[-185, -494], [-183, -492], [-180, -494], [-178, -491], [-178, -487], [-180, -484], [-178, -482], [-179, -475], [-183, -471], [-186, -471], [-188, -474], [-186, -476]]}, "center": {"62-258": [-182, -480]}}, -{"id": 5641, "name": "Sword of Hisou", "description": "The Sword of Hisou (緋想の剣 Hisou no Tsurugi, lit. Sword of Scarlet Perceptions) first appears in the game Touhou 10.5 ~ Scarlet Weather Rhapsody. It is a celestial tool and one of Tenshi Hinanawi's weapons. It has the ability to identifying one's spirit, no matter the circumstances. When it is wielded in battle in its dormant state, it takes the form of a golden Chinese jian.\n\nThis art was done in a collaboration with r/Berserk for their Hill of Swords.", "links": {"website": ["https://en.touhouwiki.net/wiki/Sword_of_Hisou"], "subreddit": ["touhou", "Berserk"], "discord": ["apl", "M699v8xSqz"]}, "path": {"197-258": [[502, 943], [500, 945], [500, 949], [501, 949], [501, 955], [500, 955], [500, 956], [502, 958], [505, 958], [507, 956], [506, 955], [505, 955], [505, 947], [504, 946], [504, 943]]}, "center": {"197-258": [503, 948]}}, -{"id": 5642, "name": "el_bala", "description": "amongus de un streamer peruano conocido por comer comida de perro en un tiktok", "links": {"website": ["https://www.twitch.tv/el_bala"]}, "path": {"250-258": [[-1128, -685], [-1128, -686], [-1124, -684], [-1124, -681], [-1127, -680]]}, "center": {"250-258": [-1126, -683]}}, -{"id": 5643, "name": "Mario near to go", "description": "Hi, It's-a me, Mario! I go to the new galaxie, HERE WE GO\n\n(leak du prochain mario galaxy ??)", "links": {}, "path": {"198-258": [[-446, 410], [-456, 410], [-456, 382], [-446, 382]]}, "center": {"198-258": [-451, 396]}}, -{"id": 5644, "name": "Sylvee's Cat", "description": "Cat design based on streamer sylveey's own two cats, Niko and Tesla.\nProtected by streamer Punz's community.", "links": {"website": ["https://www.twitch.tv/sylveey"], "discord": ["xTND7Zs", "punz"]}, "path": {"250-258": [[139, 237], [146, 237], [146, 249], [139, 249]]}, "center": {"250-258": [143, 243]}}, -{"id": 5645, "name": "Gaimin Gladiators", "description": "Gaimin Gladiators is a European esports organization. They entered the Dota 2 competitive scene in February 2022 with the signing of Team Tickles.\n\nThe logo was added after a member of PlaceNL requested it, as she felt that her brother who is on the team did not get enough recognition for his achievements in the Dutch media.", "links": {"website": ["https://www.gaimingladiators.gg/", "https://liquipedia.net/dota2/Gaimin_Gladiators"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"231-258": [[501, -488], [495, -482], [495, -474], [501, -468], [507, -475], [507, -482]]}, "center": {"231-258": [501, -478]}}, -{"id": 5646, "name": "Romania", "description": "The country of Romania as it appears on a map, with the flag of Romania as the background.\n\nRomania on the r/PlaceEU map later expanded to the old borders of Greater Romania, including Moldova and parts of Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania", "https://en.wikipedia.org/wiki/Flag_of_Romania"], "subreddit": ["Romania", "PlaceEU"]}, "path": {"248-252": [[-182, 769], [-185, 769], [-186, 761], [-188, 757], [-192, 754], [-196, 753], [-199, 753], [-202, 756], [-205, 757], [-207, 758], [-215, 758], [-215, 760], [-219, 763], [-221, 764], [-223, 766], [-229, 766], [-229, 767], [-233, 771], [-233, 772], [-226, 773], [-222, 769], [-215, 773], [-213, 775], [-213, 778], [-211, 779], [-207, 780], [-198, 780], [-191, 777], [-190, 779], [-188, 779], [-187, 775], [-186, 773], [-187, 772], [-185, 770], [-184, 771], [-182, 771], [-182, 770]], "158-222": [[-213, 757], [-217, 761], [-220, 769], [-221, 770], [-215, 776], [-213, 776], [-209, 779], [-200, 779], [-193, 774], [-192, 774], [-191, 775], [-187, 775], [-187, 774], [-188, 773], [-188, 771], [-185, 767], [-185, 764], [-186, 764], [-189, 767], [-191, 767], [-191, 765], [-195, 758], [-200, 753], [-201, 753], [-204, 756], [-206, 757]], "223-247, 253-258": [[-213, 758], [-217, 762], [-217, 765], [-221, 771], [-215, 777], [-213, 777], [-209, 780], [-200, 780], [-197, 777], [-193, 775], [-192, 775], [-191, 776], [-187, 776], [-187, 775], [-188, 774], [-188, 772], [-185, 768], [-185, 764], [-184, 763], [-184, 762], [-191, 755], [-191, 754], [-195, 752], [-197, 752], [-206, 758]]}, "center": {"248-252": [-200, 768], "158-222": [-204, 768], "223-247, 253-258": [-205, 769]}}, -{"id": 5647, "name": "Pita Gyro/Souvlaki", "description": "A Greek fast food delicacy known throughout the world, it's origins are based in the Doner kebab, whose Greek version was subsequently developed by Greek Minor Asia refugees, adding unique elements and creating Gyro as we know it today. Moreover, area in southern Greece and in Athens took to calling it souvlaki, bringing about a lighthearted internal Greek dispute as to the true name of the food.", "links": {"website": ["https://en.wikipedia.org/wiki/Gyros"], "subreddit": ["GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"250-258": [[368, 833], [368, 843], [379, 843], [379, 833]]}, "center": {"250-258": [374, 838]}}, +{"id": 5640, "name": "Miffy", "description": "Miffy (Dutch: Nijntje) is a fictional rabbit and the main character children's picture book series \"Miffy\", written and drawn by Dick Bruna. \"Nijntje\" is a shortened version of the word \"konijntje\", or \"little rabbit\".", "links": {"website": ["https://www.nijntje.nl/", "https://www.miffy.com/"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"62-258, T": [[-185, -494], [-183, -492], [-180, -494], [-178, -491], [-178, -487], [-180, -484], [-178, -482], [-179, -475], [-183, -471], [-186, -471], [-188, -474], [-186, -476]]}, "center": {"62-258, T": [-182, -480]}}, +{"id": 5641, "name": "Sword of Hisou", "description": "The Sword of Hisou (緋想の剣 Hisou no Tsurugi, lit. Sword of Scarlet Perceptions) first appears in the game Touhou 10.5 ~ Scarlet Weather Rhapsody. It is a celestial tool and one of Tenshi Hinanawi's weapons. It has the ability to identifying one's spirit, no matter the circumstances. When it is wielded in battle in its dormant state, it takes the form of a golden Chinese jian.\n\nThis art was done in a collaboration with r/Berserk for their Hill of Swords.", "links": {"website": ["https://en.touhouwiki.net/wiki/Sword_of_Hisou"], "subreddit": ["touhou", "Berserk"], "discord": ["apl", "M699v8xSqz"]}, "path": {"197-258, T": [[502, 943], [500, 945], [500, 949], [501, 949], [501, 955], [500, 955], [500, 956], [502, 958], [505, 958], [507, 956], [506, 955], [505, 955], [505, 947], [504, 946], [504, 943]]}, "center": {"197-258, T": [503, 948]}}, +{"id": 5642, "name": "el_bala", "description": "amongus de un streamer peruano conocido por comer comida de perro en un tiktok", "links": {"website": ["https://www.twitch.tv/el_bala"]}, "path": {"250-258, T": [[-1128, -685], [-1128, -686], [-1124, -684], [-1124, -681], [-1127, -680]]}, "center": {"250-258, T": [-1126, -683]}}, +{"id": 5643, "name": "Mario near to go", "description": "Hi, It's-a me, Mario! I go to the new galaxie, HERE WE GO\n\n(leak du prochain mario galaxy ??)", "links": {}, "path": {"198-258, T": [[-446, 410], [-456, 410], [-456, 382], [-446, 382]]}, "center": {"198-258, T": [-451, 396]}}, +{"id": 5644, "name": "Sylvee's Cat", "description": "Cat design based on streamer sylveey's own two cats, Niko and Tesla.\nProtected by streamer Punz's community.", "links": {"website": ["https://www.twitch.tv/sylveey"], "discord": ["xTND7Zs", "punz"]}, "path": {"250-258, T": [[139, 237], [146, 237], [146, 249], [139, 249]]}, "center": {"250-258, T": [143, 243]}}, +{"id": 5645, "name": "Gaimin Gladiators", "description": "Gaimin Gladiators is a European esports organization. They entered the Dota 2 competitive scene in February 2022 with the signing of Team Tickles.\n\nThe logo was added after a member of PlaceNL requested it, as she felt that her brother who is on the team did not get enough recognition for his achievements in the Dutch media.", "links": {"website": ["https://www.gaimingladiators.gg/", "https://liquipedia.net/dota2/Gaimin_Gladiators"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"231-258, T": [[501, -488], [495, -482], [495, -474], [501, -468], [507, -475], [507, -482]]}, "center": {"231-258, T": [501, -478]}}, +{"id": 5646, "name": "Romania", "description": "The country of Romania as it appears on a map, with the flag of Romania as the background.\n\nRomania on the r/PlaceEU map later expanded to the old borders of Greater Romania, including Moldova and parts of Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania", "https://en.wikipedia.org/wiki/Flag_of_Romania"], "subreddit": ["Romania", "PlaceEU"]}, "path": {"158-222": [[-213, 757], [-217, 761], [-220, 769], [-221, 770], [-215, 776], [-213, 776], [-209, 779], [-200, 779], [-193, 774], [-192, 774], [-191, 775], [-187, 775], [-187, 774], [-188, 773], [-188, 771], [-185, 767], [-185, 764], [-186, 764], [-189, 767], [-191, 767], [-191, 765], [-195, 758], [-200, 753], [-201, 753], [-204, 756], [-206, 757]], "223-247, 253-258": [[-213, 758], [-217, 762], [-217, 765], [-221, 771], [-215, 777], [-213, 777], [-209, 780], [-200, 780], [-197, 777], [-193, 775], [-192, 775], [-191, 776], [-187, 776], [-187, 775], [-188, 774], [-188, 772], [-185, 768], [-185, 764], [-184, 763], [-184, 762], [-191, 755], [-191, 754], [-195, 752], [-197, 752], [-206, 758]], "248-252, T": [[-182, 769], [-185, 769], [-186, 761], [-188, 757], [-192, 754], [-196, 753], [-199, 753], [-202, 756], [-205, 757], [-207, 758], [-215, 758], [-215, 760], [-219, 763], [-221, 764], [-223, 766], [-229, 766], [-229, 767], [-233, 771], [-233, 772], [-226, 773], [-222, 769], [-215, 773], [-213, 775], [-213, 778], [-211, 779], [-207, 780], [-198, 780], [-191, 777], [-190, 779], [-188, 779], [-187, 775], [-186, 773], [-187, 772], [-185, 770], [-184, 771], [-182, 771], [-182, 770]]}, "center": {"158-222": [-204, 768], "223-247, 253-258": [-205, 769], "248-252, T": [-200, 768]}}, +{"id": 5647, "name": "Pita Gyro/Souvlaki", "description": "A Greek fast food delicacy known throughout the world, it's origins are based in the Doner kebab, whose Greek version was subsequently developed by Greek Minor Asia refugees, adding unique elements and creating Gyro as we know it today. Moreover, area in southern Greece and in Athens took to calling it souvlaki, bringing about a lighthearted internal Greek dispute as to the true name of the food.", "links": {"website": ["https://en.wikipedia.org/wiki/Gyros"], "subreddit": ["GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"250-258, T": [[368, 833], [368, 843], [379, 843], [379, 833]]}, "center": {"250-258, T": [374, 838]}}, {"id": 5648, "name": "Zwambo", "description": "Zwambo is a trending word circulating through the German internet, which stands for a 20€ bill. It was a very controversial word, but then it was accepted by most. The word was invented by a Twitter user named Florian with the alias \"Kelbflte\". It was coordinated and set by his friend Aymen with the alias \"amoaymen\".", "links": {}, "path": {"7": [[-254, 438], [-245, 438], [-246, 476], [-254, 476]]}, "center": {"7": [-249, 443]}}, -{"id": 5649, "name": "Technoblade", "description": "A tribute to the popular Minecraft youtuber \"Technoblade\". Technoblade died in 2022 from complications with cancer, since then the minecraft community has been representing Technoblade on r/place to forever solidify his legacy and impact on people around the world.", "links": {"subreddit": ["Technoblade"]}, "path": {"250-258": [[646, 415], [672, 415], [672, 437], [646, 437]]}, "center": {"250-258": [659, 426]}}, +{"id": 5649, "name": "Technoblade", "description": "A tribute to the popular Minecraft youtuber \"Technoblade\". Technoblade died in 2022 from complications with cancer, since then the minecraft community has been representing Technoblade on r/place to forever solidify his legacy and impact on people around the world.", "links": {"subreddit": ["Technoblade"]}, "path": {"250-258, T": [[646, 415], [672, 415], [672, 437], [646, 437]]}, "center": {"250-258, T": [659, 426]}}, {"id": 5650, "name": "Baglamas", "description": "A instrument widely used in both Balkan and Turkish music, it has come to be identified heavily by Greeks as a national treasure due to its connections with the rebetika (a type of pessimistic music genre which concerned itself with drug/alchohol addictions, of being a loser, love and heartbreaks, and the pains of being permanetly removed from one's homeland) of the 1920s and subsequent musical genres which followed such as Laika (more lighthearted than the previous, yet still filled with pessimistic songs about a variety of subjects, allot of which still resonate with people of all backgrounds to this day).", "links": {"website": ["https://en.wikipedia.org/wiki/Baglamas"], "subreddit": ["GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"223": [[368, 860], [368, 883], [380, 883], [380, 861]]}, "center": {"223": [374, 872]}}, -{"id": 5651, "name": "turd boi420", "description": "Popular YouTuber \"JackSucksAtLife\" is well known for running a multitude of YouTube channels, with which he obtains \"creator awards\" straight from YouTube. His collection ranges from the silver plaque all the way up to getting his hands on 100 million subscriber award earned by PewDiePie, and even MrBeast's (which he was given for a short period of time. In that time, Jack took the opportunity to send it to space).\n\nAnother one of those channels is called \"turd boi420\", which is special because he was one of the first to put the word \"turd\" onto a silver creator plaque. The logo (a white \"t\" on a pink background) comes from YouTube's auto-generated profile picture system, which became its logo. \n\nThe channel became so popular in Jack's community that it has featured on merchandise such as shirts, mugs and beanies, all following an identical colour scheme.", "links": {"website": ["https://www.youtube.com/@turdboi-it8bu/about"], "subreddit": ["JackSucksAtLife"]}, "path": {"243-258": [[1492, 645], [1492, 652], [1500, 652], [1500, 645]]}, "center": {"243-258": [1496, 649]}}, -{"id": 5652, "name": "Unitystation logo", "description": "This is the logo for the open source project Unitystation that is a remake of the classic game SS13, made in the Unity game engine", "links": {"website": ["https://www.unitystation.org/"], "subreddit": ["unitystation"], "discord": ["tFcTpBp"]}, "path": {"250-258": [[-1127, -672], [-1126, -671], [-1125, -670], [-1126, -669], [-1125, -668], [-1125, -667], [-1126, -666], [-1127, -665], [-1128, -664], [-1130, -664], [-1132, -664], [-1133, -665], [-1134, -666], [-1133, -667], [-1133, -668], [-1133, -669], [-1134, -669], [-1132, -669], [-1132, -670], [-1131, -670], [-1130, -670], [-1130, -671], [-1129, -671], [-1129, -672], [-1128, -672]]}, "center": {"250-258": [-1129, -667]}}, +{"id": 5651, "name": "turd boi420", "description": "Popular YouTuber \"JackSucksAtLife\" is well known for running a multitude of YouTube channels, with which he obtains \"creator awards\" straight from YouTube. His collection ranges from the silver plaque all the way up to getting his hands on 100 million subscriber award earned by PewDiePie, and even MrBeast's (which he was given for a short period of time. In that time, Jack took the opportunity to send it to space).\n\nAnother one of those channels is called \"turd boi420\", which is special because he was one of the first to put the word \"turd\" onto a silver creator plaque. The logo (a white \"t\" on a pink background) comes from YouTube's auto-generated profile picture system, which became its logo. \n\nThe channel became so popular in Jack's community that it has featured on merchandise such as shirts, mugs and beanies, all following an identical colour scheme.", "links": {"website": ["https://www.youtube.com/@turdboi-it8bu/about"], "subreddit": ["JackSucksAtLife"]}, "path": {"243-258, T": [[1492, 645], [1492, 652], [1500, 652], [1500, 645]]}, "center": {"243-258, T": [1496, 649]}}, +{"id": 5652, "name": "Unitystation logo", "description": "This is the logo for the open source project Unitystation that is a remake of the classic game SS13, made in the Unity game engine", "links": {"website": ["https://www.unitystation.org/"], "subreddit": ["unitystation"], "discord": ["tFcTpBp"]}, "path": {"250-258, T": [[-1127, -672], [-1126, -671], [-1125, -670], [-1126, -669], [-1125, -668], [-1125, -667], [-1126, -666], [-1127, -665], [-1128, -664], [-1130, -664], [-1132, -664], [-1133, -665], [-1134, -666], [-1133, -667], [-1133, -668], [-1133, -669], [-1134, -669], [-1132, -669], [-1132, -670], [-1131, -670], [-1130, -670], [-1130, -671], [-1129, -671], [-1129, -672], [-1128, -672]]}, "center": {"250-258, T": [-1129, -667]}}, {"id": 5653, "name": "Greek Frappe coffee", "description": "Having existed beforehand during the 19th century, the Greek version utilizes instant coffee. \n\nOriginating from the second biggest Greek city of Thessaloniki, it was created by accident in 1957 in the Thessaloniki International Fair by a Nestle employee called Dimitris Vakondios, who was looking for a way to have his usual instant coffee during his break but could not find any hot water, so, he mixed the coffee with cold water and ice cubes in a shaker. \n\nThis improvised experiment established the frappe, which quickly grew in popularity in Greece throughout the 1980s and still remains a popular drink in its home city of Thessaloniki.", "links": {"website": ["https://en.wikipedia.org/wiki/Frapp%C3%A9_coffee"], "subreddit": ["GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"223": [[368, 845], [368, 859], [380, 859], [380, 845]]}, "center": {"223": [374, 852]}}, -{"id": 5654, "name": "Esix", "description": "Esix is the mascot of the NSFW image board website, e621.", "links": {}, "path": {"250-258": [[-1453, 31], [-1451, 29], [-1451, 31], [-1450, 31], [-1450, 34], [-1445, 34], [-1445, 31], [-1444, 31], [-1444, 29], [-1442, 31], [-1442, 35], [-1444, 36], [-1442, 38], [-1442, 40], [-1446, 44], [-1446, 45], [-1441, 45], [-1439, 47], [-1439, 53], [-1438, 59], [-1440, 59], [-1440, 67], [-1443, 71], [-1446, 61], [-1449, 61], [-1451, 68], [-1454, 68], [-1455, 66], [-1455, 60], [-1452, 58], [-1456, 58], [-1456, 54], [-1455, 47], [-1454, 46], [-1450, 45], [-1450, 44], [-1452, 43], [-1453, 41]]}, "center": {"250-258": [-1447, 52]}}, +{"id": 5654, "name": "Esix", "description": "Esix is the mascot of the NSFW image board website, e621.", "links": {}, "path": {"250-258, T": [[-1453, 31], [-1451, 29], [-1451, 31], [-1450, 31], [-1450, 34], [-1445, 34], [-1445, 31], [-1444, 31], [-1444, 29], [-1442, 31], [-1442, 35], [-1444, 36], [-1442, 38], [-1442, 40], [-1446, 44], [-1446, 45], [-1441, 45], [-1439, 47], [-1439, 53], [-1438, 59], [-1440, 59], [-1440, 67], [-1443, 71], [-1446, 61], [-1449, 61], [-1451, 68], [-1454, 68], [-1455, 66], [-1455, 60], [-1452, 58], [-1456, 58], [-1456, 54], [-1455, 47], [-1454, 46], [-1450, 45], [-1450, 44], [-1452, 43], [-1453, 41]]}, "center": {"250-258, T": [-1447, 52]}}, {"id": 5655, "name": "Blue Corner OceanGate Titan submersible", "description": "The OceanGate Titan submersible was a vessel that was said to be capable of taking 5 people down to see the wreck of the Titanic. It imploded on June 18, 2023 causing all 5 passengers to die which included the CEO of OceanGate, Stockton Rush. Due to it now being at the bottom of the ocean, it was suggested to be placed in the Blue Corner. However, the hivemind attacked it and the Blue Corner was attacked by Zugu (the Italian streamer Tumblurr) before it was finished.", "links": {"subreddit": ["thebluecorner"], "discord": ["5X4GnCuuXZ"]}, "path": {"184-190": [[904, 914], [904, 921], [915, 921], [915, 914]]}, "center": {"184-190": [910, 918]}}, -{"id": 5656, "name": "Tsukasa Tenma", "description": "Art of Tsukasa Tenma from Project sekai:Colorful Stage! in alliance with United Gacha.", "links": {"website": ["https://projectsekai.fandom.com/wiki/Tenma_Tsukasa"], "subreddit": ["gachagaming"], "discord": ["unitedgacha"]}, "path": {"250-258": [[-591, 211], [-591, 210], [-599, 212], [-599, 218], [-594, 221], [-591, 218], [-589, 215]]}, "center": {"250-258": [-594, 215]}}, +{"id": 5656, "name": "Tsukasa Tenma", "description": "Art of Tsukasa Tenma from Project sekai:Colorful Stage! in alliance with United Gacha.", "links": {"website": ["https://projectsekai.fandom.com/wiki/Tenma_Tsukasa"], "subreddit": ["gachagaming"], "discord": ["unitedgacha"]}, "path": {"250-258, T": [[-591, 211], [-591, 210], [-599, 212], [-599, 218], [-594, 221], [-591, 218], [-589, 215]]}, "center": {"250-258, T": [-594, 215]}}, {"id": 5657, "name": "Hourglass dog", "description": "The Hourglass dog character from web toon and future game series ENA by Joel GC.", "links": {"website": ["https://joelgc.com/"], "subreddit": ["ENA"]}, "path": {"217-218": [[-1492, 122], [-1493, 115], [-1488, 114], [-1489, 112], [-1493, 111], [-1495, 112], [-1497, 109], [-1487, 121], [-1486, 117], [-1488, 115], [-1488, 112], [-1485, 111], [-1490, 110], [-1494, 110], [-1492, 110], [-1489, 110], [-1489, 109], [-1488, 110], [-1492, 110], [-1491, 110], [-1497, 118], [-1499, 114], [-1497, 114], [-1496, 113], [-1496, 112], [-1498, 113], [-1497, 111], [-1495, 114], [-1493, 114], [-1494, 114], [-1497, 121], [-1490, 122], [-1492, 120], [-1489, 120], [-1486, 120], [-1487, 122], [-1490, 118], [-1490, 117], [-1486, 112], [-1486, 116], [-1486, 118], [-1488, 120], [-1498, 117], [-1499, 119], [-1499, 121], [-1500, 114], [-1498, 112], [-1499, 111], [-1490, 111], [-1485, 110], [-1487, 109]]}, "center": {"217-218": [-1495, 120]}}, -{"id": 5658, "name": "Sektor tomando \"Mate\" con la nariz", "description": "TA TA TA MI NOVIA ASI VITE´\n\nesto proviene de un clio donde el streamer argentino Sektor AKA Narisektor o El Sifon, fue captado tomando mate, donde gracias a la perspectiva de la camara se ve como si estuviera tomando mate por la nariz", "links": {"subreddit": ["Los_Vectorgas"]}, "path": {"250-258": [[-863, 562], [-843, 562], [-843, 593], [-863, 593]]}, "center": {"250-258": [-853, 578]}}, -{"id": 5659, "name": "Chewing Guys", "description": "Made by four friends who call themselves the chewing guys", "links": {}, "path": {"250-258": [[-1438, 154], [-1410, 154], [-1410, 161], [-1438, 161]]}, "center": {"250-258": [-1424, 158]}}, +{"id": 5658, "name": "Sektor tomando \"Mate\" con la nariz", "description": "TA TA TA MI NOVIA ASI VITE´\n\nesto proviene de un clio donde el streamer argentino Sektor AKA Narisektor o El Sifon, fue captado tomando mate, donde gracias a la perspectiva de la camara se ve como si estuviera tomando mate por la nariz", "links": {"subreddit": ["Los_Vectorgas"]}, "path": {"250-258, T": [[-863, 562], [-843, 562], [-843, 593], [-863, 593]]}, "center": {"250-258, T": [-853, 578]}}, +{"id": 5659, "name": "Chewing Guys", "description": "Made by four friends who call themselves the chewing guys", "links": {}, "path": {"250-258, T": [[-1438, 154], [-1410, 154], [-1410, 161], [-1438, 161]]}, "center": {"250-258, T": [-1424, 158]}}, {"id": 5660, "name": "The Greek Pita Gyro/Souvlaki Flag", "description": "So called due to the original purpose of the flag being to house the treasured Pita Gyro/Souvlaki of Greece, it subsequenlty grew in order to house additional designs, such as the Frappe of Thessaloniki and the Baglamas. Although, in the place of the latter, the Kurdish flag was meant to be, as a sign of r/GreecePlace discord's past afinity with them, but a compromise was reached within the community and the flag was placed on the side, giving away space to make the Baglamas.\n\nOverall, and much to the pleasure of the community, the flag received little to no raids by anyone, giving the r/GreecePlace Discord server space to breathe and focus on the main flag, which suffered constant raids.", "links": {"website": ["https://en.wikipedia.org/wiki/Gyros", "https://en.wikipedia.org/wiki/Frapp%C3%A9_coffee", "https://en.wikipedia.org/wiki/Baglamas"], "subreddit": ["GreecePlace"], "discord": ["BWh2CCvM"]}, "path": {"223": [[367, 831], [367, 884], [381, 885], [381, 832]]}, "center": {"223": [374, 858]}}, -{"id": 5661, "name": "El Merengue", "description": "Proveniente del Streamer cZerito, del grupo Los vectorgas, se lo considera un SCP o un meme dentro de la comunidad", "links": {"website": ["https://www.twitch.tv/czerito"], "subreddit": ["LosVectorgas"]}, "path": {"250-258": [[-805, 562], [-842, 562], [-842, 614], [-805, 615], [-805, 564]]}, "center": {"250-258": [-823, 589]}}, -{"id": 5662, "name": "Puro", "description": "He's a wolf character made of latex from the furry game \"Changed\" , which was created by a Chinese game developer known online as DragonSnow .", "links": {"subreddit": ["ChangedFurry"]}, "path": {"199-258": [[-1005, 182], [-1008, 185], [-1012, 185], [-1015, 179], [-1016, 177], [-1015, 174], [-1018, 171], [-1009, 170], [-1001, 171], [-1000, 171], [-1002, 174], [-1002, 175], [-1002, 177], [-1001, 180], [-1004, 182], [-1002, 180], [-1005, 182], [-1002, 181]]}, "center": {"199-258": [-1009, 177]}}, -{"id": 5663, "name": "Rovlector", "description": "a roblox version of the Argentinian Streamer \"Vector\"", "links": {"website": ["https://www.twitch.tv/vector"], "subreddit": ["LosVectorgas"]}, "path": {"250-258": [[-891, 562], [-863, 562], [-863, 603], [-890, 594], [-891, 563], [-890, 566]]}, "center": {"250-258": [-877, 579]}}, +{"id": 5661, "name": "El Merengue", "description": "Proveniente del Streamer cZerito, del grupo Los vectorgas, se lo considera un SCP o un meme dentro de la comunidad", "links": {"website": ["https://www.twitch.tv/czerito"], "subreddit": ["LosVectorgas"]}, "path": {"250-258, T": [[-805, 562], [-842, 562], [-842, 614], [-805, 615], [-805, 564]]}, "center": {"250-258, T": [-823, 589]}}, +{"id": 5662, "name": "Puro", "description": "He's a wolf character made of latex from the furry game \"Changed\" , which was created by a Chinese game developer known online as DragonSnow .", "links": {"subreddit": ["ChangedFurry"]}, "path": {"199-258, T": [[-1005, 182], [-1008, 185], [-1012, 185], [-1015, 179], [-1016, 177], [-1015, 174], [-1018, 171], [-1009, 170], [-1001, 171], [-1000, 171], [-1002, 174], [-1002, 175], [-1002, 177], [-1001, 180], [-1004, 182], [-1002, 180], [-1005, 182], [-1002, 181]]}, "center": {"199-258, T": [-1009, 177]}}, +{"id": 5663, "name": "Rovlector", "description": "a roblox version of the Argentinian Streamer \"Vector\"", "links": {"website": ["https://www.twitch.tv/vector"], "subreddit": ["LosVectorgas"]}, "path": {"250-258, T": [[-891, 562], [-863, 562], [-863, 603], [-890, 594], [-891, 563], [-890, 566]]}, "center": {"250-258, T": [-877, 579]}}, {"id": 5664, "name": "Blinky and Pinky", "description": "Blinky and Pinky, members of the \"Ghost Gang\" and reoccurring villains in the PAC-MAN series.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Ghosts_(Pac-Man)"]}, "path": {"217-241": [[-162, 432], [-161, 437], [-161, 441], [-159, 442], [-158, 441], [-158, 433], [-159, 432], [-159, 431], [-158, 431], [-160, 430], [-163, 431], [-164, 433], [-163, 435], [-163, 440], [-163, 443], [-161, 444], [-159, 444], [-158, 444], [-164, 444], [-164, 440], [-164, 437], [-159, 437], [-164, 431], [-163, 430], [-158, 430], [-163, 442]]}, "center": {"217-241": [-159, 438]}}, -{"id": 5665, "name": "Among Us crewmate with soup", "description": "A crewmate from the popular game Among Us with a bowl of soup", "links": {}, "path": {"250-258": [[-1471, 186], [-1474, 187], [-1474, 190], [-1472, 192], [-1470, 192], [-1469, 189], [-1469, 187]]}, "center": {"250-258": [-1471, 189]}}, -{"id": 5666, "name": "Emu", "description": "A bird", "links": {"website": ["https://en.wikipedia.org/wiki/Emu"], "subreddit": ["australia"]}, "path": {"250-258": [[-838, 43], [-834, 40], [-833, 41], [-832, 44], [-836, 43], [-832, 46], [-828, 47], [-828, 50], [-831, 52], [-831, 54], [-834, 54], [-834, 52], [-836, 49], [-835, 45], [-834, 43]]}, "center": {"250-258": [-832, 49]}}, -{"id": 5667, "name": "Keiki Haniyasushin", "description": "The 6th stage, or final, boss of the 17th mainline game in the Touhou Project franchise, Wily Beast and Weakest Creature. She is a goddess of creation, and has the ability to create idols, infusing them with faith to make them autonomous.\n\nThis tiny art of her isn't the first time she was built, as she had been previously built at the tiny gap between the F & U of the flag-collaboration of \"Fuck Spez\". To be more specific, it was at around (1114, 65).", "links": {"website": ["https://en.touhouwiki.net/wiki/Keiki_Haniyasushin"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"250-251": [[1406, 287], [1395, 287], [1395, 275], [1406, 275]]}, "center": {"250-251": [1401, 281]}}, -{"id": 5668, "name": "Juice WRLD Legends Never Die Album Cover", "description": "Legends Never Die is the late rapper Juice WRLD's third studio album and first posthumous album, releasing in July 2020, 7 months after Juice WRLD's passing in December 2019. The album cover depicts the artist with a pastoral, heaven like background to commemorate and celebrate the artist's legacy. This is part of the bigger Juice WRLD memorial on r/place, with another one of his album covers being right underneath this. Long Live Juice WRLD. 999 Forever.", "links": {"subreddit": ["juicewrld"], "discord": ["juicewrld"]}, "path": {"250-258": [[-1398, 563], [-1398, 575], [-1379, 575], [-1384, 563], [-1391, 563], [-1394, 563], [-1396, 563]]}, "center": {"250-258": [-1388, 569]}}, -{"id": 5669, "name": "Amicus - Adastra", "description": "Pixel art of the important character from the furry visual novel 'Adastra', which has extensive theming and history related to that of Italy and Ancient Rome. The game contains many impactful subversions with complex characters that have helped it stand out compared to other visual novels, and Amicus himself is an especially beloved character. It was created by The Echo Project, written by Howley and featuring visual art from HAPS and BlackSun.", "links": {"website": ["https://echoproject.itch.io/adastra"], "subreddit": ["Adastra_"]}, "path": {"229-258": [[-687, 96], [-686, 85], [-671, 85], [-671, 97]]}, "center": {"229-258": [-679, 91]}}, -{"id": 5670, "name": "TEAM TUTTI FRUTTI", "description": "Representación de los creadores de contenido Apoloide, Sherman y Puppetxtral (de izquierda a derecha) con sus respectivas skins del videojuego Minecraft.\n\nSe llaman a sí mismos \"team tutti frutti\" porque residen en diferentes países.", "links": {"website": ["https://youtube.com/@apoloide_yt", "https://www.youtube.com/@sherman431", "https://www.youtube.com/@puppetxtral4261"]}, "path": {"218-258": [[1327, -877], [1354, -877], [1354, -868], [1327, -868]]}, "center": {"218-258": [1341, -872]}}, -{"id": 5671, "name": "Karkat", "description": "Karkat, a character from the webcomic Homestuck", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258": [[839, 410], [846, 410], [846, 422], [839, 422]]}, "center": {"250-258": [843, 416]}}, -{"id": 5672, "name": "\"Thanks Scott\" - by GG Games", "description": "a small tribute for the legacy of the original FNaF Games, originally it was a bigger banner, but it was surrounded by another artworks in the canvas", "links": {"website": ["https://www.youtube.com/@GGGames._"], "subreddit": ["fivenightsatfreddys"]}, "path": {"250-258": [[-766, 785], [-722, 785], [-722, 793], [-766, 793]]}, "center": {"250-258": [-744, 789]}}, -{"id": 5673, "name": "Vriska", "description": "Vriska, a character from the webcomic Homestuck", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258": [[540, 343], [546, 343], [546, 337], [540, 337]]}, "center": {"250-258": [543, 340]}}, -{"id": 5674, "name": "Dave and the Mayor", "description": "Dave (left) and the Mayor (right), characters from the webcomic Homestuck", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258": [[1021, 249], [1036, 249], [1036, 241], [1022, 240]]}, "center": {"250-258": [1029, 245]}}, -{"id": 5675, "name": "HWK Nicosiete", "description": "\"en la boca? Deaa\"\n\nmeme proveniente de la comunidad argentina de Los Vectorgas\n\ncuenta la leyenda que desde que estuvo con el trava en Brasil, te cobra el 50% del contrato", "links": {"subreddit": ["Los_Vectorgas"]}, "path": {"250-258": [[-778, 586], [-743, 586], [-743, 616], [-778, 616]]}, "center": {"250-258": [-760, 601]}}, -{"id": 5676, "name": "Puffin", "description": "Puffin's are an iconic symbol in Orkney with these colourful birds being popular bird watching attraction to the more isolated islands of the Orkney Islands", "links": {"subreddit": ["orkney", "nordics"]}, "path": {"250-258": [[-175, -290], [-172, -299], [-167, -298], [-169, -289]]}, "center": {"250-258": [-171, -294]}}, +{"id": 5665, "name": "Among Us crewmate with soup", "description": "A crewmate from the popular game Among Us with a bowl of soup", "links": {}, "path": {"250-258, T": [[-1471, 186], [-1474, 187], [-1474, 190], [-1472, 192], [-1470, 192], [-1469, 189], [-1469, 187]]}, "center": {"250-258, T": [-1471, 189]}}, +{"id": 5666, "name": "Emu", "description": "A bird", "links": {"website": ["https://en.wikipedia.org/wiki/Emu"], "subreddit": ["australia"]}, "path": {"250-258, T": [[-838, 43], [-834, 40], [-833, 41], [-832, 44], [-836, 43], [-832, 46], [-828, 47], [-828, 50], [-831, 52], [-831, 54], [-834, 54], [-834, 52], [-836, 49], [-835, 45], [-834, 43]]}, "center": {"250-258, T": [-832, 49]}}, +{"id": 5667, "name": "Keiki Haniyasushin", "description": "The 6th stage, or final, boss of the 17th mainline game in the Touhou Project franchise, Wily Beast and Weakest Creature. She is a goddess of creation, and has the ability to create idols, infusing them with faith to make them autonomous.\n\nThis tiny art of her isn't the first time she was built, as she had been previously built at the tiny gap between the F & U of the flag-collaboration of \"Fuck Spez\". To be more specific, it was at around (1114, 65).", "links": {"website": ["https://en.touhouwiki.net/wiki/Keiki_Haniyasushin"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"250-251, T": [[1406, 287], [1395, 287], [1395, 275], [1406, 275]]}, "center": {"250-251, T": [1401, 281]}}, +{"id": 5668, "name": "Juice WRLD Legends Never Die Album Cover", "description": "Legends Never Die is the late rapper Juice WRLD's third studio album and first posthumous album, releasing in July 2020, 7 months after Juice WRLD's passing in December 2019. The album cover depicts the artist with a pastoral, heaven like background to commemorate and celebrate the artist's legacy. This is part of the bigger Juice WRLD memorial on r/place, with another one of his album covers being right underneath this. Long Live Juice WRLD. 999 Forever.", "links": {"subreddit": ["juicewrld"], "discord": ["juicewrld"]}, "path": {"250-258, T": [[-1398, 563], [-1398, 575], [-1379, 575], [-1384, 563], [-1391, 563], [-1394, 563], [-1396, 563]]}, "center": {"250-258, T": [-1388, 569]}}, +{"id": 5669, "name": "Amicus - Adastra", "description": "Pixel art of the important character from the furry visual novel 'Adastra', which has extensive theming and history related to that of Italy and Ancient Rome. The game contains many impactful subversions with complex characters that have helped it stand out compared to other visual novels, and Amicus himself is an especially beloved character. It was created by The Echo Project, written by Howley and featuring visual art from HAPS and BlackSun.", "links": {"website": ["https://echoproject.itch.io/adastra"], "subreddit": ["Adastra_"]}, "path": {"229-258, T": [[-687, 96], [-686, 85], [-671, 85], [-671, 97]]}, "center": {"229-258, T": [-679, 91]}}, +{"id": 5670, "name": "TEAM TUTTI FRUTTI", "description": "Representación de los creadores de contenido Apoloide, Sherman y Puppetxtral (de izquierda a derecha) con sus respectivas skins del videojuego Minecraft.\n\nSe llaman a sí mismos \"team tutti frutti\" porque residen en diferentes países.", "links": {"website": ["https://youtube.com/@apoloide_yt", "https://www.youtube.com/@sherman431", "https://www.youtube.com/@puppetxtral4261"]}, "path": {"218-258, T": [[1327, -877], [1354, -877], [1354, -868], [1327, -868]]}, "center": {"218-258, T": [1341, -872]}}, +{"id": 5671, "name": "Karkat", "description": "Karkat, a character from the webcomic Homestuck", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258, T": [[839, 410], [846, 410], [846, 422], [839, 422]]}, "center": {"250-258, T": [843, 416]}}, +{"id": 5672, "name": "\"Thanks Scott\" - by GG Games", "description": "a small tribute for the legacy of the original FNaF Games, originally it was a bigger banner, but it was surrounded by another artworks in the canvas", "links": {"website": ["https://www.youtube.com/@GGGames._"], "subreddit": ["fivenightsatfreddys"]}, "path": {"250-258, T": [[-766, 785], [-722, 785], [-722, 793], [-766, 793]]}, "center": {"250-258, T": [-744, 789]}}, +{"id": 5673, "name": "Vriska", "description": "Vriska, a character from the webcomic Homestuck", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258, T": [[540, 343], [546, 343], [546, 337], [540, 337]]}, "center": {"250-258, T": [543, 340]}}, +{"id": 5674, "name": "Dave and the Mayor", "description": "Dave (left) and the Mayor (right), characters from the webcomic Homestuck", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258, T": [[1021, 249], [1036, 249], [1036, 241], [1022, 240]]}, "center": {"250-258, T": [1029, 245]}}, +{"id": 5675, "name": "HWK Nicosiete", "description": "\"en la boca? Deaa\"\n\nmeme proveniente de la comunidad argentina de Los Vectorgas\n\ncuenta la leyenda que desde que estuvo con el trava en Brasil, te cobra el 50% del contrato", "links": {"subreddit": ["Los_Vectorgas"]}, "path": {"250-258, T": [[-778, 586], [-743, 586], [-743, 616], [-778, 616]]}, "center": {"250-258, T": [-760, 601]}}, +{"id": 5676, "name": "Puffin", "description": "Puffin's are an iconic symbol in Orkney with these colourful birds being popular bird watching attraction to the more isolated islands of the Orkney Islands", "links": {"subreddit": ["orkney", "nordics"]}, "path": {"250-258, T": [[-175, -290], [-172, -299], [-167, -298], [-169, -289]]}, "center": {"250-258, T": [-171, -294]}}, {"id": 5677, "name": "Flag of Sweden", "description": "Sweden is a country in Northern Europe.\n\nThis flag was built here once again by a rogue Swedish streamer named Perrababy. r/sweden and r/place_nordicunion did not agree to this expansion, so they decided to give this spot back to other communities after he finished his stream. The Union dismantled the flag by coloring the whole thing white, and during that two attempts were made to build a large South Korean flag on Perrababy's ill-gotten spot for protesting him wiping out r/Korea_Place's small flag, before both plans were thwarted.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden", "https://en.wikipedia.org/wiki/Flag_of_Sweden"]}, "path": {"193": [[-763, 447], [-735, 447], [-735, 446], [-690, 446], [-690, 481], [-763, 481]], "194": [[-762, 446], [-690, 446], [-690, 481], [-787, 481], [-787, 464], [-762, 464]], "195": [[-801, 464], [-763, 464], [-763, 447], [-759, 447], [-759, 446], [-690, 446], [-690, 481], [-801, 481]], "196": [[-780, 429], [-690, 429], [-690, 481], [-780, 481]], "200": [[-801, 430], [-796, 430], [-796, 429], [-631, 429], [-631, 481], [-801, 481]], "201": [[-801, 429], [-631, 429], [-631, 481], [-780, 481], [-780, 464], [-801, 464]], "202": [[-801, 429], [-654, 429], [-654, 481], [-801, 481]], "206": [[-801, 403], [-770, 403], [-770, 429], [-631, 429], [-631, 446], [-654, 446], [-654, 481], [-821, 481], [-821, 457], [-801, 457]], "214": [[-821, 481], [-709, 481], [-709, 446], [-631, 446], [-631, 429], [-801, 429], [-801, 457], [-821, 457]], "191-192": [[-735, 446], [-690, 446], [-690, 481], [-735, 481]], "197-199": [[-780, 429], [-631, 429], [-631, 481], [-780, 481]], "203-205": [[-801, 429], [-654, 429], [-654, 481], [-821, 481], [-821, 457], [-801, 457]], "207-208": [[-808, 384], [-787, 384], [-787, 403], [-770, 403], [-770, 429], [-631, 429], [-631, 446], [-654, 446], [-654, 481], [-821, 481], [-821, 457], [-801, 457], [-801, 403], [-808, 403]], "209-213": [[-801, 403], [-770, 403], [-770, 429], [-631, 429], [-631, 446], [-654, 446], [-654, 498], [-657, 498], [-657, 481], [-821, 481], [-821, 457], [-801, 457]]}, "center": {"193": [-726, 464], "194": [-734, 464], "195": [-745, 464], "196": [-735, 455], "200": [-716, 455], "201": [-716, 455], "202": [-727, 455], "206": [-775, 454], "214": [-743, 455], "191-192": [-712, 464], "197-199": [-705, 455], "203-205": [-737, 455], "207-208": [-724, 455], "209-213": [-774, 455]}}, {"id": 5678, "name": "Fuck u/spez (first part)", "description": "A tiling of \"fuck u/spez\" created by users in a protest against the API changes", "links": {}, "path": {"1-6": [[-145, 86], [-145, 108], [-73, 108], [-73, 86]], "7-13": [[-78, -16], [-144, -17], [-145, 204], [-111, 204], [-102, 233], [-94, 232], [-72, 204], [-53, 209], [-44, 199], [-30, 206], [9, 211], [30, 224], [30, 305], [69, 305], [68, 220], [83, 199], [83, 127], [43, 127], [43, 120], [12, 119], [11, 83], [20, 83], [20, 67], [25, 67], [25, 33], [-78, 32]], "14-22": [[29, 342], [45, 342], [45, 353], [146, 352], [146, 282], [200, 282], [200, 253], [186, 231], [149, 231], [137, 228], [88, 229], [89, 179], [82, 179], [83, 105], [56, 105], [56, 96], [45, 96], [46, 122], [10, 121], [11, 82], [20, 66], [106, 67], [106, 34], [-77, 33], [-78, -9], [499, -10], [499, -15], [92, -15], [92, -57], [-75, -63], [-78, -30], [-142, -31], [-144, 54], [-204, 55], [-204, 74], [-197, 74], [-196, 86], [-237, 88], [-238, 119], [-227, 119], [-227, 132], [-238, 132], [-239, 166], [-214, 166], [-213, 197], [-203, 197], [-203, 222], [-196, 222], [-186, 193], [-171, 191], [-111, 200], [-100, 217], [-72, 202], [-14, 202], [-15, 209], [15, 209], [16, 225], [32, 225], [30, 342]], "23-26": [[31, 269], [68, 269], [68, 251], [103, 251], [121, 269], [148, 269], [147, 256], [177, 256], [177, 283], [203, 283], [203, 257], [190, 231], [84, 230], [81, 106], [50, 107], [49, 125], [9, 125], [6, 84], [-11, 84], [-11, 67], [109, 66], [105, 33], [-79, 34], [-77, -9], [120, -9], [120, -16], [91, -16], [91, -80], [91, -176], [-76, -175], [-78, -57], [-142, -58], [-141, 72], [-190, 73], [-191, 90], [-239, 89], [-240, 167], [-213, 166], [-212, 215], [-200, 215], [-183, 181], [-164, 193], [-95, 192], [-55, 207], [-51, 177], [-14, 176], [-10, 208], [16, 208], [32, 254], [31, 268]], "27-37": [[108, 64], [-141, 64], [-141, -30], [-77, -29], [-77, -176], [1, -176], [90, -176], [92, -7], [-77, -9], [-78, 32], [103, 34], [104, 41], [110, 41], [109, 64]]}, "center": {"1-6": [-109, 97], "7-13": [-66, 123], "14-22": [-87, 118], "23-26": [7, -92], "27-37": [7, -92]}}, -{"id": 5679, "name": "M_S - music_survivor", "description": "A small nod to the subreddit 'music_survivor', a community which goes through albums and ranks them by voting their least favorite songs out. \"M_S\" is a shorthand way to refer to the sub amongst its community.", "links": {"subreddit": ["music_survivor"]}, "path": {"209-231": [[-388, 366], [-388, 362], [-376, 362], [-374, 362], [-374, 366]], "232-258": [[-391, 368], [-391, 363], [-376, 364], [-377, 368]]}, "center": {"209-231": [-381, 364], "232-258": [-388, 366]}}, -{"id": 5680, "name": "A cow", "description": "Just a nice looking cow. \nCows are a common animal throughout Portugal, found from the North to South, including islands.", "links": {}, "path": {"154-258": [[494, 326], [517, 327], [515, 340], [495, 338]]}, "center": {"154-258": [506, 333]}}, -{"id": 5681, "name": "Devil May Cry", "description": "This is a collection of pixel art versions of the 4 main Devil May Cry characters. Vergil, V, Dante and Nero..", "links": {"subreddit": ["devilmaycry"]}, "path": {"250-258": [[887, -499], [915, -499], [915, -492], [911, -484], [911, -483], [910, -483], [911, -451], [887, -451], [887, -498]]}, "center": {"250-258": [899, -463]}}, +{"id": 5679, "name": "M_S - music_survivor", "description": "A small nod to the subreddit 'music_survivor', a community which goes through albums and ranks them by voting their least favorite songs out. \"M_S\" is a shorthand way to refer to the sub amongst its community.", "links": {"subreddit": ["music_survivor"]}, "path": {"209-231": [[-388, 366], [-388, 362], [-376, 362], [-374, 362], [-374, 366]], "232-258, T": [[-391, 368], [-391, 363], [-376, 364], [-377, 368]]}, "center": {"209-231": [-381, 364], "232-258, T": [-388, 366]}}, +{"id": 5680, "name": "A cow", "description": "Just a nice looking cow. \nCows are a common animal throughout Portugal, found from the North to South, including islands.", "links": {}, "path": {"154-258, T": [[494, 326], [517, 327], [515, 340], [495, 338]]}, "center": {"154-258, T": [506, 333]}}, +{"id": 5681, "name": "Devil May Cry", "description": "This is a collection of pixel art versions of the 4 main Devil May Cry characters. Vergil, V, Dante and Nero..", "links": {"subreddit": ["devilmaycry"]}, "path": {"250-258, T": [[887, -499], [915, -499], [915, -492], [911, -484], [911, -483], [910, -483], [911, -451], [887, -451], [887, -498]]}, "center": {"250-258, T": [899, -463]}}, {"id": 5682, "name": "Wilson", "description": "Wilson is the wooden gear mascot of the Wintergatan Youtube channel", "links": {"website": ["https://wintergatan.net", "https://www.youtube.com/@Wintergatan"], "subreddit": ["wintergatan"]}, "path": {"174-180": [[-1278, -310], [-1269, -310], [-1269, -302], [-1278, -302]]}, "center": {"174-180": [-1273, -306]}}, {"id": 5683, "name": "Mandarino", "description": "Oc de Silver_gin2808. Creado por el grupo de Discord Positividad.", "links": {"website": ["https://instagram.com/silver_gin2808?utm_source=qr&igshid=MzNlNGNkZWQ4Mg%3D%3D"]}, "path": {"190-209": [[-126, 706], [-124, 699], [-127, 701], [-127, 703], [-128, 704], [-128, 706], [-127, 707], [-125, 707], [-124, 706], [-124, 704], [-125, 703], [-124, 700], [-125, 699], [-126, 700]], "216-229": [[-129, 705], [-130, 705], [-128, 702], [-126, 702], [-125, 703], [-124, 704], [-124, 705], [-124, 706], [-125, 707], [-127, 707]]}, "center": {"190-209": [-127, 704], "216-229": [-127, 705]}}, -{"id": 5684, "name": "Luzu", "description": "LuzuVlogs youtuber, vloggler y streamer español. Considerado el \"Chayanne de Twitch\" o bien el \"padre de todos\". Arte representativa de sus personajes del QSMP, servidor del videojuego Minecraft, su mascota cerdo Manolo y mini emotes de su canal de Twitch. Arte realizado por su comunidad el #TeamLuzu.", "links": {"website": ["https://twitch.tv/luzu", "https://youtube.com/@luzugames", "https://twitter.com/LuzuGames?s=20"]}, "path": {"250-258": [[-867, 359], [-854, 359], [-854, 394], [-867, 394]]}, "center": {"250-258": [-860, 377]}}, +{"id": 5684, "name": "Luzu", "description": "LuzuVlogs youtuber, vloggler y streamer español. Considerado el \"Chayanne de Twitch\" o bien el \"padre de todos\". Arte representativa de sus personajes del QSMP, servidor del videojuego Minecraft, su mascota cerdo Manolo y mini emotes de su canal de Twitch. Arte realizado por su comunidad el #TeamLuzu.", "links": {"website": ["https://twitch.tv/luzu", "https://youtube.com/@luzugames", "https://twitter.com/LuzuGames?s=20"]}, "path": {"250-258, T": [[-867, 359], [-854, 359], [-854, 394], [-867, 394]]}, "center": {"250-258, T": [-860, 377]}}, {"id": 5685, "name": "Mini Aquino Dance", "description": "Mini Aquino dancing (Aquino is a spanish streamer from Peru) #AquinoMiCasita \n\n- Info: Natsu_XDD", "links": {"website": ["https://www.twitch.tv/aquino/about"], "discord": ["aquino"]}, "path": {"172": [[55, 886], [55, 910], [89, 910], [89, 885], [55, 885]]}, "center": {"172": [72, 898]}}, -{"id": 5686, "name": "Niagara Falls", "description": "Niagara Falls are three waterfalls on the border between Canada and the United States. They are the most powerful waterfalls in North America.\n\nThe falls are formed by the Niagara River, which flows between Lake Erie and Lake Ontario. The river drops 167 feet over the course of the falls.\n\nNiagara Falls is a popular tourist destination. Visitors can enjoy stunning views of the falls from various vantage points.", "links": {"website": ["https://www.niagarafallsstatepark.com/"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"250-258": [[943, 897], [943, 883], [928, 883], [929, 883], [929, 882], [930, 882], [930, 881], [931, 881], [931, 880], [935, 880], [935, 879], [936, 879], [936, 878], [937, 878], [937, 877], [938, 877], [938, 875], [940, 875], [940, 874], [943, 874], [943, 873], [946, 873], [946, 874], [948, 874], [948, 875], [949, 875], [949, 876], [951, 876], [951, 875], [952, 875], [952, 876], [957, 876], [957, 875], [958, 875], [958, 874], [961, 874], [961, 873], [969, 873], [969, 874], [970, 874], [970, 875], [973, 875], [973, 874], [974, 874], [974, 873], [980, 873], [980, 874], [982, 874], [982, 875], [983, 875], [983, 876], [985, 876], [985, 877], [987, 877], [987, 880], [989, 880], [989, 881], [991, 881], [991, 882], [992, 882], [992, 883], [993, 883], [993, 884], [993, 885], [994, 885], [994, 887], [996, 887], [996, 888], [997, 888], [997, 889], [999, 889], [999, 897]]}, "center": {"250-258": [964, 885]}}, +{"id": 5686, "name": "Niagara Falls", "description": "Niagara Falls are three waterfalls on the border between Canada and the United States. They are the most powerful waterfalls in North America.\n\nThe falls are formed by the Niagara River, which flows between Lake Erie and Lake Ontario. The river drops 167 feet over the course of the falls.\n\nNiagara Falls is a popular tourist destination. Visitors can enjoy stunning views of the falls from various vantage points.", "links": {"website": ["https://www.niagarafallsstatepark.com/"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"250-258, T": [[943, 897], [943, 883], [928, 883], [929, 883], [929, 882], [930, 882], [930, 881], [931, 881], [931, 880], [935, 880], [935, 879], [936, 879], [936, 878], [937, 878], [937, 877], [938, 877], [938, 875], [940, 875], [940, 874], [943, 874], [943, 873], [946, 873], [946, 874], [948, 874], [948, 875], [949, 875], [949, 876], [951, 876], [951, 875], [952, 875], [952, 876], [957, 876], [957, 875], [958, 875], [958, 874], [961, 874], [961, 873], [969, 873], [969, 874], [970, 874], [970, 875], [973, 875], [973, 874], [974, 874], [974, 873], [980, 873], [980, 874], [982, 874], [982, 875], [983, 875], [983, 876], [985, 876], [985, 877], [987, 877], [987, 880], [989, 880], [989, 881], [991, 881], [991, 882], [992, 882], [992, 883], [993, 883], [993, 884], [993, 885], [994, 885], [994, 887], [996, 887], [996, 888], [997, 888], [997, 889], [999, 889], [999, 897]]}, "center": {"250-258, T": [964, 885]}}, {"id": 5687, "name": "Mandarino Chileno", "description": "Mandarino infiltrado durante el periodo de invasión de bots a la bandera chilena. Oc de silver_gin2808. Creado por el grupo de Discord Positividad", "links": {"website": ["https://instagram.com/silver_gin2808?utm_source=qr&igshid=MzNlNGNkZWQ4Mg%3D%3D"]}, "path": {"205": [[-1057, -820], [-1061, -815], [-1060, -818], [-1062, -815], [-1062, -814], [-1061, -812], [-1060, -811], [-1058, -811], [-1057, -812], [-1056, -815], [-1059, -817], [-1056, -813], [-1059, -817], [-1059, -819]], "217-224": [[-947, -851], [-946, -851], [-949, -849], [-948, -848], [-949, -847], [-950, -846], [-950, -845], [-949, -844], [-949, -843], [-947, -843], [-945, -844], [-945, -846], [-947, -847], [-946, -849], [-945, -849], [-946, -850], [-947, -849], [-946, -850]], "229-245": [[-949, -847], [-950, -846], [-950, -845], [-950, -844], [-949, -843], [-947, -843], [-946, -844], [-946, -846], [-947, -847]]}, "center": {"205": [-1059, -813], "217-224": [-947, -845], "229-245": [-948, -845]}}, {"id": 5688, "name": "Mandarino Secreto", "description": "Fue el tercero de los 3 mandarinos creados en el map. Oc de silver_gin2808. Creado por el grupo de Discord Positividad.", "links": {"website": ["https://instagram.com/silver_gin2808?utm_source=qr&igshid=MzNlNGNkZWQ4Mg%3D%3D"]}, "path": {"215-233": [[-869, -956], [-870, -956], [-871, -955], [-872, -954], [-871, -953], [-872, -952], [-873, -951], [-873, -950], [-873, -949], [-872, -948], [-871, -948], [-870, -948], [-869, -949], [-870, -954], [-869, -951], [-870, -952], [-870, -954], [-869, -950], [-870, -954], [-869, -950], [-869, -954]]}, "center": {"215-233": [-871, -950]}}, -{"id": 5689, "name": "Standing Stones", "description": "Another Iconic Symbol of Orkney is the various and mysterious standing stones located around the islands. Most of these predate other British stone monuments like Stonehenge, their significance is still unknown.", "links": {"subreddit": ["orkney", "nordics"]}, "path": {"250-258": [[-163, -280], [-163, -284], [-160, -286], [-150, -281], [-150, -279], [-163, -279]]}, "center": {"250-258": [-160, -282]}}, -{"id": 5690, "name": "Caralho", "description": "Caralho (Crow's Nest) were wooden baskets placed atop the main mast, it was known as being the worst place on a vessel, due to rain, heat and shaking, which often lead to seasickness.\n\nThe captain would instruct the sailor \"Vai para o caralho\" (Go to the crow's nest) and from there devoleped the now widely used expression \"Vai pró caralho\".\n\nNow the word is used to describe a bad place, but is used in a wide variety of contexts.", "links": {"website": ["https://en.wikipedia.org/wiki/Caralho#Etymology"]}, "path": {"67-258": [[534, 315], [544, 314], [543, 321], [534, 320]]}, "center": {"67-258": [539, 318]}}, -{"id": 5691, "name": "Spider-Man / Peter Parker", "description": "The original Spider-Man, Peter Parker is a beloved and iconic superhero who has garnered a loyal fan following since 1962, largely by being the first superhero with every day teenager problems. Over 60 years later, Spider-Man remains a pop culture phenomenon. This tribute to Spidey was lovingly created by Spider-Man Place in collaboration with r/vzla.\n\nSpider-Man Place would like to dedicate a special thank you to our friends from Venezuela for embracing our project and sharing in our love for the webhead.", "links": {"discord": ["PJrChzEk"]}, "path": {"178-258": [[-962, 313], [-962, 314], [-967, 311], [-967, 303], [-964, 299], [-968, 296], [-971, 292], [-962, 285], [-963, 281], [-968, 275], [-951, 273], [-959, 282], [-959, 285], [-951, 292], [-954, 296], [-956, 301], [-955, 303], [-954, 312], [-961, 315]]}, "center": {"178-258": [-961, 293]}}, -{"id": 5692, "name": "Dxfita", "description": "Luego de la caída de la bandera de Kiribati, la batalla continuó para dejar huella en el lienzo final uwu", "links": {}, "path": {"223-258": [[-592, -805], [-582, -805], [-582, -792], [-593, -792], [-593, -805]]}, "center": {"223-258": [-587, -798]}}, -{"id": 5693, "name": "Chiyo Chichi", "description": "Chiyo Chichi is the father of Chiyo Mihama, the youthful main character of \"Azumanga Daioh\". This pose is from the iconic scene where he appears in Ayumu \"Osaka' Kasuga's dream and says \"Hello everynyan!\".", "links": {"subreddit": ["azudaioh"]}, "path": {"250-258": [[-1175, -282], [-1175, -284], [-1177, -284], [-1177, -286], [-1174, -286], [-1174, -293], [-1173, -293], [-1173, -292], [-1172, -292], [-1172, -291], [-1168, -291], [-1168, -292], [-1167, -292], [-1167, -293], [-1167, -292], [-1166, -292], [-1166, -286], [-1163, -286], [-1163, -285], [-1162, -285], [-1162, -284], [-1161, -284], [-1161, -282]]}, "center": {"250-258": [-1170, -286]}}, +{"id": 5689, "name": "Standing Stones", "description": "Another Iconic Symbol of Orkney is the various and mysterious standing stones located around the islands. Most of these predate other British stone monuments like Stonehenge, their significance is still unknown.", "links": {"subreddit": ["orkney", "nordics"]}, "path": {"250-258, T": [[-163, -280], [-163, -284], [-160, -286], [-150, -281], [-150, -279], [-163, -279]]}, "center": {"250-258, T": [-160, -282]}}, +{"id": 5690, "name": "Caralho", "description": "Caralho (Crow's Nest) were wooden baskets placed atop the main mast, it was known as being the worst place on a vessel, due to rain, heat and shaking, which often lead to seasickness.\n\nThe captain would instruct the sailor \"Vai para o caralho\" (Go to the crow's nest) and from there devoleped the now widely used expression \"Vai pró caralho\".\n\nNow the word is used to describe a bad place, but is used in a wide variety of contexts.", "links": {"website": ["https://en.wikipedia.org/wiki/Caralho#Etymology"]}, "path": {"67-258, T": [[534, 315], [544, 314], [543, 321], [534, 320]]}, "center": {"67-258, T": [539, 318]}}, +{"id": 5691, "name": "Spider-Man / Peter Parker", "description": "The original Spider-Man, Peter Parker is a beloved and iconic superhero who has garnered a loyal fan following since 1962, largely by being the first superhero with every day teenager problems. Over 60 years later, Spider-Man remains a pop culture phenomenon. This tribute to Spidey was lovingly created by Spider-Man Place in collaboration with r/vzla.\n\nSpider-Man Place would like to dedicate a special thank you to our friends from Venezuela for embracing our project and sharing in our love for the webhead.", "links": {"discord": ["PJrChzEk"]}, "path": {"178-258, T": [[-962, 313], [-962, 314], [-967, 311], [-967, 303], [-964, 299], [-968, 296], [-971, 292], [-962, 285], [-963, 281], [-968, 275], [-951, 273], [-959, 282], [-959, 285], [-951, 292], [-954, 296], [-956, 301], [-955, 303], [-954, 312], [-961, 315]]}, "center": {"178-258, T": [-961, 293]}}, +{"id": 5692, "name": "Dxfita", "description": "Luego de la caída de la bandera de Kiribati, la batalla continuó para dejar huella en el lienzo final uwu", "links": {}, "path": {"223-258, T": [[-592, -805], [-582, -805], [-582, -792], [-593, -792], [-593, -805]]}, "center": {"223-258, T": [-587, -798]}}, +{"id": 5693, "name": "Chiyo Chichi", "description": "Chiyo Chichi is the father of Chiyo Mihama, the youthful main character of \"Azumanga Daioh\". This pose is from the iconic scene where he appears in Ayumu \"Osaka' Kasuga's dream and says \"Hello everynyan!\".", "links": {"subreddit": ["azudaioh"]}, "path": {"250-258, T": [[-1175, -282], [-1175, -284], [-1177, -284], [-1177, -286], [-1174, -286], [-1174, -293], [-1173, -293], [-1173, -292], [-1172, -292], [-1172, -291], [-1168, -291], [-1168, -292], [-1167, -292], [-1167, -293], [-1167, -292], [-1166, -292], [-1166, -286], [-1163, -286], [-1163, -285], [-1162, -285], [-1162, -284], [-1161, -284], [-1161, -282]]}, "center": {"250-258, T": [-1170, -286]}}, {"id": 5694, "name": "Cocooo", "description": "Símbolo del grupo del grupo de Discord Positividad. Solo es un Coco.", "links": {}, "path": {"170-240": [[-138, 651], [-137, 651], [-137, 650], [-136, 649], [-134, 649], [-133, 651], [-132, 651], [-131, 652], [-131, 654], [-131, 655], [-132, 656], [-133, 657], [-134, 658], [-135, 659], [-137, 659], [-138, 659], [-139, 658], [-140, 657], [-141, 656], [-141, 654]]}, "center": {"170-240": [-136, 655]}}, -{"id": 5695, "name": "Chika Fujiwara", "description": "Chika Fujiwara from the anime Kaguya-sama: Love is War", "links": {"website": ["https://kaguyasama-wa-kokurasetai.fandom.com/wiki/Chika_Fujiwara"], "subreddit": ["ChikaFujiwara"]}, "path": {"250-258": [[1268, 445], [1268, 461], [1283, 460], [1284, 445]]}, "center": {"250-258": [1276, 453]}}, -{"id": 5696, "name": "Mysta Rias", "description": "\"A Detective from the past known for his eccentric nature.\n\nAs a natural-born genius, he solved countless mysteries with his keen deduction skills.\"\n\n...says his official bio on the official website. (We don't believe that, not one bit, thank you very much.)\n\nMysta Rias (ミスタ・リアス) is, and will be \"was\", as of the writing of this passage, a male English Virtual YouTuber affiliated with NIJISANJI EN's fourth wave \"Luxiem,\" alongside Luca Kaneshiro, Shu Yamino, Ike Eveland, and Vox Akuma.\n\nHis fanbase is named the \"Mystakes\", who organized this mural for his incoming graduation on August 27, 2023. He made his mark as one of the most popular Nijisanji EN VTubers, raking up to 1.12 million subscribers, releasing an original song \"DETECT MY LOVE\" (prod. Camellia) hitting 1 million views in a single day, and has even more achievements and talents (which he claims isn't great and I would like to wholeheartedly refute said statements).\n\nWe are gonna miss this lovable fox- er... greyhound uh-... doberman, whatever he might be!", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/mysta-rias", "https://www.youtube.com/channel/UCIM92Ok_spNKLVB5TsgwseQ", "https://twitter.com/Mysta_Rias"]}, "path": {"210-258": [[1167, -820], [1163, -823], [1171, -827], [1172, -828], [1170, -830], [1170, -832], [1169, -833], [1169, -836], [1168, -836], [1167, -835], [1166, -836], [1166, -837], [1167, -838], [1165, -840], [1168, -844], [1164, -847], [1164, -851], [1164, -852], [1165, -852], [1165, -853], [1166, -853], [1166, -854], [1167, -855], [1168, -856], [1168, -857], [1168, -860], [1167, -860], [1166, -862], [1175, -862], [1176, -861], [1178, -861], [1179, -862], [1185, -862], [1186, -861], [1187, -861], [1188, -862], [1195, -862], [1195, -860], [1196, -860], [1196, -856], [1197, -854], [1201, -851], [1197, -848], [1199, -847], [1198, -846], [1202, -844], [1200, -842], [1199, -842], [1197, -841], [1199, -840], [1201, -839], [1200, -839], [1199, -838], [1198, -839], [1197, -839], [1197, -837], [1198, -835], [1199, -834], [1200, -834], [1198, -834], [1198, -833], [1197, -833], [1197, -834], [1196, -834], [1195, -835], [1194, -835], [1194, -829], [1193, -829], [1193, -828], [1193, -827], [1198, -827], [1198, -826], [1199, -826], [1199, -820]]}, "center": {"210-258": [1183, -845]}}, -{"id": 5697, "name": "Kumoko", "description": "\"Kumoko\" is the nameless main protagonist of So I'm a Spider, So What?", "links": {"subreddit": ["KumoDesu"]}, "path": {"178-258": [[-1143, 256], [-1140, 256], [-1136, 260], [-1137, 268], [-1141, 276], [-1153, 276], [-1156, 269], [-1155, 265], [-1155, 261], [-1153, 260], [-1152, 263], [-1150, 260], [-1146, 256], [-1144, 256], [-1145, 256]]}, "center": {"178-258": [-1146, 268]}}, -{"id": 5698, "name": "E40 sandwich", "description": "A reference to Belgian comedy troupe Neveneffecten and their eponymous mockumentary series. \n\nSeason 1 episode \"The source of the E40\" features a group of explorers trying to find the wellspring of the European Route E40 (which they treat as a river rather than a highway), and the revelation that the triangular prepackaged sandwiches sold at gas stations are prepared by people with Down's syndrome. \n\nThis episode coined the rather offensive term \"mongolendriehoeken\" (lit. \"Mongoloid triangles\") for said sandwiches.", "links": {"website": ["https://en.wikipedia.org/wiki/Neveneffecten", "https://www.encyclo.nl/begrip/mongolendriehoek"], "subreddit": ["belgium"]}, "path": {"247-258": [[822, 563], [822, 585], [843, 585], [843, 563]]}, "center": {"247-258": [833, 574]}}, +{"id": 5695, "name": "Chika Fujiwara", "description": "Chika Fujiwara from the anime Kaguya-sama: Love is War", "links": {"website": ["https://kaguyasama-wa-kokurasetai.fandom.com/wiki/Chika_Fujiwara"], "subreddit": ["ChikaFujiwara"]}, "path": {"250-258, T": [[1268, 445], [1268, 461], [1283, 460], [1284, 445]]}, "center": {"250-258, T": [1276, 453]}}, +{"id": 5696, "name": "Mysta Rias", "description": "\"A Detective from the past known for his eccentric nature.\n\nAs a natural-born genius, he solved countless mysteries with his keen deduction skills.\"\n\n...says his official bio on the official website. (We don't believe that, not one bit, thank you very much.)\n\nMysta Rias (ミスタ・リアス) is, and will be \"was\", as of the writing of this passage, a male English Virtual YouTuber affiliated with NIJISANJI EN's fourth wave \"Luxiem,\" alongside Luca Kaneshiro, Shu Yamino, Ike Eveland, and Vox Akuma.\n\nHis fanbase is named the \"Mystakes\", who organized this mural for his incoming graduation on August 27, 2023. He made his mark as one of the most popular Nijisanji EN VTubers, raking up to 1.12 million subscribers, releasing an original song \"DETECT MY LOVE\" (prod. Camellia) hitting 1 million views in a single day, and has even more achievements and talents (which he claims isn't great and I would like to wholeheartedly refute said statements).\n\nWe are gonna miss this lovable fox- er... greyhound uh-... doberman, whatever he might be!", "links": {"website": ["https://www.nijisanji.jp/en/talents/l/mysta-rias", "https://www.youtube.com/channel/UCIM92Ok_spNKLVB5TsgwseQ", "https://twitter.com/Mysta_Rias"]}, "path": {"210-258, T": [[1167, -820], [1163, -823], [1171, -827], [1172, -828], [1170, -830], [1170, -832], [1169, -833], [1169, -836], [1168, -836], [1167, -835], [1166, -836], [1166, -837], [1167, -838], [1165, -840], [1168, -844], [1164, -847], [1164, -851], [1164, -852], [1165, -852], [1165, -853], [1166, -853], [1166, -854], [1167, -855], [1168, -856], [1168, -857], [1168, -860], [1167, -860], [1166, -862], [1175, -862], [1176, -861], [1178, -861], [1179, -862], [1185, -862], [1186, -861], [1187, -861], [1188, -862], [1195, -862], [1195, -860], [1196, -860], [1196, -856], [1197, -854], [1201, -851], [1197, -848], [1199, -847], [1198, -846], [1202, -844], [1200, -842], [1199, -842], [1197, -841], [1199, -840], [1201, -839], [1200, -839], [1199, -838], [1198, -839], [1197, -839], [1197, -837], [1198, -835], [1199, -834], [1200, -834], [1198, -834], [1198, -833], [1197, -833], [1197, -834], [1196, -834], [1195, -835], [1194, -835], [1194, -829], [1193, -829], [1193, -828], [1193, -827], [1198, -827], [1198, -826], [1199, -826], [1199, -820]]}, "center": {"210-258, T": [1183, -845]}}, +{"id": 5697, "name": "Kumoko", "description": "\"Kumoko\" is the nameless main protagonist of So I'm a Spider, So What?", "links": {"subreddit": ["KumoDesu"]}, "path": {"178-258, T": [[-1143, 256], [-1140, 256], [-1136, 260], [-1137, 268], [-1141, 276], [-1153, 276], [-1156, 269], [-1155, 265], [-1155, 261], [-1153, 260], [-1152, 263], [-1150, 260], [-1146, 256], [-1144, 256], [-1145, 256]]}, "center": {"178-258, T": [-1146, 268]}}, +{"id": 5698, "name": "E40 sandwich", "description": "A reference to Belgian comedy troupe Neveneffecten and their eponymous mockumentary series. \n\nSeason 1 episode \"The source of the E40\" features a group of explorers trying to find the wellspring of the European Route E40 (which they treat as a river rather than a highway), and the revelation that the triangular prepackaged sandwiches sold at gas stations are prepared by people with Down's syndrome. \n\nThis episode coined the rather offensive term \"mongolendriehoeken\" (lit. \"Mongoloid triangles\") for said sandwiches.", "links": {"website": ["https://en.wikipedia.org/wiki/Neveneffecten", "https://www.encyclo.nl/begrip/mongolendriehoek"], "subreddit": ["belgium"]}, "path": {"247-258, T": [[822, 563], [822, 585], [843, 585], [843, 563]]}, "center": {"247-258, T": [833, 574]}}, {"id": 5699, "name": "Pink Spade", "description": "Just a Pink Spade slowly got destroyed at the end :(", "links": {}, "path": {"246-248": [[-1371, 148], [-1363, 148], [-1363, 142], [-1368, 136], [-1373, 142], [-1373, 145], [-1371, 146], [-1371, 148], [-1365, 148], [-1365, 146], [-1363, 146], [-1364, 146]]}, "center": {"246-248": [-1368, 143]}}, -{"id": 5700, "name": "Dmytro Kotsiubailo", "description": "Dmytro Ivanovych \"Da Vinci\" Kotsiubailo (Ukrainian: Дмитро Іванович \"Да Вінчі\" Коцюбайло; 1 November 1995 – 7 March 2023) was a Ukrainian volunteer, soldier, junior lieutenant, a commander of the 1st Mechanized Battalion of the Armed Forces of Ukraine. He was a participant in the Russo-Ukrainian War", "links": {"website": ["https://en.wikipedia.org/wiki/Dmytro_Kotsiubailo"], "subreddit": ["ukraine", "placeukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"162-258": [[-79, -77], [-79, -78], [-78, -79], [-77, -80], [-76, -81], [-76, -82], [-75, -83], [-75, -86], [-74, -87], [-73, -87], [-73, -88], [-72, -88], [-71, -89], [-71, -105], [-73, -106], [-74, -108], [-74, -112], [-75, -112], [-75, -117], [-74, -120], [-73, -120], [-73, -125], [-72, -126], [-71, -126], [-71, -128], [-70, -128], [-69, -129], [-68, -130], [-67, -131], [-66, -132], [-63, -132], [-63, -133], [-56, -133], [-53, -132], [-51, -131], [-50, -130], [-50, -129], [-47, -129], [-47, -128], [-46, -128], [-46, -126], [-44, -126], [-44, -124], [-43, -124], [-43, -123], [-42, -123], [-42, -120], [-41, -120], [-41, -115], [-40, -115], [-40, -111], [-39, -111], [-39, -101], [-42, -101], [-42, -100], [-43, -99], [-42, -98], [-42, -94], [-43, -93], [-43, -91], [-42, -91], [-42, -90], [-41, -90], [-41, -89], [-42, -89], [-42, -88], [-43, -88], [-43, -86], [-44, -86], [-44, -77]]}, "center": {"162-258": [-57, -114]}}, -{"id": 5701, "name": "Cluncherp Icon", "description": "Cluncherp is a YouTube content creator that plays the game Geometry Dash. This icon was created after a suggestion by his friend A.M. comics and only made by the two friends.", "links": {"website": ["https://www.youtube.com/@cluncherp5891"]}, "path": {"55-258": [[-114, 380], [-109, 380], [-109, 385], [-114, 385]]}, "center": {"55-258": [-111, 383]}}, -{"id": 5702, "name": "MLP Ponies leaning out of the French Flag", "description": "Twilight Sparkle, Oktavia Melody, DJ Pon-3 and Fluttershy from My Little Pony: Friendship is Magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Twilight_Sparkle", "https://mlp.fandom.com/wiki/Octavia_Melody", "https://mlp.fandom.com/wiki/DJ_Pon-3", "https://mlp.fandom.com/wiki/Fluttershy"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"182-258": [[-1135, 265], [-1135, 273], [-1028, 272], [-1028, 265], [-1137, 266], [-1137, 273]]}, "center": {"182-258": [-1082, 269]}}, +{"id": 5700, "name": "Dmytro Kotsiubailo", "description": "Dmytro Ivanovych \"Da Vinci\" Kotsiubailo (Ukrainian: Дмитро Іванович \"Да Вінчі\" Коцюбайло; 1 November 1995 – 7 March 2023) was a Ukrainian volunteer, soldier, junior lieutenant, a commander of the 1st Mechanized Battalion of the Armed Forces of Ukraine. He was a participant in the Russo-Ukrainian War", "links": {"website": ["https://en.wikipedia.org/wiki/Dmytro_Kotsiubailo"], "subreddit": ["ukraine", "placeukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"162-258, T": [[-79, -77], [-79, -78], [-78, -79], [-77, -80], [-76, -81], [-76, -82], [-75, -83], [-75, -86], [-74, -87], [-73, -87], [-73, -88], [-72, -88], [-71, -89], [-71, -105], [-73, -106], [-74, -108], [-74, -112], [-75, -112], [-75, -117], [-74, -120], [-73, -120], [-73, -125], [-72, -126], [-71, -126], [-71, -128], [-70, -128], [-69, -129], [-68, -130], [-67, -131], [-66, -132], [-63, -132], [-63, -133], [-56, -133], [-53, -132], [-51, -131], [-50, -130], [-50, -129], [-47, -129], [-47, -128], [-46, -128], [-46, -126], [-44, -126], [-44, -124], [-43, -124], [-43, -123], [-42, -123], [-42, -120], [-41, -120], [-41, -115], [-40, -115], [-40, -111], [-39, -111], [-39, -101], [-42, -101], [-42, -100], [-43, -99], [-42, -98], [-42, -94], [-43, -93], [-43, -91], [-42, -91], [-42, -90], [-41, -90], [-41, -89], [-42, -89], [-42, -88], [-43, -88], [-43, -86], [-44, -86], [-44, -77]]}, "center": {"162-258, T": [-57, -114]}}, +{"id": 5701, "name": "Cluncherp Icon", "description": "Cluncherp is a YouTube content creator that plays the game Geometry Dash. This icon was created after a suggestion by his friend A.M. comics and only made by the two friends.", "links": {"website": ["https://www.youtube.com/@cluncherp5891"]}, "path": {"55-258, T": [[-114, 380], [-109, 380], [-109, 385], [-114, 385]]}, "center": {"55-258, T": [-111, 383]}}, +{"id": 5702, "name": "MLP Ponies leaning out of the French Flag", "description": "Twilight Sparkle, Oktavia Melody, DJ Pon-3 and Fluttershy from My Little Pony: Friendship is Magic.", "links": {"website": ["https://mlp.fandom.com/wiki/Twilight_Sparkle", "https://mlp.fandom.com/wiki/Octavia_Melody", "https://mlp.fandom.com/wiki/DJ_Pon-3", "https://mlp.fandom.com/wiki/Fluttershy"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"182-258, T": [[-1135, 265], [-1135, 273], [-1028, 272], [-1028, 265], [-1137, 266], [-1137, 273]]}, "center": {"182-258, T": [-1082, 269]}}, {"id": 5703, "name": "\"Democracy\" in Hebrew", "description": "The word \"Democracy\" in Hebrew, a symbol of the 2023 Israeli judicial reform protests which happened during the r/place event.", "links": {"website": ["https://en.wikipedia.org/wiki/2023_Israeli_judicial_reform_protests"]}, "path": {"4": [[383, 124], [324, 124], [324, 135], [382, 135], [383, 125]]}, "center": {"4": [354, 130]}}, -{"id": 5704, "name": "AS Saint-Étienne", "description": "AS Saint-Étienne, commonly known as A.S.S.E. is a professional football club based in Saint-Étienne in France. Founded in 1933, it is historically one of the most successful clubs in French football having won ten Ligue 1 titles. The club currently competes in Ligue 2, the second division of French football.", "links": {"website": ["https://en.m.wikipedia.org/wiki/AS_Saint-%C3%89tienne#p-lang"]}, "path": {"100-258": [[-544, 171], [-544, 176], [-544, 184], [-501, 184], [-501, 171]]}, "center": {"100-258": [-522, 178]}}, -{"id": 5705, "name": "Rin (My Little Pony oc)", "description": "Rin is an original character(oc) created by u/mothmans_cigar (moth) in 2012! Rin joined the canvas thanks to a small team from the mlp r/place discord who helped build her. \n\nRin's lore was that she was an old childhood oc posted on Moth's DeviantArt page named AskPonyRin. Moth recently redesigned Rin for r/place, and to wipe off that 2012 cringe dust. They also wanted to reconnect with the character to commemorate rejoining the fandom and fighting for their factions in 2023 place. Thanks to everyone who helped build her! /)<3(\\\n\nFun fact: Rin's original design was a very saturated yellow and light yellow due to the preset colors on MSpaint. She was also originally drawn as an alicorn, but now she's currently a Pegasus.", "links": {"website": ["https://www.deviantart.com/askponyrin/art/oc-an-creepypasta-what-my-cutie-mark-is-telling-me-372404383"], "subreddit": ["mylittlepony"], "discord": ["bronyplace"]}, "path": {"250-258": [[664, 852], [665, 852], [665, 846], [665, 845], [679, 844], [677, 852]]}, "center": {"250-258": [672, 848]}}, -{"id": 5706, "name": "Flag of Argentina", "description": "A small flag of the large country Argentina, located in South America", "links": {}, "path": {"250-258": [[1446, 113], [1461, 114], [1461, 121], [1446, 121]]}, "center": {"250-258": [1453, 117]}}, -{"id": 5707, "name": "Incomplete Mozambique Flag", "description": "A last attempt from r/southafrica to get more of it's neighbours represented on the Canvas before the white out. Having moved the other flags their goal was halted by the grey out before it was completed.", "links": {"website": ["https://en.wikipedia.org/wiki/Mozambique"], "subreddit": ["southafrica"]}, "path": {"250-258": [[-1347, -654], [-1347, -660], [-1340, -660], [-1340, -654]]}, "center": {"250-258": [-1343, -657]}}, -{"id": 5708, "name": "Cliff Burton", "description": "Clifford Lee \"Cliff\" Burton was the second bassist for American metal band Metallica, starting in 1982. He was known for his exceptional skills in composing and bass playing, such as the intro of \"For Whom the Bell Tolls\", and \"(Anesthesia) - Pulling Teeth\". He tragically died in a bus accident while the band was touring in Sweden in 1986. \"To Live Is to Die\" was a tribute song for him by his bandmates, with Burton receiving credits for some of the bass lines and lyrics. It was released as part of Metallica's fourth album \"...And Justice for All\" in 1988.", "links": {}, "path": {"250-258": [[-946, -247], [-938, -253], [-883, -253], [-883, -250], [-903, -249], [-905, -252], [-925, -252], [-927, -250], [-941, -249], [-942, -247]]}, "center": {"250-258": [-902, -251]}}, -{"id": 5709, "name": "Shulk", "description": "Shulk is a fictional character and protagonist of Monolith Soft's 2010 role-playing video game Xenoblade Chronicles, part of the Xenoblade Chronicles series of video games.\n\nIt started thanks to the Spanish-American discord group \"Legión Míope\" and was completed and defended with the help of the Xenoblade community.", "links": {"subreddit": ["Xenoblade_Chronicles"], "discord": ["cSGbyn4f"]}, "path": {"250-258": [[1341, -966], [1376, -964], [1374, -942], [1352, -946]]}, "center": {"250-258": [1364, -954]}}, +{"id": 5704, "name": "AS Saint-Étienne", "description": "AS Saint-Étienne, commonly known as A.S.S.E. is a professional football club based in Saint-Étienne in France. Founded in 1933, it is historically one of the most successful clubs in French football having won ten Ligue 1 titles. The club currently competes in Ligue 2, the second division of French football.", "links": {"website": ["https://en.m.wikipedia.org/wiki/AS_Saint-%C3%89tienne#p-lang"]}, "path": {"100-258, T": [[-544, 171], [-544, 176], [-544, 184], [-501, 184], [-501, 171]]}, "center": {"100-258, T": [-522, 178]}}, +{"id": 5705, "name": "Rin (My Little Pony oc)", "description": "Rin is an original character(oc) created by u/mothmans_cigar (moth) in 2012! Rin joined the canvas thanks to a small team from the mlp r/place discord who helped build her. \n\nRin's lore was that she was an old childhood oc posted on Moth's DeviantArt page named AskPonyRin. Moth recently redesigned Rin for r/place, and to wipe off that 2012 cringe dust. They also wanted to reconnect with the character to commemorate rejoining the fandom and fighting for their factions in 2023 place. Thanks to everyone who helped build her! /)<3(\\\n\nFun fact: Rin's original design was a very saturated yellow and light yellow due to the preset colors on MSpaint. She was also originally drawn as an alicorn, but now she's currently a Pegasus.", "links": {"website": ["https://www.deviantart.com/askponyrin/art/oc-an-creepypasta-what-my-cutie-mark-is-telling-me-372404383"], "subreddit": ["mylittlepony"], "discord": ["bronyplace"]}, "path": {"250-258, T": [[664, 852], [665, 852], [665, 846], [665, 845], [679, 844], [677, 852]]}, "center": {"250-258, T": [672, 848]}}, +{"id": 5706, "name": "Flag of Argentina", "description": "A small flag of the large country Argentina, located in South America", "links": {}, "path": {"250-258, T": [[1446, 113], [1461, 114], [1461, 121], [1446, 121]]}, "center": {"250-258, T": [1453, 117]}}, +{"id": 5707, "name": "Incomplete Mozambique Flag", "description": "A last attempt from r/southafrica to get more of it's neighbours represented on the Canvas before the white out. Having moved the other flags their goal was halted by the grey out before it was completed.", "links": {"website": ["https://en.wikipedia.org/wiki/Mozambique"], "subreddit": ["southafrica"]}, "path": {"250-258, T": [[-1347, -654], [-1347, -660], [-1340, -660], [-1340, -654]]}, "center": {"250-258, T": [-1343, -657]}}, +{"id": 5708, "name": "Cliff Burton", "description": "Clifford Lee \"Cliff\" Burton was the second bassist for American metal band Metallica, starting in 1982. He was known for his exceptional skills in composing and bass playing, such as the intro of \"For Whom the Bell Tolls\", and \"(Anesthesia) - Pulling Teeth\". He tragically died in a bus accident while the band was touring in Sweden in 1986. \"To Live Is to Die\" was a tribute song for him by his bandmates, with Burton receiving credits for some of the bass lines and lyrics. It was released as part of Metallica's fourth album \"...And Justice for All\" in 1988.", "links": {}, "path": {"250-258, T": [[-946, -247], [-938, -253], [-883, -253], [-883, -250], [-903, -249], [-905, -252], [-925, -252], [-927, -250], [-941, -249], [-942, -247]]}, "center": {"250-258, T": [-902, -251]}}, +{"id": 5709, "name": "Shulk", "description": "Shulk is a fictional character and protagonist of Monolith Soft's 2010 role-playing video game Xenoblade Chronicles, part of the Xenoblade Chronicles series of video games.\n\nIt started thanks to the Spanish-American discord group \"Legión Míope\" and was completed and defended with the help of the Xenoblade community.", "links": {"subreddit": ["Xenoblade_Chronicles"], "discord": ["cSGbyn4f"]}, "path": {"250-258, T": [[1341, -966], [1376, -964], [1374, -942], [1352, -946]]}, "center": {"250-258, T": [1364, -954]}}, {"id": 5710, "name": "Patriarchate of Peć", "description": "Patriarchate of Peć ( Pećka Patrijaršija) or the Patriarchal Monastery of Peć, is a medieval Serbian Orthodox monastery located near the city of Peć. Built in the 13th century, it became the residence of Serbian Archbishops. It was expanded during the 14th century, and in 1346, when the Serbian Patriarchate of Peć was created, the Monastery became the seat of Serbian Patriarchs. The monastery complex consists of several churches, and during medieval and early modern times it was also used as mausoleum of Serbian archbishops and patriarchs. Since 2006, it is part of the \"Medieval Monuments in Kosovo\", a combined World Heritage Site along with three other monuments of the Serbian Orthodox Church.", "links": {"website": ["https://sr.wikipedia.org/wiki/Пећка_патријаршија", "https://en.wikipedia.org/wiki/Patriarchate_of_Peć_(monastery)"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"219": [[-769, 258], [-769, 277], [-727, 277], [-728, 257], [-769, 257], [-769, 278], [-727, 278], [-727, 257], [-769, 257]]}, "center": {"219": [-728, 278]}}, {"id": 5711, "name": "Hello Internet Episode #137", "description": "Private joke of the \"Hello Internet\" podcast community. Number 137 represents the hope for the 137th episode of the podcast to be released after the 3-year HI-atus.", "links": {"website": ["http://www.hellointernet.fm"], "subreddit": ["HelloInternet"]}, "path": {"251": [[-595, 971], [-595, 979], [-583, 979], [-583, 972], [-583, 971]]}, "center": {"251": [-589, 975]}}, -{"id": 5712, "name": "R2-D2", "description": "R2-D2 is a fictional robot character in the Star Wars franchise created by George Lucas. He has appeared in ten of the eleven theatrical Star Wars films to date. At various points throughout the course of the films, R2, an astromech droid, is a friend to C-3PO, Padmé Amidala, Anakin Skywalker, Leia Organa, Luke Skywalker, and Obi-Wan Kenobi. R2-D2 and his companion C-3PO are the only characters to appear in every theatrical Star Wars film, with the exception of Solo: A Star Wars Story (2018).", "links": {"website": ["https://starwars.fandom.com/wiki/R2-D2"], "subreddit": ["StarWars"]}, "path": {"210-258": [[1150, -618], [1150, -627], [1152, -628], [1156, -634], [1163, -633], [1167, -627], [1167, -615], [1167, -612], [1162, -614], [1153, -615], [1153, -613], [1149, -612]]}, "center": {"210-258": [1159, -623]}}, -{"id": 5713, "name": "Minecraft Fox", "description": "A fox is a passive mob that spawns in taigas, old growth taigas, snowy taigas and mountain groves. There are two variants and this is the red fox version.", "links": {"website": ["https://minecraft.fandom.com/wiki/Fox"], "subreddit": ["Minecraft"]}, "path": {"250-258": [[-1206, 9], [-1206, 0], [-1203, 0], [-1197, 0], [-1197, 9]]}, "center": {"250-258": [-1201, 5]}}, -{"id": 5714, "name": "A question mark", "description": "A question mark in a box, no more, no less.", "links": {"website": ["https://en.wikipedia.org/wiki/Question_mark"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"238-258": [[369, -510], [377, -510], [377, -500], [369, -500]]}, "center": {"238-258": [373, -505]}}, -{"id": 5715, "name": "Frostpunk faith banner", "description": "This is the banner of the faith faction in the steampunk city builder survival game frostpunk", "links": {"subreddit": ["frostpunkplace", "frostpunk"]}, "path": {"158-258": [[-862, 532], [-857, 532], [-856, 532], [-856, 542], [-862, 542]]}, "center": {"158-258": [-859, 537]}}, -{"id": 5716, "name": ":spasm:", "description": "Everyone's favourite emoji in r/phigrosGame Discord server. The character which this emoji features is Kuzumi with her face photoshopped to appear derpy. She is one of the characters from Phigros, a rhythm game made by Pigeon Games. Kuzumi makes an appearance in an illustration for a song named \"Spasmodic\" (where name for emoji \"spasm\" comes from) and also plays a relatively big part in Phigros story.", "links": {"subreddit": ["phigrosGame"], "discord": ["QCgdbGbNgu"]}, "path": {"250-258": [[1228, -697], [1228, -710], [1206, -710], [1206, -697]]}, "center": {"250-258": [1217, -703]}}, -{"id": 5717, "name": "Tiny Bull", "description": "Just a tiny bull made by u/Murffyzlaw, the Tiny Bull has traveled to be with the Hytale logo despite having nothing to do with Hytale.", "links": {}, "path": {"250-258": [[363, -974], [363, -973], [367, -973], [367, -974], [367, -973], [366, -973], [366, -971], [364, -971], [364, -973], [363, -973]]}, "center": {"250-258": [365, -972]}}, -{"id": 5718, "name": "Polandball", "description": "A polandball, a style of countryball. Countryballs are from a type of geopolitical satire comics that originated online in the late 2000s where countries are personified as balls with eyes. \nHere, Poland is depicted on the Ukrainian flag wearing a helmet and black sunglasses. This is in reference to Poland's pro-Ukrainian foreign policy and known anti-Russian stance. In many online communities, such as r/NonCredibleDefense, Poland has become a meme for their perceived willingness to go to war with Russia.", "links": {"website": ["https://en.wikipedia.org/wiki/Countryballs"], "subreddit": ["NonCredibleDefense", "polandball"]}, "path": {"250-258": [[-12, -91], [-12, -90], [-13, -89], [-13, -83], [-12, -82], [-11, -81], [-10, -80], [-9, -79], [-2, -79], [-1, -80], [0, -80], [1, -81], [2, -83], [2, -85], [2, -86], [2, -87], [2, -88], [2, -89], [2, -90], [1, -91], [1, -92], [0, -93], [-1, -93], [-2, -94], [-7, -94], [-8, -93], [-10, -93], [-11, -92]]}, "center": {"250-258": [-5, -86]}}, +{"id": 5712, "name": "R2-D2", "description": "R2-D2 is a fictional robot character in the Star Wars franchise created by George Lucas. He has appeared in ten of the eleven theatrical Star Wars films to date. At various points throughout the course of the films, R2, an astromech droid, is a friend to C-3PO, Padmé Amidala, Anakin Skywalker, Leia Organa, Luke Skywalker, and Obi-Wan Kenobi. R2-D2 and his companion C-3PO are the only characters to appear in every theatrical Star Wars film, with the exception of Solo: A Star Wars Story (2018).", "links": {"website": ["https://starwars.fandom.com/wiki/R2-D2"], "subreddit": ["StarWars"]}, "path": {"210-258, T": [[1150, -618], [1150, -627], [1152, -628], [1156, -634], [1163, -633], [1167, -627], [1167, -615], [1167, -612], [1162, -614], [1153, -615], [1153, -613], [1149, -612]]}, "center": {"210-258, T": [1159, -623]}}, +{"id": 5713, "name": "Minecraft Fox", "description": "A fox is a passive mob that spawns in taigas, old growth taigas, snowy taigas and mountain groves. There are two variants and this is the red fox version.", "links": {"website": ["https://minecraft.fandom.com/wiki/Fox"], "subreddit": ["Minecraft"]}, "path": {"250-258, T": [[-1206, 9], [-1206, 0], [-1203, 0], [-1197, 0], [-1197, 9]]}, "center": {"250-258, T": [-1201, 5]}}, +{"id": 5714, "name": "A question mark", "description": "A question mark in a box, no more, no less.", "links": {"website": ["https://en.wikipedia.org/wiki/Question_mark"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"238-258, T": [[369, -510], [377, -510], [377, -500], [369, -500]]}, "center": {"238-258, T": [373, -505]}}, +{"id": 5715, "name": "Frostpunk faith banner", "description": "This is the banner of the faith faction in the steampunk city builder survival game frostpunk", "links": {"subreddit": ["frostpunkplace", "frostpunk"]}, "path": {"158-258, T": [[-862, 532], [-857, 532], [-856, 532], [-856, 542], [-862, 542]]}, "center": {"158-258, T": [-859, 537]}}, +{"id": 5716, "name": ":spasm:", "description": "Everyone's favourite emoji in r/phigrosGame Discord server. The character which this emoji features is Kuzumi with her face photoshopped to appear derpy. She is one of the characters from Phigros, a rhythm game made by Pigeon Games. Kuzumi makes an appearance in an illustration for a song named \"Spasmodic\" (where name for emoji \"spasm\" comes from) and also plays a relatively big part in Phigros story.", "links": {"subreddit": ["phigrosGame"], "discord": ["QCgdbGbNgu"]}, "path": {"250-258, T": [[1228, -697], [1228, -710], [1206, -710], [1206, -697]]}, "center": {"250-258, T": [1217, -703]}}, +{"id": 5717, "name": "Tiny Bull", "description": "Just a tiny bull made by u/Murffyzlaw, the Tiny Bull has traveled to be with the Hytale logo despite having nothing to do with Hytale.", "links": {}, "path": {"250-258, T": [[363, -974], [363, -973], [367, -973], [367, -974], [367, -973], [366, -973], [366, -971], [364, -971], [364, -973], [363, -973]]}, "center": {"250-258, T": [365, -972]}}, +{"id": 5718, "name": "Polandball", "description": "A polandball, a style of countryball. Countryballs are from a type of geopolitical satire comics that originated online in the late 2000s where countries are personified as balls with eyes. \nHere, Poland is depicted on the Ukrainian flag wearing a helmet and black sunglasses. This is in reference to Poland's pro-Ukrainian foreign policy and known anti-Russian stance. In many online communities, such as r/NonCredibleDefense, Poland has become a meme for their perceived willingness to go to war with Russia.", "links": {"website": ["https://en.wikipedia.org/wiki/Countryballs"], "subreddit": ["NonCredibleDefense", "polandball"]}, "path": {"250-258, T": [[-12, -91], [-12, -90], [-13, -89], [-13, -83], [-12, -82], [-11, -81], [-10, -80], [-9, -79], [-2, -79], [-1, -80], [0, -80], [1, -81], [2, -83], [2, -85], [2, -86], [2, -87], [2, -88], [2, -89], [2, -90], [1, -91], [1, -92], [0, -93], [-1, -93], [-2, -94], [-7, -94], [-8, -93], [-10, -93], [-11, -92]]}, "center": {"250-258, T": [-5, -86]}}, {"id": 5719, "name": "Ay from Unifon Alphabet Lore", "description": "a Depiction of one of the main characters from a parody of the Youtube series \"Alphabet Lore\" by Mike Salcedo, specifically 'Ay' from \"Unifon Alphabet Lore Remade\" by Evan Arts", "links": {"website": ["https://www.youtube.com/watch?v=wRN5U6yshU8&list=PLv7nob1bR2s0V28lhvcUlxpyl66b-A-4Q"], "discord": ["NET3JBrk"]}, "path": {"165": [[-778, 751], [-781, 772], [-763, 772], [-767, 751]]}, "center": {"165": [-772, 764]}}, -{"id": 5720, "name": "Gawr Gura", "description": "A mini pixel art of Gawr Gura, a talent from Hololive English -Myth-, the first generation of English speaking talents of Hololove production. She is currently the most subscribed VTuber in the world, with over 4 million subscribers on Youtube.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace", "shaak"]}, "path": {"250-258": [[-641, -317], [-641, -320], [-640, -321], [-639, -322], [-638, -323], [-637, -323], [-636, -324], [-633, -324], [-632, -323], [-631, -323], [-631, -322], [-630, -321], [-629, -320], [-629, -319], [-631, -319], [-632, -319], [-632, -318], [-633, -318], [-634, -318], [-634, -314], [-637, -314], [-638, -315], [-639, -316], [-640, -317]]}, "center": {"250-258": [-637, -319]}}, +{"id": 5720, "name": "Gawr Gura", "description": "A mini pixel art of Gawr Gura, a talent from Hololive English -Myth-, the first generation of English speaking talents of Hololove production. She is currently the most subscribed VTuber in the world, with over 4 million subscribers on Youtube.", "links": {"subreddit": ["Hololive"], "discord": ["vtubersplace", "shaak"]}, "path": {"250-258, T": [[-641, -317], [-641, -320], [-640, -321], [-639, -322], [-638, -323], [-637, -323], [-636, -324], [-633, -324], [-632, -323], [-631, -323], [-631, -322], [-630, -321], [-629, -320], [-629, -319], [-631, -319], [-632, -319], [-632, -318], [-633, -318], [-634, -318], [-634, -314], [-637, -314], [-638, -315], [-639, -316], [-640, -317]]}, "center": {"250-258, T": [-637, -319]}}, {"id": 5721, "name": "Rat", "description": "A rat, eerily similar to Pedro's facial features.", "links": {"website": ["https://www.twitch.tv/caedrel"], "subreddit": ["PedroPeepos"], "discord": ["caedrel"]}, "path": {"87-111": [[741, 306], [791, 306], [790, 344], [739, 343]], "140-167": [[742, 312], [788, 313], [786, 349], [741, 347]]}, "center": {"87-111": [765, 325], "140-167": [763, 330]}}, -{"id": 5722, "name": "Space Invaders Alien", "description": "An alien sprite from the famous 1978 arcade game Space Invaders", "links": {"website": ["https://en.wikipedia.org/wiki/Space_Invaders"]}, "path": {"250-258": [[-1268, 194], [-1268, 205], [-1254, 205], [-1254, 194]]}, "center": {"250-258": [-1261, 200]}}, -{"id": 5723, "name": "Doctor Sex", "description": "Based on a Team Fortress 2 meme depicting a Medic with the username \"doctor sex\" spelling out the word \"SEX\" with syringes on a wall,", "links": {"website": ["https://www.youtube.com/watch?v=1W3H-f4M4lM"], "subreddit": ["tf2"]}, "path": {"237-258": [[-973, -948], [-972, -932], [-961, -932], [-961, -936], [-971, -936], [-971, -948]]}, "center": {"237-258": [-969, -934]}}, +{"id": 5722, "name": "Space Invaders Alien", "description": "An alien sprite from the famous 1978 arcade game Space Invaders", "links": {"website": ["https://en.wikipedia.org/wiki/Space_Invaders"]}, "path": {"250-258, T": [[-1268, 194], [-1268, 205], [-1254, 205], [-1254, 194]]}, "center": {"250-258, T": [-1261, 200]}}, +{"id": 5723, "name": "Doctor Sex", "description": "Based on a Team Fortress 2 meme depicting a Medic with the username \"doctor sex\" spelling out the word \"SEX\" with syringes on a wall,", "links": {"website": ["https://www.youtube.com/watch?v=1W3H-f4M4lM"], "subreddit": ["tf2"]}, "path": {"237-258, T": [[-973, -948], [-972, -932], [-961, -932], [-961, -936], [-971, -936], [-971, -948]]}, "center": {"237-258, T": [-969, -934]}}, {"id": 5724, "name": "Star Butterfly's Wand", "description": "Star butterfly's wand, completed during the greyout. A wand referenced from the show \"Star Vs The Forces of Evil\"", "links": {"subreddit": ["StarVsTheForcesofEvil"]}, "path": {"256-258": [[1246, 194], [1246, 206], [1256, 206], [1256, 194]]}, "center": {"256-258": [1251, 200]}}, {"id": 5725, "name": "Tiny Pony OC", "description": "A very tiny pony of a discord user mr_nate89's OC, who was determined to keep his pony near the original Bronies location.\n\nIt's final occurrence unfortunately happened to be the very snapshot/frame after the \"Reddit Official Final Canvas\", but there's still a large amount of time they are present for.", "links": {}, "path": {"211-248": [[-39, 249], [-39, 247], [-40, 247], [-40, 245], [-36, 245], [-36, 246], [-34, 246], [-34, 249]]}, "center": {"211-248": [-37, 247]}}, -{"id": 5726, "name": "The number 14", "description": "The number 14 has a double meaning.\n1. Real Madrid C.F. has won the UEFA Champions League 14 times, the most out of any club in the world\n2. The MFP received 14 million votes in the 2023 Thai General Election.", "links": {}, "path": {"250-258": [[-529, 62], [-529, 67], [-522, 67], [-522, 61], [-529, 61]]}, "center": {"250-258": [-525, 64]}}, -{"id": 5727, "name": "Dwarf Fortress", "description": "Dwarf Fortress is a roguelike colony management simulation and indie video game created by Tarn and Zach Adams. It released on Steam and Itch.io in December 2022", "links": {"website": ["http://www.bay12games.com/dwarves/"], "subreddit": ["dwarffortress"], "discord": ["kitfoxgames"]}, "path": {"250-258": [[-580, -508], [-580, -520], [-571, -520], [-571, -508]]}, "center": {"250-258": [-575, -514]}}, -{"id": 5728, "name": "Duke University", "description": "Duke University is a prestigious private research university located in Durham, North Carolina, known for its rigorous academic environment, distinguished faculty, and commitment to research excellence. With a beautiful campus and strong athletic programs, Duke continues to be a leading institution that shapes the future of education and contributes significantly to advancements in various fields of knowledge.", "links": {"website": ["https://duke.edu/"], "subreddit": ["duke"]}, "path": {"246-258": [[382, 924], [391, 924], [391, 930], [382, 930]]}, "center": {"246-258": [387, 927]}}, -{"id": 5729, "name": "Flag of Trinidad and Tobago", "description": "A small flag of the small eastern Caribbean country of Trinidad and Tobago", "links": {}, "path": {"250-258": [[1485, 151], [1492, 151], [1492, 155], [1485, 155]]}, "center": {"250-258": [1489, 153]}}, +{"id": 5726, "name": "The number 14", "description": "The number 14 has a double meaning.\n1. Real Madrid C.F. has won the UEFA Champions League 14 times, the most out of any club in the world\n2. The MFP received 14 million votes in the 2023 Thai General Election.", "links": {}, "path": {"250-258, T": [[-529, 62], [-529, 67], [-522, 67], [-522, 61], [-529, 61]]}, "center": {"250-258, T": [-525, 64]}}, +{"id": 5727, "name": "Dwarf Fortress", "description": "Dwarf Fortress is a roguelike colony management simulation and indie video game created by Tarn and Zach Adams. It released on Steam and Itch.io in December 2022", "links": {"website": ["http://www.bay12games.com/dwarves/"], "subreddit": ["dwarffortress"], "discord": ["kitfoxgames"]}, "path": {"250-258, T": [[-580, -508], [-580, -520], [-571, -520], [-571, -508]]}, "center": {"250-258, T": [-575, -514]}}, +{"id": 5728, "name": "Duke University", "description": "Duke University is a prestigious private research university located in Durham, North Carolina, known for its rigorous academic environment, distinguished faculty, and commitment to research excellence. With a beautiful campus and strong athletic programs, Duke continues to be a leading institution that shapes the future of education and contributes significantly to advancements in various fields of knowledge.", "links": {"website": ["https://duke.edu/"], "subreddit": ["duke"]}, "path": {"246-258, T": [[382, 924], [391, 924], [391, 930], [382, 930]]}, "center": {"246-258, T": [387, 927]}}, +{"id": 5729, "name": "Flag of Trinidad and Tobago", "description": "A small flag of the small eastern Caribbean country of Trinidad and Tobago", "links": {}, "path": {"250-258, T": [[1485, 151], [1492, 151], [1492, 155], [1485, 155]]}, "center": {"250-258, T": [1489, 153]}}, {"id": 5730, "name": "Start of Urban Rivals Logo", "description": "Urban Rivals is a massively multi-player online virtual trading card game. The game features over 2,000 characters with varying rarities and abilities to discover, collect and level up by fighting live against players from all over the world. It also has an active market, where players can buy cards from other players or put their own cards up for sale.", "links": {"website": ["https://www.urban-rivals.com"], "subreddit": ["UrbanRivals"]}, "path": {"251": [[1150, -261], [1162, -261], [1163, -246], [1150, -246]]}, "center": {"251": [1156, -253]}}, -{"id": 5731, "name": "Calculated Savagery Logo", "description": "A small Discord community logo made by u/SplendidZebra. Made specifically for a 'Taskmaster' challenge in their server, 'The Best Green Thing'.", "links": {}, "path": {"209-258": [[-1188, 389], [-1188, 399], [-1199, 399], [-1199, 389]]}, "center": {"209-258": [-1193, 394]}}, -{"id": 5732, "name": "Sally Face", "description": "The main protagonist, Sal Fisher, from the game Sally Face", "links": {"subreddit": ["sallyface"]}, "path": {"217-258": [[972, -1000], [972, -985], [1000, -985], [1000, -1000]]}, "center": {"217-258": [986, -992]}}, -{"id": 5733, "name": "Red Hood", "description": "The character Red Hood from the Black Souls series of games.\n\nBlack Souls is an RPG Maker horror adult game series by Sushi Yuusha Toro. It mixes Dark Souls inspired gameplay with fairy tales by the Grimm Brothers. There are currently 2 mainline games in the series. \n\nRed Hood is a primary character in Black Souls 1 & 2. She is based off the fairy tale Little Red Riding Hood. Her design here is based off her Black Souls 2 appearance.", "links": {}, "path": {"250-258": [[-589, -993], [-595, -993], [-596, -994], [-597, -995], [-598, -995], [-599, -994], [-600, -993], [-600, -992], [-599, -991], [-598, -990], [-598, -982], [-597, -981], [-596, -980], [-596, -979], [-597, -978], [-598, -977], [-598, -976], [-598, -975], [-601, -975], [-602, -974], [-601, -973], [-600, -972], [-597, -972], [-596, -973], [-595, -972], [-593, -972], [-593, -973], [-593, -974], [-592, -974], [-591, -974], [-591, -973], [-591, -972], [-590, -972], [-589, -972], [-589, -973], [-588, -973], [-587, -973], [-586, -974], [-585, -975], [-585, -976], [-585, -977], [-586, -977], [-586, -978], [-587, -979], [-587, -980], [-586, -980], [-585, -981], [-584, -982], [-584, -988], [-585, -989], [-585, -990], [-584, -991], [-584, -992], [-584, -993], [-585, -994], [-586, -995], [-587, -995], [-588, -994]]}, "center": {"250-258": [-591, -986]}}, -{"id": 5734, "name": "Kyaru", "description": "Kyaru is one of the main characters of Princess Connect! Re:Dive. She is a member of the Gourmet Guild.", "links": {"website": ["https://priconne-redive.jp"], "subreddit": ["Priconne"], "discord": ["ds8MrefSeb"]}, "path": {"250-258": [[-600, 181], [-600, 178], [-594, 178], [-594, 185], [-595, 185], [-595, 186], [-595, 187], [-598, 187], [-598, 186], [-599, 186], [-599, 185], [-599, 184], [-600, 184], [-600, 181], [-600, 178], [-600, 179]]}, "center": {"250-258": [-597, 181]}}, -{"id": 5735, "name": "Apollo Justice", "description": "Apollo Justice is a defense attorney from Capcom's hit indie game Apollo Justice: Ace Attorney.", "links": {"website": ["https://aceattorney.fandom.com/wiki/Apollo_Justice"], "subreddit": ["placeattorney"], "discord": ["s625J5tT", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"178-258": [[-668, 417], [-669, 418], [-670, 418], [-672, 420], [-672, 424], [-671, 424], [-671, 428], [-663, 428], [-663, 424], [-664, 424], [-664, 420], [-666, 417]]}, "center": {"178-258": [-668, 422]}}, +{"id": 5731, "name": "Calculated Savagery Logo", "description": "A small Discord community logo made by u/SplendidZebra. Made specifically for a 'Taskmaster' challenge in their server, 'The Best Green Thing'.", "links": {}, "path": {"209-258, T": [[-1188, 389], [-1188, 399], [-1199, 399], [-1199, 389]]}, "center": {"209-258, T": [-1193, 394]}}, +{"id": 5732, "name": "Sally Face", "description": "The main protagonist, Sal Fisher, from the game Sally Face", "links": {"subreddit": ["sallyface"]}, "path": {"217-258, T": [[972, -1000], [972, -985], [1000, -985], [1000, -1000]]}, "center": {"217-258, T": [986, -992]}}, +{"id": 5733, "name": "Red Hood", "description": "The character Red Hood from the Black Souls series of games.\n\nBlack Souls is an RPG Maker horror adult game series by Sushi Yuusha Toro. It mixes Dark Souls inspired gameplay with fairy tales by the Grimm Brothers. There are currently 2 mainline games in the series. \n\nRed Hood is a primary character in Black Souls 1 & 2. She is based off the fairy tale Little Red Riding Hood. Her design here is based off her Black Souls 2 appearance.", "links": {}, "path": {"250-258, T": [[-589, -993], [-595, -993], [-596, -994], [-597, -995], [-598, -995], [-599, -994], [-600, -993], [-600, -992], [-599, -991], [-598, -990], [-598, -982], [-597, -981], [-596, -980], [-596, -979], [-597, -978], [-598, -977], [-598, -976], [-598, -975], [-601, -975], [-602, -974], [-601, -973], [-600, -972], [-597, -972], [-596, -973], [-595, -972], [-593, -972], [-593, -973], [-593, -974], [-592, -974], [-591, -974], [-591, -973], [-591, -972], [-590, -972], [-589, -972], [-589, -973], [-588, -973], [-587, -973], [-586, -974], [-585, -975], [-585, -976], [-585, -977], [-586, -977], [-586, -978], [-587, -979], [-587, -980], [-586, -980], [-585, -981], [-584, -982], [-584, -988], [-585, -989], [-585, -990], [-584, -991], [-584, -992], [-584, -993], [-585, -994], [-586, -995], [-587, -995], [-588, -994]]}, "center": {"250-258, T": [-591, -986]}}, +{"id": 5734, "name": "Kyaru", "description": "Kyaru is one of the main characters of Princess Connect! Re:Dive. She is a member of the Gourmet Guild.", "links": {"website": ["https://priconne-redive.jp"], "subreddit": ["Priconne"], "discord": ["ds8MrefSeb"]}, "path": {"250-258, T": [[-600, 181], [-600, 178], [-594, 178], [-594, 185], [-595, 185], [-595, 186], [-595, 187], [-598, 187], [-598, 186], [-599, 186], [-599, 185], [-599, 184], [-600, 184], [-600, 181], [-600, 178], [-600, 179]]}, "center": {"250-258, T": [-597, 181]}}, +{"id": 5735, "name": "Apollo Justice", "description": "Apollo Justice is a defense attorney from Capcom's hit indie game Apollo Justice: Ace Attorney.", "links": {"website": ["https://aceattorney.fandom.com/wiki/Apollo_Justice"], "subreddit": ["placeattorney"], "discord": ["s625J5tT", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"178-258, T": [[-668, 417], [-669, 418], [-670, 418], [-672, 420], [-672, 424], [-671, 424], [-671, 428], [-663, 428], [-663, 424], [-664, 424], [-664, 420], [-666, 417]]}, "center": {"178-258, T": [-668, 422]}}, {"id": 5736, "name": "The Original Chaos Group face", "description": "Created during the first moments of the 6th expansion, formed an alliance with the eagles and bwd who were below it and eventually gave this space to the eagles for their drawings.\n\nWhile it was being made it was against the HYPER and a cyan pixeler who might of been jim and his face. \n\nThe group were paranoid about the warnings of it finishing 7 hours after watching xqcs rampage across the entire board and instead of expanding allowing jim and purple eyes to be built when the group left for 4 hours after the time xqc said was false", "links": {"subreddit": ["ChaosCreations"]}, "path": {"208-219": [[1027, -1000], [1033, -1000], [1033, -994], [1027, -994]]}, "center": {"208-219": [1030, -997]}}, -{"id": 5737, "name": "New Zealand national rugby union team player", "description": "The New Zealand national rugby union team, commonly known as the 'All Blacks', are famous for their black-and-white uniform.", "links": {"website": ["https://en.wikipedia.org/wiki/New_Zealand_national_rugby_union_team"], "subreddit": ["NewZealand"]}, "path": {"184-258": [[-898, 52], [-895, 55], [-894, 54], [-894, 52], [-891, 55], [-890, 54], [-891, 52], [-892, 50], [-892, 48], [-891, 47], [-892, 45], [-894, 44], [-895, 42], [-896, 42], [-897, 44], [-899, 47], [-900, 48], [-899, 49], [-897, 47], [-897, 49], [-898, 50]]}, "center": {"184-258": [-894, 47]}}, -{"id": 5738, "name": "Heart of Solidarity with Myanmar", "description": "A heart showing support and solidarity with the Burmese people in light of the internal crisis in Myanmar.", "links": {}, "path": {"250-258": [[-541, 44], [-542, 45], [-542, 46], [-541, 47], [-540, 48], [-539, 49], [-537, 49], [-536, 48], [-535, 47], [-534, 46], [-534, 45], [-535, 44], [-536, 43], [-540, 43]]}, "center": {"250-258": [-538, 46]}}, -{"id": 5739, "name": "Green smile", "description": "Made by two friends, u/Cyclic_Peptide and\nu/IAmImi2", "links": {}, "path": {"246-258": [[-1203, 137], [-1210, 137], [-1210, 130], [-1203, 130]]}, "center": {"246-258": [-1206, 134]}}, -{"id": 5740, "name": "Link", "description": "Link is a fictional character and the protagonist of Nintendo's video game franchise The Legend of Zelda.\n\nThis sprite comes from the series' first game, also called The Legend of Zelda, released in 1986.", "links": {"website": ["https://en.wikipedia.org/wiki/Link_(The_Legend_of_Zelda)"], "subreddit": ["zelda"], "discord": ["rzelda"]}, "path": {"250-258": [[960, 132], [955, 132], [954, 133], [952, 134], [952, 137], [953, 137], [953, 140], [950, 140], [950, 145], [951, 146], [954, 146], [954, 147], [956, 147], [956, 145], [959, 145], [959, 146], [961, 146], [961, 139], [962, 139], [962, 137], [963, 137], [963, 134], [961, 133]]}, "center": {"250-258": [958, 136]}}, -{"id": 5741, "name": "A J", "description": "\"This is the representation of the love between two teenagers, Joaquin and Alejandro.\"", "links": {}, "path": {"247-253": [[1355, 551], [1365, 551], [1365, 560], [1355, 560], [1355, 551], [1365, 560], [1355, 560]]}, "center": {"247-253": [1362, 554]}}, +{"id": 5737, "name": "New Zealand national rugby union team player", "description": "The New Zealand national rugby union team, commonly known as the 'All Blacks', are famous for their black-and-white uniform.", "links": {"website": ["https://en.wikipedia.org/wiki/New_Zealand_national_rugby_union_team"], "subreddit": ["NewZealand"]}, "path": {"184-258, T": [[-898, 52], [-895, 55], [-894, 54], [-894, 52], [-891, 55], [-890, 54], [-891, 52], [-892, 50], [-892, 48], [-891, 47], [-892, 45], [-894, 44], [-895, 42], [-896, 42], [-897, 44], [-899, 47], [-900, 48], [-899, 49], [-897, 47], [-897, 49], [-898, 50]]}, "center": {"184-258, T": [-894, 47]}}, +{"id": 5738, "name": "Heart of Solidarity with Myanmar", "description": "A heart showing support and solidarity with the Burmese people in light of the internal crisis in Myanmar.", "links": {}, "path": {"250-258, T": [[-541, 44], [-542, 45], [-542, 46], [-541, 47], [-540, 48], [-539, 49], [-537, 49], [-536, 48], [-535, 47], [-534, 46], [-534, 45], [-535, 44], [-536, 43], [-540, 43]]}, "center": {"250-258, T": [-538, 46]}}, +{"id": 5739, "name": "Green smile", "description": "Made by two friends, u/Cyclic_Peptide and\nu/IAmImi2", "links": {}, "path": {"246-258, T": [[-1203, 137], [-1210, 137], [-1210, 130], [-1203, 130]]}, "center": {"246-258, T": [-1206, 134]}}, +{"id": 5740, "name": "Link", "description": "Link is a fictional character and the protagonist of Nintendo's video game franchise The Legend of Zelda.\n\nThis sprite comes from the series' first game, also called The Legend of Zelda, released in 1986.", "links": {"website": ["https://en.wikipedia.org/wiki/Link_(The_Legend_of_Zelda)"], "subreddit": ["zelda"], "discord": ["rzelda"]}, "path": {"250-258, T": [[960, 132], [955, 132], [954, 133], [952, 134], [952, 137], [953, 137], [953, 140], [950, 140], [950, 145], [951, 146], [954, 146], [954, 147], [956, 147], [956, 145], [959, 145], [959, 146], [961, 146], [961, 139], [962, 139], [962, 137], [963, 137], [963, 134], [961, 133]]}, "center": {"250-258, T": [958, 136]}}, +{"id": 5741, "name": "A J", "description": "\"This is the representation of the love between two teenagers, Joaquin and Alejandro.\"", "links": {}, "path": {"247-253, T": [[1355, 551], [1365, 551], [1365, 560], [1355, 560], [1355, 551], [1365, 560], [1355, 560]]}, "center": {"247-253, T": [1362, 554]}}, {"id": 5742, "name": "Flipped Blue Corner Logo", "description": "The streamer Felps flipped the logo of the Blue Corner along with other text/logos on the canvas such as osu!. The Blue Corner community found the logo flip funny so it was not immediately destroyed.", "links": {}, "path": {"82-110": [[945, 491], [945, 499], [998, 499], [998, 491]]}, "center": {"82-110": [972, 495]}}, {"id": 5743, "name": "NediaVR", "description": "\"NediaVR\" is a VrChat/Vtube Twitch Streamer", "links": {"website": ["https://www.twitch.tv/search?term=nediavr"], "discord": ["nediavr"]}, "path": {"191-202": [[300, 749], [299, 788], [272, 788], [272, 780], [275, 780], [275, 759], [271, 759], [271, 756], [283, 756], [286, 754], [293, 754]], "89-107": [[560, 92], [560, 57], [590, 57], [590, 66], [586, 66], [586, 74], [581, 74], [581, 83], [589, 83], [589, 92]]}, "center": {"191-202": [287, 771], "89-107": [571, 68]}}, -{"id": 5744, "name": "Equius", "description": "Equius, a character from the webcomic Homestuck", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258": [[499, 781], [507, 776], [506, 771], [499, 769]]}, "center": {"250-258": [503, 774]}}, -{"id": 5745, "name": "Cluncherp Icon", "description": "Cluncherp is a small coontent creator that plays the game Geometry Dash. This logo was made after the suggestion of his friend A.M. comics.", "links": {}, "path": {"55-258": [[-114, 380], [-109, 380], [-109, 385], [-114, 385], [-114, 381]]}, "center": {"55-258": [-111, 383]}}, -{"id": 5746, "name": "The Monument Mythos", "description": "The Monument Mythos is an analog horror/alternate history series created by MISTER MANTICORE on YouTube", "links": {"website": ["https://www.youtube.com/c/MISTERMANTICORE"], "subreddit": ["THEMONUMENTMYTHOS"]}, "path": {"250-258": [[988, 374], [1000, 374], [1000, 376], [1001, 376], [1001, 379], [1000, 380], [1000, 381], [998, 381], [998, 382], [997, 382], [997, 385], [996, 385], [996, 386], [995, 386], [995, 387], [993, 387], [993, 386], [992, 386], [992, 385], [991, 385], [991, 382], [990, 382], [990, 381], [989, 381], [988, 381], [988, 380], [987, 380], [987, 376], [988, 376]]}, "center": {"250-258": [994, 379]}}, +{"id": 5744, "name": "Equius", "description": "Equius, a character from the webcomic Homestuck", "links": {"website": ["https://homestuck.com"], "subreddit": ["homestuck"]}, "path": {"250-258, T": [[499, 781], [507, 776], [506, 771], [499, 769]]}, "center": {"250-258, T": [503, 774]}}, +{"id": 5745, "name": "Cluncherp Icon", "description": "Cluncherp is a small coontent creator that plays the game Geometry Dash. This logo was made after the suggestion of his friend A.M. comics.", "links": {}, "path": {"55-258, T": [[-114, 380], [-109, 380], [-109, 385], [-114, 385], [-114, 381]]}, "center": {"55-258, T": [-111, 383]}}, +{"id": 5746, "name": "The Monument Mythos", "description": "The Monument Mythos is an analog horror/alternate history series created by MISTER MANTICORE on YouTube", "links": {"website": ["https://www.youtube.com/c/MISTERMANTICORE"], "subreddit": ["THEMONUMENTMYTHOS"]}, "path": {"250-258, T": [[988, 374], [1000, 374], [1000, 376], [1001, 376], [1001, 379], [1000, 380], [1000, 381], [998, 381], [998, 382], [997, 382], [997, 385], [996, 385], [996, 386], [995, 386], [995, 387], [993, 387], [993, 386], [992, 386], [992, 385], [991, 385], [991, 382], [990, 382], [990, 381], [989, 381], [988, 381], [988, 380], [987, 380], [987, 376], [988, 376]]}, "center": {"250-258, T": [994, 379]}}, {"id": 5747, "name": "The New Zealand flag", "description": "The Flag of the oceanic country New Zealand with the initials NZ below it", "links": {}, "path": {"80-93": [[350, -368], [349, -349], [359, -349], [359, -354], [371, -354], [371, -367], [351, -367]]}, "center": {"80-93": [356, -360]}}, {"id": 5748, "name": "Protest against Kemal Kılıçdaroğu", "description": "Kılıçdaroğlu is the current chairman of CHP (Cumhuriyet Halk Partisi). After KK lost the 2023 presidental election people have protested saying that KK should leave his job.", "links": {"subreddit": ["turkey"]}, "path": {"64": [[-359, 410], [-168, 411], [-169, 441], [-357, 441]]}, "center": {"64": [-297, 426]}}, -{"id": 5749, "name": "Stardew Valley Junimos", "description": "Junimos are friendly tiny apple-like creatures from the game Stardew Valley.", "links": {"subreddit": ["StardewValley"]}, "path": {"250-258": [[-1047, -450], [-998, -450], [-998, -430], [-1048, -430], [-1048, -450]]}, "center": {"250-258": [-1023, -440]}}, -{"id": 5750, "name": "France Libre medal", "description": "This is a representation of a military decoration called \"France Libre\" linked to the french resistance and the liberation of France after WW2.", "links": {"website": ["https://macollectionpaschere.com/archives/18762-france-libre-insigne-metallique-de-la-france-libre-grave-et-matricule-reg-n-838354-matricule-n3386-avec-petit-defaut-d-email-dans-l-epee-.html"]}, "path": {"215-258": [[-491, -335], [-498, -335], [-493, -325], [-484, -325], [-479, -319], [-464, -333], [-481, -338], [-480, -340]]}, "center": {"215-258": [-479, -330]}}, -{"id": 5751, "name": "Rif is fun for Reddit", "description": "Rif was a third party Reddit client app for Android, until it was shut down on June 23. It was created and maintained by u/talklittle.", "links": {"subreddit": ["redditisfun"]}, "path": {"250-258": [[-1251, 979], [-1250, 979], [-1250, 978], [-1249, 978], [-1249, 977], [-1238, 977], [-1238, 978], [-1237, 978], [-1237, 979], [-1236, 979], [-1236, 990], [-1237, 990], [-1237, 991], [-1238, 991], [-1238, 992], [-1249, 992], [-1249, 991], [-1250, 991], [-1250, 990], [-1251, 990]]}, "center": {"250-258": [-1243, 985]}}, -{"id": 5752, "name": "French heart with Singapore", "description": "Symbol of the alliance of Singapore and French people (PierreShowGang, LittleMeyh, and Top Hat Duck)", "links": {"subreddit": ["placeSG", "PierreShowGang", "LittleMeyhSurTwitch"]}, "path": {"85-177": [[356, -19], [357, -19], [357, -20], [358, -20], [358, -21], [359, -21], [359, -24], [358, -24], [358, -25], [354, -25], [354, -24], [353, -24], [353, -21], [354, -21], [354, -20], [355, -20], [355, -19]], "178-258": [[356, -20], [355, -20], [355, -21], [354, -21], [354, -24], [355, -24], [355, -25], [359, -25], [359, -24], [360, -24], [360, -21], [359, -21], [359, -20], [358, -20], [358, -19], [357, -19], [356, -19]]}, "center": {"85-177": [356, -22], "178-258": [357, -22]}}, -{"id": 5753, "name": "Gawr Gura", "description": "A small depiction of HoloEN Vtuber Gawr Gura, part of Hololive \"Myth\".\n\nGawr Gura is the most popular Vtuber on YouTube after debuting in 2020 as part of the first HoloEN generation.", "links": {"website": ["https://hololivepro.com/"], "subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"250-258": [[-636, -324], [-633, -324], [-632, -323], [-631, -323], [-631, -321], [-630, -321], [-629, -320], [-629, -319], [-631, -319], [-632, -320], [-633, -320], [-634, -320], [-634, -319], [-635, -319], [-634, -314], [-637, -314], [-638, -315], [-639, -316], [-640, -317], [-641, -317], [-641, -320], [-637, -323], [-637, -322], [-638, -323]]}, "center": {"250-258": [-638, -319]}}, -{"id": 5754, "name": "Counter-Strike 2 (Final Canvas)", "description": "Counter-Strike 2 (CS2) is an upcoming first-person shooter game that is a sequel to Counter-Strike: Global Offensive (CS:GO).\n\nSurprisingly, This One Barely made it into Final Canvas.", "links": {"website": ["https://www.counter-strike.net/cs2"]}, "path": {"250-258": [[69, -911], [133, -911], [133, -829], [68, -829]]}, "center": {"250-258": [101, -870]}}, -{"id": 5755, "name": "Arctic Monkeys AM logo", "description": "The AM wave pattern, from the 5th Arctic Monkeys album \"AM\", popularized in the music video of \"Do I Wanna Know\"", "links": {"website": ["https://www.youtube.com/watch?v=bpOSxM0rNPM"], "subreddit": ["arcticmonkeys"]}, "path": {"250-258": [[4, -985], [42, -984], [41, -976], [6, -976]]}, "center": {"250-258": [23, -980]}}, +{"id": 5749, "name": "Stardew Valley Junimos", "description": "Junimos are friendly tiny apple-like creatures from the game Stardew Valley.", "links": {"subreddit": ["StardewValley"]}, "path": {"250-258, T": [[-1047, -450], [-998, -450], [-998, -430], [-1048, -430], [-1048, -450]]}, "center": {"250-258, T": [-1023, -440]}}, +{"id": 5750, "name": "France Libre medal", "description": "This is a representation of a military decoration called \"France Libre\" linked to the french resistance and the liberation of France after WW2.", "links": {"website": ["https://macollectionpaschere.com/archives/18762-france-libre-insigne-metallique-de-la-france-libre-grave-et-matricule-reg-n-838354-matricule-n3386-avec-petit-defaut-d-email-dans-l-epee-.html"]}, "path": {"215-258, T": [[-491, -335], [-498, -335], [-493, -325], [-484, -325], [-479, -319], [-464, -333], [-481, -338], [-480, -340]]}, "center": {"215-258, T": [-479, -330]}}, +{"id": 5751, "name": "Rif is fun for Reddit", "description": "Rif was a third party Reddit client app for Android, until it was shut down on June 23. It was created and maintained by u/talklittle.", "links": {"subreddit": ["redditisfun"]}, "path": {"250-258, T": [[-1251, 979], [-1250, 979], [-1250, 978], [-1249, 978], [-1249, 977], [-1238, 977], [-1238, 978], [-1237, 978], [-1237, 979], [-1236, 979], [-1236, 990], [-1237, 990], [-1237, 991], [-1238, 991], [-1238, 992], [-1249, 992], [-1249, 991], [-1250, 991], [-1250, 990], [-1251, 990]]}, "center": {"250-258, T": [-1243, 985]}}, +{"id": 5752, "name": "French heart with Singapore", "description": "Symbol of the alliance of Singapore and French people (PierreShowGang, LittleMeyh, and Top Hat Duck)", "links": {"subreddit": ["placeSG", "PierreShowGang", "LittleMeyhSurTwitch"]}, "path": {"85-177": [[356, -19], [357, -19], [357, -20], [358, -20], [358, -21], [359, -21], [359, -24], [358, -24], [358, -25], [354, -25], [354, -24], [353, -24], [353, -21], [354, -21], [354, -20], [355, -20], [355, -19]], "178-258, T": [[356, -20], [355, -20], [355, -21], [354, -21], [354, -24], [355, -24], [355, -25], [359, -25], [359, -24], [360, -24], [360, -21], [359, -21], [359, -20], [358, -20], [358, -19], [357, -19], [356, -19]]}, "center": {"85-177": [356, -22], "178-258, T": [357, -22]}}, +{"id": 5753, "name": "Gawr Gura", "description": "A small depiction of HoloEN Vtuber Gawr Gura, part of Hololive \"Myth\".\n\nGawr Gura is the most popular Vtuber on YouTube after debuting in 2020 as part of the first HoloEN generation.", "links": {"website": ["https://hololivepro.com/"], "subreddit": ["Hololive"], "discord": ["vtubersplace"]}, "path": {"250-258, T": [[-636, -324], [-633, -324], [-632, -323], [-631, -323], [-631, -321], [-630, -321], [-629, -320], [-629, -319], [-631, -319], [-632, -320], [-633, -320], [-634, -320], [-634, -319], [-635, -319], [-634, -314], [-637, -314], [-638, -315], [-639, -316], [-640, -317], [-641, -317], [-641, -320], [-637, -323], [-637, -322], [-638, -323]]}, "center": {"250-258, T": [-638, -319]}}, +{"id": 5754, "name": "Counter-Strike 2 (Final Canvas)", "description": "Counter-Strike 2 (CS2) is an upcoming first-person shooter game that is a sequel to Counter-Strike: Global Offensive (CS:GO).\n\nSurprisingly, This One Barely made it into Final Canvas.", "links": {"website": ["https://www.counter-strike.net/cs2"]}, "path": {"250-258, T": [[69, -911], [133, -911], [133, -829], [68, -829]]}, "center": {"250-258, T": [101, -870]}}, +{"id": 5755, "name": "Arctic Monkeys AM logo", "description": "The AM wave pattern, from the 5th Arctic Monkeys album \"AM\", popularized in the music video of \"Do I Wanna Know\"", "links": {"website": ["https://www.youtube.com/watch?v=bpOSxM0rNPM"], "subreddit": ["arcticmonkeys"]}, "path": {"250-258, T": [[4, -985], [42, -984], [41, -976], [6, -976]]}, "center": {"250-258, T": [23, -980]}}, {"id": 5756, "name": "Malaysia - Singapore tiny flags", "description": "Part of a collection of small flags. Was wiped out by CounterStrike, which was succeeded by Italy.", "links": {"subreddit": ["malaysia", "singapore", "placeSG"]}, "path": {"178-199": [[32, -736], [20, -736], [20, -745], [46, -745], [46, -736]]}, "center": {"178-199": [33, -740]}}, -{"id": 5757, "name": "Router", "description": "A router is a block from the game Mindustry. ROUTER is LIFE! ROUTER is LOVE!", "links": {"website": ["https://mindustry-unofficial.fandom.com/wiki/Router", "https://anuke.itch.io/mindustry"], "subreddit": ["mindustry", "IndieAlliance"], "discord": ["mindustry", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"218-258": [[-707, 420], [-707, 429], [-698, 429], [-698, 420]]}, "center": {"218-258": [-702, 425]}}, -{"id": 5758, "name": "Flag of the Valencian Community", "description": "The Valencian Community is an autonomous community of Spain.\nThis flag is called the \"Real Senyera\"", "links": {"subreddit": ["valencia"]}, "path": {"188-204": [[-1414, -287], [-1414, -279], [-1403, -279], [-1403, -287]], "205-258": [[-1419, -287], [-1403, -287], [-1403, -277], [-1419, -277]]}, "center": {"188-204": [-1408, -283], "205-258": [-1411, -282]}}, -{"id": 5759, "name": "Bearman by PierreShowGang", "description": "A tribute by French Twitch streamer group PierreShowGang to fellow French Twitch streamer La_Cave_TV. After being wiped out firstly by Morocco's bots and secondly by Bolivian streamers, Bearman was successfully revived by Singapore.", "links": {"website": ["https://www.twitch.tv/la_cave_tv"], "subreddit": ["PierreShowGang", "placeSG"]}, "path": {"50-76": [[382, -26], [382, -37], [373, -37], [373, -26]], "13-46": [[383, 16], [383, 6], [383, 5], [393, 5], [393, 16]], "153-258": [[371, -17], [373, -17], [373, -18], [375, -18], [375, -19], [377, -19], [377, -25], [372, -25], [372, -26], [370, -26], [370, -25], [369, -25], [369, -23], [370, -23], [370, -17]]}, "center": {"50-76": [378, -31], "13-46": [388, 11], "153-258": [373, -22]}}, +{"id": 5757, "name": "Router", "description": "A router is a block from the game Mindustry. ROUTER is LIFE! ROUTER is LOVE!", "links": {"website": ["https://mindustry-unofficial.fandom.com/wiki/Router", "https://anuke.itch.io/mindustry"], "subreddit": ["mindustry", "IndieAlliance"], "discord": ["mindustry", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"218-258, T": [[-707, 420], [-707, 429], [-698, 429], [-698, 420]]}, "center": {"218-258, T": [-702, 425]}}, +{"id": 5758, "name": "Flag of the Valencian Community", "description": "The Valencian Community is an autonomous community of Spain.\nThis flag is called the \"Real Senyera\"", "links": {"subreddit": ["valencia"]}, "path": {"188-204": [[-1414, -287], [-1414, -279], [-1403, -279], [-1403, -287]], "205-258, T": [[-1419, -287], [-1403, -287], [-1403, -277], [-1419, -277]]}, "center": {"188-204": [-1408, -283], "205-258, T": [-1411, -282]}}, +{"id": 5759, "name": "Bearman by PierreShowGang", "description": "A tribute by French Twitch streamer group PierreShowGang to fellow French Twitch streamer La_Cave_TV. After being wiped out firstly by Morocco's bots and secondly by Bolivian streamers, Bearman was successfully revived by Singapore.", "links": {"website": ["https://www.twitch.tv/la_cave_tv"], "subreddit": ["PierreShowGang", "placeSG"]}, "path": {"50-76": [[382, -26], [382, -37], [373, -37], [373, -26]], "13-46": [[383, 16], [383, 6], [383, 5], [393, 5], [393, 16]], "153-258, T": [[371, -17], [373, -17], [373, -18], [375, -18], [375, -19], [377, -19], [377, -25], [372, -25], [372, -26], [370, -26], [370, -25], [369, -25], [369, -23], [370, -23], [370, -17]]}, "center": {"50-76": [378, -31], "13-46": [388, 11], "153-258, T": [373, -22]}}, {"id": 5760, "name": "Flag of Vietnam", "description": "Vietnam is a country in Southeast Asia. This flag of Vietnam were built and maintained by r/placevietnam. It features a yellow five-pointed star on a red background. This was the old location of the Vietnam flag at the start of the event, until it got captured by Portugal around 23:00 GMT on July 20. Afterward, r/placevietnam move to a new location (next to Osu).", "links": {"website": ["https://en.wikipedia.org/wiki/Vietnam", "https://en.wikipedia.org/wiki/Flag_of_Vietnam"], "subreddit": ["VietNam"], "discord": ["Ahzb6wG3"]}, "path": {"5-19": [[400, 335], [454, 335], [454, 361], [400, 361]]}, "center": {"5-19": [427, 348]}}, -{"id": 5761, "name": "r/placeDE Taskbar tile", "description": "This taskbar tile was created in collaboration with r/placeDE and r/placestart.", "links": {"subreddit": ["placestart", "placeDE"], "discord": ["YZjc5SjN"]}, "path": {"250-258": [[-1000, 973], [-913, 973], [-913, 996], [-1000, 996]]}, "center": {"250-258": [-956, 985]}}, -{"id": 5763, "name": "r/truscum", "description": "The term \"truscum\" (\"true transsexual scum\"), also known as transmedicalism, is used to describe a specific viewpoint within the trans community. The r/truscum community believes gender dysphoria is required to be considered transgender/transsexual.", "links": {"subreddit": ["truscum"]}, "path": {"250-258": [[260, 477], [260, 487], [264, 487], [264, 477]]}, "center": {"250-258": [262, 482]}}, +{"id": 5761, "name": "r/placeDE Taskbar tile", "description": "This taskbar tile was created in collaboration with r/placeDE and r/placestart.", "links": {"subreddit": ["placestart", "placeDE"], "discord": ["YZjc5SjN"]}, "path": {"250-258, T": [[-1000, 973], [-913, 973], [-913, 996], [-1000, 996]]}, "center": {"250-258, T": [-956, 985]}}, +{"id": 5763, "name": "r/truscum", "description": "The term \"truscum\" (\"true transsexual scum\"), also known as transmedicalism, is used to describe a specific viewpoint within the trans community. The r/truscum community believes gender dysphoria is required to be considered transgender/transsexual.", "links": {"subreddit": ["truscum"]}, "path": {"250-258, T": [[260, 477], [260, 487], [264, 487], [264, 477]]}, "center": {"250-258, T": [262, 482]}}, {"id": 5764, "name": "Miscreation", "description": "He was my son briefly", "links": {"discord": ["BHPZrjDf"]}, "path": {"209": [[1438, -823], [1438, -819], [1442, -819], [1442, -823]]}, "center": {"209": [1440, -821]}}, -{"id": 5765, "name": "Forgotten Turtles", "description": "Forgotten Turtles video game community. Logo designed by CheeseLiker. View list of members here: https://docs.google.com/document/d/1xoguB84Sl2gXH9342HwxVUq-iqlTajzN49wikRrkZho/edit?usp=sharing", "links": {}, "path": {"250-258": [[1002, -55], [1001, -54], [1000, -54], [1000, -48], [1002, -48], [1002, -47], [1004, -47], [1004, -49], [1006, -49], [1006, -50], [1007, -50], [1007, -53], [1006, -53], [1005, -53], [1005, -54], [1004, -54], [1004, -55]]}, "center": {"250-258": [1003, -51]}}, -{"id": 5766, "name": "Neco-Arc Chaos", "description": "Neco-Arc Chaos is a parody character, a Nrvnqsr Chaos-style Neco-Arc.", "links": {"website": ["https://typemoon.fandom.com/wiki/Neco-Arc_Chaos"]}, "path": {"220-258": [[1350, -602], [1357, -606], [1358, -607], [1359, -608], [1361, -609], [1363, -610], [1366, -610], [1372, -610], [1372, -609], [1377, -609], [1377, -608], [1379, -608], [1380, -605], [1379, -599], [1378, -598], [1378, -597], [1380, -597], [1380, -596], [1381, -595], [1382, -593], [1383, -593], [1384, -592], [1381, -592], [1381, -591], [1380, -591], [1380, -590], [1379, -590], [1379, -588], [1380, -588], [1380, -587], [1380, -586], [1381, -586], [1381, -585], [1381, -583], [1382, -583], [1383, -583], [1383, -584], [1384, -584], [1385, -585], [1386, -585], [1387, -585], [1387, -584], [1388, -581], [1387, -580], [1386, -579], [1385, -578], [1384, -577], [1384, -579], [1383, -579], [1382, -579], [1382, -577], [1381, -576], [1380, -575], [1379, -575], [1378, -576], [1377, -577], [1376, -579], [1374, -579], [1374, -580], [1369, -580], [1368, -581], [1367, -582], [1366, -583], [1365, -583], [1364, -582], [1363, -581], [1362, -581], [1361, -580], [1360, -580], [1359, -581], [1359, -582], [1358, -583], [1358, -585], [1357, -586], [1356, -585], [1355, -586], [1354, -587], [1354, -592], [1355, -593], [1355, -596], [1355, -597], [1353, -597], [1352, -599]]}, "center": {"220-258": [1367, -595]}}, -{"id": 5767, "name": "Forgotten Turtles", "description": "Forgotten Turtles video game community. Logo designed by CheeseLiker. View list of members here: https://docs.google.com/document/d/1xoguB84Sl2gXH9342HwxVUq-iqlTajzN49wikRrkZho/edit?usp=sharing", "links": {}, "path": {"250-258": [[-186, 855], [-186, 865], [-176, 865], [-176, 855]]}, "center": {"250-258": [-181, 860]}}, +{"id": 5765, "name": "Forgotten Turtles", "description": "Forgotten Turtles video game community. Logo designed by CheeseLiker. View list of members here: https://docs.google.com/document/d/1xoguB84Sl2gXH9342HwxVUq-iqlTajzN49wikRrkZho/edit?usp=sharing", "links": {}, "path": {"250-258, T": [[1002, -55], [1001, -54], [1000, -54], [1000, -48], [1002, -48], [1002, -47], [1004, -47], [1004, -49], [1006, -49], [1006, -50], [1007, -50], [1007, -53], [1006, -53], [1005, -53], [1005, -54], [1004, -54], [1004, -55]]}, "center": {"250-258, T": [1003, -51]}}, +{"id": 5766, "name": "Neco-Arc Chaos", "description": "Neco-Arc Chaos is a parody character, a Nrvnqsr Chaos-style Neco-Arc.", "links": {"website": ["https://typemoon.fandom.com/wiki/Neco-Arc_Chaos"]}, "path": {"220-258, T": [[1350, -602], [1357, -606], [1358, -607], [1359, -608], [1361, -609], [1363, -610], [1366, -610], [1372, -610], [1372, -609], [1377, -609], [1377, -608], [1379, -608], [1380, -605], [1379, -599], [1378, -598], [1378, -597], [1380, -597], [1380, -596], [1381, -595], [1382, -593], [1383, -593], [1384, -592], [1381, -592], [1381, -591], [1380, -591], [1380, -590], [1379, -590], [1379, -588], [1380, -588], [1380, -587], [1380, -586], [1381, -586], [1381, -585], [1381, -583], [1382, -583], [1383, -583], [1383, -584], [1384, -584], [1385, -585], [1386, -585], [1387, -585], [1387, -584], [1388, -581], [1387, -580], [1386, -579], [1385, -578], [1384, -577], [1384, -579], [1383, -579], [1382, -579], [1382, -577], [1381, -576], [1380, -575], [1379, -575], [1378, -576], [1377, -577], [1376, -579], [1374, -579], [1374, -580], [1369, -580], [1368, -581], [1367, -582], [1366, -583], [1365, -583], [1364, -582], [1363, -581], [1362, -581], [1361, -580], [1360, -580], [1359, -581], [1359, -582], [1358, -583], [1358, -585], [1357, -586], [1356, -585], [1355, -586], [1354, -587], [1354, -592], [1355, -593], [1355, -596], [1355, -597], [1353, -597], [1352, -599]]}, "center": {"220-258, T": [1367, -595]}}, +{"id": 5767, "name": "Forgotten Turtles", "description": "Forgotten Turtles video game community. Logo designed by CheeseLiker. View list of members here: https://docs.google.com/document/d/1xoguB84Sl2gXH9342HwxVUq-iqlTajzN49wikRrkZho/edit?usp=sharing", "links": {}, "path": {"250-258, T": [[-186, 855], [-186, 865], [-176, 865], [-176, 855]]}, "center": {"250-258, T": [-181, 860]}}, {"id": 5768, "name": "Harnaś", "description": "A brand of light lager beer, produced in Poland by Carlsberg Polska SA in Browar Okocim. Its alcohol content is 5.8% vol. (11.8 wt% extract). It is sold in returnable 0.5 l bottles, 0.66 l bottles in the Lidl network and 0.5 l cans.", "links": {"website": ["https://www.piwoharnas.pl/"], "subreddit": ["Poland", "Polska"]}, "path": {"52-57": [[-60, -191], [-54, -187], [-34, -187], [-30, -191], [-28, -230], [-60, -230], [-60, -207]]}, "center": {"52-57": [-44, -214]}}, -{"id": 5769, "name": "White Bag", "description": "This is a Lootbox-like item with very rare items from a 2D MMO with permanent-death mechanics \"Realm of the Mad God\"", "links": {}, "path": {"208-258": [[-734, -867], [-734, -876], [-731, -876], [-726, -871], [-726, -867]]}, "center": {"208-258": [-731, -871]}}, -{"id": 5770, "name": "A declaration of love to my fiancee", "description": "This is a declaration of love from Nel to Shara. Fiancees, highschool sweethearts, eternal lovers.", "links": {}, "path": {"250-258": [[1408, -171], [1408, -176], [1392, -176], [1392, -171]]}, "center": {"250-258": [1400, -173]}}, +{"id": 5769, "name": "White Bag", "description": "This is a Lootbox-like item with very rare items from a 2D MMO with permanent-death mechanics \"Realm of the Mad God\"", "links": {}, "path": {"208-258, T": [[-734, -867], [-734, -876], [-731, -876], [-726, -871], [-726, -867]]}, "center": {"208-258, T": [-731, -871]}}, +{"id": 5770, "name": "A declaration of love to my fiancee", "description": "This is a declaration of love from Nel to Shara. Fiancees, highschool sweethearts, eternal lovers.", "links": {}, "path": {"250-258, T": [[1408, -171], [1408, -176], [1392, -176], [1392, -171]]}, "center": {"250-258, T": [1400, -173]}}, {"id": 5771, "name": "PICO-8", "description": "This is an icon of a retro style game engine called PICO-8", "links": {}, "path": {"202-213": [[1362, 678], [1364, 680], [1366, 678], [1364, 676]]}, "center": {"202-213": [1364, 678]}}, -{"id": 5772, "name": "Georgia", "description": "The country of Georgia (Sakartvelo) as it appears on a map, with the flag of Georgia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Georgia_(country)", "https://en.wikipedia.org/wiki/Flag_of_Georgia_(country)"], "subreddit": ["Sakartvelo", "PlaceEU"]}, "path": {"197-231": [[-159, 750], [-159, 756], [-160, 757], [-160, 759], [-152, 766], [-152, 775], [-149, 776], [-143, 773], [-134, 773], [-128, 768], [-113, 768], [-113, 760], [-122, 760], [-122, 759], [-153, 759], [-153, 755], [-157, 750]], "168-196": [[-155, 757], [-159, 760], [-153, 764], [-151, 767], [-151, 771], [-149, 773], [-145, 773], [-144, 772], [-137, 772], [-130, 764], [-127, 764], [-127, 759], [-130, 759], [-139, 763], [-140, 763], [-141, 762], [-148, 762], [-154, 758]], "232-258": [[-156, 761], [-156, 764], [-152, 769], [-152, 776], [-153, 777], [-153, 780], [-148, 780], [-144, 778], [-144, 776], [-132, 776], [-132, 778], [-129, 778], [-129, 774], [-130, 773], [-130, 768], [-132, 768], [-132, 764], [-145, 764], [-151, 761]]}, "center": {"197-231": [-138, 766], "168-196": [-145, 767], "232-258": [-138, 770]}}, -{"id": 5773, "name": "The Death Star", "description": "The Death Star is a space station and superweapon from the Star Wars series. Constructed by the autocratic Galactic Empire, the Death Star is capable of annihilating entire planets into rubble, showing its might & terror. This art is 2nd model of iteration.", "links": {"website": ["https://en.wikipedia.org/wiki/Death_Star"], "subreddit": ["starwars_place"]}, "path": {"250-258": [[1144, -662], [1142, -660], [1142, -659], [1141, -659], [1141, -649], [1142, -649], [1142, -648], [1143, -647], [1144, -646], [1146, -644], [1147, -643], [1148, -643], [1149, -642], [1150, -642], [1150, -641], [1161, -641], [1161, -643], [1163, -644], [1164, -645], [1165, -646], [1166, -648], [1167, -652], [1168, -657], [1166, -659], [1165, -662], [1163, -663], [1161, -665], [1160, -666], [1159, -666], [1159, -667], [1157, -668], [1151, -667], [1146, -665], [1145, -665], [999, -811], [1000, -806], [1144, -663]]}, "center": {"250-258": [1154, -654]}}, +{"id": 5772, "name": "Georgia", "description": "The country of Georgia (Sakartvelo) as it appears on a map, with the flag of Georgia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Georgia_(country)", "https://en.wikipedia.org/wiki/Flag_of_Georgia_(country)"], "subreddit": ["Sakartvelo", "PlaceEU"]}, "path": {"197-231": [[-159, 750], [-159, 756], [-160, 757], [-160, 759], [-152, 766], [-152, 775], [-149, 776], [-143, 773], [-134, 773], [-128, 768], [-113, 768], [-113, 760], [-122, 760], [-122, 759], [-153, 759], [-153, 755], [-157, 750]], "168-196": [[-155, 757], [-159, 760], [-153, 764], [-151, 767], [-151, 771], [-149, 773], [-145, 773], [-144, 772], [-137, 772], [-130, 764], [-127, 764], [-127, 759], [-130, 759], [-139, 763], [-140, 763], [-141, 762], [-148, 762], [-154, 758]], "232-258, T": [[-156, 761], [-156, 764], [-152, 769], [-152, 776], [-153, 777], [-153, 780], [-148, 780], [-144, 778], [-144, 776], [-132, 776], [-132, 778], [-129, 778], [-129, 774], [-130, 773], [-130, 768], [-132, 768], [-132, 764], [-145, 764], [-151, 761]]}, "center": {"197-231": [-138, 766], "168-196": [-145, 767], "232-258, T": [-138, 770]}}, +{"id": 5773, "name": "The Death Star", "description": "The Death Star is a space station and superweapon from the Star Wars series. Constructed by the autocratic Galactic Empire, the Death Star is capable of annihilating entire planets into rubble, showing its might & terror. This art is 2nd model of iteration.", "links": {"website": ["https://en.wikipedia.org/wiki/Death_Star"], "subreddit": ["starwars_place"]}, "path": {"250-258, T": [[1144, -662], [1142, -660], [1142, -659], [1141, -659], [1141, -649], [1142, -649], [1142, -648], [1143, -647], [1144, -646], [1146, -644], [1147, -643], [1148, -643], [1149, -642], [1150, -642], [1150, -641], [1161, -641], [1161, -643], [1163, -644], [1164, -645], [1165, -646], [1166, -648], [1167, -652], [1168, -657], [1166, -659], [1165, -662], [1163, -663], [1161, -665], [1160, -666], [1159, -666], [1159, -667], [1157, -668], [1151, -667], [1146, -665], [1145, -665], [999, -811], [1000, -806], [1144, -663]]}, "center": {"250-258, T": [1154, -654]}}, {"id": 5774, "name": "31 Minutos", "description": "31 minutos (English: 31 minutes) is a Chilean comedy television series and a children's music virtual band created by the production company Aplaplac that began to be transmitted on March 15, 2003 by the signal of Televisión Nacional de Chile (TVN). It focuses on the adventures of the team of a news program of little prestige in which something unexpected always happens, whose presenter is Tulio Triviño.\n\nPart of the program's success lies in its script and characters, with hidden references to Chile's social reality. It has also been successful among young and adult audiences: the double entendre that it handles is manifested, for example, in the fact that the puppets are ironic imitations of real Chilean television characters, and recall events or television events that characterized Chile in the 1970s and 1980s.", "links": {"website": ["https://31minutosoficial.cl/"], "subreddit": ["31minutos", "chile"]}, "path": {"27-45": [[55, 479], [55, 500], [31, 500], [31, 479]]}, "center": {"27-45": [43, 490]}}, -{"id": 5775, "name": "Darth Vader", "description": "Darth Vader is one of the main antagonists in the Star Wars series. Inside the mask is Anakin Skywalker, a young Jedi Knight who was fallen to the Dark Side of the Force and later brought Balance. He is one of the most iconic badass villains in pop culture and his mask is one of the most iconic character designs of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Darth_Vader", "https://starwars.fandom.com/wiki/Anakin_Skywalker"], "subreddit": ["starwars_place"], "discord": ["TheGalacticRepublic"]}, "path": {"208-253": [[1088, -637], [1083, -636], [1081, -633], [1080, -625], [1079, -623], [1079, -619], [1097, -619], [1097, -623], [1096, -623], [1096, -626], [1095, -626], [1095, -629], [1093, -629], [1094, -633], [1093, -634], [1092, -635], [1092, -636], [1091, -636]]}, "center": {"208-253": [1087, -626]}}, -{"id": 5776, "name": "Novak Đoković", "description": "This tennis ball symbolizes Serbian tennis player Novak Đoković, one of the highest-ranked tennis players in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Novak_Djokovic"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"139-160": [[-613, 258], [-613, 272], [-604, 272], [-604, 264], [-603, 264], [-601, 262], [-601, 260], [-603, 258]], "161-258": [[-606, 260], [-605, 260], [-604, 260], [-603, 260], [-602, 260], [-601, 261], [-600, 261], [-599, 262], [-598, 263], [-597, 264], [-596, 265], [-596, 266], [-595, 267], [-595, 268], [-595, 269], [-595, 270], [-595, 271], [-596, 272], [-596, 273], [-597, 274], [-598, 275], [-599, 276], [-600, 277], [-601, 277], [-602, 278], [-603, 278], [-604, 278], [-605, 278], [-606, 278], [-607, 277], [-608, 277], [-609, 276], [-610, 275], [-611, 274], [-612, 273], [-612, 272], [-613, 271], [-613, 270], [-613, 269], [-613, 268], [-613, 267], [-612, 266], [-611, 265], [-612, 265], [-611, 264], [-610, 263], [-609, 262], [-608, 261], [-607, 261]]}, "center": {"139-160": [-608, 266], "161-258": [-604, 269]}}, +{"id": 5775, "name": "Darth Vader", "description": "Darth Vader is one of the main antagonists in the Star Wars series. Inside the mask is Anakin Skywalker, a young Jedi Knight who was fallen to the Dark Side of the Force and later brought Balance. He is one of the most iconic badass villains in pop culture and his mask is one of the most iconic character designs of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Darth_Vader", "https://starwars.fandom.com/wiki/Anakin_Skywalker"], "subreddit": ["starwars_place"], "discord": ["TheGalacticRepublic"]}, "path": {"208-253, T": [[1088, -637], [1083, -636], [1081, -633], [1080, -625], [1079, -623], [1079, -619], [1097, -619], [1097, -623], [1096, -623], [1096, -626], [1095, -626], [1095, -629], [1093, -629], [1094, -633], [1093, -634], [1092, -635], [1092, -636], [1091, -636]]}, "center": {"208-253, T": [1087, -626]}}, +{"id": 5776, "name": "Novak Đoković", "description": "This tennis ball symbolizes Serbian tennis player Novak Đoković, one of the highest-ranked tennis players in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Novak_Djokovic"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"139-160": [[-613, 258], [-613, 272], [-604, 272], [-604, 264], [-603, 264], [-601, 262], [-601, 260], [-603, 258]], "161-258, T": [[-606, 260], [-605, 260], [-604, 260], [-603, 260], [-602, 260], [-601, 261], [-600, 261], [-599, 262], [-598, 263], [-597, 264], [-596, 265], [-596, 266], [-595, 267], [-595, 268], [-595, 269], [-595, 270], [-595, 271], [-596, 272], [-596, 273], [-597, 274], [-598, 275], [-599, 276], [-600, 277], [-601, 277], [-602, 278], [-603, 278], [-604, 278], [-605, 278], [-606, 278], [-607, 277], [-608, 277], [-609, 276], [-610, 275], [-611, 274], [-612, 273], [-612, 272], [-613, 271], [-613, 270], [-613, 269], [-613, 268], [-613, 267], [-612, 266], [-611, 265], [-612, 265], [-611, 264], [-610, 263], [-609, 262], [-608, 261], [-607, 261]]}, "center": {"139-160": [-608, 266], "161-258, T": [-604, 269]}}, {"id": 5777, "name": "The HAT DACK Family", "description": "A duck with hat have childrenn!!!!", "links": {"subreddit": ["Pato_con_sombrero"]}, "path": {"218": [[793, -68], [823, -70], [840, -69], [849, -54], [792, -54], [791, -60], [792, -68]]}, "center": {"218": [818, -62]}}, -{"id": 5778, "name": "Neco-Arc (Nordflagge)", "description": "Neco-Arc is a Neco Spirit appearing in the Tsukihime visual novel series. She is a pint-size cat girl parody of Arcueid Brunestud, acting as the mascot character of Type-Moon.\n\nThere's TWO of them Can be found on Mittelflagge and Germany Flag / Extension of the Middle.", "links": {"website": ["https://typemoon.fandom.com/wiki/Neco-Arc"], "subreddit": ["necoarc"]}, "path": {"209-258": [[-68, -992], [-63, -993], [-62, -993], [-62, -995], [-58, -995], [-58, -996], [-49, -995], [-49, -994], [-43, -994], [-41, -995], [-41, -993], [-42, -991], [-43, -986], [-42, -986], [-42, -980], [-43, -977], [-44, -978], [-45, -980], [-46, -978], [-47, -976], [-48, -977], [-49, -978], [-50, -977], [-51, -975], [-55, -975], [-58, -976], [-59, -977], [-60, -976], [-62, -976], [-63, -979], [-64, -977], [-65, -976], [-66, -977], [-66, -983], [-65, -987], [-66, -987]]}, "center": {"209-258": [-55, -986]}}, +{"id": 5778, "name": "Neco-Arc (Nordflagge)", "description": "Neco-Arc is a Neco Spirit appearing in the Tsukihime visual novel series. She is a pint-size cat girl parody of Arcueid Brunestud, acting as the mascot character of Type-Moon.\n\nThere's TWO of them Can be found on Mittelflagge and Germany Flag / Extension of the Middle.", "links": {"website": ["https://typemoon.fandom.com/wiki/Neco-Arc"], "subreddit": ["necoarc"]}, "path": {"209-258, T": [[-68, -992], [-63, -993], [-62, -993], [-62, -995], [-58, -995], [-58, -996], [-49, -995], [-49, -994], [-43, -994], [-41, -995], [-41, -993], [-42, -991], [-43, -986], [-42, -986], [-42, -980], [-43, -977], [-44, -978], [-45, -980], [-46, -978], [-47, -976], [-48, -977], [-49, -978], [-50, -977], [-51, -975], [-55, -975], [-58, -976], [-59, -977], [-60, -976], [-62, -976], [-63, -979], [-64, -977], [-65, -976], [-66, -977], [-66, -983], [-65, -987], [-66, -987]]}, "center": {"209-258, T": [-55, -986]}}, {"id": 5779, "name": "Deeeep.io logo", "description": "Deeeep.io is a multiplayer online browser game released in 2016 that takes place in the depths of the ocean. In the game, you start as a fish, and eat XP sources (food and other players) to evolve into new animals. \n\nSeveral biomes exist in the game, including the Ocean, Reef, Kelp Forest, Arctic Ocean, Estuary, Swamp, and Lake. Each of these biomes has its own unique evolutions and XP sources. A variety of animals exist in the game, from sharks to birds, whales, and turtles.\n\nThis artwork depicts a Tier 10 shark chasing a Tier 1 clownfish, which is the website's logo.", "links": {"website": ["https://beta.deeeep.io/"], "subreddit": ["deeeepio"], "discord": ["deeeepio"]}, "path": {"4-21": [[164, 329], [148, 329], [148, 345], [151, 348], [164, 348]]}, "center": {"4-21": [156, 339]}}, -{"id": 5780, "name": "Fumos Ibéricos", "description": "A small Portuguese community dedicated to the discussion of cannabis in Portugal", "links": {"subreddit": ["FumosIbericos"]}, "path": {"250-258": [[470, 336], [487, 333], [480, 354]]}, "center": {"250-258": [479, 340]}}, +{"id": 5780, "name": "Fumos Ibéricos", "description": "A small Portuguese community dedicated to the discussion of cannabis in Portugal", "links": {"subreddit": ["FumosIbericos"]}, "path": {"250-258, T": [[470, 336], [487, 333], [480, 354]]}, "center": {"250-258, T": [479, 340]}}, {"id": 5781, "name": "Papoulo The Penguin", "description": "A great and cool penguin with Sunglases", "links": {"subreddit": ["papoulas"]}, "path": {"202": [[-963, -1000], [-963, -983], [-946, -983], [-946, -1000]]}, "center": {"202": [-954, -991]}}, -{"id": 5782, "name": "Teach", "description": "Teach is the main character from Teach the Cat (ねこのティーチくん). It's a japanese web series that was made by oyasainoni9 and is currently available to watch on YouTube. It contains very heavy topics and imagery.", "links": {"website": ["https://youtube.com/playlist?list=PL53EcsT_0J1yFG4XY0k_cZzAO-qG5XnTH"], "subreddit": ["TeachTheCat"]}, "path": {"152-215": [[-489, -131], [-489, -127], [-486, -127], [-486, -129], [-485, -129], [-487, -129], [-487, -131], [-487, -130], [-489, -130]], "112-151": [[-486, -127], [-488, -127], [-488, -129], [-489, -129], [-489, -131], [-489, -130], [-487, -130], [-487, -131], [-487, -128], [-486, -128]], "216-258": [[-489, -131], [-489, -127], [-486, -127], [-486, -129], [-485, -129], [-485, -130], [-485, -129], [-487, -129], [-487, -131], [-487, -130], [-489, -130]]}, "center": {"152-215": [-488, -128], "112-151": [-487, -128], "216-258": [-488, -128]}}, +{"id": 5782, "name": "Teach", "description": "Teach is the main character from Teach the Cat (ねこのティーチくん). It's a japanese web series that was made by oyasainoni9 and is currently available to watch on YouTube. It contains very heavy topics and imagery.", "links": {"website": ["https://youtube.com/playlist?list=PL53EcsT_0J1yFG4XY0k_cZzAO-qG5XnTH"], "subreddit": ["TeachTheCat"]}, "path": {"152-215": [[-489, -131], [-489, -127], [-486, -127], [-486, -129], [-485, -129], [-487, -129], [-487, -131], [-487, -130], [-489, -130]], "112-151": [[-486, -127], [-488, -127], [-488, -129], [-489, -129], [-489, -131], [-489, -130], [-487, -130], [-487, -131], [-487, -128], [-486, -128]], "216-258, T": [[-489, -131], [-489, -127], [-486, -127], [-486, -129], [-485, -129], [-485, -130], [-485, -129], [-487, -129], [-487, -131], [-487, -130], [-489, -130]]}, "center": {"152-215": [-488, -128], "112-151": [-487, -128], "216-258, T": [-488, -128]}}, {"id": 5783, "name": "Patapon", "description": "A eyeball meant to represent the Patapon species from the game series of the same name\n\nDue the the community's small size and unlucky placement they quickly gave up", "links": {"subreddit": ["Patapon"]}, "path": {"157-183": [[665, 612], [659, 612], [655, 617], [656, 620], [659, 624], [663, 624], [665, 621], [667, 618], [667, 613], [664, 611]]}, "center": {"157-183": [661, 618]}}, -{"id": 5784, "name": "Siberian Republic flag", "description": "The Siberian Republic (July 17, 1918 – November 3, 1918) was an unrecognized short-living state that existed on the territory of Russia during the Russian Civil War (1917-1923).\nThe Russian invasion of Ukraine caused a new rise in separatist, decolonization activities in the country, to oppose destructive consequences of Russian imperialism. Free Nations of Post-Russia Forum was founded, and many independent states were proposed, including Siberia. Albeit proposed flags not necessarily match with historical ones.", "links": {"website": ["https://en.wikipedia.org/wiki/Siberian_Republic_(1918)", "https://en.wikipedia.org/wiki/Separatism_in_Russia#Siberia", "https://en.wikipedia.org/wiki/Russian_imperialism", "https://en.wikipedia.org/wiki/Free_Nations_of_Post-Russia_Forum", "https://en.wikipedia.org/wiki/Hypothetical_dissolution_of_the_Russian_Federation#Consequences_of_the_2022_Russian_invasion_of_Ukraine"]}, "path": {"245-258": [[185, 126], [192, 126], [192, 130], [185, 130]]}, "center": {"245-258": [189, 128]}}, +{"id": 5784, "name": "Siberian Republic flag", "description": "The Siberian Republic (July 17, 1918 – November 3, 1918) was an unrecognized short-living state that existed on the territory of Russia during the Russian Civil War (1917-1923).\nThe Russian invasion of Ukraine caused a new rise in separatist, decolonization activities in the country, to oppose destructive consequences of Russian imperialism. Free Nations of Post-Russia Forum was founded, and many independent states were proposed, including Siberia. Albeit proposed flags not necessarily match with historical ones.", "links": {"website": ["https://en.wikipedia.org/wiki/Siberian_Republic_(1918)", "https://en.wikipedia.org/wiki/Separatism_in_Russia#Siberia", "https://en.wikipedia.org/wiki/Russian_imperialism", "https://en.wikipedia.org/wiki/Free_Nations_of_Post-Russia_Forum", "https://en.wikipedia.org/wiki/Hypothetical_dissolution_of_the_Russian_Federation#Consequences_of_the_2022_Russian_invasion_of_Ukraine"]}, "path": {"245-258, T": [[185, 126], [192, 126], [192, 130], [185, 130]]}, "center": {"245-258, T": [189, 128]}}, {"id": 5785, "name": "TorebeCP", "description": "Minecraft YouTuber who focuses on old versions of Minecraft. He's playing all versions starting from Beta 1.3_01.", "links": {"website": ["https://www.youtube.com/@TorebeCP"]}, "path": {"256-258": [[-1005, -454], [-1005, -450], [-1001, -450], [-1001, -454]]}, "center": {"256-258": [-1003, -452]}}, {"id": 5786, "name": "r/RDTTR emblem", "description": "The unfinished version of the sickle-pencil-hammer and star symbol of the Turkish socialist group r/RDTTR.", "links": {"subreddit": ["RDTTR"], "discord": ["w7KWGkREUf"]}, "path": {"217": [[-1362, 597], [-1362, 589], [-1352, 589], [-1352, 613], [-1367, 613], [-1367, 589], [-1363, 589]]}, "center": {"217": [-1359, 604]}}, -{"id": 5787, "name": "DNF Blobs", "description": "Pixel art of the ship between Minecraft youtubers \"Dream\" and \"Georgenotfound\" as their simplified \"blob\" versions, with their shipping flag behind them.", "links": {"website": ["https://shipping.fandom.com/wiki/DreamNotFound"]}, "path": {"250-258": [[1431, 716], [1445, 716], [1445, 735], [1431, 735]]}, "center": {"250-258": [1438, 726]}}, +{"id": 5787, "name": "DNF Blobs", "description": "Pixel art of the ship between Minecraft youtubers \"Dream\" and \"Georgenotfound\" as their simplified \"blob\" versions, with their shipping flag behind them.", "links": {"website": ["https://shipping.fandom.com/wiki/DreamNotFound"]}, "path": {"250-258, T": [[1431, 716], [1445, 716], [1445, 735], [1431, 735]]}, "center": {"250-258, T": [1438, 726]}}, {"id": 5788, "name": "Censopapa (Pope John Paul II)", "description": "A depiction of Polish pope John Paul II in a form of a meme named \"Censopapa\" which is very prominent in Polish meme culture.\nThe pope himself was a head of the Catholic Church 1978 - 2005", "links": {"website": ["https://en.wikipedia.org/wiki/Pope_John_Paul_II", "https://knowyourmeme.com/memes/censopapa-cenzopapa"]}, "path": {"155-211": [[811, -145], [821, -145], [827, -138], [826, -128], [825, -125], [825, -123], [829, -122], [837, -115], [838, -110], [839, -108], [839, -107], [836, -101], [833, -98], [833, -94], [827, -91], [822, -91], [821, -90], [819, -88], [813, -89], [806, -90], [799, -92], [794, -97], [794, -111], [794, -116], [806, -124], [806, -127], [804, -131], [806, -133], [804, -136], [810, -145]]}, "center": {"155-211": [814, -107]}}, -{"id": 5789, "name": "Ukraine", "description": "The country of Ukraine as it appears on a map, with the flag of Ukraine as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine", "ukraine", "PlaceEU"], "discord": ["fMf7RJBMw6"]}, "path": {"158-258": [[-183, 726], [-183, 728], [-187, 728], [-192, 733], [-192, 734], [-212, 736], [-215, 739], [-215, 743], [-213, 744], [-213, 751], [-216, 754], [-216, 755], [-214, 758], [-207, 758], [-199, 753], [-194, 753], [-191, 754], [-187, 758], [-189, 761], [-190, 764], [-189, 766], [-186, 766], [-185, 765], [-184, 763], [-184, 760], [-183, 760], [-183, 758], [-180, 758], [-180, 760], [-175, 760], [-174, 761], [-176, 763], [-175, 766], [-173, 766], [-171, 767], [-170, 767], [-167, 764], [-165, 763], [-166, 761], [-167, 762], [-170, 762], [-170, 760], [-168, 757], [-165, 754], [-163, 755], [-161, 751], [-156, 750], [-154, 748], [-154, 729], [-174, 729], [-177, 727], [-180, 726], [-182, 727]]}, "center": {"158-258": [-180, 743]}}, +{"id": 5789, "name": "Ukraine", "description": "The country of Ukraine as it appears on a map, with the flag of Ukraine as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine", "ukraine", "PlaceEU"], "discord": ["fMf7RJBMw6"]}, "path": {"158-258, T": [[-183, 726], [-183, 728], [-187, 728], [-192, 733], [-192, 734], [-212, 736], [-215, 739], [-215, 743], [-213, 744], [-213, 751], [-216, 754], [-216, 755], [-214, 758], [-207, 758], [-199, 753], [-194, 753], [-191, 754], [-187, 758], [-189, 761], [-190, 764], [-189, 766], [-186, 766], [-185, 765], [-184, 763], [-184, 760], [-183, 760], [-183, 758], [-180, 758], [-180, 760], [-175, 760], [-174, 761], [-176, 763], [-175, 766], [-173, 766], [-171, 767], [-170, 767], [-167, 764], [-165, 763], [-166, 761], [-167, 762], [-170, 762], [-170, 760], [-168, 757], [-165, 754], [-163, 755], [-161, 751], [-156, 750], [-154, 748], [-154, 729], [-174, 729], [-177, 727], [-180, 726], [-182, 727]]}, "center": {"158-258, T": [-180, 743]}}, {"id": 5790, "name": "THE YELLOW SUN", "description": "JOIN US NOW!!!\n\nWE'RE MAKING A BIG YELLOW SUN!!!", "links": {"discord": ["pZyV2gJYZB"]}, "path": {"5-14": [[49, 355], [30, 355], [30, 367], [49, 367], [49, 362]]}, "center": {"5-14": [40, 361]}}, -{"id": 5791, "name": "The rat army", "description": "An effort by the small subreddit r/RATS to make their mark on r/place. This effort was spearheaded by u/animeobsessee and taken over by the users of r/RATS and rat-instagram with protection assitance from France and Germany (though not officially). \n\nThis army originally started as a single rat placed by u/animeobsessee after several failed attempts of a larger project in another part of the map. The army grew and consisted of as many as 12.5 rats. \n\nOne rat discovered his passion for cooking through his life in France beneath the Arc de Triomphe and gained a chefs hat near the end of r/Place, and another (his Sous Chef) discovered their identity and compleated their transition to a trans-beaver.", "links": {"subreddit": ["RATS"]}, "path": {"79-258": [[-477, 181], [-399, 182], [-400, 192], [-476, 191]]}, "center": {"79-258": [-464, 186]}}, -{"id": 5793, "name": "Vanilly", "description": "A small Minecraft Survival and Lifesteal Server for both Java and Bedrock.\n\nIP Adress: play.vanillymc.net\nBedrock Port: 19132", "links": {"website": ["https://vanillymc.net/"], "discord": ["vanilly"]}, "path": {"222-229": [[982, 235], [984, 235], [985, 234], [985, 233], [986, 232], [986, 231], [987, 230], [987, 226], [986, 225], [984, 225], [983, 226], [982, 225], [980, 225], [979, 226], [979, 228], [979, 230], [980, 231], [980, 232], [981, 233], [981, 234]], "218-221": [[979, 216], [979, 220], [980, 221], [980, 222], [981, 223], [981, 224], [982, 225], [984, 225], [985, 224], [985, 223], [986, 222], [986, 221], [987, 220], [987, 216], [986, 215], [984, 215], [983, 216], [982, 215], [980, 215]], "207-217": [[981, 205], [983, 205], [984, 204], [984, 203], [985, 202], [985, 201], [986, 200], [986, 196], [985, 195], [983, 195], [982, 196], [981, 195], [979, 195], [978, 196], [978, 199], [979, 201]], "230-258": [[981, 230], [981, 234], [982, 235], [982, 236], [983, 237], [983, 238], [984, 239], [986, 239], [987, 238], [987, 237], [988, 236], [988, 235], [989, 234], [989, 230], [988, 229], [986, 230], [986, 229], [985, 230], [984, 229], [982, 229]]}, "center": {"222-229": [983, 229], "218-221": [983, 219], "207-217": [982, 199], "230-258": [985, 233]}}, +{"id": 5791, "name": "The rat army", "description": "An effort by the small subreddit r/RATS to make their mark on r/place. This effort was spearheaded by u/animeobsessee and taken over by the users of r/RATS and rat-instagram with protection assitance from France and Germany (though not officially). \n\nThis army originally started as a single rat placed by u/animeobsessee after several failed attempts of a larger project in another part of the map. The army grew and consisted of as many as 12.5 rats. \n\nOne rat discovered his passion for cooking through his life in France beneath the Arc de Triomphe and gained a chefs hat near the end of r/Place, and another (his Sous Chef) discovered their identity and compleated their transition to a trans-beaver.", "links": {"subreddit": ["RATS"]}, "path": {"79-258, T": [[-477, 181], [-399, 182], [-400, 192], [-476, 191]]}, "center": {"79-258, T": [-464, 186]}}, +{"id": 5793, "name": "Vanilly", "description": "A small Minecraft Survival and Lifesteal Server for both Java and Bedrock.\n\nIP Adress: play.vanillymc.net\nBedrock Port: 19132", "links": {"website": ["https://vanillymc.net/"], "discord": ["vanilly"]}, "path": {"222-229": [[982, 235], [984, 235], [985, 234], [985, 233], [986, 232], [986, 231], [987, 230], [987, 226], [986, 225], [984, 225], [983, 226], [982, 225], [980, 225], [979, 226], [979, 228], [979, 230], [980, 231], [980, 232], [981, 233], [981, 234]], "218-221": [[979, 216], [979, 220], [980, 221], [980, 222], [981, 223], [981, 224], [982, 225], [984, 225], [985, 224], [985, 223], [986, 222], [986, 221], [987, 220], [987, 216], [986, 215], [984, 215], [983, 216], [982, 215], [980, 215]], "207-217": [[981, 205], [983, 205], [984, 204], [984, 203], [985, 202], [985, 201], [986, 200], [986, 196], [985, 195], [983, 195], [982, 196], [981, 195], [979, 195], [978, 196], [978, 199], [979, 201]], "230-258, T": [[981, 230], [981, 234], [982, 235], [982, 236], [983, 237], [983, 238], [984, 239], [986, 239], [987, 238], [987, 237], [988, 236], [988, 235], [989, 234], [989, 230], [988, 229], [986, 230], [986, 229], [985, 230], [984, 229], [982, 229]]}, "center": {"222-229": [983, 229], "218-221": [983, 219], "207-217": [982, 199], "230-258, T": [985, 233]}}, {"id": 5794, "name": "Pizza", "description": "one pizza with peperoni", "links": {}, "path": {"248": [[-1390, 743], [-1382, 743], [-1382, 742], [-1381, 742], [-1381, 741], [-1380, 741], [-1380, 740], [-1379, 740], [-1379, 739], [-1377, 739], [-1377, 738], [-1374, 738], [-1374, 736], [-1373, 736], [-1373, 733], [-1375, 733], [-1374, 732], [-1375, 732], [-1375, 731], [-1376, 731], [-1376, 730], [-1377, 730], [-1377, 728], [-1380, 730], [-1381, 730], [-1379, 728], [-1379, 727], [-1380, 727], [-1380, 726], [-1383, 726], [-1383, 727], [-1384, 727], [-1384, 730], [-1384, 731], [-1385, 731], [-1385, 734], [-1386, 734], [-1386, 736], [-1387, 736], [-1387, 737], [-1388, 737], [-1388, 738], [-1388, 739], [-1389, 739], [-1389, 740], [-1390, 740], [-1390, 741], [-1391, 741], [-1391, 742], [-1390, 742]]}, "center": {"248": [-1381, 735]}}, -{"id": 5795, "name": "JVC 18-25 Forum", "description": "The \"Blabla 18-25 ans\" forum (French for: \"Blabla 18-25 years old\"), on the jeuxvideo.com website, is one of the largest French-speaking forums. It almost constantly shows more than a thousand connected users.\nThe smiley faces represented here are some of the most popular smileys used on jeuxvideo.com.", "links": {"website": ["https://www.jeuxvideo.com/forums/0-51-0-1-0-1-0-blabla-18-25-ans.htm"], "discord": ["HCCdr4fR"]}, "path": {"121-258": [[-864, -248], [-861, -251], [-858, -252], [-858, -254], [-850, -254], [-850, -227], [-854, -222], [-859, -222], [-863, -225], [-863, -226], [-864, -227]]}, "center": {"121-258": [-857, -238]}}, -{"id": 5796, "name": "Dead Crewmate", "description": "A dead crewmate from Among Us.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Among_Us"]}, "path": {"177-258": [[969, 236], [968, 237], [968, 244], [969, 245], [970, 246], [971, 246], [972, 245], [973, 244], [975, 244], [976, 245], [977, 246], [978, 246], [979, 245], [980, 244], [980, 243], [981, 243], [982, 242], [983, 241], [983, 237], [982, 236], [981, 235], [978, 235], [977, 234], [978, 233], [977, 232], [976, 231], [975, 230], [974, 231], [973, 230], [972, 231], [971, 232], [970, 233], [971, 234], [970, 235], [969, 236], [968, 237], [971, 234]]}, "center": {"177-258": [974, 239]}}, -{"id": 5797, "name": "Intel the Dog", "description": "Kamil's dog :)", "links": {}, "path": {"250-258": [[309, -934], [306, -931], [306, -928], [308, -928], [308, -920], [320, -920], [320, -928], [319, -929], [318, -928], [318, -926], [314, -926], [314, -928], [316, -928], [316, -931], [313, -934]]}, "center": {"250-258": [311, -930]}}, -{"id": 5798, "name": "UNICAY", "description": "Unicay is a very charismatic streamer and video editor.\nHe used to do splatoon animations on Gmod for his YouTube channel and was known to that community\n\nAlthough he made his videos private, he has a collaboration with another splatoon animator 👇", "links": {"website": ["https://youtu.be/MBgHRVuge0k?t=248"]}, "path": {"155-159": [[349, -803], [353, -803], [353, -798], [349, -798]], "247-258": [[1499, 545], [1495, 545], [1495, 538], [1499, 538], [1499, 544]]}, "center": {"155-159": [351, -800], "247-258": [1497, 542]}}, -{"id": 5799, "name": "Screwball", "description": "Screwball was a background pony seen in the season 2 episode of MLP:FiM, 'Return of Harmony'. Her unique design gained the fandom's attention and inspired classic fanworks.", "links": {"website": ["https://mlp.fandom.com/wiki/Screwball"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"250-258": [[-1062, 273], [-1062, 276], [-1060, 277], [-1058, 278], [-1057, 279], [-1053, 284], [-1053, 286], [-1046, 287], [-1043, 283], [-1043, 281], [-1041, 278], [-1039, 278], [-1036, 275], [-1036, 273]]}, "center": {"250-258": [-1049, 279]}}, -{"id": 5800, "name": "Ukrainian borscht", "description": "Ukrainian borscht is a traditional dish that is cooked with broth combined with beetroot, sugar beet or fermented beet juice. There are many versions, and the practice entails the recipe, cooking method and occasion, according to which a certain variety is prepared. \n\nBorscht is cooked in a large pan or pot and typically served with bread or garlic buns. It is prepared primarily by women, although many men also prepare it as an everyday dish. The practice dates back centuries and is passed on within families, with children participating in the preparation. \n\nAn expression of hospitality, Ukrainian borscht unites people of all ages, genders and backgrounds at the table. It is also used in ritual practices, such as in the region of Podillia, where the third day of the wedding has maintained its ritual name do nevistky – na borshch, meaning 'visit daughter-in-law to eat borscht'. It is lauded in tales, folk songs and proverbs and viewed as a lifestyle and identity marker. \n\nThe viability of the element, however, is threatened by various factors since the beginning of the armed conflict in February 2022, including the displacement of bearers from their communities of origin and from the cultural contexts necessary for the cooking and consumption of borscht in Ukraine. Moreover, destruction to the surrounding environment and traditional agriculture has prevented communities from accessing local products, such as vegetables, needed to prepare the dish. Despite these difficulties, communities across Ukraine have united around the element.", "links": {"website": ["https://ich.unesco.org/en/USL/culture-of-ukrainian-borscht-cooking-01852"], "subreddit": ["placeUkraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"169-189": [[-190, -87], [-190, -84], [-189, -82], [-187, -81], [-185, -80], [-184, -79], [-181, -79], [-178, -80], [-176, -82], [-174, -85], [-174, -88], [-178, -90], [-180, -91], [-185, -91], [-188, -89]], "190-258": [[-191, -79], [-194, -79], [-195, -80], [-196, -80], [-199, -83], [-200, -84], [-200, -88], [-199, -88], [-197, -90], [-197, -93], [-195, -95], [-194, -94], [-195, -93], [-195, -91], [-193, -91], [-193, -94], [-192, -95], [-191, -96], [-190, -95], [-191, -94], [-191, -91], [-189, -91], [-189, -93], [-188, -94], [-187, -94], [-188, -93], [-188, -91], [-184, -87], [-184, -86], [-185, -86], [-185, -85], [-188, -85], [-190, -83], [-191, -82], [-191, -79], [-194, -79]]}, "center": {"169-189": [-182, -85], "190-258": [-194, -86]}}, -{"id": 5801, "name": "IFF (Corsican nationalist slogan)", "description": "\"IFF\" (fully speeled out : I Francesi Fora, in english : the French out) is a Corsican nationalist slogan against the French, there is also another quite similar to \"IFF\" wich is \"AFF\" (fully speeled out : A Francia Fora, in english : France out)", "links": {"subreddit": ["placeCorse"], "discord": ["5zBBNrAJbN"]}, "path": {"163-258": [[-126, 486], [-126, 482], [-120, 482], [-120, 486]]}, "center": {"163-258": [-123, 484]}}, -{"id": 5802, "name": "Czech Republic", "description": "The country of the Czech Republic (Czechia) as it appears on a map, with the flag of the Czech Republic as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Czech_Republic", "https://en.wikipedia.org/wiki/Flag_of_the_Czech_Republic"], "subreddit": ["czech", "PlaceEU"], "discord": ["95fmfxNv"]}, "path": {"158-258": [[-251, 754], [-245, 759], [-235, 758], [-232, 753], [-239, 748], [-244, 746], [-253, 750]]}, "center": {"158-258": [-243, 753]}}, +{"id": 5795, "name": "JVC 18-25 Forum", "description": "The \"Blabla 18-25 ans\" forum (French for: \"Blabla 18-25 years old\"), on the jeuxvideo.com website, is one of the largest French-speaking forums. It almost constantly shows more than a thousand connected users.\nThe smiley faces represented here are some of the most popular smileys used on jeuxvideo.com.", "links": {"website": ["https://www.jeuxvideo.com/forums/0-51-0-1-0-1-0-blabla-18-25-ans.htm"], "discord": ["HCCdr4fR"]}, "path": {"121-258, T": [[-864, -248], [-861, -251], [-858, -252], [-858, -254], [-850, -254], [-850, -227], [-854, -222], [-859, -222], [-863, -225], [-863, -226], [-864, -227]]}, "center": {"121-258, T": [-857, -238]}}, +{"id": 5796, "name": "Dead Crewmate", "description": "A dead crewmate from Among Us.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Among_Us"]}, "path": {"177-258, T": [[969, 236], [968, 237], [968, 244], [969, 245], [970, 246], [971, 246], [972, 245], [973, 244], [975, 244], [976, 245], [977, 246], [978, 246], [979, 245], [980, 244], [980, 243], [981, 243], [982, 242], [983, 241], [983, 237], [982, 236], [981, 235], [978, 235], [977, 234], [978, 233], [977, 232], [976, 231], [975, 230], [974, 231], [973, 230], [972, 231], [971, 232], [970, 233], [971, 234], [970, 235], [969, 236], [968, 237], [971, 234]]}, "center": {"177-258, T": [974, 239]}}, +{"id": 5797, "name": "Intel the Dog", "description": "Kamil's dog :)", "links": {}, "path": {"250-258, T": [[309, -934], [306, -931], [306, -928], [308, -928], [308, -920], [320, -920], [320, -928], [319, -929], [318, -928], [318, -926], [314, -926], [314, -928], [316, -928], [316, -931], [313, -934]]}, "center": {"250-258, T": [311, -930]}}, +{"id": 5798, "name": "UNICAY", "description": "Unicay is a very charismatic streamer and video editor.\nHe used to do splatoon animations on Gmod for his YouTube channel and was known to that community\n\nAlthough he made his videos private, he has a collaboration with another splatoon animator 👇", "links": {"website": ["https://youtu.be/MBgHRVuge0k?t=248"]}, "path": {"155-159": [[349, -803], [353, -803], [353, -798], [349, -798]], "247-258, T": [[1499, 545], [1495, 545], [1495, 538], [1499, 538], [1499, 544]]}, "center": {"155-159": [351, -800], "247-258, T": [1497, 542]}}, +{"id": 5799, "name": "Screwball", "description": "Screwball was a background pony seen in the season 2 episode of MLP:FiM, 'Return of Harmony'. Her unique design gained the fandom's attention and inspired classic fanworks.", "links": {"website": ["https://mlp.fandom.com/wiki/Screwball"], "subreddit": ["mylittlepony"], "discord": ["adQYFgeVC9"]}, "path": {"250-258, T": [[-1062, 273], [-1062, 276], [-1060, 277], [-1058, 278], [-1057, 279], [-1053, 284], [-1053, 286], [-1046, 287], [-1043, 283], [-1043, 281], [-1041, 278], [-1039, 278], [-1036, 275], [-1036, 273]]}, "center": {"250-258, T": [-1049, 279]}}, +{"id": 5800, "name": "Ukrainian borscht", "description": "Ukrainian borscht is a traditional dish that is cooked with broth combined with beetroot, sugar beet or fermented beet juice. There are many versions, and the practice entails the recipe, cooking method and occasion, according to which a certain variety is prepared. \n\nBorscht is cooked in a large pan or pot and typically served with bread or garlic buns. It is prepared primarily by women, although many men also prepare it as an everyday dish. The practice dates back centuries and is passed on within families, with children participating in the preparation. \n\nAn expression of hospitality, Ukrainian borscht unites people of all ages, genders and backgrounds at the table. It is also used in ritual practices, such as in the region of Podillia, where the third day of the wedding has maintained its ritual name do nevistky – na borshch, meaning 'visit daughter-in-law to eat borscht'. It is lauded in tales, folk songs and proverbs and viewed as a lifestyle and identity marker. \n\nThe viability of the element, however, is threatened by various factors since the beginning of the armed conflict in February 2022, including the displacement of bearers from their communities of origin and from the cultural contexts necessary for the cooking and consumption of borscht in Ukraine. Moreover, destruction to the surrounding environment and traditional agriculture has prevented communities from accessing local products, such as vegetables, needed to prepare the dish. Despite these difficulties, communities across Ukraine have united around the element.", "links": {"website": ["https://ich.unesco.org/en/USL/culture-of-ukrainian-borscht-cooking-01852"], "subreddit": ["placeUkraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"169-189": [[-190, -87], [-190, -84], [-189, -82], [-187, -81], [-185, -80], [-184, -79], [-181, -79], [-178, -80], [-176, -82], [-174, -85], [-174, -88], [-178, -90], [-180, -91], [-185, -91], [-188, -89]], "190-258, T": [[-191, -79], [-194, -79], [-195, -80], [-196, -80], [-199, -83], [-200, -84], [-200, -88], [-199, -88], [-197, -90], [-197, -93], [-195, -95], [-194, -94], [-195, -93], [-195, -91], [-193, -91], [-193, -94], [-192, -95], [-191, -96], [-190, -95], [-191, -94], [-191, -91], [-189, -91], [-189, -93], [-188, -94], [-187, -94], [-188, -93], [-188, -91], [-184, -87], [-184, -86], [-185, -86], [-185, -85], [-188, -85], [-190, -83], [-191, -82], [-191, -79], [-194, -79]]}, "center": {"169-189": [-182, -85], "190-258, T": [-194, -86]}}, +{"id": 5801, "name": "IFF (Corsican nationalist slogan)", "description": "\"IFF\" (fully speeled out : I Francesi Fora, in english : the French out) is a Corsican nationalist slogan against the French, there is also another quite similar to \"IFF\" wich is \"AFF\" (fully speeled out : A Francia Fora, in english : France out)", "links": {"subreddit": ["placeCorse"], "discord": ["5zBBNrAJbN"]}, "path": {"163-258, T": [[-126, 486], [-126, 482], [-120, 482], [-120, 486]]}, "center": {"163-258, T": [-123, 484]}}, +{"id": 5802, "name": "Czech Republic", "description": "The country of the Czech Republic (Czechia) as it appears on a map, with the flag of the Czech Republic as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Czech_Republic", "https://en.wikipedia.org/wiki/Flag_of_the_Czech_Republic"], "subreddit": ["czech", "PlaceEU"], "discord": ["95fmfxNv"]}, "path": {"158-258, T": [[-251, 754], [-245, 759], [-235, 758], [-232, 753], [-239, 748], [-244, 746], [-253, 750]]}, "center": {"158-258, T": [-243, 753]}}, {"id": 5803, "name": "Titan Submersible", "description": "The Titan was a submersible operated by OceanGate which imploded during an expedition to view the wreck of the Titanic.", "links": {}, "path": {"216": [[-320, -993], [-364, -994], [-366, -993], [-369, -990], [-370, -991], [-372, -990], [-372, -989], [-374, -988], [-373, -982], [-371, -976], [-337, -976], [-320, -993], [-347, -993], [-348, -994], [-365, -994], [-342, -994]]}, "center": {"216": [-350, -985]}}, -{"id": 5804, "name": "Movistar", "description": "is a major telecommunications provider owned by Telefonica, operating in Spain and Hispanic American countries.\n\n(It has become an joke because how poorly is their internet connection)", "links": {"website": ["https://es.wikipedia.org/wiki/Movistar"]}, "path": {"171-258": [[-1488, 893], [-1448, 878], [-1448, 834], [-1458, 800], [-1472, 800], [-1468, 821], [-1475, 823], [-1479, 810], [-1485, 803], [-1494, 803], [-1495, 833], [-1492, 860], [-1490, 880]]}, "center": {"171-258": [-1471, 846]}}, -{"id": 5805, "name": "Lucario", "description": "Crafted by a remarkable alliance of close-knit friends, two of whom were inseparable roommates, united with a fervent desire to leave an indelible mark on the virtual canvas known as r/place.\n\nIn this gripping tale, we found ourselves in a fierce confrontation against the malevolent yellow Box that sought to encroach upon our cherished territory. Undeterred by the adversities that loomed before us, we held our ground with unwavering determination, our spirits unyielding despite the high toll it took on us.\n\nYet, through unwavering teamwork, unbreakable bonds, and unshakeable camaraderie, we emerged triumphant in the end. The victory was not merely one of pixels, but a testament to the strength of true friendship and the power that arises when hearts and minds are united in a common cause.\n\nIn the aftermath of our epic struggle, our creation now stands tall and proud, a testament to the combined effort of good friends who came together to etch their names onto the vast canvas of r/place. And in the annals of this digital battlefield, our victory shall forever be remembered as a symbol of resilience, unity, and the unyielding spirit of friendship\n\nVIVA LOS OTTEROS !!", "links": {"discord": ["pFhWBePP"]}, "path": {"228-258": [[1470, -654], [1491, -654], [1491, -635], [1488, -631], [1486, -627], [1476, -630], [1474, -633], [1470, -632]]}, "center": {"228-258": [1481, -643]}}, -{"id": 5806, "name": "Naranjito (Little Orange)", "description": "\"Naranjito\", or \"Little Orange\", was the mascot for the 1982 FIFA World Cup, the likes of which was held in Spain, with the final being played in the Santiago Bernabeu stadium in Madrid.", "links": {"website": ["https://en.wikipedia.org/wiki/1982_FIFA_World_Cup#Mascot"]}, "path": {"250-258": [[485, -70], [484, -48], [512, -47], [513, -71], [484, -73]]}, "center": {"250-258": [498, -60]}}, +{"id": 5804, "name": "Movistar", "description": "is a major telecommunications provider owned by Telefonica, operating in Spain and Hispanic American countries.\n\n(It has become an joke because how poorly is their internet connection)", "links": {"website": ["https://es.wikipedia.org/wiki/Movistar"]}, "path": {"171-258, T": [[-1488, 893], [-1448, 878], [-1448, 834], [-1458, 800], [-1472, 800], [-1468, 821], [-1475, 823], [-1479, 810], [-1485, 803], [-1494, 803], [-1495, 833], [-1492, 860], [-1490, 880]]}, "center": {"171-258, T": [-1471, 846]}}, +{"id": 5805, "name": "Lucario", "description": "Crafted by a remarkable alliance of close-knit friends, two of whom were inseparable roommates, united with a fervent desire to leave an indelible mark on the virtual canvas known as r/place.\n\nIn this gripping tale, we found ourselves in a fierce confrontation against the malevolent yellow Box that sought to encroach upon our cherished territory. Undeterred by the adversities that loomed before us, we held our ground with unwavering determination, our spirits unyielding despite the high toll it took on us.\n\nYet, through unwavering teamwork, unbreakable bonds, and unshakeable camaraderie, we emerged triumphant in the end. The victory was not merely one of pixels, but a testament to the strength of true friendship and the power that arises when hearts and minds are united in a common cause.\n\nIn the aftermath of our epic struggle, our creation now stands tall and proud, a testament to the combined effort of good friends who came together to etch their names onto the vast canvas of r/place. And in the annals of this digital battlefield, our victory shall forever be remembered as a symbol of resilience, unity, and the unyielding spirit of friendship\n\nVIVA LOS OTTEROS !!", "links": {"discord": ["pFhWBePP"]}, "path": {"228-258, T": [[1470, -654], [1491, -654], [1491, -635], [1488, -631], [1486, -627], [1476, -630], [1474, -633], [1470, -632]]}, "center": {"228-258, T": [1481, -643]}}, +{"id": 5806, "name": "Naranjito (Little Orange)", "description": "\"Naranjito\", or \"Little Orange\", was the mascot for the 1982 FIFA World Cup, the likes of which was held in Spain, with the final being played in the Santiago Bernabeu stadium in Madrid.", "links": {"website": ["https://en.wikipedia.org/wiki/1982_FIFA_World_Cup#Mascot"]}, "path": {"250-258, T": [[485, -70], [484, -48], [512, -47], [513, -71], [484, -73]]}, "center": {"250-258, T": [498, -60]}}, {"id": 5807, "name": "Juanín Juan Harry", "description": "Juanín Juan Harry is one of the main characters in 31 Minutos and the last of its species. In the program, he plays the role of producer of the newscast and coordinator of the first floor of the studio, making sure that everything goes well.\n\nIts reputation as the last of his kind was the reason he was captured by Cachirula in 31 minutos, la película (31 minutes, the movie).", "links": {"website": ["https://31minutosoficial.cl/"], "subreddit": ["31minutos", "chile"]}, "path": {"167-201": [[279, 890], [286, 890], [286, 891], [287, 892], [288, 893], [289, 896], [288, 897], [289, 897], [290, 897], [291, 898], [285, 903], [285, 909], [279, 909], [278, 902], [274, 898], [275, 897], [279, 890], [286, 890]]}, "center": {"167-201": [282, 897]}}, -{"id": 5808, "name": "Forgotten Turtles Video Game Group", "description": "Forgotten Turtles video game group. Logo designed by CheeseLiker.", "links": {"website": ["https://docs.google.com/document/d/1xoguB84Sl2gXH9342HwxVUq-iqlTajzN49wikRrkZho/edit"]}, "path": {"250-258": [[-186, 855], [-186, 865], [-176, 865], [-176, 855]]}, "center": {"250-258": [-181, 860]}}, -{"id": 5809, "name": "Minecraft Creeper Head", "description": "The iconic head of the creeper in the videogame Minecraft.", "links": {}, "path": {"250-258": [[1267, 208], [1274, 208], [1274, 214], [1267, 214]]}, "center": {"250-258": [1271, 211]}}, +{"id": 5808, "name": "Forgotten Turtles Video Game Group", "description": "Forgotten Turtles video game group. Logo designed by CheeseLiker.", "links": {"website": ["https://docs.google.com/document/d/1xoguB84Sl2gXH9342HwxVUq-iqlTajzN49wikRrkZho/edit"]}, "path": {"250-258, T": [[-186, 855], [-186, 865], [-176, 865], [-176, 855]]}, "center": {"250-258, T": [-181, 860]}}, +{"id": 5809, "name": "Minecraft Creeper Head", "description": "The iconic head of the creeper in the videogame Minecraft.", "links": {}, "path": {"250-258, T": [[1267, 208], [1274, 208], [1274, 214], [1267, 214]]}, "center": {"250-258, T": [1271, 211]}}, {"id": 5810, "name": "Femboy Flag", "description": "A pride flag representing the femboy community.\n\n A femboy, also known as tomgirl, rosboy, janegirl, or calicogirl, is a person who chooses to adopt a more feminine appearance, such as by wearing feminine clothes or makeup, while usually retaining some aspect of boyishness in their appearance or identity. \n\nThis can also sometimes refer to how one acts or communicates or what interests or hobbies one has. \n\nMost femboys still see themselves as male, as the name implies, but someone who identifies with the femboy label can be trans, nonbinary, or one of many other gender identities across the spectrum.", "links": {"website": ["https://aesthetics.fandom.com/wiki/Femboy"], "subreddit": ["femboy"]}, "path": {"182-245": [[623, 657], [610, 663], [610, 657]]}, "center": {"182-245": [612, 659]}}, -{"id": 5811, "name": "Santiago Beach", "description": "Inside of the Dominican Republic flag can be seen the Monument to the Heroes of the Restoration, located in Santiago. A beach can also be seen, referencing the \"Santiago Beach\" meme.\n\nDominicans from Santo Domingo (the capital) and Santiago (the second largest city) will often brag about the benefits of living in one city or another, Santiagueños will often receive in response a sarcastic question about their beaches, which don't exist. This has created the meme about the Santiago Beach, a non-existing place.", "links": {"subreddit": ["Dominican"]}, "path": {"201-258": [[-262, -787], [-262, -762], [-299, -762], [-299, -786]]}, "center": {"201-258": [-280, -774]}}, +{"id": 5811, "name": "Santiago Beach", "description": "Inside of the Dominican Republic flag can be seen the Monument to the Heroes of the Restoration, located in Santiago. A beach can also be seen, referencing the \"Santiago Beach\" meme.\n\nDominicans from Santo Domingo (the capital) and Santiago (the second largest city) will often brag about the benefits of living in one city or another, Santiagueños will often receive in response a sarcastic question about their beaches, which don't exist. This has created the meme about the Santiago Beach, a non-existing place.", "links": {"subreddit": ["Dominican"]}, "path": {"201-258, T": [[-262, -787], [-262, -762], [-299, -762], [-299, -786]]}, "center": {"201-258, T": [-280, -774]}}, {"id": 5812, "name": "Luca", "description": "Luca, a desperate reddit user who has always had the dream of immortalising himself on r/place. Unfortunately, not much is known about him. Only that despite his limited skills in many games such as Fortnite, Rocket League or Minecraft, he has now become successful.", "links": {}, "path": {"223-236": [[-192, 997], [-180, 997], [-180, 999], [-192, 999], [-192, 996], [-180, 996]]}, "center": {"223-236": [-187, 998]}}, -{"id": 5813, "name": "Colombian pou", "description": "a pou with the colors of the Colombian flag", "links": {"subreddit": ["colombia"]}, "path": {"248-258": [[-951, 838], [-942, 838], [-942, 837], [-941, 837], [-941, 836], [-940, 836], [-940, 835], [-939, 835], [-939, 834], [-938, 834], [-938, 831], [-939, 831], [-939, 828], [-940, 828], [-940, 827], [-941, 827], [-941, 825], [-942, 825], [-942, 822], [-943, 822], [-943, 821], [-944, 821], [-944, 820], [-945, 820], [-945, 821], [-946, 821], [-946, 822], [-948, 822], [-948, 821], [-949, 821], [-949, 820], [-950, 820], [-950, 821], [-951, 821], [-951, 822], [-952, 822], [-952, 825], [-953, 825], [-953, 826], [-953, 827], [-954, 827], [-954, 829], [-955, 829], [-955, 831], [-956, 831], [-956, 834], [-955, 834], [-955, 835], [-954, 835], [-954, 836], [-953, 836], [-953, 837], [-952, 837], [-951, 837], [-951, 838], [-952, 837], [-943, 832], [-946, 832]]}, "center": {"248-258": [-947, 827]}}, +{"id": 5813, "name": "Colombian pou", "description": "a pou with the colors of the Colombian flag", "links": {"subreddit": ["colombia"]}, "path": {"248-258, T": [[-951, 838], [-942, 838], [-942, 837], [-941, 837], [-941, 836], [-940, 836], [-940, 835], [-939, 835], [-939, 834], [-938, 834], [-938, 831], [-939, 831], [-939, 828], [-940, 828], [-940, 827], [-941, 827], [-941, 825], [-942, 825], [-942, 822], [-943, 822], [-943, 821], [-944, 821], [-944, 820], [-945, 820], [-945, 821], [-946, 821], [-946, 822], [-948, 822], [-948, 821], [-949, 821], [-949, 820], [-950, 820], [-950, 821], [-951, 821], [-951, 822], [-952, 822], [-952, 825], [-953, 825], [-953, 826], [-953, 827], [-954, 827], [-954, 829], [-955, 829], [-955, 831], [-956, 831], [-956, 834], [-955, 834], [-955, 835], [-954, 835], [-954, 836], [-953, 836], [-953, 837], [-952, 837], [-951, 837], [-951, 838], [-952, 837], [-943, 832], [-946, 832]]}, "center": {"248-258, T": [-947, 827]}}, {"id": 5814, "name": "\"Cuyo\"", "description": "A very sociable rodent similar to a hamster, used as a pet in much of Latin America. \nPD: In Peru, they are eaten", "links": {"subreddit": ["ecuador"]}, "path": {"248": [[-1365, 740], [-1361, 740], [-1361, 739], [-1357, 739], [-1357, 740], [-1353, 740], [-1353, 739], [-1348, 739], [-1348, 738], [-1348, 737], [-1347, 737], [-1347, 735], [-1348, 735], [-1348, 734], [-1349, 734], [-1349, 733], [-1350, 733], [-1350, 732], [-1351, 732], [-1351, 731], [-1352, 731], [-1352, 730], [-1356, 730], [-1356, 729], [-1358, 729], [-1364, 729], [-1364, 730], [-1365, 730], [-1365, 731], [-1366, 731], [-1366, 732], [-1367, 732], [-1367, 734], [-1368, 734], [-1368, 737], [-1367, 737], [-1366, 737], [-1366, 738], [-1365, 738]]}, "center": {"248": [-1359, 734]}}, -{"id": 5815, "name": "Omega Symbol", "description": "An homage to a youtuber called OmegaGamer made with the help of some friends", "links": {"website": ["https://www.youtube.com/channel/UCIzViN8cFga77SRL0oUrS7Q"]}, "path": {"111-251": [[-648, 247], [-643, 247], [-643, 253], [-648, 253], [-648, 250]]}, "center": {"111-251": [-645, 250]}}, -{"id": 5816, "name": "Peashooter", "description": "The Peashooter is arguably the most iconic plant from the Plants vs. Zombies games.\n\nPlants vs. Zombies is a video game franchise developed by PopCap Games, a subsidiary of Electronic Arts (EA). The series follows the affiliates of David \"Crazy Dave\" Blazing as they use his plants to defend against a zombie invasion, led by Dr. Edgar George Zomboss.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Plants_vs._Zombies"], "subreddit": ["placeDE", "de", "PlantsVSZombies"], "discord": ["placeDE"]}, "path": {"250-258": [[885, -429], [861, -429], [861, -423], [873, -423], [874, -418], [874, -417], [868, -417], [868, -410], [888, -410], [889, -418], [884, -418], [883, -418], [885, -425]]}, "center": {"250-258": [879, -423]}}, +{"id": 5815, "name": "Omega Symbol", "description": "An homage to a youtuber called OmegaGamer made with the help of some friends", "links": {"website": ["https://www.youtube.com/channel/UCIzViN8cFga77SRL0oUrS7Q"]}, "path": {"111-251, T": [[-648, 247], [-643, 247], [-643, 253], [-648, 253], [-648, 250]]}, "center": {"111-251, T": [-645, 250]}}, +{"id": 5816, "name": "Peashooter", "description": "The Peashooter is arguably the most iconic plant from the Plants vs. Zombies games.\n\nPlants vs. Zombies is a video game franchise developed by PopCap Games, a subsidiary of Electronic Arts (EA). The series follows the affiliates of David \"Crazy Dave\" Blazing as they use his plants to defend against a zombie invasion, led by Dr. Edgar George Zomboss.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Plants_vs._Zombies"], "subreddit": ["placeDE", "de", "PlantsVSZombies"], "discord": ["placeDE"]}, "path": {"250-258, T": [[885, -429], [861, -429], [861, -423], [873, -423], [874, -418], [874, -417], [868, -417], [868, -410], [888, -410], [889, -418], [884, -418], [883, -418], [885, -425]]}, "center": {"250-258, T": [879, -423]}}, {"id": 5817, "name": "The little kaaba", "description": "The Kaaba (also spelled as \"Ka'bah\" or \"Kaaba\") is a sacred building located in the center of the Masjid al-Haram (the Grand Mosque) in Mecca, Saudi Arabia. It is the most revered and holiest site in Islam. The word \"Kaaba\" comes from the Arabic root \"k-b-a,\" which means \"cube,\" as the structure itself is a large cuboid-shaped building.\n\nThe Kaaba's significance in Islam stems from its history and religious importance. It is believed to have been built by the Prophet Ibrahim (Abraham) and his son Isma'il (Ishmael) as the first house of worship dedicated to the worship of the One God (Allah). Muslims believe that the Kaaba symbolizes the unity of the Muslim community and the oneness of God.", "links": {}, "path": {"219-226": [[834, 333], [848, 333], [848, 347], [834, 347], [834, 342], [833, 344], [834, 339], [834, 337]]}, "center": {"219-226": [841, 340]}}, -{"id": 5818, "name": "White stork", "description": "These birds have a special meaning in Ukrainian culture, symbolizing loyalty and family wellbeing. \n\nBack in the old days, villagers used to believe that a stork deciding to build its nest on the roof of a house would bring fortune and happiness to its inhabitants.", "links": {"website": ["https://en.wikipedia.org/wiki/White_stork"], "subreddit": ["placeukraine"], "discord": ["8kVW3gq63p"]}, "path": {"193-251": [[-198, -156], [-197, -157], [-194, -157], [-191, -159], [-190, -159], [-188, -157], [-185, -157], [-188, -163], [-188, -165], [-185, -168], [-181, -166], [-179, -163], [-179, -159], [-177, -162], [-177, -165], [-174, -167], [-171, -167], [-170, -166], [-170, -163], [-172, -157], [-174, -156], [-173, -155], [-171, -155], [-170, -154], [-172, -152], [-173, -153], [-176, -153], [-177, -152], [-183, -152], [-184, -153], [-190, -155], [-197, -155]]}, "center": {"193-251": [-183, -162]}}, -{"id": 5819, "name": "Amazigh flag", "description": "This is the main flag of the diverse Amazigh people, the native people of North Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Berbers"], "subreddit": ["AmazighPeople"]}, "path": {"245-258": [[-824, 345], [-771, 345], [-771, 359], [-784, 359], [-785, 368], [-802, 367], [-824, 346]]}, "center": {"245-258": [-797, 356]}}, +{"id": 5818, "name": "White stork", "description": "These birds have a special meaning in Ukrainian culture, symbolizing loyalty and family wellbeing. \n\nBack in the old days, villagers used to believe that a stork deciding to build its nest on the roof of a house would bring fortune and happiness to its inhabitants.", "links": {"website": ["https://en.wikipedia.org/wiki/White_stork"], "subreddit": ["placeukraine"], "discord": ["8kVW3gq63p"]}, "path": {"193-251, T": [[-198, -156], [-197, -157], [-194, -157], [-191, -159], [-190, -159], [-188, -157], [-185, -157], [-188, -163], [-188, -165], [-185, -168], [-181, -166], [-179, -163], [-179, -159], [-177, -162], [-177, -165], [-174, -167], [-171, -167], [-170, -166], [-170, -163], [-172, -157], [-174, -156], [-173, -155], [-171, -155], [-170, -154], [-172, -152], [-173, -153], [-176, -153], [-177, -152], [-183, -152], [-184, -153], [-190, -155], [-197, -155]]}, "center": {"193-251, T": [-183, -162]}}, +{"id": 5819, "name": "Amazigh flag", "description": "This is the main flag of the diverse Amazigh people, the native people of North Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Berbers"], "subreddit": ["AmazighPeople"]}, "path": {"245-258, T": [[-824, 345], [-771, 345], [-771, 359], [-784, 359], [-785, 368], [-802, 367], [-824, 346]]}, "center": {"245-258, T": [-797, 356]}}, {"id": 5820, "name": "\"Devilline Symbol\"", "description": "It's a symbol carved into the ax on the cover of a Brazilian comic called \"Devilline\"", "links": {"website": ["https://tapas.io/episode/2336042"], "discord": ["GWtch5m4"]}, "path": {"216": [[152, 406], [160, 406], [160, 415], [151, 415], [151, 410], [151, 406], [160, 406], [160, 411], [161, 411], [161, 415], [160, 415]]}, "center": {"216": [154, 412]}}, -{"id": 5821, "name": "Venus Djinn", "description": "Venus djinn from Golden Sun. \nGolden Sun is a series of fantasy role-playing video games developed by Camelot Software Planning and published by Nintendo.", "links": {}, "path": {"248-258": [[1492, -926], [1492, -917], [1498, -917], [1498, -926]]}, "center": {"248-258": [1495, -921]}}, -{"id": 5822, "name": "Just Play", "description": "A collective effort from a small Luxembourgish Discord server owned by friends and used since 2017", "links": {}, "path": {"212-258": [[620, -609], [631, -609], [631, -603], [620, -603]]}, "center": {"212-258": [626, -606]}}, +{"id": 5821, "name": "Venus Djinn", "description": "Venus djinn from Golden Sun. \nGolden Sun is a series of fantasy role-playing video games developed by Camelot Software Planning and published by Nintendo.", "links": {}, "path": {"248-258, T": [[1492, -926], [1492, -917], [1498, -917], [1498, -926]]}, "center": {"248-258, T": [1495, -921]}}, +{"id": 5822, "name": "Just Play", "description": "A collective effort from a small Luxembourgish Discord server owned by friends and used since 2017", "links": {}, "path": {"212-258, T": [[620, -609], [631, -609], [631, -603], [620, -603]]}, "center": {"212-258, T": [626, -606]}}, {"id": 5823, "name": "Mecânica e Design Industrial", "description": "MDI THE BEST 😎 12º MDI 22/23 made this in honor of master Manuel Trindade and the course MDI it self🙏 \nMade by: Ricardo Ribas; Nuno Rocha; Rafael Gardel; Mário carvalho.", "links": {"website": ["https://www.colgaia.pt/ensino-cg/ensino-secundario/cursos-plano-proprio/mecanica-e-design-industrial/"]}, "path": {"255-258": [[-1107, -933], [-1094, -933], [-1096, -927], [-1107, -927]]}, "center": {"255-258": [-1100, -930]}}, -{"id": 5824, "name": "Ingria flag", "description": "Ingria is a historical region in what is now northwestern European Russia.\nIngria as a whole never formed a separate state, however North Ingria was an independent state for just under two years in 1919–1920 (during Russian Civil War of 1917-1923).\nThe Russian invasion of Ukraine caused a new rise in separatist, decolonization activities in the country, to oppose destructive consequences of Russian imperialism. Free Nations of Post-Russia Forum was founded, and many independent states were proposed, including Ingria.", "links": {"website": ["https://en.wikipedia.org/wiki/Ingria", "https://en.wikipedia.org/wiki/North_Ingria", "https://en.wikipedia.org/wiki/Separatism_in_Russia#Ingria", "https://en.wikipedia.org/wiki/Russian_imperialism", "https://en.wikipedia.org/wiki/Free_Nations_of_Post-Russia_Forum", "https://en.wikipedia.org/wiki/Hypothetical_dissolution_of_the_Russian_Federation#Consequences_of_the_2022_Russian_invasion_of_Ukraine"]}, "path": {"244-258": [[194, 126], [201, 126], [201, 130], [194, 130]]}, "center": {"244-258": [198, 128]}}, +{"id": 5824, "name": "Ingria flag", "description": "Ingria is a historical region in what is now northwestern European Russia.\nIngria as a whole never formed a separate state, however North Ingria was an independent state for just under two years in 1919–1920 (during Russian Civil War of 1917-1923).\nThe Russian invasion of Ukraine caused a new rise in separatist, decolonization activities in the country, to oppose destructive consequences of Russian imperialism. Free Nations of Post-Russia Forum was founded, and many independent states were proposed, including Ingria.", "links": {"website": ["https://en.wikipedia.org/wiki/Ingria", "https://en.wikipedia.org/wiki/North_Ingria", "https://en.wikipedia.org/wiki/Separatism_in_Russia#Ingria", "https://en.wikipedia.org/wiki/Russian_imperialism", "https://en.wikipedia.org/wiki/Free_Nations_of_Post-Russia_Forum", "https://en.wikipedia.org/wiki/Hypothetical_dissolution_of_the_Russian_Federation#Consequences_of_the_2022_Russian_invasion_of_Ukraine"]}, "path": {"244-258, T": [[194, 126], [201, 126], [201, 130], [194, 130]]}, "center": {"244-258, T": [198, 128]}}, {"id": 5825, "name": "Komodo Dragon and Indomie", "description": "The Komodo dragon is the largest living lizard in the world. These wild dragons typically weigh about 70 kilograms (154 pounds). They also live in the Komodo Island, Nusa Tenggara Timur, Indonesia.\n\nIndomie is a brand of instant noodles that originated in Indonesia and is popular worldwide. It was first introduced in the 1970s and has since become an iconic and widely consumed convenience food. Indomie offers a variety of flavors, and its quick preparation and affordability have made it a favorite choice for many people looking for a quick and tasty meal.", "links": {"subreddit": ["indonesia"], "discord": ["redditindo"]}, "path": {"191-211": [[-1301, -63], [-1295, -62], [-1292, -57], [-1289, -54], [-1284, -52], [-1280, -54], [-1279, -55], [-1279, -57], [-1280, -57], [-1282, -57], [-1279, -59], [-1276, -57], [-1275, -49], [-1272, -45], [-1273, -42], [-1276, -42], [-1275, -43], [-1278, -46], [-1283, -44], [-1285, -43], [-1287, -44], [-1287, -41], [-1291, -41], [-1290, -44], [-1292, -45], [-1293, -42], [-1295, -41], [-1302, -41], [-1306, -48], [-1304, -57], [-1301, -64]]}, "center": {"191-211": [-1297, -51]}}, -{"id": 5826, "name": "Australian Drop Bear", "description": "While koalas are typically docile herbivores (and are not bears), drop bears are described as unusually large and vicious marsupials that inhabit treetops and attack unsuspecting people (or other prey) that walk beneath them by dropping onto their heads from above. There are some suggested folk remedies that are said to act as a repellent to Drop Bears, these include having forks in the hair or Vegemite or toothpaste spread behind the ears. There is no evidence to suggest that any such repellents work.", "links": {"website": ["https://www.australiangeographic.com.au/news/2021/04/drop-bears-target-tourists-study-says/"], "subreddit": ["australia"]}, "path": {"190-258": [[-811, 38], [-813, 38], [-814, 38], [-814, 39], [-815, 38], [-816, 38], [-817, 38], [-817, 39], [-818, 38], [-819, 38], [-820, 38], [-820, 42], [-819, 42], [-819, 43], [-819, 44], [-818, 44], [-818, 46], [-819, 46], [-819, 48], [-819, 49], [-818, 49], [-817, 49], [-817, 48], [-817, 50], [-816, 50], [-816, 51], [-815, 51], [-814, 52], [-813, 53], [-813, 54], [-811, 54]]}, "center": {"190-258": [-815, 43]}}, +{"id": 5826, "name": "Australian Drop Bear", "description": "While koalas are typically docile herbivores (and are not bears), drop bears are described as unusually large and vicious marsupials that inhabit treetops and attack unsuspecting people (or other prey) that walk beneath them by dropping onto their heads from above. There are some suggested folk remedies that are said to act as a repellent to Drop Bears, these include having forks in the hair or Vegemite or toothpaste spread behind the ears. There is no evidence to suggest that any such repellents work.", "links": {"website": ["https://www.australiangeographic.com.au/news/2021/04/drop-bears-target-tourists-study-says/"], "subreddit": ["australia"]}, "path": {"190-258, T": [[-811, 38], [-813, 38], [-814, 38], [-814, 39], [-815, 38], [-816, 38], [-817, 38], [-817, 39], [-818, 38], [-819, 38], [-820, 38], [-820, 42], [-819, 42], [-819, 43], [-819, 44], [-818, 44], [-818, 46], [-819, 46], [-819, 48], [-819, 49], [-818, 49], [-817, 49], [-817, 48], [-817, 50], [-816, 50], [-816, 51], [-815, 51], [-814, 52], [-813, 53], [-813, 54], [-811, 54]]}, "center": {"190-258, T": [-815, 43]}}, {"id": 5827, "name": "31 Minutos", "description": "31 minutos (English: 31 minutes) is a Chilean comedy television series and a children's music virtual band created by the production company Aplaplac that began to be transmitted on March 15, 2003 by the signal of Televisión Nacional de Chile (TVN). It focuses on the adventures of the team of a news program of little prestige in which something unexpected always happens, whose presenter is Tulio Triviño.\n\nPart of the program's success lies in its script and characters, with hidden references to Chile's social reality. It has also been successful among young and adult audiences: the double entendre that it handles is manifested, for example, in the fact that the puppets are ironic imitations of real Chilean television characters, and recall events or television events that characterized Chile in the 1970s and 1980s.", "links": {"website": ["https://31minutosoficial.cl/"], "subreddit": ["31minutos", "chile"]}, "path": {"171": [[298, 965], [298, 960], [302, 960], [302, 942], [322, 942], [322, 960], [327, 960], [327, 965]]}, "center": {"171": [312, 953]}}, {"id": 5829, "name": "Into the Radius logo", "description": "Logo of the popular VR game Into the Radius by CM games", "links": {"website": ["https://cm.games/"], "subreddit": ["intotheradius"]}, "path": {"213": [[-805, -943], [-809, -939], [-808, -933], [-803, -932], [-801, -935], [-800, -940], [-802, -942], [-806, -942], [-809, -938]]}, "center": {"213": [-805, -937]}}, -{"id": 5830, "name": "r/nordics community", "description": "The community artwork of r/nordics built on top of the flags of the 5 main Nordic countries:\n* Norway\n* Finland\n* Denmark\n* Sweden\n* Iceland\n\nAlso includes flags of autonomous regions:\n* Greenland (Denmark)\n* Faroe Islands (Denmark)\n* Åland (Finland);\n\nas well as additional regions:\n* Sápmi (cultural region of Sámi people)\n* Christiania (micronation in Denmark)\n* Orkney Islands (Scotland)\n* Maryland (USA);\n\nand of minority- and ethnic groups:\n* Swedish-speaking Finns\n* Finnish-speaking Swedes\n* Karelians\n* Ingrian Finns\n* Forest Finns\n* Kven people", "links": {"website": ["https://en.wikipedia.org/wiki/Nordic_countries"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"10-56": [[-166, -333], [-177, -333], [-177, -259], [-196, -259], [-196, -231], [0, -231], [0, -178], [91, -178], [91, -206], [146, -206], [146, -302], [98, -302], [98, -368], [-166, -368], [-166, -346], [-163, -343], [-164, -342], [-165, -342], [-165, -334], [-166, -334]], "57-133": [[-165, -368], [-165, -365], [-164, -366], [-163, -366], [-162, -365], [-162, -363], [-165, -360], [-165, -345], [-164, -345], [-163, -344], [-163, -343], [-164, -342], [-165, -342], [-165, -334], [-166, -334], [-166, -332], [-165, -331], [-165, -318], [-167, -318], [-167, -313], [-166, -313], [-165, -312], [-165, -310], [-177, -310], [-177, -295], [-178, -295], [-179, -296], [-180, -296], [-181, -295], [-181, -293], [-178, -290], [-177, -290], [-177, -272], [-178, -272], [-179, -273], [-180, -273], [-181, -272], [-181, -270], [-178, -267], [-177, -267], [-177, -259], [-196, -259], [-196, -178], [91, -178], [91, -206], [186, -206], [186, -268], [146, -268], [146, -368]], "134-258": [[-165, -367], [-165, -345], [-163, -345], [-163, -343], [-164, -342], [-165, -342], [-165, -334], [-166, -334], [-166, -332], [-165, -332], [-165, -326], [-167, -324], [-167, -322], [-168, -322], [-169, -321], [-171, -321], [-172, -320], [-174, -320], [-174, -318], [-171, -315], [-171, -311], [-172, -310], [-176, -310], [-177, -310], [-177, -285], [-178, -285], [-179, -286], [-180, -286], [-181, -285], [-181, -283], [-177, -279], [-177, -272], [-178, -272], [-179, -273], [-180, -273], [-181, -272], [-181, -270], [-177, -266], [-177, -259], [-196, -259], [-196, -192], [-174, -192], [-174, -178], [91, -178], [91, -206], [251, -206], [251, -195], [279, -195], [279, -193], [289, -193], [289, -206], [296, -213], [296, -217], [293, -220], [291, -220], [290, -219], [289, -219], [289, -223], [285, -227], [259, -227], [259, -234], [230, -234], [230, -251], [186, -251], [186, -342], [160, -342], [160, -346], [159, -347], [156, -347], [155, -346], [154, -347], [151, -347], [150, -346], [150, -342], [146, -342], [146, -368], [-165, -368]]}, "center": {"10-56": [26, -297], "57-133": [-14, -273], "134-258": [9, -273]}}, -{"id": 5831, "name": "Australia", "description": "This area is Australia's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Australia"], "subreddit": ["placeaustralia"], "discord": ["KccrKfSKkK"]}, "path": {"226-258": [[1347, -127], [1391, -127], [1391, -126], [1385, -126], [1385, -125], [1384, -125], [1384, -124], [1383, -124], [1383, -123], [1383, -122], [1386, -122], [1386, -121], [1387, -121], [1391, -121], [1391, -120], [1392, -120], [1392, -115], [1391, -115], [1391, -116], [1389, -116], [1388, -116], [1388, -115], [1389, -114], [1388, -114], [1387, -114], [1386, -114], [1386, -113], [1386, -112], [1385, -112], [1384, -112], [1384, -111], [1383, -111], [1383, -110], [1383, -109], [1383, -108], [1384, -108], [1385, -108], [1386, -108], [1386, -107], [1387, -107], [1389, -107], [1389, -103], [1390, -103], [1390, -100], [1391, -100], [1391, -98], [1392, -98], [1392, -96], [1392, -95], [1392, -94], [1392, -89], [1393, -89], [1393, -88], [1346, -88], [1346, -127]]}, "center": {"226-258": [1365, -108]}}, +{"id": 5830, "name": "r/nordics community", "description": "The community artwork of r/nordics built on top of the flags of the 5 main Nordic countries:\n* Norway\n* Finland\n* Denmark\n* Sweden\n* Iceland\n\nAlso includes flags of autonomous regions:\n* Greenland (Denmark)\n* Faroe Islands (Denmark)\n* Åland (Finland);\n\nas well as additional regions:\n* Sápmi (cultural region of Sámi people)\n* Christiania (micronation in Denmark)\n* Orkney Islands (Scotland)\n* Maryland (USA);\n\nand of minority- and ethnic groups:\n* Swedish-speaking Finns\n* Finnish-speaking Swedes\n* Karelians\n* Ingrian Finns\n* Forest Finns\n* Kven people", "links": {"website": ["https://en.wikipedia.org/wiki/Nordic_countries"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"10-56": [[-166, -333], [-177, -333], [-177, -259], [-196, -259], [-196, -231], [0, -231], [0, -178], [91, -178], [91, -206], [146, -206], [146, -302], [98, -302], [98, -368], [-166, -368], [-166, -346], [-163, -343], [-164, -342], [-165, -342], [-165, -334], [-166, -334]], "57-133": [[-165, -368], [-165, -365], [-164, -366], [-163, -366], [-162, -365], [-162, -363], [-165, -360], [-165, -345], [-164, -345], [-163, -344], [-163, -343], [-164, -342], [-165, -342], [-165, -334], [-166, -334], [-166, -332], [-165, -331], [-165, -318], [-167, -318], [-167, -313], [-166, -313], [-165, -312], [-165, -310], [-177, -310], [-177, -295], [-178, -295], [-179, -296], [-180, -296], [-181, -295], [-181, -293], [-178, -290], [-177, -290], [-177, -272], [-178, -272], [-179, -273], [-180, -273], [-181, -272], [-181, -270], [-178, -267], [-177, -267], [-177, -259], [-196, -259], [-196, -178], [91, -178], [91, -206], [186, -206], [186, -268], [146, -268], [146, -368]], "134-258, T": [[-165, -367], [-165, -345], [-163, -345], [-163, -343], [-164, -342], [-165, -342], [-165, -334], [-166, -334], [-166, -332], [-165, -332], [-165, -326], [-167, -324], [-167, -322], [-168, -322], [-169, -321], [-171, -321], [-172, -320], [-174, -320], [-174, -318], [-171, -315], [-171, -311], [-172, -310], [-176, -310], [-177, -310], [-177, -285], [-178, -285], [-179, -286], [-180, -286], [-181, -285], [-181, -283], [-177, -279], [-177, -272], [-178, -272], [-179, -273], [-180, -273], [-181, -272], [-181, -270], [-177, -266], [-177, -259], [-196, -259], [-196, -192], [-174, -192], [-174, -178], [91, -178], [91, -206], [251, -206], [251, -195], [279, -195], [279, -193], [289, -193], [289, -206], [296, -213], [296, -217], [293, -220], [291, -220], [290, -219], [289, -219], [289, -223], [285, -227], [259, -227], [259, -234], [230, -234], [230, -251], [186, -251], [186, -342], [160, -342], [160, -346], [159, -347], [156, -347], [155, -346], [154, -347], [151, -347], [150, -346], [150, -342], [146, -342], [146, -368], [-165, -368]]}, "center": {"10-56": [26, -297], "57-133": [-14, -273], "134-258, T": [9, -273]}}, +{"id": 5831, "name": "Australia", "description": "This area is Australia's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Australia"], "subreddit": ["placeaustralia"], "discord": ["KccrKfSKkK"]}, "path": {"226-258, T": [[1347, -127], [1391, -127], [1391, -126], [1385, -126], [1385, -125], [1384, -125], [1384, -124], [1383, -124], [1383, -123], [1383, -122], [1386, -122], [1386, -121], [1387, -121], [1391, -121], [1391, -120], [1392, -120], [1392, -115], [1391, -115], [1391, -116], [1389, -116], [1388, -116], [1388, -115], [1389, -114], [1388, -114], [1387, -114], [1386, -114], [1386, -113], [1386, -112], [1385, -112], [1384, -112], [1384, -111], [1383, -111], [1383, -110], [1383, -109], [1383, -108], [1384, -108], [1385, -108], [1386, -108], [1386, -107], [1387, -107], [1389, -107], [1389, -103], [1390, -103], [1390, -100], [1391, -100], [1391, -98], [1392, -98], [1392, -96], [1392, -95], [1392, -94], [1392, -89], [1393, -89], [1393, -88], [1346, -88], [1346, -127]]}, "center": {"226-258, T": [1365, -108]}}, {"id": 5832, "name": "Phase Connect", "description": "Phase Connect is a VTuber company based in Vancouver, Canada. The agency is led by Kevin \"H2oSakana\" Li.", "links": {"website": ["https://phase-connect.com/"], "subreddit": ["PhaseConnect"], "discord": ["phaseconnect"]}, "path": {"78-100": [[-31, 417], [-31, 432], [-16, 432], [-16, 416], [-31, 416]]}, "center": {"78-100": [-23, 424]}}, {"id": 5833, "name": "r/RDTTR emblem", "description": "The unfinished version of the sickle-pencil-hammer and star symbol of the Turkish socialist group r/RDTTR.", "links": {"subreddit": ["RDTTR"], "discord": ["w7KWGkREUf"]}, "path": {"217": [[-1362, 597], [-1362, 589], [-1352, 589], [-1352, 613], [-1367, 613], [-1367, 589], [-1363, 589]]}, "center": {"217": [-1359, 604]}}, -{"id": 5834, "name": "Hata no Kokoro", "description": "A mini Hata no Kokoro from Touhou 13.5, Hopeless Masquerade. She is a menreiki youkai, who shows emotions via her masks.", "links": {"subreddit": ["touhou"]}, "path": {"250-258": [[185, 146], [184, 145], [184, 144], [184, 143], [183, 142], [184, 141], [185, 141], [186, 141], [187, 141], [188, 142], [187, 143], [188, 144], [187, 145], [187, 146], [186, 146]]}, "center": {"250-258": [186, 144]}}, -{"id": 5835, "name": "Rafflesia Arnoldii", "description": "Rafflesia Arnoldii or \"Padma Raksasa\" is a rare and iconic flowering plant endemic to Indonesia. It is famous for its massive, red-to-brown flowers that can grow up to three feet in diameter, making them the largest flowers in the world. Found mainly in the rainforests of Sumatra and Borneo, Rafflesia Arnoldii serves as a symbol of Indonesia's rich biodiversity and the need for conservation efforts to protect this remarkable species and its natural habitat.", "links": {"subreddit": ["indonesia"], "discord": ["redditindo"]}, "path": {"129-258": [[-720, -241], [-717, -241], [-709, -242], [-707, -241], [-712, -240], [-711, -239], [-714, -238], [-713, -235], [-707, -235], [-720, -224], [-721, -224], [-722, -238], [-721, -240], [-712, -236], [-708, -236]]}, "center": {"129-258": [-717, -233]}}, +{"id": 5834, "name": "Hata no Kokoro", "description": "A mini Hata no Kokoro from Touhou 13.5, Hopeless Masquerade. She is a menreiki youkai, who shows emotions via her masks.", "links": {"subreddit": ["touhou"]}, "path": {"250-258, T": [[185, 146], [184, 145], [184, 144], [184, 143], [183, 142], [184, 141], [185, 141], [186, 141], [187, 141], [188, 142], [187, 143], [188, 144], [187, 145], [187, 146], [186, 146]]}, "center": {"250-258, T": [186, 144]}}, +{"id": 5835, "name": "Rafflesia Arnoldii", "description": "Rafflesia Arnoldii or \"Padma Raksasa\" is a rare and iconic flowering plant endemic to Indonesia. It is famous for its massive, red-to-brown flowers that can grow up to three feet in diameter, making them the largest flowers in the world. Found mainly in the rainforests of Sumatra and Borneo, Rafflesia Arnoldii serves as a symbol of Indonesia's rich biodiversity and the need for conservation efforts to protect this remarkable species and its natural habitat.", "links": {"subreddit": ["indonesia"], "discord": ["redditindo"]}, "path": {"129-258, T": [[-720, -241], [-717, -241], [-709, -242], [-707, -241], [-712, -240], [-711, -239], [-714, -238], [-713, -235], [-707, -235], [-720, -224], [-721, -224], [-722, -238], [-721, -240], [-712, -236], [-708, -236]]}, "center": {"129-258, T": [-717, -233]}}, {"id": 5836, "name": "Burdurland", "description": "r/burdurland is a Turkish subreddit where people post memes. Founded by Porçay, a Turkish YouTuber and comedian. The text underneath reads \"Spez is a son of a bitch\".", "links": {"subreddit": ["burdurland"], "discord": ["W8ZX7Q7"]}, "path": {"160-164": [[-654, 499], [-569, 499], [-570, 591], [-654, 592], [-654, 500]]}, "center": {"160-164": [-612, 545]}}, {"id": 5837, "name": "Chile", "description": "The form of the country idk", "links": {"subreddit": ["chile"]}, "path": {"247": [[-1371, -769], [-1381, -769], [-1382, -770], [-1385, -770], [-1386, -771], [-1388, -771], [-1389, -772], [-1393, -772], [-1394, -776], [-1399, -782], [-1399, -784], [-1402, -786], [-1402, -790], [-1404, -791], [-1406, -808], [-1403, -814], [-1403, -819], [-1406, -819], [-1405, -818], [-1405, -816], [-1408, -816], [-1408, -817], [-1410, -818], [-1409, -822], [-1408, -824], [-1406, -824], [-1405, -824], [-1405, -820], [-1402, -820], [-1402, -824], [-1403, -824], [-1403, -826], [-1405, -826], [-1405, -827], [-1407, -827], [-1407, -830], [-1405, -830], [-1405, -836], [-1407, -840], [-1408, -842], [-1406, -844], [-1406, -850], [-1405, -852], [-1405, -861], [-1400, -869], [-1405, -862], [-1407, -863], [-1408, -866], [-1408, -874], [-1407, -879], [-1406, -883], [-1407, -886], [-1409, -887], [-1409, -890], [-1408, -891], [-1408, -898], [-1408, -900], [-1410, -901], [-1409, -899], [-1410, -902], [-1410, -905], [-1408, -908], [-1407, -906], [-1404, -905], [-1404, -902], [-1402, -901], [-1400, -899], [-1400, -896], [-1398, -894], [-1394, -894], [-1394, -888], [-1398, -886], [-1398, -883], [-1395, -879], [-1398, -876], [-1398, -867], [-1398, -866], [-1400, -865], [-1397, -862], [-1395, -858], [-1395, -853], [-1398, -852], [-1397, -849], [-1395, -848], [-1398, -846], [-1399, -840], [-1397, -839], [-1398, -830], [-1398, -829], [-1396, -829], [-1396, -827], [-1397, -826], [-1397, -824], [-1394, -822], [-1395, -820], [-1396, -818], [-1394, -817], [-1393, -815], [-1393, -813], [-1393, -806], [-1395, -806], [-1395, -800], [-1393, -800], [-1393, -795], [-1388, -786], [-1385, -786], [-1384, -788], [-1377, -787], [-1377, -781], [-1374, -779], [-1372, -773], [-1368, -774], [-1368, -771], [-1372, -769]]}, "center": {"247": [-1384, -778]}}, {"id": 5838, "name": "MG", "description": "Hecho por MRMGHP", "links": {}, "path": {"252-258": [[1355, -11], [1364, -11], [1364, -7], [1355, -7]]}, "center": {"252-258": [1360, -9]}}, -{"id": 5839, "name": "Mariupol Coat of arms", "description": "Mariupol is a city in Donetsk Oblast, Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Mariupol"], "subreddit": ["placeukraine"]}, "path": {"149-258": [[-314, -164], [-297, -164], [-298, -164], [-298, -148], [-299, -148], [-299, -147], [-305, -147], [-305, -146], [-306, -146], [-306, -147], [-312, -147], [-312, -148], [-313, -148], [-313, -164]]}, "center": {"149-258": [-305, -156]}}, +{"id": 5839, "name": "Mariupol Coat of arms", "description": "Mariupol is a city in Donetsk Oblast, Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Mariupol"], "subreddit": ["placeukraine"]}, "path": {"149-258, T": [[-314, -164], [-297, -164], [-298, -164], [-298, -148], [-299, -148], [-299, -147], [-305, -147], [-305, -146], [-306, -146], [-306, -147], [-312, -147], [-312, -148], [-313, -148], [-313, -164]]}, "center": {"149-258, T": [-305, -156]}}, {"id": 5840, "name": "5 flemmard flag", "description": "The flag of a country created by friends on a Minecraft realm", "links": {}, "path": {"6-9": [[194, 49], [201, 49], [201, 54], [194, 54], [194, 50]]}, "center": {"6-9": [198, 52]}}, -{"id": 5841, "name": "Camp Jupiter", "description": "Camp Jupiter is a fictional place near the San Francisco Bay Area from the world of \"The Heroes of Olympus\" by Rick Riordan. It is a camp where demigod children and descendants of the Roman gods train to defend themselves from Ancient Hellenistic mythological monsters.\n\nOn Camp Jupiter's logo is \"SPQR\", an abbreviation for Senatus Populusque Romanus (The Senate and People of Rome). This is an emblematic abbreviated phrase referring to the government of the ancient Roman Republic. It appears on documents made public by an inscription in stone or metal, in dedications of monuments and public works, and on some Roman currency.\n\nThis art is connected to another piece of banner art at (575, -511) for Camp Jupiter's Greek-demigod alternate: Camp Half-Blood.", "links": {"website": ["https://riordan.fandom.com/wiki/Camp_Jupiter"], "subreddit": ["camphalfblood"], "discord": ["ZZ3zVMM9A6"]}, "path": {"227-258": [[-1470, -8], [-1446, -8], [-1446, 13], [-1470, 13]]}, "center": {"227-258": [-1458, 3]}}, -{"id": 5842, "name": "Etoiles", "description": "Etoiles is a French streamer who began his career with Minecraft PvP, but is now well-known for his cultural streams. \nIn these streams, he visits museums in real life, watches \"Question pour un champion,\" a French trivia TV show.\nHe's also renowned for his gaming prowess, competing in Super Smash Bros Ultimate, and achieving victory in the zlan 2021, a popular french multigaming lan organised by Zerator.", "links": {"website": ["https://www.twitch.tv/etoiles"], "discord": ["2yknNGKp"]}, "path": {"250-258": [[488, 452], [499, 452], [499, 462], [488, 462]]}, "center": {"250-258": [494, 457]}}, -{"id": 5843, "name": "Mini Skyrim logo", "description": "A group of friends made a mini Skyrim logo, Skyrim is a popular game.\n\nCredits:\nFlick\n4rthurjohn\nHz\nTheKing\nFostin\nJaparanaue", "links": {}, "path": {"250-258": [[-1443, 808], [-1448, 814], [-1447, 819], [-1442, 825], [-1438, 828], [-1431, 820], [-1429, 816], [-1431, 813], [-1435, 808], [-1440, 807]]}, "center": {"250-258": [-1439, 816]}}, -{"id": 5844, "name": "Alestorm Duck", "description": "Alestorm is a pirate-themed Power metal band based in Scotland. The duck has been seen as a mascot for the band since around 2019. Singer for Alestorm, Christopher Bowes, is also the Songwriter and studio keyboardist for Gloryhammer, so this design was made as alliance between members of r/Alestrom and members of r/PlaceGloryhammer, which is also why it is so close to Robot Prince of Auchtertool.", "links": {"website": ["https://www.alestorm.net/"], "subreddit": ["Alestorm", "PlaceGloryhammer"]}, "path": {"214-258": [[667, 629], [666, 628], [666, 629], [664, 626], [667, 623], [667, 622], [669, 622], [669, 623], [670, 623], [670, 625], [669, 626], [668, 627], [668, 628], [670, 628], [671, 627], [670, 628], [670, 629], [669, 630], [666, 630]]}, "center": {"214-258": [667, 626]}}, +{"id": 5841, "name": "Camp Jupiter", "description": "Camp Jupiter is a fictional place near the San Francisco Bay Area from the world of \"The Heroes of Olympus\" by Rick Riordan. It is a camp where demigod children and descendants of the Roman gods train to defend themselves from Ancient Hellenistic mythological monsters.\n\nOn Camp Jupiter's logo is \"SPQR\", an abbreviation for Senatus Populusque Romanus (The Senate and People of Rome). This is an emblematic abbreviated phrase referring to the government of the ancient Roman Republic. It appears on documents made public by an inscription in stone or metal, in dedications of monuments and public works, and on some Roman currency.\n\nThis art is connected to another piece of banner art at (575, -511) for Camp Jupiter's Greek-demigod alternate: Camp Half-Blood.", "links": {"website": ["https://riordan.fandom.com/wiki/Camp_Jupiter"], "subreddit": ["camphalfblood"], "discord": ["ZZ3zVMM9A6"]}, "path": {"227-258, T": [[-1470, -8], [-1446, -8], [-1446, 13], [-1470, 13]]}, "center": {"227-258, T": [-1458, 3]}}, +{"id": 5842, "name": "Etoiles", "description": "Etoiles is a French streamer who began his career with Minecraft PvP, but is now well-known for his cultural streams. \nIn these streams, he visits museums in real life, watches \"Question pour un champion,\" a French trivia TV show.\nHe's also renowned for his gaming prowess, competing in Super Smash Bros Ultimate, and achieving victory in the zlan 2021, a popular french multigaming lan organised by Zerator.", "links": {"website": ["https://www.twitch.tv/etoiles"], "discord": ["2yknNGKp"]}, "path": {"250-258, T": [[488, 452], [499, 452], [499, 462], [488, 462]]}, "center": {"250-258, T": [494, 457]}}, +{"id": 5843, "name": "Mini Skyrim logo", "description": "A group of friends made a mini Skyrim logo, Skyrim is a popular game.\n\nCredits:\nFlick\n4rthurjohn\nHz\nTheKing\nFostin\nJaparanaue", "links": {}, "path": {"250-258, T": [[-1443, 808], [-1448, 814], [-1447, 819], [-1442, 825], [-1438, 828], [-1431, 820], [-1429, 816], [-1431, 813], [-1435, 808], [-1440, 807]]}, "center": {"250-258, T": [-1439, 816]}}, +{"id": 5844, "name": "Alestorm Duck", "description": "Alestorm is a pirate-themed Power metal band based in Scotland. The duck has been seen as a mascot for the band since around 2019. Singer for Alestorm, Christopher Bowes, is also the Songwriter and studio keyboardist for Gloryhammer, so this design was made as alliance between members of r/Alestrom and members of r/PlaceGloryhammer, which is also why it is so close to Robot Prince of Auchtertool.", "links": {"website": ["https://www.alestorm.net/"], "subreddit": ["Alestorm", "PlaceGloryhammer"]}, "path": {"214-258, T": [[667, 629], [666, 628], [666, 629], [664, 626], [667, 623], [667, 622], [669, 622], [669, 623], [670, 623], [670, 625], [669, 626], [668, 627], [668, 628], [670, 628], [671, 627], [670, 628], [670, 629], [669, 630], [666, 630]]}, "center": {"214-258, T": [667, 626]}}, {"id": 5845, "name": "Spiderverse Burger.", "description": "TTVJaYmZ's community made a red buns, purple patty spider verse burger for no real reason... but it got destroyed really fast by the QSMP gamers.", "links": {"website": ["https://Twitch.tv/TTVJaYmZ"], "subreddit": ["TTVJaYmZ"], "discord": ["CkcV3aUj"]}, "path": {"31-39": [[240, -222], [249, -222], [249, -213], [240, -213]]}, "center": {"31-39": [245, -217]}}, -{"id": 5846, "name": "Dove of peace", "description": "Across the world, doves symbolize hope, freedom and peace.\n\nHere the dove is depicted in Ukraine's national colours and with a wheat ear in its beak.\n\nThis dove conveys the will of Ukrainians to live in a peaceful, prosperous and independent country. Despite all the struggles of the war, Ukrainians don't abandon their hopes for a better future.", "links": {"website": ["https://en.wikipedia.org/wiki/Doves_as_symbols"], "subreddit": ["placeukraine", "stupiddovenests"], "discord": ["8kVW3gq63p"]}, "path": {"198-251": [[-70, -155], [-68, -156], [-65, -157], [-63, -158], [-65, -159], [-67, -161], [-66, -162], [-69, -166], [-68, -167], [-69, -168], [-69, -170], [-68, -169], [-66, -171], [-65, -170], [-64, -171], [-63, -171], [-62, -169], [-60, -166], [-58, -163], [-58, -167], [-55, -170], [-54, -170], [-54, -167], [-52, -165], [-50, -165], [-49, -164], [-48, -166], [-47, -163], [-45, -162], [-46, -161], [-44, -160], [-43, -157], [-45, -157], [-47, -160], [-48, -159], [-47, -161], [-49, -161], [-48, -163], [-49, -164], [-50, -163], [-50, -162], [-52, -159], [-54, -156], [-56, -154], [-63, -154], [-64, -155], [-65, -155], [-68, -152], [-69, -152], [-70, -153]]}, "center": {"198-251": [-57, -159]}}, -{"id": 5847, "name": "JaYmZ's Minecraft Skin (JaYmZ Craft)", "description": "The Minecraft skin representing the streamer TTVJaYmZ from the JaYmZ Craft series", "links": {"website": ["https://Twitch.tv/TTVJaYmZ"], "subreddit": ["TTVJaYmZ"], "discord": ["CkcV3aUj"]}, "path": {"222-258": [[1318, -877], [1327, -877], [1327, -868], [1318, -868]]}, "center": {"222-258": [1323, -872]}}, +{"id": 5846, "name": "Dove of peace", "description": "Across the world, doves symbolize hope, freedom and peace.\n\nHere the dove is depicted in Ukraine's national colours and with a wheat ear in its beak.\n\nThis dove conveys the will of Ukrainians to live in a peaceful, prosperous and independent country. Despite all the struggles of the war, Ukrainians don't abandon their hopes for a better future.", "links": {"website": ["https://en.wikipedia.org/wiki/Doves_as_symbols"], "subreddit": ["placeukraine", "stupiddovenests"], "discord": ["8kVW3gq63p"]}, "path": {"198-251, T": [[-70, -155], [-68, -156], [-65, -157], [-63, -158], [-65, -159], [-67, -161], [-66, -162], [-69, -166], [-68, -167], [-69, -168], [-69, -170], [-68, -169], [-66, -171], [-65, -170], [-64, -171], [-63, -171], [-62, -169], [-60, -166], [-58, -163], [-58, -167], [-55, -170], [-54, -170], [-54, -167], [-52, -165], [-50, -165], [-49, -164], [-48, -166], [-47, -163], [-45, -162], [-46, -161], [-44, -160], [-43, -157], [-45, -157], [-47, -160], [-48, -159], [-47, -161], [-49, -161], [-48, -163], [-49, -164], [-50, -163], [-50, -162], [-52, -159], [-54, -156], [-56, -154], [-63, -154], [-64, -155], [-65, -155], [-68, -152], [-69, -152], [-70, -153]]}, "center": {"198-251, T": [-57, -159]}}, +{"id": 5847, "name": "JaYmZ's Minecraft Skin (JaYmZ Craft)", "description": "The Minecraft skin representing the streamer TTVJaYmZ from the JaYmZ Craft series", "links": {"website": ["https://Twitch.tv/TTVJaYmZ"], "subreddit": ["TTVJaYmZ"], "discord": ["CkcV3aUj"]}, "path": {"222-258, T": [[1318, -877], [1327, -877], [1327, -868], [1318, -868]]}, "center": {"222-258, T": [1323, -872]}}, {"id": 5848, "name": "TorebeCP", "description": "A Minecraft YouTuber who focuses on old versions of Minecraft. He's playing all versions starting from Beta 1.3_01", "links": {"website": ["https://www.youtube.com/@TorebeCP"]}, "path": {"86": [[386, -305], [380, -305], [380, -299], [386, -299]]}, "center": {"86": [383, -302]}}, {"id": 5849, "name": "Stack of JaYmZ Coins", "description": "This is a stack of the currency used by the streamer TTVJaYmZ on Twitch.tv & discord. Him and his community built these coins and a sneaky \"legendary amongus\" to represent their community during the pixel war of 2023", "links": {"website": ["https://Twitch.tv/TTVJaYmZ"], "subreddit": ["TTVJaYmZ"], "discord": ["CkcV3aUj"]}, "path": {"31-49": [[252, -223], [252, -239], [236, -238], [236, -223]]}, "center": {"31-49": [244, -231]}}, {"id": 5850, "name": "Shadoune666", "description": "Shadoune666 is a Streamer of French nationality, but who focuses his content on the Hispanic community, mainly on Minecraft. He learned to speak Spanish playing minecraft with his friends", "links": {"website": ["https://www.twitch.tv/shadoune666"]}, "path": {"245": [[79, 0], [86, 0], [86, 7], [79, 7]]}, "center": {"245": [83, 4]}}, {"id": 5851, "name": "TorebeCP", "description": "A Minecraft YouTuber who focuses on old versions of Minecraft. He's playing all versions starting from Beta 1.3_01", "links": {"website": ["https://www.youtube.com/@TorebeCP"]}, "path": {"167": [[311, -604], [311, -600], [313, -600], [315, -600], [315, -604]]}, "center": {"167": [313, -602]}}, {"id": 5852, "name": "TorebeCP", "description": "A Minecraft YouTuber who focuses on old versions of Minecraft. He's playing all versions starting from Beta 1.3_01", "links": {"website": ["https://www.youtube.com/@TorebeCP"]}, "path": {"220": [[497, -605], [497, -601], [499, -601], [499, -602], [500, -602], [500, -603], [501, -603], [501, -605]]}, "center": {"220": [499, -603]}}, {"id": 5853, "name": "Axe of Godrick (Elden Ring)", "description": "A depiction of a greataxe wielded by the character Godrick the Grafted, from the video game Elden Ring. Elden Ring was developed by FromSoftware and is the most recent winner of The Game Awards.", "links": {"subreddit": ["Godrick_the_grafted", "Eldenring"]}, "path": {"248": [[1420, 233], [1428, 233], [1430, 236], [1429, 241], [1424, 246], [1420, 242], [1418, 238], [1419, 235]]}, "center": {"248": [1424, 238]}}, -{"id": 5854, "name": "Kraken Regiment Logo", "description": "The Kraken Regiment (Ukrainian: Спецпідрозділ «Kraken») is a Ukrainian military volunteer unit, part of the spetsnaz units of the Main Directorate of Intelligence of Ukraine formed in 2022 as a response to the Russian invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Kraken_Regiment"], "subreddit": ["placeukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"194-251": [[-108, -80], [-79, -80], [-93, -105]]}, "center": {"194-251": [-93, -88]}}, -{"id": 5855, "name": "JaYmZ Coins", "description": "A logo representing JaYmZ Corp's currency, the JaYmZ Coins", "links": {"website": ["https://Twitch.tv/TTVJaYmZ"], "subreddit": ["TTVJaYmZ"], "discord": ["CkcV3aUj"]}, "path": {"216-258": [[1346, -901], [1357, -901], [1357, -889], [1346, -889]]}, "center": {"216-258": [1352, -895]}}, -{"id": 5856, "name": "Flag of Europe", "description": "A small version of EU flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Europe"], "subreddit": ["placeukraine", "europe"], "discord": ["fMf7RJBMw6"]}, "path": {"207-258": [[-35, -157], [-27, -162], [-26, -169], [-30, -175], [-37, -177], [-43, -173], [-45, -166], [-42, -160]]}, "center": {"207-258": [-35, -167]}}, -{"id": 5857, "name": "Omori x Ukraine heart", "description": "A heart that symbolizes friendship between the two communities.", "links": {"subreddit": ["OMORI", "placeukraine"], "discord": ["8kVW3gq63p"]}, "path": {"61-258": [[-272, -163], [-277, -168], [-277, -170], [-275, -172], [-274, -172], [-272, -170], [-270, -172], [-269, -172], [-267, -170], [-267, -168]]}, "center": {"61-258": [-272, -167]}}, +{"id": 5854, "name": "Kraken Regiment Logo", "description": "The Kraken Regiment (Ukrainian: Спецпідрозділ «Kraken») is a Ukrainian military volunteer unit, part of the spetsnaz units of the Main Directorate of Intelligence of Ukraine formed in 2022 as a response to the Russian invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Kraken_Regiment"], "subreddit": ["placeukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"194-251, T": [[-108, -80], [-79, -80], [-93, -105]]}, "center": {"194-251, T": [-93, -88]}}, +{"id": 5855, "name": "JaYmZ Coins", "description": "A logo representing JaYmZ Corp's currency, the JaYmZ Coins", "links": {"website": ["https://Twitch.tv/TTVJaYmZ"], "subreddit": ["TTVJaYmZ"], "discord": ["CkcV3aUj"]}, "path": {"216-258, T": [[1346, -901], [1357, -901], [1357, -889], [1346, -889]]}, "center": {"216-258, T": [1352, -895]}}, +{"id": 5856, "name": "Flag of Europe", "description": "A small version of EU flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Europe"], "subreddit": ["placeukraine", "europe"], "discord": ["fMf7RJBMw6"]}, "path": {"207-258, T": [[-35, -157], [-27, -162], [-26, -169], [-30, -175], [-37, -177], [-43, -173], [-45, -166], [-42, -160]]}, "center": {"207-258, T": [-35, -167]}}, +{"id": 5857, "name": "Omori x Ukraine heart", "description": "A heart that symbolizes friendship between the two communities.", "links": {"subreddit": ["OMORI", "placeukraine"], "discord": ["8kVW3gq63p"]}, "path": {"61-258, T": [[-272, -163], [-277, -168], [-277, -170], [-275, -172], [-274, -172], [-272, -170], [-270, -172], [-269, -172], [-267, -170], [-267, -168]]}, "center": {"61-258, T": [-272, -167]}}, {"id": 5858, "name": "Zihwih", "description": "Image of the german twitch streamer Zihwih, he likes to stare on ducks. Too sad he can't see the one on his head", "links": {"website": ["https://www.twitch.tv/zihwih"]}, "path": {"176-178": [[-730, -259], [-725, -259], [-725, -261], [-724, -261], [-724, -266], [-725, -266], [-725, -267], [-728, -267], [-728, -266], [-730, -266]]}, "center": {"176-178": [-727, -263]}}, -{"id": 5859, "name": "Crimean Tatar Tamga", "description": "The symbol of Crimean Tatars(Qırımlılar), Turkic ethnic group and nation native to Crimea.", "links": {"website": ["https://en.wikipedia.org/wiki/Tamga"], "subreddit": ["placeUkraine"], "discord": ["fMf7RJBMw6"]}, "path": {"181-258": [[-178, -143], [-184, -143], [-189, -141], [-193, -136], [-194, -133], [-194, -127], [-191, -121], [-187, -118], [-183, -117], [-178, -117], [-172, -120], [-169, -125], [-168, -127], [-168, -134], [-171, -138], [-173, -141]]}, "center": {"181-258": [-181, -130]}}, -{"id": 5860, "name": "The Khersonian Watermelon", "description": "Watermelon is recognized as a symbol of the Kherson region. During peacetime, the sweet berry played an important role in promoting tourism in the region. During the war, the watermelon became a symbol of the region's liberation from Russian occupation.\n\nThe Kherson region is responsible for almost 50% of all watermelons farmed in Ukraine. Ukrainian watermelons are unique due to the temperature and soil in Kherson – their quality is so renowned that watermelons cultivated in other regions of Ukraine were frequently referred to as \"Khersonian\" by sellers since they had become a sign of taste and quality. Watermelons from the Kherson region were shipped to practically every city in Ukraine for sale.\n\nBecause of the war, most Ukrainians were unable to taste Kherson watermelons this summer. Kherson watermelons were only marketed in the occupied territory in Ukraine. Watermelons taken from the Kherson region were also exported to Russia.", "links": {"website": ["https://www.weareukraine.info/38081-2/", "https://www.bbc.com/news/world-europe-63624456", "https://caliber.az/en/post/108418/", "https://www.pravda.com.ua/eng/news/2022/11/11/7375980/", "https://www.tpp.ks.ua/en/khersonskij-region/ekonomika-regiona.html"], "subreddit": ["placeUkraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"250-258": [[-326, -97], [-317, -105], [-316, -105], [-314, -103], [-314, -98], [-314, -97], [-318, -93], [-322, -93], [-323, -93], [-326, -96]]}, "center": {"250-258": [-319, -98]}}, -{"id": 5861, "name": "Penguin", "description": "Penguins are an NPC race of the game Starbound, and are often a mascot of the game.", "links": {"website": ["https://starbounder.org/Penguin"], "subreddit": ["starbound", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"165-258": [[-713, 386], [-715, 388], [-715, 395], [-717, 398], [-714, 400], [-706, 400], [-706, 390], [-709, 386]]}, "center": {"165-258": [-710, 393]}}, -{"id": 5862, "name": "Caja Gang", "description": "La caja gang is a hispanic virtual friends server that emerged in 2022.\n\nIts name is due to the fact that a person, whom we eventually came to know as the \"box man\" became known for the number of boxes he opened in csgo\n\nFrom there, a discord server was created where many friendships were born and we agreed to leave a mark on r/place 2023\n\nThe members of the server who supported the pixelart of the box are: Zandro, Matute, Harak, Jeritou, Carlos-Mae, Facu, Ziko-Claudio, Maki, Gayome, Emah Leon and sanboo (santetas)\n\nOriginally above the box it said \"OG\" representing the most veteran of the server but they ended up changing it several times and we couldn't change it", "links": {"discord": ["HCUG6G7J"]}, "path": {"250-258": [[653, 834], [664, 834], [665, 853], [652, 853], [652, 835]]}, "center": {"250-258": [658, 844]}}, +{"id": 5859, "name": "Crimean Tatar Tamga", "description": "The symbol of Crimean Tatars(Qırımlılar), Turkic ethnic group and nation native to Crimea.", "links": {"website": ["https://en.wikipedia.org/wiki/Tamga"], "subreddit": ["placeUkraine"], "discord": ["fMf7RJBMw6"]}, "path": {"181-258, T": [[-178, -143], [-184, -143], [-189, -141], [-193, -136], [-194, -133], [-194, -127], [-191, -121], [-187, -118], [-183, -117], [-178, -117], [-172, -120], [-169, -125], [-168, -127], [-168, -134], [-171, -138], [-173, -141]]}, "center": {"181-258, T": [-181, -130]}}, +{"id": 5860, "name": "The Khersonian Watermelon", "description": "Watermelon is recognized as a symbol of the Kherson region. During peacetime, the sweet berry played an important role in promoting tourism in the region. During the war, the watermelon became a symbol of the region's liberation from Russian occupation.\n\nThe Kherson region is responsible for almost 50% of all watermelons farmed in Ukraine. Ukrainian watermelons are unique due to the temperature and soil in Kherson – their quality is so renowned that watermelons cultivated in other regions of Ukraine were frequently referred to as \"Khersonian\" by sellers since they had become a sign of taste and quality. Watermelons from the Kherson region were shipped to practically every city in Ukraine for sale.\n\nBecause of the war, most Ukrainians were unable to taste Kherson watermelons this summer. Kherson watermelons were only marketed in the occupied territory in Ukraine. Watermelons taken from the Kherson region were also exported to Russia.", "links": {"website": ["https://www.weareukraine.info/38081-2/", "https://www.bbc.com/news/world-europe-63624456", "https://caliber.az/en/post/108418/", "https://www.pravda.com.ua/eng/news/2022/11/11/7375980/", "https://www.tpp.ks.ua/en/khersonskij-region/ekonomika-regiona.html"], "subreddit": ["placeUkraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"250-258, T": [[-326, -97], [-317, -105], [-316, -105], [-314, -103], [-314, -98], [-314, -97], [-318, -93], [-322, -93], [-323, -93], [-326, -96]]}, "center": {"250-258, T": [-319, -98]}}, +{"id": 5861, "name": "Penguin", "description": "Penguins are an NPC race of the game Starbound, and are often a mascot of the game.", "links": {"website": ["https://starbounder.org/Penguin"], "subreddit": ["starbound", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"165-258, T": [[-713, 386], [-715, 388], [-715, 395], [-717, 398], [-714, 400], [-706, 400], [-706, 390], [-709, 386]]}, "center": {"165-258, T": [-710, 393]}}, +{"id": 5862, "name": "Caja Gang", "description": "La caja gang is a hispanic virtual friends server that emerged in 2022.\n\nIts name is due to the fact that a person, whom we eventually came to know as the \"box man\" became known for the number of boxes he opened in csgo\n\nFrom there, a discord server was created where many friendships were born and we agreed to leave a mark on r/place 2023\n\nThe members of the server who supported the pixelart of the box are: Zandro, Matute, Harak, Jeritou, Carlos-Mae, Facu, Ziko-Claudio, Maki, Gayome, Emah Leon and sanboo (santetas)\n\nOriginally above the box it said \"OG\" representing the most veteran of the server but they ended up changing it several times and we couldn't change it", "links": {"discord": ["HCUG6G7J"]}, "path": {"250-258, T": [[653, 834], [664, 834], [665, 853], [652, 853], [652, 835]]}, "center": {"250-258, T": [658, 844]}}, {"id": 5863, "name": "Smolster", "description": "A chibi version of Elster, the main character of SIGNALIS", "links": {"website": ["http://rose-engine.org/signalis/"], "subreddit": ["signalis"], "discord": ["signalis"]}, "path": {"105-125": [[-795, 389], [-784, 389], [-784, 404], [-795, 404], [-795, 397]]}, "center": {"105-125": [-789, 397]}}, -{"id": 5864, "name": "Trans Flag", "description": "A flag that represents the trans community.", "links": {}, "path": {"250-258": [[-1092, 88], [-1092, 92], [-1080, 92], [-1080, 88]]}, "center": {"250-258": [-1086, 90]}}, -{"id": 5865, "name": "Cute Little Froggy", "description": "A cute little froggy that was collaborated on by randos.", "links": {}, "path": {"250-258": [[-1275, 276], [-1275, 284], [-1267, 283], [-1267, 276]]}, "center": {"250-258": [-1271, 280]}}, -{"id": 5866, "name": "Capivara", "description": "The capybara[a] or greater capybara (Hydrochoerus hydrochaeris) is a giant cavy rodent native to South America. It is the largest living rodent and a member of the genus Hydrochoerus. The only other extant member is the lesser capybara (Hydrochoerus isthmius). Its close relatives include guinea pigs and rock cavies, and it is more distantly related to the agouti, the chinchilla, and the nutria. The capybara inhabits savannas and dense forests, and lives near bodies of water. It is a highly social species and can be found in groups as large as 100 individuals, but usually live in groups of 10–20 individuals. The capybara is hunted for its meat and hide and also for grease from its thick fatty skin. It is not considered a threatened species.", "links": {"website": ["https://en.wikipedia.org/wiki/Capybara"], "subreddit": ["brasil"]}, "path": {"146-258": [[-687, -656], [-681, -656], [-681, -663], [-680, -667], [-676, -669], [-675, -675], [-678, -678], [-681, -679], [-684, -681], [-687, -679], [-689, -681], [-691, -679], [-694, -674], [-695, -671], [-698, -670], [-700, -666], [-701, -662], [-701, -658], [-700, -657]]}, "center": {"146-258": [-689, -665]}}, -{"id": 5867, "name": "PlushPati cat", "description": "purple cat, which represents the german twitch streamer PlushPati; she loves cats and uses them for emotes and sub badges", "links": {"website": ["https://www.twitch.tv/plushpati"]}, "path": {"171-258": [[-730, -259], [-730, -265], [-736, -265], [-737, -263], [-738, -263], [-738, -259]]}, "center": {"171-258": [-734, -262]}}, -{"id": 5868, "name": "French magpie", "description": "A magpie created on the Ukrainian flag at the request of the French r/place community. It symbolizes friendship between the two countries.\n\nMagpies are considered to be among the world's most intelligent animals, being capable of solving complex tasks and recognizing themselves in a mirror.\nMagpies are also known to have excellent memory - it allows them to befriend people who feed them, often bringing them gifts in return.", "links": {"website": ["https://en.wikipedia.org/wiki/Eurasian_magpie"], "subreddit": ["placeukraine", "placeFR"], "discord": ["8kVW3gq63p"]}, "path": {"164-251": [[-276, -161], [-271, -161], [-267, -164], [-264, -164], [-261, -162], [-263, -159], [-266, -158], [-266, -157], [-268, -157], [-273, -159], [-276, -160]]}, "center": {"164-251": [-267, -160]}}, -{"id": 5869, "name": "Scarlet Macaw / Guacamaya Roja", "description": "Is a large yellow, red and blue Neotropical parrot native to humid evergreen forests of the Americas. In some areas it has suffered local extinction due to habitat destruction or capture for the parrot trade, but in other areas it remains quite common. It is the national bird of Honduras.\n\nThe Scarlet Macaw was considered the incarnation of the fire of the sun unfolding from the sky to the Earth, like the solar rays for the civilization \"MAYA\".\nThis beautiful bird represented for the Mayans, the sun and the sky, the red color of their plumage symbolized the sun's rays, the yellow the sun itself, and the blue the sky.", "links": {"website": ["https://en.wikipedia.org/wiki/Scarlet_macaw"], "subreddit": ["Honduras", "placehn"], "discord": ["hdGCJXSVNf"]}, "path": {"250-258": [[-809, 456], [-809, 443], [-792, 443], [-792, 456], [-801, 460], [-805, 458]]}, "center": {"250-258": [-800, 451]}}, -{"id": 5870, "name": "Pampúshka", "description": "Pampúshka (Ukrainian: пампушка, pl. пампушки pampushky; diminutive of pampukh or pampukha) is a small savory or sweet yeast-raised bun or doughnut typical for Ukrainian cuisine. Pampushky are made of yeast dough from wheat, rye or buckwheat flour. Traditionally they are baked but may also be fried. \n\nSavoury pampushky have no filling. They are usually seasoned with garlic sauce and often served as a side dish with red borscht or yushka.\n\nSweet pampushky may be filled with fruits, berries, varenye, povydlo or poppy seeds, and topped with powdered sugar.", "links": {"website": ["https://en.wikipedia.org/wiki/Pampushka", "https://authenticukraine.com.ua/en/food/bors"], "subreddit": ["placeUkraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"191-258": [[-190, -79], [-190, -82], [-188, -84], [-186, -84], [-185, -83], [-184, -84], [-184, -85], [-181, -85], [-179, -83], [-179, -81], [-181, -79], [-190, -79], [-190, -81]]}, "center": {"191-258": [-182, -82]}}, -{"id": 5871, "name": "Dota 2 Sniper", "description": "Sniper, aka Kardel Sharpeye, is one of the many characters from the game Dota 2. With assistance from Dwarf Fortress, He was able to join their ranks and become a close ally. \n\n(Note: Sniper is a Dwarf, but more precicse a Keen Folk\")", "links": {"website": ["https://dota2.fandom.com/wiki/Sniper", "https://www.dota2.com/hero/sniper"], "subreddit": ["DotA2"]}, "path": {"248-258": [[-1444, 262], [-1444, 274], [-1436, 274], [-1436, 263]]}, "center": {"248-258": [-1440, 268]}}, +{"id": 5864, "name": "Trans Flag", "description": "A flag that represents the trans community.", "links": {}, "path": {"250-258, T": [[-1092, 88], [-1092, 92], [-1080, 92], [-1080, 88]]}, "center": {"250-258, T": [-1086, 90]}}, +{"id": 5865, "name": "Cute Little Froggy", "description": "A cute little froggy that was collaborated on by randos.", "links": {}, "path": {"250-258, T": [[-1275, 276], [-1275, 284], [-1267, 283], [-1267, 276]]}, "center": {"250-258, T": [-1271, 280]}}, +{"id": 5866, "name": "Capivara", "description": "The capybara[a] or greater capybara (Hydrochoerus hydrochaeris) is a giant cavy rodent native to South America. It is the largest living rodent and a member of the genus Hydrochoerus. The only other extant member is the lesser capybara (Hydrochoerus isthmius). Its close relatives include guinea pigs and rock cavies, and it is more distantly related to the agouti, the chinchilla, and the nutria. The capybara inhabits savannas and dense forests, and lives near bodies of water. It is a highly social species and can be found in groups as large as 100 individuals, but usually live in groups of 10–20 individuals. The capybara is hunted for its meat and hide and also for grease from its thick fatty skin. It is not considered a threatened species.", "links": {"website": ["https://en.wikipedia.org/wiki/Capybara"], "subreddit": ["brasil"]}, "path": {"146-258, T": [[-687, -656], [-681, -656], [-681, -663], [-680, -667], [-676, -669], [-675, -675], [-678, -678], [-681, -679], [-684, -681], [-687, -679], [-689, -681], [-691, -679], [-694, -674], [-695, -671], [-698, -670], [-700, -666], [-701, -662], [-701, -658], [-700, -657]]}, "center": {"146-258, T": [-689, -665]}}, +{"id": 5867, "name": "PlushPati cat", "description": "purple cat, which represents the german twitch streamer PlushPati; she loves cats and uses them for emotes and sub badges", "links": {"website": ["https://www.twitch.tv/plushpati"]}, "path": {"171-258, T": [[-730, -259], [-730, -265], [-736, -265], [-737, -263], [-738, -263], [-738, -259]]}, "center": {"171-258, T": [-734, -262]}}, +{"id": 5868, "name": "French magpie", "description": "A magpie created on the Ukrainian flag at the request of the French r/place community. It symbolizes friendship between the two countries.\n\nMagpies are considered to be among the world's most intelligent animals, being capable of solving complex tasks and recognizing themselves in a mirror.\nMagpies are also known to have excellent memory - it allows them to befriend people who feed them, often bringing them gifts in return.", "links": {"website": ["https://en.wikipedia.org/wiki/Eurasian_magpie"], "subreddit": ["placeukraine", "placeFR"], "discord": ["8kVW3gq63p"]}, "path": {"164-251, T": [[-276, -161], [-271, -161], [-267, -164], [-264, -164], [-261, -162], [-263, -159], [-266, -158], [-266, -157], [-268, -157], [-273, -159], [-276, -160]]}, "center": {"164-251, T": [-267, -160]}}, +{"id": 5869, "name": "Scarlet Macaw / Guacamaya Roja", "description": "Is a large yellow, red and blue Neotropical parrot native to humid evergreen forests of the Americas. In some areas it has suffered local extinction due to habitat destruction or capture for the parrot trade, but in other areas it remains quite common. It is the national bird of Honduras.\n\nThe Scarlet Macaw was considered the incarnation of the fire of the sun unfolding from the sky to the Earth, like the solar rays for the civilization \"MAYA\".\nThis beautiful bird represented for the Mayans, the sun and the sky, the red color of their plumage symbolized the sun's rays, the yellow the sun itself, and the blue the sky.", "links": {"website": ["https://en.wikipedia.org/wiki/Scarlet_macaw"], "subreddit": ["Honduras", "placehn"], "discord": ["hdGCJXSVNf"]}, "path": {"250-258, T": [[-809, 456], [-809, 443], [-792, 443], [-792, 456], [-801, 460], [-805, 458]]}, "center": {"250-258, T": [-800, 451]}}, +{"id": 5870, "name": "Pampúshka", "description": "Pampúshka (Ukrainian: пампушка, pl. пампушки pampushky; diminutive of pampukh or pampukha) is a small savory or sweet yeast-raised bun or doughnut typical for Ukrainian cuisine. Pampushky are made of yeast dough from wheat, rye or buckwheat flour. Traditionally they are baked but may also be fried. \n\nSavoury pampushky have no filling. They are usually seasoned with garlic sauce and often served as a side dish with red borscht or yushka.\n\nSweet pampushky may be filled with fruits, berries, varenye, povydlo or poppy seeds, and topped with powdered sugar.", "links": {"website": ["https://en.wikipedia.org/wiki/Pampushka", "https://authenticukraine.com.ua/en/food/bors"], "subreddit": ["placeUkraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"191-258, T": [[-190, -79], [-190, -82], [-188, -84], [-186, -84], [-185, -83], [-184, -84], [-184, -85], [-181, -85], [-179, -83], [-179, -81], [-181, -79], [-190, -79], [-190, -81]]}, "center": {"191-258, T": [-182, -82]}}, +{"id": 5871, "name": "Dota 2 Sniper", "description": "Sniper, aka Kardel Sharpeye, is one of the many characters from the game Dota 2. With assistance from Dwarf Fortress, He was able to join their ranks and become a close ally. \n\n(Note: Sniper is a Dwarf, but more precicse a Keen Folk\")", "links": {"website": ["https://dota2.fandom.com/wiki/Sniper", "https://www.dota2.com/hero/sniper"], "subreddit": ["DotA2"]}, "path": {"248-258, T": [[-1444, 262], [-1444, 274], [-1436, 274], [-1436, 263]]}, "center": {"248-258, T": [-1440, 268]}}, {"id": 5872, "name": "Da Fakaz Myna Birb #7", "description": "This is the 7th Myna Birb and 3rd of the \"kissing\" variant. Depending on where you are on the timeline, you may find a dark green amongus riding on the birb. That amongus was placed by us, as a means to protect us against the surrounding amongus intruders (a disguise, of sorts). We later removed it once we made an alliance with the Rubius and Titi folks. Part of the deal was to help kill amongus, and our kill count totaled at about 6 amongus slain (as well as one cute-but-parasitic Pikachu). This birb eventually got wiped on accident near the end, but we were very glad to have stayed as long as we did. \n----------\n\"Da Fakaz\" is a family of gamers, nerds, and performers from Maui. Our community mascot is the myna bird, which is the most common bird in Hawaii. It also squawks loudly, just like we do sometimes. There are 8 \"Da Fakaz Myna Birbs\" that existed in r/place 2023. Try to find them all!", "links": {}, "path": {"170-233": [[234, 668], [238, 668], [238, 669], [239, 669], [239, 670], [243, 670], [243, 668], [242, 668], [242, 665], [241, 665], [241, 664], [240, 664], [240, 663], [238, 663], [238, 661], [234, 661]]}, "center": {"170-233": [237, 665]}}, {"id": 5873, "name": "Da Fakaz Myna Birb #5", "description": "This if the 5th Myna Birb and the 1st of the \"kissing\" variant. It is also the shortest lived birb, lasting only an hour and a half or so. Nevertheless, the birb was here, and it got to kiss the good-good puppers. Clearly the Rubius Monster became jealous and decided to embrace the doggo in a full-on no bs hug, which wiped our birb out with it's thick muscle. Whether killing this birb in the process was collateral or intentional, we won't know.\n----------\n\"Da Fakaz\" is a family of gamers, nerds, and performers from Maui. Our community mascot is the myna bird, which is the most common bird in Hawaii. It also squawks loudly, just like we do sometimes. There are 8 \"Da Fakaz Myna Birbs\" that existed in r/place 2023. Try to find them all!", "links": {}, "path": {"137-139": [[657, 52], [661, 52], [661, 53], [663, 53], [663, 54], [664, 54], [664, 52], [663, 52], [663, 49], [662, 49], [662, 50], [661, 50], [661, 51], [658, 51], [658, 48], [654, 48], [654, 49], [655, 49], [655, 50], [656, 50], [656, 51], [657, 51]]}, "center": {"137-139": [657, 49]}}, -{"id": 5874, "name": "Da Fakaz Myna Birb #8", "description": "This is the 8th and final Myna Birb. It is also the 4th of the \"kissing\" variant, and is the only kiss where we didn't get permission from the neighbor community to place it (not to say that we didn't try). Regardless, Brazil seemed to simply leave it alone out of the kindest of their hearts. With that kindness, our birb was afforded the privilege to live until the end of r/place 2023.\n----------\n\"Da Fakaz\" is a family of gamers, nerds, and performers from Maui, Hawaii. Our community mascot is the myna bird, which is the most common bird in Hawaii. It also squawks loudly, just like we do sometimes. There are 8 \"Da Fakaz Myna Birbs\" that existed in r/place 2023. Try to find them all!", "links": {}, "path": {"226-258": [[214, 317], [216, 317], [216, 319], [217, 319], [217, 318], [220, 318], [220, 319], [221, 319], [221, 317], [220, 317], [220, 314], [217, 316], [217, 312], [215, 312], [215, 316]]}, "center": {"226-258": [219, 317]}}, -{"id": 5875, "name": "Amon's Monocle and Hat - Lord of the Mysteries", "description": "\"His\" appearance is described as a young man with black eyes and curly black hair. \"He\" has a broad forehead and a thin face. Usually, \"He\" wears a crystal monocle, which hangs over \"His\" right eye, and a black pointed hat.", "links": {"website": ["https://lordofthemysteries.fandom.com/wiki/Amon"], "subreddit": ["LordofTheMysteries"]}, "path": {"250-258": [[1097, -863], [1113, -863], [1114, -847], [1105, -847], [1104, -853], [1104, -854], [1097, -854]]}, "center": {"250-258": [1108, -858]}}, -{"id": 5876, "name": "Goomy - Pokémon", "description": "Goomy is a Dragon-type Pokémon introduced in Generation VI.\n\nA turbulent history, Goomy took advantage of the deteriorating dog artwork made by r/place.brff. Afterwards, they were taken in by Terraria, sitting atop a boulder with a bow adorning its head as the dog was rebuilt.\n\nCreated by the \"Pokemon in r/place\" Discord in alliance with Youtube streamer ChippyGaming, leader of the Terraria artwork.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Goomy_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"], "discord": ["X83BN5gTFA"]}, "path": {"250-258": [[681, -46], [688, -43], [688, -38], [679, -38], [679, -42]]}, "center": {"250-258": [683, -41]}}, -{"id": 5877, "name": "Golden Gate", "description": "Golden Gate, or \"Zoloti Vorota\" in Ukrainian, is a yet another historical monument from the times of Kievan Rus'. It is located in Kyiv, the capital of Ukraine, and is considered one of the most famous landmarks of the country.\n\nThe gate was built in the early 11th century under the reign of Yaroslav the Wise, and served as the main entrance through the fortifications of ancient Kyiv. It was inspired by the Golden Gate of ancient Constantinople, which was well known at the time for its incredibly strong defenses. During the middle ages the gate was almost completely destroyed, and had only been rebuilt by the Soviet authorities in 1982. The gate has undergone multiple further restorations ever since.\n\nOne of the stations of Kyiv Metro bears the name of the landmark.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Golden_Gate,_Kyiv"], "subreddit": ["placeukraine"], "discord": ["8kVW3gq63p"]}, "path": {"201-251": [[-212, -130], [-212, -135], [-211, -136], [-213, -138], [-209, -138], [-207, -141], [-207, -144], [-206, -145], [-205, -144], [-205, -141], [-203, -138], [-199, -138], [-201, -136], [-200, -135], [-200, -130]]}, "center": {"201-251": [-206, -134]}}, +{"id": 5874, "name": "Da Fakaz Myna Birb #8", "description": "This is the 8th and final Myna Birb. It is also the 4th of the \"kissing\" variant, and is the only kiss where we didn't get permission from the neighbor community to place it (not to say that we didn't try). Regardless, Brazil seemed to simply leave it alone out of the kindest of their hearts. With that kindness, our birb was afforded the privilege to live until the end of r/place 2023.\n----------\n\"Da Fakaz\" is a family of gamers, nerds, and performers from Maui, Hawaii. Our community mascot is the myna bird, which is the most common bird in Hawaii. It also squawks loudly, just like we do sometimes. There are 8 \"Da Fakaz Myna Birbs\" that existed in r/place 2023. Try to find them all!", "links": {}, "path": {"226-258, T": [[214, 317], [216, 317], [216, 319], [217, 319], [217, 318], [220, 318], [220, 319], [221, 319], [221, 317], [220, 317], [220, 314], [217, 316], [217, 312], [215, 312], [215, 316]]}, "center": {"226-258, T": [219, 317]}}, +{"id": 5875, "name": "Amon's Monocle and Hat - Lord of the Mysteries", "description": "\"His\" appearance is described as a young man with black eyes and curly black hair. \"He\" has a broad forehead and a thin face. Usually, \"He\" wears a crystal monocle, which hangs over \"His\" right eye, and a black pointed hat.", "links": {"website": ["https://lordofthemysteries.fandom.com/wiki/Amon"], "subreddit": ["LordofTheMysteries"]}, "path": {"250-258, T": [[1097, -863], [1113, -863], [1114, -847], [1105, -847], [1104, -853], [1104, -854], [1097, -854]]}, "center": {"250-258, T": [1108, -858]}}, +{"id": 5876, "name": "Goomy - Pokémon", "description": "Goomy is a Dragon-type Pokémon introduced in Generation VI.\n\nA turbulent history, Goomy took advantage of the deteriorating dog artwork made by r/place.brff. Afterwards, they were taken in by Terraria, sitting atop a boulder with a bow adorning its head as the dog was rebuilt.\n\nCreated by the \"Pokemon in r/place\" Discord in alliance with Youtube streamer ChippyGaming, leader of the Terraria artwork.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Goomy_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"], "discord": ["X83BN5gTFA"]}, "path": {"250-258, T": [[681, -46], [688, -43], [688, -38], [679, -38], [679, -42]]}, "center": {"250-258, T": [683, -41]}}, +{"id": 5877, "name": "Golden Gate", "description": "Golden Gate, or \"Zoloti Vorota\" in Ukrainian, is a yet another historical monument from the times of Kievan Rus'. It is located in Kyiv, the capital of Ukraine, and is considered one of the most famous landmarks of the country.\n\nThe gate was built in the early 11th century under the reign of Yaroslav the Wise, and served as the main entrance through the fortifications of ancient Kyiv. It was inspired by the Golden Gate of ancient Constantinople, which was well known at the time for its incredibly strong defenses. During the middle ages the gate was almost completely destroyed, and had only been rebuilt by the Soviet authorities in 1982. The gate has undergone multiple further restorations ever since.\n\nOne of the stations of Kyiv Metro bears the name of the landmark.", "links": {"website": ["https://en.m.wikipedia.org/wiki/Golden_Gate,_Kyiv"], "subreddit": ["placeukraine"], "discord": ["8kVW3gq63p"]}, "path": {"201-251, T": [[-212, -130], [-212, -135], [-211, -136], [-213, -138], [-209, -138], [-207, -141], [-207, -144], [-206, -145], [-205, -144], [-205, -141], [-203, -138], [-199, -138], [-201, -136], [-200, -135], [-200, -130]]}, "center": {"201-251, T": [-206, -134]}}, {"id": 5878, "name": "YAPms2", "description": "YAPms2 name created by the YAPms Discord server created in recognition of the in-development second version of YAPms, or Yet Another Political Map Simulator.", "links": {"website": ["https://yapms2.com"], "subreddit": ["yapms"], "discord": ["9PFfdMY3Rd"]}, "path": {"173-235": [[-711, 743], [-678, 743], [-678, 751], [-711, 751]]}, "center": {"173-235": [-694, 747]}}, -{"id": 5879, "name": "5up - Streamer", "description": "5up is a variety streamer on Twitch. He's popular for his Among Us gameplay, but is also active in other games, such as Minecraft or Valorant.\n\nThe icon depicts his leafling in a pink scarf, which is the channel's mascot/main emote.", "links": {"website": ["https://www.twitch.tv/5uppp"], "subreddit": ["5up"]}, "path": {"250-258": [[1464, 652], [1455, 652], [1455, 664], [1475, 664], [1475, 659], [1464, 659]]}, "center": {"250-258": [1460, 660]}}, -{"id": 5880, "name": "Latios / Latias - Pokémon", "description": "Latios (blue) and Latias (red) are a duo of Dragon/Psychic-Type Legendary Pokémon introduced in Generation III. They are referred to as the \"Eon Duo\" or \"Lati Twins\" by some fans.\n\nThe artwork depicts both against a checkered design, with a purple heart to signify their close relations.\n\nCreated by the hivemind during the Charizard card's deterioration.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Latios_(Pok%C3%A9mon)", "https://bulbapedia.bulbagarden.net/wiki/Latias_(Pok%C3%A9mon)"]}, "path": {"250-258": [[-1500, 122], [-1469, 122], [-1469, 135], [-1500, 135]]}, "center": {"250-258": [-1484, 129]}}, -{"id": 5881, "name": "Pikachu on a Poké Ball - Pokémon", "description": "Pikachu is an Electric-Type Pokémon introduced in Generation I. Pikachu's simple yet iconic design makes it as the mascot for Pokémon, and one of Nintendo's major mascots as a whole.\n\nBelow Pikachu is a Poké Ball, which are used to catch Pokémon.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon)", "https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9_Ball"]}, "path": {"250-258": [[-1316, 437], [-1316, 451], [-1309, 451], [-1309, 437]]}, "center": {"250-258": [-1312, 444]}}, +{"id": 5879, "name": "5up - Streamer", "description": "5up is a variety streamer on Twitch. He's popular for his Among Us gameplay, but is also active in other games, such as Minecraft or Valorant.\n\nThe icon depicts his leafling in a pink scarf, which is the channel's mascot/main emote.", "links": {"website": ["https://www.twitch.tv/5uppp"], "subreddit": ["5up"]}, "path": {"250-258, T": [[1464, 652], [1455, 652], [1455, 664], [1475, 664], [1475, 659], [1464, 659]]}, "center": {"250-258, T": [1460, 660]}}, +{"id": 5880, "name": "Latios / Latias - Pokémon", "description": "Latios (blue) and Latias (red) are a duo of Dragon/Psychic-Type Legendary Pokémon introduced in Generation III. They are referred to as the \"Eon Duo\" or \"Lati Twins\" by some fans.\n\nThe artwork depicts both against a checkered design, with a purple heart to signify their close relations.\n\nCreated by the hivemind during the Charizard card's deterioration.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Latios_(Pok%C3%A9mon)", "https://bulbapedia.bulbagarden.net/wiki/Latias_(Pok%C3%A9mon)"]}, "path": {"250-258, T": [[-1500, 122], [-1469, 122], [-1469, 135], [-1500, 135]]}, "center": {"250-258, T": [-1484, 129]}}, +{"id": 5881, "name": "Pikachu on a Poké Ball - Pokémon", "description": "Pikachu is an Electric-Type Pokémon introduced in Generation I. Pikachu's simple yet iconic design makes it as the mascot for Pokémon, and one of Nintendo's major mascots as a whole.\n\nBelow Pikachu is a Poké Ball, which are used to catch Pokémon.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon)", "https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9_Ball"]}, "path": {"250-258, T": [[-1316, 437], [-1316, 451], [-1309, 451], [-1309, 437]]}, "center": {"250-258, T": [-1312, 444]}}, {"id": 5882, "name": "Queen Chrysalis", "description": "Changeling hives queen Chrysalis", "links": {"subreddit": ["equestriaatwar"]}, "path": {"35": [[-41, 199], [-38, 188], [-35, 181], [-35, 177], [-34, 178], [-28, 178], [-22, 181], [-19, 179], [-18, 180], [-18, 185], [-15, 187], [-15, 193], [-14, 198], [-15, 202], [-28, 203], [-32, 203], [-35, 204], [-39, 201]]}, "center": {"35": [-27, 192]}}, -{"id": 5883, "name": "Da Fakaz Myna Birb #6", "description": "This is the 6th Myna Birb and 2nd of the \"kissing\" variant. This birb is also the one who lived the longest, thanks to the kindness of the Inscryption Stoat community. The Inscryption Stoat community were the first to accept us as allies, and they helped provide a home for many other small works as well. It is a tragedy that our small town of art got decimated by bots near the end, but the Stoat's icy stare remained true, a symbol of their conviction. We Da Fakaz will never forget their ferocity hospitality.\n----------\n\"Da Fakaz\" is a family of gamers, nerds, and performers from Maui. Our community mascot is the myna bird, which is the most common bird in Hawaii. It also squawks loudly, just like we do sometimes. There are 8 \"Da Fakaz Myna Birbs\" that existed in r/place 2023. Try to find them all!", "links": {}, "path": {"164-258": [[-958, -304], [-953, -304], [-953, -303], [-952, -303], [-952, -302], [-951, -302], [-951, -304], [-952, -304], [-952, -307], [-953, -307], [-953, -310], [-954, -310], [-954, -309], [-956, -309], [-956, -310], [-957, -310], [-957, -305]]}, "center": {"164-258": [-955, -307]}}, +{"id": 5883, "name": "Da Fakaz Myna Birb #6", "description": "This is the 6th Myna Birb and 2nd of the \"kissing\" variant. This birb is also the one who lived the longest, thanks to the kindness of the Inscryption Stoat community. The Inscryption Stoat community were the first to accept us as allies, and they helped provide a home for many other small works as well. It is a tragedy that our small town of art got decimated by bots near the end, but the Stoat's icy stare remained true, a symbol of their conviction. We Da Fakaz will never forget their ferocity hospitality.\n----------\n\"Da Fakaz\" is a family of gamers, nerds, and performers from Maui. Our community mascot is the myna bird, which is the most common bird in Hawaii. It also squawks loudly, just like we do sometimes. There are 8 \"Da Fakaz Myna Birbs\" that existed in r/place 2023. Try to find them all!", "links": {}, "path": {"164-258, T": [[-958, -304], [-953, -304], [-953, -303], [-952, -303], [-952, -302], [-951, -302], [-951, -304], [-952, -304], [-952, -307], [-953, -307], [-953, -310], [-954, -310], [-954, -309], [-956, -309], [-956, -310], [-957, -310], [-957, -305]]}, "center": {"164-258, T": [-955, -307]}}, {"id": 5884, "name": "TatiLusa", "description": "TatiLusa is a brazilian vtuber from the northeast region. She was one of the first vtubers from Brazil, becoming one by the end of 2020. Her vtuber model represents the \"cangaceiros\", a common symbol of her region.", "links": {"subreddit": ["tatilusa"]}, "path": {"118-123": [[-786, -754], [-786, -743], [-779, -743], [-779, -754]]}, "center": {"118-123": [-782, -748]}}, -{"id": 5885, "name": "Tulpamancers United", "description": "It's a drawing of the universal Tulpamancy symbol commissioned and executed by the TulpaCentral Discord server", "links": {"website": ["https://discord.me/tulpa-central"], "subreddit": ["tulpaplace"], "discord": ["ysByTWgm"]}, "path": {"205-258": [[1331, 13], [1340, 12], [1340, 21], [1332, 21], [1332, 12]]}, "center": {"205-258": [1336, 17]}}, -{"id": 5886, "name": "Switzerland area", "description": "A red area created for switzerland-themed creations, at one point taken over by the swiss flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "switzerland"]}, "path": {"98-251": [[-590, 184], [-590, 267], [-501, 267], [-501, 184]], "89-97": [[-501, 184], [-501, 267], [-584, 267], [-584, 184]], "87-88": [[-584, 266], [-502, 266], [-502, 189], [-584, 190]]}, "center": {"98-251": [-545, 226], "89-97": [-542, 226], "87-88": [-543, 228]}}, -{"id": 5887, "name": "VReverie logo", "description": "VReverie is a virtual entertainment agency headquartered in Singapore. Founded in 2021 by two like-minded individuals driven by passion for anime, gaming and the content creation scene. Their mission is to put smiles on viewers' faces across the globe with entertaining live streams and digital content", "links": {"website": ["https://v-reverie.com"], "discord": ["3zrArdTwC6", "3xfYPNRfy4"]}, "path": {"234-258": [[1215, -845], [1227, -845], [1227, -833], [1215, -833]]}, "center": {"234-258": [1221, -839]}}, -{"id": 5888, "name": "Tiny Puerto Rico Flag", "description": "A tiny flag of Puerto Rico, a US unincorporated territory located in the Caribbean.", "links": {"website": ["https://en.wikipedia.org/wiki/Puerto_Rico"]}, "path": {"250-258": [[1414, -12], [1424, -12], [1424, -6], [1414, -6]]}, "center": {"250-258": [1419, -9]}}, -{"id": 5889, "name": "Technoblade", "description": "Technoblade was a YouTuber for the game Minecraft known for his competitiveness and funny humor. He was part of the Minecraft content creator group Sleepy Bois Inc. (SBI), and also a part of the Minecraft series Dream SMP, where he was part of the anarchist organization The Syndicate. He contracted cancer in 2021, and passed away in June 2022.\n\nThis area is r/Technoblade's contribution to the Fuck Spez artwork.", "links": {"website": ["https://www.youtube.com/channel/UCFAiFyGs6oDiF1Nf-rRJpZA", "https://en.wikipedia.org/wiki/Technoblade", "https://youtube.fandom.com/wiki/Technoblade"], "subreddit": ["Technoblade", "fuckspezplace"], "discord": ["fuckspez"]}, "path": {"208-258": [[1346, -169], [1393, -169], [1393, -127], [1346, -127]]}, "center": {"208-258": [1370, -148]}}, -{"id": 5890, "name": "MadPatArt", "description": "Pato o Patricio, es un streamer y artista argentino de la banda de Los Vectorgas. Hace diseño e ilustraciónes muy buenas, es un conocedor de cualquier videojuego aunque no lo haya jugado y es buen pibe\n\nTqm pato", "links": {"website": ["https://m.twitch.tv/madpatart"]}, "path": {"176-258": [[-804, 587], [-804, 614], [-780, 614], [-779, 614], [-779, 587]]}, "center": {"176-258": [-791, 601]}}, +{"id": 5885, "name": "Tulpamancers United", "description": "It's a drawing of the universal Tulpamancy symbol commissioned and executed by the TulpaCentral Discord server", "links": {"website": ["https://discord.me/tulpa-central"], "subreddit": ["tulpaplace"], "discord": ["ysByTWgm"]}, "path": {"205-258, T": [[1331, 13], [1340, 12], [1340, 21], [1332, 21], [1332, 12]]}, "center": {"205-258, T": [1336, 17]}}, +{"id": 5886, "name": "Switzerland area", "description": "A red area created for switzerland-themed creations, at one point taken over by the swiss flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["placeCH", "switzerland"]}, "path": {"89-97": [[-501, 184], [-501, 267], [-584, 267], [-584, 184]], "87-88": [[-584, 266], [-502, 266], [-502, 189], [-584, 190]], "98-251, T": [[-590, 184], [-590, 267], [-501, 267], [-501, 184]]}, "center": {"89-97": [-542, 226], "87-88": [-543, 228], "98-251, T": [-545, 226]}}, +{"id": 5887, "name": "VReverie logo", "description": "VReverie is a virtual entertainment agency headquartered in Singapore. Founded in 2021 by two like-minded individuals driven by passion for anime, gaming and the content creation scene. Their mission is to put smiles on viewers' faces across the globe with entertaining live streams and digital content", "links": {"website": ["https://v-reverie.com"], "discord": ["3zrArdTwC6", "3xfYPNRfy4"]}, "path": {"234-258, T": [[1215, -845], [1227, -845], [1227, -833], [1215, -833]]}, "center": {"234-258, T": [1221, -839]}}, +{"id": 5888, "name": "Tiny Puerto Rico Flag", "description": "A tiny flag of Puerto Rico, a US unincorporated territory located in the Caribbean.", "links": {"website": ["https://en.wikipedia.org/wiki/Puerto_Rico"]}, "path": {"250-258, T": [[1414, -12], [1424, -12], [1424, -6], [1414, -6]]}, "center": {"250-258, T": [1419, -9]}}, +{"id": 5889, "name": "Technoblade", "description": "Technoblade was a YouTuber for the game Minecraft known for his competitiveness and funny humor. He was part of the Minecraft content creator group Sleepy Bois Inc. (SBI), and also a part of the Minecraft series Dream SMP, where he was part of the anarchist organization The Syndicate. He contracted cancer in 2021, and passed away in June 2022.\n\nThis area is r/Technoblade's contribution to the Fuck Spez artwork.", "links": {"website": ["https://www.youtube.com/channel/UCFAiFyGs6oDiF1Nf-rRJpZA", "https://en.wikipedia.org/wiki/Technoblade", "https://youtube.fandom.com/wiki/Technoblade"], "subreddit": ["Technoblade", "fuckspezplace"], "discord": ["fuckspez"]}, "path": {"208-258, T": [[1346, -169], [1393, -169], [1393, -127], [1346, -127]]}, "center": {"208-258, T": [1370, -148]}}, +{"id": 5890, "name": "MadPatArt", "description": "Pato o Patricio, es un streamer y artista argentino de la banda de Los Vectorgas. Hace diseño e ilustraciónes muy buenas, es un conocedor de cualquier videojuego aunque no lo haya jugado y es buen pibe\n\nTqm pato", "links": {"website": ["https://m.twitch.tv/madpatart"]}, "path": {"176-258, T": [[-804, 587], [-804, 614], [-780, 614], [-779, 614], [-779, 587]]}, "center": {"176-258, T": [-791, 601]}}, {"id": 5891, "name": "Da Fakaz Myna Birb #1", "description": "The 1st Myna Birb. Our first attempt at placing something on r/Place ever. Excited and nervous, we originally clashed with the emoji to our left, but eventually conceded and scooted over to the right. From there, we watched as the whole area around us fought for dominance, while we remained solid and strong. It wasn't until much later that we realized that we were on a flag, which was the first lesson we learned in r/place: don't screw with flags unless you plan to lose.\n----------\n\"Da Fakaz\" is a family of gamers, nerds, and performers from Maui. Our community mascot is the myna bird, which is the most common bird in Hawaii. It also squawks loudly, just like we do sometimes. There are 8 \"Da Fakaz Myna Birbs\" that existed in r/place 2023. Try to find them all!", "links": {}, "path": {"79-89": [[781, -495], [781, -483], [790, -483], [790, -495]]}, "center": {"79-89": [786, -489]}}, {"id": 5892, "name": "Da Fakaz Myna Birb #4", "description": "This is the 4th Myna Birb. On the timeline, if you scroll to just after the Natalan attack you'll see that our birb goes Super Saiyan out of Natalan's void, becoming the first of the annihilated small works to return. We like to think this may have inspired the rest of the neighborhood to return, as they do soon after (even though it results in all of us immediately dying to another Netherlands flag). \nShoutout to the Monokuma folks for being great neighbors!\n----------\n\"Da Fakaz\" is a family of gamers, nerds, and performers from Maui. Our community mascot is the myna bird, which is the most common bird in Hawaii. It also squawks loudly, just like we do sometimes. There are 8 \"Da Fakaz Myna Birbs\" that existed in r/place 2023. Try to find them all!", "links": {}, "path": {"123-134": [[-24, -533], [-24, -527], [-15, -527], [-15, -533]]}, "center": {"123-134": [-19, -530]}}, {"id": 5893, "name": "Fuck spez (small, top right)", "description": "Protest messaging that repeats \"Fuck Spez\" in all caps", "links": {}, "path": {"1": [[250, -357], [250, -272], [274, -272], [275, -281], [286, -281], [291, -291], [291, -357]], "5": [[248, -331], [250, -291], [291, -291], [291, -277], [350, -277], [350, -283], [310, -283], [304, -290], [291, -291], [291, -321], [356, -321], [357, -331]], "2-4": [[250, -371], [250, -157], [267, -157], [268, -154], [294, -156], [294, -205], [255, -205], [255, -209], [272, -224], [293, -226], [293, -239], [302, -262], [315, -276], [331, -276], [331, -283], [296, -283], [296, -288], [291, -288], [291, -317], [291, -318], [322, -318], [337, -323], [340, -366], [337, -371], [324, -371], [322, -370]], "6-8": [[248, -330], [248, -288], [287, -288], [287, -292], [291, -293], [291, -330]]}, "center": {"1": [271, -314], "5": [271, -311], "2-4": [278, -343], "6-8": [270, -309]}}, -{"id": 5894, "name": "Tiny Transgender Flag", "description": "A tiny depiction of a pride flag, specifically of the transgender community.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"], "subreddit": ["transplace"]}, "path": {"250-258": [[551, 822], [557, 822], [557, 828], [551, 828]]}, "center": {"250-258": [554, 825]}}, +{"id": 5894, "name": "Tiny Transgender Flag", "description": "A tiny depiction of a pride flag, specifically of the transgender community.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"], "subreddit": ["transplace"]}, "path": {"250-258, T": [[551, 822], [557, 822], [557, 828], [551, 828]]}, "center": {"250-258, T": [554, 825]}}, {"id": 5895, "name": "Da Fakaz Myna Birb #3", "description": "This is the 3rd Myna Birb. There is nothing special about it. It came into a noisey area that we thought would remain a safe space for small art, and instead it got shoved out hard and fast by the neighboring medium art. All is fair in love, war, and r/place (except for botting).\n----------\n\"Da Fakaz\" is a family of gamers, nerds, and performers from Maui. Our community mascot is the myna bird, which is the most common bird in Hawaii. It also squawks loudly, just like we do sometimes. There are 8 \"Da Fakaz Myna Birbs\" that existed in r/place 2023. Try to find them all!", "links": {}, "path": {"117-120": [[-743, -140], [-743, -133], [-734, -133], [-734, -140]]}, "center": {"117-120": [-738, -136]}}, {"id": 5896, "name": "Da Fakaz Myna Birb #2", "description": "This is the 2nd Myna Birb. We just so happened to land next to Free Hong Kong when the expansion occurred. Eventually Hong Kong wanted to expand, and so did the gay rainbow above. Caught in the middle, our birb got literally dp-ed to death. To Hong Kong's credit however, they were not aware that our birb was anything other than noise, and were very, very remorseful for killing the birb. They even offered to ally with us, a gesture we much appreciated. However, the alliance proved unnecessary, as the whole area was soon nuked by some streamer named BCE or something? Anyhow, our birb was able to find much bluer skies later, and we kept in touch with Hong Kong as allies from afar.\n----------\n\"Da Fakaz\" is a family of gamers, nerds, and performers from Maui. Our community mascot is the myna bird, which is the most common bird in Hawaii. It also squawks loudly, just like we do sometimes. There are 8 \"Da Fakaz Myna Birbs\" that existed in r/place 2023. Try to find them all!", "links": {}, "path": {"93-96": [[-721, 71], [-712, 71], [-712, 83], [-721, 83]]}, "center": {"93-96": [-716, 77]}}, -{"id": 5897, "name": "Super Mario Bros Z Tribute", "description": "A pixel art depicting Sonic from the 2006 web series Super Mario Bros Z.", "links": {"website": ["https://smbz.fandom.com/wiki/Super_Mario_Bros._Z"], "subreddit": ["SuperMarioBrosZ"]}, "path": {"213-258": [[500, 691], [500, 675], [500, 680], [520, 696], [513, 695], [501, 692], [500, 680], [502, 676], [519, 693], [519, 695], [500, 691], [500, 676], [501, 676]]}, "center": {"213-258": [503, 680]}}, -{"id": 5898, "name": "Cat from Common Sense", "description": "A cat from Minecraft Pixelt from the Common Sense community.", "links": {"subreddit": ["CommonSense_DC"], "discord": ["KA3xBr27tU"]}, "path": {"228-258": [[359, -929], [357, -927], [357, -919], [368, -919], [368, -927], [366, -929]]}, "center": {"228-258": [363, -924]}}, -{"id": 5899, "name": "Faisal Mosque, Pakistan", "description": "The Faisal Mosque in Islamabad, Pakistan, is the country's national mosque, named after Saudi King Faisal. Constructed in 1976, it's the sixth-largest mosque globally, with an unconventional design by Vedat Dalokay. Situated on Margalla Hills, it's a significant tourist attraction, showcasing contemporary Islamic architecture.\n\nThis art work is created by u/zayaharfi and u/pyxploiter.", "links": {"website": ["https://en.wikipedia.org/wiki/Faisal_Mosque"], "subreddit": ["islamabad", "pakistan"]}, "path": {"246-258": [[-1243, 452], [-1243, 464], [-1233, 464], [-1233, 452]]}, "center": {"246-258": [-1238, 458]}}, +{"id": 5897, "name": "Super Mario Bros Z Tribute", "description": "A pixel art depicting Sonic from the 2006 web series Super Mario Bros Z.", "links": {"website": ["https://smbz.fandom.com/wiki/Super_Mario_Bros._Z"], "subreddit": ["SuperMarioBrosZ"]}, "path": {"213-258, T": [[500, 691], [500, 675], [500, 680], [520, 696], [513, 695], [501, 692], [500, 680], [502, 676], [519, 693], [519, 695], [500, 691], [500, 676], [501, 676]]}, "center": {"213-258, T": [503, 680]}}, +{"id": 5898, "name": "Cat from Common Sense", "description": "A cat from Minecraft Pixelt from the Common Sense community.", "links": {"subreddit": ["CommonSense_DC"], "discord": ["KA3xBr27tU"]}, "path": {"228-258, T": [[359, -929], [357, -927], [357, -919], [368, -919], [368, -927], [366, -929]]}, "center": {"228-258, T": [363, -924]}}, +{"id": 5899, "name": "Faisal Mosque, Pakistan", "description": "The Faisal Mosque in Islamabad, Pakistan, is the country's national mosque, named after Saudi King Faisal. Constructed in 1976, it's the sixth-largest mosque globally, with an unconventional design by Vedat Dalokay. Situated on Margalla Hills, it's a significant tourist attraction, showcasing contemporary Islamic architecture.\n\nThis art work is created by u/zayaharfi and u/pyxploiter.", "links": {"website": ["https://en.wikipedia.org/wiki/Faisal_Mosque"], "subreddit": ["islamabad", "pakistan"]}, "path": {"246-258, T": [[-1243, 452], [-1243, 464], [-1233, 464], [-1233, 452]]}, "center": {"246-258, T": [-1238, 458]}}, {"id": 5900, "name": "Lost Kittn", "description": "", "links": {"website": ["https://www.twitch.tv/lostkittn"]}, "path": {"155-195": [[-139, 590], [-112, 590], [-112, 629], [-137, 629], [-137, 616], [-139, 616]]}, "center": {"155-195": [-125, 604]}}, -{"id": 5901, "name": "The Omnitrix", "description": "The symbol for \"The Omnitrix\" from the Cartoon Network TV show \"Ben 10\". In the show, it is a watch like device worn on the wrist that grants the wearer the ability to transform into various aliens. It also acts as a database for DNA of many different alien species across the universe.", "links": {"website": ["https://www.cartoonnetworkhq.com/"], "subreddit": ["Ben10"]}, "path": {"250-258": [[-1352, 926], [-1356, 926], [-1356, 925], [-1357, 925], [-1357, 924], [-1358, 924], [-1358, 920], [-1357, 920], [-1357, 919], [-1356, 919], [-1356, 918], [-1352, 918], [-1352, 919], [-1351, 919], [-1351, 920], [-1350, 920], [-1350, 924], [-1351, 924], [-1351, 925], [-1352, 925]]}, "center": {"250-258": [-1354, 922]}}, -{"id": 5903, "name": "Hi-Fi Rush", "description": "Hi-Fi Rush is a rhythm-based action game developed by Tango Gameworks and published by Bethesda Softworks for the Windows and Xbox Series X/S platforms. It was announced on January 25, 2023 and released worldwide the same day.\n\nThe game follows self-proclaimed \"future rock star\" Chai (voiced by Robbie Daymond in English and Hiro Shimono in Japanese), whose music player is accidentally embedded in his chest during experimental cybernetic surgery, allowing him to rhythmically fight and re-perceive the world through environmental synesthesia. Labelled a \"defect\" and hunted by the corporation that transformed him, Chai bands together with new friends to defeat the company's executives and put a stop to their plans. Hi-Fi Rush includes licensed music from bands such as The Black Keys and Nine Inch Nails.", "links": {"website": ["https://store.steampowered.com/app/1817230/HiFi_RUSH/"], "subreddit": ["hifirush"], "discord": ["tangogameworks"]}, "path": {"208-258": [[-807, 402], [-788, 402], [-788, 385], [-807, 385]]}, "center": {"208-258": [-797, 394]}}, -{"id": 5904, "name": "Piteo", "description": "A duck from a brazillian rpg scenario named \"City of tears\", created by \"Red the rabbit\" and expanded with help of \"João Lukitas\", \"Júlia\" and \"Samtanico\"\n\nunfortunately the scenario has been closed for reasons that do not suit this description (i.e. personal reasons)", "links": {}, "path": {"250-258": [[-94, 925], [-94, 926], [-95, 926], [-91, 927], [-91, 925], [-95, 925], [-95, 927], [-96, 927], [-96, 925]]}, "center": {"250-258": [-92, 926]}}, -{"id": 5905, "name": "Roblox Noob", "description": "The Noob is a famous character from the game Roblox, being used in many ads by the company and an iconic 'avatar' from the game.", "links": {"website": ["https://web.roblox.com/"], "subreddit": ["Roblox"]}, "path": {"207-258": [[1474, -94], [1490, -93], [1490, -72], [1474, -72], [1475, -72]]}, "center": {"207-258": [1482, -83]}}, -{"id": 5906, "name": "Derzhprom", "description": "An office building located on Freedom Square in Kharkiv, Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Derzhprom"], "subreddit": ["placeukraine"]}, "path": {"167-251": [[-222, -80], [-220, -80], [-220, -81], [-216, -81], [-216, -82], [-211, -82], [-211, -84], [-210, -84], [-210, -89], [-205, -89], [-205, -81], [-205, -82], [-203, -82], [-203, -83], [-202, -83], [-202, -84], [-201, -84], [-201, -89], [-199, -89], [-199, -91], [-198, -91], [-198, -97], [-204, -97], [-204, -93], [-214, -93], [-214, -101], [-216, -101], [-216, -104], [-219, -104], [-219, -109], [-219, -104], [-222, -104], [-222, -101], [-223, -101], [-223, -98], [-227, -98], [-226, -98], [-226, -97], [-226, -96], [-225, -96], [-225, -92], [-224, -92], [-224, -91], [-223, -91], [-222, -90]]}, "center": {"167-251": [-216, -88]}}, -{"id": 5907, "name": "Zootopia", "description": "Zootopia is a 2016 animated children's film made by Disney. It follows police officer Judy Hopps partnering with a criminal fox to solve the mystery of a missing animal and uncover the dark secrets of Zootopia.", "links": {"website": ["https://movies.disney.com/zootopia"], "subreddit": ["zootopia"]}, "path": {"250-258": [[-1149, 226], [-1119, 226], [-1119, 221], [-1149, 221], [-1149, 224]]}, "center": {"250-258": [-1134, 224]}}, -{"id": 5908, "name": "Zumbi de Sangue (Blood Zombie)", "description": "Zumbi de Sangue (Blood Zombie) is a creature from the \"Ordem Paranormal\" universe, a Brazilian tabletop RPG created by Cellbit. It also appears in a game from the same universe \"Enigma do Medo\" also developed by Cellbit and the game company Dumativa.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Zumbis_de_Sangue?so=search", "https://store.steampowered.com/app/1507580/Enigma_of_Fear/"], "subreddit": ["cellbits"]}, "path": {"73-258": [[646, 274], [652, 274], [652, 277], [656, 277], [656, 276], [657, 276], [657, 275], [664, 275], [664, 278], [663, 278], [663, 279], [662, 279], [662, 280], [661, 280], [661, 281], [660, 281], [660, 283], [659, 283], [659, 285], [664, 285], [664, 289], [663, 289], [663, 290], [662, 290], [662, 291], [660, 291], [660, 294], [659, 294], [659, 295], [659, 296], [660, 296], [660, 297], [661, 297], [661, 299], [660, 299], [660, 300], [656, 300], [656, 303], [655, 303], [655, 305], [659, 305], [659, 306], [660, 306], [660, 307], [661, 307], [661, 309], [662, 309], [662, 310], [663, 310], [663, 311], [664, 311], [664, 315], [663, 315], [663, 316], [662, 316], [662, 317], [661, 317], [661, 318], [659, 318], [659, 319], [657, 319], [657, 322], [656, 322], [656, 323], [654, 323], [654, 324], [653, 324], [653, 326], [652, 326], [652, 328], [653, 328], [653, 329], [657, 329], [657, 331], [658, 331], [658, 333], [656, 333], [656, 335], [652, 335], [652, 334], [649, 334], [649, 333], [646, 333], [646, 332], [645, 332], [645, 326], [646, 326], [646, 322], [647, 322], [647, 319], [646, 319], [646, 318], [645, 318], [645, 317], [643, 317], [643, 318], [642, 318], [642, 319], [641, 319], [641, 320], [640, 320], [640, 325], [639, 325], [639, 327], [638, 327], [638, 329], [637, 329], [637, 337], [628, 337], [628, 336], [627, 336], [627, 333], [628, 333], [628, 331], [629, 331], [629, 330], [630, 330], [630, 329], [631, 329], [631, 325], [630, 325], [630, 316], [631, 316], [631, 313], [629, 313], [629, 312], [626, 312], [626, 311], [624, 311], [624, 310], [623, 310], [623, 308], [624, 308], [624, 307], [625, 307], [625, 304], [626, 304], [626, 302], [627, 302], [627, 301], [628, 301], [628, 298], [629, 298], [629, 297], [630, 297], [630, 296], [631, 296], [631, 295], [633, 295], [633, 294], [635, 294], [635, 293], [637, 293], [637, 292], [638, 292], [638, 283], [639, 283], [639, 282], [639, 281], [640, 281], [640, 280], [641, 280], [641, 279], [642, 279], [642, 278], [643, 278], [643, 277], [644, 277], [644, 276], [645, 276], [645, 275], [646, 275]]}, "center": {"73-258": [643, 304]}}, -{"id": 5909, "name": "Zootopia sequel (Zootopia II)", "description": "Sequel to Zootopia (unnamed as of Place 2023) announced by Disney on February 8, 2023", "links": {"subreddit": ["Zootopia"]}, "path": {"209-258": [[632, -630], [635, -630], [635, -633], [637, -633], [637, -630], [640, -630], [640, -610], [667, -610], [667, -607], [666, -607], [663, -606], [643, -606], [642, -606], [642, -601], [632, -601]]}, "center": {"209-258": [637, -606]}}, -{"id": 5910, "name": "New Zealand", "description": "This area is New Zealand's contribution to the Fuck Spez artwork. Depicted are three birds native to New Zealand: the extinct giant moa, the kea, and the kererū. All three birds have laser eyes to reference the Laser Kiwi flag, a proposed flag design for New Zealand's flag during the New Zealand flag referendums of 2015-2016.", "links": {"website": ["https://en.wikipedia.org/wiki/New_Zealand", "https://en.wikipedia.org/wiki/Laser_Kiwi_flag"], "subreddit": ["newzealand"], "discord": ["nz"]}, "path": {"216-258": [[1394, -127], [1435, -127], [1428, -107], [1436, -81], [1396, -83], [1389, -110]]}, "center": {"216-258": [1410, -102]}}, +{"id": 5901, "name": "The Omnitrix", "description": "The symbol for \"The Omnitrix\" from the Cartoon Network TV show \"Ben 10\". In the show, it is a watch like device worn on the wrist that grants the wearer the ability to transform into various aliens. It also acts as a database for DNA of many different alien species across the universe.", "links": {"website": ["https://www.cartoonnetworkhq.com/"], "subreddit": ["Ben10"]}, "path": {"250-258, T": [[-1352, 926], [-1356, 926], [-1356, 925], [-1357, 925], [-1357, 924], [-1358, 924], [-1358, 920], [-1357, 920], [-1357, 919], [-1356, 919], [-1356, 918], [-1352, 918], [-1352, 919], [-1351, 919], [-1351, 920], [-1350, 920], [-1350, 924], [-1351, 924], [-1351, 925], [-1352, 925]]}, "center": {"250-258, T": [-1354, 922]}}, +{"id": 5903, "name": "Hi-Fi Rush", "description": "Hi-Fi Rush is a rhythm-based action game developed by Tango Gameworks and published by Bethesda Softworks for the Windows and Xbox Series X/S platforms. It was announced on January 25, 2023 and released worldwide the same day.\n\nThe game follows self-proclaimed \"future rock star\" Chai (voiced by Robbie Daymond in English and Hiro Shimono in Japanese), whose music player is accidentally embedded in his chest during experimental cybernetic surgery, allowing him to rhythmically fight and re-perceive the world through environmental synesthesia. Labelled a \"defect\" and hunted by the corporation that transformed him, Chai bands together with new friends to defeat the company's executives and put a stop to their plans. Hi-Fi Rush includes licensed music from bands such as The Black Keys and Nine Inch Nails.", "links": {"website": ["https://store.steampowered.com/app/1817230/HiFi_RUSH/"], "subreddit": ["hifirush"], "discord": ["tangogameworks"]}, "path": {"208-258, T": [[-807, 402], [-788, 402], [-788, 385], [-807, 385]]}, "center": {"208-258, T": [-797, 394]}}, +{"id": 5904, "name": "Piteo", "description": "A duck from a brazillian rpg scenario named \"City of tears\", created by \"Red the rabbit\" and expanded with help of \"João Lukitas\", \"Júlia\" and \"Samtanico\"\n\nunfortunately the scenario has been closed for reasons that do not suit this description (i.e. personal reasons)", "links": {}, "path": {"250-258, T": [[-94, 925], [-94, 926], [-95, 926], [-91, 927], [-91, 925], [-95, 925], [-95, 927], [-96, 927], [-96, 925]]}, "center": {"250-258, T": [-92, 926]}}, +{"id": 5905, "name": "Roblox Noob", "description": "The Noob is a famous character from the game Roblox, being used in many ads by the company and an iconic 'avatar' from the game.", "links": {"website": ["https://web.roblox.com/"], "subreddit": ["Roblox"]}, "path": {"207-258, T": [[1474, -94], [1490, -93], [1490, -72], [1474, -72], [1475, -72]]}, "center": {"207-258, T": [1482, -83]}}, +{"id": 5906, "name": "Derzhprom", "description": "An office building located on Freedom Square in Kharkiv, Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Derzhprom"], "subreddit": ["placeukraine"]}, "path": {"167-251, T": [[-222, -80], [-220, -80], [-220, -81], [-216, -81], [-216, -82], [-211, -82], [-211, -84], [-210, -84], [-210, -89], [-205, -89], [-205, -81], [-205, -82], [-203, -82], [-203, -83], [-202, -83], [-202, -84], [-201, -84], [-201, -89], [-199, -89], [-199, -91], [-198, -91], [-198, -97], [-204, -97], [-204, -93], [-214, -93], [-214, -101], [-216, -101], [-216, -104], [-219, -104], [-219, -109], [-219, -104], [-222, -104], [-222, -101], [-223, -101], [-223, -98], [-227, -98], [-226, -98], [-226, -97], [-226, -96], [-225, -96], [-225, -92], [-224, -92], [-224, -91], [-223, -91], [-222, -90]]}, "center": {"167-251, T": [-216, -88]}}, +{"id": 5907, "name": "Zootopia", "description": "Zootopia is a 2016 animated children's film made by Disney. It follows police officer Judy Hopps partnering with a criminal fox to solve the mystery of a missing animal and uncover the dark secrets of Zootopia.", "links": {"website": ["https://movies.disney.com/zootopia"], "subreddit": ["zootopia"]}, "path": {"250-258, T": [[-1149, 226], [-1119, 226], [-1119, 221], [-1149, 221], [-1149, 224]]}, "center": {"250-258, T": [-1134, 224]}}, +{"id": 5908, "name": "Zumbi de Sangue (Blood Zombie)", "description": "Zumbi de Sangue (Blood Zombie) is a creature from the \"Ordem Paranormal\" universe, a Brazilian tabletop RPG created by Cellbit. It also appears in a game from the same universe \"Enigma do Medo\" also developed by Cellbit and the game company Dumativa.", "links": {"website": ["https://ordemparanormal.fandom.com/wiki/Zumbis_de_Sangue?so=search", "https://store.steampowered.com/app/1507580/Enigma_of_Fear/"], "subreddit": ["cellbits"]}, "path": {"73-258, T": [[646, 274], [652, 274], [652, 277], [656, 277], [656, 276], [657, 276], [657, 275], [664, 275], [664, 278], [663, 278], [663, 279], [662, 279], [662, 280], [661, 280], [661, 281], [660, 281], [660, 283], [659, 283], [659, 285], [664, 285], [664, 289], [663, 289], [663, 290], [662, 290], [662, 291], [660, 291], [660, 294], [659, 294], [659, 295], [659, 296], [660, 296], [660, 297], [661, 297], [661, 299], [660, 299], [660, 300], [656, 300], [656, 303], [655, 303], [655, 305], [659, 305], [659, 306], [660, 306], [660, 307], [661, 307], [661, 309], [662, 309], [662, 310], [663, 310], [663, 311], [664, 311], [664, 315], [663, 315], [663, 316], [662, 316], [662, 317], [661, 317], [661, 318], [659, 318], [659, 319], [657, 319], [657, 322], [656, 322], [656, 323], [654, 323], [654, 324], [653, 324], [653, 326], [652, 326], [652, 328], [653, 328], [653, 329], [657, 329], [657, 331], [658, 331], [658, 333], [656, 333], [656, 335], [652, 335], [652, 334], [649, 334], [649, 333], [646, 333], [646, 332], [645, 332], [645, 326], [646, 326], [646, 322], [647, 322], [647, 319], [646, 319], [646, 318], [645, 318], [645, 317], [643, 317], [643, 318], [642, 318], [642, 319], [641, 319], [641, 320], [640, 320], [640, 325], [639, 325], [639, 327], [638, 327], [638, 329], [637, 329], [637, 337], [628, 337], [628, 336], [627, 336], [627, 333], [628, 333], [628, 331], [629, 331], [629, 330], [630, 330], [630, 329], [631, 329], [631, 325], [630, 325], [630, 316], [631, 316], [631, 313], [629, 313], [629, 312], [626, 312], [626, 311], [624, 311], [624, 310], [623, 310], [623, 308], [624, 308], [624, 307], [625, 307], [625, 304], [626, 304], [626, 302], [627, 302], [627, 301], [628, 301], [628, 298], [629, 298], [629, 297], [630, 297], [630, 296], [631, 296], [631, 295], [633, 295], [633, 294], [635, 294], [635, 293], [637, 293], [637, 292], [638, 292], [638, 283], [639, 283], [639, 282], [639, 281], [640, 281], [640, 280], [641, 280], [641, 279], [642, 279], [642, 278], [643, 278], [643, 277], [644, 277], [644, 276], [645, 276], [645, 275], [646, 275]]}, "center": {"73-258, T": [643, 304]}}, +{"id": 5909, "name": "Zootopia sequel (Zootopia II)", "description": "Sequel to Zootopia (unnamed as of Place 2023) announced by Disney on February 8, 2023", "links": {"subreddit": ["Zootopia"]}, "path": {"209-258, T": [[632, -630], [635, -630], [635, -633], [637, -633], [637, -630], [640, -630], [640, -610], [667, -610], [667, -607], [666, -607], [663, -606], [643, -606], [642, -606], [642, -601], [632, -601]]}, "center": {"209-258, T": [637, -606]}}, +{"id": 5910, "name": "New Zealand", "description": "This area is New Zealand's contribution to the Fuck Spez artwork. Depicted are three birds native to New Zealand: the extinct giant moa, the kea, and the kererū. All three birds have laser eyes to reference the Laser Kiwi flag, a proposed flag design for New Zealand's flag during the New Zealand flag referendums of 2015-2016.", "links": {"website": ["https://en.wikipedia.org/wiki/New_Zealand", "https://en.wikipedia.org/wiki/Laser_Kiwi_flag"], "subreddit": ["newzealand"], "discord": ["nz"]}, "path": {"216-258, T": [[1394, -127], [1435, -127], [1428, -107], [1436, -81], [1396, -83], [1389, -110]]}, "center": {"216-258, T": [1410, -102]}}, {"id": 5911, "name": "Terry The Blob", "description": "Terry the blob was a short lived project made my u/Maleficient-Energy-58. He later was given a small nose,green shirt with a flower and 1 leg.", "links": {"subreddit": ["terrytheblob"]}, "path": {"24-83": [[-256, 95], [-254, 96], [-255, 97], [-253, 97], [-255, 98], [-256, 98], [-253, 98], [-253, 95], [-256, 96], [-254, 97], [-20, -112], [-256, 100], [-253, 100], [-254, 102], [-253, 103], [-254, 106], [-257, 105]]}, "center": {"24-83": [-255, 103]}}, {"id": 5912, "name": "Yandex Browser", "description": "Yandex Browser logo. Created by Russian Twitch streamer Bratishkin", "links": {"website": ["https://ya.ru", "https://twitch.tv/bratishkinoff"], "subreddit": ["place_brff"]}, "path": {"199": [[-1432, 977], [-1436, 986], [-1428, 993], [-1420, 987], [-1420, 980], [-1425, 978]]}, "center": {"199": [-1428, 984]}}, -{"id": 5913, "name": "KihamooVT", "description": "An independent raccoon themed VTuber from Bolivia.", "links": {"website": ["https://kihamooredes.carrd.co/", "https://www.twitch.tv/kihamoovt"], "discord": ["PFCiwCmiGB"]}, "path": {"228-258": [[1480, -787], [1496, -787], [1496, -788], [1495, -789], [1494, -790], [1495, -791], [1496, -792], [1497, -793], [1496, -794], [1496, -795], [1495, -796], [1495, -797], [1494, -798], [1494, -801], [1495, -802], [1495, -804], [1494, -805], [1492, -805], [1491, -804], [1490, -804], [1489, -805], [1487, -805], [1486, -806], [1485, -805], [1484, -804], [1483, -805], [1481, -805], [1480, -804], [1480, -802], [1481, -801], [1481, -796], [1480, -795], [1480, -794], [1479, -793], [1480, -792], [1481, -791], [1482, -790], [1481, -789], [1480, -788]]}, "center": {"228-258": [1488, -794]}}, -{"id": 5914, "name": "Garden City (Singapore)", "description": "In 1967, the concept of a \"garden city\" was introduced by Singapore's Prime Minister Lee Kuan Yew to fill the city with greenery. In one effort, flowering plants such as Bougainvillea were planted around roads.", "links": {"website": ["https://eresources.nlb.gov.sg/history/events/a7fac49f-9c96-4030-8709-ce160c58d15c", "https://www.nparks.gov.sg/nparksbuzz/issue-38-vol-3-2018/conservation/bougainvillea-colouring-our-streets#:~:text=The%20Bougainvillea%20is%20a%20signature,and%20fertiliser%20that%20plants%20receive."], "subreddit": ["singapore", "placeSG"]}, "path": {"95-133": [[348, -13], [348, -15], [350, -15], [350, -16], [353, -16], [353, -17], [354, -17], [354, -18], [356, -18], [356, -13]], "134-258": [[348, -13], [348, -15], [350, -15], [350, -16], [353, -16], [353, -17], [354, -17], [354, -18], [357, -18], [357, -17], [358, -17], [358, -15], [359, -15], [359, -13]]}, "center": {"95-133": [354, -15], "134-258": [355, -15]}}, +{"id": 5913, "name": "KihamooVT", "description": "An independent raccoon themed VTuber from Bolivia.", "links": {"website": ["https://kihamooredes.carrd.co/", "https://www.twitch.tv/kihamoovt"], "discord": ["PFCiwCmiGB"]}, "path": {"228-258, T": [[1480, -787], [1496, -787], [1496, -788], [1495, -789], [1494, -790], [1495, -791], [1496, -792], [1497, -793], [1496, -794], [1496, -795], [1495, -796], [1495, -797], [1494, -798], [1494, -801], [1495, -802], [1495, -804], [1494, -805], [1492, -805], [1491, -804], [1490, -804], [1489, -805], [1487, -805], [1486, -806], [1485, -805], [1484, -804], [1483, -805], [1481, -805], [1480, -804], [1480, -802], [1481, -801], [1481, -796], [1480, -795], [1480, -794], [1479, -793], [1480, -792], [1481, -791], [1482, -790], [1481, -789], [1480, -788]]}, "center": {"228-258, T": [1488, -794]}}, +{"id": 5914, "name": "Garden City (Singapore)", "description": "In 1967, the concept of a \"garden city\" was introduced by Singapore's Prime Minister Lee Kuan Yew to fill the city with greenery. In one effort, flowering plants such as Bougainvillea were planted around roads.", "links": {"website": ["https://eresources.nlb.gov.sg/history/events/a7fac49f-9c96-4030-8709-ce160c58d15c", "https://www.nparks.gov.sg/nparksbuzz/issue-38-vol-3-2018/conservation/bougainvillea-colouring-our-streets#:~:text=The%20Bougainvillea%20is%20a%20signature,and%20fertiliser%20that%20plants%20receive."], "subreddit": ["singapore", "placeSG"]}, "path": {"95-133": [[348, -13], [348, -15], [350, -15], [350, -16], [353, -16], [353, -17], [354, -17], [354, -18], [356, -18], [356, -13]], "134-258, T": [[348, -13], [348, -15], [350, -15], [350, -16], [353, -16], [353, -17], [354, -17], [354, -18], [357, -18], [357, -17], [358, -17], [358, -15], [359, -15], [359, -13]]}, "center": {"95-133": [354, -15], "134-258, T": [355, -15]}}, {"id": 5915, "name": "peepo with cigarette", "description": "", "links": {"discord": ["haiset"]}, "path": {"202-206": [[839, 982], [839, 1000], [808, 999], [812, 982], [829, 982]]}, "center": {"202-206": [825, 991]}}, -{"id": 5916, "name": "Porco Voador (flying pig)", "description": "Porco Voador (flying pig) is the brand image of a portuguese streamer Rival55, where members of the community have the name Porcos Voadores (flying pigs)", "links": {"website": ["https://www.twitch.tv/rival55"]}, "path": {"250-258": [[-783, 207], [-780, 207], [-780, 203], [-764, 203], [-765, 210], [-773, 210], [-773, 219], [-785, 219], [-788, 214], [-785, 208], [-781, 208], [-782, 208], [-783, 209], [-782, 207], [-780, 207], [-780, 203]]}, "center": {"250-258": [-779, 213]}}, +{"id": 5916, "name": "Porco Voador (flying pig)", "description": "Porco Voador (flying pig) is the brand image of a portuguese streamer Rival55, where members of the community have the name Porcos Voadores (flying pigs)", "links": {"website": ["https://www.twitch.tv/rival55"]}, "path": {"250-258, T": [[-783, 207], [-780, 207], [-780, 203], [-764, 203], [-765, 210], [-773, 210], [-773, 219], [-785, 219], [-788, 214], [-785, 208], [-781, 208], [-782, 208], [-783, 209], [-782, 207], [-780, 207], [-780, 203]]}, "center": {"250-258, T": [-779, 213]}}, {"id": 5917, "name": "GTOA", "description": "uh, our discord server/roblox game Ghostly's Towers Of Anarchy", "links": {"subreddit": ["gtoa"], "discord": ["5pyweZce"]}, "path": {"123": [[-794, -662], [-795, -660], [-795, -659], [-793, -660], [-787, -660], [-779, -661], [-777, -660], [-776, -662], [-777, -659], [-777, -658], [-783, -658], [-790, -658], [-793, -659], [-796, -659], [-795, -658], [-793, -657], [-791, -658], [-778, -662], [-780, -663], [-778, -661], [-777, -660], [-782, -661], [-778, -662]]}, "center": {"123": [-782, -659]}}, {"id": 5918, "name": "POV of a Desert-addled man", "description": "One overly hot day, a man cracks open the door to his house, sand scraping along the floor. The sounds outside reach his ears, a song, but he does not know the name. The man waves a smartphone to the sky, searching for but a sliver of internet connection to reach his device. Suddenly the man looks at his phone, a slow Taffel™ Bravo Sourcream and Sweet Chilli streaked smile spreading across his face. The gatcha roll gave him SSJB Goku, after only $500 spent. He looks across the desert towards horizons he cannot name and grins. Life is good.\n\n(also the design is based on the desert emoji 🏜️. Specifically the Twemoji version used on Discord)", "links": {}, "path": {"169-173": [[-78, 854], [-66, 854], [-66, 863], [-78, 863]]}, "center": {"169-173": [-72, 859]}}, -{"id": 5919, "name": "Georgia Tech", "description": "Georgia Institute of Technology, or commonly referred to as Georgia Tech, is a public research university and institute of technology based in Atlanta, Georgia. \n\nThe university is one of the largest and highest-ranked engineering and computing colleges in the United States, with other distinguished programs in other majors. They are also a powerhouse in college football and notable in men's basketball and baseball.", "links": {"website": ["https://en.wikipedia.org/wiki/Georgia_Tech", "https://www.gatech.edu/"], "subreddit": ["gatech"]}, "path": {"250-258": [[382, 937], [391, 937], [391, 943], [382, 943]]}, "center": {"250-258": [387, 940]}}, +{"id": 5919, "name": "Georgia Tech", "description": "Georgia Institute of Technology, or commonly referred to as Georgia Tech, is a public research university and institute of technology based in Atlanta, Georgia. \n\nThe university is one of the largest and highest-ranked engineering and computing colleges in the United States, with other distinguished programs in other majors. They are also a powerhouse in college football and notable in men's basketball and baseball.", "links": {"website": ["https://en.wikipedia.org/wiki/Georgia_Tech", "https://www.gatech.edu/"], "subreddit": ["gatech"]}, "path": {"250-258, T": [[382, 937], [391, 937], [391, 943], [382, 943]]}, "center": {"250-258, T": [387, 940]}}, {"id": 5920, "name": "Żubrówka Biała", "description": "A clear conventional variant of Polish brand of vodkas. It uses European bison as its trademark. Original variant contains a bison grass blade.", "links": {"website": ["https://en.wikipedia.org/wiki/%C5%BBubr%C3%B3wka"]}, "path": {"159-211": [[865, -117], [869, -122], [870, -133], [871, -138], [875, -137], [875, -127], [876, -124], [876, -120], [881, -116], [881, -100], [880, -98], [880, -80], [881, -78], [881, -75], [879, -75], [870, -74], [866, -74], [865, -75], [864, -75], [864, -79], [865, -81], [865, -98], [864, -99], [864, -116]]}, "center": {"159-211": [873, -106]}}, {"id": 5921, "name": "Imperial Russian Flag", "description": "The creation of the imperial Russian flag was a collaborative effort, with French, Indian, Turkish, Serbian, Mexican and Japanese assistance, along with the support of multiple Russian and French Streamers, to ensure the presence of a distinct Russian emblem on r/place.", "links": {"subreddit": ["placerussia"], "discord": ["hpjfH5meuc"]}, "path": {"210": [[-367, 587], [-368, 616], [-306, 615], [-307, 587]]}, "center": {"210": [-337, 601]}}, -{"id": 5922, "name": "Duck in a bag", "description": "Little art of a duck in a bag from the offline community of twitch streamer ZakvielChannel\nArt idea: justduckkk and mejkiz", "links": {"website": ["https://www.twitch.tv/popout/zakvielchannel/chat?popout="]}, "path": {"250-258": [[-1370, 101], [-1354, 101], [-1354, 125], [-1370, 125]]}, "center": {"250-258": [-1362, 113]}}, -{"id": 5923, "name": "Monokuma", "description": "A small depiction of Monokuma, the chief antagonist of the Danganronpa series.", "links": {"website": ["https://www.danganronpa.com/switch/en/"], "subreddit": ["danganronpa"]}, "path": {"105-258": [[-539, 357], [-539, 366], [-532, 366], [-532, 357]]}, "center": {"105-258": [-535, 362]}}, -{"id": 5924, "name": "1/2 Olympique Lyonnais", "description": "Olympique Lyonnais is a French professional football club based in Lyon in Auvergne-Rhône-Alpes. The men play in France's highest football division, Ligue 1. Founded in 1950, the club won its first Ligue 1 championship in 2002, starting a national record-setting streak of seven successive titles. Lyon has also won eight Trophées des Champions, five Coupes de France, and three Ligue 2 titles.", "links": {"website": ["https://www.ol.fr/fr", "https://fr.wikipedia.org/wiki/Olympique_lyonnais"], "subreddit": ["OlympiqueLyonnais", "placeOL"], "discord": ["3XhhQprk"]}, "path": {"250-258": [[280, 73], [280, 86], [318, 85], [318, 73]]}, "center": {"250-258": [293, 79]}}, +{"id": 5922, "name": "Duck in a bag", "description": "Little art of a duck in a bag from the offline community of twitch streamer ZakvielChannel\nArt idea: justduckkk and mejkiz", "links": {"website": ["https://www.twitch.tv/popout/zakvielchannel/chat?popout="]}, "path": {"250-258, T": [[-1370, 101], [-1354, 101], [-1354, 125], [-1370, 125]]}, "center": {"250-258, T": [-1362, 113]}}, +{"id": 5923, "name": "Monokuma", "description": "A small depiction of Monokuma, the chief antagonist of the Danganronpa series.", "links": {"website": ["https://www.danganronpa.com/switch/en/"], "subreddit": ["danganronpa"]}, "path": {"105-258, T": [[-539, 357], [-539, 366], [-532, 366], [-532, 357]]}, "center": {"105-258, T": [-535, 362]}}, +{"id": 5924, "name": "1/2 Olympique Lyonnais", "description": "Olympique Lyonnais is a French professional football club based in Lyon in Auvergne-Rhône-Alpes. The men play in France's highest football division, Ligue 1. Founded in 1950, the club won its first Ligue 1 championship in 2002, starting a national record-setting streak of seven successive titles. Lyon has also won eight Trophées des Champions, five Coupes de France, and three Ligue 2 titles.", "links": {"website": ["https://www.ol.fr/fr", "https://fr.wikipedia.org/wiki/Olympique_lyonnais"], "subreddit": ["OlympiqueLyonnais", "placeOL"], "discord": ["3XhhQprk"]}, "path": {"250-258, T": [[280, 73], [280, 86], [318, 85], [318, 73]]}, "center": {"250-258, T": [293, 79]}}, {"id": 5925, "name": "Omnisexual flag", "description": "What started out as a feeble attempt at a futile representation of a lesser known sexual identity sluggishly continued its progress to the right with the hope of becoming as long as the other stripes below. Omnisexuals (people who feel attraction to all genders, but can have a preference or take gender into the love equation), well known for their desire of world domination, didn't hesitate to go over other less assertive attempts at flags to achieve their goal, while maintaining excellent relations with femboys. However, just before the war against the flag of La Rioja (city in Spain), the Great Red Wave occured, completely erasing the flags. Many participants of this flag attempt did not wish to continue fighting and instead preferred to set up cryptocurrency pyramid schemes and invest in industrial hummus production.", "links": {"subreddit": ["omnisexual"]}, "path": {"157-168": [[-999, 770], [-923, 770], [-923, 774], [-999, 774]]}, "center": {"157-168": [-961, 772]}}, -{"id": 5926, "name": "Lilly Satou", "description": "A depiction of Lilly Satou from the free visual novel Katawa Shoujo.", "links": {"subreddit": ["katawashoujo"]}, "path": {"109-120": [[-570, 340], [-570, 334], [-571, 334], [-571, 332], [-570, 332], [-570, 328], [-568, 328], [-568, 327], [-559, 327], [-559, 329], [-558, 329], [-558, 341], [-570, 341]], "122-258": [[-569, 337], [-569, 336], [-559, 336], [-559, 338], [-558, 338], [-558, 350], [-570, 350], [-570, 338], [-569, 338]]}, "center": {"109-120": [-564, 333], "122-258": [-564, 343]}}, -{"id": 5928, "name": "Hi Ren", "description": "In dedication to the Welsh singer-songwriter, producer and multi-instrumentalist Ren Gill and his song \"Hi Ren\"", "links": {"website": ["https://www.renmakesmusic.co.uk/", "https://www.youtube.com/watch?v=s_nc1IVoMxc", "https://en.wikipedia.org/wiki/Ren_(British_musician)"], "subreddit": ["ren"], "discord": ["rencord"]}, "path": {"250-258": [[1354, -969], [1354, -963], [1374, -963], [1374, -969]]}, "center": {"250-258": [1364, -966]}}, -{"id": 5929, "name": "'NG' Nasro Galili", "description": "Made by Nasro Galili\nN for N is Nasro\nG for G in Galili, with a small heart in the top left corner.", "links": {"website": ["https://www.facebook.com/nasrogalili", "https://www.instagram.com/nasrogalili"]}, "path": {"250-258": [[-537, -251], [-526, -251], [-526, -257], [-537, -257], [-537, -258], [-538, -258], [-538, -259], [-537, -258], [-536, -259], [-536, -258], [-537, -257]]}, "center": {"250-258": [-531, -254]}}, -{"id": 5930, "name": "Drapeau de l'acadie", "description": "Proudly orchestrated and defended by acadian streamers : MatyyVengeance & FedQc. The acadian flag represent the french speaking eastern canadians since 1884. Acadians are concentrated mostly on both sides of the Baie des Chaleurs (Gaspésie & North of New-Brunswick), on the N-B East coast and some parts of Nova Scotia.", "links": {"website": ["https://www.twitch.tv/martyyvengeance", "https://www.twitch.tv/fedqc"], "subreddit": ["acadie"]}, "path": {"250-258": [[288, 991], [270, 991], [270, 999], [288, 999], [288, 991], [270, 991], [270, 999], [288, 999]]}, "center": {"250-258": [288, 993]}}, -{"id": 5931, "name": "Hanako Ikezawa", "description": "A mini depiction of Hanako Ikezawa, from the free visual novel Katawa Shoujo.", "links": {"subreddit": ["katawashoujo"]}, "path": {"157-258": [[-568, 327], [-560, 327], [-560, 328], [-559, 328], [-559, 329], [-558, 329], [-558, 330], [-558, 331], [-559, 331], [-559, 335], [-560, 335], [-560, 336], [-560, 337], [-569, 337], [-569, 327]]}, "center": {"157-258": [-564, 332]}}, -{"id": 5932, "name": "OnePlus Logo", "description": "Logo of the smartphone company OnePlus", "links": {"website": ["https://www.oneplus.com/"], "subreddit": ["oneplus"], "discord": ["oneplus"]}, "path": {"250-258": [[822, 420], [830, 420], [830, 428], [822, 428]]}, "center": {"250-258": [826, 424]}}, -{"id": 5933, "name": "Coco", "description": "A bird of the Dutch Youtuber and Twitch streamer named LinkTijger. It was made in collaboration with PlaceNL after LinkTijger promised to help our community.", "links": {"website": ["https://www.youtube.com/@LinkTijger", "https://www.twitch.tv/linktijger"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"206-258": [[-367, -520], [-367, -526], [-366, -526], [-366, -535], [-365, -535], [-367, -535], [-367, -537], [-365, -537], [-365, -538], [-366, -538], [-366, -539], [-367, -539], [-367, -540], [-367, -541], [-363, -541], [-363, -540], [-361, -540], [-361, -538], [-360, -538], [-360, -539], [-352, -539], [-352, -538], [-350, -538], [-350, -537], [-349, -536], [-348, -535], [-347, -533], [-347, -525], [-348, -525], [-348, -523], [-347, -523], [-347, -519], [-363, -519], [-363, -520], [-364, -520], [-364, -519], [-367, -519]]}, "center": {"206-258": [-357, -529]}}, -{"id": 5934, "name": "Kven flag", "description": "The Kven flag is a flag that since 2009 has been used by Kvens in Norway, Sweden and Finland.\n\nKvens are a Balto-Finnic ethnic minority in Norway. They are descended from Finnish peasants and fishermen who emigrated from the northern parts of Finland and Sweden to Northern Norway in the 18th and 19th centuries.", "links": {"website": ["https://en.wikipedia.org/wiki/Kven_people"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"205-258": [[-1, -347], [-2, -348], [-3, -348], [-5, -346], [-5, -344], [0, -339], [5, -344], [5, -346], [3, -348], [2, -348], [1, -347]]}, "center": {"205-258": [0, -344]}}, +{"id": 5926, "name": "Lilly Satou", "description": "A depiction of Lilly Satou from the free visual novel Katawa Shoujo.", "links": {"subreddit": ["katawashoujo"]}, "path": {"109-120": [[-570, 340], [-570, 334], [-571, 334], [-571, 332], [-570, 332], [-570, 328], [-568, 328], [-568, 327], [-559, 327], [-559, 329], [-558, 329], [-558, 341], [-570, 341]], "122-258, T": [[-569, 337], [-569, 336], [-559, 336], [-559, 338], [-558, 338], [-558, 350], [-570, 350], [-570, 338], [-569, 338]]}, "center": {"109-120": [-564, 333], "122-258, T": [-564, 343]}}, +{"id": 5928, "name": "Hi Ren", "description": "In dedication to the Welsh singer-songwriter, producer and multi-instrumentalist Ren Gill and his song \"Hi Ren\"", "links": {"website": ["https://www.renmakesmusic.co.uk/", "https://www.youtube.com/watch?v=s_nc1IVoMxc", "https://en.wikipedia.org/wiki/Ren_(British_musician)"], "subreddit": ["ren"], "discord": ["rencord"]}, "path": {"250-258, T": [[1354, -969], [1354, -963], [1374, -963], [1374, -969]]}, "center": {"250-258, T": [1364, -966]}}, +{"id": 5929, "name": "'NG' Nasro Galili", "description": "Made by Nasro Galili\nN for N is Nasro\nG for G in Galili, with a small heart in the top left corner.", "links": {"website": ["https://www.facebook.com/nasrogalili", "https://www.instagram.com/nasrogalili"]}, "path": {"250-258, T": [[-537, -251], [-526, -251], [-526, -257], [-537, -257], [-537, -258], [-538, -258], [-538, -259], [-537, -258], [-536, -259], [-536, -258], [-537, -257]]}, "center": {"250-258, T": [-531, -254]}}, +{"id": 5930, "name": "Drapeau de l'acadie", "description": "Proudly orchestrated and defended by acadian streamers : MatyyVengeance & FedQc. The acadian flag represent the french speaking eastern canadians since 1884. Acadians are concentrated mostly on both sides of the Baie des Chaleurs (Gaspésie & North of New-Brunswick), on the N-B East coast and some parts of Nova Scotia.", "links": {"website": ["https://www.twitch.tv/martyyvengeance", "https://www.twitch.tv/fedqc"], "subreddit": ["acadie"]}, "path": {"250-258, T": [[288, 991], [270, 991], [270, 999], [288, 999], [288, 991], [270, 991], [270, 999], [288, 999]]}, "center": {"250-258, T": [288, 993]}}, +{"id": 5931, "name": "Hanako Ikezawa", "description": "A mini depiction of Hanako Ikezawa, from the free visual novel Katawa Shoujo.", "links": {"subreddit": ["katawashoujo"]}, "path": {"157-258, T": [[-568, 327], [-560, 327], [-560, 328], [-559, 328], [-559, 329], [-558, 329], [-558, 330], [-558, 331], [-559, 331], [-559, 335], [-560, 335], [-560, 336], [-560, 337], [-569, 337], [-569, 327]]}, "center": {"157-258, T": [-564, 332]}}, +{"id": 5932, "name": "OnePlus Logo", "description": "Logo of the smartphone company OnePlus", "links": {"website": ["https://www.oneplus.com/"], "subreddit": ["oneplus"], "discord": ["oneplus"]}, "path": {"250-258, T": [[822, 420], [830, 420], [830, 428], [822, 428]]}, "center": {"250-258, T": [826, 424]}}, +{"id": 5933, "name": "Coco", "description": "A bird of the Dutch Youtuber and Twitch streamer named LinkTijger. It was made in collaboration with PlaceNL after LinkTijger promised to help our community.", "links": {"website": ["https://www.youtube.com/@LinkTijger", "https://www.twitch.tv/linktijger"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"206-258, T": [[-367, -520], [-367, -526], [-366, -526], [-366, -535], [-365, -535], [-367, -535], [-367, -537], [-365, -537], [-365, -538], [-366, -538], [-366, -539], [-367, -539], [-367, -540], [-367, -541], [-363, -541], [-363, -540], [-361, -540], [-361, -538], [-360, -538], [-360, -539], [-352, -539], [-352, -538], [-350, -538], [-350, -537], [-349, -536], [-348, -535], [-347, -533], [-347, -525], [-348, -525], [-348, -523], [-347, -523], [-347, -519], [-363, -519], [-363, -520], [-364, -520], [-364, -519], [-367, -519]]}, "center": {"206-258, T": [-357, -529]}}, +{"id": 5934, "name": "Kven flag", "description": "The Kven flag is a flag that since 2009 has been used by Kvens in Norway, Sweden and Finland.\n\nKvens are a Balto-Finnic ethnic minority in Norway. They are descended from Finnish peasants and fishermen who emigrated from the northern parts of Finland and Sweden to Northern Norway in the 18th and 19th centuries.", "links": {"website": ["https://en.wikipedia.org/wiki/Kven_people"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"205-258, T": [[-1, -347], [-2, -348], [-3, -348], [-5, -346], [-5, -344], [0, -339], [5, -344], [5, -346], [3, -348], [2, -348], [1, -347]]}, "center": {"205-258, T": [0, -344]}}, {"id": 5935, "name": "Oena Studios", "description": "Oena Studio is a Spanish-speaking community dedicated to developing exclusive Minecraft content, creators of \"Squid geek games\" and some other Minecraft projects.", "links": {"website": ["https://twitter.com/OenaStudio"], "discord": ["aMWRAvCD"]}, "path": {"161-170": [[-539, 586], [-539, 598], [-502, 605], [-502, 586]]}, "center": {"161-170": [-511, 595]}}, -{"id": 5936, "name": "Flag of the Forest Finns and their descendants", "description": "On 29 December 2022, the official flag of the Forest Finns was adopted in cooperation by Forest Finn organizations in Norway and Sweden.\n\nForest Finns were Finnish migrants from Savonia and Northern Tavastia in Finland who settled in forest areas of Sweden proper and Norway during the late 16th and early-to-mid-17th centuries, and traditionally pursued slash-and-burn agriculture, a method used for turning forests into farmlands.\n\nBy the late 18th century, the Forest Finns had become largely assimilated into the Swedish and Norwegian cultures, and their language is today extinct. Descendants of the Forest Finns still live in Sweden and Norway.", "links": {"website": ["https://en.wikipedia.org/wiki/Forest_Finns", "https://no.wikipedia.org/wiki/Skogfinner"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"205-258": [[-1, -337], [-2, -338], [-3, -338], [-5, -336], [-5, -334], [0, -329], [5, -334], [5, -336], [3, -338], [2, -338], [1, -337]]}, "center": {"205-258": [0, -334]}}, -{"id": 5937, "name": "Kokkoro", "description": "Kokkoro is one of three female protagonists in Princess Connect Re:Dive. She is a member of the gourmet guild and a close friend of Pecorine and Karyl (Kyaru). She is also the guide for Yuuki, the male protagonist of Princess Connect Re:Dive. It's no secret that she loves him.", "links": {"website": ["https://princess-connect.fandom.com/wiki/Kokkoro"], "subreddit": ["Priconne", "Kokkoro"]}, "path": {"250-258": [[-593, 193], [-593, 198], [-593, 200], [-590, 200], [-590, 193]]}, "center": {"250-258": [-591, 197]}}, -{"id": 5938, "name": "Nikola Jokić", "description": "Nikola Jokić is a Serbian basketball player regarded as one of the greatest basketball player in history. He has been awarded the NBA Finals MVP and All-Star titles in 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/Nikola_Jokić"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"150-161": [[-631, 258], [-634, 262], [-634, 278], [-617, 278], [-617, 272], [-622, 272], [-622, 262], [-625, 258], [-628, 261]], "115-149": [[-636, 258], [-636, 261], [-637, 261], [-637, 264], [-632, 264], [-632, 272], [-624, 272], [-624, 264], [-619, 264], [-619, 257], [-623, 257], [-623, 258]], "162-258": [[-633, 278], [-633, 277], [-633, 276], [-633, 275], [-633, 274], [-633, 273], [-633, 272], [-633, 271], [-632, 271], [-631, 271], [-630, 271], [-629, 271], [-628, 271], [-627, 271], [-626, 271], [-628, 270], [-629, 269], [-630, 268], [-630, 267], [-631, 266], [-631, 265], [-631, 264], [-630, 263], [-630, 262], [-629, 261], [-628, 260], [-627, 259], [-626, 259], [-625, 258], [-624, 258], [-623, 258], [-622, 258], [-622, 259], [-621, 259], [-621, 260], [-620, 260], [-619, 261], [-618, 262], [-618, 263], [-617, 264], [-617, 265], [-617, 266], [-618, 267], [-618, 268], [-619, 269], [-620, 270], [-621, 271], [-622, 271], [-620, 271], [-619, 271], [-618, 271], [-617, 271], [-616, 271], [-615, 271], [-615, 272], [-615, 273], [-615, 274], [-615, 275], [-615, 277], [-615, 278], [-616, 278], [-617, 278], [-618, 278], [-619, 278], [-620, 278], [-621, 278], [-622, 278], [-623, 278], [-624, 278], [-625, 278], [-626, 278], [-627, 278], [-628, 278], [-629, 278], [-630, 278], [-631, 278], [-632, 278], [-633, 278], [-633, 277]]}, "center": {"150-161": [-628, 272], "115-149": [-628, 262], "162-258": [-624, 265]}}, -{"id": 5939, "name": "New York Mets Logo", "description": "Part of a collaboration between the New York Islanders and New York Mets. The New York Mets are a baseball team based in the Queens borough of New York City, New York, United States. They compete in Major League Baseball (MLB).", "links": {"website": ["https://www.mlb.com/mets"], "subreddit": ["newyorkmets"]}, "path": {"250-258": [[1354, 549], [1365, 550], [1364, 562], [1354, 563]]}, "center": {"250-258": [1359, 556]}}, -{"id": 5940, "name": "Flag of Latvia", "description": "Latvia is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Latvia", "https://en.wikipedia.org/wiki/Flag_of_Latvia"], "subreddit": ["latvia", "BalticStates"]}, "path": {"154-258": [[-14, -799], [-14, -794], [2, -794], [2, -799], [-10, -799]]}, "center": {"154-258": [-6, -796]}}, -{"id": 5941, "name": "Flag of Croatia", "description": "Croatia is a country at the crossroads of Central and Southeast Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Croatia", "https://en.wikipedia.org/wiki/Flag_of_Croatia"], "subreddit": ["croatia"]}, "path": {"205-258": [[1246, 17], [1255, 17], [1255, 25], [1243, 25], [1243, 19], [1245, 18]]}, "center": {"205-258": [1249, 21]}}, -{"id": 5942, "name": "Tiny Bisexual Heart", "description": "A tiny pride heart in the colors of the bisexual community.\n\nMade by the hivemind during the Charizard card's deterioration.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality"]}, "path": {"250-258": [[-1315, 241], [-1318, 237], [-1316, 235], [-1315, 236], [-1314, 235], [-1312, 237], [-1312, 238]]}, "center": {"250-258": [-1314, 238]}}, -{"id": 5943, "name": "Stoat", "description": "toat is a starting card from the indie game Inscryption. In the game's story, he also contains the consciousness of another character, P03. His eyes are glowing, indicating that he was given a new Sigil.", "links": {"website": ["https://inscryption.fandom.com/wiki/Stoat"], "subreddit": ["Inscryption"]}, "path": {"151-258": [[-995, -328], [-987, -328], [-987, -327], [-984, -327], [-984, -326], [-982, -326], [-982, -325], [-972, -325], [-971, -326], [-970, -326], [-969, -327], [-968, -328], [-964, -328], [-963, -327], [-961, -327], [-961, -326], [-961, -324], [-960, -325], [-960, -314], [-959, -314], [-959, -311], [-958, -310], [-958, -307], [-959, -307], [-959, -303], [-960, -303], [-960, -302], [-961, -301], [-962, -301], [-963, -300], [-963, -299], [-964, -298], [-964, -296], [-965, -297], [-965, -295], [-965, -294], [-966, -293], [-966, -292], [-968, -292], [-967, -291], [-966, -290], [-966, -289], [-967, -289], [-967, -288], [-967, -287], [-968, -286], [-969, -286], [-970, -288], [-972, -288], [-972, -287], [-971, -287], [-971, -286], [-970, -285], [-970, -284], [-970, -283], [-968, -283], [-969, -282], [-999, -282], [-998, -284], [-999, -289], [-998, -289], [-998, -293], [-997, -293], [-997, -299], [-996, -299], [-996, -305], [-997, -305], [-997, -311], [-998, -311], [-997, -312], [-997, -313], [-998, -313], [-998, -314], [-999, -314], [-999, -324], [-998, -324], [-998, -325], [-997, -325], [-997, -326], [-996, -326], [-996, -327]]}, "center": {"151-258": [-979, -308]}}, -{"id": 5944, "name": "Bolivian Squirtle", "description": "A small and adorable Squirtle with a typical Bolivian hat", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[676, -823], [682, -823], [682, -825], [683, -825], [683, -826], [686, -826], [686, -827], [687, -827], [687, -826], [688, -826], [688, -825], [688, -824], [689, -824], [689, -823], [688, -823], [688, -822], [687, -822], [687, -821], [685, -821], [685, -820], [685, -819], [686, -819], [686, -817], [688, -817], [688, -816], [690, -816], [691, -816], [691, -817], [692, -817], [692, -819], [694, -819], [694, -820], [699, -820], [699, -819], [700, -819], [700, -816], [699, -816], [699, -815], [698, -815], [698, -814], [697, -813], [691, -813], [691, -812], [691, -811], [692, -811], [692, -805], [691, -805], [691, -802], [690, -802], [690, -800], [688, -800], [688, -799], [685, -799], [685, -800], [684, -800], [684, -801], [683, -801], [683, -802], [678, -802], [678, -803], [677, -803], [677, -804], [678, -804], [678, -805], [679, -805], [679, -806], [678, -806], [675, -806], [675, -807], [674, -807], [674, -809], [674, -810], [673, -810], [673, -811], [672, -811], [672, -814], [673, -814], [673, -816], [674, -816], [674, -817], [674, -820], [675, -820], [675, -822], [676, -822]]}, "center": {"250-258": [681, -813]}}, -{"id": 5945, "name": "Oklahoma University", "description": "The University of Oklahoma's logo, a public research university based in Norman, Oklahoma. The university has a wide variety of majors and has a prestigious sports history, with prominence in football, women's softball, and both men's and women's gymnastics.", "links": {"website": ["https://en.wikipedia.org/wiki/University_of_Oklahoma", "https://www.ou.edu/"], "subreddit": ["sooners"]}, "path": {"250-258": [[1483, 172], [1500, 172], [1499, 190], [1483, 190]]}, "center": {"250-258": [1491, 181]}}, -{"id": 5946, "name": "PixelDr33ams' Party", "description": "Some people from Pixel's YouTube community, drawn as little icons. Featuring PixelDr33ams, Megatonto, AntiPixelDr33ams and VoxelNightm44res.", "links": {"website": ["https://www.youtube.com/@PixelDr33ams", "https://www.youtube.com/@AntiPixelDr33ams", "https://www.youtube.com/@Lorololland"], "subreddit": ["PixelDr33ams"], "discord": ["sXpfM5S"]}, "path": {"146-153": [[-566, -754], [-556, -754], [-556, -744], [-566, -744]], "155-169": [[-345, -787], [-333, -787], [-333, -780], [-345, -780]], "213-258": [[1428, 224], [1438, 224], [1438, 234], [1428, 234]]}, "center": {"146-153": [-561, -749], "155-169": [-339, -783], "213-258": [1433, 229]}}, -{"id": 5947, "name": "ChromeVT", "description": "Chilean Vtuber", "links": {"website": ["https://twitter.com/ChromeVT", "https://www.youtube.com/@ChromeVt", "https://www.twitch.tv/chromevt", "https://www.tiktok.com/@chromevt"]}, "path": {"108-258": [[-154, 384], [-156, 386], [-155, 388], [-153, 388], [-152, 386]]}, "center": {"108-258": [-154, 386]}}, +{"id": 5936, "name": "Flag of the Forest Finns and their descendants", "description": "On 29 December 2022, the official flag of the Forest Finns was adopted in cooperation by Forest Finn organizations in Norway and Sweden.\n\nForest Finns were Finnish migrants from Savonia and Northern Tavastia in Finland who settled in forest areas of Sweden proper and Norway during the late 16th and early-to-mid-17th centuries, and traditionally pursued slash-and-burn agriculture, a method used for turning forests into farmlands.\n\nBy the late 18th century, the Forest Finns had become largely assimilated into the Swedish and Norwegian cultures, and their language is today extinct. Descendants of the Forest Finns still live in Sweden and Norway.", "links": {"website": ["https://en.wikipedia.org/wiki/Forest_Finns", "https://no.wikipedia.org/wiki/Skogfinner"], "subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"205-258, T": [[-1, -337], [-2, -338], [-3, -338], [-5, -336], [-5, -334], [0, -329], [5, -334], [5, -336], [3, -338], [2, -338], [1, -337]]}, "center": {"205-258, T": [0, -334]}}, +{"id": 5937, "name": "Kokkoro", "description": "Kokkoro is one of three female protagonists in Princess Connect Re:Dive. She is a member of the gourmet guild and a close friend of Pecorine and Karyl (Kyaru). She is also the guide for Yuuki, the male protagonist of Princess Connect Re:Dive. It's no secret that she loves him.", "links": {"website": ["https://princess-connect.fandom.com/wiki/Kokkoro"], "subreddit": ["Priconne", "Kokkoro"]}, "path": {"250-258, T": [[-593, 193], [-593, 198], [-593, 200], [-590, 200], [-590, 193]]}, "center": {"250-258, T": [-591, 197]}}, +{"id": 5938, "name": "Nikola Jokić", "description": "Nikola Jokić is a Serbian basketball player regarded as one of the greatest basketball player in history. He has been awarded the NBA Finals MVP and All-Star titles in 2023.", "links": {"website": ["https://en.wikipedia.org/wiki/Nikola_Jokić"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"150-161": [[-631, 258], [-634, 262], [-634, 278], [-617, 278], [-617, 272], [-622, 272], [-622, 262], [-625, 258], [-628, 261]], "115-149": [[-636, 258], [-636, 261], [-637, 261], [-637, 264], [-632, 264], [-632, 272], [-624, 272], [-624, 264], [-619, 264], [-619, 257], [-623, 257], [-623, 258]], "162-258, T": [[-633, 278], [-633, 277], [-633, 276], [-633, 275], [-633, 274], [-633, 273], [-633, 272], [-633, 271], [-632, 271], [-631, 271], [-630, 271], [-629, 271], [-628, 271], [-627, 271], [-626, 271], [-628, 270], [-629, 269], [-630, 268], [-630, 267], [-631, 266], [-631, 265], [-631, 264], [-630, 263], [-630, 262], [-629, 261], [-628, 260], [-627, 259], [-626, 259], [-625, 258], [-624, 258], [-623, 258], [-622, 258], [-622, 259], [-621, 259], [-621, 260], [-620, 260], [-619, 261], [-618, 262], [-618, 263], [-617, 264], [-617, 265], [-617, 266], [-618, 267], [-618, 268], [-619, 269], [-620, 270], [-621, 271], [-622, 271], [-620, 271], [-619, 271], [-618, 271], [-617, 271], [-616, 271], [-615, 271], [-615, 272], [-615, 273], [-615, 274], [-615, 275], [-615, 277], [-615, 278], [-616, 278], [-617, 278], [-618, 278], [-619, 278], [-620, 278], [-621, 278], [-622, 278], [-623, 278], [-624, 278], [-625, 278], [-626, 278], [-627, 278], [-628, 278], [-629, 278], [-630, 278], [-631, 278], [-632, 278], [-633, 278], [-633, 277]]}, "center": {"150-161": [-628, 272], "115-149": [-628, 262], "162-258, T": [-624, 265]}}, +{"id": 5939, "name": "New York Mets Logo", "description": "Part of a collaboration between the New York Islanders and New York Mets. The New York Mets are a baseball team based in the Queens borough of New York City, New York, United States. They compete in Major League Baseball (MLB).", "links": {"website": ["https://www.mlb.com/mets"], "subreddit": ["newyorkmets"]}, "path": {"250-258, T": [[1354, 549], [1365, 550], [1364, 562], [1354, 563]]}, "center": {"250-258, T": [1359, 556]}}, +{"id": 5940, "name": "Flag of Latvia", "description": "Latvia is a country in Northeastern Europe and one of the Baltic states.", "links": {"website": ["https://en.wikipedia.org/wiki/Latvia", "https://en.wikipedia.org/wiki/Flag_of_Latvia"], "subreddit": ["latvia", "BalticStates"]}, "path": {"154-258, T": [[-14, -799], [-14, -794], [2, -794], [2, -799], [-10, -799]]}, "center": {"154-258, T": [-6, -796]}}, +{"id": 5941, "name": "Flag of Croatia", "description": "Croatia is a country at the crossroads of Central and Southeast Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Croatia", "https://en.wikipedia.org/wiki/Flag_of_Croatia"], "subreddit": ["croatia"]}, "path": {"205-258, T": [[1246, 17], [1255, 17], [1255, 25], [1243, 25], [1243, 19], [1245, 18]]}, "center": {"205-258, T": [1249, 21]}}, +{"id": 5942, "name": "Tiny Bisexual Heart", "description": "A tiny pride heart in the colors of the bisexual community.\n\nMade by the hivemind during the Charizard card's deterioration.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality"]}, "path": {"250-258, T": [[-1315, 241], [-1318, 237], [-1316, 235], [-1315, 236], [-1314, 235], [-1312, 237], [-1312, 238]]}, "center": {"250-258, T": [-1314, 238]}}, +{"id": 5943, "name": "Stoat", "description": "toat is a starting card from the indie game Inscryption. In the game's story, he also contains the consciousness of another character, P03. His eyes are glowing, indicating that he was given a new Sigil.", "links": {"website": ["https://inscryption.fandom.com/wiki/Stoat"], "subreddit": ["Inscryption"]}, "path": {"151-258, T": [[-995, -328], [-987, -328], [-987, -327], [-984, -327], [-984, -326], [-982, -326], [-982, -325], [-972, -325], [-971, -326], [-970, -326], [-969, -327], [-968, -328], [-964, -328], [-963, -327], [-961, -327], [-961, -326], [-961, -324], [-960, -325], [-960, -314], [-959, -314], [-959, -311], [-958, -310], [-958, -307], [-959, -307], [-959, -303], [-960, -303], [-960, -302], [-961, -301], [-962, -301], [-963, -300], [-963, -299], [-964, -298], [-964, -296], [-965, -297], [-965, -295], [-965, -294], [-966, -293], [-966, -292], [-968, -292], [-967, -291], [-966, -290], [-966, -289], [-967, -289], [-967, -288], [-967, -287], [-968, -286], [-969, -286], [-970, -288], [-972, -288], [-972, -287], [-971, -287], [-971, -286], [-970, -285], [-970, -284], [-970, -283], [-968, -283], [-969, -282], [-999, -282], [-998, -284], [-999, -289], [-998, -289], [-998, -293], [-997, -293], [-997, -299], [-996, -299], [-996, -305], [-997, -305], [-997, -311], [-998, -311], [-997, -312], [-997, -313], [-998, -313], [-998, -314], [-999, -314], [-999, -324], [-998, -324], [-998, -325], [-997, -325], [-997, -326], [-996, -326], [-996, -327]]}, "center": {"151-258, T": [-979, -308]}}, +{"id": 5944, "name": "Bolivian Squirtle", "description": "A small and adorable Squirtle with a typical Bolivian hat", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[676, -823], [682, -823], [682, -825], [683, -825], [683, -826], [686, -826], [686, -827], [687, -827], [687, -826], [688, -826], [688, -825], [688, -824], [689, -824], [689, -823], [688, -823], [688, -822], [687, -822], [687, -821], [685, -821], [685, -820], [685, -819], [686, -819], [686, -817], [688, -817], [688, -816], [690, -816], [691, -816], [691, -817], [692, -817], [692, -819], [694, -819], [694, -820], [699, -820], [699, -819], [700, -819], [700, -816], [699, -816], [699, -815], [698, -815], [698, -814], [697, -813], [691, -813], [691, -812], [691, -811], [692, -811], [692, -805], [691, -805], [691, -802], [690, -802], [690, -800], [688, -800], [688, -799], [685, -799], [685, -800], [684, -800], [684, -801], [683, -801], [683, -802], [678, -802], [678, -803], [677, -803], [677, -804], [678, -804], [678, -805], [679, -805], [679, -806], [678, -806], [675, -806], [675, -807], [674, -807], [674, -809], [674, -810], [673, -810], [673, -811], [672, -811], [672, -814], [673, -814], [673, -816], [674, -816], [674, -817], [674, -820], [675, -820], [675, -822], [676, -822]]}, "center": {"250-258, T": [681, -813]}}, +{"id": 5945, "name": "Oklahoma University", "description": "The University of Oklahoma's logo, a public research university based in Norman, Oklahoma. The university has a wide variety of majors and has a prestigious sports history, with prominence in football, women's softball, and both men's and women's gymnastics.", "links": {"website": ["https://en.wikipedia.org/wiki/University_of_Oklahoma", "https://www.ou.edu/"], "subreddit": ["sooners"]}, "path": {"250-258, T": [[1483, 172], [1500, 172], [1499, 190], [1483, 190]]}, "center": {"250-258, T": [1491, 181]}}, +{"id": 5946, "name": "PixelDr33ams' Party", "description": "Some people from Pixel's YouTube community, drawn as little icons. Featuring PixelDr33ams, Megatonto, AntiPixelDr33ams and VoxelNightm44res.", "links": {"website": ["https://www.youtube.com/@PixelDr33ams", "https://www.youtube.com/@AntiPixelDr33ams", "https://www.youtube.com/@Lorololland"], "subreddit": ["PixelDr33ams"], "discord": ["sXpfM5S"]}, "path": {"146-153": [[-566, -754], [-556, -754], [-556, -744], [-566, -744]], "155-169": [[-345, -787], [-333, -787], [-333, -780], [-345, -780]], "213-258, T": [[1428, 224], [1438, 224], [1438, 234], [1428, 234]]}, "center": {"146-153": [-561, -749], "155-169": [-339, -783], "213-258, T": [1433, 229]}}, +{"id": 5947, "name": "ChromeVT", "description": "Chilean Vtuber", "links": {"website": ["https://twitter.com/ChromeVT", "https://www.youtube.com/@ChromeVt", "https://www.twitch.tv/chromevt", "https://www.tiktok.com/@chromevt"]}, "path": {"108-258, T": [[-154, 384], [-156, 386], [-155, 388], [-153, 388], [-152, 386]]}, "center": {"108-258, T": [-154, 386]}}, {"id": 5948, "name": "Philemon Butterfly", "description": "Philemon from games 1-4 of the Persona series. He is depicted as a bright blue butterfly", "links": {}, "path": {"187-248": [[-737, -134], [-737, -131], [-736, -131], [-736, -130], [-735, -129], [-736, -128], [-736, -127], [-735, -126], [-734, -126], [-733, -127], [-732, -127], [-731, -127], [-730, -126], [-729, -126], [-728, -127], [-728, -128], [-729, -129], [-728, -130], [-728, -131], [-727, -131], [-727, -132], [-727, -133], [-727, -134], [-728, -134], [-729, -134], [-730, -133], [-731, -133], [-731, -132], [-732, -133], [-733, -132], [-734, -133], [-735, -134], [-736, -134], [-731, -132]]}, "center": {"187-248": [-732, -130]}}, -{"id": 5949, "name": "Not Just Bikes", "description": "Not Just Bikes is a YouTube channel dedicated to showing that cities designed for cars are deeply flawed. The creator of the channel lives in the city of Amsterdam, so an alliance with r/placeNL was formed.", "links": {"website": ["http://notjustbikes.com/", "https://www.youtube.com/@NotJustBikes"], "subreddit": ["notjustbikes"]}, "path": {"207-258": [[1008, -504], [1008, -497], [1005, -497], [1005, -494], [1002, -494], [1002, -490], [1000, -490], [1000, -482], [1026, -482], [1026, -504]]}, "center": {"207-258": [1016, -492]}}, -{"id": 5950, "name": "Spike (dog)", "description": "Spike was a Chilean mixed-breed dog. Rescued by a policeman in a fruit market in Santiago, he became known for his multiple appearances in television ads for different entities and companies, like Coca-Cola and the Chilean Navy. In 2004, he appeared as a protagonist in an ad campaign for Lipigas, a natural gas company. Since then, he became known by the name of \"Lipigas Dog\" for his continuous appearances in ads for the company. nnHe died in 2016 at age 14, because of an old age-related heart attack. Since then, Lipigas uses a Spike-like dog plushie for their campaigns.", "links": {"website": ["https://cooperativa.cl/noticias/sociedad/sucesos/la-historia-del-perrito-de-lipigas-el-quiltro-que-enamoro-a-chile/2016-03-19/083118.html"]}, "path": {"250-258": [[-1136, -784], [-1136, -786], [-1135, -787], [-1136, -788], [-1136, -798], [-1137, -799], [-1138, -803], [-1137, -804], [-1136, -806], [-1134, -807], [-1134, -813], [-1124, -813], [-1122, -805], [-1123, -804], [-1123, -803], [-1124, -802], [-1124, -801], [-1123, -801], [-1122, -800], [-1121, -799], [-1122, -798], [-1122, -796], [-1121, -796], [-1121, -789], [-1120, -788], [-1120, -784], [-1121, -783], [-1122, -783], [-1123, -782], [-1125, -782], [-1126, -783], [-1126, -784], [-1129, -784], [-1129, -785], [-1135, -785]]}, "center": {"250-258": [-1129, -793]}}, -{"id": 5951, "name": "Jorge and Tom York from \"Pulentos\"", "description": "Jorge, a yellow dog who uses sunglasses and Tom York, a wiener-shaped mouse, are characters from \"Pulentos\", a Chilean computer-animated series broadcasted by Canal 13 between 2005 and 2006.", "links": {"website": ["https://es.wikipedia.org/wiki/Pulentos"]}, "path": {"250-258": [[-714, -760], [-714, -764], [-713, -769], [-714, -770], [-714, -774], [-713, -774], [-713, -776], [-714, -777], [-716, -776], [-718, -777], [-719, -774], [-720, -774], [-722, -775], [-725, -776], [-726, -775], [-727, -775], [-728, -774], [-729, -769], [-728, -769], [-727, -770], [-726, -769], [-727, -768], [-728, -764], [-730, -764], [-730, -762], [-730, -761], [-727, -761], [-726, -764], [-726, -761], [-724, -761], [-724, -762], [-723, -761], [-722, -764], [-722, -761], [-721, -762], [-718, -762], [-718, -759], [-717, -759], [-716, -760]]}, "center": {"250-258": [-720, -769]}}, -{"id": 5952, "name": "BI-ping-bong", "description": "BI-ping-bong is the official light stick of the K-pop girl group BLACKPINK.", "links": {"website": ["https://black-pink.fandom.com/wiki/Bl-ping-bong"], "subreddit": ["BlackPink", "BeulPing", "Berserk"], "discord": ["qmGHwGq", "M699v8xSqz"]}, "path": {"166-258": [[603, 954], [603, 965], [610, 965], [610, 961], [611, 961], [611, 954]]}, "center": {"166-258": [607, 958]}}, -{"id": 5953, "name": "Omni-directional mobility blade", "description": "The omni-directional mobility (ODM) blade is a sword from the manga and anime Attack on Titan.", "links": {"website": ["https://attackontitan.fandom.com/wiki/Omni-directional_mobility_gear_(Anime)"], "subreddit": ["titanfolk", "Berserk"], "discord": ["VxsXpfYKcc", "M699v8xSqz"]}, "path": {"162-258": [[525, 918], [523, 920], [523, 924], [522, 924], [522, 927], [520, 927], [520, 930], [522, 930], [522, 945], [523, 945], [526, 942], [526, 933], [527, 933], [530, 930], [530, 927], [531, 926], [530, 925], [527, 925], [526, 924], [526, 923], [527, 922], [527, 920]]}, "center": {"162-258": [526, 929]}}, -{"id": 5954, "name": "Reaper's scythe", "description": "This scythe was part of a drawing of a Grim Reaper placed by u/Satan4live, a.k.a. Polite Reaper.\n\nThis artwork was originally created at the beginning of the fourth canvas expansion, but was quickly overrun by the Hill of Swords being built in the same location. The artwork's creator reached out to r/Berserk and negotiated for the scythe to be added to the Hill of Swords.", "links": {"website": ["https://www.reddit.com/r/place/comments/157pv29/ive_started_this_little_reaper_all_by_myself_for/", "https://en.wikipedia.org/wiki/Death_(personification)"], "subreddit": ["Berserk"], "discord": ["M699v8xSqz"]}, "path": {"156-168": [[552, 949], [548, 955], [548, 957], [549, 957], [549, 962], [557, 962], [557, 957], [560, 954], [564, 958], [565, 958], [565, 953], [561, 949], [557, 953]], "211-258": [[582, 960], [575, 967], [575, 968], [581, 968], [581, 967], [580, 966], [582, 964], [586, 968], [587, 968], [587, 963], [584, 960]]}, "center": {"156-168": [553, 955], "211-258": [584, 963]}}, +{"id": 5949, "name": "Not Just Bikes", "description": "Not Just Bikes is a YouTube channel dedicated to showing that cities designed for cars are deeply flawed. The creator of the channel lives in the city of Amsterdam, so an alliance with r/placeNL was formed.", "links": {"website": ["http://notjustbikes.com/", "https://www.youtube.com/@NotJustBikes"], "subreddit": ["notjustbikes"]}, "path": {"207-258, T": [[1008, -504], [1008, -497], [1005, -497], [1005, -494], [1002, -494], [1002, -490], [1000, -490], [1000, -482], [1026, -482], [1026, -504]]}, "center": {"207-258, T": [1016, -492]}}, +{"id": 5950, "name": "Spike (dog)", "description": "Spike was a Chilean mixed-breed dog. Rescued by a policeman in a fruit market in Santiago, he became known for his multiple appearances in television ads for different entities and companies, like Coca-Cola and the Chilean Navy. In 2004, he appeared as a protagonist in an ad campaign for Lipigas, a natural gas company. Since then, he became known by the name of \"Lipigas Dog\" for his continuous appearances in ads for the company. nnHe died in 2016 at age 14, because of an old age-related heart attack. Since then, Lipigas uses a Spike-like dog plushie for their campaigns.", "links": {"website": ["https://cooperativa.cl/noticias/sociedad/sucesos/la-historia-del-perrito-de-lipigas-el-quiltro-que-enamoro-a-chile/2016-03-19/083118.html"]}, "path": {"250-258, T": [[-1136, -784], [-1136, -786], [-1135, -787], [-1136, -788], [-1136, -798], [-1137, -799], [-1138, -803], [-1137, -804], [-1136, -806], [-1134, -807], [-1134, -813], [-1124, -813], [-1122, -805], [-1123, -804], [-1123, -803], [-1124, -802], [-1124, -801], [-1123, -801], [-1122, -800], [-1121, -799], [-1122, -798], [-1122, -796], [-1121, -796], [-1121, -789], [-1120, -788], [-1120, -784], [-1121, -783], [-1122, -783], [-1123, -782], [-1125, -782], [-1126, -783], [-1126, -784], [-1129, -784], [-1129, -785], [-1135, -785]]}, "center": {"250-258, T": [-1129, -793]}}, +{"id": 5951, "name": "Jorge and Tom York from \"Pulentos\"", "description": "Jorge, a yellow dog who uses sunglasses and Tom York, a wiener-shaped mouse, are characters from \"Pulentos\", a Chilean computer-animated series broadcasted by Canal 13 between 2005 and 2006.", "links": {"website": ["https://es.wikipedia.org/wiki/Pulentos"]}, "path": {"250-258, T": [[-714, -760], [-714, -764], [-713, -769], [-714, -770], [-714, -774], [-713, -774], [-713, -776], [-714, -777], [-716, -776], [-718, -777], [-719, -774], [-720, -774], [-722, -775], [-725, -776], [-726, -775], [-727, -775], [-728, -774], [-729, -769], [-728, -769], [-727, -770], [-726, -769], [-727, -768], [-728, -764], [-730, -764], [-730, -762], [-730, -761], [-727, -761], [-726, -764], [-726, -761], [-724, -761], [-724, -762], [-723, -761], [-722, -764], [-722, -761], [-721, -762], [-718, -762], [-718, -759], [-717, -759], [-716, -760]]}, "center": {"250-258, T": [-720, -769]}}, +{"id": 5952, "name": "BI-ping-bong", "description": "BI-ping-bong is the official light stick of the K-pop girl group BLACKPINK.", "links": {"website": ["https://black-pink.fandom.com/wiki/Bl-ping-bong"], "subreddit": ["BlackPink", "BeulPing", "Berserk"], "discord": ["qmGHwGq", "M699v8xSqz"]}, "path": {"166-258, T": [[603, 954], [603, 965], [610, 965], [610, 961], [611, 961], [611, 954]]}, "center": {"166-258, T": [607, 958]}}, +{"id": 5953, "name": "Omni-directional mobility blade", "description": "The omni-directional mobility (ODM) blade is a sword from the manga and anime Attack on Titan.", "links": {"website": ["https://attackontitan.fandom.com/wiki/Omni-directional_mobility_gear_(Anime)"], "subreddit": ["titanfolk", "Berserk"], "discord": ["VxsXpfYKcc", "M699v8xSqz"]}, "path": {"162-258, T": [[525, 918], [523, 920], [523, 924], [522, 924], [522, 927], [520, 927], [520, 930], [522, 930], [522, 945], [523, 945], [526, 942], [526, 933], [527, 933], [530, 930], [530, 927], [531, 926], [530, 925], [527, 925], [526, 924], [526, 923], [527, 922], [527, 920]]}, "center": {"162-258, T": [526, 929]}}, +{"id": 5954, "name": "Reaper's scythe", "description": "This scythe was part of a drawing of a Grim Reaper placed by u/Satan4live, a.k.a. Polite Reaper.\n\nThis artwork was originally created at the beginning of the fourth canvas expansion, but was quickly overrun by the Hill of Swords being built in the same location. The artwork's creator reached out to r/Berserk and negotiated for the scythe to be added to the Hill of Swords.", "links": {"website": ["https://www.reddit.com/r/place/comments/157pv29/ive_started_this_little_reaper_all_by_myself_for/", "https://en.wikipedia.org/wiki/Death_(personification)"], "subreddit": ["Berserk"], "discord": ["M699v8xSqz"]}, "path": {"156-168": [[552, 949], [548, 955], [548, 957], [549, 957], [549, 962], [557, 962], [557, 957], [560, 954], [564, 958], [565, 958], [565, 953], [561, 949], [557, 953]], "211-258, T": [[582, 960], [575, 967], [575, 968], [581, 968], [581, 967], [580, 966], [582, 964], [586, 968], [587, 968], [587, 963], [584, 960]]}, "center": {"156-168": [553, 955], "211-258, T": [584, 963]}}, {"id": 5955, "name": "Flag of Panama", "description": "Panama is a country in Central America.", "links": {}, "path": {"127-152": [[-892, 97], [-868, 97], [-868, 113], [-892, 113]]}, "center": {"127-152": [-880, 105]}}, {"id": 5956, "name": "Goose With Tophat", "description": "After havign trouble placing a goose near inscryption earlier, Canada was finally able to get a long lasting goose along this side of the canvas", "links": {"subreddit": ["placecanada"], "discord": ["placecanada"]}, "path": {"255-258": [[-1023, -319], [-1022, -319], [-1022, -315], [-1019, -317], [-1019, -320], [-1018, -320], [-1016, -322], [-1015, -322], [-1015, -320], [-1014, -321], [-1013, -320], [-1010, -321], [-1011, -322], [-1018, -323]]}, "center": {"255-258": [-1020, -319]}}, -{"id": 5957, "name": "Kirby", "description": "Kirby, a video game character creator by video game publisher Nintendo. First appeared in \"Kirby's Dream Land\" on the Gameboy.", "links": {"subreddit": ["kirby"]}, "path": {"250-258": [[-1190, -5], [-1181, -5], [-1181, -4], [-1176, 3], [-1178, 6], [-1178, 8], [-1177, 8], [-1176, 10], [-1177, 11], [-1178, 12], [-1180, 12], [-1182, 11], [-1186, 11], [-1188, 11], [-1190, 11], [-1190, 12], [-1193, 12], [-1194, 11], [-1195, 10], [-1192, 6], [-1193, 5], [-1194, 5], [-1195, 3], [-1192, -1], [-1191, -3], [-1190, -4], [-1188, -6], [-1188, -5], [-1187, -4], [-1184, -5], [-1181, -3]]}, "center": {"250-258": [-1185, 4]}}, -{"id": 5958, "name": "aespa", "description": "aespa ,one of the best girl groups, is a South Korean girl group formed by SM Entertainment. The group consists of four members: Karina, Giselle, Winter, and Ningning. They debuted on November 17, 2020, with the single \"Black Mamba\".", "links": {"website": ["https://www.instagram.com/aespa_official"]}, "path": {"250-258": [[-110, -884], [-98, -884], [-98, -878], [-110, -878]]}, "center": {"250-258": [-104, -881]}}, -{"id": 5960, "name": "Lemmings", "description": "Lemmings is a puzzle–strategy video game originally developed by DMA Design and published by Psygnosis for the Amiga in 1991 and later ported for numerous other platforms.", "links": {}, "path": {"250-258": [[-155, -601], [-155, -609], [-87, -609], [-87, -600], [-91, -600], [-91, -609], [-135, -609], [-135, -600], [-151, -600], [-151, -598], [-155, -598]]}, "center": {"250-258": [-140, -605]}}, -{"id": 5961, "name": "Gold Slime from Dragon Quest", "description": "A gold slime is a monster who appears in the Dragon Quest series.", "links": {}, "path": {"250-258": [[-336, -534], [-335, -533], [-334, -531], [-332, -530], [-331, -529], [-330, -528], [-329, -527], [-329, -524], [-330, -523], [-331, -522], [-332, -521], [-340, -521], [-341, -522], [-342, -523], [-343, -524], [-343, -527], [-341, -528], [-341, -529], [-339, -530], [-338, -531], [-337, -532]]}, "center": {"250-258": [-336, -526]}}, -{"id": 5962, "name": "Sherry Sharp and Mikuru Nakano", "description": "Sherry Sharp and Mikuru Nakano, the main characters from the webcomic Sherry Cobbler by Libellart", "links": {"website": ["https://www.webtoons.com/en/challenge/sherry-cobbler-gl/list?title_no=852349"]}, "path": {"250-258": [[442, 900], [443, 871], [474, 872], [474, 900]]}, "center": {"250-258": [458, 886]}}, -{"id": 5963, "name": "Pirot carpet", "description": "A Pirot carpet, also known as Pirot ćilim, is a variety of flat tapestry-woven rugs traditionally produced in Pirot, a town in southeastern Serbia. It is often referred to as one of the national symbols of Serbia.", "links": {"website": ["https://en.wikipedia.org/wiki/Pirot_carpet"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"164-258": [[-655, 257], [-655, 278], [-637, 278], [-637, 257]]}, "center": {"164-258": [-646, 268]}}, -{"id": 5964, "name": "Serbian plum", "description": "Serbia is the 3rd largest producer of plums in the world. Serbian plums are famous for their quality and are used to make a strong alcohol drink called Šljivovica.", "links": {"website": ["https://en.wikipedia.org/wiki/Plum"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"145-258": [[-701, 257], [-703, 259], [-700, 262], [-700, 263], [-703, 267], [-703, 274], [-699, 278], [-692, 278], [-692, 276], [-689, 273], [-689, 267], [-693, 262], [-695, 262]]}, "center": {"145-258": [-696, 269]}}, -{"id": 5965, "name": "Serbian cross", "description": "The Serbian cross (Srpski Krst) is a national symbol of Serbia. The symbols on the sides of the cross are traditionally attributed to Saint Sava, the 13th-century Metropolitan of Žiča and Archbishop of the Serbs. Popular tradition also interprets the four \"fire striker\" shapes as four Cyrillic letters \"S\" (С) for the motto \"Samo sloga Srbina spasava\", meaning \"Only Unity Saves the Serbs\". The double-headed eagle and the cross are the main heraldic symbols which have represented the national identity of the Serb people across the centuries.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbian_cross"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"109-258": [[-670, 260], [-672, 262], [-672, 263], [-675, 263], [-675, 266], [-677, 266], [-679, 268], [-679, 269], [-677, 271], [-675, 271], [-675, 274], [-672, 274], [-672, 275], [-670, 277], [-669, 277], [-667, 275], [-667, 274], [-664, 274], [-664, 271], [-662, 271], [-660, 269], [-660, 268], [-662, 266], [-664, 266], [-664, 263], [-667, 263], [-667, 262], [-669, 260]]}, "center": {"109-258": [-669, 269]}}, -{"id": 5966, "name": "Serbia", "description": "The country of Serbia as it appears on a map.\n\nInspired by other flag arts making silhouettes on their flags, Serbia built one of their own.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbian_cross"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"193-258": [[-723, 257], [-727, 261], [-727, 264], [-726, 264], [-726, 268], [-723, 274], [-720, 278], [-711, 278], [-707, 272], [-709, 270], [-709, 267], [-712, 264], [-714, 264], [-720, 257]]}, "center": {"193-258": [-717, 270]}}, -{"id": 5967, "name": "Patriarchate of Peć", "description": "The Patriarchate of Peć (Pećka Patrijaršija) is a Serbian monastery located in Peja (Peć), in the Metohija region of Kosovo. Built in the 13th century, it was the old head of the Serbian Orthodox Church. It became a World Heritage Site of UNESCO in 2006.", "links": {"website": ["https://en.wikipedia.org/wiki/Patriarchate_of_Pe%C4%87_(monastery)"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"157-258": [[-749, 257], [-751, 259], [-751, 261], [-752, 261], [-754, 263], [-754, 265], [-766, 265], [-769, 267], [-769, 278], [-727, 278], [-727, 275], [-731, 271], [-731, 266], [-732, 265], [-732, 263], [-734, 261], [-734, 259], [-736, 257], [-738, 259], [-738, 261], [-740, 263], [-740, 265], [-744, 265], [-744, 263], [-746, 261], [-747, 261], [-747, 259]]}, "center": {"157-258": [-749, 270]}}, +{"id": 5957, "name": "Kirby", "description": "Kirby, a video game character creator by video game publisher Nintendo. First appeared in \"Kirby's Dream Land\" on the Gameboy.", "links": {"subreddit": ["kirby"]}, "path": {"250-258, T": [[-1190, -5], [-1181, -5], [-1181, -4], [-1176, 3], [-1178, 6], [-1178, 8], [-1177, 8], [-1176, 10], [-1177, 11], [-1178, 12], [-1180, 12], [-1182, 11], [-1186, 11], [-1188, 11], [-1190, 11], [-1190, 12], [-1193, 12], [-1194, 11], [-1195, 10], [-1192, 6], [-1193, 5], [-1194, 5], [-1195, 3], [-1192, -1], [-1191, -3], [-1190, -4], [-1188, -6], [-1188, -5], [-1187, -4], [-1184, -5], [-1181, -3]]}, "center": {"250-258, T": [-1185, 4]}}, +{"id": 5958, "name": "aespa", "description": "aespa ,one of the best girl groups, is a South Korean girl group formed by SM Entertainment. The group consists of four members: Karina, Giselle, Winter, and Ningning. They debuted on November 17, 2020, with the single \"Black Mamba\".", "links": {"website": ["https://www.instagram.com/aespa_official"]}, "path": {"250-258, T": [[-110, -884], [-98, -884], [-98, -878], [-110, -878]]}, "center": {"250-258, T": [-104, -881]}}, +{"id": 5960, "name": "Lemmings", "description": "Lemmings is a puzzle–strategy video game originally developed by DMA Design and published by Psygnosis for the Amiga in 1991 and later ported for numerous other platforms.", "links": {}, "path": {"250-258, T": [[-155, -601], [-155, -609], [-87, -609], [-87, -600], [-91, -600], [-91, -609], [-135, -609], [-135, -600], [-151, -600], [-151, -598], [-155, -598]]}, "center": {"250-258, T": [-140, -605]}}, +{"id": 5961, "name": "Gold Slime from Dragon Quest", "description": "A gold slime is a monster who appears in the Dragon Quest series.", "links": {}, "path": {"250-258, T": [[-336, -534], [-335, -533], [-334, -531], [-332, -530], [-331, -529], [-330, -528], [-329, -527], [-329, -524], [-330, -523], [-331, -522], [-332, -521], [-340, -521], [-341, -522], [-342, -523], [-343, -524], [-343, -527], [-341, -528], [-341, -529], [-339, -530], [-338, -531], [-337, -532]]}, "center": {"250-258, T": [-336, -526]}}, +{"id": 5962, "name": "Sherry Sharp and Mikuru Nakano", "description": "Sherry Sharp and Mikuru Nakano, the main characters from the webcomic Sherry Cobbler by Libellart", "links": {"website": ["https://www.webtoons.com/en/challenge/sherry-cobbler-gl/list?title_no=852349"]}, "path": {"250-258, T": [[442, 900], [443, 871], [474, 872], [474, 900]]}, "center": {"250-258, T": [458, 886]}}, +{"id": 5963, "name": "Pirot carpet", "description": "A Pirot carpet, also known as Pirot ćilim, is a variety of flat tapestry-woven rugs traditionally produced in Pirot, a town in southeastern Serbia. It is often referred to as one of the national symbols of Serbia.", "links": {"website": ["https://en.wikipedia.org/wiki/Pirot_carpet"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"164-258, T": [[-655, 257], [-655, 278], [-637, 278], [-637, 257]]}, "center": {"164-258, T": [-646, 268]}}, +{"id": 5964, "name": "Serbian plum", "description": "Serbia is the 3rd largest producer of plums in the world. Serbian plums are famous for their quality and are used to make a strong alcohol drink called Šljivovica.", "links": {"website": ["https://en.wikipedia.org/wiki/Plum"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"145-258, T": [[-701, 257], [-703, 259], [-700, 262], [-700, 263], [-703, 267], [-703, 274], [-699, 278], [-692, 278], [-692, 276], [-689, 273], [-689, 267], [-693, 262], [-695, 262]]}, "center": {"145-258, T": [-696, 269]}}, +{"id": 5965, "name": "Serbian cross", "description": "The Serbian cross (Srpski Krst) is a national symbol of Serbia. The symbols on the sides of the cross are traditionally attributed to Saint Sava, the 13th-century Metropolitan of Žiča and Archbishop of the Serbs. Popular tradition also interprets the four \"fire striker\" shapes as four Cyrillic letters \"S\" (С) for the motto \"Samo sloga Srbina spasava\", meaning \"Only Unity Saves the Serbs\". The double-headed eagle and the cross are the main heraldic symbols which have represented the national identity of the Serb people across the centuries.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbian_cross"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"109-258, T": [[-670, 260], [-672, 262], [-672, 263], [-675, 263], [-675, 266], [-677, 266], [-679, 268], [-679, 269], [-677, 271], [-675, 271], [-675, 274], [-672, 274], [-672, 275], [-670, 277], [-669, 277], [-667, 275], [-667, 274], [-664, 274], [-664, 271], [-662, 271], [-660, 269], [-660, 268], [-662, 266], [-664, 266], [-664, 263], [-667, 263], [-667, 262], [-669, 260]]}, "center": {"109-258, T": [-669, 269]}}, +{"id": 5966, "name": "Serbia", "description": "The country of Serbia as it appears on a map.\n\nInspired by other flag arts making silhouettes on their flags, Serbia built one of their own.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbian_cross"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"193-258, T": [[-723, 257], [-727, 261], [-727, 264], [-726, 264], [-726, 268], [-723, 274], [-720, 278], [-711, 278], [-707, 272], [-709, 270], [-709, 267], [-712, 264], [-714, 264], [-720, 257]]}, "center": {"193-258, T": [-717, 270]}}, +{"id": 5967, "name": "Patriarchate of Peć", "description": "The Patriarchate of Peć (Pećka Patrijaršija) is a Serbian monastery located in Peja (Peć), in the Metohija region of Kosovo. Built in the 13th century, it was the old head of the Serbian Orthodox Church. It became a World Heritage Site of UNESCO in 2006.", "links": {"website": ["https://en.wikipedia.org/wiki/Patriarchate_of_Pe%C4%87_(monastery)"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"157-258, T": [[-749, 257], [-751, 259], [-751, 261], [-752, 261], [-754, 263], [-754, 265], [-766, 265], [-769, 267], [-769, 278], [-727, 278], [-727, 275], [-731, 271], [-731, 266], [-732, 265], [-732, 263], [-734, 261], [-734, 259], [-736, 257], [-738, 259], [-738, 261], [-740, 263], [-740, 265], [-744, 265], [-744, 263], [-746, 261], [-747, 261], [-747, 259]]}, "center": {"157-258, T": [-749, 270]}}, {"id": 5968, "name": "Battle of Kosovo", "description": "The Battle of Kosovo, which took place on June 15, 1389, was a battle between Serbia and the invading Ottoman Empire. Although many details of the battle are unknown, the battle has become legendary in Serbian culture, and is an important part of Serbian national pride.", "links": {"website": ["https://en.wikipedia.org/wiki/Battle_of_Kosovo"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"148-159": [[-767, 264], [-767, 272], [-751, 272], [-751, 270], [-747, 270], [-746, 271], [-746, 273], [-745, 274], [-745, 276], [-743, 276], [-743, 274], [-742, 273], [-742, 271], [-741, 270], [-738, 270], [-737, 269], [-735, 269], [-735, 267], [-737, 267], [-738, 266], [-741, 266], [-742, 265], [-742, 263], [-743, 262], [-743, 260], [-745, 260], [-745, 262], [-746, 263], [-746, 265], [-747, 266], [-751, 266], [-751, 264]]}, "center": {"148-159": [-759, 268]}}, {"id": 5969, "name": "Western City Gate", "description": "The Western City Gate, also known as the Genex Tower, is a skyscraper in Belgrade, Serbia that consists of two towers that resemble a large city gate. In the middle of the towers is a bridge and a revolving restaurant.", "links": {"website": ["https://en.wikipedia.org/wiki/Western_City_Gate"], "subreddit": ["serbia"], "discord": ["DzQFKkFn"]}, "path": {"136-199": [[-720, 263], [-720, 278], [-706, 278], [-706, 266], [-705, 266], [-705, 264], [-708, 264], [-708, 262], [-711, 259], [-714, 262], [-714, 263]]}, "center": {"136-199": [-713, 270]}}, -{"id": 5970, "name": "The Batter", "description": "The Batter is the protagonist of the 2008 French role-playing game OFF, by Mortis Ghost.", "links": {"website": ["https://off.fandom.com/wiki/The_Batter"], "subreddit": ["offthegame", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"193-258": [[-769, 395], [-769, 415], [-763, 408], [-763, 406], [-765, 404], [-761, 401], [-761, 400], [-765, 395]]}, "center": {"193-258": [-766, 400]}}, -{"id": 5971, "name": "The Beheaded", "description": "The Beheaded is the protagonist of the game Dead Cells.", "links": {"website": ["https://deadcells.fandom.com/wiki/The_Beheaded"], "subreddit": ["deadcells", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"163-258": [[-764, 402], [-766, 404], [-764, 406], [-764, 408], [-765, 408], [-767, 410], [-768, 416], [-770, 416], [-770, 420], [-766, 420], [-766, 425], [-763, 428], [-760, 428], [-757, 425], [-757, 423], [-760, 420], [-760, 419], [-755, 419], [-755, 418], [-749, 418], [-749, 416], [-753, 413], [-753, 412], [-758, 409], [-758, 407]]}, "center": {"163-258": [-762, 413]}}, -{"id": 5972, "name": "Speckled Butterfly", "description": "The Speckled Butterfly is a species of butterfly from the game APICO.", "links": {"website": ["https://wiki.apico.buzz/wiki/Speckled_Butterfly"], "subreddit": ["APICO", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"192-258": [[-760, 378], [-762, 380], [-762, 384], [-756, 384], [-756, 380], [-758, 378]]}, "center": {"192-258": [-759, 381]}}, -{"id": 5973, "name": "Common Bee", "description": "The Common Bee is a species of bee from the game APICO.", "links": {"website": ["https://wiki.apico.buzz/wiki/Common_Bee"], "subreddit": ["APICO", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"187-258": [[-765, 378], [-767, 380], [-769, 380], [-769, 383], [-768, 383], [-768, 387], [-764, 387], [-764, 389], [-760, 389], [-760, 388], [-762, 386], [-764, 386], [-766, 384], [-766, 381], [-763, 381], [-763, 380]]}, "center": {"187-258": [-766, 386]}}, -{"id": 5974, "name": "Purple Guy", "description": "William Afton, also known as the Purple Guy and The Employee, is the main antagonist of the Five Nights at Freddy's franchise. He is the co-founder of Fazbear Entertainment and a serial killer who targets infants and young children. He is directly responsible for all of the incidents and tragedies throughout the series. This is a sprite from the SAVETHEM minigame from Five Nights at Freddy's 2.\n\nIt's been so long since the last you've seen your son.", "links": {"website": ["https://fivenightsatfreddys.fandom.com/wiki/William_Afton"], "subreddit": ["fivenightsatfreddys", "IndieAlliance"], "discord": ["freddit", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"184-258": [[-749, 378], [-751, 380], [-751, 382], [-749, 384], [-747, 384], [-745, 382], [-745, 378]]}, "center": {"184-258": [-748, 381]}}, -{"id": 5975, "name": "Mae Borowski", "description": "Mae is the player character in the game Night in the Woods.", "links": {"website": ["https://nightinthewoods.fandom.com/wiki/Mae_Borowski"], "subreddit": ["NightInTheWoods", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"176-258": [[-757, 415], [-757, 417], [-756, 417], [-756, 420], [-757, 420], [-757, 427], [-753, 427], [-753, 429], [-752, 429], [-749, 426], [-749, 425], [-748, 424], [-748, 417], [-747, 417], [-747, 415]]}, "center": {"176-258": [-752, 422]}}, -{"id": 5976, "name": "OMORI", "description": "OMORI is the titular deuteragonist in the game OMORI. OMORI can be controlled by the player during the night, where WHITE SPACE can be explored. When OMORI is in the lead, he can cut down obstacles with his knife.", "links": {"website": ["https://omori.fandom.com/wiki/OMORI"], "subreddit": ["OMORI", "IndieAlliance"], "discord": ["ypSr9JG2ht", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-258": [[-749, 398], [-749, 400], [-751, 402], [-751, 416], [-749, 416], [-749, 421], [-748, 422], [-748, 425], [-745, 427], [-740, 427], [-740, 424], [-741, 424], [-741, 417], [-742, 417], [-742, 402], [-744, 400], [-746, 400], [-746, 398]]}, "center": {"164-258": [-747, 412]}}, -{"id": 5977, "name": "Commando", "description": "The Commando is a playable character in the game Risk of Rain and its sequel Risk of Rain 2.", "links": {"website": ["https://riskofrain.fandom.com/wiki/Commando_(RoR)", "https://riskofrain2.fandom.com/wiki/Commando"], "subreddit": ["riskofrain", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"175-258": [[-744, 386], [-747, 389], [-747, 392], [-748, 393], [-748, 394], [-743, 394], [-743, 396], [-747, 399], [-748, 400], [-748, 401], [-739, 401], [-738, 400], [-736, 398], [-736, 396], [-737, 395], [-737, 392], [-738, 391], [-739, 389], [-743, 387]]}, "center": {"175-258": [-743, 391]}}, -{"id": 5978, "name": "Norwegian Flags", "description": "A series of multiple Norwegian flags, a very northern country located in Scandinavia", "links": {}, "path": {"250-258": [[-14, -674], [28, -673], [27, -660], [24, -660], [22, -659], [22, -658], [15, -658], [12, -655], [11, -654], [11, -650], [16, -650], [17, -653], [19, -653], [17, -650], [17, -642], [14, -641], [12, -644], [7, -644], [7, -639], [4, -639], [2, -660], [-14, -661]]}, "center": {"250-258": [9, -664]}}, -{"id": 5979, "name": "Lucas from Mother 3", "description": "Lucas is the main protagonist of a Mother 3, a popular Nintendo game released in 2006, despite never getting an official English translation.", "links": {}, "path": {"250-258": [[1364, -945], [1365, -944], [1368, -943], [1370, -942], [1372, -940], [1373, -937], [1375, -935], [1373, -934], [1370, -931], [1371, -930], [1373, -928], [1372, -924], [1371, -923], [1363, -923], [1363, -922], [1361, -925], [1362, -929], [1364, -931], [1360, -935], [1360, -937], [1361, -940]]}, "center": {"250-258": [1367, -937]}}, -{"id": 5980, "name": "Flag of Iraq", "description": "A flag of Iraq where instead of Arabic being in the middle, it's the english name of Iraq, a country in the middle east located above Saudi Arabia", "links": {}, "path": {"250-258": [[-14, -709], [18, -709], [18, -694], [-14, -694]]}, "center": {"250-258": [2, -701]}}, -{"id": 5981, "name": "crunchyroll racing team", "description": "This is a Formula 4 racing team created for GP Explorer. It is led by French streamer Billy and his teammate Kekra.\n\nThe story of this team is special because Billy's father was supposed to be driving, but due to his advanced age, it's very dangerous for him and for others. This event brought Billy and his father closer together, and shortly before the start of training for the gp, Billy's life was turned upside down when he became a father himself.", "links": {"website": ["https://youtu.be/DZYDLoFtGj8", "https://youtu.be/MLbjO5P8ZwI", "https://fr.wikipedia.org/wiki/GP_Explorer", "https://www.twitch.tv/rebeudeter", "https://www.youtube.com/@kekraland"], "subreddit": ["Crunchyroll"]}, "path": {"17-63": [[-426, 10], [-422, 7], [-422, 3], [-426, 0], [-429, 0], [-431, 3], [-432, 5], [-431, 8]], "64-258": [[-428, 13], [-426, 13], [-424, 14], [-423, 16], [-423, 18], [-424, 20], [-425, 20], [-426, 21], [-428, 21], [-429, 20], [-430, 20], [-431, 18], [-431, 16], [-430, 15], [-429, 14]]}, "center": {"17-63": [-427, 5], "64-258": [-427, 17]}}, -{"id": 5982, "name": "Alpine 2 racing team", "description": "Is Alpine racing team this pilot is Théodor and Djilsi. This team is coach by Pierre Gasly.", "links": {"website": ["https://www.youtube.com/@Djilsi", "https://www.youtube.com/@theodortytb/about", "https://www.youtube.com/@AlpineCars", "https://fr.wikipedia.org/wiki/GP_Explorer"], "subreddit": ["AlpineF1Team"]}, "path": {"16-61": [[-407, 58], [-404, 60], [-402, 60], [-399, 58], [-398, 56], [-398, 54], [-399, 53], [-400, 51], [-404, 50], [-405, 51], [-407, 53], [-408, 55], [-407, 57]], "62-258": [[-404, 63], [-401, 63], [-400, 64], [-399, 66], [-399, 68], [-400, 70], [-402, 70], [-402, 71], [-404, 71], [-405, 70], [-406, 70], [-407, 68], [-407, 67], [-406, 65], [-404, 64]]}, "center": {"16-61": [-403, 55], "62-258": [-403, 67]}}, -{"id": 5983, "name": "Samsung Racing team", "description": "Is Samsung Racing team with SCH and Soso manes(two frensh rapper)", "links": {"website": ["https://www.youtube.com/@sch", "https://www.youtube.com/@SosoManessOfficiel", "https://www.samsung.com/fr/smartphones/galaxy-z-flip5/?page=home"]}, "path": {"17-63": [[-402, 21], [-400, 19], [-398, 17], [-398, 15], [-400, 12], [-402, 11], [-404, 11], [-405, 12], [-407, 13], [-408, 15], [-408, 17], [-407, 19]], "64-258": [[-402, 24], [-404, 24], [-406, 25], [-407, 27], [-407, 29], [-405, 31], [-402, 32], [-401, 31], [-400, 31], [-399, 29], [-399, 27], [-400, 26], [-401, 25]]}, "center": {"17-63": [-403, 16], "64-258": [-403, 28]}}, -{"id": 5984, "name": "Show Desktop icon/button", "description": "Since the Windows 95 Desktop Update, the Quick Launch bar featured Show desktop as one of its default shortcuts which automatically minimizes all opened applications, redundant with the Winkey-D key combination. On Windows 7, a dedicated Show desktop button was placed to the right of the notification area and could not be removed. With the \"Peek\" option enabled, hovering over the button hides all opened windows to expose the desktop (leaving outlines of them on-screen). On Windows 10, the \"Show desktop\" widget changed yet again, being reduced to a narrow iconless strip at the far right of the taskbar.", "links": {"website": ["https://en.wikipedia.org/wiki/Taskbar"]}, "path": {"183-258": [[-1389, 979], [-1374, 979], [-1374, 991], [-1389, 991]]}, "center": {"183-258": [-1381, 985]}}, +{"id": 5970, "name": "The Batter", "description": "The Batter is the protagonist of the 2008 French role-playing game OFF, by Mortis Ghost.", "links": {"website": ["https://off.fandom.com/wiki/The_Batter"], "subreddit": ["offthegame", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"193-258, T": [[-769, 395], [-769, 415], [-763, 408], [-763, 406], [-765, 404], [-761, 401], [-761, 400], [-765, 395]]}, "center": {"193-258, T": [-766, 400]}}, +{"id": 5971, "name": "The Beheaded", "description": "The Beheaded is the protagonist of the game Dead Cells.", "links": {"website": ["https://deadcells.fandom.com/wiki/The_Beheaded"], "subreddit": ["deadcells", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"163-258, T": [[-764, 402], [-766, 404], [-764, 406], [-764, 408], [-765, 408], [-767, 410], [-768, 416], [-770, 416], [-770, 420], [-766, 420], [-766, 425], [-763, 428], [-760, 428], [-757, 425], [-757, 423], [-760, 420], [-760, 419], [-755, 419], [-755, 418], [-749, 418], [-749, 416], [-753, 413], [-753, 412], [-758, 409], [-758, 407]]}, "center": {"163-258, T": [-762, 413]}}, +{"id": 5972, "name": "Speckled Butterfly", "description": "The Speckled Butterfly is a species of butterfly from the game APICO.", "links": {"website": ["https://wiki.apico.buzz/wiki/Speckled_Butterfly"], "subreddit": ["APICO", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"192-258, T": [[-760, 378], [-762, 380], [-762, 384], [-756, 384], [-756, 380], [-758, 378]]}, "center": {"192-258, T": [-759, 381]}}, +{"id": 5973, "name": "Common Bee", "description": "The Common Bee is a species of bee from the game APICO.", "links": {"website": ["https://wiki.apico.buzz/wiki/Common_Bee"], "subreddit": ["APICO", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"187-258, T": [[-765, 378], [-767, 380], [-769, 380], [-769, 383], [-768, 383], [-768, 387], [-764, 387], [-764, 389], [-760, 389], [-760, 388], [-762, 386], [-764, 386], [-766, 384], [-766, 381], [-763, 381], [-763, 380]]}, "center": {"187-258, T": [-766, 386]}}, +{"id": 5974, "name": "Purple Guy", "description": "William Afton, also known as the Purple Guy and The Employee, is the main antagonist of the Five Nights at Freddy's franchise. He is the co-founder of Fazbear Entertainment and a serial killer who targets infants and young children. He is directly responsible for all of the incidents and tragedies throughout the series. This is a sprite from the SAVETHEM minigame from Five Nights at Freddy's 2.\n\nIt's been so long since the last you've seen your son.", "links": {"website": ["https://fivenightsatfreddys.fandom.com/wiki/William_Afton"], "subreddit": ["fivenightsatfreddys", "IndieAlliance"], "discord": ["freddit", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"184-258, T": [[-749, 378], [-751, 380], [-751, 382], [-749, 384], [-747, 384], [-745, 382], [-745, 378]]}, "center": {"184-258, T": [-748, 381]}}, +{"id": 5975, "name": "Mae Borowski", "description": "Mae is the player character in the game Night in the Woods.", "links": {"website": ["https://nightinthewoods.fandom.com/wiki/Mae_Borowski"], "subreddit": ["NightInTheWoods", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"176-258, T": [[-757, 415], [-757, 417], [-756, 417], [-756, 420], [-757, 420], [-757, 427], [-753, 427], [-753, 429], [-752, 429], [-749, 426], [-749, 425], [-748, 424], [-748, 417], [-747, 417], [-747, 415]]}, "center": {"176-258, T": [-752, 422]}}, +{"id": 5976, "name": "OMORI", "description": "OMORI is the titular deuteragonist in the game OMORI. OMORI can be controlled by the player during the night, where WHITE SPACE can be explored. When OMORI is in the lead, he can cut down obstacles with his knife.", "links": {"website": ["https://omori.fandom.com/wiki/OMORI"], "subreddit": ["OMORI", "IndieAlliance"], "discord": ["ypSr9JG2ht", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-258, T": [[-749, 398], [-749, 400], [-751, 402], [-751, 416], [-749, 416], [-749, 421], [-748, 422], [-748, 425], [-745, 427], [-740, 427], [-740, 424], [-741, 424], [-741, 417], [-742, 417], [-742, 402], [-744, 400], [-746, 400], [-746, 398]]}, "center": {"164-258, T": [-747, 412]}}, +{"id": 5977, "name": "Commando", "description": "The Commando is a playable character in the game Risk of Rain and its sequel Risk of Rain 2.", "links": {"website": ["https://riskofrain.fandom.com/wiki/Commando_(RoR)", "https://riskofrain2.fandom.com/wiki/Commando"], "subreddit": ["riskofrain", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"175-258, T": [[-744, 386], [-747, 389], [-747, 392], [-748, 393], [-748, 394], [-743, 394], [-743, 396], [-747, 399], [-748, 400], [-748, 401], [-739, 401], [-738, 400], [-736, 398], [-736, 396], [-737, 395], [-737, 392], [-738, 391], [-739, 389], [-743, 387]]}, "center": {"175-258, T": [-743, 391]}}, +{"id": 5978, "name": "Norwegian Flags", "description": "A series of multiple Norwegian flags, a very northern country located in Scandinavia", "links": {}, "path": {"250-258, T": [[-14, -674], [28, -673], [27, -660], [24, -660], [22, -659], [22, -658], [15, -658], [12, -655], [11, -654], [11, -650], [16, -650], [17, -653], [19, -653], [17, -650], [17, -642], [14, -641], [12, -644], [7, -644], [7, -639], [4, -639], [2, -660], [-14, -661]]}, "center": {"250-258, T": [9, -664]}}, +{"id": 5979, "name": "Lucas from Mother 3", "description": "Lucas is the main protagonist of a Mother 3, a popular Nintendo game released in 2006, despite never getting an official English translation.", "links": {}, "path": {"250-258, T": [[1364, -945], [1365, -944], [1368, -943], [1370, -942], [1372, -940], [1373, -937], [1375, -935], [1373, -934], [1370, -931], [1371, -930], [1373, -928], [1372, -924], [1371, -923], [1363, -923], [1363, -922], [1361, -925], [1362, -929], [1364, -931], [1360, -935], [1360, -937], [1361, -940]]}, "center": {"250-258, T": [1367, -937]}}, +{"id": 5980, "name": "Flag of Iraq", "description": "A flag of Iraq where instead of Arabic being in the middle, it's the english name of Iraq, a country in the middle east located above Saudi Arabia", "links": {}, "path": {"250-258, T": [[-14, -709], [18, -709], [18, -694], [-14, -694]]}, "center": {"250-258, T": [2, -701]}}, +{"id": 5981, "name": "crunchyroll racing team", "description": "This is a Formula 4 racing team created for GP Explorer. It is led by French streamer Billy and his teammate Kekra.\n\nThe story of this team is special because Billy's father was supposed to be driving, but due to his advanced age, it's very dangerous for him and for others. This event brought Billy and his father closer together, and shortly before the start of training for the gp, Billy's life was turned upside down when he became a father himself.", "links": {"website": ["https://youtu.be/DZYDLoFtGj8", "https://youtu.be/MLbjO5P8ZwI", "https://fr.wikipedia.org/wiki/GP_Explorer", "https://www.twitch.tv/rebeudeter", "https://www.youtube.com/@kekraland"], "subreddit": ["Crunchyroll"]}, "path": {"17-63": [[-426, 10], [-422, 7], [-422, 3], [-426, 0], [-429, 0], [-431, 3], [-432, 5], [-431, 8]], "64-258, T": [[-428, 13], [-426, 13], [-424, 14], [-423, 16], [-423, 18], [-424, 20], [-425, 20], [-426, 21], [-428, 21], [-429, 20], [-430, 20], [-431, 18], [-431, 16], [-430, 15], [-429, 14]]}, "center": {"17-63": [-427, 5], "64-258, T": [-427, 17]}}, +{"id": 5982, "name": "Alpine 2 racing team", "description": "Is Alpine racing team this pilot is Théodor and Djilsi. This team is coach by Pierre Gasly.", "links": {"website": ["https://www.youtube.com/@Djilsi", "https://www.youtube.com/@theodortytb/about", "https://www.youtube.com/@AlpineCars", "https://fr.wikipedia.org/wiki/GP_Explorer"], "subreddit": ["AlpineF1Team"]}, "path": {"16-61": [[-407, 58], [-404, 60], [-402, 60], [-399, 58], [-398, 56], [-398, 54], [-399, 53], [-400, 51], [-404, 50], [-405, 51], [-407, 53], [-408, 55], [-407, 57]], "62-258, T": [[-404, 63], [-401, 63], [-400, 64], [-399, 66], [-399, 68], [-400, 70], [-402, 70], [-402, 71], [-404, 71], [-405, 70], [-406, 70], [-407, 68], [-407, 67], [-406, 65], [-404, 64]]}, "center": {"16-61": [-403, 55], "62-258, T": [-403, 67]}}, +{"id": 5983, "name": "Samsung Racing team", "description": "Is Samsung Racing team with SCH and Soso manes(two frensh rapper)", "links": {"website": ["https://www.youtube.com/@sch", "https://www.youtube.com/@SosoManessOfficiel", "https://www.samsung.com/fr/smartphones/galaxy-z-flip5/?page=home"]}, "path": {"17-63": [[-402, 21], [-400, 19], [-398, 17], [-398, 15], [-400, 12], [-402, 11], [-404, 11], [-405, 12], [-407, 13], [-408, 15], [-408, 17], [-407, 19]], "64-258, T": [[-402, 24], [-404, 24], [-406, 25], [-407, 27], [-407, 29], [-405, 31], [-402, 32], [-401, 31], [-400, 31], [-399, 29], [-399, 27], [-400, 26], [-401, 25]]}, "center": {"17-63": [-403, 16], "64-258, T": [-403, 28]}}, +{"id": 5984, "name": "Show Desktop icon/button", "description": "Since the Windows 95 Desktop Update, the Quick Launch bar featured Show desktop as one of its default shortcuts which automatically minimizes all opened applications, redundant with the Winkey-D key combination. On Windows 7, a dedicated Show desktop button was placed to the right of the notification area and could not be removed. With the \"Peek\" option enabled, hovering over the button hides all opened windows to expose the desktop (leaving outlines of them on-screen). On Windows 10, the \"Show desktop\" widget changed yet again, being reduced to a narrow iconless strip at the far right of the taskbar.", "links": {"website": ["https://en.wikipedia.org/wiki/Taskbar"]}, "path": {"183-258, T": [[-1389, 979], [-1374, 979], [-1374, 991], [-1389, 991]]}, "center": {"183-258, T": [-1381, 985]}}, {"id": 5985, "name": "Chala Loca", "description": "Una chala loca wtf. Obra del chat de rodrigo escuadra", "links": {"website": ["https://www.twitch.tv/rodsquare"]}, "path": {"37": [[-127, 356], [-127, 395], [-107, 395], [-107, 388], [-107, 387], [-97, 387], [-97, 356]]}, "center": {"37": [-112, 371]}}, -{"id": 5986, "name": "Mushroom Toppin", "description": "The Mushroom Toppin is a brown mushroom with exaggerated, googly eyes. This toppin is also the first one you will collect/save in a stage.\n\nThe Mushroom Toppin, as well as other toppins, can be found trapped in cages throughout the levels in Pizza Tower. Upon saving a Toppin, the player is given 1000 points. After being saved, they will follow behind the player until the end of the level. Each Toppin will taunt alongside Peppino. \n\nToppins are counted as a collectible, and will run around the level's gate if the player beats the level with them. They will also be seen during the rank screen. When collected for the first time, each Toppin contributes 10 dollars to the player's savings. This money needs to be paid to Mr. Stick to enter boss fights. There are 95 Toppins in total, but only 86 of them are needed to beat the game.", "links": {"website": ["https://pizzatower.fandom.com/wiki/Toppins"], "subreddit": ["PizzaTower"]}, "path": {"247-252": [[-856, -269], [-856, -268], [-855, -267], [-855, -265], [-854, -264], [-853, -265], [-852, -264], [-851, -265], [-851, -267], [-850, -268], [-850, -269], [-851, -270], [-852, -271], [-854, -271], [-855, -270]]}, "center": {"247-252": [-853, -268]}}, +{"id": 5986, "name": "Mushroom Toppin", "description": "The Mushroom Toppin is a brown mushroom with exaggerated, googly eyes. This toppin is also the first one you will collect/save in a stage.\n\nThe Mushroom Toppin, as well as other toppins, can be found trapped in cages throughout the levels in Pizza Tower. Upon saving a Toppin, the player is given 1000 points. After being saved, they will follow behind the player until the end of the level. Each Toppin will taunt alongside Peppino. \n\nToppins are counted as a collectible, and will run around the level's gate if the player beats the level with them. They will also be seen during the rank screen. When collected for the first time, each Toppin contributes 10 dollars to the player's savings. This money needs to be paid to Mr. Stick to enter boss fights. There are 95 Toppins in total, but only 86 of them are needed to beat the game.", "links": {"website": ["https://pizzatower.fandom.com/wiki/Toppins"], "subreddit": ["PizzaTower"]}, "path": {"247-252, T": [[-856, -269], [-856, -268], [-855, -267], [-855, -265], [-854, -264], [-853, -265], [-852, -264], [-851, -265], [-851, -267], [-850, -268], [-850, -269], [-851, -270], [-852, -271], [-854, -271], [-855, -270]]}, "center": {"247-252, T": [-853, -268]}}, {"id": 5987, "name": "The Combine Logo", "description": "A Combine Logo, The Combine From Half Life 2 is a vast and powerful interdimensional hegemony which subjugated Earth during the Seven Hour War. Describing itself as a universal union, the Combine is comprised of many enslaved species, spanning multiple universes in the Multiverse with countless enslaved worlds under its control.", "links": {"website": ["https://half-life.fandom.com/wiki/Combine"]}, "path": {"251": [[-1198, 409], [-1194, 412], [-1189, 409], [-1190, 414], [-1198, 413], [-1199, 409], [-1199, 408], [-1199, 414], [-1190, 409], [-1189, 408], [-1197, 408], [-1194, 411], [-1192, 410], [-1191, 412], [-1190, 411], [-1190, 410], [-1193, 410], [-1194, 410], [-1195, 410]]}, "center": {"251": [-1195, 409]}}, -{"id": 5988, "name": "Cupra Racing team", "description": "Is Cupra Racing team, with Horty_ and Baghera Jones", "links": {"website": ["https://www.twitch.tv/hortyunderscore", "https://www.twitch.tv/bagherajones", "https://www.youtube.com/c/BagheraJonesLive", "https://www.youtube.com/@HortyUnderscore", "https://www.cupraofficial.fr/"]}, "path": {"17-63": [[-402, 10], [-399, 8], [-398, 6], [-399, 2], [-401, 1], [-404, 0], [-405, 1], [-407, 2], [-408, 6], [-407, 7], [-406, 9]], "64-258": [[-404, 13], [-402, 13], [-400, 14], [-399, 17], [-399, 15], [-399, 18], [-400, 20], [-402, 21], [-404, 21], [-406, 20], [-407, 18], [-407, 16], [-405, 14]]}, "center": {"17-63": [-403, 5], "64-258": [-403, 17]}}, -{"id": 5989, "name": "Subway racing team", "description": "Is subway racing team(is not the real logo) and have two pilot: Misterv and TheoJuice", "links": {"website": ["https://www.subway.com/fr-fr", "https://www.youtube.com/user/mistervofficial", "https://www.youtube.com/@TheoJuice"]}, "path": {"17-63": [[-402, 32], [-399, 30], [-398, 28], [-399, 25], [-402, 22], [-405, 23], [-407, 24], [-408, 27], [-407, 29], [-406, 31], [-405, 32]], "64-258": [[-404, 34], [-401, 35], [-399, 38], [-399, 41], [-401, 42], [-402, 43], [-405, 43], [-406, 42], [-407, 41], [-407, 39], [-406, 37]]}, "center": {"17-63": [-403, 27], "64-258": [-403, 39]}}, -{"id": 5990, "name": "Overwach racing team", "description": "Is Overwach racing team with two pilot :Katsup and Le bouseuh", "links": {"website": ["https://overwatch.blizzard.com/fr-fr/", "https://www.youtube.com/@Kaatsup", "https://www.youtube.com/@LeBouseuh/videos", "https://fr.wikipedia.org/wiki/GP_Explorer"]}, "path": {"16-61": [[-420, 46], [-416, 49], [-413, 49], [-410, 45], [-410, 42], [-412, 40], [-417, 39], [-419, 41], [-420, 43]], "62-258": [[-416, 52], [-414, 52], [-412, 53], [-411, 55], [-411, 57], [-413, 58], [-413, 59], [-414, 61], [-417, 60], [-418, 59], [-419, 57], [-419, 55], [-418, 54]]}, "center": {"16-61": [-415, 44], "62-258": [-416, 56]}}, +{"id": 5988, "name": "Cupra Racing team", "description": "Is Cupra Racing team, with Horty_ and Baghera Jones", "links": {"website": ["https://www.twitch.tv/hortyunderscore", "https://www.twitch.tv/bagherajones", "https://www.youtube.com/c/BagheraJonesLive", "https://www.youtube.com/@HortyUnderscore", "https://www.cupraofficial.fr/"]}, "path": {"17-63": [[-402, 10], [-399, 8], [-398, 6], [-399, 2], [-401, 1], [-404, 0], [-405, 1], [-407, 2], [-408, 6], [-407, 7], [-406, 9]], "64-258, T": [[-404, 13], [-402, 13], [-400, 14], [-399, 17], [-399, 15], [-399, 18], [-400, 20], [-402, 21], [-404, 21], [-406, 20], [-407, 18], [-407, 16], [-405, 14]]}, "center": {"17-63": [-403, 5], "64-258, T": [-403, 17]}}, +{"id": 5989, "name": "Subway racing team", "description": "Is subway racing team(is not the real logo) and have two pilot: Misterv and TheoJuice", "links": {"website": ["https://www.subway.com/fr-fr", "https://www.youtube.com/user/mistervofficial", "https://www.youtube.com/@TheoJuice"]}, "path": {"17-63": [[-402, 32], [-399, 30], [-398, 28], [-399, 25], [-402, 22], [-405, 23], [-407, 24], [-408, 27], [-407, 29], [-406, 31], [-405, 32]], "64-258, T": [[-404, 34], [-401, 35], [-399, 38], [-399, 41], [-401, 42], [-402, 43], [-405, 43], [-406, 42], [-407, 41], [-407, 39], [-406, 37]]}, "center": {"17-63": [-403, 27], "64-258, T": [-403, 39]}}, +{"id": 5990, "name": "Overwach racing team", "description": "Is Overwach racing team with two pilot :Katsup and Le bouseuh", "links": {"website": ["https://overwatch.blizzard.com/fr-fr/", "https://www.youtube.com/@Kaatsup", "https://www.youtube.com/@LeBouseuh/videos", "https://fr.wikipedia.org/wiki/GP_Explorer"]}, "path": {"16-61": [[-420, 46], [-416, 49], [-413, 49], [-410, 45], [-410, 42], [-412, 40], [-417, 39], [-419, 41], [-420, 43]], "62-258, T": [[-416, 52], [-414, 52], [-412, 53], [-411, 55], [-411, 57], [-413, 58], [-413, 59], [-414, 61], [-417, 60], [-418, 59], [-419, 57], [-419, 55], [-418, 54]]}, "center": {"16-61": [-415, 44], "62-258, T": [-416, 56]}}, {"id": 5991, "name": "BLU ÜberCharged Heavy", "description": "The Official class avatars set made by Valve.\n\nThis work was created by the community of the German/English streamer ohnePixel Due to Counter-Strike 1.6 Logo has been Destoryed and even without the help of the TF2 subreddits.\n\nSadly this Artwork was replaced with Indie Alliance bench.", "links": {"website": ["https://www.twitch.tv/ohnepixel", "https://steamcommunity.com/games/TF2/Avatar/Preview/11"], "subreddit": ["ohnepixel"], "discord": ["ohnepixel"]}, "path": {"158-165": [[-769, 329], [-660, 329], [-660, 428], [-769, 428]]}, "center": {"158-165": [-714, 379]}}, -{"id": 5992, "name": "Chiron Solution", "description": "CHIRON is a French consulting and training company specializing in security and defense. Their customers are governmental organizations, private companies and individuals.\n\nChiron was created by \"Alexandre, Alex\" (a pseudonym), a former member of the 1er RPIMA (the French special force equivalent of the US Navy seal or british SAS).\n\nAfter two days of start-up r/place Alex invites this folower to go and defend the French flag, and afterwards tries to make a small logo of his startup. He succeeds", "links": {"website": ["https://chiron.solutions/fr/"]}, "path": {"207-258": [[942, -368], [942, -357], [944, -357], [944, -350], [980, -351], [980, -357], [968, -357], [969, -368]]}, "center": {"207-258": [958, -359]}}, -{"id": 5993, "name": "Nord VPN racing team", "description": "Is Nord vpn racing team. Nord vpn is historically a big sponsor of the chanel of two pilot: Pierre and Sylvain of the chanel Vilebrequin", "links": {"website": ["https://www.youtube.com/@Vilebrequin", "https://nordvpn.com/fr/creator/tech/?coupon=vilebrequin"], "subreddit": ["Vilebrequin"]}, "path": {"16-62": [[-432, 45], [-431, 47], [-429, 49], [-426, 49], [-423, 48], [-422, 45], [-423, 41], [-426, 39], [-429, 40], [-431, 41]], "63-258": [[-428, 52], [-426, 52], [-424, 53], [-423, 55], [-423, 57], [-424, 59], [-426, 60], [-428, 60], [-429, 59], [-430, 59], [-431, 57], [-431, 55], [-429, 52]]}, "center": {"16-62": [-427, 44], "63-258": [-427, 56]}}, -{"id": 5994, "name": "Wargaming racing team", "description": "Wargaming racing team (is the dev of world of tank...) have two pilot Amixem and his friend/employee étienne moustache", "links": {"website": ["https://www.youtube.com/@Amixem", "https://www.youtube.com/@etienne_moustache", "https://www.twitch.tv/etienne_moustache", "https://fr.wikipedia.org/wiki/GP_Explorer", "https://eu.wargaming.net/fr"]}, "path": {"16-61": [[-426, 60], [-423, 58], [-422, 56], [-422, 54], [-423, 52], [-425, 51], [-426, 50], [-428, 50], [-430, 51], [-431, 53], [-432, 56], [-431, 58], [-429, 59]], "62-258": [[-428, 63], [-426, 63], [-424, 64], [-423, 66], [-423, 68], [-424, 70], [-426, 70], [-426, 71], [-428, 71], [-429, 70], [-430, 70], [-430, 69], [-431, 68], [-431, 66], [-430, 64]]}, "center": {"16-61": [-427, 55], "62-258": [-427, 67]}}, -{"id": 5995, "name": "Rhinoshield racing team", "description": "Is the racing team of Rhinoshield racing team with two pilot: Maghla and Seb", "links": {"website": ["https://rhinoshield.fr/", "https://www.youtube.com/channel/UChzNfUfgk7sQ5VOdy2r1Jow", "https://www.youtube.com/@SEBFRIT", "https://www.twitch.tv/maghla", "https://fr.wikipedia.org/wiki/GP_Explorer"], "subreddit": ["OfficialRhinoShield"], "discord": ["Maghla"]}, "path": {"17-63": [[-414, 10], [-410, 6], [-410, 4], [-412, 1], [-414, 0], [-417, 1], [-419, 3], [-420, 6], [-418, 9]], "64-258": [[-414, 21], [-416, 21], [-418, 20], [-419, 18], [-419, 16], [-418, 14], [-417, 14], [-416, 13], [-414, 13], [-412, 14], [-411, 16], [-411, 18], [-412, 20], [-414, 21], [-416, 21]]}, "center": {"17-63": [-415, 5], "64-258": [-415, 17]}}, -{"id": 5996, "name": "Cheese Toppin", "description": "The Cheese Toppin is a block of cheese with eyes on top and no legs, unlike the others. The Cheese Toppin has a mouth which can be seen by taunting. This toppin is also the second one you will collect/save in a stage.\n\nThe Cheese Toppin, as well as other toppins, can be found trapped in cages throughout the levels in Pizza Tower. Upon saving a Toppin, the player is given 1000 points. After being saved, they will follow behind the player until the end of the level. Each Toppin will taunt alongside Peppino. \n\nToppins are counted as a collectible, and will run around the level's gate if the player beats the level with them. They will also be seen during the rank screen. When collected for the first time, each Toppin contributes 10 dollars to the player's savings. This money needs to be paid to Mr. Stick to enter boss fights. There are 95 Toppins in total, but only 86 of them are needed to beat the game.", "links": {"website": ["https://pizzatower.fandom.com/wiki/Toppins"], "subreddit": ["PizzaTower"]}, "path": {"249-252": [[-850, -270], [-844, -270], [-844, -265], [-850, -265]]}, "center": {"249-252": [-847, -267]}}, -{"id": 5997, "name": "United Ireland", "description": "r/placeEU had planned a map where Ireland and Northern Ireland were separated but people kept tearing down the border", "links": {}, "path": {"158-253": [[-328, 733], [-324, 736], [-321, 736], [-313, 733], [-309, 721], [-313, 717], [-317, 717], [-320, 721], [-323, 720], [-326, 722], [-326, 726], [-323, 728]]}, "center": {"158-253": [-317, 726]}}, -{"id": 5998, "name": "Sion Calabaza", "description": "A faithfull representation of the streamer SionAron as a pumpkin.", "links": {"website": ["https://www.twitch.tv/sionaron"]}, "path": {"250-258": [[-862, 594], [-862, 607], [-844, 607], [-844, 594]]}, "center": {"250-258": [-853, 601]}}, -{"id": 5999, "name": "Biyoo", "description": "A small dokkaebi named Biyoo, daughter of Kim Dokja, from the popular Korean web novel/manwha/webtoon, Omniscient Reader's Viewpoint by Sing Shong.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"]}, "path": {"250-258": [[1098, -853], [1100, -854], [1103, -854], [1104, -853], [1105, -852], [1105, -848], [1104, -848], [1103, -847], [1099, -847], [1098, -848], [1097, -848], [1097, -853]]}, "center": {"250-258": [1101, -850]}}, -{"id": 6000, "name": "Alping 1 racing team", "description": "Is Alping with Depielo and Manon this team is coaching by Esteban Ocon", "links": {"website": ["https://www.youtube.com/@manonlanza", "https://www.youtube.com/@DepieloF1", "https://www.youtube.com/@AlpineCars", "https://fr.wikipedia.org/wiki/GP_Explorer"], "subreddit": ["AlpineF1Team"]}, "path": {"16-60": [[-420, 56], [-419, 58], [-417, 59], [-414, 60], [-412, 59], [-411, 57], [-410, 54], [-411, 53], [-412, 51], [-413, 51], [-416, 50], [-417, 51], [-418, 51]], "61-258": [[-416, 63], [-412, 64], [-411, 66], [-411, 68], [-412, 70], [-414, 70], [-414, 71], [-417, 71], [-418, 70], [-419, 68], [-419, 66], [-418, 64], [-417, 63]]}, "center": {"16-60": [-415, 55], "61-258": [-415, 67]}}, -{"id": 6001, "name": "Metapod", "description": "A cute pokemon inspired by a butterfly cocoon, created near the earlier and later stages of its evolution line, Caterpie and Butterfree.", "links": {}, "path": {"221-258": [[-1304, 182], [-1304, 181], [-1305, 181], [-1305, 179], [-1306, 179], [-1306, 176], [-1304, 176], [-1304, 175], [-1303, 174], [-1303, 173], [-1304, 173], [-1304, 172], [-1305, 172], [-1305, 170], [-1306, 170], [-1306, 167], [-1305, 167], [-1305, 166], [-1305, 165], [-1306, 165], [-1306, 164], [-1309, 164], [-1309, 165], [-1311, 165], [-1311, 167], [-1313, 167], [-1313, 168], [-1314, 168], [-1314, 169], [-1315, 169], [-1315, 172], [-1316, 172], [-1316, 176], [-1315, 176], [-1315, 179], [-1314, 179], [-1314, 180], [-1313, 180], [-1313, 181], [-1312, 181], [-1312, 182], [-1310, 182], [-1310, 183], [-1305, 183], [-1304, 183]]}, "center": {"221-258": [-1310, 173]}}, -{"id": 6002, "name": "Caterpie", "description": "A cute caterpillar-inspired pokemon, created near the later stages of its evolution line, Metapod and Butterfree.", "links": {}, "path": {"217-258": [[-1215, 174], [-1216, 173], [-1217, 173], [-1217, 171], [-1217, 170], [-1218, 170], [-1218, 169], [-1219, 169], [-1219, 167], [-1220, 167], [-1220, 166], [-1223, 166], [-1223, 167], [-1224, 166], [-1224, 165], [-1225, 165], [-1226, 165], [-1226, 167], [-1227, 167], [-1227, 169], [-1228, 169], [-1228, 171], [-1229, 171], [-1229, 174], [-1228, 174], [-1228, 175], [-1227, 175], [-1227, 176], [-1226, 176], [-1226, 177], [-1226, 178], [-1225, 178], [-1225, 179], [-1224, 179], [-1224, 180], [-1223, 180], [-1223, 181], [-1222, 181], [-1222, 182], [-1218, 182], [-1218, 181], [-1217, 181], [-1216, 181], [-1216, 179], [-1215, 179], [-1215, 178], [-1214, 178], [-1214, 175], [-1214, 174]]}, "center": {"217-258": [-1223, 172]}}, -{"id": 6003, "name": "Madeline", "description": "Madeline is the protagonist of the 2018 video game Celeste, developed by Maddy Makes Games (later rebranded to Extremely OK Games).", "links": {"website": ["https://en.wikipedia.org/wiki/Madeline_(Celeste)"], "subreddit": ["celestegame", "IndieAlliance"], "discord": ["celeste", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"189-258": [[-742, 377], [-745, 381], [-745, 383], [-744, 384], [-744, 387], [-743, 388], [-741, 388], [-741, 389], [-739, 389], [-739, 385], [-738, 385], [-738, 379], [-740, 377]]}, "center": {"189-258": [-741, 382]}}, -{"id": 6004, "name": "Engineer", "description": "The Engineer, commonly known as Engi, is one of the playable characters in the game Deep Rock Galactic.", "links": {"website": ["https://deeprockgalactic.fandom.com/wiki/Engineer"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic", "IndieAlliance"], "discord": ["38DGdydTFb", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-258": [[-739, 400], [-741, 403], [-741, 409], [-742, 409], [-742, 417], [-739, 419], [-739, 425], [-737, 425], [-736, 424], [-730, 424], [-730, 420], [-728, 417], [-728, 406], [-730, 406], [-730, 404], [-734, 400]]}, "center": {"164-258": [-735, 413]}}, -{"id": 6005, "name": "APD-B317", "description": "APD-B317 (nicknamed Bosco) is an all-purpose drone that accompanies the player in the game Deep Rock Galactic.", "links": {"website": ["https://deeprockgalactic.fandom.com/wiki/Engineer"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic", "IndieAlliance"], "discord": ["38DGdydTFb", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"165-177": [[-740, 391], [-740, 393], [-739, 394], [-739, 400], [-737, 400], [-732, 395], [-732, 393], [-734, 393], [-734, 391]], "178-258": [[-737, 392], [-737, 400], [-735, 400], [-730, 395], [-730, 393], [-732, 393], [-732, 391], [-734, 391], [-735, 392]]}, "center": {"165-177": [-736, 395], "178-258": [-734, 395]}}, -{"id": 6006, "name": "Loot Bug", "description": "The Loot Bug is a creature from the game Deep Rock Galactic.", "links": {"website": ["https://deeprockgalactic.fandom.com/wiki/Loot_Bug"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic", "IndieAlliance"], "discord": ["38DGdydTFb", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"226-258": [[-738, 410], [-742, 413], [-742, 414], [-740, 416], [-737, 416], [-735, 418], [-732, 418], [-731, 419], [-730, 419], [-728, 417], [-731, 413], [-733, 413], [-736, 410]]}, "center": {"226-258": [-737, 413]}}, -{"id": 6007, "name": "Soul Knight", "description": "Soul Knight is a top-down shooter game for mobile and Nintendo Switch.", "links": {"website": ["https://play.google.com/store/apps/details?id=com.ChillyRoom.DungeonShooter"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"240-258": [[-736, 422], [-739, 425], [-741, 425], [-741, 426], [-740, 427], [-738, 427], [-737, 428], [-731, 428], [-731, 424], [-733, 422]]}, "center": {"240-258": [-735, 425]}}, -{"id": 6008, "name": "Niko", "description": "Niko is the main character in the indie video game OneShot.", "links": {"website": ["https://oneshot.fandom.com/wiki/Niko"], "subreddit": ["oneshot", "IndieAlliance"], "discord": ["5dQMafBgGZ", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"215-258": [[-739, 384], [-739, 391], [-737, 393], [-735, 393], [-733, 391], [-733, 384]]}, "center": {"215-258": [-736, 388]}}, -{"id": 6009, "name": "The Sun", "description": "The Sun is the name of the lightbulb held by protagonist Niko in the indie video game OneShot. Breaking the Sun will end the world.", "links": {"website": ["https://oneshot.fandom.com/wiki/The_Sun"], "subreddit": ["oneshot", "IndieAlliance"], "discord": ["5dQMafBgGZ", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"169-258": [[-725, 386], [-727, 388], [-727, 391], [-725, 393], [-722, 393], [-721, 394], [-719, 394], [-719, 392], [-720, 391], [-720, 388], [-722, 386]]}, "center": {"169-258": [-723, 390]}}, -{"id": 6010, "name": "Hyper Light drone", "description": "This is the healing drone that follows you on your adventures in the indie isometric action game Hyper Light Drifter, made by Heart Machine.", "links": {"website": ["https://store.steampowered.com/app/257850/Hyper_Light_Drifter/", "https://en.wikipedia.org/wiki/Hyper_Light_Drifter"], "subreddit": ["hyperlightdrifter", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"234-258": [[-732, 386], [-732, 387], [-734, 387], [-734, 390], [-732, 390], [-732, 391], [-730, 393], [-728, 391], [-728, 386]]}, "center": {"234-258": [-730, 388]}}, -{"id": 6011, "name": "Isaac", "description": "Isaac is the titular player character of the roguelike game The Binding of Isaac.", "links": {"website": ["https://bindingofisaacrebirth.fandom.com/wiki/Isaac"], "subreddit": ["bindingofisaac", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"165-258": [[-726, 406], [-728, 408], [-728, 417], [-726, 417], [-726, 420], [-720, 420], [-720, 417], [-718, 417], [-718, 414], [-719, 414], [-719, 408], [-721, 406]]}, "center": {"165-258": [-723, 411]}}, -{"id": 6012, "name": "Chompy", "description": "Chompy is an optional party member in the game Bug Fables.", "links": {"website": ["https://bugfables.fandom.com/wiki/Chompy"], "subreddit": ["BugFables", "IndieAlliance"], "discord": ["bsyVDUE", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"170-258": [[-726, 420], [-726, 425], [-727, 426], [-725, 428], [-718, 428], [-716, 426], [-716, 420]]}, "center": {"170-258": [-721, 424]}}, -{"id": 6013, "name": "Engineer", "description": "The Engineer is the player character in the game Factorio.", "links": {"website": ["https://wiki.factorio.com/Player"], "subreddit": ["factorio", "IndieAlliance"], "discord": ["factorio", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"166-258": [[-715, 398], [-715, 400], [-714, 400], [-714, 404], [-717, 404], [-719, 406], [-719, 418], [-716, 418], [-716, 420], [-715, 421], [-715, 425], [-713, 427], [-706, 427], [-706, 421], [-701, 421], [-701, 418], [-704, 416], [-704, 413], [-701, 415], [-699, 413], [-699, 412], [-701, 410], [-701, 405], [-703, 405], [-703, 404], [-707, 404], [-707, 400], [-706, 400], [-706, 398]]}, "center": {"166-258": [-711, 411]}}, +{"id": 5992, "name": "Chiron Solution", "description": "CHIRON is a French consulting and training company specializing in security and defense. Their customers are governmental organizations, private companies and individuals.\n\nChiron was created by \"Alexandre, Alex\" (a pseudonym), a former member of the 1er RPIMA (the French special force equivalent of the US Navy seal or british SAS).\n\nAfter two days of start-up r/place Alex invites this folower to go and defend the French flag, and afterwards tries to make a small logo of his startup. He succeeds", "links": {"website": ["https://chiron.solutions/fr/"]}, "path": {"207-258, T": [[942, -368], [942, -357], [944, -357], [944, -350], [980, -351], [980, -357], [968, -357], [969, -368]]}, "center": {"207-258, T": [958, -359]}}, +{"id": 5993, "name": "Nord VPN racing team", "description": "Is Nord vpn racing team. Nord vpn is historically a big sponsor of the chanel of two pilot: Pierre and Sylvain of the chanel Vilebrequin", "links": {"website": ["https://www.youtube.com/@Vilebrequin", "https://nordvpn.com/fr/creator/tech/?coupon=vilebrequin"], "subreddit": ["Vilebrequin"]}, "path": {"16-62": [[-432, 45], [-431, 47], [-429, 49], [-426, 49], [-423, 48], [-422, 45], [-423, 41], [-426, 39], [-429, 40], [-431, 41]], "63-258, T": [[-428, 52], [-426, 52], [-424, 53], [-423, 55], [-423, 57], [-424, 59], [-426, 60], [-428, 60], [-429, 59], [-430, 59], [-431, 57], [-431, 55], [-429, 52]]}, "center": {"16-62": [-427, 44], "63-258, T": [-427, 56]}}, +{"id": 5994, "name": "Wargaming racing team", "description": "Wargaming racing team (is the dev of world of tank...) have two pilot Amixem and his friend/employee étienne moustache", "links": {"website": ["https://www.youtube.com/@Amixem", "https://www.youtube.com/@etienne_moustache", "https://www.twitch.tv/etienne_moustache", "https://fr.wikipedia.org/wiki/GP_Explorer", "https://eu.wargaming.net/fr"]}, "path": {"16-61": [[-426, 60], [-423, 58], [-422, 56], [-422, 54], [-423, 52], [-425, 51], [-426, 50], [-428, 50], [-430, 51], [-431, 53], [-432, 56], [-431, 58], [-429, 59]], "62-258, T": [[-428, 63], [-426, 63], [-424, 64], [-423, 66], [-423, 68], [-424, 70], [-426, 70], [-426, 71], [-428, 71], [-429, 70], [-430, 70], [-430, 69], [-431, 68], [-431, 66], [-430, 64]]}, "center": {"16-61": [-427, 55], "62-258, T": [-427, 67]}}, +{"id": 5995, "name": "Rhinoshield racing team", "description": "Is the racing team of Rhinoshield racing team with two pilot: Maghla and Seb", "links": {"website": ["https://rhinoshield.fr/", "https://www.youtube.com/channel/UChzNfUfgk7sQ5VOdy2r1Jow", "https://www.youtube.com/@SEBFRIT", "https://www.twitch.tv/maghla", "https://fr.wikipedia.org/wiki/GP_Explorer"], "subreddit": ["OfficialRhinoShield"], "discord": ["Maghla"]}, "path": {"17-63": [[-414, 10], [-410, 6], [-410, 4], [-412, 1], [-414, 0], [-417, 1], [-419, 3], [-420, 6], [-418, 9]], "64-258, T": [[-414, 21], [-416, 21], [-418, 20], [-419, 18], [-419, 16], [-418, 14], [-417, 14], [-416, 13], [-414, 13], [-412, 14], [-411, 16], [-411, 18], [-412, 20], [-414, 21], [-416, 21]]}, "center": {"17-63": [-415, 5], "64-258, T": [-415, 17]}}, +{"id": 5996, "name": "Cheese Toppin", "description": "The Cheese Toppin is a block of cheese with eyes on top and no legs, unlike the others. The Cheese Toppin has a mouth which can be seen by taunting. This toppin is also the second one you will collect/save in a stage.\n\nThe Cheese Toppin, as well as other toppins, can be found trapped in cages throughout the levels in Pizza Tower. Upon saving a Toppin, the player is given 1000 points. After being saved, they will follow behind the player until the end of the level. Each Toppin will taunt alongside Peppino. \n\nToppins are counted as a collectible, and will run around the level's gate if the player beats the level with them. They will also be seen during the rank screen. When collected for the first time, each Toppin contributes 10 dollars to the player's savings. This money needs to be paid to Mr. Stick to enter boss fights. There are 95 Toppins in total, but only 86 of them are needed to beat the game.", "links": {"website": ["https://pizzatower.fandom.com/wiki/Toppins"], "subreddit": ["PizzaTower"]}, "path": {"249-252, T": [[-850, -270], [-844, -270], [-844, -265], [-850, -265]]}, "center": {"249-252, T": [-847, -267]}}, +{"id": 5997, "name": "United Ireland", "description": "r/placeEU had planned a map where Ireland and Northern Ireland were separated but people kept tearing down the border", "links": {}, "path": {"158-253, T": [[-328, 733], [-324, 736], [-321, 736], [-313, 733], [-309, 721], [-313, 717], [-317, 717], [-320, 721], [-323, 720], [-326, 722], [-326, 726], [-323, 728]]}, "center": {"158-253, T": [-317, 726]}}, +{"id": 5998, "name": "Sion Calabaza", "description": "A faithfull representation of the streamer SionAron as a pumpkin.", "links": {"website": ["https://www.twitch.tv/sionaron"]}, "path": {"250-258, T": [[-862, 594], [-862, 607], [-844, 607], [-844, 594]]}, "center": {"250-258, T": [-853, 601]}}, +{"id": 5999, "name": "Biyoo", "description": "A small dokkaebi named Biyoo, daughter of Kim Dokja, from the popular Korean web novel/manwha/webtoon, Omniscient Reader's Viewpoint by Sing Shong.", "links": {"website": ["https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154"], "subreddit": ["OmniscientReader"]}, "path": {"250-258, T": [[1098, -853], [1100, -854], [1103, -854], [1104, -853], [1105, -852], [1105, -848], [1104, -848], [1103, -847], [1099, -847], [1098, -848], [1097, -848], [1097, -853]]}, "center": {"250-258, T": [1101, -850]}}, +{"id": 6000, "name": "Alping 1 racing team", "description": "Is Alping with Depielo and Manon this team is coaching by Esteban Ocon", "links": {"website": ["https://www.youtube.com/@manonlanza", "https://www.youtube.com/@DepieloF1", "https://www.youtube.com/@AlpineCars", "https://fr.wikipedia.org/wiki/GP_Explorer"], "subreddit": ["AlpineF1Team"]}, "path": {"16-60": [[-420, 56], [-419, 58], [-417, 59], [-414, 60], [-412, 59], [-411, 57], [-410, 54], [-411, 53], [-412, 51], [-413, 51], [-416, 50], [-417, 51], [-418, 51]], "61-258, T": [[-416, 63], [-412, 64], [-411, 66], [-411, 68], [-412, 70], [-414, 70], [-414, 71], [-417, 71], [-418, 70], [-419, 68], [-419, 66], [-418, 64], [-417, 63]]}, "center": {"16-60": [-415, 55], "61-258, T": [-415, 67]}}, +{"id": 6001, "name": "Metapod", "description": "A cute pokemon inspired by a butterfly cocoon, created near the earlier and later stages of its evolution line, Caterpie and Butterfree.", "links": {}, "path": {"221-258, T": [[-1304, 182], [-1304, 181], [-1305, 181], [-1305, 179], [-1306, 179], [-1306, 176], [-1304, 176], [-1304, 175], [-1303, 174], [-1303, 173], [-1304, 173], [-1304, 172], [-1305, 172], [-1305, 170], [-1306, 170], [-1306, 167], [-1305, 167], [-1305, 166], [-1305, 165], [-1306, 165], [-1306, 164], [-1309, 164], [-1309, 165], [-1311, 165], [-1311, 167], [-1313, 167], [-1313, 168], [-1314, 168], [-1314, 169], [-1315, 169], [-1315, 172], [-1316, 172], [-1316, 176], [-1315, 176], [-1315, 179], [-1314, 179], [-1314, 180], [-1313, 180], [-1313, 181], [-1312, 181], [-1312, 182], [-1310, 182], [-1310, 183], [-1305, 183], [-1304, 183]]}, "center": {"221-258, T": [-1310, 173]}}, +{"id": 6002, "name": "Caterpie", "description": "A cute caterpillar-inspired pokemon, created near the later stages of its evolution line, Metapod and Butterfree.", "links": {}, "path": {"217-258, T": [[-1215, 174], [-1216, 173], [-1217, 173], [-1217, 171], [-1217, 170], [-1218, 170], [-1218, 169], [-1219, 169], [-1219, 167], [-1220, 167], [-1220, 166], [-1223, 166], [-1223, 167], [-1224, 166], [-1224, 165], [-1225, 165], [-1226, 165], [-1226, 167], [-1227, 167], [-1227, 169], [-1228, 169], [-1228, 171], [-1229, 171], [-1229, 174], [-1228, 174], [-1228, 175], [-1227, 175], [-1227, 176], [-1226, 176], [-1226, 177], [-1226, 178], [-1225, 178], [-1225, 179], [-1224, 179], [-1224, 180], [-1223, 180], [-1223, 181], [-1222, 181], [-1222, 182], [-1218, 182], [-1218, 181], [-1217, 181], [-1216, 181], [-1216, 179], [-1215, 179], [-1215, 178], [-1214, 178], [-1214, 175], [-1214, 174]]}, "center": {"217-258, T": [-1223, 172]}}, +{"id": 6003, "name": "Madeline", "description": "Madeline is the protagonist of the 2018 video game Celeste, developed by Maddy Makes Games (later rebranded to Extremely OK Games).", "links": {"website": ["https://en.wikipedia.org/wiki/Madeline_(Celeste)"], "subreddit": ["celestegame", "IndieAlliance"], "discord": ["celeste", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"189-258, T": [[-742, 377], [-745, 381], [-745, 383], [-744, 384], [-744, 387], [-743, 388], [-741, 388], [-741, 389], [-739, 389], [-739, 385], [-738, 385], [-738, 379], [-740, 377]]}, "center": {"189-258, T": [-741, 382]}}, +{"id": 6004, "name": "Engineer", "description": "The Engineer, commonly known as Engi, is one of the playable characters in the game Deep Rock Galactic.", "links": {"website": ["https://deeprockgalactic.fandom.com/wiki/Engineer"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic", "IndieAlliance"], "discord": ["38DGdydTFb", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-258, T": [[-739, 400], [-741, 403], [-741, 409], [-742, 409], [-742, 417], [-739, 419], [-739, 425], [-737, 425], [-736, 424], [-730, 424], [-730, 420], [-728, 417], [-728, 406], [-730, 406], [-730, 404], [-734, 400]]}, "center": {"164-258, T": [-735, 413]}}, +{"id": 6005, "name": "APD-B317", "description": "APD-B317 (nicknamed Bosco) is an all-purpose drone that accompanies the player in the game Deep Rock Galactic.", "links": {"website": ["https://deeprockgalactic.fandom.com/wiki/Engineer"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic", "IndieAlliance"], "discord": ["38DGdydTFb", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"165-177": [[-740, 391], [-740, 393], [-739, 394], [-739, 400], [-737, 400], [-732, 395], [-732, 393], [-734, 393], [-734, 391]], "178-258, T": [[-737, 392], [-737, 400], [-735, 400], [-730, 395], [-730, 393], [-732, 393], [-732, 391], [-734, 391], [-735, 392]]}, "center": {"165-177": [-736, 395], "178-258, T": [-734, 395]}}, +{"id": 6006, "name": "Loot Bug", "description": "The Loot Bug is a creature from the game Deep Rock Galactic.", "links": {"website": ["https://deeprockgalactic.fandom.com/wiki/Loot_Bug"], "subreddit": ["DeepRockGalacticPlace", "DeepRockGalactic", "IndieAlliance"], "discord": ["38DGdydTFb", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"226-258, T": [[-738, 410], [-742, 413], [-742, 414], [-740, 416], [-737, 416], [-735, 418], [-732, 418], [-731, 419], [-730, 419], [-728, 417], [-731, 413], [-733, 413], [-736, 410]]}, "center": {"226-258, T": [-737, 413]}}, +{"id": 6007, "name": "Soul Knight", "description": "Soul Knight is a top-down shooter game for mobile and Nintendo Switch.", "links": {"website": ["https://play.google.com/store/apps/details?id=com.ChillyRoom.DungeonShooter"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"240-258, T": [[-736, 422], [-739, 425], [-741, 425], [-741, 426], [-740, 427], [-738, 427], [-737, 428], [-731, 428], [-731, 424], [-733, 422]]}, "center": {"240-258, T": [-735, 425]}}, +{"id": 6008, "name": "Niko", "description": "Niko is the main character in the indie video game OneShot.", "links": {"website": ["https://oneshot.fandom.com/wiki/Niko"], "subreddit": ["oneshot", "IndieAlliance"], "discord": ["5dQMafBgGZ", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"215-258, T": [[-739, 384], [-739, 391], [-737, 393], [-735, 393], [-733, 391], [-733, 384]]}, "center": {"215-258, T": [-736, 388]}}, +{"id": 6009, "name": "The Sun", "description": "The Sun is the name of the lightbulb held by protagonist Niko in the indie video game OneShot. Breaking the Sun will end the world.", "links": {"website": ["https://oneshot.fandom.com/wiki/The_Sun"], "subreddit": ["oneshot", "IndieAlliance"], "discord": ["5dQMafBgGZ", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"169-258, T": [[-725, 386], [-727, 388], [-727, 391], [-725, 393], [-722, 393], [-721, 394], [-719, 394], [-719, 392], [-720, 391], [-720, 388], [-722, 386]]}, "center": {"169-258, T": [-723, 390]}}, +{"id": 6010, "name": "Hyper Light drone", "description": "This is the healing drone that follows you on your adventures in the indie isometric action game Hyper Light Drifter, made by Heart Machine.", "links": {"website": ["https://store.steampowered.com/app/257850/Hyper_Light_Drifter/", "https://en.wikipedia.org/wiki/Hyper_Light_Drifter"], "subreddit": ["hyperlightdrifter", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"234-258, T": [[-732, 386], [-732, 387], [-734, 387], [-734, 390], [-732, 390], [-732, 391], [-730, 393], [-728, 391], [-728, 386]]}, "center": {"234-258, T": [-730, 388]}}, +{"id": 6011, "name": "Isaac", "description": "Isaac is the titular player character of the roguelike game The Binding of Isaac.", "links": {"website": ["https://bindingofisaacrebirth.fandom.com/wiki/Isaac"], "subreddit": ["bindingofisaac", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"165-258, T": [[-726, 406], [-728, 408], [-728, 417], [-726, 417], [-726, 420], [-720, 420], [-720, 417], [-718, 417], [-718, 414], [-719, 414], [-719, 408], [-721, 406]]}, "center": {"165-258, T": [-723, 411]}}, +{"id": 6012, "name": "Chompy", "description": "Chompy is an optional party member in the game Bug Fables.", "links": {"website": ["https://bugfables.fandom.com/wiki/Chompy"], "subreddit": ["BugFables", "IndieAlliance"], "discord": ["bsyVDUE", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"170-258, T": [[-726, 420], [-726, 425], [-727, 426], [-725, 428], [-718, 428], [-716, 426], [-716, 420]]}, "center": {"170-258, T": [-721, 424]}}, +{"id": 6013, "name": "Engineer", "description": "The Engineer is the player character in the game Factorio.", "links": {"website": ["https://wiki.factorio.com/Player"], "subreddit": ["factorio", "IndieAlliance"], "discord": ["factorio", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"166-258, T": [[-715, 398], [-715, 400], [-714, 400], [-714, 404], [-717, 404], [-719, 406], [-719, 418], [-716, 418], [-716, 420], [-715, 421], [-715, 425], [-713, 427], [-706, 427], [-706, 421], [-701, 421], [-701, 418], [-704, 416], [-704, 413], [-701, 415], [-699, 413], [-699, 412], [-701, 410], [-701, 405], [-703, 405], [-703, 404], [-707, 404], [-707, 400], [-706, 400], [-706, 398]]}, "center": {"166-258, T": [-711, 411]}}, {"id": 6014, "name": "Strabby", "description": "Strabby is the first creature that the player encounters in the game Bugsnax. It resembles a strawberry.", "links": {"website": ["https://bugsnax.fandom.com/wiki/Strabby"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"253-258": [[-715, 398], [-718, 402], [-718, 403], [-716, 405], [-713, 405], [-713, 400]]}, "center": {"253-258": [-715, 402]}}, -{"id": 6015, "name": "Gunpowder Barrel", "description": "A Gunpowder Barrel, commonly known as a Keg, is an explosive item in the game Sea of Thieves.", "links": {"website": ["https://seaofthieves.fandom.com/wiki/Gunpowder_Barrel"], "subreddit": ["Seaofthieves", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"165-258": [[-700, 410], [-701, 412], [-705, 412], [-705, 416], [-700, 420], [-698, 420], [-696, 418], [-691, 418], [-688, 415], [-688, 413], [-694, 410]]}, "center": {"165-258": [-697, 414]}}, -{"id": 6016, "name": "Lamb", "description": "The Lamb is the protagonist of the game Cult of the Lamb.", "links": {"website": ["https://cult-of-the-lamb.fandom.com/wiki/The_Lamb"], "subreddit": ["CultOfTheLamb", "IndieAlliance"], "discord": ["NHmc6Jpt", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"163-258": [[-701, 395], [-704, 398], [-704, 399], [-706, 401], [-706, 402], [-704, 402], [-703, 403], [-703, 409], [-701, 411], [-700, 411], [-699, 412], [-695, 412], [-694, 411], [-693, 411], [-691, 409], [-691, 403], [-690, 402], [-688, 402], [-688, 401], [-690, 399], [-690, 398], [-693, 395], [-695, 395], [-695, 393], [-699, 393], [-699, 395]]}, "center": {"163-258": [-697, 402]}}, -{"id": 6017, "name": "Monika", "description": "Monika is a main character and the poster girl of Doki Doki Literature Club!. She is the President of the Literature Club and is the game's driving force, directing club members to write poems until the club festival, which enables and develops the characters and story.", "links": {"website": ["https://doki-doki-literature-club.fandom.com/wiki/Monika_(DDLC)"], "subreddit": ["DDLC", "IndieAlliance"], "discord": ["ddlc", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"184-190": [[-745, 379], [-745, 385], [-746, 386], [-746, 389], [-738, 389], [-736, 387], [-736, 385], [-740, 379]], "191-258": [[-703, 385], [-703, 389], [-704, 389], [-704, 393], [-706, 395], [-706, 396], [-704, 398], [-703, 397], [-703, 396], [-698, 396], [-698, 394], [-696, 394], [-696, 396], [-693, 396], [-693, 392], [-692, 391], [-692, 390], [-693, 389], [-693, 385]]}, "center": {"184-190": [-741, 385], "191-258": [-698, 390]}}, -{"id": 6018, "name": "Fish bowl", "description": "This fish bowl is from r/PlaceFishCult (a.k.a. r/FSSH), a subreddit focused on placing fish on r/place.", "links": {"subreddit": ["PlaceFishCult", "IndieAlliance"], "discord": ["XdMxvvcP", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"162-258": [[-695, 416], [-699, 420], [-699, 425], [-694, 429], [-691, 429], [-686, 425], [-686, 420], [-690, 416]]}, "center": {"162-258": [-692, 422]}}, -{"id": 6019, "name": "Spooky", "description": "Spooky is the main antagonist of the game Spooky's Jump Scare Mansion.", "links": {"website": ["https://spookys-jump-scare-mansion.fandom.com/wiki/Spooky"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"171-258": [[-689, 390], [-691, 392], [-692, 394], [-692, 397], [-691, 398], [-691, 402], [-693, 404], [-693, 407], [-691, 409], [-681, 404], [-681, 399], [-680, 398], [-680, 394], [-681, 393], [-681, 392], [-683, 390]]}, "center": {"171-258": [-686, 396]}}, -{"id": 6020, "name": "White Face", "description": "White Face is the main antagonist of the game IMSCARED.", "links": {"website": ["https://imscared.fandom.com/wiki/White_Face"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"201-258": [[-687, 386], [-689, 388], [-689, 391], [-683, 391], [-682, 392], [-681, 391], [-681, 388], [-683, 386]]}, "center": {"201-258": [-685, 388]}}, -{"id": 6021, "name": "V1", "description": "V1 is the player character in the game ULTRAKILL.", "links": {"website": ["https://ultrakill.fandom.com/wiki/V1"], "subreddit": ["ultrakill", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"163-245": [[-691, 403], [-691, 409], [-692, 410], [-692, 411], [-688, 411], [-688, 413], [-686, 420], [-684, 422], [-684, 425], [-682, 427], [-672, 427], [-672, 423], [-671, 422], [-671, 419], [-675, 415], [-675, 414], [-671, 414], [-670, 415], [-667, 412], [-667, 404], [-672, 404], [-672, 401], [-675, 398], [-679, 398], [-681, 400], [-681, 404], [-685, 404], [-686, 403]], "246-258": [[-679, 398], [-681, 400], [-681, 404], [-685, 404], [-686, 403], [-691, 403], [-691, 409], [-692, 410], [-687, 414], [-687, 416], [-685, 419], [-682, 419], [-681, 420], [-677, 420], [-675, 424], [-674, 424], [-671, 421], [-671, 420], [-673, 417], [-673, 416], [-671, 414], [-670, 415], [-668, 412], [-667, 409], [-667, 404], [-672, 404], [-672, 401], [-675, 398]]}, "center": {"163-245": [-681, 411], "246-258": [-679, 411]}}, -{"id": 6022, "name": "The Conductor", "description": "The Conductor is the player character in the game The Final Station.", "links": {"website": ["https://thefinalstation.fandom.com/wiki/The_Conductor"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"236-258": [[-682, 419], [-684, 421], [-684, 424], [-685, 425], [-685, 426], [-682, 429], [-675, 429], [-675, 426], [-673, 426], [-673, 425], [-675, 423], [-675, 421], [-677, 419]]}, "center": {"236-258": [-679, 424]}}, -{"id": 6023, "name": "Moth", "description": "Moth is the default character for new players in the game Sky: Children of the Light.", "links": {"website": ["https://sky-children-of-the-light.fandom.com/wiki/Creatures#Sky_Children"], "subreddit": ["skyplace", "SkyGame", "SkyChildrenOfLight", "IndieAlliance"], "discord": ["f3rxny6Ujq", "thatskygame", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"170-258": [[-678, 385], [-681, 388], [-681, 390], [-680, 391], [-680, 399], [-672, 399], [-670, 397], [-670, 394], [-672, 392], [-673, 392], [-673, 388]]}, "center": {"170-258": [-676, 395]}}, -{"id": 6024, "name": "Red Gnome", "description": "Red Gnomes are characters from the game Everhood.", "links": {"website": ["https://everhood.fandom.com/wiki/Gnomes"], "subreddit": ["Everhood", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"185-258": [[-668, 387], [-671, 393], [-671, 397], [-673, 399], [-673, 405], [-669, 405], [-669, 409], [-668, 409], [-665, 407], [-664, 404], [-664, 401], [-663, 400]]}, "center": {"185-258": [-668, 400]}}, -{"id": 6025, "name": "Rivulet", "description": "Rivulet is a playable Slugcat from the indie game Rain World. It is part of the Downpour DLC.", "links": {"website": ["https://rainworld.miraheze.org/wiki/Rivulet"], "subreddit": ["rainworld", "IndieAlliance"], "discord": ["rainworld", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-258": [[-665, 392], [-665, 396], [-666, 396], [-666, 397], [-665, 398], [-665, 400], [-664, 401], [-664, 403], [-659, 403], [-658, 404], [-657, 403], [-657, 399], [-655, 399], [-655, 398], [-658, 392], [-660, 394], [-662, 394], [-664, 392]]}, "center": {"164-258": [-661, 399]}}, -{"id": 6026, "name": "Looks to the Moon", "description": "Looks to the Moon is a character from the indie game Rain World.", "links": {"website": ["https://rainworld.miraheze.org/wiki/Looks_to_the_Moon_(character)"], "subreddit": ["rainworld", "IndieAlliance"], "discord": ["rainworld", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-258": [[-665, 400], [-665, 404], [-666, 404], [-666, 408], [-667, 408], [-667, 417], [-668, 418], [-664, 420], [-664, 423], [-662, 423], [-661, 422], [-659, 422], [-658, 423], [-654, 418], [-657, 415], [-653, 411], [-653, 410], [-656, 410], [-656, 399], [-658, 399], [-658, 402], [-663, 402], [-663, 400]]}, "center": {"164-258": [-661, 411]}}, -{"id": 6027, "name": "Gail", "description": "Gail is the protagonist of the game Phoenotopia.", "links": {"website": ["https://phoenotopia.fandom.com/wiki/Gail"], "subreddit": ["phoenotopia", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"171-258": [[-663, 379], [-663, 381], [-666, 384], [-666, 390], [-667, 391], [-667, 392], [-664, 392], [-664, 393], [-662, 395], [-660, 395], [-657, 392], [-655, 392], [-655, 391], [-656, 390], [-656, 384], [-661, 379]]}, "center": {"171-258": [-661, 387]}}, -{"id": 6028, "name": "Gail", "description": "Captain Viridian is the player character from the game VVVVVV.", "links": {"website": ["https://vvvvvv.fandom.com/wiki/Viridian"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"228-258": [[-656, 374], [-659, 377], [-659, 380], [-657, 382], [-654, 382], [-652, 380], [-652, 377], [-655, 374]]}, "center": {"228-258": [-655, 378]}}, -{"id": 6029, "name": "Grimm", "description": "Grimm is a character from the game Hollow Knight.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Grimm"], "subreddit": ["HKPlace", "IndieAlliance"], "discord": ["xHQmkAYN8G", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-206": [[-654, 393], [-656, 395], [-656, 398], [-658, 398], [-658, 399], [-657, 400], [-657, 404], [-656, 405], [-656, 409], [-653, 409], [-653, 413], [-654, 414], [-654, 421], [-657, 425], [-657, 426], [-655, 428], [-649, 428], [-649, 427], [-647, 427], [-642, 423], [-642, 419], [-646, 414], [-647, 411], [-647, 409], [-645, 409], [-641, 404], [-643, 401], [-644, 401], [-644, 396], [-646, 393], [-648, 393], [-648, 395], [-652, 395], [-652, 393]], "207-258": [[-653, 392], [-656, 395], [-656, 398], [-658, 398], [-658, 400], [-657, 400], [-657, 404], [-656, 405], [-656, 409], [-653, 409], [-653, 413], [-654, 414], [-654, 416], [-653, 416], [-651, 414], [-650, 414], [-648, 416], [-646, 414], [-646, 412], [-647, 411], [-647, 409], [-645, 409], [-641, 404], [-643, 401], [-644, 401], [-644, 396], [-647, 392], [-648, 392], [-648, 395], [-652, 395], [-652, 392]]}, "center": {"164-206": [-650, 402], "207-258": [-650, 402]}}, -{"id": 6030, "name": "SOUL", "description": "The SOUL is a player-controlled heart that is central to the plot and game mechanics of the games Undertale and Deltarune.", "links": {"website": ["https://undertale.fandom.com/wiki/SOUL"], "subreddit": ["Undertale", "IndieAlliance"], "discord": ["undertale", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"214-258": [[-657, 381], [-657, 384], [-654, 387], [-651, 384], [-651, 381]]}, "center": {"214-258": [-654, 383]}}, -{"id": 6031, "name": "Flowey", "description": "Flowey is one of the main antagonists in the game Undertale.", "links": {"website": ["https://undertale.fandom.com/wiki/Flowey"], "subreddit": ["Undertale", "IndieAlliance"], "discord": ["undertale", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"200-258": [[-661, 421], [-663, 423], [-663, 424], [-660, 428], [-657, 424], [-657, 423], [-659, 421]]}, "center": {"200-258": [-660, 424]}}, -{"id": 6032, "name": "The Spiral Heart", "description": "The Spiral Heart is the player character from the game GRIME.", "links": {"website": ["https://en.wikipedia.org/wiki/Grime_(video_game)"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"207-258": [[-645, 386], [-648, 389], [-648, 391], [-644, 398], [-642, 399], [-639, 399], [-639, 386]]}, "center": {"207-258": [-643, 391]}}, -{"id": 6033, "name": "Carp", "description": "Carp is one of the party members in the game series LISA.", "links": {"website": ["https://lisa-rpg.fandom.com/wiki/Carp"], "subreddit": ["lisathepainfulrpg", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"208-258": [[-643, 405], [-647, 409], [-647, 410], [-645, 410], [-645, 415], [-643, 419], [-642, 419], [-639, 416], [-639, 407], [-641, 405]]}, "center": {"208-258": [-642, 414]}}, -{"id": 6034, "name": "Richard mask", "description": "The Richard mask is the default mask worn by protagonist Jacket in the game Hotline Miami.", "links": {"website": ["https://hotlinemiami.fandom.com/wiki/Richard_Mask"], "subreddit": ["hotlinemiami", "IndieAlliance"], "discord": ["6gawWXyU", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"210-258": [[-651, 374], [-651, 378], [-652, 379], [-652, 385], [-653, 386], [-653, 388], [-649, 393], [-647, 393], [-647, 390], [-645, 387], [-641, 387], [-641, 379], [-645, 374]]}, "center": {"210-258": [-646, 382]}}, +{"id": 6015, "name": "Gunpowder Barrel", "description": "A Gunpowder Barrel, commonly known as a Keg, is an explosive item in the game Sea of Thieves.", "links": {"website": ["https://seaofthieves.fandom.com/wiki/Gunpowder_Barrel"], "subreddit": ["Seaofthieves", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"165-258, T": [[-700, 410], [-701, 412], [-705, 412], [-705, 416], [-700, 420], [-698, 420], [-696, 418], [-691, 418], [-688, 415], [-688, 413], [-694, 410]]}, "center": {"165-258, T": [-697, 414]}}, +{"id": 6016, "name": "Lamb", "description": "The Lamb is the protagonist of the game Cult of the Lamb.", "links": {"website": ["https://cult-of-the-lamb.fandom.com/wiki/The_Lamb"], "subreddit": ["CultOfTheLamb", "IndieAlliance"], "discord": ["NHmc6Jpt", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"163-258, T": [[-701, 395], [-704, 398], [-704, 399], [-706, 401], [-706, 402], [-704, 402], [-703, 403], [-703, 409], [-701, 411], [-700, 411], [-699, 412], [-695, 412], [-694, 411], [-693, 411], [-691, 409], [-691, 403], [-690, 402], [-688, 402], [-688, 401], [-690, 399], [-690, 398], [-693, 395], [-695, 395], [-695, 393], [-699, 393], [-699, 395]]}, "center": {"163-258, T": [-697, 402]}}, +{"id": 6017, "name": "Monika", "description": "Monika is a main character and the poster girl of Doki Doki Literature Club!. She is the President of the Literature Club and is the game's driving force, directing club members to write poems until the club festival, which enables and develops the characters and story.", "links": {"website": ["https://doki-doki-literature-club.fandom.com/wiki/Monika_(DDLC)"], "subreddit": ["DDLC", "IndieAlliance"], "discord": ["ddlc", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"184-190": [[-745, 379], [-745, 385], [-746, 386], [-746, 389], [-738, 389], [-736, 387], [-736, 385], [-740, 379]], "191-258, T": [[-703, 385], [-703, 389], [-704, 389], [-704, 393], [-706, 395], [-706, 396], [-704, 398], [-703, 397], [-703, 396], [-698, 396], [-698, 394], [-696, 394], [-696, 396], [-693, 396], [-693, 392], [-692, 391], [-692, 390], [-693, 389], [-693, 385]]}, "center": {"184-190": [-741, 385], "191-258, T": [-698, 390]}}, +{"id": 6018, "name": "Fish bowl", "description": "This fish bowl is from r/PlaceFishCult (a.k.a. r/FSSH), a subreddit focused on placing fish on r/place.", "links": {"subreddit": ["PlaceFishCult", "IndieAlliance"], "discord": ["XdMxvvcP", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"162-258, T": [[-695, 416], [-699, 420], [-699, 425], [-694, 429], [-691, 429], [-686, 425], [-686, 420], [-690, 416]]}, "center": {"162-258, T": [-692, 422]}}, +{"id": 6019, "name": "Spooky", "description": "Spooky is the main antagonist of the game Spooky's Jump Scare Mansion.", "links": {"website": ["https://spookys-jump-scare-mansion.fandom.com/wiki/Spooky"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"171-258, T": [[-689, 390], [-691, 392], [-692, 394], [-692, 397], [-691, 398], [-691, 402], [-693, 404], [-693, 407], [-691, 409], [-681, 404], [-681, 399], [-680, 398], [-680, 394], [-681, 393], [-681, 392], [-683, 390]]}, "center": {"171-258, T": [-686, 396]}}, +{"id": 6020, "name": "White Face", "description": "White Face is the main antagonist of the game IMSCARED.", "links": {"website": ["https://imscared.fandom.com/wiki/White_Face"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"201-258, T": [[-687, 386], [-689, 388], [-689, 391], [-683, 391], [-682, 392], [-681, 391], [-681, 388], [-683, 386]]}, "center": {"201-258, T": [-685, 388]}}, +{"id": 6021, "name": "V1", "description": "V1 is the player character in the game ULTRAKILL.", "links": {"website": ["https://ultrakill.fandom.com/wiki/V1"], "subreddit": ["ultrakill", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"163-245": [[-691, 403], [-691, 409], [-692, 410], [-692, 411], [-688, 411], [-688, 413], [-686, 420], [-684, 422], [-684, 425], [-682, 427], [-672, 427], [-672, 423], [-671, 422], [-671, 419], [-675, 415], [-675, 414], [-671, 414], [-670, 415], [-667, 412], [-667, 404], [-672, 404], [-672, 401], [-675, 398], [-679, 398], [-681, 400], [-681, 404], [-685, 404], [-686, 403]], "246-258, T": [[-679, 398], [-681, 400], [-681, 404], [-685, 404], [-686, 403], [-691, 403], [-691, 409], [-692, 410], [-687, 414], [-687, 416], [-685, 419], [-682, 419], [-681, 420], [-677, 420], [-675, 424], [-674, 424], [-671, 421], [-671, 420], [-673, 417], [-673, 416], [-671, 414], [-670, 415], [-668, 412], [-667, 409], [-667, 404], [-672, 404], [-672, 401], [-675, 398]]}, "center": {"163-245": [-681, 411], "246-258, T": [-679, 411]}}, +{"id": 6022, "name": "The Conductor", "description": "The Conductor is the player character in the game The Final Station.", "links": {"website": ["https://thefinalstation.fandom.com/wiki/The_Conductor"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"236-258, T": [[-682, 419], [-684, 421], [-684, 424], [-685, 425], [-685, 426], [-682, 429], [-675, 429], [-675, 426], [-673, 426], [-673, 425], [-675, 423], [-675, 421], [-677, 419]]}, "center": {"236-258, T": [-679, 424]}}, +{"id": 6023, "name": "Moth", "description": "Moth is the default character for new players in the game Sky: Children of the Light.", "links": {"website": ["https://sky-children-of-the-light.fandom.com/wiki/Creatures#Sky_Children"], "subreddit": ["skyplace", "SkyGame", "SkyChildrenOfLight", "IndieAlliance"], "discord": ["f3rxny6Ujq", "thatskygame", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"170-258, T": [[-678, 385], [-681, 388], [-681, 390], [-680, 391], [-680, 399], [-672, 399], [-670, 397], [-670, 394], [-672, 392], [-673, 392], [-673, 388]]}, "center": {"170-258, T": [-676, 395]}}, +{"id": 6024, "name": "Red Gnome", "description": "Red Gnomes are characters from the game Everhood.", "links": {"website": ["https://everhood.fandom.com/wiki/Gnomes"], "subreddit": ["Everhood", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"185-258, T": [[-668, 387], [-671, 393], [-671, 397], [-673, 399], [-673, 405], [-669, 405], [-669, 409], [-668, 409], [-665, 407], [-664, 404], [-664, 401], [-663, 400]]}, "center": {"185-258, T": [-668, 400]}}, +{"id": 6025, "name": "Rivulet", "description": "Rivulet is a playable Slugcat from the indie game Rain World. It is part of the Downpour DLC.", "links": {"website": ["https://rainworld.miraheze.org/wiki/Rivulet"], "subreddit": ["rainworld", "IndieAlliance"], "discord": ["rainworld", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-258, T": [[-665, 392], [-665, 396], [-666, 396], [-666, 397], [-665, 398], [-665, 400], [-664, 401], [-664, 403], [-659, 403], [-658, 404], [-657, 403], [-657, 399], [-655, 399], [-655, 398], [-658, 392], [-660, 394], [-662, 394], [-664, 392]]}, "center": {"164-258, T": [-661, 399]}}, +{"id": 6026, "name": "Looks to the Moon", "description": "Looks to the Moon is a character from the indie game Rain World.", "links": {"website": ["https://rainworld.miraheze.org/wiki/Looks_to_the_Moon_(character)"], "subreddit": ["rainworld", "IndieAlliance"], "discord": ["rainworld", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-258, T": [[-665, 400], [-665, 404], [-666, 404], [-666, 408], [-667, 408], [-667, 417], [-668, 418], [-664, 420], [-664, 423], [-662, 423], [-661, 422], [-659, 422], [-658, 423], [-654, 418], [-657, 415], [-653, 411], [-653, 410], [-656, 410], [-656, 399], [-658, 399], [-658, 402], [-663, 402], [-663, 400]]}, "center": {"164-258, T": [-661, 411]}}, +{"id": 6027, "name": "Gail", "description": "Gail is the protagonist of the game Phoenotopia.", "links": {"website": ["https://phoenotopia.fandom.com/wiki/Gail"], "subreddit": ["phoenotopia", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"171-258, T": [[-663, 379], [-663, 381], [-666, 384], [-666, 390], [-667, 391], [-667, 392], [-664, 392], [-664, 393], [-662, 395], [-660, 395], [-657, 392], [-655, 392], [-655, 391], [-656, 390], [-656, 384], [-661, 379]]}, "center": {"171-258, T": [-661, 387]}}, +{"id": 6028, "name": "Gail", "description": "Captain Viridian is the player character from the game VVVVVV.", "links": {"website": ["https://vvvvvv.fandom.com/wiki/Viridian"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"228-258, T": [[-656, 374], [-659, 377], [-659, 380], [-657, 382], [-654, 382], [-652, 380], [-652, 377], [-655, 374]]}, "center": {"228-258, T": [-655, 378]}}, +{"id": 6029, "name": "Grimm", "description": "Grimm is a character from the game Hollow Knight.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Grimm"], "subreddit": ["HKPlace", "IndieAlliance"], "discord": ["xHQmkAYN8G", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"164-206": [[-654, 393], [-656, 395], [-656, 398], [-658, 398], [-658, 399], [-657, 400], [-657, 404], [-656, 405], [-656, 409], [-653, 409], [-653, 413], [-654, 414], [-654, 421], [-657, 425], [-657, 426], [-655, 428], [-649, 428], [-649, 427], [-647, 427], [-642, 423], [-642, 419], [-646, 414], [-647, 411], [-647, 409], [-645, 409], [-641, 404], [-643, 401], [-644, 401], [-644, 396], [-646, 393], [-648, 393], [-648, 395], [-652, 395], [-652, 393]], "207-258, T": [[-653, 392], [-656, 395], [-656, 398], [-658, 398], [-658, 400], [-657, 400], [-657, 404], [-656, 405], [-656, 409], [-653, 409], [-653, 413], [-654, 414], [-654, 416], [-653, 416], [-651, 414], [-650, 414], [-648, 416], [-646, 414], [-646, 412], [-647, 411], [-647, 409], [-645, 409], [-641, 404], [-643, 401], [-644, 401], [-644, 396], [-647, 392], [-648, 392], [-648, 395], [-652, 395], [-652, 392]]}, "center": {"164-206": [-650, 402], "207-258, T": [-650, 402]}}, +{"id": 6030, "name": "SOUL", "description": "The SOUL is a player-controlled heart that is central to the plot and game mechanics of the games Undertale and Deltarune.", "links": {"website": ["https://undertale.fandom.com/wiki/SOUL"], "subreddit": ["Undertale", "IndieAlliance"], "discord": ["undertale", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"214-258, T": [[-657, 381], [-657, 384], [-654, 387], [-651, 384], [-651, 381]]}, "center": {"214-258, T": [-654, 383]}}, +{"id": 6031, "name": "Flowey", "description": "Flowey is one of the main antagonists in the game Undertale.", "links": {"website": ["https://undertale.fandom.com/wiki/Flowey"], "subreddit": ["Undertale", "IndieAlliance"], "discord": ["undertale", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"200-258, T": [[-661, 421], [-663, 423], [-663, 424], [-660, 428], [-657, 424], [-657, 423], [-659, 421]]}, "center": {"200-258, T": [-660, 424]}}, +{"id": 6032, "name": "The Spiral Heart", "description": "The Spiral Heart is the player character from the game GRIME.", "links": {"website": ["https://en.wikipedia.org/wiki/Grime_(video_game)"], "subreddit": ["IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"207-258, T": [[-645, 386], [-648, 389], [-648, 391], [-644, 398], [-642, 399], [-639, 399], [-639, 386]]}, "center": {"207-258, T": [-643, 391]}}, +{"id": 6033, "name": "Carp", "description": "Carp is one of the party members in the game series LISA.", "links": {"website": ["https://lisa-rpg.fandom.com/wiki/Carp"], "subreddit": ["lisathepainfulrpg", "IndieAlliance"], "discord": ["FmDZQsjkBW", "GfSmdgha"]}, "path": {"208-258, T": [[-643, 405], [-647, 409], [-647, 410], [-645, 410], [-645, 415], [-643, 419], [-642, 419], [-639, 416], [-639, 407], [-641, 405]]}, "center": {"208-258, T": [-642, 414]}}, +{"id": 6034, "name": "Richard mask", "description": "The Richard mask is the default mask worn by protagonist Jacket in the game Hotline Miami.", "links": {"website": ["https://hotlinemiami.fandom.com/wiki/Richard_Mask"], "subreddit": ["hotlinemiami", "IndieAlliance"], "discord": ["6gawWXyU", "FmDZQsjkBW", "GfSmdgha"]}, "path": {"210-258, T": [[-651, 374], [-651, 378], [-652, 379], [-652, 385], [-653, 386], [-653, 388], [-649, 393], [-647, 393], [-647, 390], [-645, 387], [-641, 387], [-641, 379], [-645, 374]]}, "center": {"210-258, T": [-646, 382]}}, {"id": 6035, "name": "r/place Logo", "description": "Logo of r/place", "links": {"subreddit": ["place"]}, "path": {"183-196": [[-1325, -674], [-1319, -674], [-1319, -668], [-1325, -668]]}, "center": {"183-196": [-1322, -671]}}, -{"id": 6036, "name": "Diamond pickaxe", "description": "The diamond pickaxe is an item from the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Pickaxe"]}, "path": {"218-258": [[-1306, -926], [-1308, -924], [-1309, -922], [-1309, -918], [-1307, -916], [-1305, -918], [-1305, -921], [-1295, -911], [-1293, -911], [-1293, -913], [-1303, -923], [-1300, -923], [-1298, -925], [-1300, -927], [-1304, -927]]}, "center": {"218-258": [-1305, -923]}}, -{"id": 6037, "name": "Phe Game's Logo", "description": "This is the logo of Phe Game (Phê Game). Phe Game is one of the leading game content creators Youtubers in Vietnam. As a professional and high-quality team in the field of gaming content, Phe Game is proud to be a media partner for many big brands such as Google, Sony, Asus, Gigabyte and VNG. At Phe Game goal is to spreading the inspiration and passion for Games to all global audiences. Even though the logo lasted for the the rest of the event, it is appeared to be attacked multiple times, turning the letter P to B.", "links": {"website": ["https://www.youtube.com/@daylaphegame/about"], "discord": ["phegame"]}, "path": {"199-258": [[608, 642], [615, 642], [615, 650], [608, 650]]}, "center": {"199-258": [612, 646]}}, +{"id": 6036, "name": "Diamond pickaxe", "description": "The diamond pickaxe is an item from the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Pickaxe"]}, "path": {"218-258, T": [[-1306, -926], [-1308, -924], [-1309, -922], [-1309, -918], [-1307, -916], [-1305, -918], [-1305, -921], [-1295, -911], [-1293, -911], [-1293, -913], [-1303, -923], [-1300, -923], [-1298, -925], [-1300, -927], [-1304, -927]]}, "center": {"218-258, T": [-1305, -923]}}, +{"id": 6037, "name": "Phe Game's Logo", "description": "This is the logo of Phe Game (Phê Game). Phe Game is one of the leading game content creators Youtubers in Vietnam. As a professional and high-quality team in the field of gaming content, Phe Game is proud to be a media partner for many big brands such as Google, Sony, Asus, Gigabyte and VNG. At Phe Game goal is to spreading the inspiration and passion for Games to all global audiences. Even though the logo lasted for the the rest of the event, it is appeared to be attacked multiple times, turning the letter P to B.", "links": {"website": ["https://www.youtube.com/@daylaphegame/about"], "discord": ["phegame"]}, "path": {"199-258, T": [[608, 642], [615, 642], [615, 650], [608, 650]]}, "center": {"199-258, T": [612, 646]}}, {"id": 6038, "name": "Ramona Flowers", "description": "A sprite of Ramona Flowers from Scott Pilgrim Vs. The World: The Game", "links": {"subreddit": ["ScottPilgrim"]}, "path": {"224-234": [[1471, 240], [1490, 240], [1490, 254], [1489, 254], [1488, 253], [1487, 254], [1476, 254], [1475, 253], [1474, 254], [1473, 254], [1473, 253], [1472, 252], [1471, 252], [1471, 251], [1472, 250], [1472, 244], [1471, 244]]}, "center": {"224-234": [1481, 247]}}, -{"id": 6039, "name": "\"Devilline Symbol\"", "description": "It is a symbol that is on the cover ax of the Brazilian comic called \"Devilline\"", "links": {"website": ["https://tapas.io/episode/2336042"], "discord": ["GWtch5m4"]}, "path": {"228-258": [[152, 406], [160, 406], [160, 410], [161, 410], [161, 415], [152, 415]]}, "center": {"228-258": [156, 410]}}, +{"id": 6039, "name": "\"Devilline Symbol\"", "description": "It is a symbol that is on the cover ax of the Brazilian comic called \"Devilline\"", "links": {"website": ["https://tapas.io/episode/2336042"], "discord": ["GWtch5m4"]}, "path": {"228-258, T": [[152, 406], [160, 406], [160, 410], [161, 410], [161, 415], [152, 415]]}, "center": {"228-258, T": [156, 410]}}, {"id": 6040, "name": "HMU XPRESS", "description": "HMU XPRESS, Communication Department of Hanoi Medical University (Ban Truyền thông Thông tin Trường ĐH Y Hà Nội), is one of four functional departments under the Student Union of Hanoi Medical University - which provides the most up-to-date and necessary information about learning and school activities.", "links": {"website": ["https://www.facebook.com/hmuxpress?locale=vi_VN"]}, "path": {"247-250": [[-1430, 945], [-1408, 945], [-1408, 951], [-1430, 951]]}, "center": {"247-250": [-1419, 948]}}, -{"id": 6041, "name": "Kim Pine", "description": "This is a sprite of Kim Pine from Scott Pilgrim Vs. The World: The Game.", "links": {"subreddit": ["ScottPilgrim"]}, "path": {"250-258": [[1474, 240], [1487, 240], [1487, 241], [1488, 242], [1489, 243], [1489, 252], [1490, 252], [1490, 254], [1476, 254], [1475, 253], [1474, 254], [1473, 254], [1472, 253], [1471, 252], [1471, 251], [1472, 251], [1472, 243], [1473, 242], [1474, 241]]}, "center": {"250-258": [1481, 247]}}, +{"id": 6041, "name": "Kim Pine", "description": "This is a sprite of Kim Pine from Scott Pilgrim Vs. The World: The Game.", "links": {"subreddit": ["ScottPilgrim"]}, "path": {"250-258, T": [[1474, 240], [1487, 240], [1487, 241], [1488, 242], [1489, 243], [1489, 252], [1490, 252], [1490, 254], [1476, 254], [1475, 253], [1474, 254], [1473, 254], [1472, 253], [1471, 252], [1471, 251], [1472, 251], [1472, 243], [1473, 242], [1474, 241]]}, "center": {"250-258, T": [1481, 247]}}, {"id": 6042, "name": "Scott Pilgrim", "description": "A sprite of Scott Pilgrim from Scott Pilgrim Vs. The World: The Game", "links": {"subreddit": ["ScottPilgrim"]}, "path": {"166-180": [[-605, 774], [-594, 774], [-594, 775], [-593, 776], [-592, 777], [-591, 777], [-590, 778], [-590, 779], [-591, 780], [-591, 784], [-592, 784], [-592, 787], [-594, 787], [-595, 788], [-596, 789], [-606, 789], [-606, 782], [-608, 782], [-608, 780], [-610, 780], [-610, 779], [-609, 778], [-608, 777], [-607, 776], [-606, 776], [-605, 775]]}, "center": {"166-180": [-599, 782]}}, {"id": 6043, "name": "Second impaled spez", "description": "Done as a Romanian unique way of participating in the fuck spez protest, the impaled spez drawing was made in reference to Vlad the Impaler's punishments. A first drawing was created on the main flag, however, it was soon censored by Reddit admins.\n\nOn what was thought to be the last hours of the event, a second impaled spez was drawn on the second flag, replacing the previous drawing of a Ciucaș beer bottle. During its creation, the Reddit admins censored the \"Spez\" text sign continuously, delaying its construction. As the event did not end that day, the drawing was eventually fully censored, though its reconstruction was tried several times by members of the community (including during the whiteout with only a white and black outline).", "links": {"discord": ["placero"]}, "path": {"212": [[-1459, 414], [-1447, 414], [-1447, 412], [-1451, 411], [-1451, 402], [-1445, 401], [-1444, 400], [-1444, 394], [-1443, 394], [-1443, 391], [-1446, 390], [-1447, 386], [-1447, 385], [-1446, 384], [-1446, 383], [-1447, 382], [-1448, 382], [-1449, 383], [-1449, 384], [-1451, 383], [-1451, 377], [-1453, 375], [-1455, 377], [-1455, 384], [-1457, 383], [-1459, 382], [-1460, 383], [-1460, 384], [-1459, 385], [-1460, 387], [-1461, 390], [-1463, 392], [-1463, 394], [-1462, 395], [-1462, 401], [-1455, 402], [-1455, 410], [-1458, 411]]}, "center": {"212": [-1453, 394]}}, {"id": 6044, "name": "Ciucaș beer bottle", "description": "Ciucaș is a Romanian beer brand produced in Brașov. The factory is the successor of one of the oldest beer factories in Romania, founded by the Friederich Czell & Fiii consortium in 1892. In 1948, the factory changed its name to Aurora, during this period the Ciucaș beer brand appeared. In 2004, the factory was renamed to the Ciucaș beer factory after its most popular produced brand.\n\nThe artwork on the flag was eventually replaced with a second impaled spez drawing on what was thought to be the last hour of the event.", "links": {"discord": ["placero"]}, "path": {"207": [[-1453, 404], [-1446, 404], [-1445, 401], [-1445, 389], [-1448, 382], [-1448, 378], [-1451, 378], [-1454, 391], [-1454, 400]]}, "center": {"207": [-1449, 392]}}, {"id": 6045, "name": "Koekhappen", "description": "Koekhappen (literal English translation: cake biting) is a game in the Netherlands that children often play at kid's parties and on events like King's Day (a Dutch holiday). An \"ontbijtkoek\" (literally translated breakfast cake) is attached on a thread and the players have to try to bite the cake off the thread by keeping their hands behind their backs.", "links": {"website": ["https://nl.wikipedia.org/wiki/Koekhappen"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"251-258": [[1169, -484], [1170, -473], [1184, -473], [1184, -483], [1180, -484], [1179, -488], [1178, -489], [1178, -504], [1176, -504], [1176, -488], [1174, -486], [1174, -484]]}, "center": {"251-258": [1177, -479]}}, -{"id": 6046, "name": "Alcryst in his Lord sprite", "description": "Alcryst is the second prince of Brodia in Fire Emblem : Engage, the latest installment at the time of the event, joining the player's party during chapter 7 : Dark Emblem. \nHe's an archer with crippling self-esteem issues \"who perpetually exists in a quantum superposition of complete loser and absolute chad\"", "links": {"subreddit": ["fireemblem"]}, "path": {"132-258": [[-993, -201], [-974, -201], [-975, -176], [-993, -174], [-1001, -174], [-999, -200]]}, "center": {"132-258": [-987, -188]}}, +{"id": 6046, "name": "Alcryst in his Lord sprite", "description": "Alcryst is the second prince of Brodia in Fire Emblem : Engage, the latest installment at the time of the event, joining the player's party during chapter 7 : Dark Emblem. \nHe's an archer with crippling self-esteem issues \"who perpetually exists in a quantum superposition of complete loser and absolute chad\"", "links": {"subreddit": ["fireemblem"]}, "path": {"132-258, T": [[-993, -201], [-974, -201], [-975, -176], [-993, -174], [-1001, -174], [-999, -200]]}, "center": {"132-258, T": [-987, -188]}}, {"id": 6047, "name": "TwoSet Violin", "description": "TwoSet Violin is a musical comedy duo consisting of Australian violinists and YouTubers Brett Yang and Eddy Chen. They started out posting classical covers of pop music on their YouTube channel, but eventually switched focus to musical comedy videos, which gained them more viewership. Nowadays, their videos are more of the educational sort, as the duo seek to educate younger generations about classical music.\n\nThis TwoSet Violin logo was drawn by some members of TwoSet Violin's subreddit, r/lingling40hrs.", "links": {"website": ["https://www.twosetviolin.com/about", "https://www.youtube.com/@twosetviolin/"], "subreddit": ["lingling40hrs"]}, "path": {"46-52": [[323, 51], [342, 51], [342, 71], [323, 71]]}, "center": {"46-52": [333, 61]}}, {"id": 6048, "name": "TwoSet Violin", "description": "TwoSet Violin is a musical comedy duo consisting of Australian violinists and YouTubers Brett Yang and Eddy Chen. They started out posting classical covers of pop music on their YouTube channel, but eventually switched focus to musical comedy videos, which gained them more viewership. Nowadays, their videos are more of the educational sort, as the duo seek to educate younger generations about classical music.\n\nThis violin was drawn by some members of TwoSet Violin's subreddit, r/lingling40hrs.", "links": {"website": ["https://www.twosetviolin.com/about", "https://www.youtube.com/@twosetviolin/"], "subreddit": ["lingling40hrs"]}, "path": {"144-152": [[883, 443], [900, 443], [900, 458], [883, 458]]}, "center": {"144-152": [892, 451]}}, -{"id": 6049, "name": "A belgian frog with a crown", "description": "A belgian frog with a crown", "links": {"subreddit": ["frogs"]}, "path": {"127-258": [[-350, -294], [-353, -296], [-352, -314], [-341, -314], [-339, -295]]}, "center": {"127-258": [-346, -301]}}, -{"id": 6050, "name": "Poké Ball", "description": "A Poké Ball is a spherical device in the Pokémon games. It is used by Pokémon Trainers to catch wild Pokémon and store them in the player's inventory when not active. This red and white Poké Ball is the most basic and ubiquitous type of Poké Ball, and it is frequently used to represent the Pokémon series as a whole.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9_Ball"]}, "path": {"244-258": [[-1434, -1], [-1436, 1], [-1436, 5], [-1434, 7], [-1432, 7], [-1429, 4], [-1429, 1], [-1432, -1]]}, "center": {"244-258": [-1433, 3]}}, -{"id": 6051, "name": "Sonic the Hedgehog", "description": "Sonic the Hedgehog is the titular protagonist of the Sonic the Hedgehog video game series published by Japanese company Sega. The franchise follows Sonic, an anthropomorphic blue hedgehog who battles the evil Doctor Eggman, a mad scientist. The main Sonic the Hedgehog games are platformers mostly developed by Sonic Team; other games, developed by various studios, include spin-offs in the racing, fighting, party and sports genres. The franchise also incorporates printed media, animations, feature films, and merchandise.", "links": {"website": ["https://en.wikipedia.org/wiki/Sonic_the_Hedgehog_(character)"]}, "path": {"222-258": [[-1398, 46], [-1402, 51], [-1401, 52], [-1401, 56], [-1400, 56], [-1400, 62], [-1396, 66], [-1396, 72], [-1384, 72], [-1384, 71], [-1389, 66], [-1386, 63], [-1386, 58], [-1385, 57], [-1385, 50], [-1388, 46]]}, "center": {"222-258": [-1393, 54]}}, -{"id": 6052, "name": "Dratini", "description": "Dratini is a serpentine Dragon-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Dratini_(Pok%C3%A9mon)"]}, "path": {"214-258": [[-1204, 85], [-1206, 89], [-1206, 91], [-1204, 92], [-1204, 95], [-1203, 95], [-1203, 102], [-1200, 104], [-1198, 104], [-1191, 98], [-1191, 96], [-1195, 96], [-1194, 91], [-1192, 91], [-1192, 89], [-1194, 85], [-1195, 85], [-1195, 87], [-1203, 87], [-1203, 86]]}, "center": {"214-258": [-1199, 92]}}, -{"id": 6053, "name": "Eevee", "description": "Eevee is a Normal-type Pokémon from the Generation I Pokémon games. It can evolve into one of eight different Pokémon, collectively known as the Eeveelutions.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Eevee_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"], "discord": ["X83BN5gTFA"]}, "path": {"210-258": [[-1227, 203], [-1229, 205], [-1229, 206], [-1218, 214], [-1218, 216], [-1220, 220], [-1220, 228], [-1211, 233], [-1208, 233], [-1208, 229], [-1200, 227], [-1200, 215], [-1196, 213], [-1192, 207], [-1192, 203], [-1195, 203], [-1204, 209], [-1211, 209], [-1212, 210], [-1214, 210], [-1214, 209], [-1222, 203]]}, "center": {"210-258": [-1209, 219]}}, -{"id": 6054, "name": "Bulbasaur", "description": "Bulbasaur is the Grass/Poison-type starter Pokémon in the Generation I Pokémon games (Pokémon Red/Blue), taking place in the Kanto region.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Bulbasaur_(Pok%C3%A9mon)"]}, "path": {"217-258": [[-1287, 271], [-1293, 275], [-1295, 275], [-1299, 280], [-1299, 285], [-1295, 288], [-1289, 288], [-1288, 289], [-1286, 289], [-1284, 287], [-1284, 285], [-1282, 285], [-1280, 283], [-1280, 280], [-1279, 279], [-1279, 277], [-1285, 271]]}, "center": {"217-258": [-1289, 280]}}, -{"id": 6055, "name": "Wooper", "description": "Wooper is a Water/Ground-type Pokémon from the Generation II Pokémon games (Pokémon Gold/Silver).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Wooper_(Pok%C3%A9mon)"]}, "path": {"212-258": [[-1333, 315], [-1337, 319], [-1337, 321], [-1335, 324], [-1335, 329], [-1333, 331], [-1328, 331], [-1326, 329], [-1326, 323], [-1325, 323], [-1323, 321], [-1323, 319], [-1328, 315]]}, "center": {"212-258": [-1331, 320]}}, -{"id": 6056, "name": "Sableye", "description": "Sableye is a Dark/Ghost-type Pokémon from the Generation III Pokémon games (Pokémon Ruby/Sapphire). For several games, it was notable for having no elemental weakness, but it has since gained a weakness to the Fairy type.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Sableye_(Pok%C3%A9mon)"]}, "path": {"212-258": [[-1349, 314], [-1351, 316], [-1351, 319], [-1352, 320], [-1352, 323], [-1353, 324], [-1353, 327], [-1352, 328], [-1349, 328], [-1345, 330], [-1342, 330], [-1342, 318]]}, "center": {"212-258": [-1347, 323]}}, -{"id": 6057, "name": "Turtwig", "description": "Turtwig is a Grass-type turtle Pokémon from the Generation IV Pokémon games (Pokémon Diamond/Pearl), and one of the starter Pokémon from those games.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Turtwig_(Pok%C3%A9mon)"]}, "path": {"210-258": [[-1343, 326], [-1343, 330], [-1347, 334], [-1347, 338], [-1344, 341], [-1344, 344], [-1339, 344], [-1338, 345], [-1333, 345], [-1333, 342], [-1331, 340], [-1331, 335], [-1338, 330], [-1335, 328], [-1335, 325], [-1338, 325], [-1339, 326]]}, "center": {"210-258": [-1339, 337]}}, -{"id": 6058, "name": "Mudkip", "description": "Mudkip is the Water-type starter Pokémon from the Generation III Pokémon games (Pokémon Ruby/Sapphire). It is the subject of the meme \"I Herd U Liek Mudkips\".", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Mudkip_(Pok%C3%A9mon)"]}, "path": {"208-258": [[-1431, 323], [-1435, 327], [-1435, 330], [-1437, 330], [-1437, 332], [-1440, 335], [-1440, 336], [-1434, 343], [-1428, 343], [-1426, 341], [-1426, 340], [-1422, 336], [-1422, 335], [-1428, 329], [-1429, 329], [-1429, 325]]}, "center": {"208-258": [-1431, 336]}}, -{"id": 6059, "name": "Ditto", "description": "Ditto is a Normal-type Pokémon introduced in the Generation I Pokemon games (Pokémon Red/Blue). It is known for its ability to transform into other Pokémon and even inanimate objects.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Ditto_(Pok%C3%A9mon)"]}, "path": {"202-258": [[-1448, 318], [-1450, 320], [-1452, 320], [-1454, 322], [-1454, 323], [-1452, 325], [-1452, 326], [-1448, 330], [-1448, 331], [-1447, 332], [-1442, 332], [-1441, 333], [-1438, 333], [-1437, 332], [-1437, 326], [-1442, 319], [-1443, 319], [-1444, 320], [-1445, 320], [-1447, 318]]}, "center": {"202-258": [-1444, 326]}}, -{"id": 6060, "name": "Blastoise", "description": "Blastoise is a Water-type turtle Pokémon from the Generation I Pokémon games (Pokémon Red/Blue). It is the final evolution of the starter Pokémon Squirtle.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Blastoise_(Pok%C3%A9mon)"]}, "path": {"182-258": [[-1402, 295], [-1406, 300], [-1406, 305], [-1403, 309], [-1403, 314], [-1407, 323], [-1418, 330], [-1418, 336], [-1414, 339], [-1412, 339], [-1412, 342], [-1403, 342], [-1406, 347], [-1406, 348], [-1395, 355], [-1389, 355], [-1389, 357], [-1379, 357], [-1373, 364], [-1369, 364], [-1367, 361], [-1363, 361], [-1360, 358], [-1362, 356], [-1362, 345], [-1357, 337], [-1357, 328], [-1361, 323], [-1361, 321], [-1357, 317], [-1355, 310], [-1355, 307], [-1360, 301], [-1362, 301], [-1368, 306], [-1369, 306], [-1372, 302], [-1373, 302], [-1381, 307], [-1385, 307], [-1392, 298], [-1396, 298]]}, "center": {"182-258": [-1383, 331]}}, -{"id": 6061, "name": "Snorlax", "description": "Snorlax is a Normal-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Snorlax_(Pok%C3%A9mon)"]}, "path": {"249-258": [[-1357, 338], [-1362, 345], [-1357, 349], [-1350, 348], [-1346, 343], [-1346, 341], [-1348, 339], [-1354, 339]]}, "center": {"249-258": [-1355, 344]}}, -{"id": 6062, "name": "Eevee", "description": "Eevee is a Normal-type Pokémon from the Generation I Pokémon games. It can evolve into one of eight different Pokémon, collectively known as the Eeveelutions.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Eevee_(Pok%C3%A9mon)"]}, "path": {"205-258": [[-1430, 300], [-1432, 303], [-1432, 306], [-1433, 307], [-1433, 312], [-1435, 314], [-1427, 319], [-1426, 319], [-1423, 315], [-1422, 315], [-1421, 316], [-1420, 316], [-1418, 314], [-1418, 309], [-1416, 307], [-1416, 301], [-1417, 301], [-1419, 303], [-1420, 303], [-1423, 301], [-1426, 304], [-1427, 304], [-1427, 300]]}, "center": {"205-258": [-1427, 310]}}, -{"id": 6063, "name": "Shiny Rowlet", "description": "Rowlet is the Grass/Flying-type starter Pokémon from the Alola region in the Generation VII Pokémon games (Pokémon Sun/Moon). This Rowlet uses its rare Shiny coloration.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Rowlet_(Pok%C3%A9mon)"]}, "path": {"227-258": [[-1356, 357], [-1358, 359], [-1358, 368], [-1356, 371], [-1350, 371], [-1348, 368], [-1348, 359], [-1350, 357]]}, "center": {"227-258": [-1353, 364]}}, -{"id": 6064, "name": "Snivy", "description": "Snivy is a Grass-type snake Pokémon from the Generation V Pokémon games (Pokémon Black/White), and one of the starter Pokémon from those games.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Snivy_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"], "discord": ["X83BN5gTFA"]}, "path": {"196-258": [[-1442, 433], [-1442, 451], [-1421, 451], [-1421, 433]]}, "center": {"196-258": [-1431, 442]}}, -{"id": 6065, "name": "Charmander", "description": "Charmander is the Fire-type starter Pokémon in the Generation I Pokémon games (Pokémon Red/Blue), taking place in the Kanto region.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Charmander_(Pok%C3%A9mon)"]}, "path": {"212-247": [[-1196, 272], [-1201, 278], [-1201, 280], [-1197, 283], [-1197, 287], [-1191, 290], [-1188, 290], [-1180, 277], [-1180, 276], [-1184, 271], [-1188, 275], [-1186, 279], [-1186, 280], [-1187, 281], [-1193, 272]], "248-258": [[-1197, 273], [-1201, 278], [-1201, 280], [-1198, 283], [-1197, 282], [-1195, 282], [-1192, 284], [-1190, 284], [-1190, 291], [-1189, 291], [-1187, 289], [-1187, 287], [-1183, 282], [-1180, 277], [-1180, 276], [-1184, 271], [-1188, 275], [-1186, 279], [-1187, 281], [-1192, 273]]}, "center": {"212-247": [-1192, 284], "248-258": [-1194, 278]}}, -{"id": 6066, "name": "Poké Ball", "description": "A Poké Ball is a spherical device in the Pokémon games. It is used by Pokémon Trainers to catch wild Pokémon and store them in the player's inventory when not active. This red and white Poké Ball is the most basic and ubiquitous type of Poké Ball, and it is frequently used to represent the Pokémon series as a whole.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9_Ball"]}, "path": {"237-258": [[-1225, 323], [-1228, 326], [-1228, 328], [-1225, 331], [-1223, 331], [-1220, 328], [-1220, 326], [-1223, 323]]}, "center": {"237-258": [-1224, 327]}}, -{"id": 6067, "name": "Pikachu", "description": "Pikachu is an Electric-type mouse Pokémon from Generation I of Nintendo's Pokémon franchise. It first appeared in Japan in 1996 in the Pokémon Red and Green games, created by Satoshi Tajiri.", "links": {"website": ["https://en.wikipedia.org/wiki/Pikachu", "https://bulbapedia.bulbagarden.net/wiki/Pikachu"]}, "path": {"239-258": [[-1254, 339], [-1254, 350], [-1243, 350], [-1243, 341], [-1245, 339]]}, "center": {"239-258": [-1248, 345]}}, -{"id": 6068, "name": "Bergmite", "description": "Bergmite is an Ice-type iceberg Pokémon from the Generation VI Pokémon games (Pokémon X/Y).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Bergmite_(Pok%C3%A9mon)"]}, "path": {"223-258": [[-1158, 396], [-1161, 399], [-1161, 402], [-1163, 404], [-1163, 406], [-1159, 412], [-1156, 412], [-1153, 414], [-1152, 414], [-1151, 413], [-1147, 413], [-1145, 411], [-1145, 409], [-1143, 407], [-1151, 403], [-1154, 396]]}, "center": {"223-258": [-1156, 406]}}, -{"id": 6069, "name": "Kirby", "description": "Kirby is the titular protagonist of the Kirby video game series, developed by HAL Laboratory and published by Nintendo.", "links": {"website": ["https://kirby.nintendo.com/", "https://en.wikipedia.org/wiki/Kirby_(character)"]}, "path": {"198-258": [[-1439, 413], [-1442, 416], [-1442, 428], [-1438, 428], [-1437, 427], [-1433, 427], [-1432, 428], [-1429, 428], [-1426, 425], [-1426, 422], [-1425, 421], [-1425, 419], [-1430, 413]]}, "center": {"198-258": [-1435, 420]}}, -{"id": 6070, "name": "Spheal", "description": "Spheal is an Ice/Water-type seal Pokémon from the Generation III Pokémon games (Pokémon Ruby/Sapphire).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Spheal_(Pok%C3%A9mon)"]}, "path": {"214-258": [[-1414, 434], [-1419, 438], [-1420, 440], [-1420, 445], [-1417, 449], [-1414, 449], [-1410, 451], [-1408, 451], [-1406, 448], [-1403, 448], [-1401, 445], [-1401, 443], [-1404, 443], [-1404, 439], [-1410, 435]]}, "center": {"214-258": [-1412, 442]}}, -{"id": 6071, "name": "Sky Forme Shaymin", "description": "Shaymin is a Mythical Pokémon from the Generation IV Pokémon games (Pokémon Diamond/Pearl). This art depicts Shaymin's Sky Forme, a Grass/Flying-type, which Shaymin can transform into if exposed to a Gracidea flower.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Shaymin_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"], "discord": ["X83BN5gTFA"]}, "path": {"223-258": [[-1359, 220], [-1362, 223], [-1362, 226], [-1361, 227], [-1361, 231], [-1357, 236], [-1357, 239], [-1353, 239], [-1352, 240], [-1351, 240], [-1349, 238], [-1347, 238], [-1344, 235], [-1344, 227], [-1343, 227], [-1343, 224], [-1346, 222], [-1350, 222], [-1354, 220]]}, "center": {"223-258": [-1352, 230]}}, +{"id": 6049, "name": "A belgian frog with a crown", "description": "A belgian frog with a crown", "links": {"subreddit": ["frogs"]}, "path": {"127-258, T": [[-350, -294], [-353, -296], [-352, -314], [-341, -314], [-339, -295]]}, "center": {"127-258, T": [-346, -301]}}, +{"id": 6050, "name": "Poké Ball", "description": "A Poké Ball is a spherical device in the Pokémon games. It is used by Pokémon Trainers to catch wild Pokémon and store them in the player's inventory when not active. This red and white Poké Ball is the most basic and ubiquitous type of Poké Ball, and it is frequently used to represent the Pokémon series as a whole.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9_Ball"]}, "path": {"244-258, T": [[-1434, -1], [-1436, 1], [-1436, 5], [-1434, 7], [-1432, 7], [-1429, 4], [-1429, 1], [-1432, -1]]}, "center": {"244-258, T": [-1433, 3]}}, +{"id": 6051, "name": "Sonic the Hedgehog", "description": "Sonic the Hedgehog is the titular protagonist of the Sonic the Hedgehog video game series published by Japanese company Sega. The franchise follows Sonic, an anthropomorphic blue hedgehog who battles the evil Doctor Eggman, a mad scientist. The main Sonic the Hedgehog games are platformers mostly developed by Sonic Team; other games, developed by various studios, include spin-offs in the racing, fighting, party and sports genres. The franchise also incorporates printed media, animations, feature films, and merchandise.", "links": {"website": ["https://en.wikipedia.org/wiki/Sonic_the_Hedgehog_(character)"]}, "path": {"222-258, T": [[-1398, 46], [-1402, 51], [-1401, 52], [-1401, 56], [-1400, 56], [-1400, 62], [-1396, 66], [-1396, 72], [-1384, 72], [-1384, 71], [-1389, 66], [-1386, 63], [-1386, 58], [-1385, 57], [-1385, 50], [-1388, 46]]}, "center": {"222-258, T": [-1393, 54]}}, +{"id": 6052, "name": "Dratini", "description": "Dratini is a serpentine Dragon-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Dratini_(Pok%C3%A9mon)"]}, "path": {"214-258, T": [[-1204, 85], [-1206, 89], [-1206, 91], [-1204, 92], [-1204, 95], [-1203, 95], [-1203, 102], [-1200, 104], [-1198, 104], [-1191, 98], [-1191, 96], [-1195, 96], [-1194, 91], [-1192, 91], [-1192, 89], [-1194, 85], [-1195, 85], [-1195, 87], [-1203, 87], [-1203, 86]]}, "center": {"214-258, T": [-1199, 92]}}, +{"id": 6053, "name": "Eevee", "description": "Eevee is a Normal-type Pokémon from the Generation I Pokémon games. It can evolve into one of eight different Pokémon, collectively known as the Eeveelutions.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Eevee_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"], "discord": ["X83BN5gTFA"]}, "path": {"210-258, T": [[-1227, 203], [-1229, 205], [-1229, 206], [-1218, 214], [-1218, 216], [-1220, 220], [-1220, 228], [-1211, 233], [-1208, 233], [-1208, 229], [-1200, 227], [-1200, 215], [-1196, 213], [-1192, 207], [-1192, 203], [-1195, 203], [-1204, 209], [-1211, 209], [-1212, 210], [-1214, 210], [-1214, 209], [-1222, 203]]}, "center": {"210-258, T": [-1209, 219]}}, +{"id": 6054, "name": "Bulbasaur", "description": "Bulbasaur is the Grass/Poison-type starter Pokémon in the Generation I Pokémon games (Pokémon Red/Blue), taking place in the Kanto region.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Bulbasaur_(Pok%C3%A9mon)"]}, "path": {"217-258, T": [[-1287, 271], [-1293, 275], [-1295, 275], [-1299, 280], [-1299, 285], [-1295, 288], [-1289, 288], [-1288, 289], [-1286, 289], [-1284, 287], [-1284, 285], [-1282, 285], [-1280, 283], [-1280, 280], [-1279, 279], [-1279, 277], [-1285, 271]]}, "center": {"217-258, T": [-1289, 280]}}, +{"id": 6055, "name": "Wooper", "description": "Wooper is a Water/Ground-type Pokémon from the Generation II Pokémon games (Pokémon Gold/Silver).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Wooper_(Pok%C3%A9mon)"]}, "path": {"212-258, T": [[-1333, 315], [-1337, 319], [-1337, 321], [-1335, 324], [-1335, 329], [-1333, 331], [-1328, 331], [-1326, 329], [-1326, 323], [-1325, 323], [-1323, 321], [-1323, 319], [-1328, 315]]}, "center": {"212-258, T": [-1331, 320]}}, +{"id": 6056, "name": "Sableye", "description": "Sableye is a Dark/Ghost-type Pokémon from the Generation III Pokémon games (Pokémon Ruby/Sapphire). For several games, it was notable for having no elemental weakness, but it has since gained a weakness to the Fairy type.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Sableye_(Pok%C3%A9mon)"]}, "path": {"212-258, T": [[-1349, 314], [-1351, 316], [-1351, 319], [-1352, 320], [-1352, 323], [-1353, 324], [-1353, 327], [-1352, 328], [-1349, 328], [-1345, 330], [-1342, 330], [-1342, 318]]}, "center": {"212-258, T": [-1347, 323]}}, +{"id": 6057, "name": "Turtwig", "description": "Turtwig is a Grass-type turtle Pokémon from the Generation IV Pokémon games (Pokémon Diamond/Pearl), and one of the starter Pokémon from those games.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Turtwig_(Pok%C3%A9mon)"]}, "path": {"210-258, T": [[-1343, 326], [-1343, 330], [-1347, 334], [-1347, 338], [-1344, 341], [-1344, 344], [-1339, 344], [-1338, 345], [-1333, 345], [-1333, 342], [-1331, 340], [-1331, 335], [-1338, 330], [-1335, 328], [-1335, 325], [-1338, 325], [-1339, 326]]}, "center": {"210-258, T": [-1339, 337]}}, +{"id": 6058, "name": "Mudkip", "description": "Mudkip is the Water-type starter Pokémon from the Generation III Pokémon games (Pokémon Ruby/Sapphire). It is the subject of the meme \"I Herd U Liek Mudkips\".", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Mudkip_(Pok%C3%A9mon)"]}, "path": {"208-258, T": [[-1431, 323], [-1435, 327], [-1435, 330], [-1437, 330], [-1437, 332], [-1440, 335], [-1440, 336], [-1434, 343], [-1428, 343], [-1426, 341], [-1426, 340], [-1422, 336], [-1422, 335], [-1428, 329], [-1429, 329], [-1429, 325]]}, "center": {"208-258, T": [-1431, 336]}}, +{"id": 6059, "name": "Ditto", "description": "Ditto is a Normal-type Pokémon introduced in the Generation I Pokemon games (Pokémon Red/Blue). It is known for its ability to transform into other Pokémon and even inanimate objects.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Ditto_(Pok%C3%A9mon)"]}, "path": {"202-258, T": [[-1448, 318], [-1450, 320], [-1452, 320], [-1454, 322], [-1454, 323], [-1452, 325], [-1452, 326], [-1448, 330], [-1448, 331], [-1447, 332], [-1442, 332], [-1441, 333], [-1438, 333], [-1437, 332], [-1437, 326], [-1442, 319], [-1443, 319], [-1444, 320], [-1445, 320], [-1447, 318]]}, "center": {"202-258, T": [-1444, 326]}}, +{"id": 6060, "name": "Blastoise", "description": "Blastoise is a Water-type turtle Pokémon from the Generation I Pokémon games (Pokémon Red/Blue). It is the final evolution of the starter Pokémon Squirtle.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Blastoise_(Pok%C3%A9mon)"]}, "path": {"182-258, T": [[-1402, 295], [-1406, 300], [-1406, 305], [-1403, 309], [-1403, 314], [-1407, 323], [-1418, 330], [-1418, 336], [-1414, 339], [-1412, 339], [-1412, 342], [-1403, 342], [-1406, 347], [-1406, 348], [-1395, 355], [-1389, 355], [-1389, 357], [-1379, 357], [-1373, 364], [-1369, 364], [-1367, 361], [-1363, 361], [-1360, 358], [-1362, 356], [-1362, 345], [-1357, 337], [-1357, 328], [-1361, 323], [-1361, 321], [-1357, 317], [-1355, 310], [-1355, 307], [-1360, 301], [-1362, 301], [-1368, 306], [-1369, 306], [-1372, 302], [-1373, 302], [-1381, 307], [-1385, 307], [-1392, 298], [-1396, 298]]}, "center": {"182-258, T": [-1383, 331]}}, +{"id": 6061, "name": "Snorlax", "description": "Snorlax is a Normal-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Snorlax_(Pok%C3%A9mon)"]}, "path": {"249-258, T": [[-1357, 338], [-1362, 345], [-1357, 349], [-1350, 348], [-1346, 343], [-1346, 341], [-1348, 339], [-1354, 339]]}, "center": {"249-258, T": [-1355, 344]}}, +{"id": 6062, "name": "Eevee", "description": "Eevee is a Normal-type Pokémon from the Generation I Pokémon games. It can evolve into one of eight different Pokémon, collectively known as the Eeveelutions.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Eevee_(Pok%C3%A9mon)"]}, "path": {"205-258, T": [[-1430, 300], [-1432, 303], [-1432, 306], [-1433, 307], [-1433, 312], [-1435, 314], [-1427, 319], [-1426, 319], [-1423, 315], [-1422, 315], [-1421, 316], [-1420, 316], [-1418, 314], [-1418, 309], [-1416, 307], [-1416, 301], [-1417, 301], [-1419, 303], [-1420, 303], [-1423, 301], [-1426, 304], [-1427, 304], [-1427, 300]]}, "center": {"205-258, T": [-1427, 310]}}, +{"id": 6063, "name": "Shiny Rowlet", "description": "Rowlet is the Grass/Flying-type starter Pokémon from the Alola region in the Generation VII Pokémon games (Pokémon Sun/Moon). This Rowlet uses its rare Shiny coloration.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Rowlet_(Pok%C3%A9mon)"]}, "path": {"227-258, T": [[-1356, 357], [-1358, 359], [-1358, 368], [-1356, 371], [-1350, 371], [-1348, 368], [-1348, 359], [-1350, 357]]}, "center": {"227-258, T": [-1353, 364]}}, +{"id": 6064, "name": "Snivy", "description": "Snivy is a Grass-type snake Pokémon from the Generation V Pokémon games (Pokémon Black/White), and one of the starter Pokémon from those games.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Snivy_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"], "discord": ["X83BN5gTFA"]}, "path": {"196-258, T": [[-1442, 433], [-1442, 451], [-1421, 451], [-1421, 433]]}, "center": {"196-258, T": [-1431, 442]}}, +{"id": 6065, "name": "Charmander", "description": "Charmander is the Fire-type starter Pokémon in the Generation I Pokémon games (Pokémon Red/Blue), taking place in the Kanto region.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Charmander_(Pok%C3%A9mon)"]}, "path": {"212-247": [[-1196, 272], [-1201, 278], [-1201, 280], [-1197, 283], [-1197, 287], [-1191, 290], [-1188, 290], [-1180, 277], [-1180, 276], [-1184, 271], [-1188, 275], [-1186, 279], [-1186, 280], [-1187, 281], [-1193, 272]], "248-258, T": [[-1197, 273], [-1201, 278], [-1201, 280], [-1198, 283], [-1197, 282], [-1195, 282], [-1192, 284], [-1190, 284], [-1190, 291], [-1189, 291], [-1187, 289], [-1187, 287], [-1183, 282], [-1180, 277], [-1180, 276], [-1184, 271], [-1188, 275], [-1186, 279], [-1187, 281], [-1192, 273]]}, "center": {"212-247": [-1192, 284], "248-258, T": [-1194, 278]}}, +{"id": 6066, "name": "Poké Ball", "description": "A Poké Ball is a spherical device in the Pokémon games. It is used by Pokémon Trainers to catch wild Pokémon and store them in the player's inventory when not active. This red and white Poké Ball is the most basic and ubiquitous type of Poké Ball, and it is frequently used to represent the Pokémon series as a whole.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9_Ball"]}, "path": {"237-258, T": [[-1225, 323], [-1228, 326], [-1228, 328], [-1225, 331], [-1223, 331], [-1220, 328], [-1220, 326], [-1223, 323]]}, "center": {"237-258, T": [-1224, 327]}}, +{"id": 6067, "name": "Pikachu", "description": "Pikachu is an Electric-type mouse Pokémon from Generation I of Nintendo's Pokémon franchise. It first appeared in Japan in 1996 in the Pokémon Red and Green games, created by Satoshi Tajiri.", "links": {"website": ["https://en.wikipedia.org/wiki/Pikachu", "https://bulbapedia.bulbagarden.net/wiki/Pikachu"]}, "path": {"239-258, T": [[-1254, 339], [-1254, 350], [-1243, 350], [-1243, 341], [-1245, 339]]}, "center": {"239-258, T": [-1248, 345]}}, +{"id": 6068, "name": "Bergmite", "description": "Bergmite is an Ice-type iceberg Pokémon from the Generation VI Pokémon games (Pokémon X/Y).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Bergmite_(Pok%C3%A9mon)"]}, "path": {"223-258, T": [[-1158, 396], [-1161, 399], [-1161, 402], [-1163, 404], [-1163, 406], [-1159, 412], [-1156, 412], [-1153, 414], [-1152, 414], [-1151, 413], [-1147, 413], [-1145, 411], [-1145, 409], [-1143, 407], [-1151, 403], [-1154, 396]]}, "center": {"223-258, T": [-1156, 406]}}, +{"id": 6069, "name": "Kirby", "description": "Kirby is the titular protagonist of the Kirby video game series, developed by HAL Laboratory and published by Nintendo.", "links": {"website": ["https://kirby.nintendo.com/", "https://en.wikipedia.org/wiki/Kirby_(character)"]}, "path": {"198-258, T": [[-1439, 413], [-1442, 416], [-1442, 428], [-1438, 428], [-1437, 427], [-1433, 427], [-1432, 428], [-1429, 428], [-1426, 425], [-1426, 422], [-1425, 421], [-1425, 419], [-1430, 413]]}, "center": {"198-258, T": [-1435, 420]}}, +{"id": 6070, "name": "Spheal", "description": "Spheal is an Ice/Water-type seal Pokémon from the Generation III Pokémon games (Pokémon Ruby/Sapphire).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Spheal_(Pok%C3%A9mon)"]}, "path": {"214-258, T": [[-1414, 434], [-1419, 438], [-1420, 440], [-1420, 445], [-1417, 449], [-1414, 449], [-1410, 451], [-1408, 451], [-1406, 448], [-1403, 448], [-1401, 445], [-1401, 443], [-1404, 443], [-1404, 439], [-1410, 435]]}, "center": {"214-258, T": [-1412, 442]}}, +{"id": 6071, "name": "Sky Forme Shaymin", "description": "Shaymin is a Mythical Pokémon from the Generation IV Pokémon games (Pokémon Diamond/Pearl). This art depicts Shaymin's Sky Forme, a Grass/Flying-type, which Shaymin can transform into if exposed to a Gracidea flower.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Shaymin_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"], "discord": ["X83BN5gTFA"]}, "path": {"223-258, T": [[-1359, 220], [-1362, 223], [-1362, 226], [-1361, 227], [-1361, 231], [-1357, 236], [-1357, 239], [-1353, 239], [-1352, 240], [-1351, 240], [-1349, 238], [-1347, 238], [-1344, 235], [-1344, 227], [-1343, 227], [-1343, 224], [-1346, 222], [-1350, 222], [-1354, 220]]}, "center": {"223-258, T": [-1352, 230]}}, {"id": 6072, "name": "Gol D. Roger", "description": "This art features Pirate King Gol D. Roger from the manga/anime One Piece. The panel comes from chapter 967 of the One Piece manga, in which Pirate King Gol D. Roger and his crew laughed when they saw Joy Boy's Treasure at Laugh Tale. The panel has become a meme within the One Piece community.\n\nThis art was drawn in r/place 2022, and the One Piece community attempted to draw this panel again during the gray-out. The original caption \"He Laughed\" was modified to \"He Laughed at Spez\" to support the protests against Reddit CEO Steve Huffman (u/spez) and the pricing changes to Reddit's API that killed many third-party Reddit apps. However, the gray-out did not last long enough to complete this art.", "links": {"website": ["https://knowyourmeme.com/memes/he-laughed-roger-just-laughed", "https://onepiece.fandom.com/wiki/Gol_D._Roger"], "subreddit": ["OnePiece"], "discord": ["oneplace"]}, "path": {"256-258": [[-89, 586], [-89, 746], [34, 746], [34, 586]]}, "center": {"256-258": [-27, 666]}}, -{"id": 6073, "name": "Australian Aboriginal flag", "description": "Aboriginal Australians are the indigenous peoples of Australia, excluding those from the Torres Strait Islands. This flag is used to represent Aboriginals, and was designed in 1971 by Harold Thomas.", "links": {"website": ["https://en.wikipedia.org/wiki/Aboriginal_Australians", "https://en.wikipedia.org/wiki/Australian_Aboriginal_Flag"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"244-258": [[1346, -127], [1346, -118], [1359, -118], [1359, -127]]}, "center": {"244-258": [1353, -122]}}, -{"id": 6074, "name": "Uluru", "description": "Uluru, also known as Ayers Rock, is a large sandstone rock in Australia. The rock is sacred to the indigenous Aboriginal people of the area, and is a popular tourist destination.", "links": {"website": ["https://en.wikipedia.org/wiki/Uluru"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"232-258": [[1364, -107], [1363, -106], [1359, -106], [1356, -103], [1356, -102], [1352, -100], [1352, -98], [1357, -98], [1358, -97], [1363, -97], [1364, -96], [1377, -96], [1383, -99], [1381, -102], [1379, -102], [1375, -106], [1372, -106]]}, "center": {"232-258": [1367, -101]}}, -{"id": 6075, "name": "Australian and New Zealand Army Corps", "description": "The Australian and New Zealand Army Corps (ANZAC) was an army corps of Australians and New Zealanders during World War I. This silhouette of a soldier and cross commemorates the ANZAC soldiers lost during the war.", "links": {"website": ["https://en.wikipedia.org/wiki/Australian_and_New_Zealand_Army_Corps"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"231-258": [[1368, -116], [1368, -115], [1366, -115], [1366, -113], [1367, -113], [1367, -112], [1368, -111], [1368, -103], [1369, -102], [1369, -98], [1368, -97], [1364, -97], [1364, -99], [1365, -100], [1363, -102], [1361, -100], [1362, -99], [1362, -96], [1372, -96], [1372, -106], [1373, -106], [1373, -113], [1374, -113], [1374, -115], [1372, -115], [1372, -116]]}, "center": {"231-258": [1370, -113]}}, -{"id": 6076, "name": "Kangaroo", "description": "The kangaroo is an animal native to Australia. It is an international icon of Australia recognized around the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Kangaroo"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"230-258": [[1351, -107], [1349, -105], [1349, -102], [1346, -98], [1346, -91], [1363, -91], [1363, -93], [1359, -93], [1358, -94], [1356, -94], [1353, -98], [1353, -100], [1356, -102], [1353, -104]]}, "center": {"230-258": [1350, -95]}}, -{"id": 6077, "name": "Wombat", "description": "The wombat is an animal native to Australia.", "links": {"website": ["https://en.wikipedia.org/wiki/Wombat"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"246-258": [[1368, -96], [1364, -92], [1365, -91], [1365, -88], [1376, -88], [1376, -91], [1377, -92], [1377, -93], [1375, -96]]}, "center": {"246-258": [1371, -92]}}, -{"id": 6078, "name": "Emu", "description": "The emu is an animal native to Australia.", "links": {"website": ["https://en.wikipedia.org/wiki/Emu"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"232-258": [[1381, -104], [1381, -101], [1379, -101], [1379, -99], [1380, -99], [1380, -94], [1382, -92], [1382, -87], [1384, -87], [1387, -89], [1387, -92], [1390, -92], [1390, -93], [1387, -97], [1383, -97], [1385, -99], [1385, -104]]}, "center": {"232-258": [1384, -94]}}, -{"id": 6079, "name": "Akubra outback hat", "description": "The Akubra outback hat is a traditional hat from Australia.", "links": {"website": ["https://en.wikipedia.org/wiki/Akubra"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"240-258": [[1375, -87], [1373, -85], [1373, -84], [1391, -84], [1391, -85], [1389, -87], [1387, -87], [1385, -85], [1385, -84], [1379, -84], [1379, -85], [1377, -87]]}, "center": {"240-258": [1377, -85]}}, -{"id": 6080, "name": "Muffin Heeler", "description": "Muffin Heeler is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Muffin_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"206-258": [[1347, -86], [1347, -80], [1349, -78], [1351, -78], [1352, -79], [1354, -79], [1354, -80], [1353, -81], [1353, -83], [1350, -86]]}, "center": {"206-258": [1350, -82]}}, -{"id": 6081, "name": "Socks Heeler", "description": "Socks Heeler is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Socks_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"207-258": [[1354, -83], [1354, -78], [1359, -78], [1359, -79], [1358, -80], [1358, -83]]}, "center": {"207-258": [1356, -81]}}, -{"id": 6082, "name": "Stripe Heeler", "description": "Stripe Heeler is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Stripe_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"207-258": [[1358, -88], [1358, -86], [1359, -86], [1359, -80], [1360, -80], [1360, -78], [1364, -78], [1364, -79], [1366, -79], [1366, -82], [1365, -82], [1365, -88]]}, "center": {"207-258": [1362, -83]}}, -{"id": 6083, "name": "Trixie Heeler", "description": "Trixie Heeler is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Trixie_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"207-258": [[1366, -88], [1366, -80], [1367, -80], [1367, -78], [1371, -78], [1371, -79], [1373, -79], [1373, -82], [1372, -82], [1372, -86], [1370, -88]]}, "center": {"207-258": [1369, -83]}}, -{"id": 6084, "name": "Rusty", "description": "Rusty is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Rusty"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"223-258": [[1375, -85], [1373, -83], [1374, -82], [1374, -78], [1378, -78], [1378, -79], [1380, -79], [1380, -82], [1378, -82], [1378, -85]]}, "center": {"223-258": [1376, -80]}}, -{"id": 6085, "name": "Mackenzie Border Collie", "description": "Mackenzie Border Collie is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Mackenzie_Border_Collie"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"238-258": [[1381, -86], [1381, -84], [1380, -83], [1381, -82], [1381, -78], [1384, -78], [1386, -80], [1386, -82], [1385, -82], [1385, -86]]}, "center": {"238-258": [1383, -81]}}, -{"id": 6086, "name": "Jack Russell", "description": "Jack Russell is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Jack_Russell"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"238-258": [[1387, -85], [1385, -83], [1386, -82], [1386, -78], [1389, -78], [1391, -80], [1391, -82], [1390, -82], [1390, -85]]}, "center": {"238-258": [1388, -81]}}, +{"id": 6073, "name": "Australian Aboriginal flag", "description": "Aboriginal Australians are the indigenous peoples of Australia, excluding those from the Torres Strait Islands. This flag is used to represent Aboriginals, and was designed in 1971 by Harold Thomas.", "links": {"website": ["https://en.wikipedia.org/wiki/Aboriginal_Australians", "https://en.wikipedia.org/wiki/Australian_Aboriginal_Flag"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"244-258, T": [[1346, -127], [1346, -118], [1359, -118], [1359, -127]]}, "center": {"244-258, T": [1353, -122]}}, +{"id": 6074, "name": "Uluru", "description": "Uluru, also known as Ayers Rock, is a large sandstone rock in Australia. The rock is sacred to the indigenous Aboriginal people of the area, and is a popular tourist destination.", "links": {"website": ["https://en.wikipedia.org/wiki/Uluru"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"232-258, T": [[1364, -107], [1363, -106], [1359, -106], [1356, -103], [1356, -102], [1352, -100], [1352, -98], [1357, -98], [1358, -97], [1363, -97], [1364, -96], [1377, -96], [1383, -99], [1381, -102], [1379, -102], [1375, -106], [1372, -106]]}, "center": {"232-258, T": [1367, -101]}}, +{"id": 6075, "name": "Australian and New Zealand Army Corps", "description": "The Australian and New Zealand Army Corps (ANZAC) was an army corps of Australians and New Zealanders during World War I. This silhouette of a soldier and cross commemorates the ANZAC soldiers lost during the war.", "links": {"website": ["https://en.wikipedia.org/wiki/Australian_and_New_Zealand_Army_Corps"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"231-258, T": [[1368, -116], [1368, -115], [1366, -115], [1366, -113], [1367, -113], [1367, -112], [1368, -111], [1368, -103], [1369, -102], [1369, -98], [1368, -97], [1364, -97], [1364, -99], [1365, -100], [1363, -102], [1361, -100], [1362, -99], [1362, -96], [1372, -96], [1372, -106], [1373, -106], [1373, -113], [1374, -113], [1374, -115], [1372, -115], [1372, -116]]}, "center": {"231-258, T": [1370, -113]}}, +{"id": 6076, "name": "Kangaroo", "description": "The kangaroo is an animal native to Australia. It is an international icon of Australia recognized around the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Kangaroo"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"230-258, T": [[1351, -107], [1349, -105], [1349, -102], [1346, -98], [1346, -91], [1363, -91], [1363, -93], [1359, -93], [1358, -94], [1356, -94], [1353, -98], [1353, -100], [1356, -102], [1353, -104]]}, "center": {"230-258, T": [1350, -95]}}, +{"id": 6077, "name": "Wombat", "description": "The wombat is an animal native to Australia.", "links": {"website": ["https://en.wikipedia.org/wiki/Wombat"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"246-258, T": [[1368, -96], [1364, -92], [1365, -91], [1365, -88], [1376, -88], [1376, -91], [1377, -92], [1377, -93], [1375, -96]]}, "center": {"246-258, T": [1371, -92]}}, +{"id": 6078, "name": "Emu", "description": "The emu is an animal native to Australia.", "links": {"website": ["https://en.wikipedia.org/wiki/Emu"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"232-258, T": [[1381, -104], [1381, -101], [1379, -101], [1379, -99], [1380, -99], [1380, -94], [1382, -92], [1382, -87], [1384, -87], [1387, -89], [1387, -92], [1390, -92], [1390, -93], [1387, -97], [1383, -97], [1385, -99], [1385, -104]]}, "center": {"232-258, T": [1384, -94]}}, +{"id": 6079, "name": "Akubra outback hat", "description": "The Akubra outback hat is a traditional hat from Australia.", "links": {"website": ["https://en.wikipedia.org/wiki/Akubra"], "subreddit": ["placeaustralia", "fuckspezplace"], "discord": ["KccrKfSKkK", "fuckspez"]}, "path": {"240-258, T": [[1375, -87], [1373, -85], [1373, -84], [1391, -84], [1391, -85], [1389, -87], [1387, -87], [1385, -85], [1385, -84], [1379, -84], [1379, -85], [1377, -87]]}, "center": {"240-258, T": [1377, -85]}}, +{"id": 6080, "name": "Muffin Heeler", "description": "Muffin Heeler is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Muffin_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"206-258, T": [[1347, -86], [1347, -80], [1349, -78], [1351, -78], [1352, -79], [1354, -79], [1354, -80], [1353, -81], [1353, -83], [1350, -86]]}, "center": {"206-258, T": [1350, -82]}}, +{"id": 6081, "name": "Socks Heeler", "description": "Socks Heeler is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Socks_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"207-258, T": [[1354, -83], [1354, -78], [1359, -78], [1359, -79], [1358, -80], [1358, -83]]}, "center": {"207-258, T": [1356, -81]}}, +{"id": 6082, "name": "Stripe Heeler", "description": "Stripe Heeler is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Stripe_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"207-258, T": [[1358, -88], [1358, -86], [1359, -86], [1359, -80], [1360, -80], [1360, -78], [1364, -78], [1364, -79], [1366, -79], [1366, -82], [1365, -82], [1365, -88]]}, "center": {"207-258, T": [1362, -83]}}, +{"id": 6083, "name": "Trixie Heeler", "description": "Trixie Heeler is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Trixie_Heeler"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"207-258, T": [[1366, -88], [1366, -80], [1367, -80], [1367, -78], [1371, -78], [1371, -79], [1373, -79], [1373, -82], [1372, -82], [1372, -86], [1370, -88]]}, "center": {"207-258, T": [1369, -83]}}, +{"id": 6084, "name": "Rusty", "description": "Rusty is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Rusty"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"223-258, T": [[1375, -85], [1373, -83], [1374, -82], [1374, -78], [1378, -78], [1378, -79], [1380, -79], [1380, -82], [1378, -82], [1378, -85]]}, "center": {"223-258, T": [1376, -80]}}, +{"id": 6085, "name": "Mackenzie Border Collie", "description": "Mackenzie Border Collie is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Mackenzie_Border_Collie"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"238-258, T": [[1381, -86], [1381, -84], [1380, -83], [1381, -82], [1381, -78], [1384, -78], [1386, -80], [1386, -82], [1385, -82], [1385, -86]]}, "center": {"238-258, T": [1383, -81]}}, +{"id": 6086, "name": "Jack Russell", "description": "Jack Russell is a character from the TV show Bluey.", "links": {"website": ["https://blueypedia.fandom.com/wiki/Jack_Russell"], "subreddit": ["bluey"], "discord": ["blueyheeler"]}, "path": {"238-258, T": [[1387, -85], [1385, -83], [1386, -82], [1386, -78], [1389, -78], [1391, -80], [1391, -82], [1390, -82], [1390, -85]]}, "center": {"238-258, T": [1388, -81]}}, {"id": 6087, "name": "Tuyu (ツユ)", "description": "TUYU (ツユ) is a Japanese pop group consisting of ぷす (Pusu) on guitar, 礼衣 (Rei) as vocals, and Miro on piano.\nツユ is a play on words of the Japanese word for 'Rainy Season' 梅雨\nActive since 2019, and have released 3 albums.", "links": {"website": ["https://www.youtube.com/@TUYU_official"], "subreddit": ["TUYU_official"], "discord": ["tuyu"]}, "path": {"117-123": [[-590, -726], [-582, -726], [-582, -735], [-590, -735]]}, "center": {"117-123": [-586, -730]}}, -{"id": 6088, "name": "Bosphorus Bridge", "description": "Bosphorus Bridge (Turkish: Boğaziçi Köprüsü) is a bridge over the Bosphorus strait in Istanbul, Turkey that connects Europe and Asia. It is a cultural icon of Turkey.", "links": {}, "path": {"250-258": [[-216, 443], [-216, 441], [-182, 440], [-201, 442], [-215, 444], [-206, 443], [-166, 444], [-166, 414], [-200, 409], [-216, 439]]}, "center": {"250-258": [-191, 425]}}, -{"id": 6089, "name": "Shield Club Universidad de Chile", "description": "Club Universidad de Chile (also know as \"La U\") is a Chilean professional football club based in Santiago.", "links": {"website": ["https://www.udechile.cl", "https://es.wikipedia.org/wiki/Club_Universidad_de_Chile"]}, "path": {"250-258": [[-716, -909], [-722, -909], [-722, -903], [-721, -903], [-721, -898], [-720, -898], [-720, -896], [-710, -896], [-710, -897], [-709, -897], [-709, -903], [-708, -905], [-709, -906], [-709, -908], [-709, -909], [-715, -909], [-714, -909]]}, "center": {"250-258": [-715, -902]}}, -{"id": 6090, "name": "Racing Club de Avellaneda", "description": "Racing Club de Avellaneda is an Argentine football club, which currently plays in the first division. Popularly, it is grouped into the so-called \"5 greats of Argentine football\"", "links": {}, "path": {"222-258": [[1198, -789], [1224, -789], [1224, -771], [1224, -770], [1216, -770], [1216, -758], [1201, -758], [1201, -772], [1200, -773], [1199, -775], [1198, -776]]}, "center": {"222-258": [1210, -778]}}, +{"id": 6088, "name": "Bosphorus Bridge", "description": "Bosphorus Bridge (Turkish: Boğaziçi Köprüsü) is a bridge over the Bosphorus strait in Istanbul, Turkey that connects Europe and Asia. It is a cultural icon of Turkey.", "links": {}, "path": {"250-258, T": [[-216, 443], [-216, 441], [-182, 440], [-201, 442], [-215, 444], [-206, 443], [-166, 444], [-166, 414], [-200, 409], [-216, 439]]}, "center": {"250-258, T": [-191, 425]}}, +{"id": 6089, "name": "Shield Club Universidad de Chile", "description": "Club Universidad de Chile (also know as \"La U\") is a Chilean professional football club based in Santiago.", "links": {"website": ["https://www.udechile.cl", "https://es.wikipedia.org/wiki/Club_Universidad_de_Chile"]}, "path": {"250-258, T": [[-716, -909], [-722, -909], [-722, -903], [-721, -903], [-721, -898], [-720, -898], [-720, -896], [-710, -896], [-710, -897], [-709, -897], [-709, -903], [-708, -905], [-709, -906], [-709, -908], [-709, -909], [-715, -909], [-714, -909]]}, "center": {"250-258, T": [-715, -902]}}, +{"id": 6090, "name": "Racing Club de Avellaneda", "description": "Racing Club de Avellaneda is an Argentine football club, which currently plays in the first division. Popularly, it is grouped into the so-called \"5 greats of Argentine football\"", "links": {}, "path": {"222-258, T": [[1198, -789], [1224, -789], [1224, -771], [1224, -770], [1216, -770], [1216, -758], [1201, -758], [1201, -772], [1200, -773], [1199, -775], [1198, -776]]}, "center": {"222-258, T": [1210, -778]}}, {"id": 6091, "name": "STI2D", "description": "The STI2D (Sciences et Technologies de l'Ingénieur et du Développement Durable) is a technological specialty that french high school students can choose instead of the general track.\nThe design of the logo may come from the Instagram page of Memes STI2D.", "links": {"website": ["https://www.instagram.com/memes_sti2d/"], "subreddit": ["STI2D_"]}, "path": {"8-13": [[-362, 272], [-336, 272], [-336, 282], [-362, 282]], "19-41": [[-364, 150], [-339, 150], [-339, 167], [-364, 167]], "45-55": [[-343, 136], [-316, 136], [-316, 145], [-343, 145]]}, "center": {"8-13": [-349, 277], "19-41": [-351, 159], "45-55": [-329, 141]}}, -{"id": 6092, "name": "r/nordics say \"thank you\" to their allies", "description": "When the grey-out began, the r/nordics community expressed gratitude to their \"NATO allies\" who helped defend and rebuild during the last-minute bot attacks.", "links": {"subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"250-258": [[-35, -259], [-35, -239], [35, -239], [35, -259]]}, "center": {"250-258": [0, -249]}}, -{"id": 6093, "name": "The number 24", "description": "The number 24 represents the number of Stanley Cups won by the Montréal Canadiens, making them the most successful franchise in NHL history.", "links": {"subreddit": ["Habs"], "discord": ["rhabs"]}, "path": {"250-258": [[620, 226], [627, 226], [627, 227], [628, 227], [628, 232], [620, 232]]}, "center": {"250-258": [624, 229]}}, -{"id": 6094, "name": "The Combine Logo", "description": "A Combine Logo, The Combine from Half Life 2 is a vast and powerful interdimensional hegemony which subjugated Earth during the Seven Hour War. Describing itself as a universal union, the Combine is comprised of many enslaved species, spanning multiple universes in the Multiverse with countless enslaved worlds under its control.", "links": {"website": ["https://half-life.fandom.com/wiki/Combine"]}, "path": {"250-258": [[-1200, 408], [-1200, 414], [-1189, 414], [-1187, 411], [-1187, 408]]}, "center": {"250-258": [-1193, 411]}}, -{"id": 6095, "name": "La drapeau d'Acadie", "description": "La drapeau de l'Acadie fait par le streamer Québécois MartyyVengeance et sa communautées", "links": {"website": ["https://www.twitch.tv/martyyvengeance"]}, "path": {"250-258": [[270, 999], [288, 999], [287, 991], [270, 991]]}, "center": {"250-258": [279, 995]}}, -{"id": 6096, "name": "Joint", "description": "A joint is a rolled cannabis cigarette. The Netherlands is known for its tolerance policy on drugs.\n\nMark Rutte, who is smoking the joint here, has spoken out against cannabis in the past. But probably the main reason people decided to have him smoke a joint was simply because they thought it looked funny.", "links": {"website": ["https://en.wikipedia.org/wiki/Joint_(cannabis)", "https://en.wikipedia.org/wiki/Drug_policy_of_the_Netherlands", "https://en.wikipedia.org/wiki/Cannabis_in_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"116-258": [[470, -471], [459, -466], [462, -464], [471, -470]]}, "center": {"116-258": [463, -466]}}, -{"id": 6097, "name": "Giant moa", "description": "The giant moa is an extinct bird that was native to New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/Dinornis"], "subreddit": ["newzealand"], "discord": ["nz"]}, "path": {"224-258": [[1400, -109], [1402, -109], [1402, -106], [1400, -100], [1400, -94], [1406, -90], [1406, -83], [1405, -82], [1405, -81], [1413, -81], [1413, -90], [1416, -94], [1416, -96], [1413, -99], [1406, -99], [1406, -111], [1404, -113], [1400, -113], [1393, -117], [1392, -116], [1400, -111]]}, "center": {"224-258": [1409, -94]}}, -{"id": 6098, "name": "Kea", "description": "The kea is a bird native to New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/Kea"], "subreddit": ["newzealand"], "discord": ["nz"]}, "path": {"218-258": [[1420, -126], [1409, -121], [1407, -121], [1407, -120], [1413, -111], [1415, -110], [1421, -110], [1422, -111], [1428, -111], [1428, -113], [1428, -114], [1432, -117], [1431, -118], [1426, -115], [1425, -116], [1423, -116], [1423, -118], [1424, -119], [1424, -124], [1422, -126]]}, "center": {"218-258": [1417, -117]}}, -{"id": 6099, "name": "Kererū", "description": "The kererū is a type of pigeon native to New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/Kerer%C5%AB"], "subreddit": ["newzealand"], "discord": ["nz"]}, "path": {"223-258": [[1423, -99], [1418, -90], [1418, -87], [1421, -83], [1421, -81], [1429, -81], [1429, -83], [1433, -86], [1430, -90], [1426, -92], [1426, -94], [1428, -94], [1428, -97], [1431, -99], [1430, -100], [1428, -99]]}, "center": {"223-258": [1425, -87]}}, -{"id": 6100, "name": "Poi E", "description": "Poi E is an album by Pātea Māori Club, a New Zealand Māori cultural group. The man riding the giant moa is based on Poi E's album cover.", "links": {"website": ["https://en.wikipedia.org/wiki/Poi_E_(album)"], "subreddit": ["newzealand"], "discord": ["nz"]}, "path": {"223-258": [[1410, -110], [1407, -107], [1407, -103], [1405, -103], [1405, -102], [1407, -100], [1407, -94], [1406, -94], [1406, -92], [1409, -92], [1409, -95], [1410, -97], [1413, -97], [1413, -104], [1411, -107], [1411, -110]]}, "center": {"223-258": [1410, -101]}}, -{"id": 6101, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe.\n\nThis area is the Netherlands's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL", "fuckspezplace"], "discord": ["PlaceNL", "fuckspez"]}, "path": {"205-258": [[1280, -172], [1258, -164], [1243, -149], [1240, -136], [1240, -55], [1248, -36], [1263, -24], [1279, -19], [1302, -19], [1321, -26], [1334, -38], [1342, -55], [1342, -136], [1335, -153], [1320, -166], [1303, -172]]}, "center": {"205-258": [1291, -95]}}, -{"id": 6102, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America.\n\nThis area is Venezuela's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["vzla", "fuckspezplace"], "discord": ["fuckspez"]}, "path": {"206-258": [[1200, -170], [1200, -51], [1199, -50], [1195, -50], [1195, -21], [1236, -21], [1236, -170]]}, "center": {"206-258": [1216, -41]}}, -{"id": 6103, "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes.\n\nThis area is Costa Rica's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["Ticos", "fuckspezplace"], "discord": ["Ticord", "fuckspez"]}, "path": {"208-258": [[1128, -170], [1128, -47], [1130, -38], [1137, -28], [1146, -21], [1196, -21], [1196, -50], [1181, -50], [1180, -51], [1180, -170]]}, "center": {"208-258": [1154, -144]}}, -{"id": 6104, "name": "Flag of France", "description": "France is a country in Western Europe.\n\nThis area is France's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "fuckspezplace"], "discord": ["placeFR", "fuckspez"]}, "path": {"205-258": [[1046, -203], [1046, -21], [1099, -21], [1099, -92], [1120, -92], [1120, -130], [1097, -130], [1097, -159], [1125, -159], [1125, -203]]}, "center": {"205-258": [1075, -110]}}, -{"id": 6105, "name": "Flag of Germany", "description": "Germany is a country in Central Europe.\n\nThis area is Germany's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placeDE", "de", "fuckspezplace"], "discord": ["placeDE", "fuckspez"]}, "path": {"204-258": [[1055, -12], [1027, 7], [1022, 16], [1022, 62], [1030, 82], [1042, 95], [1062, 106], [1064, 109], [1029, 109], [1024, 113], [1024, 146], [1025, 146], [1025, 157], [1040, 173], [1059, 182], [1072, 183], [1073, 184], [1084, 184], [1085, 183], [1094, 183], [1103, 180], [1120, 167], [1129, 156], [1132, 147], [1131, 106], [1125, 93], [1104, 74], [1092, 65], [1091, 63], [1133, 63], [1139, 42], [1135, 20], [1130, 10], [1118, 0], [1098, -12]]}, "center": {"204-258": [1065, 31]}}, -{"id": 6106, "name": "Rainbow flag", "description": "The rainbow pride flag represents the LGBT community as a whole.\n\nThis is r/PlacePride's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)", "https://en.wikipedia.org/wiki/LGBT"], "subreddit": ["PlacePride", "fuckspezplace"], "discord": ["MUMhGkK4un", "fuckspez"]}, "path": {"204-258": [[1171, 34], [1143, 39], [1137, 50], [1135, 60], [1135, 116], [1243, 116], [1243, 54], [1238, 44], [1231, 37], [1212, 33]]}, "center": {"204-258": [1189, 75]}}, -{"id": 6107, "name": "Transgender flag", "description": "A pride flag representing the transgender community. Transgender people have a gender identity different from their sex assigned at birth.\n\nThis area is r/transplace's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)", "https://en.wikipedia.org/wiki/LGBT"], "subreddit": ["transplace", "fuckspezplace"], "discord": ["TransPlace", "fuckspez"]}, "path": {"202-258": [[1135, 115], [1135, 193], [1186, 193], [1186, 171], [1217, 171], [1231, 168], [1237, 163], [1243, 153], [1243, 115]]}, "center": {"202-258": [1166, 146]}}, -{"id": 6108, "name": "Flag of India", "description": "India is a country in South Asia.\n\nThis area is India's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace", "fuckspezplace"], "discord": ["indiaplace", "fuckspez"]}, "path": {"205-258": [[1285, 30], [1261, 40], [1253, 49], [1248, 58], [1246, 74], [1246, 139], [1251, 160], [1259, 170], [1279, 181], [1293, 183], [1309, 183], [1329, 177], [1342, 165], [1347, 158], [1351, 128], [1351, 75], [1346, 56], [1334, 40], [1312, 30]]}, "center": {"205-258": [1299, 107]}}, -{"id": 6109, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America.\n\nThis area is Mexico's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "fuckspezplace"], "discord": ["fuckspez"]}, "path": {"207-258": [[1352, 32], [1352, 70], [1377, 70], [1351, 138], [1351, 181], [1430, 181], [1430, 142], [1407, 142], [1405, 141], [1405, 139], [1431, 69], [1431, 32]]}, "center": {"207-258": [1379, 153]}}, -{"id": 6110, "name": "El Castillo", "description": "El Castillo is a pyramid built by the Mayan people in the Yucatán Peninsula. It is the centerpiece of the ancient Mayan city of Chichén Itzá, one of the New 7 Wonders of the World.", "links": {"website": ["https://en.wikipedia.org/wiki/El_Castillo,_Chichen_Itza"], "subreddit": ["PlaceMexico", "fuckspezplace"], "discord": ["fuckspez"]}, "path": {"212-258": [[1388, 117], [1388, 119], [1372, 135], [1372, 136], [1406, 136], [1408, 132], [1408, 130], [1397, 119], [1397, 117]]}, "center": {"212-258": [1392, 127]}}, -{"id": 6111, "name": "Flag of Italy", "description": "Italy, officially the Republic of Italy (Repubblica Italiana), is a country in Southern Europe.\n\nThis area is Italy's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy", "fuckspezplace"], "discord": ["yvfHmyVUs2", "fuckspez"]}, "path": {"205-258": [[1438, 136], [1438, 179], [1473, 179], [1473, 136]]}, "center": {"205-258": [1456, 158]}}, -{"id": 6112, "name": "Pizza", "description": "Pizza is an Italian dish with a flat dough topped with tomato sauce, cheese, and other toppings.", "links": {"website": ["https://en.wikipedia.org/wiki/Pizza"], "subreddit": ["italy", "fuckspezplace"], "discord": ["yvfHmyVUs2", "fuckspez"]}, "path": {"207-258": [[1456, 146], [1447, 154], [1447, 156], [1461, 167], [1463, 165], [1463, 158], [1459, 148]]}, "center": {"207-258": [1455, 155]}}, +{"id": 6092, "name": "r/nordics say \"thank you\" to their allies", "description": "When the grey-out began, the r/nordics community expressed gratitude to their \"NATO allies\" who helped defend and rebuild during the last-minute bot attacks.", "links": {"subreddit": ["nordics"], "discord": ["ZeBZx3C3"]}, "path": {"250-258, T": [[-35, -259], [-35, -239], [35, -239], [35, -259]]}, "center": {"250-258, T": [0, -249]}}, +{"id": 6093, "name": "The number 24", "description": "The number 24 represents the number of Stanley Cups won by the Montréal Canadiens, making them the most successful franchise in NHL history.", "links": {"subreddit": ["Habs"], "discord": ["rhabs"]}, "path": {"250-258, T": [[620, 226], [627, 226], [627, 227], [628, 227], [628, 232], [620, 232]]}, "center": {"250-258, T": [624, 229]}}, +{"id": 6094, "name": "The Combine Logo", "description": "A Combine Logo, The Combine from Half Life 2 is a vast and powerful interdimensional hegemony which subjugated Earth during the Seven Hour War. Describing itself as a universal union, the Combine is comprised of many enslaved species, spanning multiple universes in the Multiverse with countless enslaved worlds under its control.", "links": {"website": ["https://half-life.fandom.com/wiki/Combine"]}, "path": {"250-258, T": [[-1200, 408], [-1200, 414], [-1189, 414], [-1187, 411], [-1187, 408]]}, "center": {"250-258, T": [-1193, 411]}}, +{"id": 6095, "name": "La drapeau d'Acadie", "description": "La drapeau de l'Acadie fait par le streamer Québécois MartyyVengeance et sa communautées", "links": {"website": ["https://www.twitch.tv/martyyvengeance"]}, "path": {"250-258, T": [[270, 999], [288, 999], [287, 991], [270, 991]]}, "center": {"250-258, T": [279, 995]}}, +{"id": 6096, "name": "Joint", "description": "A joint is a rolled cannabis cigarette. The Netherlands is known for its tolerance policy on drugs.\n\nMark Rutte, who is smoking the joint here, has spoken out against cannabis in the past. But probably the main reason people decided to have him smoke a joint was simply because they thought it looked funny.", "links": {"website": ["https://en.wikipedia.org/wiki/Joint_(cannabis)", "https://en.wikipedia.org/wiki/Drug_policy_of_the_Netherlands", "https://en.wikipedia.org/wiki/Cannabis_in_the_Netherlands"], "subreddit": ["PlaceNL"], "discord": ["placenl"]}, "path": {"116-258, T": [[470, -471], [459, -466], [462, -464], [471, -470]]}, "center": {"116-258, T": [463, -466]}}, +{"id": 6097, "name": "Giant moa", "description": "The giant moa is an extinct bird that was native to New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/Dinornis"], "subreddit": ["newzealand"], "discord": ["nz"]}, "path": {"224-258, T": [[1400, -109], [1402, -109], [1402, -106], [1400, -100], [1400, -94], [1406, -90], [1406, -83], [1405, -82], [1405, -81], [1413, -81], [1413, -90], [1416, -94], [1416, -96], [1413, -99], [1406, -99], [1406, -111], [1404, -113], [1400, -113], [1393, -117], [1392, -116], [1400, -111]]}, "center": {"224-258, T": [1409, -94]}}, +{"id": 6098, "name": "Kea", "description": "The kea is a bird native to New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/Kea"], "subreddit": ["newzealand"], "discord": ["nz"]}, "path": {"218-258, T": [[1420, -126], [1409, -121], [1407, -121], [1407, -120], [1413, -111], [1415, -110], [1421, -110], [1422, -111], [1428, -111], [1428, -113], [1428, -114], [1432, -117], [1431, -118], [1426, -115], [1425, -116], [1423, -116], [1423, -118], [1424, -119], [1424, -124], [1422, -126]]}, "center": {"218-258, T": [1417, -117]}}, +{"id": 6099, "name": "Kererū", "description": "The kererū is a type of pigeon native to New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/Kerer%C5%AB"], "subreddit": ["newzealand"], "discord": ["nz"]}, "path": {"223-258, T": [[1423, -99], [1418, -90], [1418, -87], [1421, -83], [1421, -81], [1429, -81], [1429, -83], [1433, -86], [1430, -90], [1426, -92], [1426, -94], [1428, -94], [1428, -97], [1431, -99], [1430, -100], [1428, -99]]}, "center": {"223-258, T": [1425, -87]}}, +{"id": 6100, "name": "Poi E", "description": "Poi E is an album by Pātea Māori Club, a New Zealand Māori cultural group. The man riding the giant moa is based on Poi E's album cover.", "links": {"website": ["https://en.wikipedia.org/wiki/Poi_E_(album)"], "subreddit": ["newzealand"], "discord": ["nz"]}, "path": {"223-258, T": [[1410, -110], [1407, -107], [1407, -103], [1405, -103], [1405, -102], [1407, -100], [1407, -94], [1406, -94], [1406, -92], [1409, -92], [1409, -95], [1410, -97], [1413, -97], [1413, -104], [1411, -107], [1411, -110]]}, "center": {"223-258, T": [1410, -101]}}, +{"id": 6101, "name": "Flag of the Netherlands", "description": "The Netherlands is a country in Northwestern Europe.\n\nThis area is the Netherlands's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL", "fuckspezplace"], "discord": ["PlaceNL", "fuckspez"]}, "path": {"205-258, T": [[1280, -172], [1258, -164], [1243, -149], [1240, -136], [1240, -55], [1248, -36], [1263, -24], [1279, -19], [1302, -19], [1321, -26], [1334, -38], [1342, -55], [1342, -136], [1335, -153], [1320, -166], [1303, -172]]}, "center": {"205-258, T": [1291, -95]}}, +{"id": 6102, "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America.\n\nThis area is Venezuela's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["vzla", "fuckspezplace"], "discord": ["fuckspez"]}, "path": {"206-258, T": [[1200, -170], [1200, -51], [1199, -50], [1195, -50], [1195, -21], [1236, -21], [1236, -170]]}, "center": {"206-258, T": [1216, -41]}}, +{"id": 6103, "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes.\n\nThis area is Costa Rica's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["Ticos", "fuckspezplace"], "discord": ["Ticord", "fuckspez"]}, "path": {"208-258, T": [[1128, -170], [1128, -47], [1130, -38], [1137, -28], [1146, -21], [1196, -21], [1196, -50], [1181, -50], [1180, -51], [1180, -170]]}, "center": {"208-258, T": [1154, -144]}}, +{"id": 6104, "name": "Flag of France", "description": "France is a country in Western Europe.\n\nThis area is France's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "fuckspezplace"], "discord": ["placeFR", "fuckspez"]}, "path": {"205-258, T": [[1046, -203], [1046, -21], [1099, -21], [1099, -92], [1120, -92], [1120, -130], [1097, -130], [1097, -159], [1125, -159], [1125, -203]]}, "center": {"205-258, T": [1075, -110]}}, +{"id": 6105, "name": "Flag of Germany", "description": "Germany is a country in Central Europe.\n\nThis area is Germany's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placeDE", "de", "fuckspezplace"], "discord": ["placeDE", "fuckspez"]}, "path": {"204-258, T": [[1055, -12], [1027, 7], [1022, 16], [1022, 62], [1030, 82], [1042, 95], [1062, 106], [1064, 109], [1029, 109], [1024, 113], [1024, 146], [1025, 146], [1025, 157], [1040, 173], [1059, 182], [1072, 183], [1073, 184], [1084, 184], [1085, 183], [1094, 183], [1103, 180], [1120, 167], [1129, 156], [1132, 147], [1131, 106], [1125, 93], [1104, 74], [1092, 65], [1091, 63], [1133, 63], [1139, 42], [1135, 20], [1130, 10], [1118, 0], [1098, -12]]}, "center": {"204-258, T": [1065, 31]}}, +{"id": 6106, "name": "Rainbow flag", "description": "The rainbow pride flag represents the LGBT community as a whole.\n\nThis is r/PlacePride's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)", "https://en.wikipedia.org/wiki/LGBT"], "subreddit": ["PlacePride", "fuckspezplace"], "discord": ["MUMhGkK4un", "fuckspez"]}, "path": {"204-258, T": [[1171, 34], [1143, 39], [1137, 50], [1135, 60], [1135, 116], [1243, 116], [1243, 54], [1238, 44], [1231, 37], [1212, 33]]}, "center": {"204-258, T": [1189, 75]}}, +{"id": 6107, "name": "Transgender flag", "description": "A pride flag representing the transgender community. Transgender people have a gender identity different from their sex assigned at birth.\n\nThis area is r/transplace's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)", "https://en.wikipedia.org/wiki/LGBT"], "subreddit": ["transplace", "fuckspezplace"], "discord": ["TransPlace", "fuckspez"]}, "path": {"202-258, T": [[1135, 115], [1135, 193], [1186, 193], [1186, 171], [1217, 171], [1231, 168], [1237, 163], [1243, 153], [1243, 115]]}, "center": {"202-258, T": [1166, 146]}}, +{"id": 6108, "name": "Flag of India", "description": "India is a country in South Asia.\n\nThis area is India's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace", "fuckspezplace"], "discord": ["indiaplace", "fuckspez"]}, "path": {"205-258, T": [[1285, 30], [1261, 40], [1253, 49], [1248, 58], [1246, 74], [1246, 139], [1251, 160], [1259, 170], [1279, 181], [1293, 183], [1309, 183], [1329, 177], [1342, 165], [1347, 158], [1351, 128], [1351, 75], [1346, 56], [1334, 40], [1312, 30]]}, "center": {"205-258, T": [1299, 107]}}, +{"id": 6109, "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America.\n\nThis area is Mexico's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "fuckspezplace"], "discord": ["fuckspez"]}, "path": {"207-258, T": [[1352, 32], [1352, 70], [1377, 70], [1351, 138], [1351, 181], [1430, 181], [1430, 142], [1407, 142], [1405, 141], [1405, 139], [1431, 69], [1431, 32]]}, "center": {"207-258, T": [1379, 153]}}, +{"id": 6110, "name": "El Castillo", "description": "El Castillo is a pyramid built by the Mayan people in the Yucatán Peninsula. It is the centerpiece of the ancient Mayan city of Chichén Itzá, one of the New 7 Wonders of the World.", "links": {"website": ["https://en.wikipedia.org/wiki/El_Castillo,_Chichen_Itza"], "subreddit": ["PlaceMexico", "fuckspezplace"], "discord": ["fuckspez"]}, "path": {"212-258, T": [[1388, 117], [1388, 119], [1372, 135], [1372, 136], [1406, 136], [1408, 132], [1408, 130], [1397, 119], [1397, 117]]}, "center": {"212-258, T": [1392, 127]}}, +{"id": 6111, "name": "Flag of Italy", "description": "Italy, officially the Republic of Italy (Repubblica Italiana), is a country in Southern Europe.\n\nThis area is Italy's contribution to the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy", "fuckspezplace"], "discord": ["yvfHmyVUs2", "fuckspez"]}, "path": {"205-258, T": [[1438, 136], [1438, 179], [1473, 179], [1473, 136]]}, "center": {"205-258, T": [1456, 158]}}, +{"id": 6112, "name": "Pizza", "description": "Pizza is an Italian dish with a flat dough topped with tomato sauce, cheese, and other toppings.", "links": {"website": ["https://en.wikipedia.org/wiki/Pizza"], "subreddit": ["italy", "fuckspezplace"], "discord": ["yvfHmyVUs2", "fuckspez"]}, "path": {"207-258, T": [[1456, 146], [1447, 154], [1447, 156], [1461, 167], [1463, 165], [1463, 158], [1459, 148]]}, "center": {"207-258, T": [1455, 155]}}, {"id": 6113, "name": "LetsHugo", "description": "Popular 20 year old Twitch Gamer from Luxembourg. Known for his Minecraft content and buying a Tesla before even paying taxes. He also owns two Houses. Perks of living in Luxembourg.", "links": {"website": ["https://www.youtube.com/@LetsHugo", "https://www.twitch.tv/letshugotv"]}, "path": {"12-39": [[469, -367], [499, -367], [500, -325], [468, -325], [468, -368], [500, -368], [500, -325]]}, "center": {"12-39": [479, -336]}}, -{"id": 6114, "name": "Lipe", "description": "The name Lipe on the Favela Five represents a unrelated brazilian youtube channel called Lipeze Uni", "links": {}, "path": {"123-258": [[30, 338], [40, 338], [40, 341], [30, 341]]}, "center": {"123-258": [35, 340]}}, -{"id": 6115, "name": "Baltica", "description": "Baltica Dry, or simply Baltica, is a Chilean beer brand.", "links": {}, "path": {"250-258": [[-1002, -771], [-1003, -769], [-1004, -767], [-1005, -764], [-1005, -757], [-1004, -756], [-998, -755], [-998, -756], [-997, -757], [-997, -766], [-998, -767], [-999, -769], [-999, -771]]}, "center": {"250-258": [-1001, -763]}}, -{"id": 6116, "name": "Thumpback", "description": "Thumpback is a whale-like behemoth and also one of the eight playable giants in 2012's Skylanders: Giants.\n\nThis pixel art was created by the members of the r/skylanders and it was placed on the Eastern Green Lattice.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Giants", "https://rb.gy/nq429"], "subreddit": ["skylanders"]}, "path": {"249-258": [[999, -792], [1000, -793], [1003, -793], [1004, -792], [1005, -791], [1010, -791], [1011, -790], [1012, -790], [1013, -790], [1013, -789], [1014, -789], [1014, -788], [1015, -788], [1016, -787], [1017, -786], [1017, -784], [1018, -783], [1018, -781], [1017, -780], [1019, -780], [1020, -779], [1019, -778], [1016, -778], [1018, -777], [1018, -775], [1018, -774], [1001, -774], [1000, -774], [1000, -776], [1001, -777], [1002, -777], [1002, -778], [1003, -779], [1004, -780], [1005, -780], [1004, -780], [1003, -781], [1002, -781], [1001, -782], [1000, -783], [999, -784], [998, -785], [998, -788], [999, -789], [999, -791], [999, -792], [1000, -793]]}, "center": {"249-258": [1010, -784]}}, -{"id": 6117, "name": "Clownpiece", "description": "Clownpiece is a boss character in Touhou Kanjuden ~ Legacy of Lunatic Kingdom.", "links": {"website": ["https://en.touhouwiki.net/wiki/Clownpiece"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"202-258": [[1286, 266], [1286, 299], [1312, 299], [1312, 297], [1315, 294], [1317, 294], [1317, 271], [1315, 271], [1312, 268], [1312, 266]]}, "center": {"202-258": [1302, 283]}}, -{"id": 6118, "name": "Elly", "description": "Elly is a character in Touhou Gensoukyou ~ Lotus Land Story.", "links": {"website": ["https://en.touhouwiki.net/wiki/Elly"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"172-177": [[-1383, 39], [-1383, 72], [-1352, 72], [-1352, 44], [-1354, 44], [-1357, 41], [-1357, 39]], "203-258": [[1322, 266], [1322, 268], [1319, 271], [1317, 271], [1317, 294], [1319, 294], [1322, 297], [1322, 299], [1343, 299], [1343, 297], [1346, 294], [1348, 294], [1348, 271], [1346, 271], [1343, 268], [1343, 266]]}, "center": {"172-177": [-1367, 56], "203-258": [1333, 283]}}, -{"id": 6119, "name": "Seija Kijin", "description": "Seija Kijin is the protagonist of the Touhou spin-off game Danmaku Amanojaku ~ Impossible Spell Card.", "links": {"website": ["https://en.touhouwiki.net/wiki/Seija_Kijin"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"205-258": [[1353, 365], [1353, 367], [1350, 370], [1348, 370], [1348, 394], [1379, 394], [1379, 365]]}, "center": {"205-258": [1364, 380]}}, -{"id": 6120, "name": "Chimata Tenkyuu", "description": "Chimata Tenkyuu is a stage boss in Touhou Kouryuudou ~ Unconnected Marketeers.", "links": {"website": ["https://en.touhouwiki.net/wiki/Chimata_Tenkyuu"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"173-177": [[-1414, 72], [-1414, 105], [-1383, 105], [-1383, 72]], "202-258": [[1286, 299], [1286, 332], [1312, 332], [1312, 330], [1315, 327], [1317, 327], [1317, 304], [1315, 304], [1312, 301], [1312, 299]]}, "center": {"173-177": [-1398, 89], "202-258": [1302, 316]}}, -{"id": 6121, "name": "Reisen Udongein Inaba", "description": "Reisen Udongein Inaba is a character from the Touhou games, first appearing as a stage boss in Touhou Eiyashou ~ Imperishable Night", "links": {"website": ["https://en.touhouwiki.net/wiki/Reisen_Udongein_Inaba"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"172-177": [[-1352, 6], [-1352, 34], [-1350, 34], [-1347, 37], [-1347, 39], [-1321, 39], [-1321, 6]], "202-258": [[1286, 233], [1286, 266], [1312, 266], [1312, 264], [1315, 261], [1317, 261], [1317, 233]]}, "center": {"172-177": [-1336, 23], "202-258": [1302, 250]}}, -{"id": 6122, "name": "Rin Satsuki", "description": "Rin Satsuki is an unused player character in Touhou Koumakyou ~ the Embodiment of Scarlet Devil", "links": {"website": ["https://en.touhouwiki.net/wiki/Rin_Satsuki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"172-177": [[-1352, 72], [-1352, 105], [-1321, 105], [-1321, 72]], "203-258": [[1353, 299], [1353, 301], [1350, 304], [1348, 304], [1348, 327], [1350, 327], [1353, 330], [1353, 332], [1379, 332], [1379, 299]]}, "center": {"172-177": [-1336, 89], "203-258": [1364, 316]}}, -{"id": 6123, "name": "Yuuka Kazami", "description": "Yuuka Kazami is a character from the Touhou games, first appearing as a stage boss in Touhou Gensoukyou ~ Lotus Land Story. This art features Yuuka in her pajamas.", "links": {"website": ["https://en.touhouwiki.net/wiki/Yuuka_Kazami"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"172-177": [[-1347, 39], [-1347, 41], [-1350, 44], [-1352, 44], [-1352, 72], [-1321, 72], [-1321, 39]], "203-258": [[1353, 266], [1353, 268], [1350, 271], [1348, 271], [1348, 294], [1350, 294], [1353, 297], [1353, 299], [1379, 299], [1379, 266]]}, "center": {"172-177": [-1336, 56], "203-258": [1364, 283]}}, -{"id": 6124, "name": "Kasen Ibaraki", "description": "Kasen Ibaraki is a character from Touhou Ibarakasen ~ Wild and Horned Hermit, a Touhou comic series.", "links": {"website": ["https://en.touhouwiki.net/wiki/Kasen_Ibaraki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"203-258": [[1317, 233], [1317, 261], [1319, 261], [1322, 264], [1322, 266], [1343, 266], [1343, 264], [1346, 261], [1348, 261], [1348, 233]]}, "center": {"203-258": [1333, 249]}}, -{"id": 6125, "name": "Suika Ibuki", "description": "Suika Ibuki is the main antagonist of Touhou Suimusou ~ Immaterial and Missing Power.", "links": {"website": ["https://en.touhouwiki.net/wiki/Suika_Ibuki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"203-258": [[1348, 233], [1348, 261], [1350, 261], [1353, 264], [1353, 266], [1379, 266], [1379, 233]]}, "center": {"203-258": [1364, 250]}}, -{"id": 6126, "name": "Norway", "description": "The country of Norway as it appears on a map, with the flag of Norway as the background.\n\nDespite working together on a different part on r/place, the Nordic countries used the r/PlaceEU map to fight over disputed geographical territory. Norway tried to take Jämtland in Sweden, and eventually removed Sweden from the map after Sweden's original flag was attacked, distributing the territory between Denmark, Finland, and itself.", "links": {"website": ["https://en.wikipedia.org/wiki/Norway", "https://en.wikipedia.org/wiki/Flag_of_Norway"], "subreddit": ["Norge", "PlaceEU"]}, "path": {"158-243": [[-231, 631], [-235, 634], [-239, 634], [-240, 640], [-242, 639], [-243, 639], [-256, 653], [-256, 655], [-255, 655], [-251, 652], [-251, 656], [-252, 656], [-259, 672], [-267, 680], [-275, 686], [-275, 693], [-276, 694], [-276, 695], [-275, 696], [-275, 701], [-274, 702], [-274, 706], [-269, 710], [-267, 710], [-262, 705], [-256, 702], [-254, 692], [-253, 691], [-253, 690], [-255, 688], [-255, 677], [-251, 673], [-252, 672], [-252, 671], [-247, 658], [-247, 654], [-242, 649], [-239, 644], [-237, 644], [-233, 646], [-231, 646], [-229, 644], [-229, 639], [-226, 637], [-224, 639], [-221, 639], [-218, 636], [-223, 631]], "244-258": [[-231, 631], [-252, 647], [-256, 654], [-256, 655], [-254, 655], [-252, 653], [-251, 653], [-251, 656], [-252, 656], [-261, 675], [-275, 686], [-275, 693], [-276, 694], [-276, 695], [-275, 696], [-274, 706], [-269, 710], [-268, 710], [-260, 704], [-258, 704], [-256, 711], [-253, 711], [-252, 712], [-251, 712], [-248, 708], [-251, 696], [-251, 693], [-247, 689], [-247, 685], [-253, 677], [-253, 675], [-249, 668], [-249, 662], [-247, 659], [-247, 653], [-243, 649], [-240, 649], [-239, 644], [-237, 644], [-237, 645], [-232, 645], [-227, 637], [-223, 640], [-219, 636], [-219, 635], [-223, 632]]}, "center": {"158-243": [-265, 694], "244-258": [-263, 692]}}, -{"id": 6127, "name": "Finland", "description": "The country of Finland as it appears on a map, with the flag of Finland as the background.\n\nDespite working together on a different part on r/place, the Nordic countries used the r/PlaceEU map to fight over disputed geographical territory. Finland just wanted to occupy Sweden, and eventually removed Sweden from the map after Sweden's original flag was attacked, distributing the territory between Denmark, Norway, and itself. Finland also took back some of the territory it had ceded to Russia after World War II.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["Suomi", "PlaceEU"]}, "path": {"158-240": [[-227, 637], [-229, 639], [-229, 644], [-231, 646], [-235, 646], [-235, 648], [-232, 651], [-230, 656], [-230, 660], [-225, 665], [-234, 680], [-234, 681], [-229, 694], [-224, 696], [-212, 688], [-206, 676], [-206, 674], [-210, 670], [-211, 670], [-211, 667], [-214, 663], [-214, 659], [-218, 654], [-218, 651], [-217, 650], [-217, 649], [-221, 646], [-222, 645], [-222, 640]], "241-258": [[-227, 636], [-232, 645], [-237, 645], [-237, 644], [-239, 644], [-240, 649], [-242, 649], [-247, 654], [-247, 659], [-249, 662], [-249, 668], [-253, 675], [-253, 677], [-247, 685], [-247, 689], [-251, 693], [-251, 696], [-248, 703], [-250, 709], [-250, 710], [-248, 710], [-241, 716], [-241, 704], [-237, 701], [-237, 699], [-236, 698], [-236, 696], [-239, 693], [-241, 693], [-242, 690], [-242, 687], [-241, 680], [-234, 674], [-234, 667], [-232, 663], [-226, 663], [-226, 668], [-230, 674], [-230, 677], [-232, 677], [-233, 681], [-231, 686], [-231, 693], [-228, 693], [-227, 694], [-222, 694], [-216, 690], [-213, 690], [-212, 694], [-209, 694], [-208, 693], [-206, 693], [-205, 694], [-200, 694], [-193, 691], [-193, 684], [-198, 684], [-202, 677], [-205, 674], [-205, 671], [-204, 670], [-204, 662], [-211, 662], [-218, 651], [-218, 645], [-222, 640]]}, "center": {"158-240": [-221, 680], "241-258": [-217, 677]}}, -{"id": 6128, "name": "Denmark", "description": "The country of Denmark as it appears on a map, with the flag of Denmark as the background.\n\nDespite working together on a different part on r/place, the Nordic countries used the r/PlaceEU map to fight over disputed geographical territory. Denmark tried to take Scania in southern Sweden, and Sweden tried to take Bornholm from Denmark. This fighting ended suddenly when Sweden's original flag was attacked, leading the three surrounding countries to carve up Sweden, removing it from the map.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark", "https://en.wikipedia.org/wiki/Flag_of_Denmark"], "subreddit": ["Denmark", "PlaceEU"]}, "path": {"158-242": [[-259, 707], [-264, 711], [-266, 711], [-266, 715], [-267, 716], [-267, 721], [-265, 725], [-252, 725], [-252, 718], [-254, 716], [-257, 716], [-257, 714], [-258, 714], [-258, 707]], "243-258": [[-261, 710], [-266, 714], [-267, 716], [-267, 722], [-266, 723], [-266, 726], [-262, 729], [-261, 729], [-257, 726], [-252, 726], [-246, 719], [-242, 719], [-240, 717], [-248, 710], [-251, 712], [-252, 712], [-253, 711], [-254, 712], [-253, 722], [-259, 715], [-259, 710]]}, "center": {"158-242": [-261, 719], "243-258": [-261, 722]}}, -{"id": 6129, "name": "Sápmi", "description": "Sápmi is a cultural region in northern Scandinavia inhabited by the indigenous Sámi people. Depicted is the Sápmi region with the Sámi flag as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/S%C3%A1pmi", "https://en.wikipedia.org/wiki/S%C3%A1mi_flag"], "subreddit": ["SaamiPeople", "PlaceEU"]}, "path": {"192-258": [[-216, 633], [-223, 640], [-217, 646], [-206, 650], [-203, 653], [-200, 653], [-198, 651], [-198, 642], [-206, 636], [-208, 636], [-211, 633]]}, "center": {"192-258": [-213, 640]}}, -{"id": 6130, "name": "Karelia", "description": "Karelia is a region consisting of parts of Finland and Russia, inhabited by the indigenous Karelian people. Depicted is the Russian portion of Karelia, with the Karelian flag as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Karelia", "https://en.wikipedia.org/wiki/Karelians"], "subreddit": ["Suomi", "PlaceEU"]}, "path": {"179-258": [[-219, 646], [-219, 648], [-216, 653], [-216, 658], [-213, 666], [-207, 674], [-207, 678], [-200, 684], [-198, 684], [-203, 676], [-202, 674], [-202, 671], [-204, 669], [-204, 666], [-202, 662], [-202, 661], [-205, 658], [-205, 656], [-208, 652], [-208, 650], [-212, 647]]}, "center": {"179-258": [-209, 662]}}, -{"id": 6131, "name": "Russia", "description": "This area depicts a portion of Russia with the Russian anti-war flag as a background. The flag is used by opponents of the current Russian government and its invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Russia", "https://en.wikipedia.org/wiki/White-blue-white_flag"], "subreddit": ["PlaceEU"]}, "path": {"225-244": [[-208, 650], [-208, 652], [-205, 656], [-205, 658], [-202, 661], [-202, 663], [-199, 663], [-196, 661], [-193, 661], [-193, 650], [-194, 650], [-196, 652], [-199, 652], [-200, 653], [-203, 653], [-206, 650]], "158-159": [[-216, 636], [-216, 641], [-219, 645], [-219, 653], [-215, 658], [-215, 663], [-211, 670], [-207, 672], [-207, 675], [-203, 681], [-203, 684], [-210, 691], [-211, 698], [-206, 710], [-198, 711], [-195, 717], [-189, 721], [-192, 723], [-190, 726], [-182, 726], [-175, 733], [-160, 733], [-158, 734], [-158, 738], [-153, 742], [-153, 700], [-193, 700], [-193, 642], [-207, 636]], "245-258": [[-208, 650], [-208, 652], [-202, 661], [-202, 663], [-198, 663], [-198, 652], [-199, 652], [-200, 653], [-203, 653], [-206, 650]]}, "center": {"225-244": [-198, 657], "158-159": [-169, 716], "245-258": [-201, 657]}}, -{"id": 6132, "name": "Ingria", "description": "Ingria is a region of Russia's Leningrad Oblast inhabited by ethnic Finnish, known as the Ingrian Finns.", "links": {"website": ["https://en.wikipedia.org/wiki/Ingria", "https://en.wikipedia.org/wiki/Ingrian_Finns"], "subreddit": ["Suomi", "PlaceEU"]}, "path": {"182-238": [[-209, 683], [-214, 689], [-211, 693], [-211, 699], [-209, 701], [-208, 700], [-203, 700], [-199, 697], [-193, 697], [-193, 694], [-195, 694], [-197, 692], [-197, 690], [-198, 690], [-200, 692], [-202, 692], [-204, 689], [-204, 688], [-200, 685], [-205, 683]], "243-258": [[-212, 691], [-212, 694], [-209, 698], [-209, 704], [-204, 704], [-201, 702], [-195, 702], [-193, 700], [-193, 696], [-198, 693], [-202, 693], [-206, 690], [-208, 690], [-209, 691]]}, "center": {"182-238": [-206, 695], "243-258": [-204, 698]}}, -{"id": 6133, "name": "Åland", "description": "Åland is an autonomous region in Finland. Depicted is the island of Åland as it appears on a map, with the flag of Åland as the background", "links": {"website": ["https://en.wikipedia.org/wiki/%C3%85land", "https://en.wikipedia.org/wiki/Flag_of_%C3%85land"], "subreddit": ["AlandIslands", "PlaceEU"]}, "path": {"209-258": [[-236, 689], [-238, 691], [-238, 693], [-235, 697], [-231, 697], [-229, 695], [-229, 694], [-232, 689]]}, "center": {"209-258": [-234, 693]}}, -{"id": 6134, "name": "Estonia", "description": "The country of Estonia as it appears on a map, with the flag of Estonia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia", "https://en.wikipedia.org/wiki/Flag_of_Estonia"], "subreddit": ["Eesti", "PlaceEU"]}, "path": {"158-258": [[-226, 695], [-229, 698], [-219, 707], [-217, 707], [-216, 705], [-213, 705], [-212, 706], [-207, 706], [-207, 704], [-208, 703], [-208, 699], [-211, 696], [-213, 693], [-217, 693], [-223, 697], [-224, 697]]}, "center": {"158-258": [-216, 699]}}, +{"id": 6114, "name": "Lipe", "description": "The name Lipe on the Favela Five represents a unrelated brazilian youtube channel called Lipeze Uni", "links": {}, "path": {"123-258, T": [[30, 338], [40, 338], [40, 341], [30, 341]]}, "center": {"123-258, T": [35, 340]}}, +{"id": 6115, "name": "Baltica", "description": "Baltica Dry, or simply Baltica, is a Chilean beer brand.", "links": {}, "path": {"250-258, T": [[-1002, -771], [-1003, -769], [-1004, -767], [-1005, -764], [-1005, -757], [-1004, -756], [-998, -755], [-998, -756], [-997, -757], [-997, -766], [-998, -767], [-999, -769], [-999, -771]]}, "center": {"250-258, T": [-1001, -763]}}, +{"id": 6116, "name": "Thumpback", "description": "Thumpback is a whale-like behemoth and also one of the eight playable giants in 2012's Skylanders: Giants.\n\nThis pixel art was created by the members of the r/skylanders and it was placed on the Eastern Green Lattice.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Giants", "https://rb.gy/nq429"], "subreddit": ["skylanders"]}, "path": {"249-258, T": [[999, -792], [1000, -793], [1003, -793], [1004, -792], [1005, -791], [1010, -791], [1011, -790], [1012, -790], [1013, -790], [1013, -789], [1014, -789], [1014, -788], [1015, -788], [1016, -787], [1017, -786], [1017, -784], [1018, -783], [1018, -781], [1017, -780], [1019, -780], [1020, -779], [1019, -778], [1016, -778], [1018, -777], [1018, -775], [1018, -774], [1001, -774], [1000, -774], [1000, -776], [1001, -777], [1002, -777], [1002, -778], [1003, -779], [1004, -780], [1005, -780], [1004, -780], [1003, -781], [1002, -781], [1001, -782], [1000, -783], [999, -784], [998, -785], [998, -788], [999, -789], [999, -791], [999, -792], [1000, -793]]}, "center": {"249-258, T": [1010, -784]}}, +{"id": 6117, "name": "Clownpiece", "description": "Clownpiece is a boss character in Touhou Kanjuden ~ Legacy of Lunatic Kingdom.", "links": {"website": ["https://en.touhouwiki.net/wiki/Clownpiece"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"202-258, T": [[1286, 266], [1286, 299], [1312, 299], [1312, 297], [1315, 294], [1317, 294], [1317, 271], [1315, 271], [1312, 268], [1312, 266]]}, "center": {"202-258, T": [1302, 283]}}, +{"id": 6118, "name": "Elly", "description": "Elly is a character in Touhou Gensoukyou ~ Lotus Land Story.", "links": {"website": ["https://en.touhouwiki.net/wiki/Elly"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"172-177": [[-1383, 39], [-1383, 72], [-1352, 72], [-1352, 44], [-1354, 44], [-1357, 41], [-1357, 39]], "203-258, T": [[1322, 266], [1322, 268], [1319, 271], [1317, 271], [1317, 294], [1319, 294], [1322, 297], [1322, 299], [1343, 299], [1343, 297], [1346, 294], [1348, 294], [1348, 271], [1346, 271], [1343, 268], [1343, 266]]}, "center": {"172-177": [-1367, 56], "203-258, T": [1333, 283]}}, +{"id": 6119, "name": "Seija Kijin", "description": "Seija Kijin is the protagonist of the Touhou spin-off game Danmaku Amanojaku ~ Impossible Spell Card.", "links": {"website": ["https://en.touhouwiki.net/wiki/Seija_Kijin"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"205-258, T": [[1353, 365], [1353, 367], [1350, 370], [1348, 370], [1348, 394], [1379, 394], [1379, 365]]}, "center": {"205-258, T": [1364, 380]}}, +{"id": 6120, "name": "Chimata Tenkyuu", "description": "Chimata Tenkyuu is a stage boss in Touhou Kouryuudou ~ Unconnected Marketeers.", "links": {"website": ["https://en.touhouwiki.net/wiki/Chimata_Tenkyuu"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"173-177": [[-1414, 72], [-1414, 105], [-1383, 105], [-1383, 72]], "202-258, T": [[1286, 299], [1286, 332], [1312, 332], [1312, 330], [1315, 327], [1317, 327], [1317, 304], [1315, 304], [1312, 301], [1312, 299]]}, "center": {"173-177": [-1398, 89], "202-258, T": [1302, 316]}}, +{"id": 6121, "name": "Reisen Udongein Inaba", "description": "Reisen Udongein Inaba is a character from the Touhou games, first appearing as a stage boss in Touhou Eiyashou ~ Imperishable Night", "links": {"website": ["https://en.touhouwiki.net/wiki/Reisen_Udongein_Inaba"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"172-177": [[-1352, 6], [-1352, 34], [-1350, 34], [-1347, 37], [-1347, 39], [-1321, 39], [-1321, 6]], "202-258, T": [[1286, 233], [1286, 266], [1312, 266], [1312, 264], [1315, 261], [1317, 261], [1317, 233]]}, "center": {"172-177": [-1336, 23], "202-258, T": [1302, 250]}}, +{"id": 6122, "name": "Rin Satsuki", "description": "Rin Satsuki is an unused player character in Touhou Koumakyou ~ the Embodiment of Scarlet Devil", "links": {"website": ["https://en.touhouwiki.net/wiki/Rin_Satsuki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"172-177": [[-1352, 72], [-1352, 105], [-1321, 105], [-1321, 72]], "203-258, T": [[1353, 299], [1353, 301], [1350, 304], [1348, 304], [1348, 327], [1350, 327], [1353, 330], [1353, 332], [1379, 332], [1379, 299]]}, "center": {"172-177": [-1336, 89], "203-258, T": [1364, 316]}}, +{"id": 6123, "name": "Yuuka Kazami", "description": "Yuuka Kazami is a character from the Touhou games, first appearing as a stage boss in Touhou Gensoukyou ~ Lotus Land Story. This art features Yuuka in her pajamas.", "links": {"website": ["https://en.touhouwiki.net/wiki/Yuuka_Kazami"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"172-177": [[-1347, 39], [-1347, 41], [-1350, 44], [-1352, 44], [-1352, 72], [-1321, 72], [-1321, 39]], "203-258, T": [[1353, 266], [1353, 268], [1350, 271], [1348, 271], [1348, 294], [1350, 294], [1353, 297], [1353, 299], [1379, 299], [1379, 266]]}, "center": {"172-177": [-1336, 56], "203-258, T": [1364, 283]}}, +{"id": 6124, "name": "Kasen Ibaraki", "description": "Kasen Ibaraki is a character from Touhou Ibarakasen ~ Wild and Horned Hermit, a Touhou comic series.", "links": {"website": ["https://en.touhouwiki.net/wiki/Kasen_Ibaraki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"203-258, T": [[1317, 233], [1317, 261], [1319, 261], [1322, 264], [1322, 266], [1343, 266], [1343, 264], [1346, 261], [1348, 261], [1348, 233]]}, "center": {"203-258, T": [1333, 249]}}, +{"id": 6125, "name": "Suika Ibuki", "description": "Suika Ibuki is the main antagonist of Touhou Suimusou ~ Immaterial and Missing Power.", "links": {"website": ["https://en.touhouwiki.net/wiki/Suika_Ibuki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"203-258, T": [[1348, 233], [1348, 261], [1350, 261], [1353, 264], [1353, 266], [1379, 266], [1379, 233]]}, "center": {"203-258, T": [1364, 250]}}, +{"id": 6126, "name": "Norway", "description": "The country of Norway as it appears on a map, with the flag of Norway as the background.\n\nDespite working together on a different part on r/place, the Nordic countries used the r/PlaceEU map to fight over disputed geographical territory. Norway tried to take Jämtland in Sweden, and eventually removed Sweden from the map after Sweden's original flag was attacked, distributing the territory between Denmark, Finland, and itself.", "links": {"website": ["https://en.wikipedia.org/wiki/Norway", "https://en.wikipedia.org/wiki/Flag_of_Norway"], "subreddit": ["Norge", "PlaceEU"]}, "path": {"158-243": [[-231, 631], [-235, 634], [-239, 634], [-240, 640], [-242, 639], [-243, 639], [-256, 653], [-256, 655], [-255, 655], [-251, 652], [-251, 656], [-252, 656], [-259, 672], [-267, 680], [-275, 686], [-275, 693], [-276, 694], [-276, 695], [-275, 696], [-275, 701], [-274, 702], [-274, 706], [-269, 710], [-267, 710], [-262, 705], [-256, 702], [-254, 692], [-253, 691], [-253, 690], [-255, 688], [-255, 677], [-251, 673], [-252, 672], [-252, 671], [-247, 658], [-247, 654], [-242, 649], [-239, 644], [-237, 644], [-233, 646], [-231, 646], [-229, 644], [-229, 639], [-226, 637], [-224, 639], [-221, 639], [-218, 636], [-223, 631]], "244-258, T": [[-231, 631], [-252, 647], [-256, 654], [-256, 655], [-254, 655], [-252, 653], [-251, 653], [-251, 656], [-252, 656], [-261, 675], [-275, 686], [-275, 693], [-276, 694], [-276, 695], [-275, 696], [-274, 706], [-269, 710], [-268, 710], [-260, 704], [-258, 704], [-256, 711], [-253, 711], [-252, 712], [-251, 712], [-248, 708], [-251, 696], [-251, 693], [-247, 689], [-247, 685], [-253, 677], [-253, 675], [-249, 668], [-249, 662], [-247, 659], [-247, 653], [-243, 649], [-240, 649], [-239, 644], [-237, 644], [-237, 645], [-232, 645], [-227, 637], [-223, 640], [-219, 636], [-219, 635], [-223, 632]]}, "center": {"158-243": [-265, 694], "244-258, T": [-263, 692]}}, +{"id": 6127, "name": "Finland", "description": "The country of Finland as it appears on a map, with the flag of Finland as the background.\n\nDespite working together on a different part on r/place, the Nordic countries used the r/PlaceEU map to fight over disputed geographical territory. Finland just wanted to occupy Sweden, and eventually removed Sweden from the map after Sweden's original flag was attacked, distributing the territory between Denmark, Norway, and itself. Finland also took back some of the territory it had ceded to Russia after World War II.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["Suomi", "PlaceEU"]}, "path": {"158-240": [[-227, 637], [-229, 639], [-229, 644], [-231, 646], [-235, 646], [-235, 648], [-232, 651], [-230, 656], [-230, 660], [-225, 665], [-234, 680], [-234, 681], [-229, 694], [-224, 696], [-212, 688], [-206, 676], [-206, 674], [-210, 670], [-211, 670], [-211, 667], [-214, 663], [-214, 659], [-218, 654], [-218, 651], [-217, 650], [-217, 649], [-221, 646], [-222, 645], [-222, 640]], "241-258, T": [[-227, 636], [-232, 645], [-237, 645], [-237, 644], [-239, 644], [-240, 649], [-242, 649], [-247, 654], [-247, 659], [-249, 662], [-249, 668], [-253, 675], [-253, 677], [-247, 685], [-247, 689], [-251, 693], [-251, 696], [-248, 703], [-250, 709], [-250, 710], [-248, 710], [-241, 716], [-241, 704], [-237, 701], [-237, 699], [-236, 698], [-236, 696], [-239, 693], [-241, 693], [-242, 690], [-242, 687], [-241, 680], [-234, 674], [-234, 667], [-232, 663], [-226, 663], [-226, 668], [-230, 674], [-230, 677], [-232, 677], [-233, 681], [-231, 686], [-231, 693], [-228, 693], [-227, 694], [-222, 694], [-216, 690], [-213, 690], [-212, 694], [-209, 694], [-208, 693], [-206, 693], [-205, 694], [-200, 694], [-193, 691], [-193, 684], [-198, 684], [-202, 677], [-205, 674], [-205, 671], [-204, 670], [-204, 662], [-211, 662], [-218, 651], [-218, 645], [-222, 640]]}, "center": {"158-240": [-221, 680], "241-258, T": [-217, 677]}}, +{"id": 6128, "name": "Denmark", "description": "The country of Denmark as it appears on a map, with the flag of Denmark as the background.\n\nDespite working together on a different part on r/place, the Nordic countries used the r/PlaceEU map to fight over disputed geographical territory. Denmark tried to take Scania in southern Sweden, and Sweden tried to take Bornholm from Denmark. This fighting ended suddenly when Sweden's original flag was attacked, leading the three surrounding countries to carve up Sweden, removing it from the map.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark", "https://en.wikipedia.org/wiki/Flag_of_Denmark"], "subreddit": ["Denmark", "PlaceEU"]}, "path": {"158-242": [[-259, 707], [-264, 711], [-266, 711], [-266, 715], [-267, 716], [-267, 721], [-265, 725], [-252, 725], [-252, 718], [-254, 716], [-257, 716], [-257, 714], [-258, 714], [-258, 707]], "243-258, T": [[-261, 710], [-266, 714], [-267, 716], [-267, 722], [-266, 723], [-266, 726], [-262, 729], [-261, 729], [-257, 726], [-252, 726], [-246, 719], [-242, 719], [-240, 717], [-248, 710], [-251, 712], [-252, 712], [-253, 711], [-254, 712], [-253, 722], [-259, 715], [-259, 710]]}, "center": {"158-242": [-261, 719], "243-258, T": [-261, 722]}}, +{"id": 6129, "name": "Sápmi", "description": "Sápmi is a cultural region in northern Scandinavia inhabited by the indigenous Sámi people. Depicted is the Sápmi region with the Sámi flag as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/S%C3%A1pmi", "https://en.wikipedia.org/wiki/S%C3%A1mi_flag"], "subreddit": ["SaamiPeople", "PlaceEU"]}, "path": {"192-258, T": [[-216, 633], [-223, 640], [-217, 646], [-206, 650], [-203, 653], [-200, 653], [-198, 651], [-198, 642], [-206, 636], [-208, 636], [-211, 633]]}, "center": {"192-258, T": [-213, 640]}}, +{"id": 6130, "name": "Karelia", "description": "Karelia is a region consisting of parts of Finland and Russia, inhabited by the indigenous Karelian people. Depicted is the Russian portion of Karelia, with the Karelian flag as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Karelia", "https://en.wikipedia.org/wiki/Karelians"], "subreddit": ["Suomi", "PlaceEU"]}, "path": {"179-258, T": [[-219, 646], [-219, 648], [-216, 653], [-216, 658], [-213, 666], [-207, 674], [-207, 678], [-200, 684], [-198, 684], [-203, 676], [-202, 674], [-202, 671], [-204, 669], [-204, 666], [-202, 662], [-202, 661], [-205, 658], [-205, 656], [-208, 652], [-208, 650], [-212, 647]]}, "center": {"179-258, T": [-209, 662]}}, +{"id": 6131, "name": "Russia", "description": "This area depicts a portion of Russia with the Russian anti-war flag as a background. The flag is used by opponents of the current Russian government and its invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Russia", "https://en.wikipedia.org/wiki/White-blue-white_flag"], "subreddit": ["PlaceEU"]}, "path": {"225-244": [[-208, 650], [-208, 652], [-205, 656], [-205, 658], [-202, 661], [-202, 663], [-199, 663], [-196, 661], [-193, 661], [-193, 650], [-194, 650], [-196, 652], [-199, 652], [-200, 653], [-203, 653], [-206, 650]], "158-159": [[-216, 636], [-216, 641], [-219, 645], [-219, 653], [-215, 658], [-215, 663], [-211, 670], [-207, 672], [-207, 675], [-203, 681], [-203, 684], [-210, 691], [-211, 698], [-206, 710], [-198, 711], [-195, 717], [-189, 721], [-192, 723], [-190, 726], [-182, 726], [-175, 733], [-160, 733], [-158, 734], [-158, 738], [-153, 742], [-153, 700], [-193, 700], [-193, 642], [-207, 636]], "245-258, T": [[-208, 650], [-208, 652], [-202, 661], [-202, 663], [-198, 663], [-198, 652], [-199, 652], [-200, 653], [-203, 653], [-206, 650]]}, "center": {"225-244": [-198, 657], "158-159": [-169, 716], "245-258, T": [-201, 657]}}, +{"id": 6132, "name": "Ingria", "description": "Ingria is a region of Russia's Leningrad Oblast inhabited by ethnic Finnish, known as the Ingrian Finns.", "links": {"website": ["https://en.wikipedia.org/wiki/Ingria", "https://en.wikipedia.org/wiki/Ingrian_Finns"], "subreddit": ["Suomi", "PlaceEU"]}, "path": {"182-238": [[-209, 683], [-214, 689], [-211, 693], [-211, 699], [-209, 701], [-208, 700], [-203, 700], [-199, 697], [-193, 697], [-193, 694], [-195, 694], [-197, 692], [-197, 690], [-198, 690], [-200, 692], [-202, 692], [-204, 689], [-204, 688], [-200, 685], [-205, 683]], "243-258, T": [[-212, 691], [-212, 694], [-209, 698], [-209, 704], [-204, 704], [-201, 702], [-195, 702], [-193, 700], [-193, 696], [-198, 693], [-202, 693], [-206, 690], [-208, 690], [-209, 691]]}, "center": {"182-238": [-206, 695], "243-258, T": [-204, 698]}}, +{"id": 6133, "name": "Åland", "description": "Åland is an autonomous region in Finland. Depicted is the island of Åland as it appears on a map, with the flag of Åland as the background", "links": {"website": ["https://en.wikipedia.org/wiki/%C3%85land", "https://en.wikipedia.org/wiki/Flag_of_%C3%85land"], "subreddit": ["AlandIslands", "PlaceEU"]}, "path": {"209-258, T": [[-236, 689], [-238, 691], [-238, 693], [-235, 697], [-231, 697], [-229, 695], [-229, 694], [-232, 689]]}, "center": {"209-258, T": [-234, 693]}}, +{"id": 6134, "name": "Estonia", "description": "The country of Estonia as it appears on a map, with the flag of Estonia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia", "https://en.wikipedia.org/wiki/Flag_of_Estonia"], "subreddit": ["Eesti", "PlaceEU"]}, "path": {"158-258, T": [[-226, 695], [-229, 698], [-219, 707], [-217, 707], [-216, 705], [-213, 705], [-212, 706], [-207, 706], [-207, 704], [-208, 703], [-208, 699], [-211, 696], [-213, 693], [-217, 693], [-223, 697], [-224, 697]]}, "center": {"158-258, T": [-216, 699]}}, {"id": 6135, "name": "Latvia", "description": "The country of Latvia as it appears on a map, with the flag of Latvia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Latvia", "https://en.wikipedia.org/wiki/Flag_of_Latvia"], "subreddit": ["latvia", "PlaceEU"]}, "path": {"247-250": [[-228, 701], [-228, 705], [-234, 705], [-238, 709], [-238, 712], [-236, 714], [-213, 714], [-212, 715], [-210, 716], [-208, 716], [-206, 713], [-200, 712], [-197, 712], [-193, 714], [-193, 715], [-191, 717], [-186, 713], [-186, 705], [-188, 702], [-191, 701], [-194, 701], [-195, 702], [-201, 702], [-208, 706], [-213, 706], [-214, 705], [-215, 705], [-220, 709], [-221, 709], [-223, 707], [-223, 701]], "251-258": [[-235, 705], [-238, 709], [-238, 712], [-236, 714], [-229, 714], [-228, 715], [-227, 714], [-212, 714], [-197, 719], [-190, 719], [-186, 723], [-181, 723], [-180, 726], [-174, 729], [-153, 729], [-153, 732], [-152, 732], [-144, 721], [-134, 716], [-112, 716], [-112, 701], [-200, 701], [-207, 706], [-213, 706], [-218, 704], [-220, 704], [-220, 707], [-221, 707], [-223, 705], [-225, 705]], "158-246": [[-225, 706], [-230, 712], [-230, 715], [-226, 715], [-225, 714], [-218, 714], [-217, 713], [-214, 713], [-212, 715], [-209, 715], [-207, 713], [-207, 710], [-209, 708], [-209, 705], [-215, 705], [-216, 704], [-220, 704], [-220, 706], [-219, 707], [-219, 708], [-220, 709], [-221, 709], [-224, 706]]}, "center": {"247-250": [-192, 707], "251-258": [-157, 715], "158-246": [-213, 709]}}, -{"id": 6136, "name": "Lithuania", "description": "The country of Lithuania as it appears on a map, with the flag of Lithuania as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Flag_of_Lithuania"], "subreddit": ["lithuania", "PlaceEU"]}, "path": {"158-223": [[-225, 714], [-228, 717], [-228, 719], [-226, 721], [-222, 721], [-218, 726], [-215, 726], [-212, 723], [-212, 721], [-209, 718], [-210, 717], [-210, 715], [-212, 715], [-214, 713], [-217, 713], [-218, 714]], "224-258": [[-228, 714], [-231, 720], [-231, 722], [-225, 726], [-219, 726], [-219, 727], [-217, 727], [-211, 720], [-209, 717], [-209, 715], [-212, 715], [-214, 713], [-215, 714]]}, "center": {"158-223": [-217, 719], "224-258": [-220, 720]}}, -{"id": 6137, "name": "Iceland", "description": "The country of Iceland as it appears on a map, with the flag of Iceland as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Iceland", "https://en.wikipedia.org/wiki/Flag_of_Iceland"], "subreddit": ["Iceland", "PlaceEU"]}, "path": {"158-243": [[-333, 645], [-339, 649], [-339, 652], [-340, 653], [-337, 656], [-337, 657], [-338, 657], [-340, 659], [-338, 661], [-336, 661], [-333, 665], [-330, 667], [-328, 667], [-327, 666], [-322, 666], [-317, 664], [-314, 661], [-314, 658], [-315, 657], [-315, 652], [-317, 652], [-317, 650], [-319, 650], [-321, 652], [-322, 652], [-325, 650], [-329, 650], [-330, 649], [-330, 647], [-332, 645]], "244-258": [[-332, 646], [-338, 650], [-339, 651], [-339, 653], [-336, 656], [-336, 658], [-338, 658], [-339, 659], [-332, 665], [-331, 665], [-330, 666], [-328, 666], [-327, 665], [-323, 665], [-322, 664], [-318, 664], [-318, 651], [-320, 651], [-320, 653], [-322, 653], [-326, 650], [-331, 650], [-331, 646]]}, "center": {"158-243": [-328, 658], "244-258": [-329, 658]}}, -{"id": 6138, "name": "Scotland", "description": "The country of Scotland as it appears on a map within the United Kingdom, with the flag of Scotland as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland", "https://en.wikipedia.org/wiki/Flag_of_Scotland"], "subreddit": ["Scotland", "PlaceEU"]}, "path": {"159-258": [[-309, 700], [-311, 703], [-311, 717], [-308, 720], [-308, 723], [-305, 723], [-304, 724], [-304, 727], [-302, 727], [-299, 722], [-297, 722], [-296, 720], [-296, 718], [-298, 715], [-294, 710], [-294, 707], [-299, 706], [-299, 705], [-296, 702], [-296, 700]]}, "center": {"159-258": [-304, 711]}}, -{"id": 6139, "name": "England", "description": "The country of England as it appears on a map within the United Kingdom, with the flag of England as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/England", "https://en.wikipedia.org/wiki/Flag_of_England"], "subreddit": ["england", "PlaceEU"]}, "path": {"159-215": [[-300, 719], [-304, 724], [-304, 741], [-310, 741], [-316, 746], [-316, 747], [-309, 747], [-309, 748], [-307, 748], [-306, 747], [-301, 747], [-298, 749], [-297, 749], [-295, 747], [-292, 747], [-289, 744], [-289, 741], [-286, 738], [-286, 737], [-289, 733], [-291, 733], [-293, 725], [-295, 724], [-295, 718]], "216-258": [[-299, 721], [-302, 726], [-302, 739], [-305, 739], [-305, 745], [-299, 748], [-297, 747], [-289, 747], [-289, 741], [-287, 738], [-287, 735], [-289, 733], [-291, 733], [-291, 729], [-295, 722]]}, "center": {"159-215": [-297, 738], "216-258": [-295, 738]}}, -{"id": 6140, "name": "Wales", "description": "The country of Wales as it appears on a map within the United Kingdom, with the flag of Wales as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Wales", "https://en.wikipedia.org/wiki/Flag_of_Wales"], "subreddit": ["placewales", "PlaceEU"]}, "path": {"159-258": [[-309, 728], [-312, 732], [-310, 734], [-310, 735], [-313, 738], [-313, 741], [-310, 741], [-309, 740], [-308, 739], [-302, 739], [-302, 730]]}, "center": {"159-258": [-306, 735]}}, -{"id": 6141, "name": "Ireland", "description": "The country of Ireland as it appears on a map, with the flag of Ireland as the background. Northern Ireland, a region on the island of Ireland that is part of the United Kingdom, is included in this outline.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland", "PlaceEU"]}, "path": {"158-258": [[-317, 716], [-320, 719], [-323, 719], [-327, 723], [-327, 725], [-325, 727], [-325, 729], [-329, 733], [-329, 734], [-324, 737], [-321, 737], [-312, 733], [-308, 723], [-308, 721], [-313, 716]]}, "center": {"158-258": [-318, 726]}}, -{"id": 6142, "name": "Belgium", "description": "The country of Belgium as it appears on a map, with the flag of Belgium as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium", "PlaceEU"]}, "path": {"158-258": [[-284, 743], [-287, 746], [-278, 754], [-276, 755], [-274, 752], [-274, 746], [-277, 743]]}, "center": {"158-258": [-279, 748]}}, -{"id": 6143, "name": "Germany", "description": "The country of Germany as it appears on a map, with the flag of Germany as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placeDE", "de", "PlaceEU"], "discord": ["placeDE"]}, "path": {"158-258": [[-264, 728], [-267, 732], [-271, 732], [-271, 741], [-272, 742], [-273, 759], [-270, 759], [-270, 765], [-266, 765], [-265, 764], [-261, 764], [-260, 765], [-251, 765], [-250, 764], [-249, 758], [-253, 752], [-253, 751], [-252, 749], [-243, 746], [-246, 728]]}, "center": {"158-258": [-258, 739]}}, -{"id": 6144, "name": "Poland", "description": "The country of Poland as it appears on a map, with the flag of Poland as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Flag_of_Poland"], "subreddit": ["Polska", "poland", "PlaceEU"]}, "path": {"158-258": [[-231, 722], [-245, 728], [-245, 742], [-242, 746], [-228, 753], [-224, 753], [-223, 752], [-220, 752], [-219, 753], [-217, 753], [-214, 748], [-214, 744], [-215, 743], [-215, 734], [-214, 734], [-214, 730], [-219, 726], [-225, 726]]}, "center": {"158-258": [-229, 738]}}, -{"id": 6145, "name": "Luxembourg", "description": "The country of Luxembourg as it appears on a map, with the flag of Luxembourg as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Luxembourg", "https://en.wikipedia.org/wiki/Flag_of_Luxembourg"], "subreddit": ["placeluxembourg", "PlaceEU"]}, "path": {"158-220, 230-253": [[-274, 752], [-276, 755], [-274, 757], [-272, 757], [-272, 754]]}, "center": {"158-220, 230-253": [-274, 755]}}, -{"id": 6146, "name": "Austria", "description": "The country of Austria as it appears on a map, with the flag of Austria as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["placeAustria", "Austria", "PlaceEU"], "discord": ["f5ky84vGku"]}, "path": {"158-244": [[-246, 759], [-255, 766], [-260, 766], [-260, 769], [-256, 769], [-255, 768], [-253, 768], [-248, 771], [-246, 771], [-237, 767], [-235, 761], [-237, 758], [-240, 757]], "245-258": [[-247, 758], [-251, 764], [-251, 765], [-257, 765], [-258, 764], [-261, 764], [-259, 770], [-257, 768], [-249, 768], [-247, 770], [-235, 770], [-232, 767], [-232, 766], [-239, 758]]}, "center": {"158-244": [-243, 764], "245-258": [-243, 764]}}, +{"id": 6136, "name": "Lithuania", "description": "The country of Lithuania as it appears on a map, with the flag of Lithuania as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Flag_of_Lithuania"], "subreddit": ["lithuania", "PlaceEU"]}, "path": {"158-223": [[-225, 714], [-228, 717], [-228, 719], [-226, 721], [-222, 721], [-218, 726], [-215, 726], [-212, 723], [-212, 721], [-209, 718], [-210, 717], [-210, 715], [-212, 715], [-214, 713], [-217, 713], [-218, 714]], "224-258, T": [[-228, 714], [-231, 720], [-231, 722], [-225, 726], [-219, 726], [-219, 727], [-217, 727], [-211, 720], [-209, 717], [-209, 715], [-212, 715], [-214, 713], [-215, 714]]}, "center": {"158-223": [-217, 719], "224-258, T": [-220, 720]}}, +{"id": 6137, "name": "Iceland", "description": "The country of Iceland as it appears on a map, with the flag of Iceland as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Iceland", "https://en.wikipedia.org/wiki/Flag_of_Iceland"], "subreddit": ["Iceland", "PlaceEU"]}, "path": {"158-243": [[-333, 645], [-339, 649], [-339, 652], [-340, 653], [-337, 656], [-337, 657], [-338, 657], [-340, 659], [-338, 661], [-336, 661], [-333, 665], [-330, 667], [-328, 667], [-327, 666], [-322, 666], [-317, 664], [-314, 661], [-314, 658], [-315, 657], [-315, 652], [-317, 652], [-317, 650], [-319, 650], [-321, 652], [-322, 652], [-325, 650], [-329, 650], [-330, 649], [-330, 647], [-332, 645]], "244-258, T": [[-332, 646], [-338, 650], [-339, 651], [-339, 653], [-336, 656], [-336, 658], [-338, 658], [-339, 659], [-332, 665], [-331, 665], [-330, 666], [-328, 666], [-327, 665], [-323, 665], [-322, 664], [-318, 664], [-318, 651], [-320, 651], [-320, 653], [-322, 653], [-326, 650], [-331, 650], [-331, 646]]}, "center": {"158-243": [-328, 658], "244-258, T": [-329, 658]}}, +{"id": 6138, "name": "Scotland", "description": "The country of Scotland as it appears on a map within the United Kingdom, with the flag of Scotland as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland", "https://en.wikipedia.org/wiki/Flag_of_Scotland"], "subreddit": ["Scotland", "PlaceEU"]}, "path": {"159-258, T": [[-309, 700], [-311, 703], [-311, 717], [-308, 720], [-308, 723], [-305, 723], [-304, 724], [-304, 727], [-302, 727], [-299, 722], [-297, 722], [-296, 720], [-296, 718], [-298, 715], [-294, 710], [-294, 707], [-299, 706], [-299, 705], [-296, 702], [-296, 700]]}, "center": {"159-258, T": [-304, 711]}}, +{"id": 6139, "name": "England", "description": "The country of England as it appears on a map within the United Kingdom, with the flag of England as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/England", "https://en.wikipedia.org/wiki/Flag_of_England"], "subreddit": ["england", "PlaceEU"]}, "path": {"159-215": [[-300, 719], [-304, 724], [-304, 741], [-310, 741], [-316, 746], [-316, 747], [-309, 747], [-309, 748], [-307, 748], [-306, 747], [-301, 747], [-298, 749], [-297, 749], [-295, 747], [-292, 747], [-289, 744], [-289, 741], [-286, 738], [-286, 737], [-289, 733], [-291, 733], [-293, 725], [-295, 724], [-295, 718]], "216-258, T": [[-299, 721], [-302, 726], [-302, 739], [-305, 739], [-305, 745], [-299, 748], [-297, 747], [-289, 747], [-289, 741], [-287, 738], [-287, 735], [-289, 733], [-291, 733], [-291, 729], [-295, 722]]}, "center": {"159-215": [-297, 738], "216-258, T": [-295, 738]}}, +{"id": 6140, "name": "Wales", "description": "The country of Wales as it appears on a map within the United Kingdom, with the flag of Wales as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Wales", "https://en.wikipedia.org/wiki/Flag_of_Wales"], "subreddit": ["placewales", "PlaceEU"]}, "path": {"159-258, T": [[-309, 728], [-312, 732], [-310, 734], [-310, 735], [-313, 738], [-313, 741], [-310, 741], [-309, 740], [-308, 739], [-302, 739], [-302, 730]]}, "center": {"159-258, T": [-306, 735]}}, +{"id": 6141, "name": "Ireland", "description": "The country of Ireland as it appears on a map, with the flag of Ireland as the background. Northern Ireland, a region on the island of Ireland that is part of the United Kingdom, is included in this outline.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland", "PlaceEU"]}, "path": {"158-258, T": [[-317, 716], [-320, 719], [-323, 719], [-327, 723], [-327, 725], [-325, 727], [-325, 729], [-329, 733], [-329, 734], [-324, 737], [-321, 737], [-312, 733], [-308, 723], [-308, 721], [-313, 716]]}, "center": {"158-258, T": [-318, 726]}}, +{"id": 6142, "name": "Belgium", "description": "The country of Belgium as it appears on a map, with the flag of Belgium as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium", "PlaceEU"]}, "path": {"158-258, T": [[-284, 743], [-287, 746], [-278, 754], [-276, 755], [-274, 752], [-274, 746], [-277, 743]]}, "center": {"158-258, T": [-279, 748]}}, +{"id": 6143, "name": "Germany", "description": "The country of Germany as it appears on a map, with the flag of Germany as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placeDE", "de", "PlaceEU"], "discord": ["placeDE"]}, "path": {"158-258, T": [[-264, 728], [-267, 732], [-271, 732], [-271, 741], [-272, 742], [-273, 759], [-270, 759], [-270, 765], [-266, 765], [-265, 764], [-261, 764], [-260, 765], [-251, 765], [-250, 764], [-249, 758], [-253, 752], [-253, 751], [-252, 749], [-243, 746], [-246, 728]]}, "center": {"158-258, T": [-258, 739]}}, +{"id": 6144, "name": "Poland", "description": "The country of Poland as it appears on a map, with the flag of Poland as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Flag_of_Poland"], "subreddit": ["Polska", "poland", "PlaceEU"]}, "path": {"158-258, T": [[-231, 722], [-245, 728], [-245, 742], [-242, 746], [-228, 753], [-224, 753], [-223, 752], [-220, 752], [-219, 753], [-217, 753], [-214, 748], [-214, 744], [-215, 743], [-215, 734], [-214, 734], [-214, 730], [-219, 726], [-225, 726]]}, "center": {"158-258, T": [-229, 738]}}, +{"id": 6145, "name": "Luxembourg", "description": "The country of Luxembourg as it appears on a map, with the flag of Luxembourg as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Luxembourg", "https://en.wikipedia.org/wiki/Flag_of_Luxembourg"], "subreddit": ["placeluxembourg", "PlaceEU"]}, "path": {"158-220, 230-253, T": [[-274, 752], [-276, 755], [-274, 757], [-272, 757], [-272, 754]]}, "center": {"158-220, 230-253, T": [-274, 755]}}, +{"id": 6146, "name": "Austria", "description": "The country of Austria as it appears on a map, with the flag of Austria as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["placeAustria", "Austria", "PlaceEU"], "discord": ["f5ky84vGku"]}, "path": {"158-244": [[-246, 759], [-255, 766], [-260, 766], [-260, 769], [-256, 769], [-255, 768], [-253, 768], [-248, 771], [-246, 771], [-237, 767], [-235, 761], [-237, 758], [-240, 757]], "245-258, T": [[-247, 758], [-251, 764], [-251, 765], [-257, 765], [-258, 764], [-261, 764], [-259, 770], [-257, 768], [-249, 768], [-247, 770], [-235, 770], [-232, 767], [-232, 766], [-239, 758]]}, "center": {"158-244": [-243, 764], "245-258, T": [-243, 764]}}, {"id": 6147, "name": "Hungary", "description": "The country of Hungary as it appears on a map, with the flag of Hungary as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary", "PlaceEU"]}, "path": {"158-247": [[-234, 762], [-237, 766], [-237, 769], [-232, 773], [-228, 773], [-224, 770], [-221, 770], [-217, 765], [-217, 762], [-214, 759], [-216, 757], [-221, 757], [-228, 761], [-230, 763]], "251-258": [[-233, 768], [-233, 771], [-230, 773], [-220, 773], [-219, 774], [-218, 772], [-222, 767]]}, "center": {"158-247": [-224, 765], "251-258": [-226, 770]}}, -{"id": 6148, "name": "Slovenia", "description": "The country of Slovenia as it appears on a map, with the flag of Slovenia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Slovenia", "https://en.wikipedia.org/wiki/Flag_of_Slovenia"], "subreddit": ["slovenia", "PlaceEU"], "discord": ["5ZKFcPhD"]}, "path": {"158-258": [[-247, 770], [-247, 776], [-243, 776], [-237, 771], [-237, 770]]}, "center": {"158-258": [-244, 773]}}, -{"id": 6149, "name": "Switzerland", "description": "The country of Switzerland as it appears on a map, with the flag of Switzerland as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "PlaceEU"], "discord": ["placech"]}, "path": {"158-244": [[-270, 765], [-275, 771], [-271, 774], [-264, 774], [-259, 770], [-260, 769], [-262, 769], [-262, 767], [-264, 765]], "245-258": [[-269, 763], [-273, 767], [-273, 769], [-267, 773], [-262, 769], [-262, 767], [-265, 764]]}, "center": {"158-244": [-267, 770], "245-258": [-267, 768]}}, -{"id": 6150, "name": "Italy", "description": "The mainland of the Republic of Italy as it appears on a map, with the Flag of Italy as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy", "PlaceEU"], "discord": ["italy"]}, "path": {"158-258": [[-263, 773], [-268, 773], [-269, 774], [-271, 774], [-273, 776], [-272, 777], [-274, 779], [-273, 780], [-273, 782], [-271, 784], [-271, 788], [-269, 788], [-268, 787], [-268, 785], [-266, 783], [-262, 783], [-261, 784], [-260, 784], [-260, 785], [-259, 786], [-259, 787], [-258, 788], [-258, 791], [-256, 793], [-256, 794], [-255, 794], [-250, 799], [-246, 799], [-245, 800], [-244, 800], [-243, 801], [-243, 802], [-242, 803], [-240, 803], [-239, 804], [-239, 805], [-238, 805], [-237, 806], [-236, 806], [-235, 807], [-235, 809], [-234, 810], [-234, 814], [-235, 814], [-236, 815], [-237, 815], [-238, 816], [-240, 816], [-241, 817], [-249, 817], [-249, 819], [-248, 819], [-246, 821], [-245, 821], [-244, 822], [-242, 822], [-240, 824], [-237, 824], [-236, 823], [-236, 820], [-237, 819], [-235, 817], [-233, 817], [-233, 816], [-231, 814], [-231, 812], [-230, 811], [-229, 811], [-229, 809], [-232, 806], [-232, 805], [-230, 803], [-228, 803], [-225, 806], [-224, 806], [-224, 807], [-223, 807], [-222, 806], [-222, 805], [-223, 804], [-225, 804], [-224, 804], [-226, 802], [-226, 801], [-228, 799], [-232, 799], [-233, 798], [-235, 798], [-236, 797], [-235, 796], [-235, 794], [-237, 794], [-237, 795], [-239, 795], [-239, 794], [-247, 786], [-247, 785], [-250, 782], [-250, 779], [-251, 778], [-251, 777], [-250, 776], [-247, 776], [-247, 770], [-250, 770], [-252, 769], [-258, 769], [-260, 771], [-261, 771], [-262, 772]]}, "center": {"158-258": [-258, 777]}}, -{"id": 6151, "name": "Croatia", "description": "The country of Croatia as it appears on a map, with the flag of Croatia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Croatia", "https://en.wikipedia.org/wiki/Flag_of_Croatia"], "subreddit": ["croatia", "PlaceEU"]}, "path": {"158-258": [[-236, 770], [-243, 776], [-248, 776], [-248, 779], [-246, 781], [-244, 781], [-236, 789], [-232, 791], [-230, 791], [-230, 788], [-238, 780], [-238, 778], [-235, 776], [-225, 776], [-225, 773], [-230, 773]]}, "center": {"158-258": [-241, 779]}}, -{"id": 6152, "name": "Bosnia and Herzegovina", "description": "The country of Bosnia and Herzegovina as it appears on a map, with the flag of Bosnia and Herzegovina as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Bosnia_and_Herzegovina", "https://en.wikipedia.org/wiki/Flag_of_Bosnia_and_Herzegovina"], "subreddit": ["bih", "bosnia", "PlaceEU"]}, "path": {"158-258": [[-235, 776], [-238, 778], [-238, 780], [-230, 788], [-229, 791], [-228, 791], [-223, 785], [-223, 776]]}, "center": {"158-258": [-229, 781]}}, -{"id": 6153, "name": "Bulgaria", "description": "The country of Bulgaria as it appears on a map, with the flag of Bulgaria as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria", "https://en.wikipedia.org/wiki/Flag_of_Bulgaria"], "subreddit": ["bulgaria", "PlaceEU"]}, "path": {"158-258": [[-212, 779], [-212, 782], [-210, 786], [-210, 790], [-211, 791], [-211, 792], [-207, 795], [-186, 788], [-188, 785], [-188, 780], [-192, 777], [-194, 779], [-198, 779], [-198, 780], [-209, 780]]}, "center": {"158-258": [-203, 787]}}, -{"id": 6154, "name": "Serbia", "description": "The country of Serbia as it appears on a map, with the flag of Serbia as the background. There were attempts to include the disputed territory of Kosovo separately, but these attempts were unsuccessful.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbia", "https://en.wikipedia.org/wiki/Flag_of_Serbia"], "subreddit": ["serbia", "PlaceEU"], "discord": ["DzQFKkFn"]}, "path": {"250-251": [[-222, 770], [-226, 773], [-226, 774], [-223, 776], [-223, 785], [-224, 785], [-225, 787], [-221, 796], [-217, 798], [-210, 790], [-210, 786], [-213, 778], [-214, 777], [-214, 775], [-220, 770]], "158-249, 252-258": [[-224, 769], [-227, 772], [-225, 775], [-222, 785], [-219, 786], [-219, 789], [-217, 791], [-214, 789], [-210, 789], [-210, 783], [-212, 781], [-212, 779], [-211, 778], [-213, 776], [-215, 776], [-222, 769]]}, "center": {"250-251": [-217, 787], "158-249, 252-258": [-218, 780]}}, -{"id": 6155, "name": "Montenegro", "description": "The country of Montenegro as it appears on a map, with the flag of Montenegro as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Montenegro", "https://en.wikipedia.org/wiki/Flag_of_Montenegro"], "subreddit": ["montenegro", "PlaceEU"]}, "path": {"158-258": [[-223, 785], [-227, 790], [-223, 793], [-218, 788]]}, "center": {"158-258": [-223, 789]}}, -{"id": 6156, "name": "Albania", "description": "The country of Albania as it appears on a map, with the flag of Albania as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Albania", "https://en.wikipedia.org/wiki/Flag_of_Albania"], "subreddit": ["placeAL", "albania", "PlaceEU"], "discord": ["CA2vjK2nsR", "tHFXfxxHTy"]}, "path": {"158-258": [[-219, 790], [-223, 794], [-223, 802], [-220, 806], [-215, 802], [-215, 794]]}, "center": {"158-258": [-219, 798]}}, +{"id": 6148, "name": "Slovenia", "description": "The country of Slovenia as it appears on a map, with the flag of Slovenia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Slovenia", "https://en.wikipedia.org/wiki/Flag_of_Slovenia"], "subreddit": ["slovenia", "PlaceEU"], "discord": ["5ZKFcPhD"]}, "path": {"158-258, T": [[-247, 770], [-247, 776], [-243, 776], [-237, 771], [-237, 770]]}, "center": {"158-258, T": [-244, 773]}}, +{"id": 6149, "name": "Switzerland", "description": "The country of Switzerland as it appears on a map, with the flag of Switzerland as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["placeCH", "PlaceEU"], "discord": ["placech"]}, "path": {"158-244": [[-270, 765], [-275, 771], [-271, 774], [-264, 774], [-259, 770], [-260, 769], [-262, 769], [-262, 767], [-264, 765]], "245-258, T": [[-269, 763], [-273, 767], [-273, 769], [-267, 773], [-262, 769], [-262, 767], [-265, 764]]}, "center": {"158-244": [-267, 770], "245-258, T": [-267, 768]}}, +{"id": 6150, "name": "Italy", "description": "The mainland of the Republic of Italy as it appears on a map, with the Flag of Italy as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy", "PlaceEU"], "discord": ["italy"]}, "path": {"158-258, T": [[-263, 773], [-268, 773], [-269, 774], [-271, 774], [-273, 776], [-272, 777], [-274, 779], [-273, 780], [-273, 782], [-271, 784], [-271, 788], [-269, 788], [-268, 787], [-268, 785], [-266, 783], [-262, 783], [-261, 784], [-260, 784], [-260, 785], [-259, 786], [-259, 787], [-258, 788], [-258, 791], [-256, 793], [-256, 794], [-255, 794], [-250, 799], [-246, 799], [-245, 800], [-244, 800], [-243, 801], [-243, 802], [-242, 803], [-240, 803], [-239, 804], [-239, 805], [-238, 805], [-237, 806], [-236, 806], [-235, 807], [-235, 809], [-234, 810], [-234, 814], [-235, 814], [-236, 815], [-237, 815], [-238, 816], [-240, 816], [-241, 817], [-249, 817], [-249, 819], [-248, 819], [-246, 821], [-245, 821], [-244, 822], [-242, 822], [-240, 824], [-237, 824], [-236, 823], [-236, 820], [-237, 819], [-235, 817], [-233, 817], [-233, 816], [-231, 814], [-231, 812], [-230, 811], [-229, 811], [-229, 809], [-232, 806], [-232, 805], [-230, 803], [-228, 803], [-225, 806], [-224, 806], [-224, 807], [-223, 807], [-222, 806], [-222, 805], [-223, 804], [-225, 804], [-224, 804], [-226, 802], [-226, 801], [-228, 799], [-232, 799], [-233, 798], [-235, 798], [-236, 797], [-235, 796], [-235, 794], [-237, 794], [-237, 795], [-239, 795], [-239, 794], [-247, 786], [-247, 785], [-250, 782], [-250, 779], [-251, 778], [-251, 777], [-250, 776], [-247, 776], [-247, 770], [-250, 770], [-252, 769], [-258, 769], [-260, 771], [-261, 771], [-262, 772]]}, "center": {"158-258, T": [-258, 777]}}, +{"id": 6151, "name": "Croatia", "description": "The country of Croatia as it appears on a map, with the flag of Croatia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Croatia", "https://en.wikipedia.org/wiki/Flag_of_Croatia"], "subreddit": ["croatia", "PlaceEU"]}, "path": {"158-258, T": [[-236, 770], [-243, 776], [-248, 776], [-248, 779], [-246, 781], [-244, 781], [-236, 789], [-232, 791], [-230, 791], [-230, 788], [-238, 780], [-238, 778], [-235, 776], [-225, 776], [-225, 773], [-230, 773]]}, "center": {"158-258, T": [-241, 779]}}, +{"id": 6152, "name": "Bosnia and Herzegovina", "description": "The country of Bosnia and Herzegovina as it appears on a map, with the flag of Bosnia and Herzegovina as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Bosnia_and_Herzegovina", "https://en.wikipedia.org/wiki/Flag_of_Bosnia_and_Herzegovina"], "subreddit": ["bih", "bosnia", "PlaceEU"]}, "path": {"158-258, T": [[-235, 776], [-238, 778], [-238, 780], [-230, 788], [-229, 791], [-228, 791], [-223, 785], [-223, 776]]}, "center": {"158-258, T": [-229, 781]}}, +{"id": 6153, "name": "Bulgaria", "description": "The country of Bulgaria as it appears on a map, with the flag of Bulgaria as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria", "https://en.wikipedia.org/wiki/Flag_of_Bulgaria"], "subreddit": ["bulgaria", "PlaceEU"]}, "path": {"158-258, T": [[-212, 779], [-212, 782], [-210, 786], [-210, 790], [-211, 791], [-211, 792], [-207, 795], [-186, 788], [-188, 785], [-188, 780], [-192, 777], [-194, 779], [-198, 779], [-198, 780], [-209, 780]]}, "center": {"158-258, T": [-203, 787]}}, +{"id": 6154, "name": "Serbia", "description": "The country of Serbia as it appears on a map, with the flag of Serbia as the background. There were attempts to include the disputed territory of Kosovo separately, but these attempts were unsuccessful.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbia", "https://en.wikipedia.org/wiki/Flag_of_Serbia"], "subreddit": ["serbia", "PlaceEU"], "discord": ["DzQFKkFn"]}, "path": {"158-249, 252-258": [[-224, 769], [-227, 772], [-225, 775], [-222, 785], [-219, 786], [-219, 789], [-217, 791], [-214, 789], [-210, 789], [-210, 783], [-212, 781], [-212, 779], [-211, 778], [-213, 776], [-215, 776], [-222, 769]], "250-251, T": [[-222, 770], [-226, 773], [-226, 774], [-223, 776], [-223, 785], [-224, 785], [-225, 787], [-221, 796], [-217, 798], [-210, 790], [-210, 786], [-213, 778], [-214, 777], [-214, 775], [-220, 770]]}, "center": {"158-249, 252-258": [-218, 780], "250-251, T": [-217, 787]}}, +{"id": 6155, "name": "Montenegro", "description": "The country of Montenegro as it appears on a map, with the flag of Montenegro as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Montenegro", "https://en.wikipedia.org/wiki/Flag_of_Montenegro"], "subreddit": ["montenegro", "PlaceEU"]}, "path": {"158-258, T": [[-223, 785], [-227, 790], [-223, 793], [-218, 788]]}, "center": {"158-258, T": [-223, 789]}}, +{"id": 6156, "name": "Albania", "description": "The country of Albania as it appears on a map, with the flag of Albania as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Albania", "https://en.wikipedia.org/wiki/Flag_of_Albania"], "subreddit": ["placeAL", "albania", "PlaceEU"], "discord": ["CA2vjK2nsR", "tHFXfxxHTy"]}, "path": {"158-258, T": [[-219, 790], [-223, 794], [-223, 802], [-220, 806], [-215, 802], [-215, 794]]}, "center": {"158-258, T": [-219, 798]}}, {"id": 6157, "name": "North Macedonia", "description": "The country of North Macedonia as it appears on a map, with the flag of North Macedonia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/North_Macedonia", "https://en.wikipedia.org/wiki/Flag_of_North_Macedonia"], "subreddit": ["mkd", "PlaceEU"]}, "path": {"250": [[-211, 793], [-216, 797], [-212, 800], [-207, 796]], "158-214": [[-214, 790], [-217, 793], [-217, 796], [-214, 799], [-207, 794], [-207, 793], [-210, 790]]}, "center": {"250": [-211, 797], "158-214": [-213, 794]}}, -{"id": 6158, "name": "Greece", "description": "The country of Greece as it appears on a map, with the flag of Greece as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Greece", "https://en.wikipedia.org/wiki/Flag_of_Greece"], "subreddit": ["GreecePlace", "greece", "PlaceEU"], "discord": ["BWh2CCvM"]}, "path": {"158-238": [[-202, 792], [-214, 799], [-220, 806], [-218, 808], [-216, 808], [-215, 809], [-215, 812], [-216, 813], [-212, 817], [-210, 817], [-210, 818], [-208, 821], [-199, 823], [-199, 828], [-188, 828], [-181, 822], [-178, 818], [-180, 815], [-188, 816], [-199, 807], [-204, 803], [-200, 801], [-200, 798], [-195, 795], [-195, 793]], "239-258": [[-203, 793], [-220, 806], [-215, 809], [-208, 818], [-201, 818], [-198, 816], [-190, 816], [-190, 814], [-200, 806], [-200, 800], [-193, 793], [-195, 791]]}, "center": {"158-238": [-203, 813], "239-258": [-208, 806]}}, -{"id": 6159, "name": "Portugal", "description": "The country of Portugal as it appears on a map, with the flag of Portugal as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal", "https://en.wikipedia.org/wiki/Flag_of_Portugal"], "subreddit": ["portugal", "PlaceEU"], "discord": ["TugaPlace"]}, "path": {"158-258": [[-338, 788], [-338, 792], [-340, 796], [-345, 801], [-345, 802], [-343, 804], [-343, 810], [-344, 811], [-344, 813], [-340, 815], [-336, 815], [-333, 810], [-333, 802], [-328, 792], [-327, 792], [-327, 789], [-333, 789], [-334, 788]]}, "center": {"158-258": [-338, 802]}}, -{"id": 6160, "name": "Turkey", "description": "The country of Turkey as it appears on a map, with the flag of Turkey as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://en.wikipedia.org/wiki/Flag_of_Turkey"], "subreddit": ["placeTurkey", "Turkey", "PlaceEU"]}, "path": {"158-214": [[-189, 785], [-196, 792], [-196, 799], [-194, 799], [-193, 804], [-189, 809], [-186, 809], [-186, 813], [-183, 816], [-172, 816], [-168, 813], [-168, 811], [-164, 811], [-162, 813], [-160, 813], [-156, 810], [-151, 810], [-151, 812], [-148, 812], [-146, 809], [-147, 806], [-123, 787], [-141, 769], [-151, 778], [-161, 777], [-170, 782], [-175, 788], [-185, 788]], "215-258": [[-187, 787], [-191, 791], [-194, 791], [-197, 794], [-190, 808], [-186, 810], [-185, 815], [-181, 815], [-180, 814], [-171, 814], [-167, 811], [-159, 811], [-158, 809], [-154, 809], [-146, 815], [-132, 815], [-132, 814], [-113, 814], [-113, 796], [-127, 789], [-127, 784], [-129, 783], [-129, 778], [-132, 778], [-132, 776], [-141, 776], [-149, 781], [-151, 781], [-155, 778], [-163, 778], [-178, 785], [-178, 787]]}, "center": {"158-214": [-158, 794], "215-258": [-142, 797]}}, -{"id": 6161, "name": "Armenia", "description": "The country of Armenia as it appears on a map, with the flag of Armenia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Armenia", "https://en.wikipedia.org/wiki/Flag_of_Armenia"], "subreddit": ["armenia", "PlaceEU"]}, "path": {"242-244": [[-140, 776], [-140, 778], [-133, 788], [-122, 788], [-132, 776]], "236-237": [[-131, 775], [-129, 781], [-124, 782], [-120, 786], [-119, 785], [-119, 784], [-122, 781], [-122, 778], [-125, 775]], "219-228": [[-128, 770], [-137, 775], [-137, 776], [-130, 785], [-123, 785], [-121, 787], [-113, 787], [-113, 772], [-123, 772]], "193-210": [[-129, 768], [-139, 774], [-139, 779], [-135, 782], [-135, 785], [-132, 788], [-113, 788], [-113, 768]], "163-192": [[-131, 764], [-134, 768], [-134, 772], [-131, 774], [-131, 777], [-128, 777], [-127, 778], [-121, 778], [-116, 779], [-113, 777], [-113, 770], [-116, 767], [-118, 767], [-119, 768], [-121, 768], [-123, 764]], "251-258": [[-129, 768], [-129, 783], [-127, 790], [-124, 795], [-112, 797], [-112, 767], [-126, 767], [-127, 768]], "247-258": [[-144, 776], [-144, 782], [-141, 787], [-133, 793], [-128, 793], [-126, 794], [-122, 794], [-120, 792], [-129, 783], [-129, 778], [-132, 778], [-132, 776]]}, "center": {"242-244": [-132, 783], "236-237": [-127, 778], "219-228": [-126, 778], "193-210": [-125, 778], "163-192": [-126, 771], "251-258": [-120, 776], "247-258": [-136, 782]}}, -{"id": 6162, "name": "Sardinia", "description": "Sardinia is an island that is part of Italy. This art used to have the flag of Italy as a background, before being changed to the flag of Sardinia.", "links": {"website": ["https://en.wikipedia.org/wiki/Sardinia", "https://en.wikipedia.org/wiki/Flag_of_Sardinia"], "subreddit": ["italy", "PlaceEU"], "discord": ["italy"]}, "path": {"158-258": [[-267, 800], [-270, 802], [-269, 803], [-269, 812], [-267, 815], [-264, 813], [-261, 813], [-259, 811], [-259, 806], [-258, 805], [-258, 804], [-261, 801], [-261, 799]]}, "center": {"158-258": [-264, 807]}}, -{"id": 6163, "name": "Basque Country", "description": "Basque Country is one of the autonomous communities of Spain. Basque Country is depicted here as it appears on a map, with the flag of Basque Country as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Basque_Country_(autonomous_community)", "https://en.wikipedia.org/wiki/Flag_of_Basque_Country_(autonomous_community)"], "subreddit": ["basque", "PlaceEU"]}, "path": {"159-164": [[-312, 781], [-314, 784], [-314, 786], [-309, 791], [-307, 791], [-303, 787], [-302, 785], [-302, 780]], "216-258": [[-312, 780], [-315, 782], [-315, 794], [-307, 794], [-300, 787], [-300, 783], [-304, 778], [-307, 778], [-307, 780]]}, "center": {"159-164": [-308, 785], "216-258": [-308, 786]}}, -{"id": 6164, "name": "Galicia", "description": "Galicia is one of the autonomous communities of Spain. Galicia is depicted here as it appears on a map, with the flag of Galicia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Galicia_(Spain)", "https://en.wikipedia.org/wiki/Flag_of_Galicia"], "subreddit": ["placeGalicia", "Galicia", "PlaceEU"], "discord": ["a85RceFh"]}, "path": {"159-164, 210-258": [[-335, 778], [-337, 780], [-337, 781], [-338, 782], [-338, 788], [-333, 788], [-332, 789], [-327, 789], [-324, 786], [-327, 783], [-327, 782], [-326, 781], [-329, 778]]}, "center": {"159-164, 210-258": [-332, 783]}}, -{"id": 6165, "name": "Asturias", "description": "Asturias is one of the autonomous communities of Spain. Asturias is depicted here as it appears on a map, with the flag of Asturias as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Asturias_(Spain)", "https://en.wikipedia.org/wiki/Flag_of_Asturias"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"241-258": [[-325, 780], [-327, 782], [-327, 783], [-324, 786], [-320, 786], [-316, 782], [-321, 780]]}, "center": {"241-258": [-321, 783]}}, -{"id": 6166, "name": "Andalusia", "description": "Andalusia is one of the autonomous communities of Spain. Andalusia is depicted here as it appears on a map, with the flag of Andalusia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Andalusia", "https://en.wikipedia.org/wiki/Flag_of_Andalusia"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"243-258": [[-333, 810], [-336, 815], [-334, 817], [-334, 819], [-330, 823], [-328, 823], [-326, 821], [-318, 821], [-317, 822], [-315, 822], [-314, 821], [-311, 821], [-311, 818], [-314, 814], [-314, 812], [-318, 812], [-322, 810], [-325, 810], [-326, 811], [-332, 811]]}, "center": {"243-258": [-323, 816]}}, -{"id": 6167, "name": "Extremadura", "description": "Extremadura is one of the autonomous communities of Spain. Extremadura is depicted here as it appears on a map, with the flag of Extremadura as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Extremadura", "https://en.wikipedia.org/wiki/Flag_of_Extremadura"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"249-258": [[-330, 798], [-333, 802], [-333, 810], [-332, 811], [-326, 811], [-325, 810], [-322, 810], [-322, 798]]}, "center": {"249-258": [-327, 805]}}, -{"id": 6168, "name": "Region of Murcia", "description": "Region of Murcia is one of the autonomous communities of Spain. Region of Murcia is depicted here as it appears on a map, with the flag of Region of Murcia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Region_of_Murcia", "https://en.wikipedia.org/wiki/Flag_of_Region_of_Murcia"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"248-258": [[-310, 809], [-314, 813], [-314, 814], [-311, 818], [-306, 818], [-304, 816], [-304, 814]]}, "center": {"248-258": [-309, 814]}}, -{"id": 6169, "name": "Flag of the Canary Islands", "description": "The Canary Islands are an archipelago in the Atlantic Ocean that is part of Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Canary_Islands", "https://en.wikipedia.org/wiki/Flag_of_Canary_Islands"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"191-258": [[-357, 818], [-357, 825], [-345, 825], [-345, 818]]}, "center": {"191-258": [-351, 822]}}, -{"id": 6170, "name": "Valencian Community", "description": "The Valencian Community is one of the autonomous communities of Spain. The Valencian Community is depicted here as it appears on a map, with the flag of the Valencian Community as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Valencian_Community", "https://en.wikipedia.org/wiki/Flag_of_Valencian_Community"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"245-258": [[-299, 796], [-308, 805], [-308, 809], [-306, 812], [-302, 812], [-302, 806], [-298, 804], [-298, 796]]}, "center": {"245-258": [-305, 808]}}, -{"id": 6171, "name": "Cantabria", "description": "Cantabria is one of the autonomous communities of Spain. Cantabria is depicted here as it appears on a map, with the flag of Cantabria as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Valencian_Community", "https://en.wikipedia.org/wiki/Flag_of_Cantabria"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"247-258": [[-318, 782], [-321, 785], [-319, 788], [-316, 788], [-315, 787], [-315, 782]]}, "center": {"247-258": [-317, 785]}}, -{"id": 6172, "name": "Aragon", "description": "Aragon is one of the autonomous communities of Spain. Aragon is depicted here as it appears on a map, with the flag of Aragon as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Aragon", "https://en.wikipedia.org/wiki/Flag_of_Aragon"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"245-258": [[-301, 788], [-307, 794], [-311, 794], [-311, 799], [-307, 804], [-298, 795], [-298, 788]]}, "center": {"245-258": [-307, 798]}}, -{"id": 6173, "name": "Castile and León", "description": "Castile and León is one of the autonomous communities of Spain. Castile and León is depicted here as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Castile_and_Le%C3%B3n"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"246-258": [[-326, 784], [-326, 788], [-330, 796], [-330, 798], [-323, 798], [-321, 796], [-321, 794], [-318, 790], [-318, 789], [-321, 785], [-324, 784]]}, "center": {"246-258": [-323, 791]}}, -{"id": 6174, "name": "Community of Madrid", "description": "The Community of Madrid is one of the autonomous communities of Spain. The Community of Madrid is depicted here as it appears on a map, with the flag of the Community of Madrid as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Community_of_Madrid", "https://en.wikipedia.org/wiki/Flag_of_Community_of_Madrid"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"250-258": [[-322, 798], [-322, 805], [-316, 805], [-318, 800]]}, "center": {"250-258": [-320, 802]}}, -{"id": 6175, "name": "Flag of Lebanon", "description": "The Republic of Lebanon (Arabic: لبنان) is a small country (10,452km² in area) with 3.7 million inhabitants. It is located in the Middle East region, and its capital being Beirut. It has a long coastline on the eastern shore of the Mediterranean Sea, sharing a long land border with its much larger neighbour Syria to the north and east, and a much shorter (and conflict-ridden) border with Israel to the south.", "links": {"website": ["https://en.wikipedia.org/wiki/Lebanon", "https://en.wikipedia.org/wiki/Flag_of_Lebanon"], "subreddit": ["lebanon"]}, "path": {"181-231": [[-184, 814], [-184, 826], [-132, 826], [-132, 814]], "170-180": [[-153, 815], [-153, 825], [-145, 825], [-145, 815]], "232-258": [[-213, 816], [-212, 822], [-210, 824], [-196, 824], [-196, 826], [-166, 826], [-163, 823], [-161, 823], [-158, 826], [-132, 826], [-132, 814], [-187, 814], [-187, 815], [-204, 815], [-204, 816]]}, "center": {"181-231": [-158, 820], "170-180": [-149, 820], "232-258": [-171, 820]}}, -{"id": 6176, "name": "Flag of Egypt", "description": "Egypt is a country in Northern Africa with a population of 100 million.", "links": {"website": ["https://en.wikipedia.org/wiki/Egypt", "https://en.wikipedia.org/wiki/Flag_of_Egypt"], "subreddit": ["Egypt"]}, "path": {"247-258": [[-155, 826], [-155, 828], [-154, 829], [-154, 835], [-132, 835], [-132, 826]]}, "center": {"247-258": [-143, 831]}}, -{"id": 6177, "name": "Jacex Dowóz Video (Jacex Video Delivery)", "description": "Polish Streaming channel on twitch made by GargamelTV and Generator Frajdy. Yellow Van, Red raptor (Rock'n'Raptor), and the bear Mietek are their most recognisable symbols.", "links": {"website": ["https://jacex.tv"]}, "path": {"250-258": [[1379, 394], [1379, 374], [1439, 375], [1439, 379], [1452, 379], [1452, 394]]}, "center": {"250-258": [1389, 384]}}, -{"id": 6178, "name": "ITZY", "description": "Itzy (stylized in all caps; Korean: 있지; RR: Itji; MR: Itchi) is a South Korean girl group formed by JYP Entertainment and consisting of members Yeji, Lia, Ryujin, Chaeryeong, and Yuna. They debuted on February 12, 2019, with the release of their single album It'z Different. Their accolades include Rookie of the Year at the 34th Golden Disc Awards, New Artist of the Year at the 9th Gaon Chart Music Awards and 2019 Melon Music Awards, Best New Female Artist at the 2019 Mnet Asian Music Awards, and the New Artist Award at the 29th Seoul Music Awards; they are the first K-pop girl group to achieve such a \"Rookie Grand Slam\"\nCr: https://en.wikipedia.org/wiki/Itzy", "links": {"website": ["https://itzy.jype.com/", "https://www.instagram.com/itzy.all.in.us/"], "subreddit": ["ITZY"]}, "path": {"250-258": [[-133, -878], [-121, -878], [-121, -874], [-133, -874]]}, "center": {"250-258": [-127, -876]}}, -{"id": 6179, "name": "Mordecai", "description": "Simplyfied mini art of the head of Mordecai, one of the two protagonist from the 2010 Cartoon Network show Regular show.\nWas fully drawn by only one person.", "links": {"website": ["https://www.reddit.com/r/regularshow/comments/159e430/fans_what_if_we_do_mordecai_on_this_turk_flag/?utm_source=share&utm_medium=android_app&utm_name=androidcss&utm_term=1&utm_content=1"], "subreddit": ["regularshow"]}, "path": {"245-258": [[1467, -635], [1468, -635], [1469, -634], [1470, -633], [1471, -632], [1472, -631], [1473, -631], [1473, -630], [1472, -629], [1471, -628], [1469, -627], [1469, -626], [1468, -626], [1467, -626], [1466, -626], [1466, -627], [1466, -628], [1466, -629], [1466, -630], [1466, -631], [1466, -632], [1466, -633], [1466, -634], [1466, -635]]}, "center": {"245-258": [1469, -630]}}, -{"id": 6180, "name": "Beatle's Yellow submarine", "description": "This famous vehicle makes reference to the famous homonimous song from the liverpool quartet The Beatles which also appeared on an animation movie starred by The Beatles themselves", "links": {}, "path": {"174-253": [[-280, 717], [-280, 716], [-279, 715], [-279, 714], [-279, 713], [-280, 712], [-281, 712], [-282, 711], [-282, 710], [-282, 709], [-282, 708], [-282, 707], [-283, 706], [-284, 706], [-284, 705], [-285, 704], [-286, 705], [-286, 707], [-286, 709], [-286, 711], [-287, 712], [-288, 712], [-289, 712], [-290, 711], [-291, 712], [-291, 713], [-290, 714], [-291, 715], [-291, 716], [-290, 717], [-289, 717], [-291, 717], [-291, 711], [-289, 716], [-288, 716], [-287, 716], [-286, 717], [-285, 717], [-284, 717], [-283, 717], [-281, 717], [-282, 717], [-281, 717], [-282, 717]]}, "center": {"174-253": [-284, 714]}}, -{"id": 6181, "name": "Tree Rex", "description": "Tree Rex is a colossal Ent, who is one of the eight giants in 2012's Skylanders: Giants. He is also available in the Starter Park and Portal Owners Pack for Giants.\n\nIt was made by the members of the r/skylanders and has been moved many times before settling on the Green Lattice.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Giants", "https://rb.gy/vinn7"], "subreddit": ["skylanders"]}, "path": {"141-258": [[452, -816], [461, -816], [462, -815], [463, -814], [463, -813], [462, -812], [463, -812], [464, -811], [464, -810], [465, -809], [466, -808], [466, -806], [465, -805], [464, -804], [463, -804], [462, -803], [463, -802], [463, -799], [464, -798], [464, -797], [464, -796], [449, -796], [449, -798], [450, -799], [450, -801], [451, -802], [452, -803], [452, -804], [453, -805], [452, -806], [451, -806], [450, -807], [448, -807], [447, -808], [446, -809], [446, -811], [447, -812], [448, -813], [450, -813], [450, -814], [451, -815]]}, "center": {"141-258": [456, -810]}}, +{"id": 6158, "name": "Greece", "description": "The country of Greece as it appears on a map, with the flag of Greece as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Greece", "https://en.wikipedia.org/wiki/Flag_of_Greece"], "subreddit": ["GreecePlace", "greece", "PlaceEU"], "discord": ["BWh2CCvM"]}, "path": {"158-238": [[-202, 792], [-214, 799], [-220, 806], [-218, 808], [-216, 808], [-215, 809], [-215, 812], [-216, 813], [-212, 817], [-210, 817], [-210, 818], [-208, 821], [-199, 823], [-199, 828], [-188, 828], [-181, 822], [-178, 818], [-180, 815], [-188, 816], [-199, 807], [-204, 803], [-200, 801], [-200, 798], [-195, 795], [-195, 793]], "239-258, T": [[-203, 793], [-220, 806], [-215, 809], [-208, 818], [-201, 818], [-198, 816], [-190, 816], [-190, 814], [-200, 806], [-200, 800], [-193, 793], [-195, 791]]}, "center": {"158-238": [-203, 813], "239-258, T": [-208, 806]}}, +{"id": 6159, "name": "Portugal", "description": "The country of Portugal as it appears on a map, with the flag of Portugal as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal", "https://en.wikipedia.org/wiki/Flag_of_Portugal"], "subreddit": ["portugal", "PlaceEU"], "discord": ["TugaPlace"]}, "path": {"158-258, T": [[-338, 788], [-338, 792], [-340, 796], [-345, 801], [-345, 802], [-343, 804], [-343, 810], [-344, 811], [-344, 813], [-340, 815], [-336, 815], [-333, 810], [-333, 802], [-328, 792], [-327, 792], [-327, 789], [-333, 789], [-334, 788]]}, "center": {"158-258, T": [-338, 802]}}, +{"id": 6160, "name": "Turkey", "description": "The country of Turkey as it appears on a map, with the flag of Turkey as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://en.wikipedia.org/wiki/Flag_of_Turkey"], "subreddit": ["placeTurkey", "Turkey", "PlaceEU"]}, "path": {"158-214": [[-189, 785], [-196, 792], [-196, 799], [-194, 799], [-193, 804], [-189, 809], [-186, 809], [-186, 813], [-183, 816], [-172, 816], [-168, 813], [-168, 811], [-164, 811], [-162, 813], [-160, 813], [-156, 810], [-151, 810], [-151, 812], [-148, 812], [-146, 809], [-147, 806], [-123, 787], [-141, 769], [-151, 778], [-161, 777], [-170, 782], [-175, 788], [-185, 788]], "215-258, T": [[-187, 787], [-191, 791], [-194, 791], [-197, 794], [-190, 808], [-186, 810], [-185, 815], [-181, 815], [-180, 814], [-171, 814], [-167, 811], [-159, 811], [-158, 809], [-154, 809], [-146, 815], [-132, 815], [-132, 814], [-113, 814], [-113, 796], [-127, 789], [-127, 784], [-129, 783], [-129, 778], [-132, 778], [-132, 776], [-141, 776], [-149, 781], [-151, 781], [-155, 778], [-163, 778], [-178, 785], [-178, 787]]}, "center": {"158-214": [-158, 794], "215-258, T": [-142, 797]}}, +{"id": 6161, "name": "Armenia", "description": "The country of Armenia as it appears on a map, with the flag of Armenia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Armenia", "https://en.wikipedia.org/wiki/Flag_of_Armenia"], "subreddit": ["armenia", "PlaceEU"]}, "path": {"242-244": [[-140, 776], [-140, 778], [-133, 788], [-122, 788], [-132, 776]], "236-237": [[-131, 775], [-129, 781], [-124, 782], [-120, 786], [-119, 785], [-119, 784], [-122, 781], [-122, 778], [-125, 775]], "219-228": [[-128, 770], [-137, 775], [-137, 776], [-130, 785], [-123, 785], [-121, 787], [-113, 787], [-113, 772], [-123, 772]], "193-210": [[-129, 768], [-139, 774], [-139, 779], [-135, 782], [-135, 785], [-132, 788], [-113, 788], [-113, 768]], "163-192": [[-131, 764], [-134, 768], [-134, 772], [-131, 774], [-131, 777], [-128, 777], [-127, 778], [-121, 778], [-116, 779], [-113, 777], [-113, 770], [-116, 767], [-118, 767], [-119, 768], [-121, 768], [-123, 764]], "251-258": [[-129, 768], [-129, 783], [-127, 790], [-124, 795], [-112, 797], [-112, 767], [-126, 767], [-127, 768]], "247-258, T": [[-144, 776], [-144, 782], [-141, 787], [-133, 793], [-128, 793], [-126, 794], [-122, 794], [-120, 792], [-129, 783], [-129, 778], [-132, 778], [-132, 776]]}, "center": {"242-244": [-132, 783], "236-237": [-127, 778], "219-228": [-126, 778], "193-210": [-125, 778], "163-192": [-126, 771], "251-258": [-120, 776], "247-258, T": [-136, 782]}}, +{"id": 6162, "name": "Sardinia", "description": "Sardinia is an island that is part of Italy. This art used to have the flag of Italy as a background, before being changed to the flag of Sardinia.", "links": {"website": ["https://en.wikipedia.org/wiki/Sardinia", "https://en.wikipedia.org/wiki/Flag_of_Sardinia"], "subreddit": ["italy", "PlaceEU"], "discord": ["italy"]}, "path": {"158-258, T": [[-267, 800], [-270, 802], [-269, 803], [-269, 812], [-267, 815], [-264, 813], [-261, 813], [-259, 811], [-259, 806], [-258, 805], [-258, 804], [-261, 801], [-261, 799]]}, "center": {"158-258, T": [-264, 807]}}, +{"id": 6163, "name": "Basque Country", "description": "Basque Country is one of the autonomous communities of Spain. Basque Country is depicted here as it appears on a map, with the flag of Basque Country as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Basque_Country_(autonomous_community)", "https://en.wikipedia.org/wiki/Flag_of_Basque_Country_(autonomous_community)"], "subreddit": ["basque", "PlaceEU"]}, "path": {"159-164": [[-312, 781], [-314, 784], [-314, 786], [-309, 791], [-307, 791], [-303, 787], [-302, 785], [-302, 780]], "216-258, T": [[-312, 780], [-315, 782], [-315, 794], [-307, 794], [-300, 787], [-300, 783], [-304, 778], [-307, 778], [-307, 780]]}, "center": {"159-164": [-308, 785], "216-258, T": [-308, 786]}}, +{"id": 6164, "name": "Galicia", "description": "Galicia is one of the autonomous communities of Spain. Galicia is depicted here as it appears on a map, with the flag of Galicia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Galicia_(Spain)", "https://en.wikipedia.org/wiki/Flag_of_Galicia"], "subreddit": ["placeGalicia", "Galicia", "PlaceEU"], "discord": ["a85RceFh"]}, "path": {"159-164, 210-258, T": [[-335, 778], [-337, 780], [-337, 781], [-338, 782], [-338, 788], [-333, 788], [-332, 789], [-327, 789], [-324, 786], [-327, 783], [-327, 782], [-326, 781], [-329, 778]]}, "center": {"159-164, 210-258, T": [-332, 783]}}, +{"id": 6165, "name": "Asturias", "description": "Asturias is one of the autonomous communities of Spain. Asturias is depicted here as it appears on a map, with the flag of Asturias as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Asturias_(Spain)", "https://en.wikipedia.org/wiki/Flag_of_Asturias"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"241-258, T": [[-325, 780], [-327, 782], [-327, 783], [-324, 786], [-320, 786], [-316, 782], [-321, 780]]}, "center": {"241-258, T": [-321, 783]}}, +{"id": 6166, "name": "Andalusia", "description": "Andalusia is one of the autonomous communities of Spain. Andalusia is depicted here as it appears on a map, with the flag of Andalusia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Andalusia", "https://en.wikipedia.org/wiki/Flag_of_Andalusia"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"243-258, T": [[-333, 810], [-336, 815], [-334, 817], [-334, 819], [-330, 823], [-328, 823], [-326, 821], [-318, 821], [-317, 822], [-315, 822], [-314, 821], [-311, 821], [-311, 818], [-314, 814], [-314, 812], [-318, 812], [-322, 810], [-325, 810], [-326, 811], [-332, 811]]}, "center": {"243-258, T": [-323, 816]}}, +{"id": 6167, "name": "Extremadura", "description": "Extremadura is one of the autonomous communities of Spain. Extremadura is depicted here as it appears on a map, with the flag of Extremadura as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Extremadura", "https://en.wikipedia.org/wiki/Flag_of_Extremadura"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"249-258, T": [[-330, 798], [-333, 802], [-333, 810], [-332, 811], [-326, 811], [-325, 810], [-322, 810], [-322, 798]]}, "center": {"249-258, T": [-327, 805]}}, +{"id": 6168, "name": "Region of Murcia", "description": "Region of Murcia is one of the autonomous communities of Spain. Region of Murcia is depicted here as it appears on a map, with the flag of Region of Murcia as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Region_of_Murcia", "https://en.wikipedia.org/wiki/Flag_of_Region_of_Murcia"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"248-258, T": [[-310, 809], [-314, 813], [-314, 814], [-311, 818], [-306, 818], [-304, 816], [-304, 814]]}, "center": {"248-258, T": [-309, 814]}}, +{"id": 6169, "name": "Flag of the Canary Islands", "description": "The Canary Islands are an archipelago in the Atlantic Ocean that is part of Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Canary_Islands", "https://en.wikipedia.org/wiki/Flag_of_Canary_Islands"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"191-258, T": [[-357, 818], [-357, 825], [-345, 825], [-345, 818]]}, "center": {"191-258, T": [-351, 822]}}, +{"id": 6170, "name": "Valencian Community", "description": "The Valencian Community is one of the autonomous communities of Spain. The Valencian Community is depicted here as it appears on a map, with the flag of the Valencian Community as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Valencian_Community", "https://en.wikipedia.org/wiki/Flag_of_Valencian_Community"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"245-258, T": [[-299, 796], [-308, 805], [-308, 809], [-306, 812], [-302, 812], [-302, 806], [-298, 804], [-298, 796]]}, "center": {"245-258, T": [-305, 808]}}, +{"id": 6171, "name": "Cantabria", "description": "Cantabria is one of the autonomous communities of Spain. Cantabria is depicted here as it appears on a map, with the flag of Cantabria as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Valencian_Community", "https://en.wikipedia.org/wiki/Flag_of_Cantabria"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"247-258, T": [[-318, 782], [-321, 785], [-319, 788], [-316, 788], [-315, 787], [-315, 782]]}, "center": {"247-258, T": [-317, 785]}}, +{"id": 6172, "name": "Aragon", "description": "Aragon is one of the autonomous communities of Spain. Aragon is depicted here as it appears on a map, with the flag of Aragon as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Aragon", "https://en.wikipedia.org/wiki/Flag_of_Aragon"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"245-258, T": [[-301, 788], [-307, 794], [-311, 794], [-311, 799], [-307, 804], [-298, 795], [-298, 788]]}, "center": {"245-258, T": [-307, 798]}}, +{"id": 6173, "name": "Castile and León", "description": "Castile and León is one of the autonomous communities of Spain. Castile and León is depicted here as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Castile_and_Le%C3%B3n"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"246-258, T": [[-326, 784], [-326, 788], [-330, 796], [-330, 798], [-323, 798], [-321, 796], [-321, 794], [-318, 790], [-318, 789], [-321, 785], [-324, 784]]}, "center": {"246-258, T": [-323, 791]}}, +{"id": 6174, "name": "Community of Madrid", "description": "The Community of Madrid is one of the autonomous communities of Spain. The Community of Madrid is depicted here as it appears on a map, with the flag of the Community of Madrid as the background.", "links": {"website": ["https://en.wikipedia.org/wiki/Community_of_Madrid", "https://en.wikipedia.org/wiki/Flag_of_Community_of_Madrid"], "subreddit": ["esPlace", "PlaceEU"]}, "path": {"250-258, T": [[-322, 798], [-322, 805], [-316, 805], [-318, 800]]}, "center": {"250-258, T": [-320, 802]}}, +{"id": 6175, "name": "Flag of Lebanon", "description": "The Republic of Lebanon (Arabic: لبنان) is a small country (10,452km² in area) with 3.7 million inhabitants. It is located in the Middle East region, and its capital being Beirut. It has a long coastline on the eastern shore of the Mediterranean Sea, sharing a long land border with its much larger neighbour Syria to the north and east, and a much shorter (and conflict-ridden) border with Israel to the south.", "links": {"website": ["https://en.wikipedia.org/wiki/Lebanon", "https://en.wikipedia.org/wiki/Flag_of_Lebanon"], "subreddit": ["lebanon"]}, "path": {"181-231": [[-184, 814], [-184, 826], [-132, 826], [-132, 814]], "170-180": [[-153, 815], [-153, 825], [-145, 825], [-145, 815]], "232-258, T": [[-213, 816], [-212, 822], [-210, 824], [-196, 824], [-196, 826], [-166, 826], [-163, 823], [-161, 823], [-158, 826], [-132, 826], [-132, 814], [-187, 814], [-187, 815], [-204, 815], [-204, 816]]}, "center": {"181-231": [-158, 820], "170-180": [-149, 820], "232-258, T": [-171, 820]}}, +{"id": 6176, "name": "Flag of Egypt", "description": "Egypt is a country in Northern Africa with a population of 100 million.", "links": {"website": ["https://en.wikipedia.org/wiki/Egypt", "https://en.wikipedia.org/wiki/Flag_of_Egypt"], "subreddit": ["Egypt"]}, "path": {"247-258, T": [[-155, 826], [-155, 828], [-154, 829], [-154, 835], [-132, 835], [-132, 826]]}, "center": {"247-258, T": [-143, 831]}}, +{"id": 6177, "name": "Jacex Dowóz Video (Jacex Video Delivery)", "description": "Polish Streaming channel on twitch made by GargamelTV and Generator Frajdy. Yellow Van, Red raptor (Rock'n'Raptor), and the bear Mietek are their most recognisable symbols.", "links": {"website": ["https://jacex.tv"]}, "path": {"250-258, T": [[1379, 394], [1379, 374], [1439, 375], [1439, 379], [1452, 379], [1452, 394]]}, "center": {"250-258, T": [1389, 384]}}, +{"id": 6178, "name": "ITZY", "description": "Itzy (stylized in all caps; Korean: 있지; RR: Itji; MR: Itchi) is a South Korean girl group formed by JYP Entertainment and consisting of members Yeji, Lia, Ryujin, Chaeryeong, and Yuna. They debuted on February 12, 2019, with the release of their single album It'z Different. Their accolades include Rookie of the Year at the 34th Golden Disc Awards, New Artist of the Year at the 9th Gaon Chart Music Awards and 2019 Melon Music Awards, Best New Female Artist at the 2019 Mnet Asian Music Awards, and the New Artist Award at the 29th Seoul Music Awards; they are the first K-pop girl group to achieve such a \"Rookie Grand Slam\"\nCr: https://en.wikipedia.org/wiki/Itzy", "links": {"website": ["https://itzy.jype.com/", "https://www.instagram.com/itzy.all.in.us/"], "subreddit": ["ITZY"]}, "path": {"250-258, T": [[-133, -878], [-121, -878], [-121, -874], [-133, -874]]}, "center": {"250-258, T": [-127, -876]}}, +{"id": 6179, "name": "Mordecai", "description": "Simplyfied mini art of the head of Mordecai, one of the two protagonist from the 2010 Cartoon Network show Regular show.\nWas fully drawn by only one person.", "links": {"website": ["https://www.reddit.com/r/regularshow/comments/159e430/fans_what_if_we_do_mordecai_on_this_turk_flag/?utm_source=share&utm_medium=android_app&utm_name=androidcss&utm_term=1&utm_content=1"], "subreddit": ["regularshow"]}, "path": {"245-258, T": [[1467, -635], [1468, -635], [1469, -634], [1470, -633], [1471, -632], [1472, -631], [1473, -631], [1473, -630], [1472, -629], [1471, -628], [1469, -627], [1469, -626], [1468, -626], [1467, -626], [1466, -626], [1466, -627], [1466, -628], [1466, -629], [1466, -630], [1466, -631], [1466, -632], [1466, -633], [1466, -634], [1466, -635]]}, "center": {"245-258, T": [1469, -630]}}, +{"id": 6180, "name": "Beatle's Yellow submarine", "description": "This famous vehicle makes reference to the famous homonimous song from the liverpool quartet The Beatles which also appeared on an animation movie starred by The Beatles themselves", "links": {}, "path": {"174-253, T": [[-280, 717], [-280, 716], [-279, 715], [-279, 714], [-279, 713], [-280, 712], [-281, 712], [-282, 711], [-282, 710], [-282, 709], [-282, 708], [-282, 707], [-283, 706], [-284, 706], [-284, 705], [-285, 704], [-286, 705], [-286, 707], [-286, 709], [-286, 711], [-287, 712], [-288, 712], [-289, 712], [-290, 711], [-291, 712], [-291, 713], [-290, 714], [-291, 715], [-291, 716], [-290, 717], [-289, 717], [-291, 717], [-291, 711], [-289, 716], [-288, 716], [-287, 716], [-286, 717], [-285, 717], [-284, 717], [-283, 717], [-281, 717], [-282, 717], [-281, 717], [-282, 717]]}, "center": {"174-253, T": [-284, 714]}}, +{"id": 6181, "name": "Tree Rex", "description": "Tree Rex is a colossal Ent, who is one of the eight giants in 2012's Skylanders: Giants. He is also available in the Starter Park and Portal Owners Pack for Giants.\n\nIt was made by the members of the r/skylanders and has been moved many times before settling on the Green Lattice.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Giants", "https://rb.gy/vinn7"], "subreddit": ["skylanders"]}, "path": {"141-258, T": [[452, -816], [461, -816], [462, -815], [463, -814], [463, -813], [462, -812], [463, -812], [464, -811], [464, -810], [465, -809], [466, -808], [466, -806], [465, -805], [464, -804], [463, -804], [462, -803], [463, -802], [463, -799], [464, -798], [464, -797], [464, -796], [449, -796], [449, -798], [450, -799], [450, -801], [451, -802], [452, -803], [452, -804], [453, -805], [452, -806], [451, -806], [450, -807], [448, -807], [447, -808], [446, -809], [446, -811], [447, -812], [448, -813], [450, -813], [450, -814], [451, -815]]}, "center": {"141-258, T": [456, -810]}}, {"id": 6182, "name": "r/krao800 - Peru", "description": "Peruvian Youtuber From a small community survived until the end\n\nHe just wanted to help and among the community he became the cat mixed with that of his colleague flopaxGD", "links": {"website": ["https://www.youtube.com/channel/UCN6BfotvdCw4zOVMiztJrbA"], "subreddit": ["krao800"]}, "path": {"223": [[-269, 826], [-255, 826], [-255, 833], [-258, 833], [-260, 835], [-269, 835]]}, "center": {"223": [-262, 831]}}, {"id": 6183, "name": "Emu", "description": "A large flightless fast-running Australian bird resembling the ostrich, with shaggy grey or brown plumage, bare blue skin on the head and neck, and three-toed feet.", "links": {}, "path": {"211": [[-836, 40], [-832, 40], [-832, 41], [-831, 41], [-831, 46], [-828, 46], [-828, 48], [-827, 48], [-826, 49], [-827, 50], [-828, 51], [-829, 52], [-830, 52], [-830, 54], [-830, 55], [-835, 55], [-835, 50], [-836, 50], [-837, 49], [-838, 48], [-837, 47], [-836, 47], [-836, 46], [-835, 45], [-835, 44], [-836, 44], [-837, 43], [-836, 42], [-836, 41], [-836, 40], [-832, 40]]}, "center": {"211": [-832, 49]}}, {"id": 6184, "name": "Yellow-crested cockatoo", "description": "The yellow-crested cockatoo also known as the lesser sulphur-crested cockatoo, is a medium-sized cockatoo with white plumage, bluish-white bare orbital skin, grey feet, a black bill, and a retractile yellow or orange crest. The sexes are similar.", "links": {}, "path": {"211": [[-873, 37], [-870, 37], [-870, 38], [-869, 37], [-868, 37], [-868, 49], [-869, 49], [-870, 48], [-873, 45], [-874, 44], [-874, 43], [-873, 42], [-872, 41], [-873, 40], [-872, 39], [-873, 38], [-873, 37], [-871, 37]]}, "center": {"211": [-871, 44]}}, -{"id": 6185, "name": "Sunil Chhetri", "description": "Sunil Chhetri (born 3 August 1984) is an Indian professional footballer who plays as a forward and captains both Indian Super League club Bengaluru and the India national team. He is known for his link-up play, goal scoring abilities, and leadership. He is the third-highest international goal scorer among active players, behind only Cristiano Ronaldo and Lionel Messi and is also the most-capped player and the all-time top goal scorer of the India national team. He is widely regarded as one of the greatest Indian footballers of all time for his contributions for the country.", "links": {"website": ["https://en.wikipedia.org/wiki/Sunil_Chhetri"], "subreddit": ["IndianFootball"]}, "path": {"250-258": [[473, -255], [498, -255], [497, -248], [486, -248], [487, -241], [480, -241], [480, -247], [472, -248], [472, -255]]}, "center": {"250-258": [483, -250]}}, +{"id": 6185, "name": "Sunil Chhetri", "description": "Sunil Chhetri (born 3 August 1984) is an Indian professional footballer who plays as a forward and captains both Indian Super League club Bengaluru and the India national team. He is known for his link-up play, goal scoring abilities, and leadership. He is the third-highest international goal scorer among active players, behind only Cristiano Ronaldo and Lionel Messi and is also the most-capped player and the all-time top goal scorer of the India national team. He is widely regarded as one of the greatest Indian footballers of all time for his contributions for the country.", "links": {"website": ["https://en.wikipedia.org/wiki/Sunil_Chhetri"], "subreddit": ["IndianFootball"]}, "path": {"250-258, T": [[473, -255], [498, -255], [497, -248], [486, -248], [487, -241], [480, -241], [480, -247], [472, -248], [472, -255]]}, "center": {"250-258, T": [483, -250]}}, {"id": 6186, "name": "Kim Dokja & Biyoo", "description": "It's Kim Dokja, one of the main characters of the novel \"Omniscient Reader\" that got a webtoon adaptation. With him, there is Biyoo another character very dear to Dokja. Here a summary from u/Un-De_ad \"Omniscient reader's viewpoint takes a unique perspective, mocking the clichés of web novels. The story takes place in a world of a novel and is told in the perspective of an outsider, who grows stronger mentally and physically by facing hardships with the novel's protagonist.\" The heart after Dokja is to represent the love the community has for him.", "links": {"subreddit": ["OmniscientReader"], "discord": ["J4WNaXJ6zT", "orv"]}, "path": {"129-144": [[-340, -816], [-340, -798], [-310, -798], [-310, -816], [-340, -816], [-340, -821], [-310, -821], [-310, -816], [-326, -816]]}, "center": {"129-144": [-331, -807]}}, -{"id": 6187, "name": "Agender and Bigender flags", "description": "The flags of the agender and bigender communities. The agender flag is black, grey, white, and green. The bigender flag is blue, white, pink, and lilac.\n\nAgender and Bigender are nonbinary identities in the LGBTQ community. Agender people have a neutral or absent gender and bigender people have two genders either simultaneously or that they switch between.", "links": {"website": ["https://en.wikipedia.org/wiki/Non-binary_gender"]}, "path": {"250-258": [[712, -971], [712, -959], [720, -959], [720, -971]]}, "center": {"250-258": [716, -965]}}, -{"id": 6188, "name": "Bavaria", "description": "Bavaria is a state in the south-east of Germany. With an area of 70,550.19 km2 (27,239.58 sq mi), Bavaria is the largest German state by land area, comprising roughly a fifth of the total land area of Germany. With over 13 million inhabitants, it is the second largest German state in terms of population only to North Rhine-Westphalia, but due to its large size its population density is below the German average. Bavaria's main cities are Munich (its capital and largest city, which is also the third largest city in Germany),[5] Nuremberg, and Augsburg.", "links": {"subreddit": ["bavaria"]}, "path": {"199-258": [[-252, 755], [-253, 756], [-254, 756], [-251, 755], [-250, 755], [-250, 756], [-249, 757], [-249, 758], [-248, 758], [-247, 758], [-246, 759], [-247, 760], [-248, 761], [-249, 761], [-250, 762], [-250, 763], [-251, 764], [-252, 764], [-252, 765], [-254, 765], [-255, 765], [-255, 766], [-256, 766], [-257, 766], [-257, 757], [-259, 761], [-260, 762], [-259, 763], [-259, 764], [-258, 765], [-258, 766], [-259, 765], [-256, 757], [-255, 756], [-254, 755], [-253, 765], [-252, 765], [-254, 765], [-251, 764], [-250, 763], [-249, 762], [-249, 764], [-251, 765]]}, "center": {"199-258": [-249, 759]}}, +{"id": 6187, "name": "Agender and Bigender flags", "description": "The flags of the agender and bigender communities. The agender flag is black, grey, white, and green. The bigender flag is blue, white, pink, and lilac.\n\nAgender and Bigender are nonbinary identities in the LGBTQ community. Agender people have a neutral or absent gender and bigender people have two genders either simultaneously or that they switch between.", "links": {"website": ["https://en.wikipedia.org/wiki/Non-binary_gender"]}, "path": {"250-258, T": [[712, -971], [712, -959], [720, -959], [720, -971]]}, "center": {"250-258, T": [716, -965]}}, +{"id": 6188, "name": "Bavaria", "description": "Bavaria is a state in the south-east of Germany. With an area of 70,550.19 km2 (27,239.58 sq mi), Bavaria is the largest German state by land area, comprising roughly a fifth of the total land area of Germany. With over 13 million inhabitants, it is the second largest German state in terms of population only to North Rhine-Westphalia, but due to its large size its population density is below the German average. Bavaria's main cities are Munich (its capital and largest city, which is also the third largest city in Germany),[5] Nuremberg, and Augsburg.", "links": {"subreddit": ["bavaria"]}, "path": {"199-258, T": [[-252, 755], [-253, 756], [-254, 756], [-251, 755], [-250, 755], [-250, 756], [-249, 757], [-249, 758], [-248, 758], [-247, 758], [-246, 759], [-247, 760], [-248, 761], [-249, 761], [-250, 762], [-250, 763], [-251, 764], [-252, 764], [-252, 765], [-254, 765], [-255, 765], [-255, 766], [-256, 766], [-257, 766], [-257, 757], [-259, 761], [-260, 762], [-259, 763], [-259, 764], [-258, 765], [-258, 766], [-259, 765], [-256, 757], [-255, 756], [-254, 755], [-253, 765], [-252, 765], [-254, 765], [-251, 764], [-250, 763], [-249, 762], [-249, 764], [-251, 765]]}, "center": {"199-258, T": [-249, 759]}}, {"id": 6189, "name": "Omniscient Reader's Viewpoint", "description": "Omniscient Reader's Viewpoint is a apocalyptic fantasy Fiction Korean Web Novel written by a Korean author duo writing under the pen name Sing-Syong about an office worker, Kim Dokja, who enters the world of his favorite novel", "links": {"website": ["https://linktr.ee/lecteuromniscient", "https://m.webtoons.com/en/action/omniscient-reader/list?title_no=2154", "https://omniscient-readers-viewpoint.fandom.com/wiki/Omniscient_Reader%E2%80%99s_Viewpoint_Wiki"], "subreddit": ["OmniscientReader"], "discord": ["orv", "lecteur-omniscient-fra-fandom-926077124937396234"]}, "path": {"255-258": [[-1310, 49], [-1291, 51], [-1288, 58], [-1288, 69], [-1304, 70], [-1314, 65]]}, "center": {"255-258": [-1302, 60]}}, -{"id": 6190, "name": "Enfuego Chompy", "description": "Enfuego Chompy are basically red Chompy that are covered in flames in Skylanders: Giants. They will start shaking and explode when they get to a certain distance from a Skylanders, even if they move out of the way before it can damage them.\n\nIt was made by the members of the r/skylanders and has been moved several times before settling on the Green Lattice.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Giants"], "subreddit": ["skylanders"]}, "path": {"141-258": [[430, -803], [430, -807], [432, -807], [432, -804], [432, -807], [434, -807], [434, -803], [435, -802], [436, -801], [437, -800], [438, -799], [437, -798], [436, -797], [435, -798], [435, -796], [434, -795], [433, -796], [433, -797], [432, -797], [432, -796], [431, -795], [430, -796], [430, -797], [430, -798], [428, -798], [427, -799], [428, -800], [429, -801], [429, -802]]}, "center": {"141-258": [432, -800]}}, -{"id": 6191, "name": "Stitch", "description": "Stitch is the main protagonist and titular of the franchise Lilo and Stitch, a Disney movie serie that takes place in Hawaii.", "links": {}, "path": {"220-258": [[1478, -935], [1479, -935], [1480, -935], [1481, -935], [1482, -935], [1482, -936], [1481, -937], [1481, -938], [1481, -939], [1482, -940], [1482, -941], [1483, -942], [1484, -941], [1485, -942], [1486, -943], [1487, -942], [1488, -943], [1487, -944], [1486, -945], [1486, -946], [1485, -947], [1484, -948], [1483, -950], [1482, -951], [1483, -951], [1484, -952], [1484, -953], [1484, -954], [1483, -955], [1482, -955], [1482, -956], [1481, -956], [1480, -956], [1479, -955], [1478, -954], [1477, -955], [1476, -956], [1475, -956], [1475, -957], [1474, -958], [1473, -957], [1473, -956], [1473, -955], [1472, -954], [1472, -953], [1472, -952], [1472, -950], [1473, -951], [1471, -949], [1471, -948], [1470, -947], [1470, -946], [1469, -945], [1469, -944], [1469, -943], [1469, -942], [1469, -941], [1470, -940], [1471, -941], [1472, -942], [1472, -941], [1472, -940], [1472, -939], [1476, -935], [1475, -935], [1474, -935], [1473, -935], [1473, -937], [1473, -938], [1472, -939]]}, "center": {"220-258": [1478, -946]}}, -{"id": 6192, "name": "Tsukumo Sana's bread dog", "description": "Embodiment of the Sanallites, Tsukumo Sana Fandom.\nTsukumo Sana (九十九 佐命) was an English Virtual YouTuber associated with hololive. She debuted in 2021 as part of hololive -Council-, the second generation of members of hololive English, alongside Ceres Fauna, Ouro Kronii, Nanashi Mumei and Hakos Baelz.", "links": {"website": ["https://hololive.hololivepro.com/en/talents/tsukumo-sana/", "https://www.youtube.com/channel/UCsUj0dszADCGbF3gNrQEuSQ", "https://twitter.com/tsukumosana"], "subreddit": ["Hololive"]}, "path": {"250-258": [[-241, -824], [-242, -825], [-243, -825], [-242, -825], [-242, -826], [-242, -827], [-242, -828], [-242, -827], [-242, -828], [-244, -828], [-244, -827], [-243, -827], [-242, -827], [-242, -826], [-242, -831], [-244, -831], [-244, -829], [-243, -831], [-243, -832], [-242, -832], [-241, -832], [-242, -833], [-239, -833], [-239, -834], [-238, -834], [-238, -835], [-234, -835], [-234, -834], [-233, -834], [-234, -833], [-228, -833], [-227, -833], [-227, -834], [-228, -834], [-227, -835], [-226, -835], [-226, -831], [-227, -831], [-227, -825], [-228, -825], [-228, -824], [-229, -824], [-229, -825], [-236, -825], [-236, -824], [-237, -824], [-237, -825], [-241, -825]]}, "center": {"250-258": [-233, -829]}}, +{"id": 6190, "name": "Enfuego Chompy", "description": "Enfuego Chompy are basically red Chompy that are covered in flames in Skylanders: Giants. They will start shaking and explode when they get to a certain distance from a Skylanders, even if they move out of the way before it can damage them.\n\nIt was made by the members of the r/skylanders and has been moved several times before settling on the Green Lattice.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Giants"], "subreddit": ["skylanders"]}, "path": {"141-258, T": [[430, -803], [430, -807], [432, -807], [432, -804], [432, -807], [434, -807], [434, -803], [435, -802], [436, -801], [437, -800], [438, -799], [437, -798], [436, -797], [435, -798], [435, -796], [434, -795], [433, -796], [433, -797], [432, -797], [432, -796], [431, -795], [430, -796], [430, -797], [430, -798], [428, -798], [427, -799], [428, -800], [429, -801], [429, -802]]}, "center": {"141-258, T": [432, -800]}}, +{"id": 6191, "name": "Stitch", "description": "Stitch is the main protagonist and titular of the franchise Lilo and Stitch, a Disney movie serie that takes place in Hawaii.", "links": {}, "path": {"220-258, T": [[1478, -935], [1479, -935], [1480, -935], [1481, -935], [1482, -935], [1482, -936], [1481, -937], [1481, -938], [1481, -939], [1482, -940], [1482, -941], [1483, -942], [1484, -941], [1485, -942], [1486, -943], [1487, -942], [1488, -943], [1487, -944], [1486, -945], [1486, -946], [1485, -947], [1484, -948], [1483, -950], [1482, -951], [1483, -951], [1484, -952], [1484, -953], [1484, -954], [1483, -955], [1482, -955], [1482, -956], [1481, -956], [1480, -956], [1479, -955], [1478, -954], [1477, -955], [1476, -956], [1475, -956], [1475, -957], [1474, -958], [1473, -957], [1473, -956], [1473, -955], [1472, -954], [1472, -953], [1472, -952], [1472, -950], [1473, -951], [1471, -949], [1471, -948], [1470, -947], [1470, -946], [1469, -945], [1469, -944], [1469, -943], [1469, -942], [1469, -941], [1470, -940], [1471, -941], [1472, -942], [1472, -941], [1472, -940], [1472, -939], [1476, -935], [1475, -935], [1474, -935], [1473, -935], [1473, -937], [1473, -938], [1472, -939]]}, "center": {"220-258, T": [1478, -946]}}, +{"id": 6192, "name": "Tsukumo Sana's bread dog", "description": "Embodiment of the Sanallites, Tsukumo Sana Fandom.\nTsukumo Sana (九十九 佐命) was an English Virtual YouTuber associated with hololive. She debuted in 2021 as part of hololive -Council-, the second generation of members of hololive English, alongside Ceres Fauna, Ouro Kronii, Nanashi Mumei and Hakos Baelz.", "links": {"website": ["https://hololive.hololivepro.com/en/talents/tsukumo-sana/", "https://www.youtube.com/channel/UCsUj0dszADCGbF3gNrQEuSQ", "https://twitter.com/tsukumosana"], "subreddit": ["Hololive"]}, "path": {"250-258, T": [[-241, -824], [-242, -825], [-243, -825], [-242, -825], [-242, -826], [-242, -827], [-242, -828], [-242, -827], [-242, -828], [-244, -828], [-244, -827], [-243, -827], [-242, -827], [-242, -826], [-242, -831], [-244, -831], [-244, -829], [-243, -831], [-243, -832], [-242, -832], [-241, -832], [-242, -833], [-239, -833], [-239, -834], [-238, -834], [-238, -835], [-234, -835], [-234, -834], [-233, -834], [-234, -833], [-228, -833], [-227, -833], [-227, -834], [-228, -834], [-227, -835], [-226, -835], [-226, -831], [-227, -831], [-227, -825], [-228, -825], [-228, -824], [-229, -824], [-229, -825], [-236, -825], [-236, -824], [-237, -824], [-237, -825], [-241, -825]]}, "center": {"250-258, T": [-233, -829]}}, {"id": 6193, "name": "Can of L&P", "description": "Lemon & Paeroa, also known as L&P, is a sweet, lemon flavored soft drink manufactured in New Zealand.", "links": {}, "path": {"211": [[-877, 24], [-876, 23], [-871, 23], [-870, 24], [-869, 25], [-869, 33], [-870, 34], [-871, 35], [-876, 35], [-877, 34], [-878, 33], [-878, 25]]}, "center": {"211": [-873, 29]}}, -{"id": 6194, "name": "Sunil Chhetri", "description": "Sunil Chhetri (born 3 August 1984) is an Indian professional footballer who plays as a forward and captains both Indian Super League club Bengaluru and the India national team. He is known for his link-up play, goal scoring abilities, and leadership. He is the third-highest international goal scorer among active players, behind only Cristiano Ronaldo and Lionel Messi, fourth overall, and is also the most-capped player and the all-time top goal scorer of the India national team. He is widely regarded as one of the greatest Indian footballers of all time for his contributions for the country.", "links": {"website": ["https://en.wikipedia.org/wiki/Sunil_Chhetri"], "subreddit": ["indianfootball"]}, "path": {"250-258": [[472, -255], [498, -255], [498, -248], [487, -248], [487, -241], [480, -241], [480, -248], [472, -248], [472, -255], [473, -255]]}, "center": {"250-258": [484, -251]}}, +{"id": 6194, "name": "Sunil Chhetri", "description": "Sunil Chhetri (born 3 August 1984) is an Indian professional footballer who plays as a forward and captains both Indian Super League club Bengaluru and the India national team. He is known for his link-up play, goal scoring abilities, and leadership. He is the third-highest international goal scorer among active players, behind only Cristiano Ronaldo and Lionel Messi, fourth overall, and is also the most-capped player and the all-time top goal scorer of the India national team. He is widely regarded as one of the greatest Indian footballers of all time for his contributions for the country.", "links": {"website": ["https://en.wikipedia.org/wiki/Sunil_Chhetri"], "subreddit": ["indianfootball"]}, "path": {"250-258, T": [[472, -255], [498, -255], [498, -248], [487, -248], [487, -241], [480, -241], [480, -248], [472, -248], [472, -255], [473, -255]]}, "center": {"250-258, T": [484, -251]}}, {"id": 6195, "name": "r/starwars_place lightsaber", "description": "A lightsaber with r/starwars_place written on it. This is the second time it was made, the first time on the left side of the canvas before it was destroyed by XQC's Charizard Card.\n\nIt was made in collaboration with German streamer Straiy and r/starwars_place", "links": {"subreddit": ["starwars_place"], "discord": ["TheGalacticRepublic"]}, "path": {"205-247": [[1032, -711], [1032, -614], [1040, -614], [1041, -711]]}, "center": {"205-247": [1037, -706]}}, {"id": 6196, "name": "The Galactic Republic Discord Logo + Invite Link", "description": "The logo and invite link for the Galactic Republic discord server, where all Star Wars art was coordinated both this place and the previous one.\n\nA bit.ly link was opted for instead of the full link due to the size of it, writing out bit.ly/tgrd. \n\nThe logo is of both the GAR & CIS logos merged into one.", "links": {"website": ["https://bit.ly/tgrd"], "subreddit": ["starwars_place"], "discord": ["TheGalacticRepublic"]}, "path": {"229-247": [[1141, -744], [1150, -744], [1151, -742], [1152, -740], [1153, -738], [1154, -736], [1155, -736], [1155, -734], [1156, -734], [1156, -733], [1157, -733], [1157, -730], [1156, -729], [1155, -727], [1154, -726], [1153, -724], [1152, -722], [1151, -720], [1151, -719], [1156, -719], [1156, -716], [1153, -712], [1153, -707], [1145, -707], [1145, -705], [1141, -705], [1141, -707], [1138, -707], [1138, -708], [1137, -708], [1137, -713], [1134, -713], [1134, -719], [1139, -719], [1139, -721], [1137, -721], [1134, -724], [1133, -726], [1132, -728], [1132, -735], [1133, -737], [1134, -739], [1136, -741], [1138, -742], [1139, -743]]}, "center": {"229-247": [1144, -732]}}, -{"id": 6197, "name": "Reddit Third Party Client App Icons", "description": "This is the section of the taskbar dedicated for Reddit third party client apps, particularly ones affected byReddit's decisions to end free API. BANANO was not originally planned to be here, but later got permission. Türkiye was also not originally planned to be here, but never got permission and there was a continual push back against Türkiye's expansion.\n\nThe original intent of the Taskbar can be seen in the source below.", "links": {"website": ["https://cdn.discordapp.com/attachments/1131630764388257822/1132257003012620298/v4-3000.png"], "subreddit": ["placeStart"], "discord": ["XcBujggwty"]}, "path": {"250-258": [[-1370, 971], [-1211, 971], [-1211, 999], [-1370, 999]]}, "center": {"250-258": [-1290, 985]}}, -{"id": 6198, "name": "Chill Bill", "description": "Chill Bill is an ice troll who is one of the many trappable Water villains in 2014's Skylanders: Trap Team. He was encountered at chapter four's Phoenix Psanctuary, freezing several birds with his freeze ray before fighting the Skylanders. Aside from his villainous acts, he is the DJ for Troll Radio in both Trap Team and the sixth mainline game in the series, Imaginators.\n\nThe pixel art was created by the members of the r/skylanders it was chosen first to be made, due to the character exploding in popularity in mid-2023 due to the memes. However, the pixel art was moved several times before settling on the Green Lattice.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Trap_Team", "https://rb.gy/vinn7"], "subreddit": ["skylanders"]}, "path": {"138-258": [[415, -806], [418, -806], [419, -805], [424, -805], [425, -806], [428, -806], [429, -805], [428, -804], [427, -803], [426, -803], [425, -802], [426, -802], [427, -801], [428, -800], [428, -796], [427, -795], [426, -796], [425, -797], [425, -799], [425, -797], [425, -796], [426, -795], [426, -794], [423, -794], [422, -794], [422, -796], [421, -796], [421, -794], [418, -794], [417, -794], [417, -795], [418, -796], [418, -799], [418, -796], [417, -796], [416, -795], [415, -796], [416, -801], [417, -802], [418, -802], [417, -802], [417, -803], [416, -803], [415, -804], [414, -805], [414, -806]]}, "center": {"138-258": [422, -800]}}, +{"id": 6197, "name": "Reddit Third Party Client App Icons", "description": "This is the section of the taskbar dedicated for Reddit third party client apps, particularly ones affected byReddit's decisions to end free API. BANANO was not originally planned to be here, but later got permission. Türkiye was also not originally planned to be here, but never got permission and there was a continual push back against Türkiye's expansion.\n\nThe original intent of the Taskbar can be seen in the source below.", "links": {"website": ["https://cdn.discordapp.com/attachments/1131630764388257822/1132257003012620298/v4-3000.png"], "subreddit": ["placeStart"], "discord": ["XcBujggwty"]}, "path": {"250-258, T": [[-1370, 971], [-1211, 971], [-1211, 999], [-1370, 999]]}, "center": {"250-258, T": [-1290, 985]}}, +{"id": 6198, "name": "Chill Bill", "description": "Chill Bill is an ice troll who is one of the many trappable Water villains in 2014's Skylanders: Trap Team. He was encountered at chapter four's Phoenix Psanctuary, freezing several birds with his freeze ray before fighting the Skylanders. Aside from his villainous acts, he is the DJ for Troll Radio in both Trap Team and the sixth mainline game in the series, Imaginators.\n\nThe pixel art was created by the members of the r/skylanders it was chosen first to be made, due to the character exploding in popularity in mid-2023 due to the memes. However, the pixel art was moved several times before settling on the Green Lattice.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Trap_Team", "https://rb.gy/vinn7"], "subreddit": ["skylanders"]}, "path": {"138-258, T": [[415, -806], [418, -806], [419, -805], [424, -805], [425, -806], [428, -806], [429, -805], [428, -804], [427, -803], [426, -803], [425, -802], [426, -802], [427, -801], [428, -800], [428, -796], [427, -795], [426, -796], [425, -797], [425, -799], [425, -797], [425, -796], [426, -795], [426, -794], [423, -794], [422, -794], [422, -796], [421, -796], [421, -794], [418, -794], [417, -794], [417, -795], [418, -796], [418, -799], [418, -796], [417, -796], [416, -795], [415, -796], [416, -801], [417, -802], [418, -802], [417, -802], [417, -803], [416, -803], [415, -804], [414, -805], [414, -806]]}, "center": {"138-258, T": [422, -800]}}, {"id": 6199, "name": "Storm Helmet", "description": "This is the helmet of the user Storm on the The Galactic Republic discord server.\n\nStorm is extremely cool and shall be immortalized in r/place forever.", "links": {"subreddit": ["starwars_place"], "discord": ["TheGalacticRepublic"]}, "path": {"209-247": [[1120, -632], [1127, -632], [1128, -620], [1118, -620], [1119, -632]]}, "center": {"209-247": [1123, -626]}}, {"id": 6200, "name": "r/starwars_place lightsaber #1", "description": "r/starwars_place's lightsaber, completed a few minutes before XQC formed his Charizard Card overtook them.", "links": {"subreddit": ["starwars_place"], "discord": ["TheGalacticRepublic"]}, "path": {"172-176": [[-1383, -7], [-1383, -10], [-1382, -10], [-1382, -11], [-1374, -11], [-1374, -10], [-1372, -10], [-1372, -11], [-1370, -11], [-1370, -13], [-1368, -13], [-1368, -11], [-1287, -11], [-1284, -8], [-1287, -5], [-1355, -5], [-1355, -6], [-1357, -6], [-1357, -7], [-1362, -7], [-1362, -6], [-1369, -6], [-1369, -5], [-1369, -6], [-1372, -6], [-1372, -7], [-1374, -7], [-1374, -6], [-1382, -6], [-1382, -7]]}, "center": {"172-176": [-1332, -8]}}, {"id": 6201, "name": "r/starwars_place's Initial Attempted Piece", "description": "This was where r/starwars_place originally tried to build, before they were overrun by Fuck Spez", "links": {"subreddit": ["starwars_place"], "discord": ["TheGalacticRepublic"]}, "path": {"1-11": [[30, 231], [98, 231], [98, 257], [96, 257], [96, 300], [30, 300]]}, "center": {"1-11": [63, 265]}}, -{"id": 6202, "name": "j", "description": "A tribute to the letter j and its fans.", "links": {}, "path": {"166-258": [[-51, 969], [-51, 963], [-47, 963], [-47, 969]]}, "center": {"166-258": [-49, 966]}}, -{"id": 6203, "name": "Beatle's Yellow submarine", "description": "This famous vehicle makes reference to the famous homonimous song from the liverpool quartet The Beatles which also appeared on an animation movie starred by The Beatles themselves", "links": {}, "path": {"220-258": [[742, 946], [742, 945], [742, 944], [743, 947], [744, 947], [745, 947], [746, 947], [747, 948], [748, 949], [749, 950], [749, 951], [749, 952], [748, 953], [747, 954], [746, 954], [744, 955], [743, 955], [742, 955], [741, 955], [739, 955], [738, 955], [737, 955], [736, 955], [735, 954], [734, 954], [733, 953], [732, 954], [731, 954], [730, 953], [729, 952], [729, 951], [729, 950], [729, 949], [729, 948], [730, 947], [731, 946], [732, 947], [733, 947], [734, 947], [733, 947], [735, 947], [736, 946], [737, 945], [735, 944], [736, 943], [738, 942], [738, 941], [739, 940], [740, 941], [740, 940], [741, 939], [742, 939], [742, 940], [742, 941], [742, 942], [742, 943], [742, 944], [742, 945]]}, "center": {"220-258": [739, 950]}}, +{"id": 6202, "name": "j", "description": "A tribute to the letter j and its fans.", "links": {}, "path": {"166-258, T": [[-51, 969], [-51, 963], [-47, 963], [-47, 969]]}, "center": {"166-258, T": [-49, 966]}}, +{"id": 6203, "name": "Beatle's Yellow submarine", "description": "This famous vehicle makes reference to the famous homonimous song from the liverpool quartet The Beatles which also appeared on an animation movie starred by The Beatles themselves", "links": {}, "path": {"220-258, T": [[742, 946], [742, 945], [742, 944], [743, 947], [744, 947], [745, 947], [746, 947], [747, 948], [748, 949], [749, 950], [749, 951], [749, 952], [748, 953], [747, 954], [746, 954], [744, 955], [743, 955], [742, 955], [741, 955], [739, 955], [738, 955], [737, 955], [736, 955], [735, 954], [734, 954], [733, 953], [732, 954], [731, 954], [730, 953], [729, 952], [729, 951], [729, 950], [729, 949], [729, 948], [730, 947], [731, 946], [732, 947], [733, 947], [734, 947], [733, 947], [735, 947], [736, 946], [737, 945], [735, 944], [736, 943], [738, 942], [738, 941], [739, 940], [740, 941], [740, 940], [741, 939], [742, 939], [742, 940], [742, 941], [742, 942], [742, 943], [742, 944], [742, 945]]}, "center": {"220-258, T": [739, 950]}}, {"id": 6204, "name": "r/starwars_place's Initial Attempted Piece, Attempt #2", "description": "The second time r/starwars_place attempted to make their artwork, before they were overrun by twitch streamer CapitainGatoo's Peru flag.", "links": {"subreddit": ["starwars_place"], "discord": ["TheGalacticRepublic"]}, "path": {"28-39": [[30, 232], [30, 231], [86, 231], [86, 242], [30, 242], [30, 231]]}, "center": {"28-39": [58, 237]}}, -{"id": 6205, "name": "Kaaklijn", "description": "Kaaklijn (Don Verhage) is a famous Dutch content creator who prominently streams on Twitch and is known for one of his Twitch emotes; 99", "links": {"website": ["https://www.twitch.tv/donkaaklijn"]}, "path": {"250-258": [[814, -972], [814, -1000], [747, -1000], [747, -972]]}, "center": {"250-258": [781, -986]}}, -{"id": 6206, "name": "Færoes islands", "description": "This heart with a flag represents the Færoe islands is a North Atlantic island group and an autonomous territory of the Kingdom of Denmark. They are located 320 kilometres (200 mi) north-northwest of the United Kingdom.", "links": {"subreddit": ["FaroeIslands"]}, "path": {"169-258": [[-306, 686], [-305, 685], [-304, 684], [-303, 683], [-303, 682], [-302, 682], [-301, 681], [-300, 680], [-300, 679], [-301, 677], [-302, 677], [-303, 675], [-304, 675], [-305, 676], [-306, 677], [-307, 676], [-308, 676], [-309, 675], [-310, 676], [-311, 677], [-312, 678], [-313, 679], [-313, 680], [-312, 681], [-312, 682], [-311, 683], [-310, 684], [-309, 684], [-308, 685], [-307, 686], [-306, 686], [-305, 686], [-305, 685]]}, "center": {"169-258": [-306, 681]}}, +{"id": 6205, "name": "Kaaklijn", "description": "Kaaklijn (Don Verhage) is a famous Dutch content creator who prominently streams on Twitch and is known for one of his Twitch emotes; 99", "links": {"website": ["https://www.twitch.tv/donkaaklijn"]}, "path": {"250-258, T": [[814, -972], [814, -1000], [747, -1000], [747, -972]]}, "center": {"250-258, T": [781, -986]}}, +{"id": 6206, "name": "Færoes islands", "description": "This heart with a flag represents the Færoe islands is a North Atlantic island group and an autonomous territory of the Kingdom of Denmark. They are located 320 kilometres (200 mi) north-northwest of the United Kingdom.", "links": {"subreddit": ["FaroeIslands"]}, "path": {"169-258, T": [[-306, 686], [-305, 685], [-304, 684], [-303, 683], [-303, 682], [-302, 682], [-301, 681], [-300, 680], [-300, 679], [-301, 677], [-302, 677], [-303, 675], [-304, 675], [-305, 676], [-306, 677], [-307, 676], [-308, 676], [-309, 675], [-310, 676], [-311, 677], [-312, 678], [-313, 679], [-313, 680], [-312, 681], [-312, 682], [-311, 683], [-310, 684], [-309, 684], [-308, 685], [-307, 686], [-306, 686], [-305, 686], [-305, 685]]}, "center": {"169-258, T": [-306, 681]}}, {"id": 6207, "name": "Spontaneous Christian Cross", "description": "", "links": {}, "path": {"153-196": [[706, 787], [708, 788], [709, 787], [710, 787], [711, 787], [712, 787], [714, 787], [716, 787], [717, 787], [719, 787], [720, 787], [721, 787], [723, 787], [723, 788], [723, 789], [723, 790], [723, 791], [723, 793], [723, 794], [723, 795], [723, 796], [723, 797], [723, 798], [723, 799], [723, 800], [723, 801], [723, 802], [723, 803], [723, 804], [723, 805], [722, 806], [720, 806], [719, 807], [718, 807], [718, 808], [718, 810], [718, 811], [718, 812], [718, 813], [718, 818], [718, 819], [718, 820], [718, 809], [718, 820], [718, 821], [718, 823], [717, 823], [715, 823], [714, 823], [713, 823], [712, 823], [711, 823], [710, 823], [708, 823], [707, 823], [706, 823], [705, 823], [705, 822], [705, 821], [705, 820], [705, 819], [705, 818], [705, 817], [705, 816], [705, 815], [705, 814], [705, 813], [705, 812], [705, 811], [705, 810], [705, 809], [705, 808], [705, 807], [704, 807], [703, 807], [702, 807], [702, 806], [701, 806], [700, 805], [699, 804], [698, 804], [698, 803], [698, 802], [698, 801], [698, 800], [698, 799], [698, 798], [698, 797], [698, 796], [699, 796], [700, 796], [701, 796], [702, 796], [704, 796], [705, 796], [706, 796], [706, 795], [707, 795], [707, 794], [707, 792], [707, 790], [707, 789], [707, 788], [706, 788]]}, "center": {"153-196": [714, 799]}}, -{"id": 6208, "name": "Bill Cipher", "description": "Bill Cipher is the main antagonist from the 2012 disney show Gravity falls", "links": {"subreddit": ["gravityfalls"]}, "path": {"219-258": [[1473, -447], [1473, -448], [1473, -449], [1473, -450], [1473, -451], [1474, -451], [1475, -451], [1477, -451], [1478, -450], [1478, -449], [1478, -451], [1478, -448], [1478, -447], [1478, -448], [1479, -447], [1480, -447], [1481, -447], [1481, -446], [1481, -445], [1481, -444], [1481, -443], [1480, -442], [1478, -442], [1477, -442], [1478, -441], [1479, -440], [1480, -439], [1481, -438], [1481, -437], [1482, -437], [1483, -436], [1484, -435], [1485, -434], [1486, -433], [1487, -432], [1487, -431], [1486, -431], [1485, -431], [1484, -431], [1483, -431], [1482, -431], [1482, -430], [1482, -429], [1482, -428], [1482, -427], [1483, -426], [1482, -425], [1481, -424], [1480, -424], [1479, -424], [1478, -424], [1477, -424], [1475, -424], [1474, -424], [1473, -424], [1472, -424], [1471, -424], [1470, -424], [1469, -425], [1468, -426], [1469, -427], [1469, -428], [1469, -429], [1469, -430], [1469, -431], [1468, -431], [1467, -431], [1465, -431], [1464, -432], [1465, -433], [1466, -434], [1467, -435], [1468, -436], [1469, -437], [1470, -438], [1471, -439], [1472, -440], [1473, -441], [1474, -442], [1473, -442], [1472, -442], [1471, -442], [1470, -443], [1469, -444], [1469, -445], [1470, -446], [1471, -447], [1472, -447], [1473, -447], [1473, -451], [1473, -450], [1473, -449], [1473, -448], [1474, -450]]}, "center": {"219-258": [1475, -433]}}, -{"id": 6209, "name": "Gill Grunt", "description": "Gill Grunt, also known as Gill, is a Gillman Skylander in 2011's Skylanders: Spyro's Adventure. He is one of the three Skylanders who come with the console version of the Starter Pack. He had four series, spanning from Giants to Trap Team. In Superchargers, he got his counterpart called Deep Dive Gill Grunt.\n\nThe pixel art was made by the members of r/skylanders.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Spyro%27s_Adventure", "https://rb.gy//4ckp7"], "subreddit": ["skylanders"]}, "path": {"150-258": [[442, -805], [442, -807], [443, -807], [444, -807], [444, -805], [444, -806], [445, -806], [446, -805], [446, -804], [445, -803], [446, -802], [447, -801], [447, -800], [446, -799], [445, -799], [446, -798], [447, -797], [447, -796], [447, -795], [439, -795], [439, -798], [440, -798], [441, -799], [439, -799], [438, -800], [437, -800], [436, -801], [437, -802], [438, -802], [439, -803], [440, -802], [441, -803], [440, -804], [440, -805], [441, -806]]}, "center": {"150-258": [443, -801]}}, -{"id": 6210, "name": "Sleath Elf", "description": "Sleath Elf is an elven ninja who is one of the playable Skylanders in the series. Her Legendary counterpart, Legendary Sleath Elf, is a Toys R Us exclusive. She got two series, spanning from Giants to Swap Force, with Series 3, also from Swap Force, she was called Ninja Sleath Elf, which is one of the three starter Skylanders in Ring of Heroes, an RPG mobile game. In Superchargers, she is called Super Shot Sleath Elf and is part of the Starter Pack in the console version, alongside with Spitfire. She got her miniature version of herself, Whisper Elf, one of Spyro's four sidekicks in Adventure, and won't be fully playable until Trap Team.\n\nThe pixel art was created by the members of r/skylanders.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Spyro%27s_Adventure", "https://rb.gy/w63cy"], "subreddit": ["skylanders"]}, "path": {"157-258": [[405, -800], [406, -801], [406, -803], [407, -804], [408, -805], [409, -806], [411, -806], [412, -805], [412, -804], [412, -805], [413, -805], [414, -805], [415, -804], [414, -803], [413, -802], [412, -801], [411, -801], [412, -800], [413, -799], [413, -798], [414, -797], [414, -796], [414, -795], [413, -795], [405, -795], [405, -796], [405, -797], [406, -798], [407, -799], [406, -799]]}, "center": {"157-258": [410, -798]}}, -{"id": 6211, "name": "Girls' Generation Logo", "description": "Logo of the South Korean girl group \"Girls' Generation\" also known as \"소녀시대\" (Romanised: So Nyuh Shi Dae), or abbreviated \"SNSD\".\nThey are composed of 8 members:\nTaeyeon, Sunny, Tiffany, Sooyoung, Seohyun, Hyoyeon, Yuri, Yoona.\nOriginally 9 members, Jessica left the group in 2014.", "links": {"website": ["https://en.wikipedia.org/wiki/Girls%27_Generation"]}, "path": {"250-258": [[-1108, 523], [-1109, 523], [-1109, 522], [-1110, 522], [-1110, 521], [-1112, 521], [-1112, 522], [-1114, 522], [-1114, 524], [-1115, 524], [-1115, 528], [-1114, 528], [-1114, 529], [-1113, 529], [-1113, 530], [-1112, 530], [-1112, 531], [-1111, 531], [-1111, 534], [-1112, 534], [-1112, 535], [-1114, 535], [-1114, 536], [-1115, 536], [-1114, 536], [-1114, 537], [-1113, 537], [-1113, 538], [-1112, 538], [-1112, 539], [-1110, 539], [-1110, 540], [-1106, 540], [-1106, 539], [-1104, 539], [-1104, 538], [-1103, 538], [-1103, 537], [-1102, 537], [-1102, 536], [-1102, 535], [-1103, 535], [-1104, 535], [-1104, 534], [-1105, 534], [-1105, 531], [-1104, 531], [-1104, 529], [-1102, 529], [-1102, 527], [-1101, 527], [-1101, 524], [-1102, 524], [-1102, 522], [-1104, 522], [-1104, 521], [-1106, 521], [-1106, 522], [-1107, 522], [-1107, 523], [-1109, 523]]}, "center": {"250-258": [-1108, 527]}}, +{"id": 6208, "name": "Bill Cipher", "description": "Bill Cipher is the main antagonist from the 2012 disney show Gravity falls", "links": {"subreddit": ["gravityfalls"]}, "path": {"219-258, T": [[1473, -447], [1473, -448], [1473, -449], [1473, -450], [1473, -451], [1474, -451], [1475, -451], [1477, -451], [1478, -450], [1478, -449], [1478, -451], [1478, -448], [1478, -447], [1478, -448], [1479, -447], [1480, -447], [1481, -447], [1481, -446], [1481, -445], [1481, -444], [1481, -443], [1480, -442], [1478, -442], [1477, -442], [1478, -441], [1479, -440], [1480, -439], [1481, -438], [1481, -437], [1482, -437], [1483, -436], [1484, -435], [1485, -434], [1486, -433], [1487, -432], [1487, -431], [1486, -431], [1485, -431], [1484, -431], [1483, -431], [1482, -431], [1482, -430], [1482, -429], [1482, -428], [1482, -427], [1483, -426], [1482, -425], [1481, -424], [1480, -424], [1479, -424], [1478, -424], [1477, -424], [1475, -424], [1474, -424], [1473, -424], [1472, -424], [1471, -424], [1470, -424], [1469, -425], [1468, -426], [1469, -427], [1469, -428], [1469, -429], [1469, -430], [1469, -431], [1468, -431], [1467, -431], [1465, -431], [1464, -432], [1465, -433], [1466, -434], [1467, -435], [1468, -436], [1469, -437], [1470, -438], [1471, -439], [1472, -440], [1473, -441], [1474, -442], [1473, -442], [1472, -442], [1471, -442], [1470, -443], [1469, -444], [1469, -445], [1470, -446], [1471, -447], [1472, -447], [1473, -447], [1473, -451], [1473, -450], [1473, -449], [1473, -448], [1474, -450]]}, "center": {"219-258, T": [1475, -433]}}, +{"id": 6209, "name": "Gill Grunt", "description": "Gill Grunt, also known as Gill, is a Gillman Skylander in 2011's Skylanders: Spyro's Adventure. He is one of the three Skylanders who come with the console version of the Starter Pack. He had four series, spanning from Giants to Trap Team. In Superchargers, he got his counterpart called Deep Dive Gill Grunt.\n\nThe pixel art was made by the members of r/skylanders.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Spyro%27s_Adventure", "https://rb.gy//4ckp7"], "subreddit": ["skylanders"]}, "path": {"150-258, T": [[442, -805], [442, -807], [443, -807], [444, -807], [444, -805], [444, -806], [445, -806], [446, -805], [446, -804], [445, -803], [446, -802], [447, -801], [447, -800], [446, -799], [445, -799], [446, -798], [447, -797], [447, -796], [447, -795], [439, -795], [439, -798], [440, -798], [441, -799], [439, -799], [438, -800], [437, -800], [436, -801], [437, -802], [438, -802], [439, -803], [440, -802], [441, -803], [440, -804], [440, -805], [441, -806]]}, "center": {"150-258, T": [443, -801]}}, +{"id": 6210, "name": "Sleath Elf", "description": "Sleath Elf is an elven ninja who is one of the playable Skylanders in the series. Her Legendary counterpart, Legendary Sleath Elf, is a Toys R Us exclusive. She got two series, spanning from Giants to Swap Force, with Series 3, also from Swap Force, she was called Ninja Sleath Elf, which is one of the three starter Skylanders in Ring of Heroes, an RPG mobile game. In Superchargers, she is called Super Shot Sleath Elf and is part of the Starter Pack in the console version, alongside with Spitfire. She got her miniature version of herself, Whisper Elf, one of Spyro's four sidekicks in Adventure, and won't be fully playable until Trap Team.\n\nThe pixel art was created by the members of r/skylanders.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Spyro%27s_Adventure", "https://rb.gy/w63cy"], "subreddit": ["skylanders"]}, "path": {"157-258, T": [[405, -800], [406, -801], [406, -803], [407, -804], [408, -805], [409, -806], [411, -806], [412, -805], [412, -804], [412, -805], [413, -805], [414, -805], [415, -804], [414, -803], [413, -802], [412, -801], [411, -801], [412, -800], [413, -799], [413, -798], [414, -797], [414, -796], [414, -795], [413, -795], [405, -795], [405, -796], [405, -797], [406, -798], [407, -799], [406, -799]]}, "center": {"157-258, T": [410, -798]}}, +{"id": 6211, "name": "Girls' Generation Logo", "description": "Logo of the South Korean girl group \"Girls' Generation\" also known as \"소녀시대\" (Romanised: So Nyuh Shi Dae), or abbreviated \"SNSD\".\nThey are composed of 8 members:\nTaeyeon, Sunny, Tiffany, Sooyoung, Seohyun, Hyoyeon, Yuri, Yoona.\nOriginally 9 members, Jessica left the group in 2014.", "links": {"website": ["https://en.wikipedia.org/wiki/Girls%27_Generation"]}, "path": {"250-258, T": [[-1108, 523], [-1109, 523], [-1109, 522], [-1110, 522], [-1110, 521], [-1112, 521], [-1112, 522], [-1114, 522], [-1114, 524], [-1115, 524], [-1115, 528], [-1114, 528], [-1114, 529], [-1113, 529], [-1113, 530], [-1112, 530], [-1112, 531], [-1111, 531], [-1111, 534], [-1112, 534], [-1112, 535], [-1114, 535], [-1114, 536], [-1115, 536], [-1114, 536], [-1114, 537], [-1113, 537], [-1113, 538], [-1112, 538], [-1112, 539], [-1110, 539], [-1110, 540], [-1106, 540], [-1106, 539], [-1104, 539], [-1104, 538], [-1103, 538], [-1103, 537], [-1102, 537], [-1102, 536], [-1102, 535], [-1103, 535], [-1104, 535], [-1104, 534], [-1105, 534], [-1105, 531], [-1104, 531], [-1104, 529], [-1102, 529], [-1102, 527], [-1101, 527], [-1101, 524], [-1102, 524], [-1102, 522], [-1104, 522], [-1104, 521], [-1106, 521], [-1106, 522], [-1107, 522], [-1107, 523], [-1109, 523]]}, "center": {"250-258, T": [-1108, 527]}}, {"id": 6212, "name": "Among us (Blue)", "description": "a little among us blue", "links": {}, "path": {"222": [[327, -502], [333, -502], [333, -496], [327, -496]]}, "center": {"222": [330, -499]}}, -{"id": 6213, "name": "White Whale Tail", "description": "Part of a collaboration between the New York Islanders and New York Mets. The white whale is a nickname for Islanders' goalie Ilya Sorokin, who joined the team in 2020. Given for his one-of-a-kind talent, and for the amount of time it took to finally bring the star goalie from Russia, Sorokin has quickly become a fan-favorite on the Island.", "links": {"website": ["https://en.wikipedia.org/wiki/Ilya_Sorokin"], "subreddit": ["newyorkislanders"], "discord": ["wu9GPxEh"]}, "path": {"250-258": [[1365, 563], [1366, 556], [1368, 556], [1369, 560], [1370, 560], [1372, 556], [1373, 557], [1375, 556], [1374, 564], [1365, 564]]}, "center": {"250-258": [1372, 562]}}, -{"id": 6214, "name": "Lighthouse", "description": "Part of a collaboration between the New York Islanders and New York Mets. The Lighthouse is a common symbol for Long Island and was the basis for an alternate logo for the Islanders in the 1990s, as well as the name for a failed stadium project in the 2000s. The one depicted here dons the Islanders colors of orange and blue", "links": {"website": ["https://en.wikipedia.org/wiki/The_Lighthouse_Project"], "subreddit": ["newyorkislanders"], "discord": ["wu9GPxEh"]}, "path": {"250-258": [[1366, 555], [1366, 546], [1369, 544], [1371, 545], [1373, 547], [1373, 555], [1366, 555], [1366, 545]]}, "center": {"250-258": [1370, 550]}}, -{"id": 6215, "name": "Josh Bailey Memorial", "description": "Part of a collaboration between the New York Islanders and New York Mets. Josh Bailey is a hockey player who spent 15 years with the New York Islanders. Through the power of song, Bailey was a part of many key moments with the team, but his time in New York ended on June 29th", "links": {"website": ["https://en.wikipedia.org/wiki/Josh_Bailey"], "subreddit": ["newyorkislanders"], "discord": ["wu9GPxEh"]}, "path": {"250-258": [[1374, 541], [1380, 542], [1379, 552], [1374, 552]]}, "center": {"250-258": [1377, 547]}}, -{"id": 6216, "name": "New York Islanders Logo", "description": "Part of a collaboration between the New York Islanders and New York Mets. This is the logo for the New York Islanders, a hockey team based in Elmont, New York, United States. They play in the National Hockey League (NHL).", "links": {"website": ["https://www.nhl.com/islanders/"], "subreddit": ["newyorkislanders"], "discord": ["wu9GPxEh"]}, "path": {"250-258": [[1376, 531], [1386, 531], [1386, 541], [1375, 541]]}, "center": {"250-258": [1381, 536]}}, -{"id": 6217, "name": "Home Run Apple", "description": "Part of a collaboration between the New York Islanders and New York Mets. The Home Run Apple is a prop in the New York Mets' home stadium of Citi Field that appears out of a top hat when the Mets hit a home run.", "links": {"website": ["https://en.wikipedia.org/wiki/Home_Run_Apple"], "subreddit": ["newyorkmets"]}, "path": {"250-258": [[1390, 529], [1386, 529], [1386, 535], [1390, 535]]}, "center": {"250-258": [1388, 532]}}, -{"id": 6218, "name": "Mr. Met", "description": "Part of a collaboration between the New York Islanders and New York Mets. The artwork is based off of the Mets' mascot since 1963. Since then, Mr. Met and his wife Mrs. Met have become a mainstay at home games and he has also been used as an alternate logo for the team", "links": {"website": ["https://en.wikipedia.org/wiki/Mr._Met"], "subreddit": ["newyorkmets"]}, "path": {"250-258": [[1391, 516], [1391, 531], [1378, 531], [1378, 516]]}, "center": {"250-258": [1385, 524]}}, -{"id": 6219, "name": "kirbi Colombiano", "description": "Kirbi humilde creado por el_minex con ayuda de los seguidores", "links": {}, "path": {"250-258": [[-1196, -6], [-1175, -6], [-1175, 13], [-1196, 13]]}, "center": {"250-258": [-1185, 4]}}, -{"id": 6220, "name": "Flag of Portugal", "description": "A flag of Portugal, a southern European country on the Iberian Peninsula, bordering Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal"]}, "path": {"250-258": [[-15, -643], [2, -643], [2, -635], [-1, -635], [-1, -636], [-2, -636], [-2, -637], [-2, -636], [-3, -636], [-4, -636], [-4, -637], [-4, -636], [-5, -636], [-5, -635], [-15, -635]]}, "center": {"250-258": [-11, -639]}}, -{"id": 6221, "name": "Tiny South and Central American Flags", "description": "A collection of South and Central American flags inbetween Niko and Ireland. Portugal, a European country, is also included. And at some canvas states, Mexico and Argentina are included, and the countries depicted are in different orders.", "links": {}, "path": {"250-258": [[632, 857], [638, 857], [638, 885], [632, 885]]}, "center": {"250-258": [635, 871]}}, +{"id": 6213, "name": "White Whale Tail", "description": "Part of a collaboration between the New York Islanders and New York Mets. The white whale is a nickname for Islanders' goalie Ilya Sorokin, who joined the team in 2020. Given for his one-of-a-kind talent, and for the amount of time it took to finally bring the star goalie from Russia, Sorokin has quickly become a fan-favorite on the Island.", "links": {"website": ["https://en.wikipedia.org/wiki/Ilya_Sorokin"], "subreddit": ["newyorkislanders"], "discord": ["wu9GPxEh"]}, "path": {"250-258, T": [[1365, 563], [1366, 556], [1368, 556], [1369, 560], [1370, 560], [1372, 556], [1373, 557], [1375, 556], [1374, 564], [1365, 564]]}, "center": {"250-258, T": [1372, 562]}}, +{"id": 6214, "name": "Lighthouse", "description": "Part of a collaboration between the New York Islanders and New York Mets. The Lighthouse is a common symbol for Long Island and was the basis for an alternate logo for the Islanders in the 1990s, as well as the name for a failed stadium project in the 2000s. The one depicted here dons the Islanders colors of orange and blue", "links": {"website": ["https://en.wikipedia.org/wiki/The_Lighthouse_Project"], "subreddit": ["newyorkislanders"], "discord": ["wu9GPxEh"]}, "path": {"250-258, T": [[1366, 555], [1366, 546], [1369, 544], [1371, 545], [1373, 547], [1373, 555], [1366, 555], [1366, 545]]}, "center": {"250-258, T": [1370, 550]}}, +{"id": 6215, "name": "Josh Bailey Memorial", "description": "Part of a collaboration between the New York Islanders and New York Mets. Josh Bailey is a hockey player who spent 15 years with the New York Islanders. Through the power of song, Bailey was a part of many key moments with the team, but his time in New York ended on June 29th", "links": {"website": ["https://en.wikipedia.org/wiki/Josh_Bailey"], "subreddit": ["newyorkislanders"], "discord": ["wu9GPxEh"]}, "path": {"250-258, T": [[1374, 541], [1380, 542], [1379, 552], [1374, 552]]}, "center": {"250-258, T": [1377, 547]}}, +{"id": 6216, "name": "New York Islanders Logo", "description": "Part of a collaboration between the New York Islanders and New York Mets. This is the logo for the New York Islanders, a hockey team based in Elmont, New York, United States. They play in the National Hockey League (NHL).", "links": {"website": ["https://www.nhl.com/islanders/"], "subreddit": ["newyorkislanders"], "discord": ["wu9GPxEh"]}, "path": {"250-258, T": [[1376, 531], [1386, 531], [1386, 541], [1375, 541]]}, "center": {"250-258, T": [1381, 536]}}, +{"id": 6217, "name": "Home Run Apple", "description": "Part of a collaboration between the New York Islanders and New York Mets. The Home Run Apple is a prop in the New York Mets' home stadium of Citi Field that appears out of a top hat when the Mets hit a home run.", "links": {"website": ["https://en.wikipedia.org/wiki/Home_Run_Apple"], "subreddit": ["newyorkmets"]}, "path": {"250-258, T": [[1390, 529], [1386, 529], [1386, 535], [1390, 535]]}, "center": {"250-258, T": [1388, 532]}}, +{"id": 6218, "name": "Mr. Met", "description": "Part of a collaboration between the New York Islanders and New York Mets. The artwork is based off of the Mets' mascot since 1963. Since then, Mr. Met and his wife Mrs. Met have become a mainstay at home games and he has also been used as an alternate logo for the team", "links": {"website": ["https://en.wikipedia.org/wiki/Mr._Met"], "subreddit": ["newyorkmets"]}, "path": {"250-258, T": [[1391, 516], [1391, 531], [1378, 531], [1378, 516]]}, "center": {"250-258, T": [1385, 524]}}, +{"id": 6219, "name": "kirbi Colombiano", "description": "Kirbi humilde creado por el_minex con ayuda de los seguidores", "links": {}, "path": {"250-258, T": [[-1196, -6], [-1175, -6], [-1175, 13], [-1196, 13]]}, "center": {"250-258, T": [-1185, 4]}}, +{"id": 6220, "name": "Flag of Portugal", "description": "A flag of Portugal, a southern European country on the Iberian Peninsula, bordering Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal"]}, "path": {"250-258, T": [[-15, -643], [2, -643], [2, -635], [-1, -635], [-1, -636], [-2, -636], [-2, -637], [-2, -636], [-3, -636], [-4, -636], [-4, -637], [-4, -636], [-5, -636], [-5, -635], [-15, -635]]}, "center": {"250-258, T": [-11, -639]}}, +{"id": 6221, "name": "Tiny South and Central American Flags", "description": "A collection of South and Central American flags inbetween Niko and Ireland. Portugal, a European country, is also included. And at some canvas states, Mexico and Argentina are included, and the countries depicted are in different orders.", "links": {}, "path": {"250-258, T": [[632, 857], [638, 857], [638, 885], [632, 885]]}, "center": {"250-258, T": [635, 871]}}, {"id": 6222, "name": "Flag of Estonia", "description": "Flag of Estonia, a country in Northern Europe, borders the Baltic Sea and Gulf of Finland.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia"]}, "path": {"237": [[-15, -793], [5, -793], [5, -786], [-15, -786]]}, "center": {"237": [-5, -789]}}, -{"id": 6223, "name": "Flag of Serbia", "description": "Flag of Serbia, officially the Republic of Serbia, a landlocked country in Southeastern and Central Europe, situated at the crossroads of the Pannonian Basin and the Balkans.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbia"]}, "path": {"250-258": [[28, -674], [45, -674], [45, -667], [28, -667]]}, "center": {"250-258": [37, -670]}}, -{"id": 6224, "name": "Iraq", "description": "Multiple flags of Iraq, officially the Republic of Iraq, is a country in West Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Iraq"]}, "path": {"250-258": [[-15, -751], [2, -751], [2, -709], [18, -709], [18, -694], [-15, -694]]}, "center": {"250-258": [-5, -703]}}, -{"id": 6225, "name": "Tiny Flag of Portugal", "description": "A flag of Portugal, a southern European country on the Iberian Peninsula, bordering Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal"]}, "path": {"250-258": [[638, 870], [632, 870], [632, 875], [638, 875]]}, "center": {"250-258": [635, 873]}}, -{"id": 6226, "name": "Flag of Portugal", "description": "Flag of Portugal, a southern European country on the Iberian Peninsula, bordering Spain.\n\nThis area is in between the F and U in the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal"]}, "path": {"209-258": [[1101, -155], [1123, -155], [1123, -134], [1101, -134]]}, "center": {"209-258": [1112, -144]}}, -{"id": 6227, "name": "Flag of Ukraine", "description": "Flag of Ukraine, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine"]}, "path": {"250-258": [[-15, -681], [28, -681], [28, -674], [-15, -674]]}, "center": {"250-258": [7, -677]}}, +{"id": 6223, "name": "Flag of Serbia", "description": "Flag of Serbia, officially the Republic of Serbia, a landlocked country in Southeastern and Central Europe, situated at the crossroads of the Pannonian Basin and the Balkans.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbia"]}, "path": {"250-258, T": [[28, -674], [45, -674], [45, -667], [28, -667]]}, "center": {"250-258, T": [37, -670]}}, +{"id": 6224, "name": "Iraq", "description": "Multiple flags of Iraq, officially the Republic of Iraq, is a country in West Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Iraq"]}, "path": {"250-258, T": [[-15, -751], [2, -751], [2, -709], [18, -709], [18, -694], [-15, -694]]}, "center": {"250-258, T": [-5, -703]}}, +{"id": 6225, "name": "Tiny Flag of Portugal", "description": "A flag of Portugal, a southern European country on the Iberian Peninsula, bordering Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal"]}, "path": {"250-258, T": [[638, 870], [632, 870], [632, 875], [638, 875]]}, "center": {"250-258, T": [635, 873]}}, +{"id": 6226, "name": "Flag of Portugal", "description": "Flag of Portugal, a southern European country on the Iberian Peninsula, bordering Spain.\n\nThis area is in between the F and U in the Fuck Spez artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal"]}, "path": {"209-258, T": [[1101, -155], [1123, -155], [1123, -134], [1101, -134]]}, "center": {"209-258, T": [1112, -144]}}, +{"id": 6227, "name": "Flag of Ukraine", "description": "Flag of Ukraine, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine"]}, "path": {"250-258, T": [[-15, -681], [28, -681], [28, -674], [-15, -674]]}, "center": {"250-258, T": [7, -677]}}, {"id": 6228, "name": "Flag of Finland", "description": "Flag of Finland, a Northern European nation bordering Sweden, Norway and Russia.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland"]}, "path": {"237": [[-15, -786], [2, -786], [2, -765], [-15, -765]]}, "center": {"237": [-6, -775]}}, -{"id": 6229, "name": "Bowser", "description": "Bowser or King Koopa is a fictional character and the primary antagonist in Nintendo's Mario franchise.", "links": {}, "path": {"242-258": [[-363, -550], [-364, -551], [-365, -551], [-368, -554], [-368, -555], [-367, -556], [-367, -558], [-365, -560], [-365, -562], [-363, -564], [-363, -566], [-362, -567], [-361, -566], [-360, -566], [-361, -567], [-360, -568], [-359, -568], [-358, -569], [-357, -568], [-356, -569], [-355, -569], [-353, -567], [-353, -566], [-352, -565], [-352, -564], [-351, -564], [-349, -562], [-349, -561], [-350, -560], [-349, -560], [-348, -559], [-347, -560], [-346, -560], [-345, -561], [-344, -561], [-343, -562], [-341, -562], [-340, -561], [-340, -557], [-341, -556], [-343, -556], [-344, -557], [-345, -557], [-346, -558], [-347, -558], [-348, -559], [-349, -558], [-350, -558], [-350, -557], [-349, -556], [-349, -555], [-351, -553], [-352, -553], [-351, -552], [-350, -552], [-349, -551], [-350, -550], [-355, -550], [-356, -551], [-358, -551], [-359, -550]]}, "center": {"242-258": [-358, -559]}}, -{"id": 6230, "name": "Flag of Denmark", "description": "Flag of Denmark, a Scandinavian country comprising the Jutland Peninsula and numerous islands", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark"]}, "path": {"250-258": [[-15, -768], [2, -768], [2, -758], [-15, -758]]}, "center": {"250-258": [-6, -763]}}, -{"id": 6231, "name": "Flag of Malta", "description": "Flag of Malta, an archipelago country in the central Mediterranean between Sicily and the North African coast.", "links": {"website": ["https://en.wikipedia.org/wiki/Malta"]}, "path": {"250-258": [[-15, -635], [-5, -635], [-4, -635], [-4, -634], [-3, -634], [-3, -633], [-3, -634], [-2, -634], [-2, -635], [2, -635], [2, -628], [-15, -628]]}, "center": {"250-258": [-6, -631]}}, -{"id": 6232, "name": "Tiny Flag of Uruguay", "description": "A flag of Uruguay, a South American country known for its verdant interior and beach-lined coast.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay"]}, "path": {"250-258": [[632, 880], [638, 880], [638, 885], [632, 885]]}, "center": {"250-258": [635, 883]}}, -{"id": 6233, "name": "Flag of Poland", "description": "Flag of Poland, officially the Republic of Poland, is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland"]}, "path": {"250-258": [[16, -688], [28, -688], [28, -681], [16, -681]]}, "center": {"250-258": [22, -684]}}, -{"id": 6234, "name": "Tiny Flag of Monteverde Costa Rica", "description": "An obscure flag of the Monteverde canton of the Puntarenas province of Costa Rica. On r/place this seemed to originally be the flag of Honduras, but got explicitly changed to Monteverde.", "links": {"website": ["https://en.wikipedia.org/wiki/Monteverde"]}, "path": {"250-258": [[632, 861], [638, 861], [638, 865], [632, 865]]}, "center": {"250-258": [635, 863]}}, -{"id": 6235, "name": "Thane Krios", "description": "Thane Krios is a Drell assassin who joins Commander Shepard in the fight against the Collectors in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"210-258": [[405, -360], [411, -360], [411, -351], [405, -351]]}, "center": {"210-258": [408, -355]}}, -{"id": 6236, "name": "Tiny Flag of Peru", "description": "Flag of Peru, a country in South America that's home to a section of Amazon rainforest and Machu Picchu, an ancient Incan city high in the Andes mountains.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru"]}, "path": {"250-258": [[632, 875], [638, 875], [638, 879], [632, 879]]}, "center": {"250-258": [635, 877]}}, -{"id": 6237, "name": "Narwhal", "description": "Narwhal is a third party Reddit client app for Apple. Unlike others on this list, it was not shut down on June 23 as it struck a deal with Reddit. It was created and maintained by developer Rick Harrison.", "links": {}, "path": {"185-258": [[-1342, 992], [-1342, 991], [-1343, 991], [-1343, 978], [-1342, 978], [-1342, 977], [-1329, 977], [-1329, 978], [-1328, 978], [-1328, 991], [-1329, 991], [-1329, 992]]}, "center": {"185-258": [-1335, 985]}}, -{"id": 6238, "name": "e621 mascot", "description": "This is the mascot of the furry site e/621 composed by hues of blue and yellow.", "links": {}, "path": {"224-258": [[455, 936], [454, 932], [454, 933], [454, 934], [454, 935], [454, 936], [454, 937], [454, 938], [452, 938], [451, 938], [450, 938], [449, 939], [448, 939], [446, 939], [445, 938], [444, 938], [443, 937], [442, 936], [442, 935], [441, 935], [440, 934], [439, 934], [439, 933], [438, 933], [438, 932], [438, 931], [439, 930], [440, 930], [441, 929], [442, 928], [441, 927], [440, 926], [439, 926], [439, 925], [439, 924], [439, 923], [440, 922], [440, 921], [439, 920], [439, 918], [439, 917], [439, 916], [440, 915], [441, 914], [442, 913], [443, 914], [443, 915], [444, 916], [444, 917], [444, 918], [445, 918], [446, 918], [447, 918], [447, 917], [447, 916], [448, 915], [448, 914], [449, 913], [450, 914], [451, 915], [452, 916], [452, 915], [452, 917], [452, 918], [452, 920], [452, 921], [452, 922], [452, 923], [452, 924], [452, 925], [452, 926], [451, 926], [450, 927], [449, 928], [448, 929], [449, 930], [450, 930], [451, 930], [452, 930], [453, 931], [454, 932], [455, 933], [454, 933], [455, 934]]}, "center": {"224-258": [446, 923]}}, -{"id": 6239, "name": "Lizard bill", "description": "dumb lizard from the hit game black souls; scientific name: analus whorus", "links": {"website": ["https://boards.4channel.org/vrpg/catalog#s=black%20souls"]}, "path": {"250-258": [[1379, 238], [1395, 238], [1395, 263], [1379, 264]]}, "center": {"250-258": [1387, 251]}}, -{"id": 6240, "name": "Tiny Flag of Colombia", "description": "A flag of Colombia, officially the Republic of Colombia, is a country mostly in South America with insular regions in North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia"]}, "path": {"250-258": [[632, 865], [638, 865], [638, 870], [632, 870]]}, "center": {"250-258": [635, 868]}}, -{"id": 6241, "name": "Tiny Flag of Argentina", "description": "Flag of Argentina, officially the Argentine Republic, is a country in the southern half of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina"]}, "path": {"250-258": [[632, 857], [638, 857], [638, 861], [632, 861]]}, "center": {"250-258": [635, 859]}}, -{"id": 6242, "name": "Projekt Melody", "description": "A virtual streamer, initially on Chaturbate but branched off to SFW content on Twitch. She is a member of VShojo.", "links": {"subreddit": ["projektmelody"]}, "path": {"244-258": [[1199, -789], [1207, -789], [1207, -791], [1208, -792], [1208, -793], [1209, -793], [1209, -795], [1208, -796], [1208, -798], [1207, -799], [1207, -800], [1206, -800], [1205, -801], [1202, -801], [1202, -804], [1198, -804], [1196, -801], [1198, -800], [1197, -799], [1197, -796], [1196, -796], [1196, -794], [1196, -793], [1197, -793], [1197, -791], [1198, -791]]}, "center": {"244-258": [1202, -795]}}, -{"id": 6243, "name": "Delutaya", "description": "A small depiction of Delutaya, an independent VTuber.", "links": {"subreddit": ["delutaya"], "discord": ["delutaya"]}, "path": {"219-258": [[1259, -864], [1259, -861], [1260, -861], [1260, -857], [1261, -857], [1261, -856], [1265, -856], [1265, -857], [1266, -857], [1266, -861], [1267, -861], [1267, -864]]}, "center": {"219-258": [1263, -860]}}, +{"id": 6229, "name": "Bowser", "description": "Bowser or King Koopa is a fictional character and the primary antagonist in Nintendo's Mario franchise.", "links": {}, "path": {"242-258, T": [[-363, -550], [-364, -551], [-365, -551], [-368, -554], [-368, -555], [-367, -556], [-367, -558], [-365, -560], [-365, -562], [-363, -564], [-363, -566], [-362, -567], [-361, -566], [-360, -566], [-361, -567], [-360, -568], [-359, -568], [-358, -569], [-357, -568], [-356, -569], [-355, -569], [-353, -567], [-353, -566], [-352, -565], [-352, -564], [-351, -564], [-349, -562], [-349, -561], [-350, -560], [-349, -560], [-348, -559], [-347, -560], [-346, -560], [-345, -561], [-344, -561], [-343, -562], [-341, -562], [-340, -561], [-340, -557], [-341, -556], [-343, -556], [-344, -557], [-345, -557], [-346, -558], [-347, -558], [-348, -559], [-349, -558], [-350, -558], [-350, -557], [-349, -556], [-349, -555], [-351, -553], [-352, -553], [-351, -552], [-350, -552], [-349, -551], [-350, -550], [-355, -550], [-356, -551], [-358, -551], [-359, -550]]}, "center": {"242-258, T": [-358, -559]}}, +{"id": 6230, "name": "Flag of Denmark", "description": "Flag of Denmark, a Scandinavian country comprising the Jutland Peninsula and numerous islands", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark"]}, "path": {"250-258, T": [[-15, -768], [2, -768], [2, -758], [-15, -758]]}, "center": {"250-258, T": [-6, -763]}}, +{"id": 6231, "name": "Flag of Malta", "description": "Flag of Malta, an archipelago country in the central Mediterranean between Sicily and the North African coast.", "links": {"website": ["https://en.wikipedia.org/wiki/Malta"]}, "path": {"250-258, T": [[-15, -635], [-5, -635], [-4, -635], [-4, -634], [-3, -634], [-3, -633], [-3, -634], [-2, -634], [-2, -635], [2, -635], [2, -628], [-15, -628]]}, "center": {"250-258, T": [-6, -631]}}, +{"id": 6232, "name": "Tiny Flag of Uruguay", "description": "A flag of Uruguay, a South American country known for its verdant interior and beach-lined coast.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay"]}, "path": {"250-258, T": [[632, 880], [638, 880], [638, 885], [632, 885]]}, "center": {"250-258, T": [635, 883]}}, +{"id": 6233, "name": "Flag of Poland", "description": "Flag of Poland, officially the Republic of Poland, is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland"]}, "path": {"250-258, T": [[16, -688], [28, -688], [28, -681], [16, -681]]}, "center": {"250-258, T": [22, -684]}}, +{"id": 6234, "name": "Tiny Flag of Monteverde Costa Rica", "description": "An obscure flag of the Monteverde canton of the Puntarenas province of Costa Rica. On r/place this seemed to originally be the flag of Honduras, but got explicitly changed to Monteverde.", "links": {"website": ["https://en.wikipedia.org/wiki/Monteverde"]}, "path": {"250-258, T": [[632, 861], [638, 861], [638, 865], [632, 865]]}, "center": {"250-258, T": [635, 863]}}, +{"id": 6235, "name": "Thane Krios", "description": "Thane Krios is a Drell assassin who joins Commander Shepard in the fight against the Collectors in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"210-258, T": [[405, -360], [411, -360], [411, -351], [405, -351]]}, "center": {"210-258, T": [408, -355]}}, +{"id": 6236, "name": "Tiny Flag of Peru", "description": "Flag of Peru, a country in South America that's home to a section of Amazon rainforest and Machu Picchu, an ancient Incan city high in the Andes mountains.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru"]}, "path": {"250-258, T": [[632, 875], [638, 875], [638, 879], [632, 879]]}, "center": {"250-258, T": [635, 877]}}, +{"id": 6237, "name": "Narwhal", "description": "Narwhal is a third party Reddit client app for Apple. Unlike others on this list, it was not shut down on June 23 as it struck a deal with Reddit. It was created and maintained by developer Rick Harrison.", "links": {}, "path": {"185-258, T": [[-1342, 992], [-1342, 991], [-1343, 991], [-1343, 978], [-1342, 978], [-1342, 977], [-1329, 977], [-1329, 978], [-1328, 978], [-1328, 991], [-1329, 991], [-1329, 992]]}, "center": {"185-258, T": [-1335, 985]}}, +{"id": 6238, "name": "e621 mascot", "description": "This is the mascot of the furry site e/621 composed by hues of blue and yellow.", "links": {}, "path": {"224-258, T": [[455, 936], [454, 932], [454, 933], [454, 934], [454, 935], [454, 936], [454, 937], [454, 938], [452, 938], [451, 938], [450, 938], [449, 939], [448, 939], [446, 939], [445, 938], [444, 938], [443, 937], [442, 936], [442, 935], [441, 935], [440, 934], [439, 934], [439, 933], [438, 933], [438, 932], [438, 931], [439, 930], [440, 930], [441, 929], [442, 928], [441, 927], [440, 926], [439, 926], [439, 925], [439, 924], [439, 923], [440, 922], [440, 921], [439, 920], [439, 918], [439, 917], [439, 916], [440, 915], [441, 914], [442, 913], [443, 914], [443, 915], [444, 916], [444, 917], [444, 918], [445, 918], [446, 918], [447, 918], [447, 917], [447, 916], [448, 915], [448, 914], [449, 913], [450, 914], [451, 915], [452, 916], [452, 915], [452, 917], [452, 918], [452, 920], [452, 921], [452, 922], [452, 923], [452, 924], [452, 925], [452, 926], [451, 926], [450, 927], [449, 928], [448, 929], [449, 930], [450, 930], [451, 930], [452, 930], [453, 931], [454, 932], [455, 933], [454, 933], [455, 934]]}, "center": {"224-258, T": [446, 923]}}, +{"id": 6239, "name": "Lizard bill", "description": "dumb lizard from the hit game black souls; scientific name: analus whorus", "links": {"website": ["https://boards.4channel.org/vrpg/catalog#s=black%20souls"]}, "path": {"250-258, T": [[1379, 238], [1395, 238], [1395, 263], [1379, 264]]}, "center": {"250-258, T": [1387, 251]}}, +{"id": 6240, "name": "Tiny Flag of Colombia", "description": "A flag of Colombia, officially the Republic of Colombia, is a country mostly in South America with insular regions in North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia"]}, "path": {"250-258, T": [[632, 865], [638, 865], [638, 870], [632, 870]]}, "center": {"250-258, T": [635, 868]}}, +{"id": 6241, "name": "Tiny Flag of Argentina", "description": "Flag of Argentina, officially the Argentine Republic, is a country in the southern half of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina"]}, "path": {"250-258, T": [[632, 857], [638, 857], [638, 861], [632, 861]]}, "center": {"250-258, T": [635, 859]}}, +{"id": 6242, "name": "Projekt Melody", "description": "A virtual streamer, initially on Chaturbate but branched off to SFW content on Twitch. She is a member of VShojo.", "links": {"subreddit": ["projektmelody"]}, "path": {"244-258, T": [[1199, -789], [1207, -789], [1207, -791], [1208, -792], [1208, -793], [1209, -793], [1209, -795], [1208, -796], [1208, -798], [1207, -799], [1207, -800], [1206, -800], [1205, -801], [1202, -801], [1202, -804], [1198, -804], [1196, -801], [1198, -800], [1197, -799], [1197, -796], [1196, -796], [1196, -794], [1196, -793], [1197, -793], [1197, -791], [1198, -791]]}, "center": {"244-258, T": [1202, -795]}}, +{"id": 6243, "name": "Delutaya", "description": "A small depiction of Delutaya, an independent VTuber.", "links": {"subreddit": ["delutaya"], "discord": ["delutaya"]}, "path": {"219-258, T": [[1259, -864], [1259, -861], [1260, -861], [1260, -857], [1261, -857], [1261, -856], [1265, -856], [1265, -857], [1266, -857], [1266, -861], [1267, -861], [1267, -864]]}, "center": {"219-258, T": [1263, -860]}}, {"id": 6244, "name": "Pompompurin", "description": "Pompompurin is a good-natured Golden Retriever dog character introduced by the Japanese company Sanrio in 1996. Purin was born on a sunny day on April 16th. Pompompurin lives in his own basket in the entrance hall of his sister-owner's house. His trademark is his brown beret that is always on top of his head. Pompompurin's favorite food is his mama's pudding.\n\nThis image was written by a bot net.\nIf you compared this image with \ninfamous hacker from BreachForums, and that seems to be no coincidence.", "links": {"website": ["https://hellokitty.fandom.com/wiki/Pompompurin"]}, "path": {"253-258": [[-999, -550], [-648, -550], [-652, -209], [-997, -209]]}, "center": {"253-258": [-824, -380]}}, -{"id": 6245, "name": "Zenith", "description": "The Zenith is the strongest weapon in the game Terraria.", "links": {"website": ["https://terraria.wiki.gg/wiki/Zenith"], "subreddit": ["Terraria"], "discord": ["terraria"]}, "path": {"205-258": [[-1467, -943], [-1478, -932], [-1485, -927], [-1487, -924], [-1487, -920], [-1485, -920], [-1485, -916], [-1481, -916], [-1480, -915], [-1474, -921], [-1472, -926], [-1461, -937], [-1461, -943]]}, "center": {"205-258": [-1479, -924]}}, -{"id": 6246, "name": "Demon Eye", "description": "The Demon Eye is a common type of enemy in the game Terraria.", "links": {"website": ["https://terraria.wiki.gg/wiki/Demon_Eye"], "subreddit": ["Terraria"], "discord": ["terraria"]}, "path": {"216-258": [[-1469, -922], [-1474, -917], [-1474, -915], [-1469, -910], [-1459, -910], [-1455, -912], [-1455, -921], [-1457, -923], [-1458, -923], [-1462, -919], [-1466, -922]]}, "center": {"216-258": [-1466, -915]}}, +{"id": 6245, "name": "Zenith", "description": "The Zenith is the strongest weapon in the game Terraria.", "links": {"website": ["https://terraria.wiki.gg/wiki/Zenith"], "subreddit": ["Terraria"], "discord": ["terraria"]}, "path": {"205-258, T": [[-1467, -943], [-1478, -932], [-1485, -927], [-1487, -924], [-1487, -920], [-1485, -920], [-1485, -916], [-1481, -916], [-1480, -915], [-1474, -921], [-1472, -926], [-1461, -937], [-1461, -943]]}, "center": {"205-258, T": [-1479, -924]}}, +{"id": 6246, "name": "Demon Eye", "description": "The Demon Eye is a common type of enemy in the game Terraria.", "links": {"website": ["https://terraria.wiki.gg/wiki/Demon_Eye"], "subreddit": ["Terraria"], "discord": ["terraria"]}, "path": {"216-258, T": [[-1469, -922], [-1474, -917], [-1474, -915], [-1469, -910], [-1459, -910], [-1455, -912], [-1455, -921], [-1457, -923], [-1458, -923], [-1462, -919], [-1466, -922]]}, "center": {"216-258, T": [-1466, -915]}}, {"id": 6247, "name": "Burn the Witch", "description": "Burn The Witch is a manga and anime written and illustrated by Tite Kubo. Its story takes place in the same universe as BLEACH.", "links": {"website": ["https://burn-the-witch-anime.com/"], "subreddit": ["bleach", "Burnthewitch"], "discord": ["EGGZ8tBas6"]}, "path": {"217-243": [[-1412, -967], [-1412, -959], [-1410, -959], [-1410, -955], [-1414, -955], [-1414, -947], [-1388, -947], [-1388, -955], [-1392, -955], [-1392, -959], [-1390, -959], [-1390, -967]]}, "center": {"217-243": [-1401, -957]}}, -{"id": 6248, "name": "Chile-Germany hearts", "description": "Hearts depicting the flags of Chile and Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Germany"], "subreddit": ["chile"]}, "path": {"194-213": [[-1495, -915], [-1498, -912], [-1498, -909], [-1492, -903], [-1226, -903], [-1220, -909], [-1220, -910], [-1276, -910], [-1276, -912], [-1279, -915]], "216-258": [[-1345, -914], [-1348, -911], [-1348, -910], [-1342, -903], [-1285, -904], [-1280, -910], [-1280, -912], [-1282, -914]]}, "center": {"194-213": [-1372, -909], "216-258": [-1331, -908]}}, -{"id": 6249, "name": "Umbreon Cat", "description": "Originally art of a black cat (unknown origin), which was later modified to appear as the Pokémon Umbreon.", "links": {}, "path": {"208-258": [[-1491, 66], [-1489, 66], [-1487, 64], [-1486, 64], [-1484, 66], [-1484, 68], [-1483, 69], [-1483, 73], [-1482, 74], [-1482, 75], [-1481, 76], [-1481, 78], [-1484, 81], [-1496, 81], [-1497, 80], [-1496, 79], [-1496, 77], [-1495, 76], [-1495, 75], [-1497, 73], [-1497, 68], [-1496, 67], [-1496, 66], [-1494, 64], [-1493, 64]]}, "center": {"208-258": [-1489, 72]}}, -{"id": 6250, "name": "Urdnot Grunt", "description": "Grunt is a tank-bred Krogan who joins Commander Shepard in the fight against the Collectors in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"211-258": [[370, -346], [377, -346], [377, -339], [370, -339]]}, "center": {"211-258": [374, -342]}}, -{"id": 6251, "name": "Richarlyson", "description": "Ele é filho dos 5 brasileiros do servidor, e está nos cuidados de: Cellbit, Felps, Forever, Mike e Pac, por mais que Quackity, um Mexicano, tenha apenas 1% da paternidade de Richarlyson, Richarlyson ainda considera-o como uma figura paterna. Te amamos seu ovo bolota! <3", "links": {"website": ["https://qsmp.fandom.com/wiki/Richarlyson", "https://twitter.com/QSMPGlobal"], "subreddit": ["qsmp"]}, "path": {"250-258": [[412, 435], [412, 432], [413, 432], [413, 430], [414, 430], [414, 429], [415, 429], [415, 428], [416, 428], [416, 427], [418, 427], [418, 428], [419, 428], [419, 429], [420, 429], [420, 430], [421, 430], [421, 431], [421, 432], [422, 432], [422, 435], [420, 435], [420, 436], [419, 436], [419, 437], [415, 437], [415, 436], [414, 436], [414, 435]]}, "center": {"250-258": [417, 432]}}, -{"id": 6252, "name": "Adventure Time Characters", "description": "Adventure Time is a fantasy American animated series created by Pendleton Ward and Cartoon Network Studios.\n\nThe characters seen here are Finn the Human (Left) BMO, the living video game system (Center) and near the end of the time-lapse, Jake The Dog (Right).", "links": {"subreddit": ["adventuretime"]}, "path": {"223-258": [[1427, -449], [1422, -449], [1422, -438], [1426, -434], [1426, -430], [1457, -430], [1457, -441], [1451, -441], [1448, -444], [1443, -449]]}, "center": {"223-258": [1438, -439]}}, -{"id": 6253, "name": "Urdnot Wrex", "description": "Wrex is a Krogan mercenary who joins Commander Shepard in the fight against Saren in Mass Effect 1.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"211-258": [[377, -346], [384, -346], [384, -339], [377, -339]]}, "center": {"211-258": [381, -342]}}, -{"id": 6254, "name": "FC Girondins de Bordeaux", "description": "Football Club Girondins de Bordeaux", "links": {"website": ["https://www.girondins.com/"]}, "path": {"205-258": [[849, -864], [885, -864], [885, -837], [875, -837], [870, -832], [866, -832], [861, -836], [857, -831], [853, -836], [850, -837]]}, "center": {"205-258": [867, -849]}}, -{"id": 6255, "name": "QueenSmolder's Blep Face", "description": "The French Vtuber QueenSmolder place her avatar doing a \"blep\" for being on the r/place.", "links": {"website": ["https://www.twitch.tv/queensmolder"], "discord": ["6rvSet34"]}, "path": {"250-258": [[-1130, 170], [-1123, 170], [-1123, 171], [-1130, 171]]}, "center": {"250-258": [-1126, 171]}}, -{"id": 6256, "name": "r/TWRP banner", "description": "TWRP is a Canadian rock/synth-funk/jazz fusion band characterized by their striking outfits and unrelenting positivity. The banner's colours were inspired by their 2018 album \"Together Through Time\"\n\nShortly after the banner's construction members of the neighbouring Hytale build were planning to expand their design, which had rogue members expanding the TWPR banner in hopes of relocating it slightly to the right. Without proper communication between the two groups, this led to 2 hours of hilarious typos including but not limited to \"TWRURP\", \"TWRARP\" and \"TWRPRP\". \n\nEventually, the build settled, and TWRP's community began to use the expansion to incorporate a miniature version of the Together Through Time album art inside the banner as a homage to their 2022 design on r/place.", "links": {"website": ["http://twrpband.com/"], "subreddit": ["TWRP"]}, "path": {"165-258": [[358, -943], [358, -936], [360, -935], [391, -935], [392, -936], [392, -944], [359, -944]]}, "center": {"165-258": [375, -939]}}, +{"id": 6248, "name": "Chile-Germany hearts", "description": "Hearts depicting the flags of Chile and Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Germany"], "subreddit": ["chile"]}, "path": {"194-213": [[-1495, -915], [-1498, -912], [-1498, -909], [-1492, -903], [-1226, -903], [-1220, -909], [-1220, -910], [-1276, -910], [-1276, -912], [-1279, -915]], "216-258, T": [[-1345, -914], [-1348, -911], [-1348, -910], [-1342, -903], [-1285, -904], [-1280, -910], [-1280, -912], [-1282, -914]]}, "center": {"194-213": [-1372, -909], "216-258, T": [-1331, -908]}}, +{"id": 6249, "name": "Umbreon Cat", "description": "Originally art of a black cat (unknown origin), which was later modified to appear as the Pokémon Umbreon.", "links": {}, "path": {"208-258, T": [[-1491, 66], [-1489, 66], [-1487, 64], [-1486, 64], [-1484, 66], [-1484, 68], [-1483, 69], [-1483, 73], [-1482, 74], [-1482, 75], [-1481, 76], [-1481, 78], [-1484, 81], [-1496, 81], [-1497, 80], [-1496, 79], [-1496, 77], [-1495, 76], [-1495, 75], [-1497, 73], [-1497, 68], [-1496, 67], [-1496, 66], [-1494, 64], [-1493, 64]]}, "center": {"208-258, T": [-1489, 72]}}, +{"id": 6250, "name": "Urdnot Grunt", "description": "Grunt is a tank-bred Krogan who joins Commander Shepard in the fight against the Collectors in Mass Effect 2.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"211-258, T": [[370, -346], [377, -346], [377, -339], [370, -339]]}, "center": {"211-258, T": [374, -342]}}, +{"id": 6251, "name": "Richarlyson", "description": "Ele é filho dos 5 brasileiros do servidor, e está nos cuidados de: Cellbit, Felps, Forever, Mike e Pac, por mais que Quackity, um Mexicano, tenha apenas 1% da paternidade de Richarlyson, Richarlyson ainda considera-o como uma figura paterna. Te amamos seu ovo bolota! <3", "links": {"website": ["https://qsmp.fandom.com/wiki/Richarlyson", "https://twitter.com/QSMPGlobal"], "subreddit": ["qsmp"]}, "path": {"250-258, T": [[412, 435], [412, 432], [413, 432], [413, 430], [414, 430], [414, 429], [415, 429], [415, 428], [416, 428], [416, 427], [418, 427], [418, 428], [419, 428], [419, 429], [420, 429], [420, 430], [421, 430], [421, 431], [421, 432], [422, 432], [422, 435], [420, 435], [420, 436], [419, 436], [419, 437], [415, 437], [415, 436], [414, 436], [414, 435]]}, "center": {"250-258, T": [417, 432]}}, +{"id": 6252, "name": "Adventure Time Characters", "description": "Adventure Time is a fantasy American animated series created by Pendleton Ward and Cartoon Network Studios.\n\nThe characters seen here are Finn the Human (Left) BMO, the living video game system (Center) and near the end of the time-lapse, Jake The Dog (Right).", "links": {"subreddit": ["adventuretime"]}, "path": {"223-258, T": [[1427, -449], [1422, -449], [1422, -438], [1426, -434], [1426, -430], [1457, -430], [1457, -441], [1451, -441], [1448, -444], [1443, -449]]}, "center": {"223-258, T": [1438, -439]}}, +{"id": 6253, "name": "Urdnot Wrex", "description": "Wrex is a Krogan mercenary who joins Commander Shepard in the fight against Saren in Mass Effect 1.", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"211-258, T": [[377, -346], [384, -346], [384, -339], [377, -339]]}, "center": {"211-258, T": [381, -342]}}, +{"id": 6254, "name": "FC Girondins de Bordeaux", "description": "Football Club Girondins de Bordeaux", "links": {"website": ["https://www.girondins.com/"]}, "path": {"205-258, T": [[849, -864], [885, -864], [885, -837], [875, -837], [870, -832], [866, -832], [861, -836], [857, -831], [853, -836], [850, -837]]}, "center": {"205-258, T": [867, -849]}}, +{"id": 6255, "name": "QueenSmolder's Blep Face", "description": "The French Vtuber QueenSmolder place her avatar doing a \"blep\" for being on the r/place.", "links": {"website": ["https://www.twitch.tv/queensmolder"], "discord": ["6rvSet34"]}, "path": {"250-258, T": [[-1130, 170], [-1123, 170], [-1123, 171], [-1130, 171]]}, "center": {"250-258, T": [-1126, 171]}}, +{"id": 6256, "name": "r/TWRP banner", "description": "TWRP is a Canadian rock/synth-funk/jazz fusion band characterized by their striking outfits and unrelenting positivity. The banner's colours were inspired by their 2018 album \"Together Through Time\"\n\nShortly after the banner's construction members of the neighbouring Hytale build were planning to expand their design, which had rogue members expanding the TWPR banner in hopes of relocating it slightly to the right. Without proper communication between the two groups, this led to 2 hours of hilarious typos including but not limited to \"TWRURP\", \"TWRARP\" and \"TWRPRP\". \n\nEventually, the build settled, and TWRP's community began to use the expansion to incorporate a miniature version of the Together Through Time album art inside the banner as a homage to their 2022 design on r/place.", "links": {"website": ["http://twrpband.com/"], "subreddit": ["TWRP"]}, "path": {"165-258, T": [[358, -943], [358, -936], [360, -935], [391, -935], [392, -936], [392, -944], [359, -944]]}, "center": {"165-258, T": [375, -939]}}, {"id": 6257, "name": "Creeper", "description": "A creeper is an iconic hostile mob in the game Minecraft, a sandbox video game developed by Mojang Studios in Sweden. Creepers approach the player and explode.", "links": {"website": ["https://minecraft.fandom.com/wiki/Creeper", "https://en.wikipedia.org/wiki/Creeper_(Minecraft)"]}, "path": {"172-184": [[-1485, -937], [-1485, -920], [-1470, -920], [-1470, -937]]}, "center": {"172-184": [-1477, -928]}}, {"id": 6258, "name": "Creeper", "description": "A creeper is an iconic hostile mob in the game Minecraft, a sandbox video game developed by Mojang Studios in Sweden. Creepers approach the player and explode.", "links": {"website": ["https://minecraft.fandom.com/wiki/Creeper", "https://en.wikipedia.org/wiki/Creeper_(Minecraft)"]}, "path": {"173-182": [[-1391, -963], [-1391, -954], [-1382, -954], [-1382, -963]]}, "center": {"173-182": [-1386, -958]}}, {"id": 6259, "name": "Transgender flag", "description": "A pride flag representing the transgender community. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"]}, "path": {"171-177": [[-1500, -950], [-1500, -944], [-1486, -944], [-1486, -950]]}, "center": {"171-177": [-1493, -947]}}, @@ -6039,65 +6039,65 @@ {"id": 6267, "name": "Lesbian flag", "description": "A pride flag representing the lesbian community. Lesbian people are women attracted to other women.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"]}, "path": {"177-182": [[-1410, -967], [-1410, -961], [-1402, -961], [-1402, -967]]}, "center": {"177-182": [-1406, -964]}}, {"id": 6268, "name": "Flag of Puerto Rico", "description": "Puerto Rico is a Caribbean island and a territory of the United States. It is located in the northeast Caribbean Sea, approximately 1,000 miles (1,600 km) southeast of Miami, Florida.", "links": {"website": ["https://en.wikipedia.org/wiki/Puerto_Rico", "https://en.wikipedia.org/wiki/Flag_of_Puerto_Rico"]}, "path": {"174-183": [[-1439, -958], [-1439, -952], [-1433, -952], [-1431, -955], [-1433, -958]]}, "center": {"174-183": [-1435, -955]}}, {"id": 6269, "name": "Skephalo flag", "description": "This flag represents a ship between the streamer BadBoyHalo and the YouTuber Skeppy. It combines the color palettes of the two communities.", "links": {"website": ["https://shipping.fandom.com/wiki/Skephalo"]}, "path": {"172-177": [[-1494, -959], [-1494, -953], [-1483, -953], [-1483, -959]]}, "center": {"172-177": [-1488, -956]}}, -{"id": 6270, "name": "Zangetsu", "description": "Zangetsu is an iconic zanpakutō (sword) wielded by the character Ichigo Kurosaki in the manga and anime BLEACH.\n\nZangetsu was added to the previously drawn Ulquiorra Cifer by members of the BLEACH community.", "links": {"website": ["https://bleach.fandom.com/wiki/Zangetsu_(Zanpakut%C5%8D_spirit)"], "subreddit": ["bleach"], "discord": ["EGGZ8tBas6"]}, "path": {"246-258": [[-1326, -961], [-1335, -952], [-1335, -950], [-1338, -947], [-1338, -946], [-1336, -943], [-1328, -951], [-1325, -958], [-1325, -961]]}, "center": {"246-258": [-1331, -952]}}, -{"id": 6271, "name": "Explosive Barrel", "description": "An Explosive Barrel is a hazard in Superfighters Deluxe.", "links": {"website": ["https://mythologicinteractive-superfighters.fandom.com/wiki/Explosive_Barrel"], "subreddit": ["superfightersdeluxe"]}, "path": {"205-258": [[-1323, -946], [-1323, -930], [-1312, -930], [-1312, -939], [-1314, -941], [-1314, -946]]}, "center": {"205-258": [-1318, -937]}}, -{"id": 6272, "name": "Bazooka", "description": "A Bazooka is a weapon in Superfighters Deluxe.", "links": {"website": ["https://mythologicinteractive-superfighters.fandom.com/wiki/Bazooka"], "subreddit": ["superfightersdeluxe"]}, "path": {"211-258": [[-1330, -948], [-1330, -943], [-1334, -943], [-1334, -939], [-1330, -939], [-1330, -938], [-1332, -936], [-1332, -934], [-1330, -934], [-1330, -930], [-1324, -930], [-1324, -946], [-1326, -946], [-1326, -948]]}, "center": {"211-258": [-1327, -936]}}, -{"id": 6273, "name": "Bat", "description": "A Bat is a weapon in Superfighters Deluxe.", "links": {"website": ["https://mythologicinteractive-superfighters.fandom.com/wiki/Bat"], "subreddit": ["superfightersdeluxe"]}, "path": {"210-258": [[-1327, -950], [-1327, -948], [-1325, -946], [-1311, -946], [-1310, -947], [-1310, -948], [-1311, -949], [-1318, -949], [-1318, -946], [-1322, -946], [-1322, -950]]}, "center": {"210-258": [-1324, -948]}}, -{"id": 6274, "name": "Stone sword", "description": "A stone sword is an early-game weapon in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Sword"]}, "path": {"237-258": [[-1282, -934], [-1290, -926], [-1291, -928], [-1294, -928], [-1294, -926], [-1292, -923], [-1294, -921], [-1296, -921], [-1296, -917], [-1292, -917], [-1292, -919], [-1290, -921], [-1286, -919], [-1285, -921], [-1287, -923], [-1279, -931], [-1279, -934]]}, "center": {"237-258": [-1287, -926]}}, +{"id": 6270, "name": "Zangetsu", "description": "Zangetsu is an iconic zanpakutō (sword) wielded by the character Ichigo Kurosaki in the manga and anime BLEACH.\n\nZangetsu was added to the previously drawn Ulquiorra Cifer by members of the BLEACH community.", "links": {"website": ["https://bleach.fandom.com/wiki/Zangetsu_(Zanpakut%C5%8D_spirit)"], "subreddit": ["bleach"], "discord": ["EGGZ8tBas6"]}, "path": {"246-258, T": [[-1326, -961], [-1335, -952], [-1335, -950], [-1338, -947], [-1338, -946], [-1336, -943], [-1328, -951], [-1325, -958], [-1325, -961]]}, "center": {"246-258, T": [-1331, -952]}}, +{"id": 6271, "name": "Explosive Barrel", "description": "An Explosive Barrel is a hazard in Superfighters Deluxe.", "links": {"website": ["https://mythologicinteractive-superfighters.fandom.com/wiki/Explosive_Barrel"], "subreddit": ["superfightersdeluxe"]}, "path": {"205-258, T": [[-1323, -946], [-1323, -930], [-1312, -930], [-1312, -939], [-1314, -941], [-1314, -946]]}, "center": {"205-258, T": [-1318, -937]}}, +{"id": 6272, "name": "Bazooka", "description": "A Bazooka is a weapon in Superfighters Deluxe.", "links": {"website": ["https://mythologicinteractive-superfighters.fandom.com/wiki/Bazooka"], "subreddit": ["superfightersdeluxe"]}, "path": {"211-258, T": [[-1330, -948], [-1330, -943], [-1334, -943], [-1334, -939], [-1330, -939], [-1330, -938], [-1332, -936], [-1332, -934], [-1330, -934], [-1330, -930], [-1324, -930], [-1324, -946], [-1326, -946], [-1326, -948]]}, "center": {"211-258, T": [-1327, -936]}}, +{"id": 6273, "name": "Bat", "description": "A Bat is a weapon in Superfighters Deluxe.", "links": {"website": ["https://mythologicinteractive-superfighters.fandom.com/wiki/Bat"], "subreddit": ["superfightersdeluxe"]}, "path": {"210-258, T": [[-1327, -950], [-1327, -948], [-1325, -946], [-1311, -946], [-1310, -947], [-1310, -948], [-1311, -949], [-1318, -949], [-1318, -946], [-1322, -946], [-1322, -950]]}, "center": {"210-258, T": [-1324, -948]}}, +{"id": 6274, "name": "Stone sword", "description": "A stone sword is an early-game weapon in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Sword"]}, "path": {"237-258, T": [[-1282, -934], [-1290, -926], [-1291, -928], [-1294, -928], [-1294, -926], [-1292, -923], [-1294, -921], [-1296, -921], [-1296, -917], [-1292, -917], [-1292, -919], [-1290, -921], [-1286, -919], [-1285, -921], [-1287, -923], [-1279, -931], [-1279, -934]]}, "center": {"237-258, T": [-1287, -926]}}, {"id": 6275, "name": "Diamond sword", "description": "A diamond sword is a weapon in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Sword"]}, "path": {"202-239": [[-1283, -933], [-1290, -926], [-1292, -928], [-1294, -928], [-1294, -926], [-1292, -923], [-1294, -921], [-1296, -921], [-1296, -917], [-1292, -917], [-1292, -919], [-1290, -921], [-1287, -919], [-1285, -919], [-1285, -921], [-1287, -923], [-1280, -930], [-1280, -933]]}, "center": {"202-239": [-1288, -925]}}, -{"id": 6276, "name": "Finland", "description": "Flag of Finland, a Northern European nation bordering Sweden, Norway and Russia.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland"]}, "path": {"250-258": [[-15, -786], [2, -786], [2, -768], [-15, -768]]}, "center": {"250-258": [-6, -777]}}, -{"id": 6277, "name": "CommanderVideo - BIT.TRIP", "description": "CommanderVideo is the protagonist and mascot of the rhythm game series BIT.TRIP. The games vary in genre with each game, ranging from Pong-like (BIT.TRIP BEAT) to platforming (BIT.TRIP RUNNER). The series takes cues from the Atari 2600 and adds in an evolving soundtrack to make for a very surreal set of games. There are six main games in the series, BEAT, CORE, VOID, RUNNER, FATE, and FLUX (all released from 2009-2011), with two non-canonical spinoffs being released afterwards, Runner2 (2013) and Runner3 (2018). Each game is told from CommanderVideo's point of view and shows a stage in his life as he grows and develops as a person, from birth to death. He has appeared as a cameo in games like Super Meat Boy and Super Smash Bros. for Wii U!", "links": {"website": ["https://choiceprovisions.com/"], "subreddit": ["BITTRIP"], "discord": ["EqeY2qf8zX"]}, "path": {"249-258": [[-632, 417], [-632, 421], [-637, 421], [-637, 417]]}, "center": {"249-258": [-634, 419]}}, -{"id": 6278, "name": "Fransaskois Flag", "description": "Flag of the French-speaking people of the Canadian province of Saskatchewan.", "links": {"website": ["https://fr.wikipedia.org/wiki/Fransaskois", "https://en.wikipedia.org/wiki/Fransaskois"], "subreddit": ["Quebec"]}, "path": {"220-258": [[587, 169], [593, 169], [593, 175], [593, 173], [587, 173]]}, "center": {"220-258": [590, 171]}}, -{"id": 6279, "name": "Shy Guy", "description": "A Shy Guy is a recurring Mario enemy that first appeared in Doki Doki Panic! which was turned into the north american version of Super Mario Bros. 2. They are most known for their appearances in spin-offs such as mario kart, the paper mario games, and Yoshi's Island.", "links": {"website": ["https://www.mariowiki.com/Shy_Guy"]}, "path": {"250-258": [[-198, 853], [-200, 853], [-200, 852], [-202, 852], [-202, 853], [-204, 853], [-204, 852], [-205, 852], [-205, 851], [-204, 851], [-204, 847], [-205, 847], [-204, 847], [-204, 846], [-199, 846], [-199, 847], [-198, 847], [-198, 849], [-199, 849], [-199, 852]]}, "center": {"250-258": [-201, 850]}}, +{"id": 6276, "name": "Finland", "description": "Flag of Finland, a Northern European nation bordering Sweden, Norway and Russia.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland"]}, "path": {"250-258, T": [[-15, -786], [2, -786], [2, -768], [-15, -768]]}, "center": {"250-258, T": [-6, -777]}}, +{"id": 6277, "name": "CommanderVideo - BIT.TRIP", "description": "CommanderVideo is the protagonist and mascot of the rhythm game series BIT.TRIP. The games vary in genre with each game, ranging from Pong-like (BIT.TRIP BEAT) to platforming (BIT.TRIP RUNNER). The series takes cues from the Atari 2600 and adds in an evolving soundtrack to make for a very surreal set of games. There are six main games in the series, BEAT, CORE, VOID, RUNNER, FATE, and FLUX (all released from 2009-2011), with two non-canonical spinoffs being released afterwards, Runner2 (2013) and Runner3 (2018). Each game is told from CommanderVideo's point of view and shows a stage in his life as he grows and develops as a person, from birth to death. He has appeared as a cameo in games like Super Meat Boy and Super Smash Bros. for Wii U!", "links": {"website": ["https://choiceprovisions.com/"], "subreddit": ["BITTRIP"], "discord": ["EqeY2qf8zX"]}, "path": {"249-258, T": [[-632, 417], [-632, 421], [-637, 421], [-637, 417]]}, "center": {"249-258, T": [-634, 419]}}, +{"id": 6278, "name": "Fransaskois Flag", "description": "Flag of the French-speaking people of the Canadian province of Saskatchewan.", "links": {"website": ["https://fr.wikipedia.org/wiki/Fransaskois", "https://en.wikipedia.org/wiki/Fransaskois"], "subreddit": ["Quebec"]}, "path": {"220-258, T": [[587, 169], [593, 169], [593, 175], [593, 173], [587, 173]]}, "center": {"220-258, T": [590, 171]}}, +{"id": 6279, "name": "Shy Guy", "description": "A Shy Guy is a recurring Mario enemy that first appeared in Doki Doki Panic! which was turned into the north american version of Super Mario Bros. 2. They are most known for their appearances in spin-offs such as mario kart, the paper mario games, and Yoshi's Island.", "links": {"website": ["https://www.mariowiki.com/Shy_Guy"]}, "path": {"250-258, T": [[-198, 853], [-200, 853], [-200, 852], [-202, 852], [-202, 853], [-204, 853], [-204, 852], [-205, 852], [-205, 851], [-204, 851], [-204, 847], [-205, 847], [-204, 847], [-204, 846], [-199, 846], [-199, 847], [-198, 847], [-198, 849], [-199, 849], [-199, 852]]}, "center": {"250-258, T": [-201, 850]}}, {"id": 6280, "name": "Der Kreis", "description": "Der Kreis (\"The Circle\") is a German group of young, handsome ravers who have made it their mission to see every notable DJ in the techno scene live.\n\nThis circle is a landmark to honor hard techno, and symbolizes the cohesion of our rave community: Lucca, Gereon, Shenja, Silas, Maxi.\n\nSpecial thanks to GreekPanda and Daniel, who showed courage in the defense of this art.", "links": {"website": ["https://www.youtube.com/watch?v=dRak8PaBS28"]}, "path": {"44-50": [[279, -188], [286, -188], [286, -181], [279, -181]]}, "center": {"44-50": [283, -184]}}, -{"id": 6281, "name": "Estonia", "description": "Flag of Estonia, a country in Northern Europe, borders the Baltic Sea and Gulf of Finland.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia"]}, "path": {"250-258": [[-15, -793], [2, -793], [2, -786], [-15, -786]]}, "center": {"250-258": [-6, -789]}}, -{"id": 6282, "name": "Lighthouse", "description": "In the United States, lighthouses are commonly associated with the upper New England region, although they can also be found all up and down the East Coast. Although lighthouses have been rendered obsolete by newer navigation techniques, there are ongoing efforts to preserve and restore the lighthouses that remain.", "links": {}, "path": {"250-258": [[988, 876], [989, 876], [989, 868], [990, 868], [990, 864], [992, 864], [992, 859], [993, 859], [993, 858], [999, 858], [999, 862], [992, 862], [992, 864], [993, 864], [993, 869], [994, 868], [994, 876], [995, 876], [995, 886], [994, 885], [993, 884], [993, 883], [992, 882], [991, 882], [991, 881], [990, 881], [989, 880], [988, 879]]}, "center": {"250-258": [991, 878]}}, -{"id": 6283, "name": "triforce", "description": "the triforce is an artifact of immense power that grants a wish to the person who possesses the entire thing, it is divided into three parts, wisdom, power, and courage with each part of the triforce being wielded by a prominent character in the legend of Zelda series, courage being wielded by link, wisdom by Zelda and power by ganon.", "links": {"subreddit": ["zelda"]}, "path": {"250-258": [[-854, 498], [-838, 482], [-822, 499], [-856, 499]]}, "center": {"250-258": [-838, 492]}}, +{"id": 6281, "name": "Estonia", "description": "Flag of Estonia, a country in Northern Europe, borders the Baltic Sea and Gulf of Finland.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia"]}, "path": {"250-258, T": [[-15, -793], [2, -793], [2, -786], [-15, -786]]}, "center": {"250-258, T": [-6, -789]}}, +{"id": 6282, "name": "Lighthouse", "description": "In the United States, lighthouses are commonly associated with the upper New England region, although they can also be found all up and down the East Coast. Although lighthouses have been rendered obsolete by newer navigation techniques, there are ongoing efforts to preserve and restore the lighthouses that remain.", "links": {}, "path": {"250-258, T": [[988, 876], [989, 876], [989, 868], [990, 868], [990, 864], [992, 864], [992, 859], [993, 859], [993, 858], [999, 858], [999, 862], [992, 862], [992, 864], [993, 864], [993, 869], [994, 868], [994, 876], [995, 876], [995, 886], [994, 885], [993, 884], [993, 883], [992, 882], [991, 882], [991, 881], [990, 881], [989, 880], [988, 879]]}, "center": {"250-258, T": [991, 878]}}, +{"id": 6283, "name": "triforce", "description": "the triforce is an artifact of immense power that grants a wish to the person who possesses the entire thing, it is divided into three parts, wisdom, power, and courage with each part of the triforce being wielded by a prominent character in the legend of Zelda series, courage being wielded by link, wisdom by Zelda and power by ganon.", "links": {"subreddit": ["zelda"]}, "path": {"250-258, T": [[-854, 498], [-838, 482], [-822, 499], [-856, 499]]}, "center": {"250-258, T": [-838, 492]}}, {"id": 6285, "name": "Flag of Denmark", "description": "Due to the r/Nordics region being attacked by a streamer, the Blue Corner attempted to place a Danish flag to show its alliance with the Nordics. However, the Blue Corner hivemind attacked the flag and destroyed it.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark", "https://en.wikipedia.org/wiki/Flag_of_Denmark"], "subreddit": ["TheBlueCorner"]}, "path": {"251-252": [[1402, 994], [1402, 999], [1411, 999], [1411, 994]]}, "center": {"251-252": [1407, 997]}}, {"id": 6286, "name": "Peo's Garden", "description": "The Peonistas are the fan-base of independent VTuber Yukinoshita Peo, a Japanese VTuber who frequently streams in English which she is still learning. Her fans are very devoted, to the point that they and not Peo herself are the ones putting up ads for her on YouTube, so seeing them here is no surprise. Anything to make their cute flower fairy smile!", "links": {"website": ["https://www.youtube.com/@YukinoshitaPeo", "https://www.youtube.com/@ahogegod1772", "https://www.youtube.com/@PeoGarden"]}, "path": {"4-8": [[-190, 359], [-201, 365], [-204, 364], [-193, 378], [-191, 381], [-189, 379], [-186, 383], [-185, 380], [-177, 368], [-178, 365], [-188, 359], [-202, 366], [-195, 378], [-192, 382]]}, "center": {"4-8": [-185, 368]}}, -{"id": 6287, "name": "N7 Armor Stripe 3", "description": "Iconic stripe from Commander Shepard's armor in the game Mass Effect", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"249-258": [[-806, -1000], [-802, -1000], [-802, -966], [-806, -966]]}, "center": {"249-258": [-804, -983]}}, -{"id": 6288, "name": "Honeycomb Bee", "description": "A Minecraft Bee made by the Honeycomb SMP", "links": {"subreddit": ["TheHoneycombSMP"], "discord": ["mC3vqeUP"]}, "path": {"233-258": [[1449, -176], [1457, -176], [1457, -164], [1449, -164]]}, "center": {"233-258": [1453, -170]}}, -{"id": 6289, "name": "Drawpile", "description": "Drawpile is a digital drawing application for PC, Mac, and Linux that lets you connect with other users and draw on a shared canvas.\n\nThis pixel art was created by PlaceNL, the Dutch r/Place community. PlaceNL uses Drawpile for maintaining the template with multiple people. A few hours after one of the admins asked in the Drawpile Discord server whether it was possible to view the mouse coordinates, the developers released an update with that feature added. As a thank you, PlaceNL put the Drawpile logo on the canvas.", "links": {"website": ["https://drawpile.net/"], "subreddit": ["PlaceNL"], "discord": ["placenl", "M3yyMpC"]}, "path": {"250-258": [[-865, 481], [-870, 482], [-872, 484], [-873, 487], [-873, 493], [-872, 496], [-870, 499], [-862, 499], [-859, 497], [-857, 493], [-857, 487], [-859, 484], [-862, 481]]}, "center": {"250-258": [-865, 490]}}, -{"id": 6290, "name": "Killer Sans [Something New]", "description": "Pixel art depicting a popular character within the Undertale Multiverse Community - Killer Sans - created by rahafwabas. He is from the discontinued series \"Something New.\"\n\nThe background pixel stripes represent characters of the \"Bad Sanses,\" a group he is commonly depicted with in fanworks: Horror Sans (by Sour-Apple-Studios), Dust Sans (by Ask-Dusttale), Cross Sans (by JakeiNimation), and Nightmare Sans (by JokuBlog).\n\nThe Undertale Multiverse, commonly abbreviated as UTMV, is a subdivision of the Undertale community that encapsulates the ever-expanding sphere of alternate universe content. These characters are often shown interacting with each other in a largescale multiverse setting.", "links": {"website": ["https://rahafwabas.tumblr.com/", "https://undertale-au.fandom.com/wiki/Something_New"], "discord": ["n8f3Kq5fkE"]}, "path": {"250-258": [[-1185, 221], [-1176, 221], [-1176, 240], [-1182, 240], [-1182, 238], [-1183, 238], [-1183, 237], [-1184, 237], [-1184, 236], [-1185, 236]]}, "center": {"250-258": [-1180, 231]}}, -{"id": 6291, "name": "Stovia heart", "description": "Based on the logo of \"Stovia\". The understandably controversial Helluva Boss ship of Stolas x Octavia.\n\nIt was originally located within the My Little Pony art before having to relocate.\n\nBuilt by around 5 or less people organised in a private discord server. It's small size is a result of wanting to keep a low profile.", "links": {"subreddit": ["Stovia"]}, "path": {"31-59": [[-53, 231], [-54, 230], [-56, 233], [-55, 234], [-54, 235], [-53, 236], [-52, 235], [-51, 234], [-50, 233], [-50, 232], [-51, 231], [-52, 230], [-53, 231], [-54, 230], [-55, 231], [-56, 232], [-56, 233], [-55, 234], [-54, 235], [-53, 236], [-52, 235], [-51, 234], [-50, 233], [-50, 232], [-51, 231], [-52, 230]], "75-77": [[-53, 233], [-54, 232], [-55, 233], [-56, 234], [-56, 235], [-55, 236], [-54, 237], [-53, 238], [-52, 237], [-51, 236], [-50, 235], [-50, 234], [-51, 233], [-52, 232]], "121-258": [[39, 246], [38, 245], [37, 246], [36, 247], [36, 248], [38, 250], [39, 251], [40, 250], [41, 249], [42, 248], [42, 247], [41, 246], [40, 245]]}, "center": {"31-59": [-55, 231], "75-77": [-53, 235], "121-258": [39, 248]}}, -{"id": 6292, "name": "optimus prime alt mode", "description": "the vehicle form of autobot leader optimus prime, throughout most iterations his vehicle mode has consistantly remained as a large truck.", "links": {}, "path": {"250-258": [[-1453, -368], [-1478, -368], [-1478, -363], [-1477, -363], [-1477, -360], [-1475, -360], [-1475, -363], [-1474, -363], [-1474, -364], [-1471, -364], [-1471, -361], [-1470, -361], [-1470, -360], [-1468, -360], [-1468, -361], [-1466, -361], [-1466, -360], [-1464, -360], [-1464, -361], [-1457, -361], [-1457, -360], [-1455, -360], [-1455, -361], [-1453, -361], [-1453, -367]]}, "center": {"250-258": [-1465, -364]}}, -{"id": 6293, "name": "Roquita152 Kukoro", "description": "Roquita152 o Furrita152 o Loquita152, etc.\nUn Diseñador/Editor/streamer/Vtuber pequeño Boliviano que logro tener un pequeño lugar en algo tan grande.\n\nLa obra de arte representa una versión de su modelo Vtuber pero al estilo del videojuego \"Kukoro\" que fue construida él y junto con su comunidad llamado los Rocozo", "links": {"website": ["https://twitter.com/Roquita152", "https://www.youtube.com/@roquita152", "https://www.youtube.com/@roquita152"]}, "path": {"250-258": [[1293, -832], [1294, -825], [1293, -821], [1301, -821], [1301, -832], [1297, -832]]}, "center": {"250-258": [1297, -828]}}, +{"id": 6287, "name": "N7 Armor Stripe 3", "description": "Iconic stripe from Commander Shepard's armor in the game Mass Effect", "links": {"subreddit": ["masseffect"], "discord": ["bdNCDXkJg7"]}, "path": {"249-258, T": [[-806, -1000], [-802, -1000], [-802, -966], [-806, -966]]}, "center": {"249-258, T": [-804, -983]}}, +{"id": 6288, "name": "Honeycomb Bee", "description": "A Minecraft Bee made by the Honeycomb SMP", "links": {"subreddit": ["TheHoneycombSMP"], "discord": ["mC3vqeUP"]}, "path": {"233-258, T": [[1449, -176], [1457, -176], [1457, -164], [1449, -164]]}, "center": {"233-258, T": [1453, -170]}}, +{"id": 6289, "name": "Drawpile", "description": "Drawpile is a digital drawing application for PC, Mac, and Linux that lets you connect with other users and draw on a shared canvas.\n\nThis pixel art was created by PlaceNL, the Dutch r/Place community. PlaceNL uses Drawpile for maintaining the template with multiple people. A few hours after one of the admins asked in the Drawpile Discord server whether it was possible to view the mouse coordinates, the developers released an update with that feature added. As a thank you, PlaceNL put the Drawpile logo on the canvas.", "links": {"website": ["https://drawpile.net/"], "subreddit": ["PlaceNL"], "discord": ["placenl", "M3yyMpC"]}, "path": {"250-258, T": [[-865, 481], [-870, 482], [-872, 484], [-873, 487], [-873, 493], [-872, 496], [-870, 499], [-862, 499], [-859, 497], [-857, 493], [-857, 487], [-859, 484], [-862, 481]]}, "center": {"250-258, T": [-865, 490]}}, +{"id": 6290, "name": "Killer Sans [Something New]", "description": "Pixel art depicting a popular character within the Undertale Multiverse Community - Killer Sans - created by rahafwabas. He is from the discontinued series \"Something New.\"\n\nThe background pixel stripes represent characters of the \"Bad Sanses,\" a group he is commonly depicted with in fanworks: Horror Sans (by Sour-Apple-Studios), Dust Sans (by Ask-Dusttale), Cross Sans (by JakeiNimation), and Nightmare Sans (by JokuBlog).\n\nThe Undertale Multiverse, commonly abbreviated as UTMV, is a subdivision of the Undertale community that encapsulates the ever-expanding sphere of alternate universe content. These characters are often shown interacting with each other in a largescale multiverse setting.", "links": {"website": ["https://rahafwabas.tumblr.com/", "https://undertale-au.fandom.com/wiki/Something_New"], "discord": ["n8f3Kq5fkE"]}, "path": {"250-258, T": [[-1185, 221], [-1176, 221], [-1176, 240], [-1182, 240], [-1182, 238], [-1183, 238], [-1183, 237], [-1184, 237], [-1184, 236], [-1185, 236]]}, "center": {"250-258, T": [-1180, 231]}}, +{"id": 6291, "name": "Stovia heart", "description": "Based on the logo of \"Stovia\". The understandably controversial Helluva Boss ship of Stolas x Octavia.\n\nIt was originally located within the My Little Pony art before having to relocate.\n\nBuilt by around 5 or less people organised in a private discord server. It's small size is a result of wanting to keep a low profile.", "links": {"subreddit": ["Stovia"]}, "path": {"31-59": [[-53, 231], [-54, 230], [-56, 233], [-55, 234], [-54, 235], [-53, 236], [-52, 235], [-51, 234], [-50, 233], [-50, 232], [-51, 231], [-52, 230], [-53, 231], [-54, 230], [-55, 231], [-56, 232], [-56, 233], [-55, 234], [-54, 235], [-53, 236], [-52, 235], [-51, 234], [-50, 233], [-50, 232], [-51, 231], [-52, 230]], "75-77": [[-53, 233], [-54, 232], [-55, 233], [-56, 234], [-56, 235], [-55, 236], [-54, 237], [-53, 238], [-52, 237], [-51, 236], [-50, 235], [-50, 234], [-51, 233], [-52, 232]], "121-258, T": [[39, 246], [38, 245], [37, 246], [36, 247], [36, 248], [38, 250], [39, 251], [40, 250], [41, 249], [42, 248], [42, 247], [41, 246], [40, 245]]}, "center": {"31-59": [-55, 231], "75-77": [-53, 235], "121-258, T": [39, 248]}}, +{"id": 6292, "name": "optimus prime alt mode", "description": "the vehicle form of autobot leader optimus prime, throughout most iterations his vehicle mode has consistantly remained as a large truck.", "links": {}, "path": {"250-258, T": [[-1453, -368], [-1478, -368], [-1478, -363], [-1477, -363], [-1477, -360], [-1475, -360], [-1475, -363], [-1474, -363], [-1474, -364], [-1471, -364], [-1471, -361], [-1470, -361], [-1470, -360], [-1468, -360], [-1468, -361], [-1466, -361], [-1466, -360], [-1464, -360], [-1464, -361], [-1457, -361], [-1457, -360], [-1455, -360], [-1455, -361], [-1453, -361], [-1453, -367]]}, "center": {"250-258, T": [-1465, -364]}}, +{"id": 6293, "name": "Roquita152 Kukoro", "description": "Roquita152 o Furrita152 o Loquita152, etc.\nUn Diseñador/Editor/streamer/Vtuber pequeño Boliviano que logro tener un pequeño lugar en algo tan grande.\n\nLa obra de arte representa una versión de su modelo Vtuber pero al estilo del videojuego \"Kukoro\" que fue construida él y junto con su comunidad llamado los Rocozo", "links": {"website": ["https://twitter.com/Roquita152", "https://www.youtube.com/@roquita152", "https://www.youtube.com/@roquita152"]}, "path": {"250-258, T": [[1293, -832], [1294, -825], [1293, -821], [1301, -821], [1301, -832], [1297, -832]]}, "center": {"250-258, T": [1297, -828]}}, {"id": 6294, "name": "The German Hivemind", "description": "This artwork represents the \"battle\" between the users on the Discord of r/placeDE (with the help of the Valorant community) and the much more numerous German users who set their pixels uncoordinated (Hivemind). While the Discord's plan was to limit the size of the German flags and fill them with as much artwork as possible to respect other artworks, the Hivemind often expanded the flag without concern and thus attacked allies or even their own artworks. Sometimes r/placeDE actively defended other artworks/communities against their own expanding German flag.", "links": {"subreddit": ["placeDE", "VALORANT"], "discord": ["placede"]}, "path": {"251-258": [[1275, -593], [1267, -591], [1260, -582], [1262, -570], [1271, -567], [1289, -567], [1292, -574], [1292, -576], [1340, -576], [1339, -567], [1336, -571], [1333, -564], [1338, -562], [1333, -560], [1331, -556], [1334, -552], [1341, -551], [1357, -550], [1382, -551], [1398, -552], [1410, -554], [1430, -556], [1440, -555], [1441, -559], [1448, -561], [1451, -565], [1451, -571], [1452, -574], [1459, -567], [1463, -562], [1484, -562], [1486, -567], [1497, -583], [1498, -606], [1475, -581], [1466, -591], [1461, -593], [1471, -597], [1465, -599], [1457, -597], [1445, -608], [1443, -608], [1443, -595], [1433, -595], [1425, -592], [1426, -579], [1421, -568], [1409, -566], [1403, -574], [1413, -577], [1413, -586], [1412, -594], [1415, -596], [1418, -595], [1422, -591], [1421, -596], [1417, -600], [1410, -598], [1409, -593], [1409, -584], [1406, -581], [1403, -583], [1401, -587], [1406, -594], [1409, -601], [1403, -610], [1393, -609], [1383, -606], [1374, -608], [1328, -608], [1327, -602], [1372, -601], [1376, -601], [1378, -599], [1380, -590], [1384, -583], [1383, -580], [1379, -578], [1291, -580], [1289, -586], [1286, -589], [1281, -593], [1282, -600], [1303, -600], [1302, -608], [1290, -607], [1271, -608], [1268, -608], [1268, -606], [1264, -606], [1262, -603], [1268, -599], [1270, -599], [1282, -601], [1281, -593]]}, "center": {"251-258": [1390, -567]}}, -{"id": 6295, "name": "IceBlueBird's Flag of Hungary", "description": "IceBlueBird's is a Hungarian YouTuber and streamer. This is IceBlueBird's second time on r/place, after his community built the Görény (IceBlueBird's favorite animal) on r/place 2022. This is IceBlueBird's secondary flag, after getting nuked by Morocco. After a canvas expansion, IceBlueBird decided to nuke this position while others were concentrating on the new area. His community successfully gained control of this location, building a Hungarian flag and Görény.", "links": {"website": ["https://www.youtube.com/channel/UCP6gIddjSaCl2ChEA_dNd_w", "https://www.twitch.tv/theicebluebird", "https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["IceBlueBird"], "discord": ["icebluebird"]}, "path": {"152-231": [[454, 32], [454, 63], [500, 63], [500, 32]], "232-258": [[450, 32], [500, 32], [500, 63], [455, 63], [454, 58], [453, 52], [452, 50], [451, 48], [450, 47], [450, 45], [450, 38]]}, "center": {"152-231": [477, 48], "232-258": [475, 48]}}, -{"id": 6296, "name": "Hitori Gotoh from Bocchi The Rock", "description": "Hitori Gotoh (Also known as \"Bocchi\") is the main character from the manga/anime \"Bocchi the Rock\". She is the Guitarist of Kessoku Band which she formed along with drummer Nijika Ichiji, bassist Ryo Yamada and vocalist Kita Ikuyo.\n\nIt is unknown which group is responsible for this rendition of Bocchi on r/place.", "links": {"subreddit": ["kessokuband", "bocchitherock"]}, "path": {"240-258": [[-1350, 7], [-1350, 4], [-1352, 3], [-1353, 4], [-1353, 2], [-1345, -4], [-1340, -4], [-1337, -2], [-1335, 1], [-1335, 7]]}, "center": {"240-258": [-1343, 2]}}, -{"id": 6298, "name": "U.D. Almeria", "description": "Is a spanish football club from the city of Almeria (in the southeast of Spain) that plays in LaLiga. Its colours are red and white. Its nickname is \"Los Indálicos\".", "links": {"website": ["https://www.udalmeriasad.com/"], "subreddit": ["AlmeriaAlmeria"]}, "path": {"161-258": [[868, -64], [885, -64], [884, -47], [868, -47], [869, -48], [868, -54], [868, -61]]}, "center": {"161-258": [876, -56]}}, +{"id": 6295, "name": "IceBlueBird's Flag of Hungary", "description": "IceBlueBird's is a Hungarian YouTuber and streamer. This is IceBlueBird's second time on r/place, after his community built the Görény (IceBlueBird's favorite animal) on r/place 2022. This is IceBlueBird's secondary flag, after getting nuked by Morocco. After a canvas expansion, IceBlueBird decided to nuke this position while others were concentrating on the new area. His community successfully gained control of this location, building a Hungarian flag and Görény.", "links": {"website": ["https://www.youtube.com/channel/UCP6gIddjSaCl2ChEA_dNd_w", "https://www.twitch.tv/theicebluebird", "https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["IceBlueBird"], "discord": ["icebluebird"]}, "path": {"152-231": [[454, 32], [454, 63], [500, 63], [500, 32]], "232-258, T": [[450, 32], [500, 32], [500, 63], [455, 63], [454, 58], [453, 52], [452, 50], [451, 48], [450, 47], [450, 45], [450, 38]]}, "center": {"152-231": [477, 48], "232-258, T": [475, 48]}}, +{"id": 6296, "name": "Hitori Gotoh from Bocchi The Rock", "description": "Hitori Gotoh (Also known as \"Bocchi\") is the main character from the manga/anime \"Bocchi the Rock\". She is the Guitarist of Kessoku Band which she formed along with drummer Nijika Ichiji, bassist Ryo Yamada and vocalist Kita Ikuyo.\n\nIt is unknown which group is responsible for this rendition of Bocchi on r/place.", "links": {"subreddit": ["kessokuband", "bocchitherock"]}, "path": {"240-258, T": [[-1350, 7], [-1350, 4], [-1352, 3], [-1353, 4], [-1353, 2], [-1345, -4], [-1340, -4], [-1337, -2], [-1335, 1], [-1335, 7]]}, "center": {"240-258, T": [-1343, 2]}}, +{"id": 6298, "name": "U.D. Almeria", "description": "Is a spanish football club from the city of Almeria (in the southeast of Spain) that plays in LaLiga. Its colours are red and white. Its nickname is \"Los Indálicos\".", "links": {"website": ["https://www.udalmeriasad.com/"], "subreddit": ["AlmeriaAlmeria"]}, "path": {"161-258, T": [[868, -64], [885, -64], [884, -47], [868, -47], [869, -48], [868, -54], [868, -61]]}, "center": {"161-258, T": [876, -56]}}, {"id": 6299, "name": "Honeycomb Bee", "description": "This Minecraft Bee has been made by the Honeycomb server and it is the peace symbol of the among us character it is on. Streamer / Youtuber Stintik (who made the among us character) told his viewers to defend the bee made by the Honeycomb server.", "links": {"subreddit": ["TheHoneycombSMP"], "discord": ["mC3vqeUP"]}, "path": {"159-168": [[70, 935], [78, 935], [78, 943], [70, 943]]}, "center": {"159-168": [74, 939]}}, {"id": 6300, "name": "Among us character", "description": "This among us character has been made and protected by Russian streamer / youtuber Stint AKA Stintik.", "links": {"website": ["https://www.youtube.com/@TheStintGames/featured"]}, "path": {"158-168": [[146, 885], [79, 885], [78, 906], [55, 906], [55, 976], [78, 976], [78, 995], [104, 995], [104, 977], [123, 977], [123, 995], [146, 994]]}, "center": {"158-168": [105, 936]}}, -{"id": 6301, "name": "PaRappa (PaRappa the Rapper)", "description": "Parappa the Rapper (Or Parappa for short) is the main character from the Parappa the Rapper franchise who was created by American artist Rodney Greenblat & Japanese Musician Masaya Matsuura. The character made his first appearance in the video game Parappa the Rapper (1995).", "links": {"subreddit": ["parappa"]}, "path": {"250-258": [[-1458, -258], [-1463, -252], [-1462, -250], [-1461, -251], [-1459, -248], [-1455, -248], [-1453, -251], [-1452, -250], [-1451, -252], [-1457, -259]]}, "center": {"250-258": [-1457, -253]}}, -{"id": 6302, "name": "Hammer & Sickle", "description": "The hammer & sickle is a communist symbol that is meant to represent a unity between agricultural workers and industrial workers. The symbol is notable for being used in the flags of the Soviet Union and its republics.", "links": {}, "path": {"250-258": [[303, 716], [315, 716], [315, 728], [303, 728]]}, "center": {"250-258": [309, 722]}}, -{"id": 6303, "name": "juezlo", "description": "strimer mexicana, que hace directos en la plataforma de twich creado por : dolce", "links": {}, "path": {"250-258": [[240, 617], [240, 628], [251, 628], [251, 618]]}, "center": {"250-258": [245, 623]}}, +{"id": 6301, "name": "PaRappa (PaRappa the Rapper)", "description": "Parappa the Rapper (Or Parappa for short) is the main character from the Parappa the Rapper franchise who was created by American artist Rodney Greenblat & Japanese Musician Masaya Matsuura. The character made his first appearance in the video game Parappa the Rapper (1995).", "links": {"subreddit": ["parappa"]}, "path": {"250-258, T": [[-1458, -258], [-1463, -252], [-1462, -250], [-1461, -251], [-1459, -248], [-1455, -248], [-1453, -251], [-1452, -250], [-1451, -252], [-1457, -259]]}, "center": {"250-258, T": [-1457, -253]}}, +{"id": 6302, "name": "Hammer & Sickle", "description": "The hammer & sickle is a communist symbol that is meant to represent a unity between agricultural workers and industrial workers. The symbol is notable for being used in the flags of the Soviet Union and its republics.", "links": {}, "path": {"250-258, T": [[303, 716], [315, 716], [315, 728], [303, 728]]}, "center": {"250-258, T": [309, 722]}}, +{"id": 6303, "name": "juezlo", "description": "strimer mexicana, que hace directos en la plataforma de twich creado por : dolce", "links": {}, "path": {"250-258, T": [[240, 617], [240, 628], [251, 628], [251, 618]]}, "center": {"250-258, T": [245, 623]}}, {"id": 6304, "name": "Jett from Valorant", "description": "Jett is an Agent in the FPS Valorant. She is a Duelist. In her hand she holds her Utility \"Blade Storm\".", "links": {"website": ["https://playvalorant.com/", "https://valorant.fandom.com/wiki/Jett"], "subreddit": ["VALORANT"]}, "path": {"174-248": [[746, -649], [738, -636], [741, -629], [743, -629], [738, -619], [741, -615], [735, -588], [738, -584], [737, -574], [740, -573], [727, -556], [724, -536], [727, -532], [730, -529], [734, -529], [732, -533], [730, -538], [730, -548], [735, -552], [737, -544], [740, -538], [741, -535], [740, -529], [738, -522], [736, -510], [745, -502], [749, -502], [751, -526], [761, -538], [768, -538], [776, -527], [777, -509], [782, -500], [795, -502], [792, -522], [789, -550], [787, -563], [784, -572], [778, -592], [796, -593], [806, -600], [819, -598], [833, -608], [836, -619], [823, -622], [813, -626], [810, -627], [813, -634], [808, -655], [801, -634], [806, -622], [796, -615], [794, -608], [796, -599], [787, -599], [776, -604], [783, -611], [789, -612], [786, -615], [778, -615], [774, -619], [774, -628], [779, -630], [776, -634], [771, -638], [775, -640], [775, -645], [778, -647], [775, -650], [770, -660], [759, -662], [753, -662], [743, -668], [739, -671], [743, -666], [734, -658], [745, -651], [745, -650]]}, "center": {"174-248": [762, -562]}}, -{"id": 6305, "name": "PJ Berri (Parappa the Rapper)", "description": "PJ Berri is a character who appears in the Parappa the Rapper franchise. He is the best friend of the main character Parappa and is known for his personality of having a big appetite and being tired all the time. \n\nTo celebrate the 20th anniversary of the franchise PJ Berri starred in a spinoff of anime shorts titled \"PJ Berri no Mogu Mogu Munya Munya\"", "links": {"subreddit": ["parappa"]}, "path": {"250-258": [[-1466, -257], [-1467, -258], [-1466, -259], [-1459, -259], [-1460, -257], [-1459, -255], [-1462, -252], [-1465, -252], [-1467, -253]]}, "center": {"250-258": [-1463, -255]}}, -{"id": 6306, "name": "ilmango", "description": "ilmango is a German Gaming YouTuber who uploads Minecraft videos. He is a part of the technical minecraft Server \"SciCraft\".", "links": {"website": ["https://youtube.fandom.com/wiki/Ilmango"]}, "path": {"250-258": [[-1167, 154], [-1160, 154], [-1160, 161], [-1167, 161]]}, "center": {"250-258": [-1163, 158]}}, -{"id": 6307, "name": "par0xyst", "description": "Par0xyst Minecraft Skin Face", "links": {"website": ["https://www.twitch.tv/par0xyst"], "discord": ["HvCyxrpz4P"]}, "path": {"250-258": [[-592, -827], [-583, -827], [-583, -818], [-592, -818], [-592, -822]]}, "center": {"250-258": [-587, -822]}}, -{"id": 6308, "name": "Permadeath SMP", "description": "Permadeath was the name of a popular spanish speaking SMP Minecraft server created by spanish youtuber and streamer ElRichMC in 2020.\n\nWhenever a player died, they were eliminated from the server. Every 10 days various changes were implemented that increased the difficulty. The original idea was that the server lasted 110 days, but by day 60 all players had died, with Luh as the last survivor.", "links": {"website": ["https://twitter.com/permadeathsmp?lang=es"]}, "path": {"250-258": [[740, -41], [735, -55], [735, -65], [742, -64], [742, -72], [759, -72], [759, -66], [766, -65], [765, -47], [760, -41], [750, -41]]}, "center": {"250-258": [752, -55]}}, -{"id": 6309, "name": "SciCraft", "description": "SciCraft is a Minecraft server well known in the Redstone / Technical community of Minecraft. It was founded by ragou42 in 2014.", "links": {"subreddit": ["SciCraft"]}, "path": {"250-258": [[-1176, 154], [-1128, 154], [-1128, 161], [-1176, 161], [-1176, 154], [-1176, 161], [-1176, 154], [-1128, 154], [-1128, 161], [-1176, 161]]}, "center": {"250-258": [-1128, 156]}}, +{"id": 6305, "name": "PJ Berri (Parappa the Rapper)", "description": "PJ Berri is a character who appears in the Parappa the Rapper franchise. He is the best friend of the main character Parappa and is known for his personality of having a big appetite and being tired all the time. \n\nTo celebrate the 20th anniversary of the franchise PJ Berri starred in a spinoff of anime shorts titled \"PJ Berri no Mogu Mogu Munya Munya\"", "links": {"subreddit": ["parappa"]}, "path": {"250-258, T": [[-1466, -257], [-1467, -258], [-1466, -259], [-1459, -259], [-1460, -257], [-1459, -255], [-1462, -252], [-1465, -252], [-1467, -253]]}, "center": {"250-258, T": [-1463, -255]}}, +{"id": 6306, "name": "ilmango", "description": "ilmango is a German Gaming YouTuber who uploads Minecraft videos. He is a part of the technical minecraft Server \"SciCraft\".", "links": {"website": ["https://youtube.fandom.com/wiki/Ilmango"]}, "path": {"250-258, T": [[-1167, 154], [-1160, 154], [-1160, 161], [-1167, 161]]}, "center": {"250-258, T": [-1163, 158]}}, +{"id": 6307, "name": "par0xyst", "description": "Par0xyst Minecraft Skin Face", "links": {"website": ["https://www.twitch.tv/par0xyst"], "discord": ["HvCyxrpz4P"]}, "path": {"250-258, T": [[-592, -827], [-583, -827], [-583, -818], [-592, -818], [-592, -822]]}, "center": {"250-258, T": [-587, -822]}}, +{"id": 6308, "name": "Permadeath SMP", "description": "Permadeath was the name of a popular spanish speaking SMP Minecraft server created by spanish youtuber and streamer ElRichMC in 2020.\n\nWhenever a player died, they were eliminated from the server. Every 10 days various changes were implemented that increased the difficulty. The original idea was that the server lasted 110 days, but by day 60 all players had died, with Luh as the last survivor.", "links": {"website": ["https://twitter.com/permadeathsmp?lang=es"]}, "path": {"250-258, T": [[740, -41], [735, -55], [735, -65], [742, -64], [742, -72], [759, -72], [759, -66], [766, -65], [765, -47], [760, -41], [750, -41]]}, "center": {"250-258, T": [752, -55]}}, +{"id": 6309, "name": "SciCraft", "description": "SciCraft is a Minecraft server well known in the Redstone / Technical community of Minecraft. It was founded by ragou42 in 2014.", "links": {"subreddit": ["SciCraft"]}, "path": {"250-258, T": [[-1176, 154], [-1128, 154], [-1128, 161], [-1176, 161], [-1176, 154], [-1176, 161], [-1176, 154], [-1128, 154], [-1128, 161], [-1176, 161]]}, "center": {"250-258, T": [-1128, 156]}}, {"id": 6310, "name": "RIP BOZO", "description": "RIP Bozo, often written as RIPBOZO, is a phrase used online to celebrate a person's death, deeming them a \"bozo,\" commonly defined as someone who is insignificant and stupid or a \"clown.\" The phrase first appeared on Instagram in 2015 as the hashtag #RipBozo, becoming associated with a reaction video of NBA commentator James Worthy smoking a cigar alongside text reading \"#PACKWATCH\" and \"REST IN PISS YOU WON'T BE MISSED\" in late 2020.", "links": {}, "path": {"251": [[-95, -275], [-23, -275], [-19, -264], [-100, -264]]}, "center": {"251": [-59, -269]}}, -{"id": 6311, "name": "Vytautas the Great", "description": "Vytautas, also known as Vytautas the Great from the late 14th century onwards, was a ruler of the Grand Duchy of Lithuania. He was also the prince of Grodno (1370–1382), the prince of Lutsk (1387–1389), and the postulated king of the Hussites. Built by LTURepublic and his viewers.", "links": {}, "path": {"188-215, 234-258": [[-138, 85], [-129, 78], [-128, 73], [-123, 67], [-119, 55], [-119, 49], [-121, 47], [-123, 42], [-121, 38], [-116, 38], [-114, 39], [-111, 38], [-108, 33], [-104, 33], [-102, 35], [-99, 38], [-95, 38], [-93, 43], [-94, 46], [-95, 51], [-97, 54], [-95, 61], [-95, 69], [-93, 71], [-92, 75], [-89, 79], [-82, 85]]}, "center": {"188-215, 234-258": [-109, 71]}}, +{"id": 6311, "name": "Vytautas the Great", "description": "Vytautas, also known as Vytautas the Great from the late 14th century onwards, was a ruler of the Grand Duchy of Lithuania. He was also the prince of Grodno (1370–1382), the prince of Lutsk (1387–1389), and the postulated king of the Hussites. Built by LTURepublic and his viewers.", "links": {}, "path": {"188-215, 234-258, T": [[-138, 85], [-129, 78], [-128, 73], [-123, 67], [-119, 55], [-119, 49], [-121, 47], [-123, 42], [-121, 38], [-116, 38], [-114, 39], [-111, 38], [-108, 33], [-104, 33], [-102, 35], [-99, 38], [-95, 38], [-93, 43], [-94, 46], [-95, 51], [-97, 54], [-95, 61], [-95, 69], [-93, 71], [-92, 75], [-89, 79], [-82, 85]]}, "center": {"188-215, 234-258, T": [-109, 71]}}, {"id": 6312, "name": "Creeper", "description": "The Creeper is a hostile mob from the game Minecraft.", "links": {}, "path": {"82-85": [[959, 410], [950, 410], [950, 420], [952, 420], [952, 432], [948, 433], [948, 438], [961, 438], [961, 433], [958, 433], [958, 420], [960, 420], [960, 410]], "76-81": [[950, 410], [950, 420], [960, 420], [960, 410]]}, "center": {"82-85": [955, 415], "76-81": [955, 415]}}, {"id": 6313, "name": "The Salami", "description": "It's a piece of salami. Made by one person.", "links": {}, "path": {"163-177": [[688, 697], [688, 701], [692, 701], [692, 697]], "202-214": [[686, 700], [689, 700], [689, 703], [686, 703]], "225-228": [[664, 707], [664, 710], [667, 710], [667, 707]], "253-258": [[686, 705], [686, 708], [689, 708], [689, 705]]}, "center": {"163-177": [690, 699], "202-214": [688, 702], "225-228": [666, 709], "253-258": [688, 707]}}, -{"id": 6314, "name": "TV Manó", "description": "TV Manó is the best friend of TV Maci, often appearing alongside him.", "links": {"subreddit": ["hungary"]}, "path": {"250-258": [[-1135, -26], [-1127, -25], [-1125, -23], [-1129, -6], [-1137, -6], [-1139, -17], [-1138, -23], [-1132, -26], [-1127, -25], [-1128, -23]]}, "center": {"250-258": [-1133, -17]}}, -{"id": 6315, "name": "\"Szeretlek!\" sign", "description": "\"Szeretlek\" is the hungarian word for \"I love you\".\nThe sign was built by unknown people, but the Hungarian community liked the idea, so they kept the sign.", "links": {"subreddit": ["hungary", "hungarian"]}, "path": {"250-258": [[-582, -33], [-582, -34], [-582, -28], [-544, -28], [-544, -34]]}, "center": {"250-258": [-549, -31]}}, -{"id": 6316, "name": "Bottle of Unicum", "description": "Unicum is a famous hungarian alcoholic beverage dating back to 1790, similar in taste to Jägermeister.\nAccording to the legend, it recieved the name from Emperor Franz Joseph. After the Inventor of the drink, Dr. Zwack offered a cup to the ruler, he tasted it, and simply replied: \"Dr. Zwack, das ist eine Unikum!\".", "links": {"website": ["https://hu.wikipedia.org/wiki/Unicum"], "subreddit": ["hungary"]}, "path": {"250-258": [[-1184, -25], [-1179, -24], [-1175, -11], [-1180, -6], [-1186, -6], [-1188, -11], [-1184, -17], [-1183, -25], [-1180, -25], [-1179, -17], [-1181, -16]]}, "center": {"250-258": [-1182, -11]}}, -{"id": 6317, "name": "Otong & Pakpol", "description": "Otong & Pakpol is an Indonesian popular meme / webcomic that tells the hilarious story of an ordinary civilian named Otong who wear a red shirt and a policeman in a brown uniform and green vest called Pakpol who always extorts some kind of fee to him. they both always using helmet anywhere they go.", "links": {}, "path": {"250-258": [[-1200, 399], [-1200, 408], [-1187, 408], [-1187, 399]]}, "center": {"250-258": [-1193, 404]}}, -{"id": 6318, "name": "Tunisia", "description": "the country of Tunisia as it appears on a map.", "links": {"subreddit": ["tunisia"]}, "path": {"245-258": [[-264, 815], [-269, 815], [-272, 815], [-274, 818], [-274, 823], [-273, 826], [-270, 827], [-268, 828], [-266, 829], [-263, 829], [-261, 830], [-262, 829], [-259, 831], [-257, 830], [-256, 827], [-253, 825], [-251, 825], [-253, 822], [-255, 818], [-260, 817]]}, "center": {"245-258": [-264, 822]}}, -{"id": 6319, "name": "swords for r/Scotland and r/Ireland", "description": "instead of a heart, r/Scotland and r/Ireland opted for 2 swords. both their artworks were in one of r/PlaceUk's flags when the canvas expanded and they both joined forces, refusing to move.\n\nr/PlaceUk had significant difficulty placing their flag which eventually resulted in their community fracturing and r/UkOnPlace forming which opted to abandon the flags. r/Scotland and r/Ireland placed 2 swords to commemorate their victory", "links": {"subreddit": ["Scotland", "Ireland"]}, "path": {"250-258": [[710, 875], [710, 874], [710, 873], [711, 872], [713, 870], [714, 869], [711, 866], [713, 865], [715, 867], [719, 863], [712, 855], [712, 852], [714, 852], [722, 860], [730, 852], [732, 852], [732, 855], [725, 863], [729, 867], [731, 865], [732, 865], [733, 866], [733, 867], [732, 868], [731, 869], [736, 874], [734, 876], [729, 872], [728, 870], [723, 866], [722, 866], [718, 870], [720, 872], [718, 873], [716, 871], [712, 875]]}, "center": {"250-258": [722, 863]}}, -{"id": 6320, "name": "Kumoko", "description": "Kumoko is the protagonist of \"So I'm a Spider, So What?\"\n\nOriginally created by Okina Baba as a Web Novel, Okina Baba would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime.\n\nThis Pixel Art of Kumoko has been adapted by ImSamuka from an existing .gif on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the KumoDesu subreddit.", "links": {"subreddit": ["KumoDesu", "Isekai_Coalition"]}, "path": {"250-258": [[428, -979], [420, -975], [415, -975], [415, -963], [419, -959], [426, -959], [429, -963], [429, -968], [431, -968], [434, -964], [439, -965], [438, -976], [431, -979]]}, "center": {"250-258": [422, -966]}}, -{"id": 6321, "name": "Raphtalia", "description": "Raphtalia is the deuteragonist of \"The Rising of the Shield Hero\".\n\nOriginally created by Aneko Yusagi as a Web Novel, Aneko Yusagi would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime with a third season to be aired soon as this description is being written.\n\nThis Pixel Art of Raphtalia has been made by ImSamuka on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the shieldbro subreddit.", "links": {"subreddit": ["Isekai_Coalition", "shieldbro"]}, "path": {"250-258": [[458, -979], [450, -979], [449, -978], [448, -977], [447, -978], [446, -979], [445, -978], [444, -977], [444, -976], [445, -975], [445, -974], [444, -973], [444, -972], [444, -971], [444, -970], [443, -969], [443, -968], [443, -967], [444, -967], [445, -967], [446, -966], [447, -966], [447, -965], [447, -964], [447, -963], [448, -962], [449, -962], [450, -961], [451, -961], [452, -960], [453, -960], [454, -961], [455, -961], [455, -962], [456, -963], [457, -963], [458, -964], [458, -965], [458, -966], [458, -967], [459, -968], [460, -969], [461, -970], [461, -975], [460, -976], [460, -977], [459, -978], [458, -979], [457, -979]]}, "center": {"250-258": [452, -971]}}, -{"id": 6322, "name": "Forever player", "description": "Forever player is an famous youtuber and streamer from brazil", "links": {"subreddit": ["foreverplayer"]}, "path": {"250-258": [[382, 462], [383, 462], [384, 462], [385, 462], [386, 462], [387, 462], [388, 462], [389, 462], [390, 462], [391, 462], [392, 462], [392, 461], [388, 461], [386, 461], [385, 461], [384, 461], [383, 461], [382, 461], [382, 460], [383, 460], [384, 460], [385, 460], [386, 460], [387, 460], [388, 460], [389, 460], [390, 460], [391, 460], [392, 460], [392, 459], [389, 459], [387, 459], [386, 459], [385, 459], [383, 459], [382, 459], [382, 458], [383, 458], [384, 458], [385, 458], [386, 458], [388, 458], [389, 458], [391, 458], [392, 458], [382, 457], [392, 457], [382, 456], [392, 456], [385, 457], [382, 455], [384, 455], [385, 455], [386, 455], [387, 455], [388, 455], [389, 455], [391, 455], [392, 455], [392, 454], [391, 454], [390, 454], [389, 454], [388, 454], [387, 454], [386, 454], [385, 454], [384, 454], [383, 454], [382, 454], [382, 453], [383, 453], [384, 453], [385, 453], [386, 453], [387, 453], [388, 453], [390, 453], [391, 453], [392, 453], [392, 452], [391, 452], [390, 452], [389, 452], [388, 452], [387, 452], [386, 452], [385, 452], [384, 452], [383, 452], [382, 452]]}, "center": {"250-258": [391, 452]}}, -{"id": 6323, "name": "Milim Nava", "description": "Milim Nava is a character from \"That Time I Got Reincarnated as a Slime\"\n\nOriginally created by Fuse as a Web Novel, Fuse would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime.\n\nThis Pixel Art of Milim Nava has been made by Jam and adapted by kojocrash on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the TenseiSlime subreddit.", "links": {"subreddit": ["TenseiSlime", "Isekai_Coalition"]}, "path": {"250-258": [[481, -1002], [471, -1000], [467, -996], [467, -991], [470, -983], [485, -982], [488, -985], [488, -997], [484, -1000]]}, "center": {"250-258": [479, -992]}}, -{"id": 6324, "name": "Myne", "description": "Myne is the protagonist of \"Ascendance of a Bookworm\"\n\nOriginally created by Miya Kazuki as a Web Novel, Miya Kazuki would later rewrite as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime.\n\nThis Pixel Art of Myne has been adapted from an existing pixel art by Mo and !tsabrody on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the HonzukiNoGekokujou subreddit.", "links": {"subreddit": ["Isekai_Coalition", "HonzukiNoGekokujou"]}, "path": {"250-258": [[452, -1000], [454, -979], [447, -976], [444, -968], [438, -966], [439, -962], [443, -965], [445, -964], [445, -962], [439, -958], [431, -962], [435, -968], [433, -981], [433, -987], [428, -989], [430, -1000]]}, "center": {"250-258": [443, -986]}}, -{"id": 6325, "name": "Albedo", "description": "Albedo is a character from \"Overlord\"\n\nOriginally created by Kugane Maruyama as a Web Novel, he would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime, with an animated movie to be released in the future.\n\nThis Pixel Art of Albedo has been adapted by !tsabrody from the first Ending sequence of \"Isekai Quartet\" on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the Overlord subreddit.", "links": {"subreddit": ["overlord", "Isekai_Coalition"]}, "path": {"250-258": [[438, -963], [434, -964], [433, -970], [428, -969], [423, -961], [418, -960], [418, -946], [424, -939], [426, -935], [436, -934], [437, -938], [442, -936], [442, -941], [443, -946], [439, -951], [439, -958], [439, -960], [439, -963]]}, "center": {"250-258": [428, -951]}}, -{"id": 6326, "name": "Tanya von Degurechaff", "description": "Tanya von Degurechaff is the protagonist of \"Saga of Tanya the Evil\"\n\nOriginally created by Carlo Zen as a Web Novel, it would later be adapted as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime, including an animated movie.\n\nThis Pixel Art of Tanya von Degurechaff has been adapted by !tsabrody and finalized by ImSamuka from the first Ending sequence of \"Isekai Quartet\" on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the YoujoSenki subreddit.", "links": {"subreddit": ["YoujoSenki", "Isekai_Coalition"]}, "path": {"250-258": [[442, -968], [439, -967], [439, -962], [437, -957], [437, -956], [435, -956], [435, -954], [437, -953], [436, -952], [436, -951], [435, -950], [436, -949], [437, -948], [438, -947], [440, -943], [439, -941], [439, -939], [440, -936], [440, -935], [454, -935], [454, -955], [454, -959], [448, -964], [448, -967], [443, -968]]}, "center": {"250-258": [445, -955]}}, -{"id": 6327, "name": "Columbia", "description": "The country of Columbia as it appears on a map", "links": {"subreddit": ["Columbia"]}, "path": {"163-258": [[-964, 889], [-964, 903], [-965, 904], [-969, 909], [-972, 913], [-973, 913], [-974, 914], [-974, 915], [-976, 917], [-975, 918], [-974, 918], [-966, 926], [-965, 926], [-963, 928], [-962, 928], [-961, 929], [-959, 929], [-950, 938], [-950, 939], [-947, 942], [-946, 942], [-945, 943], [-941, 943], [-940, 944], [-936, 944], [-936, 945], [-940, 949], [-940, 950], [-944, 954], [-944, 955], [-938, 955], [-937, 956], [-936, 956], [-935, 957], [-934, 957], [-933, 956], [-933, 953], [-932, 952], [-932, 950], [-931, 949], [-931, 947], [-930, 947], [-929, 946], [-929, 945], [-928, 944], [-928, 935], [-927, 934], [-926, 934], [-926, 931], [-925, 930], [-925, 928], [-924, 927], [-924, 925], [-915, 925], [-914, 926], [-914, 927], [-913, 927], [-913, 929], [-912, 930], [-911, 930], [-912, 929], [-912, 926], [-913, 926], [-913, 922], [-914, 921], [-914, 919], [-913, 919], [-912, 918], [-912, 915], [-913, 915], [-914, 914], [-914, 913], [-915, 913], [-915, 909], [-914, 908], [-914, 906], [-913, 905], [-913, 902], [-914, 901], [-921, 901], [-921, 900], [-923, 900], [-923, 899], [-924, 898], [-925, 897], [-931, 897], [-932, 896], [-932, 895], [-933, 895], [-933, 888], [-934, 887], [-934, 886], [-935, 885], [-935, 883], [-934, 882], [-934, 880], [-932, 878], [-932, 877], [-931, 877], [-931, 875], [-929, 875], [-927, 873], [-926, 873], [-926, 872], [-924, 872], [-924, 871], [-923, 870], [-923, 869], [-931, 869], [-932, 870], [-933, 870], [-934, 871], [-936, 871], [-937, 870], [-938, 871], [-939, 870], [-941, 872], [-945, 872], [-946, 873], [-946, 874], [-947, 875], [-948, 875], [-948, 876], [-952, 880], [-953, 880], [-954, 881], [-959, 886], [-960, 886], [-960, 887], [-962, 887]]}, "center": {"163-258": [-944, 914]}}, -{"id": 6328, "name": "Hachenburger Westerwald", "description": "Logo of the hachenburger Westerwald.", "links": {"website": ["http://hbgww.de/"]}, "path": {"250-258": [[-177, -1000], [-175, -1000], [-177, -1000], [-174, -1000], [-173, -999], [-172, -998], [-171, -997], [-171, -996], [-171, -995], [-171, -994], [-172, -993], [-173, -992], [-174, -991], [-175, -991], [-176, -991], [-177, -991], [-178, -992], [-179, -993], [-180, -994], [-180, -996], [-179, -997], [-179, -998]]}, "center": {"250-258": [-175, -995]}}, +{"id": 6314, "name": "TV Manó", "description": "TV Manó is the best friend of TV Maci, often appearing alongside him.", "links": {"subreddit": ["hungary"]}, "path": {"250-258, T": [[-1135, -26], [-1127, -25], [-1125, -23], [-1129, -6], [-1137, -6], [-1139, -17], [-1138, -23], [-1132, -26], [-1127, -25], [-1128, -23]]}, "center": {"250-258, T": [-1133, -17]}}, +{"id": 6315, "name": "\"Szeretlek!\" sign", "description": "\"Szeretlek\" is the hungarian word for \"I love you\".\nThe sign was built by unknown people, but the Hungarian community liked the idea, so they kept the sign.", "links": {"subreddit": ["hungary", "hungarian"]}, "path": {"250-258, T": [[-582, -33], [-582, -34], [-582, -28], [-544, -28], [-544, -34]]}, "center": {"250-258, T": [-549, -31]}}, +{"id": 6316, "name": "Bottle of Unicum", "description": "Unicum is a famous hungarian alcoholic beverage dating back to 1790, similar in taste to Jägermeister.\nAccording to the legend, it recieved the name from Emperor Franz Joseph. After the Inventor of the drink, Dr. Zwack offered a cup to the ruler, he tasted it, and simply replied: \"Dr. Zwack, das ist eine Unikum!\".", "links": {"website": ["https://hu.wikipedia.org/wiki/Unicum"], "subreddit": ["hungary"]}, "path": {"250-258, T": [[-1184, -25], [-1179, -24], [-1175, -11], [-1180, -6], [-1186, -6], [-1188, -11], [-1184, -17], [-1183, -25], [-1180, -25], [-1179, -17], [-1181, -16]]}, "center": {"250-258, T": [-1182, -11]}}, +{"id": 6317, "name": "Otong & Pakpol", "description": "Otong & Pakpol is an Indonesian popular meme / webcomic that tells the hilarious story of an ordinary civilian named Otong who wear a red shirt and a policeman in a brown uniform and green vest called Pakpol who always extorts some kind of fee to him. they both always using helmet anywhere they go.", "links": {}, "path": {"250-258, T": [[-1200, 399], [-1200, 408], [-1187, 408], [-1187, 399]]}, "center": {"250-258, T": [-1193, 404]}}, +{"id": 6318, "name": "Tunisia", "description": "the country of Tunisia as it appears on a map.", "links": {"subreddit": ["tunisia"]}, "path": {"245-258, T": [[-264, 815], [-269, 815], [-272, 815], [-274, 818], [-274, 823], [-273, 826], [-270, 827], [-268, 828], [-266, 829], [-263, 829], [-261, 830], [-262, 829], [-259, 831], [-257, 830], [-256, 827], [-253, 825], [-251, 825], [-253, 822], [-255, 818], [-260, 817]]}, "center": {"245-258, T": [-264, 822]}}, +{"id": 6319, "name": "swords for r/Scotland and r/Ireland", "description": "instead of a heart, r/Scotland and r/Ireland opted for 2 swords. both their artworks were in one of r/PlaceUk's flags when the canvas expanded and they both joined forces, refusing to move.\n\nr/PlaceUk had significant difficulty placing their flag which eventually resulted in their community fracturing and r/UkOnPlace forming which opted to abandon the flags. r/Scotland and r/Ireland placed 2 swords to commemorate their victory", "links": {"subreddit": ["Scotland", "Ireland"]}, "path": {"250-258, T": [[710, 875], [710, 874], [710, 873], [711, 872], [713, 870], [714, 869], [711, 866], [713, 865], [715, 867], [719, 863], [712, 855], [712, 852], [714, 852], [722, 860], [730, 852], [732, 852], [732, 855], [725, 863], [729, 867], [731, 865], [732, 865], [733, 866], [733, 867], [732, 868], [731, 869], [736, 874], [734, 876], [729, 872], [728, 870], [723, 866], [722, 866], [718, 870], [720, 872], [718, 873], [716, 871], [712, 875]]}, "center": {"250-258, T": [722, 863]}}, +{"id": 6320, "name": "Kumoko", "description": "Kumoko is the protagonist of \"So I'm a Spider, So What?\"\n\nOriginally created by Okina Baba as a Web Novel, Okina Baba would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime.\n\nThis Pixel Art of Kumoko has been adapted by ImSamuka from an existing .gif on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the KumoDesu subreddit.", "links": {"subreddit": ["KumoDesu", "Isekai_Coalition"]}, "path": {"250-258, T": [[428, -979], [420, -975], [415, -975], [415, -963], [419, -959], [426, -959], [429, -963], [429, -968], [431, -968], [434, -964], [439, -965], [438, -976], [431, -979]]}, "center": {"250-258, T": [422, -966]}}, +{"id": 6321, "name": "Raphtalia", "description": "Raphtalia is the deuteragonist of \"The Rising of the Shield Hero\".\n\nOriginally created by Aneko Yusagi as a Web Novel, Aneko Yusagi would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime with a third season to be aired soon as this description is being written.\n\nThis Pixel Art of Raphtalia has been made by ImSamuka on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the shieldbro subreddit.", "links": {"subreddit": ["Isekai_Coalition", "shieldbro"]}, "path": {"250-258, T": [[458, -979], [450, -979], [449, -978], [448, -977], [447, -978], [446, -979], [445, -978], [444, -977], [444, -976], [445, -975], [445, -974], [444, -973], [444, -972], [444, -971], [444, -970], [443, -969], [443, -968], [443, -967], [444, -967], [445, -967], [446, -966], [447, -966], [447, -965], [447, -964], [447, -963], [448, -962], [449, -962], [450, -961], [451, -961], [452, -960], [453, -960], [454, -961], [455, -961], [455, -962], [456, -963], [457, -963], [458, -964], [458, -965], [458, -966], [458, -967], [459, -968], [460, -969], [461, -970], [461, -975], [460, -976], [460, -977], [459, -978], [458, -979], [457, -979]]}, "center": {"250-258, T": [452, -971]}}, +{"id": 6322, "name": "Forever player", "description": "Forever player is an famous youtuber and streamer from brazil", "links": {"subreddit": ["foreverplayer"]}, "path": {"250-258, T": [[382, 462], [383, 462], [384, 462], [385, 462], [386, 462], [387, 462], [388, 462], [389, 462], [390, 462], [391, 462], [392, 462], [392, 461], [388, 461], [386, 461], [385, 461], [384, 461], [383, 461], [382, 461], [382, 460], [383, 460], [384, 460], [385, 460], [386, 460], [387, 460], [388, 460], [389, 460], [390, 460], [391, 460], [392, 460], [392, 459], [389, 459], [387, 459], [386, 459], [385, 459], [383, 459], [382, 459], [382, 458], [383, 458], [384, 458], [385, 458], [386, 458], [388, 458], [389, 458], [391, 458], [392, 458], [382, 457], [392, 457], [382, 456], [392, 456], [385, 457], [382, 455], [384, 455], [385, 455], [386, 455], [387, 455], [388, 455], [389, 455], [391, 455], [392, 455], [392, 454], [391, 454], [390, 454], [389, 454], [388, 454], [387, 454], [386, 454], [385, 454], [384, 454], [383, 454], [382, 454], [382, 453], [383, 453], [384, 453], [385, 453], [386, 453], [387, 453], [388, 453], [390, 453], [391, 453], [392, 453], [392, 452], [391, 452], [390, 452], [389, 452], [388, 452], [387, 452], [386, 452], [385, 452], [384, 452], [383, 452], [382, 452]]}, "center": {"250-258, T": [391, 452]}}, +{"id": 6323, "name": "Milim Nava", "description": "Milim Nava is a character from \"That Time I Got Reincarnated as a Slime\"\n\nOriginally created by Fuse as a Web Novel, Fuse would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime.\n\nThis Pixel Art of Milim Nava has been made by Jam and adapted by kojocrash on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the TenseiSlime subreddit.", "links": {"subreddit": ["TenseiSlime", "Isekai_Coalition"]}, "path": {"250-258, T": [[481, -1002], [471, -1000], [467, -996], [467, -991], [470, -983], [485, -982], [488, -985], [488, -997], [484, -1000]]}, "center": {"250-258, T": [479, -992]}}, +{"id": 6324, "name": "Myne", "description": "Myne is the protagonist of \"Ascendance of a Bookworm\"\n\nOriginally created by Miya Kazuki as a Web Novel, Miya Kazuki would later rewrite as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime.\n\nThis Pixel Art of Myne has been adapted from an existing pixel art by Mo and !tsabrody on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the HonzukiNoGekokujou subreddit.", "links": {"subreddit": ["Isekai_Coalition", "HonzukiNoGekokujou"]}, "path": {"250-258, T": [[452, -1000], [454, -979], [447, -976], [444, -968], [438, -966], [439, -962], [443, -965], [445, -964], [445, -962], [439, -958], [431, -962], [435, -968], [433, -981], [433, -987], [428, -989], [430, -1000]]}, "center": {"250-258, T": [443, -986]}}, +{"id": 6325, "name": "Albedo", "description": "Albedo is a character from \"Overlord\"\n\nOriginally created by Kugane Maruyama as a Web Novel, he would later rewrite it as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime, with an animated movie to be released in the future.\n\nThis Pixel Art of Albedo has been adapted by !tsabrody from the first Ending sequence of \"Isekai Quartet\" on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the Overlord subreddit.", "links": {"subreddit": ["overlord", "Isekai_Coalition"]}, "path": {"250-258, T": [[438, -963], [434, -964], [433, -970], [428, -969], [423, -961], [418, -960], [418, -946], [424, -939], [426, -935], [436, -934], [437, -938], [442, -936], [442, -941], [443, -946], [439, -951], [439, -958], [439, -960], [439, -963]]}, "center": {"250-258, T": [428, -951]}}, +{"id": 6326, "name": "Tanya von Degurechaff", "description": "Tanya von Degurechaff is the protagonist of \"Saga of Tanya the Evil\"\n\nOriginally created by Carlo Zen as a Web Novel, it would later be adapted as a Light Novel. From there, the Light Novel would later be adapted into a manga and an anime, including an animated movie.\n\nThis Pixel Art of Tanya von Degurechaff has been adapted by !tsabrody and finalized by ImSamuka from the first Ending sequence of \"Isekai Quartet\" on the Isekai Coalition Discord Server, and immortalized on the canvas through a collaborative effort of the Isekai Coalition Discord Server, and the YoujoSenki subreddit.", "links": {"subreddit": ["YoujoSenki", "Isekai_Coalition"]}, "path": {"250-258, T": [[442, -968], [439, -967], [439, -962], [437, -957], [437, -956], [435, -956], [435, -954], [437, -953], [436, -952], [436, -951], [435, -950], [436, -949], [437, -948], [438, -947], [440, -943], [439, -941], [439, -939], [440, -936], [440, -935], [454, -935], [454, -955], [454, -959], [448, -964], [448, -967], [443, -968]]}, "center": {"250-258, T": [445, -955]}}, +{"id": 6327, "name": "Columbia", "description": "The country of Columbia as it appears on a map", "links": {"subreddit": ["Columbia"]}, "path": {"163-258, T": [[-964, 889], [-964, 903], [-965, 904], [-969, 909], [-972, 913], [-973, 913], [-974, 914], [-974, 915], [-976, 917], [-975, 918], [-974, 918], [-966, 926], [-965, 926], [-963, 928], [-962, 928], [-961, 929], [-959, 929], [-950, 938], [-950, 939], [-947, 942], [-946, 942], [-945, 943], [-941, 943], [-940, 944], [-936, 944], [-936, 945], [-940, 949], [-940, 950], [-944, 954], [-944, 955], [-938, 955], [-937, 956], [-936, 956], [-935, 957], [-934, 957], [-933, 956], [-933, 953], [-932, 952], [-932, 950], [-931, 949], [-931, 947], [-930, 947], [-929, 946], [-929, 945], [-928, 944], [-928, 935], [-927, 934], [-926, 934], [-926, 931], [-925, 930], [-925, 928], [-924, 927], [-924, 925], [-915, 925], [-914, 926], [-914, 927], [-913, 927], [-913, 929], [-912, 930], [-911, 930], [-912, 929], [-912, 926], [-913, 926], [-913, 922], [-914, 921], [-914, 919], [-913, 919], [-912, 918], [-912, 915], [-913, 915], [-914, 914], [-914, 913], [-915, 913], [-915, 909], [-914, 908], [-914, 906], [-913, 905], [-913, 902], [-914, 901], [-921, 901], [-921, 900], [-923, 900], [-923, 899], [-924, 898], [-925, 897], [-931, 897], [-932, 896], [-932, 895], [-933, 895], [-933, 888], [-934, 887], [-934, 886], [-935, 885], [-935, 883], [-934, 882], [-934, 880], [-932, 878], [-932, 877], [-931, 877], [-931, 875], [-929, 875], [-927, 873], [-926, 873], [-926, 872], [-924, 872], [-924, 871], [-923, 870], [-923, 869], [-931, 869], [-932, 870], [-933, 870], [-934, 871], [-936, 871], [-937, 870], [-938, 871], [-939, 870], [-941, 872], [-945, 872], [-946, 873], [-946, 874], [-947, 875], [-948, 875], [-948, 876], [-952, 880], [-953, 880], [-954, 881], [-959, 886], [-960, 886], [-960, 887], [-962, 887]]}, "center": {"163-258, T": [-944, 914]}}, +{"id": 6328, "name": "Hachenburger Westerwald", "description": "Logo of the hachenburger Westerwald.", "links": {"website": ["http://hbgww.de/"]}, "path": {"250-258, T": [[-177, -1000], [-175, -1000], [-177, -1000], [-174, -1000], [-173, -999], [-172, -998], [-171, -997], [-171, -996], [-171, -995], [-171, -994], [-172, -993], [-173, -992], [-174, -991], [-175, -991], [-176, -991], [-177, -991], [-178, -992], [-179, -993], [-180, -994], [-180, -996], [-179, -997], [-179, -998]]}, "center": {"250-258, T": [-175, -995]}}, {"id": 6329, "name": "Tiny Eiffel tower", "description": "this Eiffel tower was made by france on a tiny french flag", "links": {"subreddit": ["placeFR", "france"]}, "path": {"168-242": [[-131, 853], [-115, 853], [-121, 841], [-121, 827], [-122, 826], [-123, 825], [-125, 828], [-125, 841]]}, "center": {"168-242": [-123, 848]}}, -{"id": 6330, "name": "Colombian Flag", "description": "A rendition of the Colombian Flag.", "links": {}, "path": {"250-258": [[-1460, 153], [-1460, 140], [-1446, 140], [-1446, 153], [-1459, 153]]}, "center": {"250-258": [-1453, 147]}}, +{"id": 6330, "name": "Colombian Flag", "description": "A rendition of the Colombian Flag.", "links": {}, "path": {"250-258, T": [[-1460, 153], [-1460, 140], [-1446, 140], [-1446, 153], [-1459, 153]]}, "center": {"250-258, T": [-1453, 147]}}, {"id": 6331, "name": "Asexual flag", "description": "A pride flag representing the asexual community. Asexual people have no sexual attraction to others.", "links": {"website": ["https://en.wikipedia.org/wiki/Asexuality"]}, "path": {"172-182": [[-1326, -930], [-1326, -924], [-1319, -924], [-1319, -919], [-1311, -919], [-1311, -925], [-1318, -925], [-1318, -930]]}, "center": {"172-182": [-1322, -927]}}, {"id": 6332, "name": "Aromantic flag", "description": "A pride flag representing the aromatic community. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"]}, "path": {"171-183": [[-1326, -925], [-1326, -919], [-1318, -919], [-1318, -924], [-1311, -924], [-1311, -930], [-1319, -930], [-1319, -925]]}, "center": {"171-183": [-1322, -922]}}, {"id": 6333, "name": "Aroace flag", "description": "A pride flag representing the aroace (aromantic, asexual) community.", "links": {"website": ["https://lgbtqia.fandom.com/wiki/Aromantic_asexual"]}, "path": {"174-182": [[-1334, -930], [-1334, -924], [-1325, -924], [-1325, -930]]}, "center": {"174-182": [-1329, -927]}}, @@ -6111,80 +6111,80 @@ {"id": 6341, "name": "Bisexual flag", "description": "A pride flag representing the bisexual community. Bisexual people are sexually attracted to both males and females.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality", "https://en.wikipedia.org/wiki/Bisexual_flag"]}, "path": {"175-179": [[-1329, -925], [-1329, -923], [-1327, -921], [-1327, -919], [-1325, -919], [-1325, -925]]}, "center": {"175-179": [-1327, -923]}}, {"id": 6342, "name": "Transgender flag", "description": "A pride flag representing the transgender community. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"]}, "path": {"181-183": [[-1391, -916], [-1391, -910], [-1385, -910], [-1383, -912], [-1383, -913], [-1385, -916]]}, "center": {"181-183": [-1387, -913]}}, {"id": 6343, "name": "Gay flag", "description": "A pride flag representing the gay community. Gay people are men attracted to other men. This flag was originally designed by the Tumblr user \"gayflagblog\".", "links": {"website": ["https://en.wikipedia.org/wiki/Gay"]}, "path": {"176-182": [[-1341, -930], [-1341, -924], [-1338, -924], [-1338, -930]]}, "center": {"176-182": [-1339, -927]}}, -{"id": 6344, "name": "AI: The Somnium Files", "description": "", "links": {"subreddit": ["aithesomniumfiles"]}, "path": {"199-227": [[684, 727], [692, 727], [692, 715], [692, 708], [691, 706], [687, 706], [687, 707], [686, 707], [686, 708], [685, 708], [685, 711], [684, 711]], "239-258": [[692, 739], [684, 739], [684, 729], [692, 729]]}, "center": {"199-227": [688, 717], "239-258": [688, 734]}}, +{"id": 6344, "name": "AI: The Somnium Files", "description": "", "links": {"subreddit": ["aithesomniumfiles"]}, "path": {"199-227": [[684, 727], [692, 727], [692, 715], [692, 708], [691, 706], [687, 706], [687, 707], [686, 707], [686, 708], [685, 708], [685, 711], [684, 711]], "239-258, T": [[692, 739], [684, 739], [684, 729], [692, 729]]}, "center": {"199-227": [688, 717], "239-258, T": [688, 734]}}, {"id": 6345, "name": "Tama", "description": "", "links": {"subreddit": ["aithesomniumfiles"]}, "path": {"201-229": [[685, 714], [687, 714], [688, 714], [688, 715], [689, 715], [689, 716], [689, 715], [690, 715], [690, 714], [692, 714], [692, 707], [691, 707], [691, 706], [687, 706], [687, 707], [686, 707], [686, 708], [685, 708]]}, "center": {"201-229": [689, 710]}}, -{"id": 6346, "name": "Aiba", "description": "A prosthetic eyeball protected by a transparent skin, resembling a hamster functioning as a physical body for the AI. Aiba resides in the left eye socket of Kaname Date, assisting him with vision enhancing skills such as x-ray or thermo vision. She's from the mystery game \"AI: THE SOMNIUM FILES\".", "links": {"subreddit": ["aithesomniumfiles"]}, "path": {"200-226": [[684, 727], [684, 725], [685, 725], [685, 716], [685, 715], [687, 715], [687, 716], [688, 716], [688, 717], [690, 717], [690, 716], [691, 716], [691, 715], [692, 715], [692, 727]], "238-258": [[685, 740], [692, 740], [692, 730], [691, 730], [691, 731], [690, 731], [690, 732], [688, 732], [688, 731], [687, 731], [687, 730], [685, 730], [685, 731], [684, 731], [684, 740]]}, "center": {"200-226": [689, 722], "238-258": [688, 736]}}, -{"id": 6347, "name": "Satisfactory FICSIT Logo", "description": "A checkmark logo found in Satisfactory, a game by Coffee Stain studio. Similar to Factorio but in 3D, hence its proximity with the Factorio logo", "links": {"website": ["https://www.satisfactorygame.com/"], "subreddit": ["satisfactory"]}, "path": {"250-258": [[-244, 605], [-247, 609], [-242, 616], [-236, 607], [-237, 605], [-241, 605], [-243, 605]]}, "center": {"250-258": [-242, 609]}}, -{"id": 6348, "name": "Twisty and Toast", "description": "\"Pixel art of Twisty next to a piece of toast, a character made by BlueSpook, pixelart made by Shining Toaster. A collaboration between a small group of friends\"", "links": {"website": ["https://www.instagram.com/blue.spook"]}, "path": {"243-258": [[6, -719], [8, -721], [6, -722], [8, -724], [6, -724], [6, -728], [7, -730], [9, -731], [9, -733], [11, -733], [13, -730], [14, -728], [19, -728], [22, -728], [23, -727], [23, -726], [22, -723], [18, -723], [17, -719], [10, -719]]}, "center": {"243-258": [13, -724]}}, -{"id": 6349, "name": "TheLochox", "description": "TheLochox, a.k.a. Lochox, Lonches, Locho, is an Guatemalan content creator.", "links": {"website": ["https://www.youtube.com/channel/UCfJivAP4ckdaeAs6dl8CntQ", "https://www.twitch.tv/thelochox", "https://www.tiktok.com/@thelochox?lang=es"]}, "path": {"250-258": [[-1033, -214], [-1026, -214], [-1026, -207], [-1033, -207]]}, "center": {"250-258": [-1029, -210]}}, -{"id": 6350, "name": "Chattermax", "description": "Chattermax is a robotic toy bird is based off the popular 90s's toy, Furby's, like its counterpart it is highly noisy and cannot be turned off by simple conditions, so is usually hidden away from the heeler girls (especially from bluey)", "links": {"website": ["https://blueypedia.fandom.com/wiki/Toys#Chattermax"], "subreddit": ["bluey"], "discord": ["6PVDDkKT"]}, "path": {"250-258": [[720, 822], [720, 825], [719, 825], [719, 828], [720, 828], [720, 832], [721, 832], [722, 831], [723, 832], [724, 831], [725, 832], [726, 831], [727, 832], [728, 831], [728, 829], [729, 828], [730, 827], [730, 826], [729, 825], [729, 822], [730, 821], [729, 820], [728, 819], [727, 819], [726, 818], [723, 818], [722, 819], [721, 819], [720, 820], [719, 821]]}, "center": {"250-258": [725, 825]}}, -{"id": 6351, "name": "Donmaui", "description": "youtuber y streamer de anime chileno junto al señor cara de papa y un vinito.\n\nChilean anime streamer and youtuber with Mr. Potato Head and a Little wine.", "links": {"website": ["https://www.youtube.com/@Donmaui", "https://www.youtube.com/@elBuenDon", "https://www.youtube.com/@donfushibol9532", "https://www.twitch.tv/donmaui_"], "subreddit": ["Donmaui"]}, "path": {"147-258": [[-939, -780], [-938, -779], [-937, -779], [-936, -778], [-935, -777], [-935, -776], [-935, -775], [-935, -774], [-935, -773], [-935, -772], [-934, -771], [-934, -770], [-935, -769], [-936, -770], [-936, -771], [-937, -770], [-938, -769], [-935, -768], [-936, -767], [-935, -766], [-936, -765], [-934, -766], [-933, -766], [-932, -766], [-931, -766], [-930, -765], [-930, -764], [-930, -763], [-930, -762], [-931, -761], [-932, -760], [-932, -759], [-933, -759], [-934, -759], [-934, -760], [-935, -761], [-936, -761], [-937, -760], [-937, -759], [-937, -758], [-936, -757], [-937, -756], [-938, -755], [-939, -755], [-940, -755], [-941, -755], [-942, -755], [-943, -755], [-944, -755], [-945, -755], [-945, -756], [-946, -755], [-947, -755], [-948, -755], [-949, -755], [-949, -756], [-950, -757], [-950, -758], [-950, -759], [-951, -758], [-952, -759], [-952, -758], [-953, -758], [-954, -758], [-954, -759], [-955, -759], [-955, -760], [-955, -761], [-955, -762], [-956, -763], [-955, -764], [-955, -765], [-956, -766], [-955, -767], [-955, -768], [-954, -769], [-953, -769], [-952, -769], [-951, -769], [-950, -769], [-949, -768], [-949, -767], [-948, -766], [-949, -765], [-949, -764], [-948, -763], [-949, -762], [-949, -761], [-949, -760], [-949, -759], [-949, -758], [-949, -757], [-948, -756], [-946, -756], [-946, -757], [-945, -758], [-945, -759], [-945, -760], [-946, -761], [-947, -762], [-946, -763], [-946, -765], [-947, -766], [-946, -767], [-947, -768], [-947, -769], [-946, -770], [-945, -770], [-944, -769], [-946, -771], [-948, -770], [-948, -771], [-947, -772], [-947, -773], [-947, -774], [-947, -775], [-947, -776], [-947, -777], [-946, -778], [-945, -779], [-944, -780], [-943, -780], [-942, -780], [-941, -780], [-940, -780]]}, "center": {"147-258": [-941, -774]}}, -{"id": 6352, "name": "r/futurama", "description": "Subreddit focused on the cartoon Futurama.", "links": {"subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"219-258": [[-1231, -1000], [-1231, -996], [-1190, -996], [-1190, -1000]]}, "center": {"219-258": [-1210, -998]}}, -{"id": 6353, "name": "Philip J. Fry", "description": "Philip J. Fry is the protagonist of the cartoon Futurama.", "links": {"website": ["https://en.wikipedia.org/wiki/Philip_J._Fry"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"219-258": [[-1221, -995], [-1221, -993], [-1222, -993], [-1222, -983], [-1221, -983], [-1221, -981], [-1217, -981], [-1217, -983], [-1216, -983], [-1216, -992], [-1215, -993], [-1215, -996], [-1218, -996], [-1219, -995]]}, "center": {"219-258": [-1219, -990]}}, -{"id": 6354, "name": "Dr. Zoidberg", "description": "Dr. Zoidberg is a character from the cartoon Futurama.", "links": {"website": ["https://en.wikipedia.org/wiki/Zoidberg"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"219-258": [[-1228, -993], [-1228, -983], [-1227, -983], [-1227, -980], [-1223, -980], [-1223, -983], [-1221, -985], [-1222, -986], [-1222, -993]]}, "center": {"219-258": [-1225, -987]}}, -{"id": 6355, "name": "Leela", "description": "Leela is a character from the cartoon Futurama.", "links": {"website": ["https://en.wikipedia.org/wiki/Leela_(Futurama)"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"220-258": [[-1216, -995], [-1216, -993], [-1217, -993], [-1217, -983], [-1215, -983], [-1215, -980], [-1212, -980], [-1212, -983], [-1211, -984], [-1211, -991], [-1210, -992], [-1210, -993], [-1212, -995]]}, "center": {"220-258": [-1214, -986]}}, -{"id": 6356, "name": "Bender", "description": "Bender is a character from the cartoon Futurama.", "links": {"website": ["https://en.wikipedia.org/wiki/Bender_(Futurama)"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"220-258": [[-1207, -996], [-1207, -994], [-1209, -992], [-1209, -983], [-1208, -983], [-1208, -980], [-1204, -980], [-1204, -983], [-1203, -983], [-1203, -988], [-1201, -990], [-1201, -994], [-1203, -996]]}, "center": {"220-258": [-1205, -991]}}, -{"id": 6357, "name": "Professor Farnsworth", "description": "Professor Farnsworth is a character from the cartoon Futurama.", "links": {"website": ["https://en.wikipedia.org/wiki/Professor_Farnsworth"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"221-258": [[-1199, -995], [-1202, -992], [-1202, -984], [-1201, -983], [-1201, -980], [-1200, -980], [-1198, -983], [-1196, -983], [-1196, -992]]}, "center": {"221-258": [-1199, -987]}}, -{"id": 6358, "name": "Lord Nibbler", "description": "Lord Nibbler is a character from the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Lord_Nibbler"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"222-258": [[-1210, -987], [-1213, -983], [-1213, -982], [-1214, -981], [-1214, -980], [-1207, -980], [-1207, -983]]}, "center": {"222-258": [-1210, -983]}}, -{"id": 6359, "name": "Hypnotoad", "description": "Hypnotoad is a character from the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Hypnotoad"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"224-258": [[-1213, -980], [-1215, -978], [-1215, -974], [-1216, -973], [-1213, -969], [-1205, -969], [-1204, -968], [-1203, -969], [-1203, -971], [-1202, -972], [-1202, -973], [-1205, -977], [-1205, -978], [-1207, -980]]}, "center": {"224-258": [-1209, -974]}}, -{"id": 6360, "name": "Slurms MacKenzie", "description": "Slurms MacKenzie is a character from the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Slurms_MacKenzie"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"227-258": [[-1233, -986], [-1233, -980], [-1234, -979], [-1236, -979], [-1236, -976], [-1228, -976], [-1228, -978], [-1227, -979], [-1227, -982], [-1228, -983], [-1228, -986]]}, "center": {"227-258": [-1230, -981]}}, -{"id": 6361, "name": "Slurm", "description": "Slurm is a fictional soft drink from the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Slurm"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"230-258": [[-1228, -980], [-1228, -976], [-1225, -976], [-1225, -980]]}, "center": {"230-258": [-1226, -978]}}, -{"id": 6362, "name": "Planet Express Ship", "description": "The Planet Express Ship is the primary spacecraft used for transportation in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Planet_Express_Ship"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"204-258": [[-1271, -1000], [-1273, -998], [-1271, -996], [-1267, -996], [-1265, -995], [-1265, -994], [-1271, -994], [-1273, -992], [-1273, -986], [-1271, -984], [-1266, -984], [-1264, -986], [-1261, -983], [-1260, -984], [-1257, -984], [-1256, -985], [-1244, -985], [-1241, -983], [-1238, -983], [-1232, -987], [-1230, -987], [-1228, -989], [-1232, -993], [-1238, -995], [-1238, -996], [-1237, -997], [-1237, -998], [-1240, -1000], [-1241, -1000], [-1245, -998], [-1247, -998], [-1249, -996], [-1256, -996], [-1260, -1000]]}, "center": {"204-258": [-1259, -991]}}, -{"id": 6363, "name": "Brain Slug", "description": "The Brain Slug is a species of space parasite in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Brain_Slug"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"219-241": [[-1225, -996], [-1228, -992], [-1227, -991], [-1226, -992], [-1223, -992], [-1223, -996], [-1215, -996], [-1215, -994], [-1211, -994], [-1211, -996], [-1196, -996], [-1196, -993], [-1195, -993], [-1194, -994], [-1191, -994], [-1191, -997], [-1192, -998], [-1193, -997], [-1195, -997], [-1195, -996], [-1211, -996], [-1211, -998], [-1213, -998], [-1222, -996], [-1222, -980], [-1225, -980], [-1225, -976], [-1223, -976], [-1223, -975], [-1220, -975], [-1220, -977], [-1221, -977], [-1221, -980], [-1222, -980], [-1222, -996]], "242-258": [[-1225, -996], [-1227, -994], [-1227, -992], [-1223, -992], [-1223, -996], [-1222, -996], [-1222, -980], [-1225, -980], [-1225, -976], [-1223, -976], [-1223, -975], [-1220, -975], [-1220, -977], [-1221, -977], [-1221, -980], [-1222, -980], [-1222, -996]]}, "center": {"219-241": [-1213, -996], "242-258": [-1223, -978]}}, -{"id": 6364, "name": "Carol Miller", "description": "Carol Miller, a.k.a. Mom, is a character in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Carol_Miller"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"232-258": [[-1273, -985], [-1273, -972], [-1271, -972], [-1268, -976], [-1268, -980], [-1266, -983], [-1266, -985]]}, "center": {"232-258": [-1270, -982]}}, -{"id": 6365, "name": "Amy Wong-Kroker", "description": "Amy Wong-Kroker is a character in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Amy_Wong-Kroker"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"221-258": [[-1190, -995], [-1190, -993], [-1189, -992], [-1189, -985], [-1187, -983], [-1184, -983], [-1184, -987], [-1183, -988], [-1183, -991], [-1181, -993], [-1181, -995]]}, "center": {"221-258": [-1186, -990]}}, -{"id": 6366, "name": "Hermes Conrad", "description": "Hermes Conrad is a character in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Hermes_Conrad"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"221-258": [[-1194, -995], [-1196, -993], [-1196, -986], [-1194, -984], [-1194, -982], [-1191, -982], [-1191, -986], [-1189, -986], [-1189, -990], [-1190, -990], [-1190, -995]]}, "center": {"221-258": [-1193, -989]}}, -{"id": 6367, "name": "Seymour Asses", "description": "Seymour Asses is dog character in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Seymour_Asses"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"230-258": [[-1222, -982], [-1222, -980], [-1221, -980], [-1221, -978], [-1215, -978], [-1215, -980], [-1214, -980], [-1214, -984], [-1218, -984], [-1218, -982]]}, "center": {"230-258": [-1218, -980]}}, -{"id": 6368, "name": "Han-Tyumi", "description": "Han-Tyumi the Confused Cyborg is a recurring character in King Gizzard & The Lizard Wizard lore. His story is most detailed in the 3rd and final movement of the 2017 album \"Murder of the Universe\".\n\nLater in the time-lapse he can be seen vomiting: one of his two desires in order to feel human. His other wish is death.", "links": {"website": ["https://king-gizzard-and-the-lizard-wizard.fandom.com/wiki/Han-Tyumi"], "subreddit": ["kgatlw"]}, "path": {"134-227": [[309, 16], [312, 16], [313, 15], [314, 15], [315, 14], [315, 13], [316, 13], [317, 12], [319, 10], [319, 9], [317, 7], [317, 6], [313, 2], [308, 2], [304, 6], [304, 7], [302, 9], [302, 10], [305, 13], [306, 13], [306, 14], [307, 15], [308, 15]], "228-258": [[301, 21], [300, 20], [301, 19], [302, 18], [303, 18], [304, 17], [306, 17], [308, 16], [308, 15], [307, 15], [306, 14], [306, 13], [305, 13], [302, 10], [302, 9], [303, 8], [304, 7], [304, 6], [305, 5], [308, 2], [313, 2], [317, 6], [317, 7], [318, 8], [319, 9], [319, 10], [316, 13], [315, 13], [315, 14], [314, 15], [313, 15], [313, 16], [315, 16], [316, 17], [320, 20]]}, "center": {"134-227": [311, 8], "228-258": [310, 8]}}, +{"id": 6346, "name": "Aiba", "description": "A prosthetic eyeball protected by a transparent skin, resembling a hamster functioning as a physical body for the AI. Aiba resides in the left eye socket of Kaname Date, assisting him with vision enhancing skills such as x-ray or thermo vision. She's from the mystery game \"AI: THE SOMNIUM FILES\".", "links": {"subreddit": ["aithesomniumfiles"]}, "path": {"200-226": [[684, 727], [684, 725], [685, 725], [685, 716], [685, 715], [687, 715], [687, 716], [688, 716], [688, 717], [690, 717], [690, 716], [691, 716], [691, 715], [692, 715], [692, 727]], "238-258, T": [[685, 740], [692, 740], [692, 730], [691, 730], [691, 731], [690, 731], [690, 732], [688, 732], [688, 731], [687, 731], [687, 730], [685, 730], [685, 731], [684, 731], [684, 740]]}, "center": {"200-226": [689, 722], "238-258, T": [688, 736]}}, +{"id": 6347, "name": "Satisfactory FICSIT Logo", "description": "A checkmark logo found in Satisfactory, a game by Coffee Stain studio. Similar to Factorio but in 3D, hence its proximity with the Factorio logo", "links": {"website": ["https://www.satisfactorygame.com/"], "subreddit": ["satisfactory"]}, "path": {"250-258, T": [[-244, 605], [-247, 609], [-242, 616], [-236, 607], [-237, 605], [-241, 605], [-243, 605]]}, "center": {"250-258, T": [-242, 609]}}, +{"id": 6348, "name": "Twisty and Toast", "description": "\"Pixel art of Twisty next to a piece of toast, a character made by BlueSpook, pixelart made by Shining Toaster. A collaboration between a small group of friends\"", "links": {"website": ["https://www.instagram.com/blue.spook"]}, "path": {"243-258, T": [[6, -719], [8, -721], [6, -722], [8, -724], [6, -724], [6, -728], [7, -730], [9, -731], [9, -733], [11, -733], [13, -730], [14, -728], [19, -728], [22, -728], [23, -727], [23, -726], [22, -723], [18, -723], [17, -719], [10, -719]]}, "center": {"243-258, T": [13, -724]}}, +{"id": 6349, "name": "TheLochox", "description": "TheLochox, a.k.a. Lochox, Lonches, Locho, is an Guatemalan content creator.", "links": {"website": ["https://www.youtube.com/channel/UCfJivAP4ckdaeAs6dl8CntQ", "https://www.twitch.tv/thelochox", "https://www.tiktok.com/@thelochox?lang=es"]}, "path": {"250-258, T": [[-1033, -214], [-1026, -214], [-1026, -207], [-1033, -207]]}, "center": {"250-258, T": [-1029, -210]}}, +{"id": 6350, "name": "Chattermax", "description": "Chattermax is a robotic toy bird is based off the popular 90s's toy, Furby's, like its counterpart it is highly noisy and cannot be turned off by simple conditions, so is usually hidden away from the heeler girls (especially from bluey)", "links": {"website": ["https://blueypedia.fandom.com/wiki/Toys#Chattermax"], "subreddit": ["bluey"], "discord": ["6PVDDkKT"]}, "path": {"250-258, T": [[720, 822], [720, 825], [719, 825], [719, 828], [720, 828], [720, 832], [721, 832], [722, 831], [723, 832], [724, 831], [725, 832], [726, 831], [727, 832], [728, 831], [728, 829], [729, 828], [730, 827], [730, 826], [729, 825], [729, 822], [730, 821], [729, 820], [728, 819], [727, 819], [726, 818], [723, 818], [722, 819], [721, 819], [720, 820], [719, 821]]}, "center": {"250-258, T": [725, 825]}}, +{"id": 6351, "name": "Donmaui", "description": "youtuber y streamer de anime chileno junto al señor cara de papa y un vinito.\n\nChilean anime streamer and youtuber with Mr. Potato Head and a Little wine.", "links": {"website": ["https://www.youtube.com/@Donmaui", "https://www.youtube.com/@elBuenDon", "https://www.youtube.com/@donfushibol9532", "https://www.twitch.tv/donmaui_"], "subreddit": ["Donmaui"]}, "path": {"147-258, T": [[-939, -780], [-938, -779], [-937, -779], [-936, -778], [-935, -777], [-935, -776], [-935, -775], [-935, -774], [-935, -773], [-935, -772], [-934, -771], [-934, -770], [-935, -769], [-936, -770], [-936, -771], [-937, -770], [-938, -769], [-935, -768], [-936, -767], [-935, -766], [-936, -765], [-934, -766], [-933, -766], [-932, -766], [-931, -766], [-930, -765], [-930, -764], [-930, -763], [-930, -762], [-931, -761], [-932, -760], [-932, -759], [-933, -759], [-934, -759], [-934, -760], [-935, -761], [-936, -761], [-937, -760], [-937, -759], [-937, -758], [-936, -757], [-937, -756], [-938, -755], [-939, -755], [-940, -755], [-941, -755], [-942, -755], [-943, -755], [-944, -755], [-945, -755], [-945, -756], [-946, -755], [-947, -755], [-948, -755], [-949, -755], [-949, -756], [-950, -757], [-950, -758], [-950, -759], [-951, -758], [-952, -759], [-952, -758], [-953, -758], [-954, -758], [-954, -759], [-955, -759], [-955, -760], [-955, -761], [-955, -762], [-956, -763], [-955, -764], [-955, -765], [-956, -766], [-955, -767], [-955, -768], [-954, -769], [-953, -769], [-952, -769], [-951, -769], [-950, -769], [-949, -768], [-949, -767], [-948, -766], [-949, -765], [-949, -764], [-948, -763], [-949, -762], [-949, -761], [-949, -760], [-949, -759], [-949, -758], [-949, -757], [-948, -756], [-946, -756], [-946, -757], [-945, -758], [-945, -759], [-945, -760], [-946, -761], [-947, -762], [-946, -763], [-946, -765], [-947, -766], [-946, -767], [-947, -768], [-947, -769], [-946, -770], [-945, -770], [-944, -769], [-946, -771], [-948, -770], [-948, -771], [-947, -772], [-947, -773], [-947, -774], [-947, -775], [-947, -776], [-947, -777], [-946, -778], [-945, -779], [-944, -780], [-943, -780], [-942, -780], [-941, -780], [-940, -780]]}, "center": {"147-258, T": [-941, -774]}}, +{"id": 6352, "name": "r/futurama", "description": "Subreddit focused on the cartoon Futurama.", "links": {"subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"219-258, T": [[-1231, -1000], [-1231, -996], [-1190, -996], [-1190, -1000]]}, "center": {"219-258, T": [-1210, -998]}}, +{"id": 6353, "name": "Philip J. Fry", "description": "Philip J. Fry is the protagonist of the cartoon Futurama.", "links": {"website": ["https://en.wikipedia.org/wiki/Philip_J._Fry"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"219-258, T": [[-1221, -995], [-1221, -993], [-1222, -993], [-1222, -983], [-1221, -983], [-1221, -981], [-1217, -981], [-1217, -983], [-1216, -983], [-1216, -992], [-1215, -993], [-1215, -996], [-1218, -996], [-1219, -995]]}, "center": {"219-258, T": [-1219, -990]}}, +{"id": 6354, "name": "Dr. Zoidberg", "description": "Dr. Zoidberg is a character from the cartoon Futurama.", "links": {"website": ["https://en.wikipedia.org/wiki/Zoidberg"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"219-258, T": [[-1228, -993], [-1228, -983], [-1227, -983], [-1227, -980], [-1223, -980], [-1223, -983], [-1221, -985], [-1222, -986], [-1222, -993]]}, "center": {"219-258, T": [-1225, -987]}}, +{"id": 6355, "name": "Leela", "description": "Leela is a character from the cartoon Futurama.", "links": {"website": ["https://en.wikipedia.org/wiki/Leela_(Futurama)"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"220-258, T": [[-1216, -995], [-1216, -993], [-1217, -993], [-1217, -983], [-1215, -983], [-1215, -980], [-1212, -980], [-1212, -983], [-1211, -984], [-1211, -991], [-1210, -992], [-1210, -993], [-1212, -995]]}, "center": {"220-258, T": [-1214, -986]}}, +{"id": 6356, "name": "Bender", "description": "Bender is a character from the cartoon Futurama.", "links": {"website": ["https://en.wikipedia.org/wiki/Bender_(Futurama)"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"220-258, T": [[-1207, -996], [-1207, -994], [-1209, -992], [-1209, -983], [-1208, -983], [-1208, -980], [-1204, -980], [-1204, -983], [-1203, -983], [-1203, -988], [-1201, -990], [-1201, -994], [-1203, -996]]}, "center": {"220-258, T": [-1205, -991]}}, +{"id": 6357, "name": "Professor Farnsworth", "description": "Professor Farnsworth is a character from the cartoon Futurama.", "links": {"website": ["https://en.wikipedia.org/wiki/Professor_Farnsworth"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"221-258, T": [[-1199, -995], [-1202, -992], [-1202, -984], [-1201, -983], [-1201, -980], [-1200, -980], [-1198, -983], [-1196, -983], [-1196, -992]]}, "center": {"221-258, T": [-1199, -987]}}, +{"id": 6358, "name": "Lord Nibbler", "description": "Lord Nibbler is a character from the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Lord_Nibbler"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"222-258, T": [[-1210, -987], [-1213, -983], [-1213, -982], [-1214, -981], [-1214, -980], [-1207, -980], [-1207, -983]]}, "center": {"222-258, T": [-1210, -983]}}, +{"id": 6359, "name": "Hypnotoad", "description": "Hypnotoad is a character from the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Hypnotoad"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"224-258, T": [[-1213, -980], [-1215, -978], [-1215, -974], [-1216, -973], [-1213, -969], [-1205, -969], [-1204, -968], [-1203, -969], [-1203, -971], [-1202, -972], [-1202, -973], [-1205, -977], [-1205, -978], [-1207, -980]]}, "center": {"224-258, T": [-1209, -974]}}, +{"id": 6360, "name": "Slurms MacKenzie", "description": "Slurms MacKenzie is a character from the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Slurms_MacKenzie"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"227-258, T": [[-1233, -986], [-1233, -980], [-1234, -979], [-1236, -979], [-1236, -976], [-1228, -976], [-1228, -978], [-1227, -979], [-1227, -982], [-1228, -983], [-1228, -986]]}, "center": {"227-258, T": [-1230, -981]}}, +{"id": 6361, "name": "Slurm", "description": "Slurm is a fictional soft drink from the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Slurm"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"230-258, T": [[-1228, -980], [-1228, -976], [-1225, -976], [-1225, -980]]}, "center": {"230-258, T": [-1226, -978]}}, +{"id": 6362, "name": "Planet Express Ship", "description": "The Planet Express Ship is the primary spacecraft used for transportation in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Planet_Express_Ship"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"204-258, T": [[-1271, -1000], [-1273, -998], [-1271, -996], [-1267, -996], [-1265, -995], [-1265, -994], [-1271, -994], [-1273, -992], [-1273, -986], [-1271, -984], [-1266, -984], [-1264, -986], [-1261, -983], [-1260, -984], [-1257, -984], [-1256, -985], [-1244, -985], [-1241, -983], [-1238, -983], [-1232, -987], [-1230, -987], [-1228, -989], [-1232, -993], [-1238, -995], [-1238, -996], [-1237, -997], [-1237, -998], [-1240, -1000], [-1241, -1000], [-1245, -998], [-1247, -998], [-1249, -996], [-1256, -996], [-1260, -1000]]}, "center": {"204-258, T": [-1259, -991]}}, +{"id": 6363, "name": "Brain Slug", "description": "The Brain Slug is a species of space parasite in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Brain_Slug"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"219-241": [[-1225, -996], [-1228, -992], [-1227, -991], [-1226, -992], [-1223, -992], [-1223, -996], [-1215, -996], [-1215, -994], [-1211, -994], [-1211, -996], [-1196, -996], [-1196, -993], [-1195, -993], [-1194, -994], [-1191, -994], [-1191, -997], [-1192, -998], [-1193, -997], [-1195, -997], [-1195, -996], [-1211, -996], [-1211, -998], [-1213, -998], [-1222, -996], [-1222, -980], [-1225, -980], [-1225, -976], [-1223, -976], [-1223, -975], [-1220, -975], [-1220, -977], [-1221, -977], [-1221, -980], [-1222, -980], [-1222, -996]], "242-258, T": [[-1225, -996], [-1227, -994], [-1227, -992], [-1223, -992], [-1223, -996], [-1222, -996], [-1222, -980], [-1225, -980], [-1225, -976], [-1223, -976], [-1223, -975], [-1220, -975], [-1220, -977], [-1221, -977], [-1221, -980], [-1222, -980], [-1222, -996]]}, "center": {"219-241": [-1213, -996], "242-258, T": [-1223, -978]}}, +{"id": 6364, "name": "Carol Miller", "description": "Carol Miller, a.k.a. Mom, is a character in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Carol_Miller"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"232-258, T": [[-1273, -985], [-1273, -972], [-1271, -972], [-1268, -976], [-1268, -980], [-1266, -983], [-1266, -985]]}, "center": {"232-258, T": [-1270, -982]}}, +{"id": 6365, "name": "Amy Wong-Kroker", "description": "Amy Wong-Kroker is a character in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Amy_Wong-Kroker"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"221-258, T": [[-1190, -995], [-1190, -993], [-1189, -992], [-1189, -985], [-1187, -983], [-1184, -983], [-1184, -987], [-1183, -988], [-1183, -991], [-1181, -993], [-1181, -995]]}, "center": {"221-258, T": [-1186, -990]}}, +{"id": 6366, "name": "Hermes Conrad", "description": "Hermes Conrad is a character in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Hermes_Conrad"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"221-258, T": [[-1194, -995], [-1196, -993], [-1196, -986], [-1194, -984], [-1194, -982], [-1191, -982], [-1191, -986], [-1189, -986], [-1189, -990], [-1190, -990], [-1190, -995]]}, "center": {"221-258, T": [-1193, -989]}}, +{"id": 6367, "name": "Seymour Asses", "description": "Seymour Asses is dog character in the cartoon Futurama.", "links": {"website": ["https://futurama.fandom.com/wiki/Seymour_Asses"], "subreddit": ["futurama"], "discord": ["ZpcBWnEp"]}, "path": {"230-258, T": [[-1222, -982], [-1222, -980], [-1221, -980], [-1221, -978], [-1215, -978], [-1215, -980], [-1214, -980], [-1214, -984], [-1218, -984], [-1218, -982]]}, "center": {"230-258, T": [-1218, -980]}}, +{"id": 6368, "name": "Han-Tyumi", "description": "Han-Tyumi the Confused Cyborg is a recurring character in King Gizzard & The Lizard Wizard lore. His story is most detailed in the 3rd and final movement of the 2017 album \"Murder of the Universe\".\n\nLater in the time-lapse he can be seen vomiting: one of his two desires in order to feel human. His other wish is death.", "links": {"website": ["https://king-gizzard-and-the-lizard-wizard.fandom.com/wiki/Han-Tyumi"], "subreddit": ["kgatlw"]}, "path": {"134-227": [[309, 16], [312, 16], [313, 15], [314, 15], [315, 14], [315, 13], [316, 13], [317, 12], [319, 10], [319, 9], [317, 7], [317, 6], [313, 2], [308, 2], [304, 6], [304, 7], [302, 9], [302, 10], [305, 13], [306, 13], [306, 14], [307, 15], [308, 15]], "228-258, T": [[301, 21], [300, 20], [301, 19], [302, 18], [303, 18], [304, 17], [306, 17], [308, 16], [308, 15], [307, 15], [306, 14], [306, 13], [305, 13], [302, 10], [302, 9], [303, 8], [304, 7], [304, 6], [305, 5], [308, 2], [313, 2], [317, 6], [317, 7], [318, 8], [319, 9], [319, 10], [316, 13], [315, 13], [315, 14], [314, 15], [313, 15], [313, 16], [315, 16], [316, 17], [320, 20]]}, "center": {"134-227": [311, 8], "228-258, T": [310, 8]}}, {"id": 6369, "name": "Boobies!", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Breast"]}, "path": {"17-34": [[118, 151], [118, 160], [150, 160], [150, 151]]}, "center": {"17-34": [134, 156]}}, -{"id": 6370, "name": "Philadelphia 76ers", "description": "The logo for the NBA Team, The Philadelphia 76ers.\n\nThe acronym to the right is in reference to center Joel Embiid, who won the 2023 MVP award.", "links": {"website": ["https://www.nba.com/sixers"]}, "path": {"163-258": [[-903, 367], [-903, 393], [-867, 393], [-867, 375], [-877, 375], [-877, 367]]}, "center": {"163-258": [-890, 380]}}, -{"id": 6371, "name": "Tsukasa Kudamaki", "description": "Tsukasa Kudamaki is a character from the 18th mainline Touhou game, Touhou Koryuudou ~ Unconnected Marketeers. She appears as a mid-stage boss in the 5th, 6th, and Extra stages.\n\nShe is known for two things- one, as a master manipulator, with the ability to \"seep into the cracks of one's soul\", and the other is...well, her sex appeal.", "links": {"website": ["https://en.touhouwiki.net/wiki/Tsukasa_Kudamaki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"250-258": [[1403, 301], [1412, 301], [1412, 311], [1403, 311]]}, "center": {"250-258": [1408, 306]}}, -{"id": 6372, "name": "Estasia", "description": "Mentioning of the Dutch Uptempo DJane Estasia", "links": {"website": ["https://www.instagram.com/estasiaofficial/"]}, "path": {"244-258": [[-367, -1000], [-341, -1000], [-341, -995], [-367, -995]]}, "center": {"244-258": [-354, -997]}}, -{"id": 6373, "name": "Curro", "description": "Curro was the official mascot of the Seville Expo '92.", "links": {"website": ["https://es.wikipedia.org/wiki/Curro_(mascota)"]}, "path": {"250-258": [[515, -55], [524, -50], [523, -57], [513, -66], [513, -71], [522, -72], [531, -62], [531, -59], [538, -53], [544, -59], [545, -54], [541, -47], [518, -47], [513, -53]]}, "center": {"250-258": [529, -53]}}, -{"id": 6374, "name": "New VC 3", "description": "The new VC3 is a reformed Community on the r/placeDE discord. Trying to distinguish themselves from the banned far-right extremist old VC3, they formed a new open community. Lead by Felinara they obtained a self sufficient community which still is active even after the place ended mostly playing Minecraft together on their own server.", "links": {"discord": ["vbqxXaxh9t"]}, "path": {"244-258": [[-801, -568], [-781, -568], [-780, -567], [-780, -561], [-781, -560], [-798, -560], [-799, -561], [-800, -562], [-801, -568], [-798, -565]]}, "center": {"244-258": [-790, -564]}}, -{"id": 6375, "name": "Pansexual Heart", "description": "A heart with the pansexual flag on it. Pansexuality is the attraction to people of all genders without noticing gender.", "links": {}, "path": {"250-258": [[-1064, -969], [-1067, -972], [-1066, -973], [-1065, -973], [-1064, -972], [-1063, -973], [-1062, -973], [-1061, -972]]}, "center": {"250-258": [-1064, -971]}}, -{"id": 6376, "name": "Mametchi", "description": "Mametchi is the mascot for the Tamagotchi brand of virtual pets.", "links": {"website": ["https://tamagotchi.fandom.com/wiki/Mametchi"], "subreddit": ["Tamagotchi"]}, "path": {"228-258": [[703, -957], [704, -957], [705, -958], [706, -958], [707, -957], [710, -960], [709, -961], [712, -964], [712, -967], [711, -968], [711, -970], [710, -971], [709, -972], [708, -971], [707, -970], [706, -969], [705, -969], [702, -972], [700, -970], [700, -968], [699, -967], [699, -964], [702, -961], [701, -960], [702, -959]]}, "center": {"228-258": [705, -964]}}, -{"id": 6377, "name": "Mini Flag of Chile", "description": "Chile is a country in South America.", "links": {}, "path": {"245-251": [[-1500, 22], [-1500, 28], [-1486, 28], [-1486, 22]]}, "center": {"245-251": [-1493, 25]}}, -{"id": 6378, "name": "Flag of Vatican City", "description": "The world's smallest country and center of the Catholic Church has surprisingly seemed to have snuck its way onto the final canvas. \n\nGood for them!", "links": {"website": ["https://www.vaticanstate.va"]}, "path": {"247-252": [[-251, 799], [-248, 799], [-248, 802], [-251, 802]]}, "center": {"247-252": [-249, 801]}}, +{"id": 6370, "name": "Philadelphia 76ers", "description": "The logo for the NBA Team, The Philadelphia 76ers.\n\nThe acronym to the right is in reference to center Joel Embiid, who won the 2023 MVP award.", "links": {"website": ["https://www.nba.com/sixers"]}, "path": {"163-258, T": [[-903, 367], [-903, 393], [-867, 393], [-867, 375], [-877, 375], [-877, 367]]}, "center": {"163-258, T": [-890, 380]}}, +{"id": 6371, "name": "Tsukasa Kudamaki", "description": "Tsukasa Kudamaki is a character from the 18th mainline Touhou game, Touhou Koryuudou ~ Unconnected Marketeers. She appears as a mid-stage boss in the 5th, 6th, and Extra stages.\n\nShe is known for two things- one, as a master manipulator, with the ability to \"seep into the cracks of one's soul\", and the other is...well, her sex appeal.", "links": {"website": ["https://en.touhouwiki.net/wiki/Tsukasa_Kudamaki"], "subreddit": ["touhou"], "discord": ["apl"]}, "path": {"250-258, T": [[1403, 301], [1412, 301], [1412, 311], [1403, 311]]}, "center": {"250-258, T": [1408, 306]}}, +{"id": 6372, "name": "Estasia", "description": "Mentioning of the Dutch Uptempo DJane Estasia", "links": {"website": ["https://www.instagram.com/estasiaofficial/"]}, "path": {"244-258, T": [[-367, -1000], [-341, -1000], [-341, -995], [-367, -995]]}, "center": {"244-258, T": [-354, -997]}}, +{"id": 6373, "name": "Curro", "description": "Curro was the official mascot of the Seville Expo '92.", "links": {"website": ["https://es.wikipedia.org/wiki/Curro_(mascota)"]}, "path": {"250-258, T": [[515, -55], [524, -50], [523, -57], [513, -66], [513, -71], [522, -72], [531, -62], [531, -59], [538, -53], [544, -59], [545, -54], [541, -47], [518, -47], [513, -53]]}, "center": {"250-258, T": [529, -53]}}, +{"id": 6374, "name": "New VC 3", "description": "The new VC3 is a reformed Community on the r/placeDE discord. Trying to distinguish themselves from the banned far-right extremist old VC3, they formed a new open community. Lead by Felinara they obtained a self sufficient community which still is active even after the place ended mostly playing Minecraft together on their own server.", "links": {"discord": ["vbqxXaxh9t"]}, "path": {"244-258, T": [[-801, -568], [-781, -568], [-780, -567], [-780, -561], [-781, -560], [-798, -560], [-799, -561], [-800, -562], [-801, -568], [-798, -565]]}, "center": {"244-258, T": [-790, -564]}}, +{"id": 6375, "name": "Pansexual Heart", "description": "A heart with the pansexual flag on it. Pansexuality is the attraction to people of all genders without noticing gender.", "links": {}, "path": {"250-258, T": [[-1064, -969], [-1067, -972], [-1066, -973], [-1065, -973], [-1064, -972], [-1063, -973], [-1062, -973], [-1061, -972]]}, "center": {"250-258, T": [-1064, -971]}}, +{"id": 6376, "name": "Mametchi", "description": "Mametchi is the mascot for the Tamagotchi brand of virtual pets.", "links": {"website": ["https://tamagotchi.fandom.com/wiki/Mametchi"], "subreddit": ["Tamagotchi"]}, "path": {"228-258, T": [[703, -957], [704, -957], [705, -958], [706, -958], [707, -957], [710, -960], [709, -961], [712, -964], [712, -967], [711, -968], [711, -970], [710, -971], [709, -972], [708, -971], [707, -970], [706, -969], [705, -969], [702, -972], [700, -970], [700, -968], [699, -967], [699, -964], [702, -961], [701, -960], [702, -959]]}, "center": {"228-258, T": [705, -964]}}, +{"id": 6377, "name": "Mini Flag of Chile", "description": "Chile is a country in South America.", "links": {}, "path": {"245-251, T": [[-1500, 22], [-1500, 28], [-1486, 28], [-1486, 22]]}, "center": {"245-251, T": [-1493, 25]}}, +{"id": 6378, "name": "Flag of Vatican City", "description": "The world's smallest country and center of the Catholic Church has surprisingly seemed to have snuck its way onto the final canvas. \n\nGood for them!", "links": {"website": ["https://www.vaticanstate.va"]}, "path": {"247-252, T": [[-251, 799], [-248, 799], [-248, 802], [-251, 802]]}, "center": {"247-252, T": [-249, 801]}}, {"id": 6379, "name": "Snoopy", "description": "Snoopy is a beagle character from the comic strip Peanuts.", "links": {"website": ["https://en.wikipedia.org/wiki/Snoopy"]}, "path": {"224-249": [[1280, -409], [1280, -411], [1281, -412], [1282, -413], [1284, -413], [1286, -415], [1285, -416], [1285, -417], [1286, -418], [1289, -421], [1293, -417], [1293, -416], [1292, -415], [1293, -414], [1294, -413], [1294, -412], [1295, -411], [1295, -407], [1294, -406], [1293, -405], [1292, -405], [1291, -406], [1289, -406], [1289, -402], [1290, -401], [1290, -400], [1289, -399], [1291, -397], [1290, -393], [1283, -393], [1283, -394], [1284, -395], [1285, -395], [1286, -396], [1285, -397], [1284, -398], [1283, -399], [1283, -401], [1284, -402], [1284, -403], [1285, -404], [1286, -405], [1286, -406], [1284, -406], [1284, -407], [1282, -407], [1282, -408]]}, "center": {"224-249": [1289, -411]}}, -{"id": 6380, "name": "Polysexual heart", "description": "A heart with the polysexual pride flag in it. Polysexual people are sexually attracted to multiple genders.", "links": {"website": ["https://www.lgbtqia.wiki/wiki/Polysexual"]}, "path": {"216-258": [[-1114, -974], [-1116, -972], [-1112, -968], [-1108, -972], [-1110, -974]]}, "center": {"216-258": [-1112, -972]}}, +{"id": 6380, "name": "Polysexual heart", "description": "A heart with the polysexual pride flag in it. Polysexual people are sexually attracted to multiple genders.", "links": {"website": ["https://www.lgbtqia.wiki/wiki/Polysexual"]}, "path": {"216-258, T": [[-1114, -974], [-1116, -972], [-1112, -968], [-1108, -972], [-1110, -974]]}, "center": {"216-258, T": [-1112, -972]}}, {"id": 6381, "name": "ConcernedApe", "description": "Eric Barone, also known by his alias ConcernedApe, is an American video game developer, designer, artist, composer, and musician. He is best known for independently creating the video game Stardew Valley.", "links": {"website": ["https://twitter.com/ConcernedApe"]}, "path": {"209-249": [[1286, 193], [1286, 223], [1327, 223], [1327, 193]]}, "center": {"209-249": [1307, 208]}}, -{"id": 6382, "name": "MilesDoodleArt", "description": "A object show YouTuber with more than 19k subs when r/place ended, this channel made OSC animations and frequent livestreams.\n\nCredit: ObjectPresents, EliGabRet (the leader of this project), MilesDoodleArt and a lot of people contributed.", "links": {"website": ["https://youtube.com/@MilesDoodlesArt"], "discord": ["doodleden"]}, "path": {"236-251": [[-1231, 45], [-1220, 45], [-1220, 52], [-1231, 52]]}, "center": {"236-251": [-1225, 49]}}, -{"id": 6383, "name": "Colombian Among us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao", "links": {}, "path": {"250-258": [[-939, 871], [-935, 871], [-934, 870], [-934, 862], [-940, 862], [-940, 870], [-940, 871], [-934, 871]]}, "center": {"250-258": [-937, 867]}}, -{"id": 6384, "name": "Arepa", "description": "A pixel drawing of the colombian food known as arepa.\nThe arepa is a flat treat made with flour gennerally eated with another thing like salchichon or some sauce", "links": {}, "path": {"250-258": [[-984, 910], [-981, 907], [-981, 902], [-985, 899], [-986, 898], [-992, 899], [-993, 900], [-995, 902], [-995, 907], [-992, 910], [-991, 911], [-985, 911], [-981, 908]]}, "center": {"250-258": [-988, 905]}}, +{"id": 6382, "name": "MilesDoodleArt", "description": "A object show YouTuber with more than 19k subs when r/place ended, this channel made OSC animations and frequent livestreams.\n\nCredit: ObjectPresents, EliGabRet (the leader of this project), MilesDoodleArt and a lot of people contributed.", "links": {"website": ["https://youtube.com/@MilesDoodlesArt"], "discord": ["doodleden"]}, "path": {"236-251, T": [[-1231, 45], [-1220, 45], [-1220, 52], [-1231, 52]]}, "center": {"236-251, T": [-1225, 49]}}, +{"id": 6383, "name": "Colombian Among us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao", "links": {}, "path": {"250-258, T": [[-939, 871], [-935, 871], [-934, 870], [-934, 862], [-940, 862], [-940, 870], [-940, 871], [-934, 871]]}, "center": {"250-258, T": [-937, 867]}}, +{"id": 6384, "name": "Arepa", "description": "A pixel drawing of the colombian food known as arepa.\nThe arepa is a flat treat made with flour gennerally eated with another thing like salchichon or some sauce", "links": {}, "path": {"250-258, T": [[-984, 910], [-981, 907], [-981, 902], [-985, 899], [-986, 898], [-992, 899], [-993, 900], [-995, 902], [-995, 907], [-992, 910], [-991, 911], [-985, 911], [-981, 908]]}, "center": {"250-258, T": [-988, 905]}}, {"id": 6385, "name": "Skymeny", "description": "This is the iconic mascot of the Youtuber and Streamer Skymeny.", "links": {"website": ["https://www.youtube.com/@skymeny"], "subreddit": ["skymeny"], "discord": ["Wdta5nq"]}, "path": {"11-21": [[104, 371], [104, 356], [108, 351], [116, 351], [118, 364], [119, 370], [112, 371]]}, "center": {"11-21": [111, 363]}}, -{"id": 6386, "name": "Inky from Pac-Man", "description": "made by two guys with \"Ghost\" in their nicknames. That´s the whole Story...", "links": {}, "path": {"225-258": [[1261, -3], [1261, -9], [1262, -10], [1267, -10], [1268, -9], [1268, -3], [1262, -3]]}, "center": {"225-258": [1265, -6]}}, -{"id": 6387, "name": "The Blue Derp", "description": "The Blue Derp is the mascot of the Twitch Channel Herr_Tripz. The Derp was, like most other emotes of the Channel, drawn in Gartic Phone by the community. 2023 was the first year the Derp visited rplace but he will surely return.", "links": {"website": ["https://www.twitch.tv/herr_tripz"], "subreddit": ["Herr_Tripz"], "discord": ["pRYH9GaueH"]}, "path": {"203-258": [[1413, 22], [1413, 17], [1408, 17], [1408, 12], [1421, 12], [1421, 17], [1420, 18], [1417, 18], [1417, 22]]}, "center": {"203-258": [1417, 15]}}, -{"id": 6388, "name": "Battle for Dream Island", "description": "Battle for Dream Island (BFDI) is a YouTube web series where animated anthropomorphic objects compete in a elimination competition to win the titular luxury island, Dream Island. The series was created by Michael Huang and Cary Huang.\n\nThis art features the character Needle.", "links": {"website": ["https://bfdi.tv"], "subreddit": ["BattleForDreamIsland"], "discord": ["yoylecake"]}, "path": {"147-258": [[-800, -206], [-786, -206], [-786, -218], [-796, -218], [-797, -216], [-798, -215], [-799, -214], [-799, -213], [-797, -211], [-798, -211], [-798, -210], [-799, -210], [-800, -210], [-800, -209], [-800, -208], [-800, -207]]}, "center": {"147-258": [-792, -212]}}, -{"id": 6389, "name": "SAMURAI from Cyberpunk 2077", "description": "SAMURAI is a legendary chromatic rock band featured throughout the Cyberpunk series, for whom music was a way to rebel against corporations. They are featured in Cyberpunk 2077, where they are musically portrayed by the real-life punk band Refused. \n\nDespite the band being named Samurai, the logo is actually an \"Oni\" which is a kind of yōkai that appears in Japanese folklore. The Oni mask that would cover someone's face fully was not as popular with samurais as the menpo which covered the lower half of the face.", "links": {"website": ["https://www.facebook.com/groups/cyberpnkawka/"]}, "path": {"242-258": [[307, -865], [309, -865], [331, -865], [331, -837], [306, -837]]}, "center": {"242-258": [319, -851]}}, +{"id": 6386, "name": "Inky from Pac-Man", "description": "made by two guys with \"Ghost\" in their nicknames. That´s the whole Story...", "links": {}, "path": {"225-258, T": [[1261, -3], [1261, -9], [1262, -10], [1267, -10], [1268, -9], [1268, -3], [1262, -3]]}, "center": {"225-258, T": [1265, -6]}}, +{"id": 6387, "name": "The Blue Derp", "description": "The Blue Derp is the mascot of the Twitch Channel Herr_Tripz. The Derp was, like most other emotes of the Channel, drawn in Gartic Phone by the community. 2023 was the first year the Derp visited rplace but he will surely return.", "links": {"website": ["https://www.twitch.tv/herr_tripz"], "subreddit": ["Herr_Tripz"], "discord": ["pRYH9GaueH"]}, "path": {"203-258, T": [[1413, 22], [1413, 17], [1408, 17], [1408, 12], [1421, 12], [1421, 17], [1420, 18], [1417, 18], [1417, 22]]}, "center": {"203-258, T": [1417, 15]}}, +{"id": 6388, "name": "Battle for Dream Island", "description": "Battle for Dream Island (BFDI) is a YouTube web series where animated anthropomorphic objects compete in a elimination competition to win the titular luxury island, Dream Island. The series was created by Michael Huang and Cary Huang.\n\nThis art features the character Needle.", "links": {"website": ["https://bfdi.tv"], "subreddit": ["BattleForDreamIsland"], "discord": ["yoylecake"]}, "path": {"147-258, T": [[-800, -206], [-786, -206], [-786, -218], [-796, -218], [-797, -216], [-798, -215], [-799, -214], [-799, -213], [-797, -211], [-798, -211], [-798, -210], [-799, -210], [-800, -210], [-800, -209], [-800, -208], [-800, -207]]}, "center": {"147-258, T": [-792, -212]}}, +{"id": 6389, "name": "SAMURAI from Cyberpunk 2077", "description": "SAMURAI is a legendary chromatic rock band featured throughout the Cyberpunk series, for whom music was a way to rebel against corporations. They are featured in Cyberpunk 2077, where they are musically portrayed by the real-life punk band Refused. \n\nDespite the band being named Samurai, the logo is actually an \"Oni\" which is a kind of yōkai that appears in Japanese folklore. The Oni mask that would cover someone's face fully was not as popular with samurais as the menpo which covered the lower half of the face.", "links": {"website": ["https://www.facebook.com/groups/cyberpnkawka/"]}, "path": {"242-258, T": [[307, -865], [309, -865], [331, -865], [331, -837], [306, -837]]}, "center": {"242-258, T": [319, -851]}}, {"id": 6390, "name": "Kikuri Hiroi - Original Location", "description": "This is the original location for the pixel art of Kikuri Hiroi from Bocchi The Rock, it was later covered up by O Carente and the Moroccan flag along with several nearby artworks.\n\nThis artwork was later updated and rebuilt at 585, 886.", "links": {"subreddit": ["bocchitherock", "kessokuband"], "discord": ["bocchi", "kessokuband"]}, "path": {"155-158": [[672, 751], [672, 720], [703, 720], [703, 751]]}, "center": {"155-158": [688, 736]}}, -{"id": 6391, "name": "T logo (the 3th one)", "description": "This logo was originally made by u/Tuanviet1243. It's a combination of black, white and the chaos or r/place event. The idea is inspired by the art of Titanfall. This logo was built and defended by his close friend u/Kienlabadao (locate under the logo)", "links": {"website": ["https://www.reddit.com/user/Tuanviet1243", "https://twitter.com/tuanviet1243"]}, "path": {"250-258": [[-1205, 590], [-1199, 590], [-1199, 597], [-1205, 597]]}, "center": {"250-258": [-1202, 594]}}, -{"id": 6392, "name": "T logo (the 2nd one)", "description": "This logo was originally made by u/Tuanviet1243. It's a combination of black, white and the chaos or r/place event. The idea is inspired by the art of Titanfall. This logo was built and defended by himself", "links": {"website": ["https://www.reddit.com/user/Tuanviet1243", "https://twitter.com/tuanviet1243"]}, "path": {"239-252": [[-753, -278], [-747, -278], [-747, -271], [-753, -271], [-753, -277]]}, "center": {"239-252": [-750, -274]}}, -{"id": 6393, "name": "Nesting cockatiel", "description": "Cockatiels are small, yellow and grey parrots native to Australia", "links": {"subreddit": ["AustralianBirds"], "discord": ["xAH3XerRYY"]}, "path": {"250-258": [[1381, -116], [1384, -116], [1384, -117], [1385, -117], [1385, -120], [1384, -120], [1384, -122], [1383, -122], [1382, -123], [1381, -122], [1380, -121], [1379, -120], [1380, -119], [1380, -118], [1380, -117], [1380, -116]]}, "center": {"250-258": [1382, -119]}}, -{"id": 6394, "name": "obcave", "description": "Logo for obcave, a private discord server and website for various projects.", "links": {"website": ["https://www.obcave.com/"]}, "path": {"250-258": [[-879, -285], [-853, -285], [-853, -281], [-879, -281]]}, "center": {"250-258": [-866, -283]}}, -{"id": 6395, "name": "E.T.", "description": "E.T. (or E.T. the Extra-Terrestrial)is a 1982 American science fiction film produced and directed by Steven Spielberg", "links": {}, "path": {"250-258": [[292, 463], [300, 463], [300, 469], [292, 469]]}, "center": {"250-258": [296, 466]}}, -{"id": 6396, "name": "T logo (the 1st one)", "description": "This logo was originally made by u/Tuanviet1243. It's a combination of black, white and the chaos or r/place event. The idea is inspired by the art of Titanfall. This logo was built and defended by himself", "links": {"website": ["https://www.reddit.com/user/Tuanviet1243", "https://twitter.com/tuanviet1243"]}, "path": {"212-258": [[-1362, 374], [-1361, 373], [-1357, 373], [-1356, 374], [-1355, 375], [-1355, 379], [-1356, 380], [-1357, 381], [-1361, 381], [-1362, 380], [-1363, 379], [-1363, 375]]}, "center": {"212-258": [-1359, 377]}}, -{"id": 6397, "name": "Munna", "description": "Munna (Pokédex #517) is a Psychic-type Pokémon introduced in Generation V.", "links": {}, "path": {"250-258": [[-1413, 316], [-1412, 315], [-1411, 315], [-1410, 316], [-1409, 315], [-1408, 314], [-1408, 313], [-1407, 312], [-1407, 309], [-1408, 309], [-1409, 308], [-1410, 307], [-1411, 306], [-1413, 306], [-1417, 310], [-1417, 312], [-1413, 316], [-1414, 315]]}, "center": {"250-258": [-1412, 311]}}, -{"id": 6398, "name": "Map of Australia", "description": "A geographical map of the Island of Australia", "links": {"subreddit": ["Australia"], "discord": ["zstwKRPWmU"]}, "path": {"181-258": [[-827, 51], [-827, 53], [-826, 53], [-825, 54], [-824, 53], [-823, 52], [-823, 51], [-823, 47], [-822, 46], [-820, 43], [-819, 42], [-819, 37], [-820, 36], [-820, 35], [-821, 34], [-822, 33], [-822, 32], [-823, 31], [-824, 30], [-825, 30], [-826, 29], [-826, 28], [-826, 27], [-826, 26], [-826, 25], [-826, 24], [-827, 24], [-827, 23], [-828, 22], [-829, 23], [-830, 24], [-830, 25], [-830, 26], [-831, 27], [-833, 27], [-834, 26], [-835, 25], [-835, 24], [-835, 23], [-839, 23], [-839, 24], [-840, 25], [-841, 26], [-842, 25], [-843, 25], [-844, 26], [-845, 27], [-846, 28], [-847, 28], [-848, 29], [-849, 30], [-849, 31], [-850, 31], [-852, 31], [-853, 31], [-854, 32], [-854, 33], [-854, 37], [-853, 38], [-853, 41], [-852, 42], [-852, 44], [-851, 46], [-850, 47], [-849, 46], [-848, 45], [-844, 45], [-843, 45], [-842, 44], [-842, 43], [-840, 43], [-839, 42], [-837, 42], [-834, 42], [-833, 42], [-833, 44], [-832, 44], [-831, 45], [-830, 47], [-829, 46], [-828, 47], [-828, 49], [-827, 50]]}, "center": {"181-258": [-838, 34]}}, -{"id": 6399, "name": "Budgies", "description": "A flock of migratory budgerigars", "links": {"subreddit": ["AustralianBirds"]}, "path": {"250-258": [[1353, -118], [1354, -118], [1355, -118], [1356, -118], [1359, -118], [1360, -118], [1361, -118], [1362, -118], [1363, -118], [1363, -116], [1361, -116], [1361, -113], [1359, -113], [1358, -113], [1358, -115], [1355, -115], [1354, -115], [1354, -117], [1353, -117]]}, "center": {"250-258": [1359, -116]}}, -{"id": 6400, "name": "Plankton", "description": "Plankton is the main antagonist in the tv show SpongeBob SquarePants, He is notable for trying to steal the secret formula.", "links": {"website": ["https://spongebob.fandom.com/wiki/Sheldon_J._Plankton?so=search"]}, "path": {"250-258": [[748, 952], [748, 949], [748, 940], [759, 941], [758, 956], [748, 956]]}, "center": {"250-258": [753, 948]}}, +{"id": 6391, "name": "T logo (the 3th one)", "description": "This logo was originally made by u/Tuanviet1243. It's a combination of black, white and the chaos or r/place event. The idea is inspired by the art of Titanfall. This logo was built and defended by his close friend u/Kienlabadao (locate under the logo)", "links": {"website": ["https://www.reddit.com/user/Tuanviet1243", "https://twitter.com/tuanviet1243"]}, "path": {"250-258, T": [[-1205, 590], [-1199, 590], [-1199, 597], [-1205, 597]]}, "center": {"250-258, T": [-1202, 594]}}, +{"id": 6392, "name": "T logo (the 2nd one)", "description": "This logo was originally made by u/Tuanviet1243. It's a combination of black, white and the chaos or r/place event. The idea is inspired by the art of Titanfall. This logo was built and defended by himself", "links": {"website": ["https://www.reddit.com/user/Tuanviet1243", "https://twitter.com/tuanviet1243"]}, "path": {"239-252, T": [[-753, -278], [-747, -278], [-747, -271], [-753, -271], [-753, -277]]}, "center": {"239-252, T": [-750, -274]}}, +{"id": 6393, "name": "Nesting cockatiel", "description": "Cockatiels are small, yellow and grey parrots native to Australia", "links": {"subreddit": ["AustralianBirds"], "discord": ["xAH3XerRYY"]}, "path": {"250-258, T": [[1381, -116], [1384, -116], [1384, -117], [1385, -117], [1385, -120], [1384, -120], [1384, -122], [1383, -122], [1382, -123], [1381, -122], [1380, -121], [1379, -120], [1380, -119], [1380, -118], [1380, -117], [1380, -116]]}, "center": {"250-258, T": [1382, -119]}}, +{"id": 6394, "name": "obcave", "description": "Logo for obcave, a private discord server and website for various projects.", "links": {"website": ["https://www.obcave.com/"]}, "path": {"250-258, T": [[-879, -285], [-853, -285], [-853, -281], [-879, -281]]}, "center": {"250-258, T": [-866, -283]}}, +{"id": 6395, "name": "E.T.", "description": "E.T. (or E.T. the Extra-Terrestrial)is a 1982 American science fiction film produced and directed by Steven Spielberg", "links": {}, "path": {"250-258, T": [[292, 463], [300, 463], [300, 469], [292, 469]]}, "center": {"250-258, T": [296, 466]}}, +{"id": 6396, "name": "T logo (the 1st one)", "description": "This logo was originally made by u/Tuanviet1243. It's a combination of black, white and the chaos or r/place event. The idea is inspired by the art of Titanfall. This logo was built and defended by himself", "links": {"website": ["https://www.reddit.com/user/Tuanviet1243", "https://twitter.com/tuanviet1243"]}, "path": {"212-258, T": [[-1362, 374], [-1361, 373], [-1357, 373], [-1356, 374], [-1355, 375], [-1355, 379], [-1356, 380], [-1357, 381], [-1361, 381], [-1362, 380], [-1363, 379], [-1363, 375]]}, "center": {"212-258, T": [-1359, 377]}}, +{"id": 6397, "name": "Munna", "description": "Munna (Pokédex #517) is a Psychic-type Pokémon introduced in Generation V.", "links": {}, "path": {"250-258, T": [[-1413, 316], [-1412, 315], [-1411, 315], [-1410, 316], [-1409, 315], [-1408, 314], [-1408, 313], [-1407, 312], [-1407, 309], [-1408, 309], [-1409, 308], [-1410, 307], [-1411, 306], [-1413, 306], [-1417, 310], [-1417, 312], [-1413, 316], [-1414, 315]]}, "center": {"250-258, T": [-1412, 311]}}, +{"id": 6398, "name": "Map of Australia", "description": "A geographical map of the Island of Australia", "links": {"subreddit": ["Australia"], "discord": ["zstwKRPWmU"]}, "path": {"181-258, T": [[-827, 51], [-827, 53], [-826, 53], [-825, 54], [-824, 53], [-823, 52], [-823, 51], [-823, 47], [-822, 46], [-820, 43], [-819, 42], [-819, 37], [-820, 36], [-820, 35], [-821, 34], [-822, 33], [-822, 32], [-823, 31], [-824, 30], [-825, 30], [-826, 29], [-826, 28], [-826, 27], [-826, 26], [-826, 25], [-826, 24], [-827, 24], [-827, 23], [-828, 22], [-829, 23], [-830, 24], [-830, 25], [-830, 26], [-831, 27], [-833, 27], [-834, 26], [-835, 25], [-835, 24], [-835, 23], [-839, 23], [-839, 24], [-840, 25], [-841, 26], [-842, 25], [-843, 25], [-844, 26], [-845, 27], [-846, 28], [-847, 28], [-848, 29], [-849, 30], [-849, 31], [-850, 31], [-852, 31], [-853, 31], [-854, 32], [-854, 33], [-854, 37], [-853, 38], [-853, 41], [-852, 42], [-852, 44], [-851, 46], [-850, 47], [-849, 46], [-848, 45], [-844, 45], [-843, 45], [-842, 44], [-842, 43], [-840, 43], [-839, 42], [-837, 42], [-834, 42], [-833, 42], [-833, 44], [-832, 44], [-831, 45], [-830, 47], [-829, 46], [-828, 47], [-828, 49], [-827, 50]]}, "center": {"181-258, T": [-838, 34]}}, +{"id": 6399, "name": "Budgies", "description": "A flock of migratory budgerigars", "links": {"subreddit": ["AustralianBirds"]}, "path": {"250-258, T": [[1353, -118], [1354, -118], [1355, -118], [1356, -118], [1359, -118], [1360, -118], [1361, -118], [1362, -118], [1363, -118], [1363, -116], [1361, -116], [1361, -113], [1359, -113], [1358, -113], [1358, -115], [1355, -115], [1354, -115], [1354, -117], [1353, -117]]}, "center": {"250-258, T": [1359, -116]}}, +{"id": 6400, "name": "Plankton", "description": "Plankton is the main antagonist in the tv show SpongeBob SquarePants, He is notable for trying to steal the secret formula.", "links": {"website": ["https://spongebob.fandom.com/wiki/Sheldon_J._Plankton?so=search"]}, "path": {"250-258, T": [[748, 952], [748, 949], [748, 940], [759, 941], [758, 956], [748, 956]]}, "center": {"250-258, T": [753, 948]}}, {"id": 6401, "name": "Broers and Papuritos", "description": "This is a collaboration between Papuritos (Arigameplays community) and Broers (Juansguarnizo community) this is a pixelart of the minecraft skins of the married couple", "links": {"website": ["https://www.twitch.tv/juansguarnizo", "https://www.twitch.tv/arigameplays"]}, "path": {"162-187": [[-644, -521], [-644, -520], [-644, -505], [-609, -505], [-609, -521]]}, "center": {"162-187": [-626, -513]}}, {"id": 6402, "name": "Mario", "description": "Mario is an Italian plumber and the titular character in Nintendo's Mario franchise.", "links": {"website": ["https://en.wikipedia.org/wiki/Mario", "https://www.mariowiki.com/Mario"]}, "path": {"198-214": [[-1280, -928], [-1285, -924], [-1285, -918], [-1286, -917], [-1286, -910], [-1274, -910], [-1273, -923], [-1278, -928]]}, "center": {"198-214": [-1279, -920]}}, {"id": 6403, "name": "RocioDTA - Logo de Twitch", "description": "Rociodta is a Mexican social media star who has gained popularity through her Twitch channel that has earned more than 890k followers. Born on June 21, 2000, Rociodta hails from Sinaloa, Culiacan, Mexico.", "links": {"website": ["https://www.twitch.tv/rociodta", "https://twitter.com/rociodta", "https://www.instagram.com/rociodta/"]}, "path": {"214-230": [[1258, 501], [1258, 502], [1258, 479], [1284, 479], [1284, 502], [1258, 502], [1258, 479], [1284, 479], [1284, 502]]}, "center": {"214-230": [1260, 501]}}, {"id": 6404, "name": "Minar-e-Pakistan", "description": "Minar-e-Pakistan, meaning \"Tower of Pakistan,\" is an iconic monument located in Iqbal Park, Lahore, Pakistan. This towering structure holds great historical significance as it commemorates the Lahore Resolution of 1940, a pivotal moment in the country's quest for independence. Designed by architect Nasreddin Murat-Khan, the minaret stands as a symbol of unity, determination, and the collective aspirations of the Pakistani people. Its unique blend of Islamic and Mughal architectural influences reflects the nation's rich cultural heritage. Tourists and locals alike are drawn to this impressive monument, which not only showcases Pakistan's architectural prowess but also serves as a poignant reminder of the sacrifices made for freedom and the birth of the nation.", "links": {"subreddit": ["pakistan"]}, "path": {"248-249": [[-957, 619], [-935, 619], [-935, 640], [-957, 640]]}, "center": {"248-249": [-946, 630]}}, -{"id": 6405, "name": "Flag of Romania", "description": "A mini flag of Romania", "links": {}, "path": {"250-258": [[-1408, 472], [-1398, 472], [-1398, 506], [-1408, 506]]}, "center": {"250-258": [-1403, 489]}}, -{"id": 6406, "name": "Mini Madvillany", "description": "Madvillainy is the only studio album by American hip hop duo Madvillain, consisting of rapper MF DOOM and producer Madlib.\n\nReleased on March 23, 2004, it is considered one of the greatest hip-hop albums of all time.\n\nThis one is quite smol.", "links": {"website": ["https://youtu.be/WffJfQPp7kE"], "subreddit": ["mfdoom", "madlib"]}, "path": {"161-258": [[-220, -758], [-220, -745], [-207, -745], [-207, -758]]}, "center": {"161-258": [-213, -751]}}, +{"id": 6405, "name": "Flag of Romania", "description": "A mini flag of Romania", "links": {}, "path": {"250-258, T": [[-1408, 472], [-1398, 472], [-1398, 506], [-1408, 506]]}, "center": {"250-258, T": [-1403, 489]}}, +{"id": 6406, "name": "Mini Madvillany", "description": "Madvillainy is the only studio album by American hip hop duo Madvillain, consisting of rapper MF DOOM and producer Madlib.\n\nReleased on March 23, 2004, it is considered one of the greatest hip-hop albums of all time.\n\nThis one is quite smol.", "links": {"website": ["https://youtu.be/WffJfQPp7kE"], "subreddit": ["mfdoom", "madlib"]}, "path": {"161-258, T": [[-220, -758], [-220, -745], [-207, -745], [-207, -758]]}, "center": {"161-258, T": [-213, -751]}}, {"id": 6407, "name": "Jamson", "description": "It's a 9x9 logo (an image from Google) that the user Jamson used as a profile picture. It was created by two individuals who hung out on the German Discord server FSRP.", "links": {"discord": ["Zu6BZzBD"]}, "path": {"48-55": [[476, -308], [476, -317], [467, -317], [467, -308]]}, "center": {"48-55": [472, -312]}}, -{"id": 6408, "name": "Kirby", "description": "Poyo!", "links": {}, "path": {"243-258": [[-226, 935], [-226, 945], [-216, 945], [-216, 935]]}, "center": {"243-258": [-221, 940]}}, -{"id": 6409, "name": "Vanis.io logo", "description": "Vanis.io is a web-based action MMO (massively multiplayer online) game where you divide into pieces and eat other players.", "links": {"website": ["https://vanis.io/"], "subreddit": ["Vanis"], "discord": ["vanis"]}, "path": {"250-258": [[500, 608], [500, 589], [520, 589], [520, 601], [526, 601], [526, 608]]}, "center": {"250-258": [510, 599]}}, +{"id": 6408, "name": "Kirby", "description": "Poyo!", "links": {}, "path": {"243-258, T": [[-226, 935], [-226, 945], [-216, 945], [-216, 935]]}, "center": {"243-258, T": [-221, 940]}}, +{"id": 6409, "name": "Vanis.io logo", "description": "Vanis.io is a web-based action MMO (massively multiplayer online) game where you divide into pieces and eat other players.", "links": {"website": ["https://vanis.io/"], "subreddit": ["Vanis"], "discord": ["vanis"]}, "path": {"250-258, T": [[500, 608], [500, 589], [520, 589], [520, 601], [526, 601], [526, 608]]}, "center": {"250-258, T": [510, 599]}}, {"id": 6410, "name": "Regular Lands e Gilinho", "description": "Um servidor de Minecraft criado por três portugueses com objetivo de recriar uma cidade medieval e a cara de um pato verde de borracha que tiveram numa maquina de apanha peluches chamado Gilinho", "links": {}, "path": {"164": [[368, 966], [380, 966], [380, 970], [368, 970]]}, "center": {"164": [374, 968]}}, {"id": 6412, "name": "LISA: The Painful Logo", "description": "This is the logo of a post-apocalyptic RPG indie game, LISA: The Painful, the second game in the LISA series that was released on December 15, 2014.", "links": {"website": ["https://en.wikipedia.org/wiki/Lisa:_The_Painful", "https://www.lisatherpg.com/"], "subreddit": ["lisathepainfulrpg"]}, "path": {"253": [[-215, -254], [-198, -254], [-198, -249], [-215, -249]]}, "center": {"253": [-206, -251]}}, -{"id": 6413, "name": "Persephone", "description": "Persephone is a fairy queen who helps the Skylanders by providing them with upgrades in all six entries in the series, however, she won't provide upgrades and she won't appear in the 3DS version of Spyro's Adventure, Giants, Trap Team, and its spinoff counterpart of SuperChargers, SuperChargers Racing. However, she still appears in the 3DS version of Swap Force.\n\nThis pixel art was created by the members of the r/skylanders as it was requested by one member of the aforementioned subreddit.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Spyro%27s_Adventure", "https://rb.gy/2hu1q"], "subreddit": ["skylanders"]}, "path": {"250-258": [[436, -809], [436, -810], [439, -810], [439, -808], [441, -808], [441, -807], [440, -806], [440, -805], [439, -804], [439, -803], [439, -802], [438, -801], [437, -802], [436, -803], [436, -804], [435, -805], [435, -806], [434, -807], [434, -808], [435, -808], [436, -808], [436, -809], [436, -810]]}, "center": {"250-258": [438, -806]}}, -{"id": 6414, "name": "Doctor Who Tardis", "description": "Tardis from Doctor Who.\nThis tardis Is next to the van gogh painting since we thought it would make sense to be next to starry night because in Doctor Who there's an episode about van gogh.\nwe agreed to moving this one to the left but it seems that this wasn't destroyed so we ended up with 2", "links": {"website": ["https://tardis.fandom.com/wiki/The_Doctor%27s_TARDIS"], "subreddit": ["doctorwho", "DoctorWhumour"], "discord": ["3P2kPYzkNs"]}, "path": {"250-258": [[-856, -495], [-848, -495], [-848, -481], [-856, -481]]}, "center": {"250-258": [-852, -488]}}, -{"id": 6415, "name": "Dalek", "description": "Dalek Is an alien from the television series Doctor Who, This Dalek was made by the Doctor Who group below jetlag and we allied with earthbound by the dalek", "links": {"subreddit": ["DoctorWhumour"], "discord": ["ZWYTA6TEUs"]}, "path": {"250-258": [[252, -193], [259, -177], [259, -192], [259, -193], [252, -192], [252, -177], [259, -177]]}, "center": {"250-258": [255, -180]}}, -{"id": 6416, "name": "Chomusuke", "description": "A black cat with a red cross-shaped marking on her forehead and bat like wings. \nShe is the familiar of Megumin from Konosuba.", "links": {"website": ["https://konosuba.fandom.com/wiki/Chomusuke"], "subreddit": ["pmegu", "megumin", "konosuba"], "discord": ["konosuba"]}, "path": {"139-258": [[299, -869], [299, -871], [300, -872], [300, -873], [301, -872], [302, -872], [303, -873], [303, -872], [304, -871], [304, -869], [305, -868], [305, -867], [304, -866], [303, -865], [302, -866], [301, -866], [300, -865], [300, -866], [299, -867], [300, -868]]}, "center": {"139-258": [302, -869]}}, -{"id": 6417, "name": "The 4th Doctor scarf next to the tardis", "description": "The iconic 4th Doctor's scarf from Doctor Who next to The Doctor's iconic T.A.R.D.I.S.\nWe allied with sleeptoken above us and I think we had a peace agreement with the flag below us to not attack eachother, at least in some form", "links": {"subreddit": ["DoctorWhumour"], "discord": ["ZWYTA6TEUs"]}, "path": {"250-258": [[-502, 329], [-504, 351], [-502, 351], [-504, 330], [-504, 329], [-502, 329], [-502, 351], [-504, 351], [-504, 337], [-504, 332], [-505, 336], [-505, 333], [-505, 341], [-505, 348], [-505, 349], [-505, 333]]}, "center": {"250-258": [-503, 340]}}, -{"id": 6417, "name": "Djamaâ El-Djazaïr", "description": "Djamaa el Djazaïr (Arabic: جامع الجزائر), also known as the Great Mosque of Algiers (French: Grande mosquée d'Alger), is a large mosque located in Algiers, Algeria. It houses the world's tallest minaret and is the third-largest mosque in the world after the Great Mosque of Mecca and Al-Masjid an-Nabawi of Medina in Saudi Arabia", "links": {"website": ["https://fr.wikipedia.org/wiki/Djama%C3%A2_El-Djaza%C3%AFr"], "subreddit": ["algeria"], "discord": ["r-algeria"]}, "path": {"249-258": [[-707, 338], [-710, 339], [-710, 368], [-714, 363], [-712, 360], [-714, 359], [-715, 360], [-717, 360], [-717, 357], [-715, 357], [-715, 359], [-713, 359], [-713, 355], [-714, 355], [-718, 354], [-720, 356], [-721, 357], [-721, 360], [-719, 362], [-726, 369], [-726, 371], [-707, 371], [-707, 369], [-707, 338], [-710, 338]]}, "center": {"249-258": [-717, 367]}}, +{"id": 6413, "name": "Persephone", "description": "Persephone is a fairy queen who helps the Skylanders by providing them with upgrades in all six entries in the series, however, she won't provide upgrades and she won't appear in the 3DS version of Spyro's Adventure, Giants, Trap Team, and its spinoff counterpart of SuperChargers, SuperChargers Racing. However, she still appears in the 3DS version of Swap Force.\n\nThis pixel art was created by the members of the r/skylanders as it was requested by one member of the aforementioned subreddit.", "links": {"website": ["https://en.wikipedia.org/wiki/Skylanders:_Spyro%27s_Adventure", "https://rb.gy/2hu1q"], "subreddit": ["skylanders"]}, "path": {"250-258, T": [[436, -809], [436, -810], [439, -810], [439, -808], [441, -808], [441, -807], [440, -806], [440, -805], [439, -804], [439, -803], [439, -802], [438, -801], [437, -802], [436, -803], [436, -804], [435, -805], [435, -806], [434, -807], [434, -808], [435, -808], [436, -808], [436, -809], [436, -810]]}, "center": {"250-258, T": [438, -806]}}, +{"id": 6414, "name": "Doctor Who Tardis", "description": "Tardis from Doctor Who.\nThis tardis Is next to the van gogh painting since we thought it would make sense to be next to starry night because in Doctor Who there's an episode about van gogh.\nwe agreed to moving this one to the left but it seems that this wasn't destroyed so we ended up with 2", "links": {"website": ["https://tardis.fandom.com/wiki/The_Doctor%27s_TARDIS"], "subreddit": ["doctorwho", "DoctorWhumour"], "discord": ["3P2kPYzkNs"]}, "path": {"250-258, T": [[-856, -495], [-848, -495], [-848, -481], [-856, -481]]}, "center": {"250-258, T": [-852, -488]}}, +{"id": 6415, "name": "Dalek", "description": "Dalek Is an alien from the television series Doctor Who, This Dalek was made by the Doctor Who group below jetlag and we allied with earthbound by the dalek", "links": {"subreddit": ["DoctorWhumour"], "discord": ["ZWYTA6TEUs"]}, "path": {"250-258, T": [[252, -193], [259, -177], [259, -192], [259, -193], [252, -192], [252, -177], [259, -177]]}, "center": {"250-258, T": [255, -180]}}, +{"id": 6416, "name": "Chomusuke", "description": "A black cat with a red cross-shaped marking on her forehead and bat like wings. \nShe is the familiar of Megumin from Konosuba.", "links": {"website": ["https://konosuba.fandom.com/wiki/Chomusuke"], "subreddit": ["pmegu", "megumin", "konosuba"], "discord": ["konosuba"]}, "path": {"139-258, T": [[299, -869], [299, -871], [300, -872], [300, -873], [301, -872], [302, -872], [303, -873], [303, -872], [304, -871], [304, -869], [305, -868], [305, -867], [304, -866], [303, -865], [302, -866], [301, -866], [300, -865], [300, -866], [299, -867], [300, -868]]}, "center": {"139-258, T": [302, -869]}}, +{"id": 6417, "name": "The 4th Doctor scarf next to the tardis", "description": "The iconic 4th Doctor's scarf from Doctor Who next to The Doctor's iconic T.A.R.D.I.S.\nWe allied with sleeptoken above us and I think we had a peace agreement with the flag below us to not attack eachother, at least in some form", "links": {"subreddit": ["DoctorWhumour"], "discord": ["ZWYTA6TEUs"]}, "path": {"250-258, T": [[-502, 329], [-504, 351], [-502, 351], [-504, 330], [-504, 329], [-502, 329], [-502, 351], [-504, 351], [-504, 337], [-504, 332], [-505, 336], [-505, 333], [-505, 341], [-505, 348], [-505, 349], [-505, 333]]}, "center": {"250-258, T": [-503, 340]}}, +{"id": 6417, "name": "Djamaâ El-Djazaïr", "description": "Djamaa el Djazaïr (Arabic: جامع الجزائر), also known as the Great Mosque of Algiers (French: Grande mosquée d'Alger), is a large mosque located in Algiers, Algeria. It houses the world's tallest minaret and is the third-largest mosque in the world after the Great Mosque of Mecca and Al-Masjid an-Nabawi of Medina in Saudi Arabia", "links": {"website": ["https://fr.wikipedia.org/wiki/Djama%C3%A2_El-Djaza%C3%AFr"], "subreddit": ["algeria"], "discord": ["r-algeria"]}, "path": {"249-258, T": [[-707, 338], [-710, 339], [-710, 368], [-714, 363], [-712, 360], [-714, 359], [-715, 360], [-717, 360], [-717, 357], [-715, 357], [-715, 359], [-713, 359], [-713, 355], [-714, 355], [-718, 354], [-720, 356], [-721, 357], [-721, 360], [-719, 362], [-726, 369], [-726, 371], [-707, 371], [-707, 369], [-707, 338], [-710, 338]]}, "center": {"249-258, T": [-717, 367]}}, {"id": 6418, "name": "Elmo", "description": "Elmo is one of the Muppet characters in the children's TV show Sesame Street.", "links": {"website": ["https://en.wikipedia.org/wiki/Elmo"]}, "path": {"174-182": [[-1260, -920], [-1263, -915], [-1263, -913], [-1260, -910], [-1255, -910], [-1252, -913], [-1252, -917], [-1254, -920]]}, "center": {"174-182": [-1257, -915]}}, {"id": 6419, "name": "Uruguay heart", "description": "A heart depicting the flag of Uruguay, a country in the south part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Flag_of_Uruguay"], "subreddit": ["uruguay"]}, "path": {"214-225": [[-1219, -981], [-1221, -979], [-1217, -975], [-1213, -979], [-1215, -981]]}, "center": {"214-225": [-1217, -979]}}, {"id": 6420, "name": "Canada heart", "description": "A heart depicting the flag of Canada, a country in North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Canada", "https://en.wikipedia.org/wiki/Flag_of_Canada"], "subreddit": ["placecanada", "canada"]}, "path": {"211-224": [[-1211, -981], [-1213, -979], [-1209, -975], [-1205, -979], [-1207, -981]]}, "center": {"211-224": [-1209, -979]}}, @@ -6196,56 +6196,56 @@ {"id": 6426, "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"]}, "path": {"203-210": [[-1249, -1000], [-1249, -997], [-1250, -997], [-1250, -993], [-1235, -993], [-1235, -1000]]}, "center": {"203-210": [-1242, -996]}}, {"id": 6427, "name": "Pepe the Frog", "description": "Pepe the Frog is a meme featuring an anthropomorphic frog named Pepe. It is often used for reaction images, with Pepe displaying various emotions.", "links": {"website": ["https://knowyourmeme.com/memes/pepe-the-frog", "https://en.wikipedia.org/wiki/Pepe_the_Frog"]}, "path": {"175-180": [[-1211, -952], [-1215, -947], [-1215, -944], [-1205, -944], [-1205, -946], [-1203, -949], [-1203, -950], [-1205, -952]]}, "center": {"175-180": [-1209, -948]}}, {"id": 6428, "name": "Flag of Chile", "description": "Chile is a country in western South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Flag_of_Chile"], "subreddit": ["chile"]}, "path": {"173-182": [[-1242, -916], [-1242, -910], [-1232, -910], [-1232, -916]]}, "center": {"173-182": [-1237, -913]}}, -{"id": 6429, "name": "Flag of French Guiana (not official)", "description": "French Guiana is a oversea region owned by France located in South America\n\nthis flag was shortly on the rocket because the place where french launch rocket is in French Guiana", "links": {"website": ["https://en.wikipedia.org/wiki/French_Guiana", "https://en.wikipedia.org/wiki/Flag_of_French_Guiana"], "subreddit": ["placeFR", "france"]}, "path": {"164-185": [[-439, 321], [-439, 330], [-429, 330], [-429, 321]], "198-258, 24-63": [[-480, 272], [-480, 279], [-471, 279], [-471, 272]]}, "center": {"164-185": [-434, 326], "198-258, 24-63": [-475, 276]}}, -{"id": 6430, "name": "4th Doctor Scarf", "description": "this is the scarf pattern of the 4th doctor's scarf from the tv series Doctor Who.\nto the left of the scarf is the T.A.R.D.I.S from the same tv show.", "links": {"subreddit": ["DoctorWhumour", "TARDISplace"], "discord": ["ZWYTA6TEUs"]}, "path": {"250-258": [[-502, 349], [-505, 349], [-505, 332], [-502, 332], [-502, 349], [-502, 351], [-504, 329], [-502, 329], [-504, 351], [-502, 351], [-502, 342]]}, "center": {"250-258": [-504, 340]}}, -{"id": 6431, "name": "The Void", "description": "", "links": {}, "path": {"250-258": [[1264, 442], [1228, 422], [1261, 397], [1265, 426]]}, "center": {"250-258": [1251, 420]}}, -{"id": 6432, "name": "Zoo Bot", "description": "Zoo is a text-based idle game for Discord where you can rescue an animal every 6 hours to build up your own zoo, send animals on quests, trade with other players, and WAY TOO MANY OTHER FEATURES.\n\nThe \"r zoo\" at the bottom references the original version of Zoo being a branch of one of Colon's other bots, RoboTop.", "links": {"website": ["https://gdcolon.com/zoo/"], "discord": ["BTpTHMHbFr"]}, "path": {"250-258": [[1214, -804], [1228, -804], [1228, -788], [1214, -788]]}, "center": {"250-258": [1221, -796]}}, -{"id": 6433, "name": "Melvin's two cats", "description": "u/Melvinbro 's two cats, Basil and Ginge", "links": {}, "path": {"187-258": [[312, -981], [327, -981], [327, -970], [312, -970]]}, "center": {"187-258": [320, -975]}}, -{"id": 6434, "name": "Mystia Lorelei", "description": "Mystia Lorelei from the Touhou Project series in a Japanese Izakaya (居酒屋) chef outfit from the fangame \"Touhou Mystia's Izakaya\" a restaurant business simulator cooking game developed by the doujin circles 二色幽紫蝶 and Re零同人社.", "links": {"website": ["https://store.steampowered.com/app/1584090/Touhou_Mystias_Izakaya/"], "subreddit": ["touhou"], "discord": ["apl", "touhou"]}, "path": {"205-253": [[1379, 225], [1379, 237], [1394, 237], [1394, 225], [1387, 225]]}, "center": {"205-253": [1387, 231]}}, -{"id": 6435, "name": "The 4th Doctor scarf next to the tardis", "description": "The 4th Doctor's scarf patern from the tv who doctor who, we did it next to the tardis on the left", "links": {"subreddit": ["DoctorWhumour", "TARDISplace"], "discord": ["ZWYTA6TEUs"]}, "path": {"250-258": [[-503, 350], [-502, 350], [-502, 329], [-503, 329], [-503, 332], [-504, 332], [-504, 342], [-504, 343], [-504, 348], [-503, 332]]}, "center": {"250-258": [-502, 339]}}, +{"id": 6429, "name": "Flag of French Guiana (not official)", "description": "French Guiana is a oversea region owned by France located in South America\n\nthis flag was shortly on the rocket because the place where french launch rocket is in French Guiana", "links": {"website": ["https://en.wikipedia.org/wiki/French_Guiana", "https://en.wikipedia.org/wiki/Flag_of_French_Guiana"], "subreddit": ["placeFR", "france"]}, "path": {"164-185": [[-439, 321], [-439, 330], [-429, 330], [-429, 321]], "198-258, 24-63, T": [[-480, 272], [-480, 279], [-471, 279], [-471, 272]]}, "center": {"164-185": [-434, 326], "198-258, 24-63, T": [-475, 276]}}, +{"id": 6430, "name": "4th Doctor Scarf", "description": "this is the scarf pattern of the 4th doctor's scarf from the tv series Doctor Who.\nto the left of the scarf is the T.A.R.D.I.S from the same tv show.", "links": {"subreddit": ["DoctorWhumour", "TARDISplace"], "discord": ["ZWYTA6TEUs"]}, "path": {"250-258, T": [[-502, 349], [-505, 349], [-505, 332], [-502, 332], [-502, 349], [-502, 351], [-504, 329], [-502, 329], [-504, 351], [-502, 351], [-502, 342]]}, "center": {"250-258, T": [-504, 340]}}, +{"id": 6431, "name": "The Void", "description": "", "links": {}, "path": {"250-258, T": [[1264, 442], [1228, 422], [1261, 397], [1265, 426]]}, "center": {"250-258, T": [1251, 420]}}, +{"id": 6432, "name": "Zoo Bot", "description": "Zoo is a text-based idle game for Discord where you can rescue an animal every 6 hours to build up your own zoo, send animals on quests, trade with other players, and WAY TOO MANY OTHER FEATURES.\n\nThe \"r zoo\" at the bottom references the original version of Zoo being a branch of one of Colon's other bots, RoboTop.", "links": {"website": ["https://gdcolon.com/zoo/"], "discord": ["BTpTHMHbFr"]}, "path": {"250-258, T": [[1214, -804], [1228, -804], [1228, -788], [1214, -788]]}, "center": {"250-258, T": [1221, -796]}}, +{"id": 6433, "name": "Melvin's two cats", "description": "u/Melvinbro 's two cats, Basil and Ginge", "links": {}, "path": {"187-258, T": [[312, -981], [327, -981], [327, -970], [312, -970]]}, "center": {"187-258, T": [320, -975]}}, +{"id": 6434, "name": "Mystia Lorelei", "description": "Mystia Lorelei from the Touhou Project series in a Japanese Izakaya (居酒屋) chef outfit from the fangame \"Touhou Mystia's Izakaya\" a restaurant business simulator cooking game developed by the doujin circles 二色幽紫蝶 and Re零同人社.", "links": {"website": ["https://store.steampowered.com/app/1584090/Touhou_Mystias_Izakaya/"], "subreddit": ["touhou"], "discord": ["apl", "touhou"]}, "path": {"205-253, T": [[1379, 225], [1379, 237], [1394, 237], [1394, 225], [1387, 225]]}, "center": {"205-253, T": [1387, 231]}}, +{"id": 6435, "name": "The 4th Doctor scarf next to the tardis", "description": "The 4th Doctor's scarf patern from the tv who doctor who, we did it next to the tardis on the left", "links": {"subreddit": ["DoctorWhumour", "TARDISplace"], "discord": ["ZWYTA6TEUs"]}, "path": {"250-258, T": [[-503, 350], [-502, 350], [-502, 329], [-503, 329], [-503, 332], [-504, 332], [-504, 342], [-504, 343], [-504, 348], [-503, 332]]}, "center": {"250-258, T": [-502, 339]}}, {"id": 6436, "name": "r/earkle", "description": "a joke created by mcr fans of a pic of ryan ross called \"earkle\" <3 pearkle forever!", "links": {"subreddit": ["earkle"]}, "path": {"248": [[1354, 28], [1385, 28], [1385, 32], [1355, 32], [1354, 32]]}, "center": {"248": [1370, 30]}}, -{"id": 6437, "name": "Kirby", "description": "Kirby is the titular protagonist of the Kirby video game series, developed by HAL Laboratory and published by Nintendo.\n\nThis Kirby and the nearby Pikachu were made by a small group of friends in alliance with the JJK fandom. Thank you JJK community! <3", "links": {"website": ["https://en.wikipedia.org/wiki/Pikachu", "https://bulbapedia.bulbagarden.net/wiki/Pikachu"]}, "path": {"185-213": [[-1173, -918], [-1176, -915], [-1176, -912], [-1175, -912], [-1175, -910], [-1168, -910], [-1168, -912], [-1167, -912], [-1167, -915], [-1170, -918]], "218-224": [[-1175, -919], [-1179, -915], [-1179, -913], [-1178, -912], [-1178, -910], [-1169, -910], [-1169, -912], [-1168, -913], [-1168, -914], [-1172, -919]], "229-258": [[-1166, -918], [-1169, -915], [-1169, -912], [-1168, -912], [-1168, -910], [-1161, -910], [-1161, -912], [-1160, -912], [-1160, -914], [-1163, -918]]}, "center": {"185-213": [-1171, -914], "218-224": [-1174, -914], "229-258": [-1165, -914]}}, -{"id": 6438, "name": "United States heart", "description": "A heart depicting the flag of the United States, a country in North America.", "links": {"website": ["https://en.wikipedia.org/wiki/United_States", "https://en.wikipedia.org/wiki/Flag_of_the_United_States"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"249-258": [[-1166, -998], [-1166, -995], [-1162, -991], [-1158, -995], [-1158, -998]]}, "center": {"249-258": [-1162, -995]}}, -{"id": 6439, "name": "Colombia heart", "description": "A heart depicting the flag of Colombia, a country on the northwest coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"246-258": [[-1158, -1000], [-1160, -999], [-1156, -995], [-1152, -999], [-1154, -1000]]}, "center": {"246-258": [-1156, -998]}}, -{"id": 6440, "name": "Romania heart", "description": "A heart depicting the flag of Romania, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania", "https://en.wikipedia.org/wiki/Flag_of_Romania"], "subreddit": ["okprietenretardat"], "discord": ["placero"]}, "path": {"235-258": [[-1150, -998], [-1152, -996], [-1148, -992], [-1144, -996], [-1146, -998]]}, "center": {"235-258": [-1148, -996]}}, -{"id": 6441, "name": "Bolivia heart", "description": "A heart depicting the flag of Bolivia, a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Flag_of_Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"250-258": [[-1156, -995], [-1158, -993], [-1154, -989], [-1150, -993], [-1152, -995]]}, "center": {"250-258": [-1154, -993]}}, -{"id": 6442, "name": "Egypt heart", "description": "A heart depicting the flag of Egypt, a country in Northern Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Egypt", "https://en.wikipedia.org/wiki/Flag_of_Egypt"], "subreddit": ["Egypt"]}, "path": {"247-258": [[-1156, -989], [-1158, -987], [-1154, -983], [-1150, -987], [-1152, -989]]}, "center": {"247-258": [-1154, -987]}}, -{"id": 6443, "name": "India heart", "description": "A heart depicting the flag of India, a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace"], "discord": ["indiaplace"]}, "path": {"238-258": [[-1144, -995], [-1146, -993], [-1142, -989], [-1138, -993], [-1140, -995]]}, "center": {"238-258": [-1142, -993]}}, -{"id": 6444, "name": "Finland heart", "description": "A heart depicting the flag of Finland, a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["Suomi"]}, "path": {"228-258": [[-1144, -989], [-1146, -987], [-1142, -983], [-1138, -987], [-1140, -989]]}, "center": {"228-258": [-1142, -987]}}, +{"id": 6437, "name": "Kirby", "description": "Kirby is the titular protagonist of the Kirby video game series, developed by HAL Laboratory and published by Nintendo.\n\nThis Kirby and the nearby Pikachu were made by a small group of friends in alliance with the JJK fandom. Thank you JJK community! <3", "links": {"website": ["https://en.wikipedia.org/wiki/Pikachu", "https://bulbapedia.bulbagarden.net/wiki/Pikachu"]}, "path": {"185-213": [[-1173, -918], [-1176, -915], [-1176, -912], [-1175, -912], [-1175, -910], [-1168, -910], [-1168, -912], [-1167, -912], [-1167, -915], [-1170, -918]], "218-224": [[-1175, -919], [-1179, -915], [-1179, -913], [-1178, -912], [-1178, -910], [-1169, -910], [-1169, -912], [-1168, -913], [-1168, -914], [-1172, -919]], "229-258, T": [[-1166, -918], [-1169, -915], [-1169, -912], [-1168, -912], [-1168, -910], [-1161, -910], [-1161, -912], [-1160, -912], [-1160, -914], [-1163, -918]]}, "center": {"185-213": [-1171, -914], "218-224": [-1174, -914], "229-258, T": [-1165, -914]}}, +{"id": 6438, "name": "United States heart", "description": "A heart depicting the flag of the United States, a country in North America.", "links": {"website": ["https://en.wikipedia.org/wiki/United_States", "https://en.wikipedia.org/wiki/Flag_of_the_United_States"], "subreddit": ["AmericanFlagInPlace"], "discord": ["afip"]}, "path": {"249-258, T": [[-1166, -998], [-1166, -995], [-1162, -991], [-1158, -995], [-1158, -998]]}, "center": {"249-258, T": [-1162, -995]}}, +{"id": 6439, "name": "Colombia heart", "description": "A heart depicting the flag of Colombia, a country on the northwest coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"246-258, T": [[-1158, -1000], [-1160, -999], [-1156, -995], [-1152, -999], [-1154, -1000]]}, "center": {"246-258, T": [-1156, -998]}}, +{"id": 6440, "name": "Romania heart", "description": "A heart depicting the flag of Romania, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania", "https://en.wikipedia.org/wiki/Flag_of_Romania"], "subreddit": ["okprietenretardat"], "discord": ["placero"]}, "path": {"235-258, T": [[-1150, -998], [-1152, -996], [-1148, -992], [-1144, -996], [-1146, -998]]}, "center": {"235-258, T": [-1148, -996]}}, +{"id": 6441, "name": "Bolivia heart", "description": "A heart depicting the flag of Bolivia, a country in central South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Flag_of_Bolivia"], "subreddit": ["BOLIVIA"]}, "path": {"250-258, T": [[-1156, -995], [-1158, -993], [-1154, -989], [-1150, -993], [-1152, -995]]}, "center": {"250-258, T": [-1154, -993]}}, +{"id": 6442, "name": "Egypt heart", "description": "A heart depicting the flag of Egypt, a country in Northern Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Egypt", "https://en.wikipedia.org/wiki/Flag_of_Egypt"], "subreddit": ["Egypt"]}, "path": {"247-258, T": [[-1156, -989], [-1158, -987], [-1154, -983], [-1150, -987], [-1152, -989]]}, "center": {"247-258, T": [-1154, -987]}}, +{"id": 6443, "name": "India heart", "description": "A heart depicting the flag of India, a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace"], "discord": ["indiaplace"]}, "path": {"238-258, T": [[-1144, -995], [-1146, -993], [-1142, -989], [-1138, -993], [-1140, -995]]}, "center": {"238-258, T": [-1142, -993]}}, +{"id": 6444, "name": "Finland heart", "description": "A heart depicting the flag of Finland, a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["Suomi"]}, "path": {"228-258, T": [[-1144, -989], [-1146, -987], [-1142, -983], [-1138, -987], [-1140, -989]]}, "center": {"228-258, T": [-1142, -987]}}, {"id": 6445, "name": "Brazil heart", "description": "A heart depicting the flag of Brazil, a country in South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Brazil", "https://en.wikipedia.org/wiki/Flag_of_Brazil"], "subreddit": ["brasil"]}, "path": {"252-258": [[-1144, -983], [-1146, -981], [-1142, -977], [-1138, -981], [-1140, -983]]}, "center": {"252-258": [-1142, -981]}}, {"id": 6446, "name": "Ireland heart", "description": "A heart depicting the flag of Ireland, a country in northwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"244-249": [[-1138, -974], [-1140, -972], [-1136, -968], [-1132, -972], [-1134, -974]], "253-258": [[-1138, -980], [-1140, -978], [-1136, -974], [-1132, -978], [-1134, -980]]}, "center": {"244-249": [-1136, -972], "253-258": [-1136, -978]}}, -{"id": 6447, "name": "Nigeria heart", "description": "A heart depicting the flag of Nigeria, a country in Western Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Nigeria", "https://en.wikipedia.org/wiki/Flag_of_Nigeria"], "subreddit": ["Nigeria"]}, "path": {"250-258": [[-1138, -974], [-1140, -972], [-1136, -968], [-1132, -972], [-1134, -974]]}, "center": {"250-258": [-1136, -972]}}, -{"id": 6448, "name": "Lesbian heart", "description": "A heart depicting the lesbian pride flag. Lesbian people are women attracted to other women.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"]}, "path": {"225-258": [[-1138, -992], [-1140, -990], [-1136, -986], [-1132, -990], [-1134, -992]]}, "center": {"225-258": [-1136, -990]}}, +{"id": 6447, "name": "Nigeria heart", "description": "A heart depicting the flag of Nigeria, a country in Western Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Nigeria", "https://en.wikipedia.org/wiki/Flag_of_Nigeria"], "subreddit": ["Nigeria"]}, "path": {"250-258, T": [[-1138, -974], [-1140, -972], [-1136, -968], [-1132, -972], [-1134, -974]]}, "center": {"250-258, T": [-1136, -972]}}, +{"id": 6448, "name": "Lesbian heart", "description": "A heart depicting the lesbian pride flag. Lesbian people are women attracted to other women.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"]}, "path": {"225-258, T": [[-1138, -992], [-1140, -990], [-1136, -986], [-1132, -990], [-1134, -992]]}, "center": {"225-258, T": [-1136, -990]}}, {"id": 6449, "name": "England heart", "description": "A heart depicting the flag of England, a country in the United Kingdom.", "links": {"website": ["https://en.wikipedia.org/wiki/England", "https://en.wikipedia.org/wiki/Flag_of_England"]}, "path": {"253-258": [[-1149, -974], [-1151, -972], [-1147, -968], [-1143, -972], [-1145, -974]]}, "center": {"253-258": [-1147, -972]}}, -{"id": 6450, "name": "Italy heart", "description": "A heart depicting the flag of Italy, a country in Southern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy"], "discord": ["italy"]}, "path": {"240-258": [[-1132, -983], [-1134, -981], [-1130, -977], [-1126, -981], [-1128, -983]]}, "center": {"240-258": [-1130, -981]}}, -{"id": 6451, "name": "France heart", "description": "A heart depicting the flag of France, a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR"], "discord": ["placeFR"]}, "path": {"240-258": [[-1132, -977], [-1134, -975], [-1130, -971], [-1126, -975], [-1128, -977]]}, "center": {"240-258": [-1130, -975]}}, -{"id": 6452, "name": "Morocco heart", "description": "A heart depicting the flag of Morocco, a country in northwest Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Morocco", "https://en.wikipedia.org/wiki/Flag_of_Morocco"], "subreddit": ["Morocco"], "discord": ["r-morocco"]}, "path": {"248-258": [[-1126, -980], [-1128, -978], [-1128, -977], [-1124, -973], [-1120, -977], [-1120, -978], [-1122, -980]]}, "center": {"248-258": [-1124, -977]}}, -{"id": 6453, "name": "territory of the Guatemala", "description": "the country of Guatemala as it appears on the map", "links": {"subreddit": ["guatemala"]}, "path": {"163-258": [[-964, 544], [-980, 544], [-986, 539], [-986, 537], [-990, 533], [-990, 527], [-986, 522], [-986, 520], [-982, 520], [-982, 519], [-975, 519], [-975, 516], [-976, 515], [-979, 515], [-979, 513], [-981, 513], [-981, 512], [-982, 512], [-982, 510], [-983, 509], [-981, 507], [-979, 507], [-978, 507], [-979, 506], [-976, 503], [-956, 503], [-956, 521], [-953, 521], [-953, 520], [-948, 520], [-948, 521], [-946, 521], [-946, 524], [-963, 542]]}, "center": {"163-258": [-970, 531]}}, +{"id": 6450, "name": "Italy heart", "description": "A heart depicting the flag of Italy, a country in Southern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy"], "discord": ["italy"]}, "path": {"240-258, T": [[-1132, -983], [-1134, -981], [-1130, -977], [-1126, -981], [-1128, -983]]}, "center": {"240-258, T": [-1130, -981]}}, +{"id": 6451, "name": "France heart", "description": "A heart depicting the flag of France, a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR"], "discord": ["placeFR"]}, "path": {"240-258, T": [[-1132, -977], [-1134, -975], [-1130, -971], [-1126, -975], [-1128, -977]]}, "center": {"240-258, T": [-1130, -975]}}, +{"id": 6452, "name": "Morocco heart", "description": "A heart depicting the flag of Morocco, a country in northwest Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Morocco", "https://en.wikipedia.org/wiki/Flag_of_Morocco"], "subreddit": ["Morocco"], "discord": ["r-morocco"]}, "path": {"248-258, T": [[-1126, -980], [-1128, -978], [-1128, -977], [-1124, -973], [-1120, -977], [-1120, -978], [-1122, -980]]}, "center": {"248-258, T": [-1124, -977]}}, +{"id": 6453, "name": "territory of the Guatemala", "description": "the country of Guatemala as it appears on the map", "links": {"subreddit": ["guatemala"]}, "path": {"163-258, T": [[-964, 544], [-980, 544], [-986, 539], [-986, 537], [-990, 533], [-990, 527], [-986, 522], [-986, 520], [-982, 520], [-982, 519], [-975, 519], [-975, 516], [-976, 515], [-979, 515], [-979, 513], [-981, 513], [-981, 512], [-982, 512], [-982, 510], [-983, 509], [-981, 507], [-979, 507], [-978, 507], [-979, 506], [-976, 503], [-956, 503], [-956, 521], [-953, 521], [-953, 520], [-948, 520], [-948, 521], [-946, 521], [-946, 524], [-963, 542]]}, "center": {"163-258, T": [-970, 531]}}, {"id": 6454, "name": "31 Minutos", "description": "31 Minutos is a Chilean comedy television series and a children's music virtual band", "links": {"website": ["https://en.wikipedia.org/wiki/31_Minutos"], "subreddit": ["Chile"]}, "path": {"166-207": [[310, 942], [299, 942], [298, 965], [328, 966], [326, 942], [311, 942]]}, "center": {"166-207": [313, 954]}}, -{"id": 6455, "name": "Aromantic heart", "description": "A heart depicting the aromantic pride flag. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"]}, "path": {"222-238": [[-1126, -986], [-1128, -984], [-1124, -980], [-1120, -984], [-1122, -986]], "246-258": [[-1126, -974], [-1128, -972], [-1124, -968], [-1120, -972], [-1122, -974]]}, "center": {"222-238": [-1124, -984], "246-258": [-1124, -972]}}, -{"id": 6456, "name": "India heart", "description": "A heart depicting the flag of India, a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace"], "discord": ["indiaplace"]}, "path": {"225-258": [[-1126, -968], [-1128, -966], [-1124, -962], [-1120, -966], [-1122, -968]]}, "center": {"225-258": [-1124, -966]}}, -{"id": 6457, "name": "Genderqueer heart", "description": "A pride flag representing the genderqueer community. Genderqueer is an umbrella term similar to non-binary.", "links": {"website": ["https://gender.fandom.com/wiki/Genderqueer"]}, "path": {"218-258": [[-1126, -992], [-1128, -990], [-1124, -986], [-1120, -990], [-1122, -992]]}, "center": {"218-258": [-1124, -990]}}, -{"id": 6458, "name": "Canada heart", "description": "A heart depicting the flag of Canada, a country in North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Canada", "https://en.wikipedia.org/wiki/Flag_of_Canada"], "subreddit": ["placecanada", "canada"]}, "path": {"244-258": [[-1126, -998], [-1128, -996], [-1124, -992], [-1120, -996], [-1122, -998]]}, "center": {"244-258": [-1124, -996]}}, -{"id": 6459, "name": "Genderflor heart", "description": "A heart depicting the genderflor pride flag. Genderflor is a type of genderfluidity that excludes binary masculine and feminine genders.", "links": {"website": ["https://www.lgbtqia.wiki/wiki/Genderflor"]}, "path": {"214-226": [[-1126, -974], [-1128, -972], [-1124, -968], [-1120, -972], [-1122, -974]], "239-240, 246-258": [[-1126, -986], [-1128, -984], [-1124, -980], [-1120, -984], [-1122, -986]]}, "center": {"214-226": [-1124, -972], "239-240, 246-258": [-1124, -984]}}, -{"id": 6460, "name": "Non-binary heart", "description": "A heart depicting the non-binary pride flag. Non-binary people identify as a gender other than only male or female.", "links": {"website": ["https://en.wikipedia.org/wiki/Non-binary_gender"]}, "path": {"218": [[-1124, -1000], [-1126, -999], [-1122, -995], [-1118, -999], [-1120, -1000]], "219-258": [[-1120, -1000], [-1122, -999], [-1118, -995], [-1114, -999], [-1116, -1000]]}, "center": {"218": [-1122, -998], "219-258": [-1118, -998]}}, -{"id": 6461, "name": "Asexual heart", "description": "A heart depicting the asexual pride flag. Asexual people have no sexual attraction to others.", "links": {"website": ["https://en.wikipedia.org/wiki/Asexuality"]}, "path": {"217-258": [[-1120, -995], [-1122, -993], [-1118, -989], [-1114, -993], [-1116, -995]]}, "center": {"217-258": [-1118, -993]}}, -{"id": 6462, "name": "Transgender heart", "description": "A heart depicting the transgender pride flag. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"]}, "path": {"208-213": [[-1120, -995], [-1122, -993], [-1118, -989], [-1114, -993], [-1116, -995]], "201-204": [[-1126, -998], [-1128, -996], [-1124, -992], [-1120, -996], [-1122, -998]], "215-258": [[-1120, -989], [-1122, -987], [-1118, -983], [-1114, -987], [-1116, -989]]}, "center": {"208-213": [-1118, -993], "201-204": [-1124, -996], "215-258": [-1118, -987]}}, -{"id": 6463, "name": "Gay heart", "description": "A heart depicting the gay pride flag. Gay people are men attracted to other men.", "links": {"website": ["https://en.wikipedia.org/wiki/Gay"]}, "path": {"248-258": [[-1114, -992], [-1116, -990], [-1112, -986], [-1108, -990], [-1110, -992]]}, "center": {"248-258": [-1112, -990]}}, -{"id": 6464, "name": "Belarusian opposition heart", "description": "A heart depicting the flag of the opposition to the current government of Belarus, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Belarusian_opposition", "https://en.wikipedia.org/wiki/White-red-white_flag"], "subreddit": ["belarus"]}, "path": {"248-258": [[-1108, -1000], [-1110, -999], [-1106, -995], [-1102, -999], [-1104, -1000]]}, "center": {"248-258": [-1106, -998]}}, -{"id": 6465, "name": "South Africa heart", "description": "A heart depicting the flag of South Africa, a country in the southern part of Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa", "https://en.wikipedia.org/wiki/Flag_of_South_Africa"], "subreddit": ["SouthAfrica"]}, "path": {"234-258": [[-1108, -989], [-1110, -987], [-1106, -983], [-1102, -987], [-1104, -989]]}, "center": {"234-258": [-1106, -987]}}, -{"id": 6466, "name": "Intersex heart", "description": "A heart depicting the intersex pride flag. Intersex people are individuals born with any of several sex characteristics including chromosome patterns, gonads, or genitals that, according to the Office of the United Nations High Commissioner for Human Rights, \"do not fit typical binary notions of male or female bodies\".", "links": {"website": ["https://en.wikipedia.org/wiki/Intersex"]}, "path": {"216-258": [[-1102, -986], [-1104, -984], [-1100, -980], [-1096, -984], [-1098, -986]]}, "center": {"216-258": [-1100, -984]}}, +{"id": 6455, "name": "Aromantic heart", "description": "A heart depicting the aromantic pride flag. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"]}, "path": {"222-238": [[-1126, -986], [-1128, -984], [-1124, -980], [-1120, -984], [-1122, -986]], "246-258, T": [[-1126, -974], [-1128, -972], [-1124, -968], [-1120, -972], [-1122, -974]]}, "center": {"222-238": [-1124, -984], "246-258, T": [-1124, -972]}}, +{"id": 6456, "name": "India heart", "description": "A heart depicting the flag of India, a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace"], "discord": ["indiaplace"]}, "path": {"225-258, T": [[-1126, -968], [-1128, -966], [-1124, -962], [-1120, -966], [-1122, -968]]}, "center": {"225-258, T": [-1124, -966]}}, +{"id": 6457, "name": "Genderqueer heart", "description": "A pride flag representing the genderqueer community. Genderqueer is an umbrella term similar to non-binary.", "links": {"website": ["https://gender.fandom.com/wiki/Genderqueer"]}, "path": {"218-258, T": [[-1126, -992], [-1128, -990], [-1124, -986], [-1120, -990], [-1122, -992]]}, "center": {"218-258, T": [-1124, -990]}}, +{"id": 6458, "name": "Canada heart", "description": "A heart depicting the flag of Canada, a country in North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Canada", "https://en.wikipedia.org/wiki/Flag_of_Canada"], "subreddit": ["placecanada", "canada"]}, "path": {"244-258, T": [[-1126, -998], [-1128, -996], [-1124, -992], [-1120, -996], [-1122, -998]]}, "center": {"244-258, T": [-1124, -996]}}, +{"id": 6459, "name": "Genderflor heart", "description": "A heart depicting the genderflor pride flag. Genderflor is a type of genderfluidity that excludes binary masculine and feminine genders.", "links": {"website": ["https://www.lgbtqia.wiki/wiki/Genderflor"]}, "path": {"214-226": [[-1126, -974], [-1128, -972], [-1124, -968], [-1120, -972], [-1122, -974]], "239-240, 246-258, T": [[-1126, -986], [-1128, -984], [-1124, -980], [-1120, -984], [-1122, -986]]}, "center": {"214-226": [-1124, -972], "239-240, 246-258, T": [-1124, -984]}}, +{"id": 6460, "name": "Non-binary heart", "description": "A heart depicting the non-binary pride flag. Non-binary people identify as a gender other than only male or female.", "links": {"website": ["https://en.wikipedia.org/wiki/Non-binary_gender"]}, "path": {"218": [[-1124, -1000], [-1126, -999], [-1122, -995], [-1118, -999], [-1120, -1000]], "219-258, T": [[-1120, -1000], [-1122, -999], [-1118, -995], [-1114, -999], [-1116, -1000]]}, "center": {"218": [-1122, -998], "219-258, T": [-1118, -998]}}, +{"id": 6461, "name": "Asexual heart", "description": "A heart depicting the asexual pride flag. Asexual people have no sexual attraction to others.", "links": {"website": ["https://en.wikipedia.org/wiki/Asexuality"]}, "path": {"217-258, T": [[-1120, -995], [-1122, -993], [-1118, -989], [-1114, -993], [-1116, -995]]}, "center": {"217-258, T": [-1118, -993]}}, +{"id": 6462, "name": "Transgender heart", "description": "A heart depicting the transgender pride flag. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"]}, "path": {"208-213": [[-1120, -995], [-1122, -993], [-1118, -989], [-1114, -993], [-1116, -995]], "201-204": [[-1126, -998], [-1128, -996], [-1124, -992], [-1120, -996], [-1122, -998]], "215-258, T": [[-1120, -989], [-1122, -987], [-1118, -983], [-1114, -987], [-1116, -989]]}, "center": {"208-213": [-1118, -993], "201-204": [-1124, -996], "215-258, T": [-1118, -987]}}, +{"id": 6463, "name": "Gay heart", "description": "A heart depicting the gay pride flag. Gay people are men attracted to other men.", "links": {"website": ["https://en.wikipedia.org/wiki/Gay"]}, "path": {"248-258, T": [[-1114, -992], [-1116, -990], [-1112, -986], [-1108, -990], [-1110, -992]]}, "center": {"248-258, T": [-1112, -990]}}, +{"id": 6464, "name": "Belarusian opposition heart", "description": "A heart depicting the flag of the opposition to the current government of Belarus, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Belarusian_opposition", "https://en.wikipedia.org/wiki/White-red-white_flag"], "subreddit": ["belarus"]}, "path": {"248-258, T": [[-1108, -1000], [-1110, -999], [-1106, -995], [-1102, -999], [-1104, -1000]]}, "center": {"248-258, T": [-1106, -998]}}, +{"id": 6465, "name": "South Africa heart", "description": "A heart depicting the flag of South Africa, a country in the southern part of Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/South_Africa", "https://en.wikipedia.org/wiki/Flag_of_South_Africa"], "subreddit": ["SouthAfrica"]}, "path": {"234-258, T": [[-1108, -989], [-1110, -987], [-1106, -983], [-1102, -987], [-1104, -989]]}, "center": {"234-258, T": [-1106, -987]}}, +{"id": 6466, "name": "Intersex heart", "description": "A heart depicting the intersex pride flag. Intersex people are individuals born with any of several sex characteristics including chromosome patterns, gonads, or genitals that, according to the Office of the United Nations High Commissioner for Human Rights, \"do not fit typical binary notions of male or female bodies\".", "links": {"website": ["https://en.wikipedia.org/wiki/Intersex"]}, "path": {"216-258, T": [[-1102, -986], [-1104, -984], [-1100, -980], [-1096, -984], [-1098, -986]]}, "center": {"216-258, T": [-1100, -984]}}, {"id": 6467, "name": "Denmark heart", "description": "A heart depicting the flag of Denmark, a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark", "https://en.wikipedia.org/wiki/Flag_of_Denmark"], "subreddit": ["Denmark"]}, "path": {"253-258": [[-1120, -977], [-1122, -975], [-1122, -974], [-1118, -970], [-1114, -974], [-1114, -975], [-1116, -977]]}, "center": {"253-258": [-1118, -974]}}, {"id": 6468, "name": "Italy heart", "description": "A heart depicting the flag of Italy, a country in Southern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Flag_of_Italy"], "subreddit": ["italy"], "discord": ["italy"]}, "path": {"253-258": [[-1108, -971], [-1110, -969], [-1106, -965], [-1102, -969], [-1104, -971]]}, "center": {"253-258": [-1106, -969]}}, {"id": 6469, "name": "Lebanon heart", "description": "A heart depicting the flag of Lebanon, a country in the Middle East.", "links": {"website": ["https://en.wikipedia.org/wiki/Lebanon", "https://en.wikipedia.org/wiki/Flag_of_Lebanon"], "subreddit": ["lebanon"]}, "path": {"252-258": [[-1102, -974], [-1104, -972], [-1100, -968], [-1096, -972], [-1098, -974]]}, "center": {"252-258": [-1100, -972]}}, -{"id": 6470, "name": "Chile heart", "description": "A heart depicting the flag of Chile, a country in western South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Flag_of_Chile"], "subreddit": ["chile"]}, "path": {"219-258": [[-1108, -983], [-1110, -981], [-1110, -980], [-1106, -976], [-1102, -980], [-1102, -981], [-1104, -983]]}, "center": {"219-258": [-1106, -980]}}, -{"id": 6471, "name": "Bigender heart", "description": "A heart depicting the bigender pride flag. Bigender people have two separate gender identities.", "links": {"website": ["https://www.lgbtqia.wiki/wiki/Bigender"]}, "path": {"241-258": [[-1138, -998], [-1140, -996], [-1136, -992], [-1132, -996], [-1134, -998]]}, "center": {"241-258": [-1136, -996]}}, -{"id": 6472, "name": "United Arab Emirates heart", "description": "A heart depicting the flag of the United Arab Emirates (UAE), a country in the Middle East.", "links": {"website": ["https://en.wikipedia.org/wiki/United_Arab_Emirates", "https://en.wikipedia.org/wiki/Flag_of_the_United_Arab_Emirates"]}, "path": {"242-258": [[-1102, -998], [-1104, -996], [-1100, -992], [-1096, -996], [-1098, -998]]}, "center": {"242-258": [-1100, -996]}}, -{"id": 6473, "name": "The French Grove", "description": "the result of the colaboration bettewen r/PlaceTrees and r/placeFR", "links": {"subreddit": ["placeFR", "PlaceTrees"]}, "path": {"164-167": [[-477, 500], [-447, 500], [-447, 483], [-456, 483], [-456, 494], [-477, 494]], "111-163": [[-473, 494], [-473, 499], [-416, 499], [-416, 492], [-453, 492], [-453, 494]], "168-258": [[-477, 500], [-448, 500], [-448, 501], [-416, 501], [-416, 491], [-447, 491], [-447, 483], [-458, 483], [-458, 487], [-459, 487], [-459, 494], [-477, 494]]}, "center": {"164-167": [-452, 495], "111-163": [-441, 496], "168-258": [-453, 493]}}, -{"id": 6474, "name": "Une Pièce", "description": "ouiUNEPIECE is an emote and a homage of the retired famous french streamer Corobizar. \n\nCoro was a Huge fan of One Piece\n\n\"Une pièce\" is translated as \"One coin/piece\" in french", "links": {"website": ["https://corobizar.com/"], "subreddit": ["corobizar"], "discord": ["CVYRtpxHVB"]}, "path": {"213-258": [[-988, 89], [-954, 89], [-954, 95], [-988, 95]]}, "center": {"213-258": [-971, 92]}}, -{"id": 6475, "name": "mini Bill Cipher", "description": "Bill Cipher is an inter-dimensional demon that can be summoned and released into a person's mind. He resembles a one-eyed yellow triangle that wears a top hat and a bow tie.\n\nHe is one of the main antagonist of the series \"Gravity Falls\" an American mystery comedy animated television series created by Alex Hirsch for Disney between 2012 and 2016\n\nthere's another Bill Cipher lower down on this flag", "links": {"subreddit": ["gravityfalls"]}, "path": {"200-252": [[-383, 344], [-380, 344], [-379, 345], [-376, 344], [-375, 345], [-374, 344], [-370, 344], [-375, 339], [-374, 338], [-376, 337], [-376, 329], [-378, 329], [-378, 337], [-380, 338], [-379, 339], [-382, 339], [-382, 341], [-382, 342]]}, "center": {"200-252": [-378, 341]}}, -{"id": 6476, "name": "Ukraine heart", "description": "A heart depicting the flag of Ukraine, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"239-251": [[-1144, -977], [-1146, -975], [-1142, -971], [-1138, -975], [-1140, -977]]}, "center": {"239-251": [-1142, -975]}}, -{"id": 6477, "name": "Sweden heart", "description": "A heart depicting the flag of Sweden, a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden", "https://en.wikipedia.org/wiki/Flag_of_Sweden"], "subreddit": ["sweden", "nordics", "place_nordicunion"], "discord": ["ZeBZx3C3"]}, "path": {"207-251": [[-1120, -977], [-1122, -975], [-1122, -974], [-1118, -970], [-1114, -974], [-1114, -975], [-1116, -977]]}, "center": {"207-251": [-1118, -974]}}, -{"id": 6478, "name": "sacré coeur", "description": "the sacré cœur is a monument build in Paris France", "links": {"website": ["https://en.wikipedia.org/wiki/Sacr%C3%A9-C%C5%93ur,_Paris"], "subreddit": ["placeFR", "france"]}, "path": {"163-258": [[-415, 660], [-418, 663], [-415, 674], [-408, 686], [-408, 694], [-402, 700], [-398, 701], [-397, 705], [-391, 704], [-386, 704], [-380, 700], [-377, 698], [-371, 698], [-362, 700], [-359, 702], [-357, 697], [-357, 687], [-356, 686], [-359, 682], [-365, 682], [-365, 674], [-366, 674], [-366, 669], [-367, 669], [-367, 666], [-368, 666], [-371, 659], [-372, 659], [-373, 654], [-374, 658], [-378, 665], [-380, 670], [-383, 670], [-383, 662], [-382, 661], [-382, 659], [-383, 658], [-383, 655], [-382, 654], [-382, 653], [-384, 652], [-383, 649], [-383, 647], [-390, 639], [-394, 647], [-403, 639], [-409, 646], [-408, 651], [-409, 658], [-410, 659], [-410, 662], [-409, 662], [-409, 672], [-411, 671]]}, "center": {"163-258": [-390, 686]}}, +{"id": 6470, "name": "Chile heart", "description": "A heart depicting the flag of Chile, a country in western South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Flag_of_Chile"], "subreddit": ["chile"]}, "path": {"219-258, T": [[-1108, -983], [-1110, -981], [-1110, -980], [-1106, -976], [-1102, -980], [-1102, -981], [-1104, -983]]}, "center": {"219-258, T": [-1106, -980]}}, +{"id": 6471, "name": "Bigender heart", "description": "A heart depicting the bigender pride flag. Bigender people have two separate gender identities.", "links": {"website": ["https://www.lgbtqia.wiki/wiki/Bigender"]}, "path": {"241-258, T": [[-1138, -998], [-1140, -996], [-1136, -992], [-1132, -996], [-1134, -998]]}, "center": {"241-258, T": [-1136, -996]}}, +{"id": 6472, "name": "United Arab Emirates heart", "description": "A heart depicting the flag of the United Arab Emirates (UAE), a country in the Middle East.", "links": {"website": ["https://en.wikipedia.org/wiki/United_Arab_Emirates", "https://en.wikipedia.org/wiki/Flag_of_the_United_Arab_Emirates"]}, "path": {"242-258, T": [[-1102, -998], [-1104, -996], [-1100, -992], [-1096, -996], [-1098, -998]]}, "center": {"242-258, T": [-1100, -996]}}, +{"id": 6473, "name": "The French Grove", "description": "the result of the colaboration bettewen r/PlaceTrees and r/placeFR", "links": {"subreddit": ["placeFR", "PlaceTrees"]}, "path": {"164-167": [[-477, 500], [-447, 500], [-447, 483], [-456, 483], [-456, 494], [-477, 494]], "111-163": [[-473, 494], [-473, 499], [-416, 499], [-416, 492], [-453, 492], [-453, 494]], "168-258, T": [[-477, 500], [-448, 500], [-448, 501], [-416, 501], [-416, 491], [-447, 491], [-447, 483], [-458, 483], [-458, 487], [-459, 487], [-459, 494], [-477, 494]]}, "center": {"164-167": [-452, 495], "111-163": [-441, 496], "168-258, T": [-453, 493]}}, +{"id": 6474, "name": "Une Pièce", "description": "ouiUNEPIECE is an emote and a homage of the retired famous french streamer Corobizar. \n\nCoro was a Huge fan of One Piece\n\n\"Une pièce\" is translated as \"One coin/piece\" in french", "links": {"website": ["https://corobizar.com/"], "subreddit": ["corobizar"], "discord": ["CVYRtpxHVB"]}, "path": {"213-258, T": [[-988, 89], [-954, 89], [-954, 95], [-988, 95]]}, "center": {"213-258, T": [-971, 92]}}, +{"id": 6475, "name": "mini Bill Cipher", "description": "Bill Cipher is an inter-dimensional demon that can be summoned and released into a person's mind. He resembles a one-eyed yellow triangle that wears a top hat and a bow tie.\n\nHe is one of the main antagonist of the series \"Gravity Falls\" an American mystery comedy animated television series created by Alex Hirsch for Disney between 2012 and 2016\n\nthere's another Bill Cipher lower down on this flag", "links": {"subreddit": ["gravityfalls"]}, "path": {"200-252, T": [[-383, 344], [-380, 344], [-379, 345], [-376, 344], [-375, 345], [-374, 344], [-370, 344], [-375, 339], [-374, 338], [-376, 337], [-376, 329], [-378, 329], [-378, 337], [-380, 338], [-379, 339], [-382, 339], [-382, 341], [-382, 342]]}, "center": {"200-252, T": [-378, 341]}}, +{"id": 6476, "name": "Ukraine heart", "description": "A heart depicting the flag of Ukraine, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"239-251, T": [[-1144, -977], [-1146, -975], [-1142, -971], [-1138, -975], [-1140, -977]]}, "center": {"239-251, T": [-1142, -975]}}, +{"id": 6477, "name": "Sweden heart", "description": "A heart depicting the flag of Sweden, a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden", "https://en.wikipedia.org/wiki/Flag_of_Sweden"], "subreddit": ["sweden", "nordics", "place_nordicunion"], "discord": ["ZeBZx3C3"]}, "path": {"207-251, T": [[-1120, -977], [-1122, -975], [-1122, -974], [-1118, -970], [-1114, -974], [-1114, -975], [-1116, -977]]}, "center": {"207-251, T": [-1118, -974]}}, +{"id": 6478, "name": "sacré coeur", "description": "the sacré cœur is a monument build in Paris France", "links": {"website": ["https://en.wikipedia.org/wiki/Sacr%C3%A9-C%C5%93ur,_Paris"], "subreddit": ["placeFR", "france"]}, "path": {"163-258, T": [[-415, 660], [-418, 663], [-415, 674], [-408, 686], [-408, 694], [-402, 700], [-398, 701], [-397, 705], [-391, 704], [-386, 704], [-380, 700], [-377, 698], [-371, 698], [-362, 700], [-359, 702], [-357, 697], [-357, 687], [-356, 686], [-359, 682], [-365, 682], [-365, 674], [-366, 674], [-366, 669], [-367, 669], [-367, 666], [-368, 666], [-371, 659], [-372, 659], [-373, 654], [-374, 658], [-378, 665], [-380, 670], [-383, 670], [-383, 662], [-382, 661], [-382, 659], [-383, 658], [-383, 655], [-382, 654], [-382, 653], [-384, 652], [-383, 649], [-383, 647], [-390, 639], [-394, 647], [-403, 639], [-409, 646], [-408, 651], [-409, 658], [-410, 659], [-410, 662], [-409, 662], [-409, 672], [-411, 671]]}, "center": {"163-258, T": [-390, 686]}}, {"id": 6479, "name": "Tiny Flag of France", "description": "France is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR", "france"]}, "path": {"161-215": [[-132, 855], [-113, 855], [-113, 797], [-113, 791], [-132, 791]], "216-241": [[-132, 812], [-113, 812], [-113, 855], [-132, 855]]}, "center": {"161-215": [-122, 823], "216-241": [-122, 834]}}, {"id": 6480, "name": "Lyra Cutie Mark", "description": "Lyra Heartstrings Cutie Mark from My Little Pony", "links": {"website": ["https://mlp.fandom.com/wiki/Lyra_Heartstrings"]}, "path": {"46-47": [[-86, 236], [-86, 242], [-87, 243], [-90, 243], [-91, 242], [-92, 242], [-92, 237], [-90, 237], [-90, 238], [-89, 238], [-89, 237], [-88, 237], [-88, 236], [-87, 236]]}, "center": {"46-47": [-89, 240]}}, {"id": 6481, "name": "Kurdistan heart", "description": "A heart depicting the flag of Kurdistan, an area spread over large parts of what are now eastern Turkey, northern Iraq, western Iran, and smaller parts of northern Syria and Armenia.", "links": {"website": ["https://en.wikipedia.org/wiki/Kurdistan", "https://en.wikipedia.org/wiki/Flag_of_Kurdistan"], "subreddit": ["kurdistan"], "discord": ["2FwHvkjQ"]}, "path": {"240-246": [[-1120, -983], [-1122, -981], [-1118, -977], [-1114, -981], [-1116, -983]], "247-248, 251": [[-1144, -983], [-1146, -981], [-1142, -977], [-1138, -981], [-1140, -983]]}, "center": {"240-246": [-1118, -981], "247-248, 251": [-1142, -981]}}, @@ -6253,21 +6253,21 @@ {"id": 6483, "name": "India heart", "description": "A heart depicting the flag of India, a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/India", "https://en.wikipedia.org/wiki/Flag_of_India"], "subreddit": ["IndiaPlace"], "discord": ["indiaplace"]}, "path": {"244-250": [[-1156, -995], [-1158, -993], [-1154, -989], [-1150, -993], [-1152, -995]]}, "center": {"244-250": [-1154, -993]}}, {"id": 6484, "name": "Transgender heart", "description": "A heart depicting the transgender pride flag. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"]}, "path": {"246-247": [[-1132, -995], [-1134, -993], [-1130, -989], [-1126, -993], [-1128, -995]]}, "center": {"246-247": [-1130, -993]}}, {"id": 6485, "name": "Portugal heart", "description": "A heart depicting the flag of Portugal, a country in Southwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal", "https://en.wikipedia.org/wiki/Flag_of_Portugal"], "subreddit": ["portugal"], "discord": ["TugaPlace"]}, "path": {"217-247": [[-1114, -992], [-1116, -990], [-1112, -986], [-1108, -990], [-1110, -992]]}, "center": {"217-247": [-1112, -990]}}, -{"id": 6486, "name": "El Salvador heart", "description": "A heart depicting the flag of El Salvador, a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/El_Salvador", "https://en.wikipedia.org/wiki/Flag_of_El_Salvador"], "subreddit": ["ElSalvador"], "discord": ["fvy5cFSGp"]}, "path": {"241-258": [[-1108, -995], [-1110, -993], [-1106, -989], [-1102, -993], [-1104, -995]]}, "center": {"241-258": [-1106, -993]}}, +{"id": 6486, "name": "El Salvador heart", "description": "A heart depicting the flag of El Salvador, a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/El_Salvador", "https://en.wikipedia.org/wiki/Flag_of_El_Salvador"], "subreddit": ["ElSalvador"], "discord": ["fvy5cFSGp"]}, "path": {"241-258, T": [[-1108, -995], [-1110, -993], [-1106, -989], [-1102, -993], [-1104, -995]]}, "center": {"241-258, T": [-1106, -993]}}, {"id": 6487, "name": "Uruguay heart", "description": "A heart depicting the flag of Uruguay, a country in South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Flag_of_Uruguay"], "subreddit": ["uruguay"]}, "path": {"215-248": [[-1114, -986], [-1116, -984], [-1112, -980], [-1108, -984], [-1110, -986]]}, "center": {"215-248": [-1112, -984]}}, {"id": 6488, "name": "Costa Rica heart", "description": "A heart depicting the flag of Costa Rica, a country in South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica"]}, "path": {"219-247": [[-1108, -1000], [-1110, -999], [-1106, -995], [-1102, -999], [-1104, -1000]]}, "center": {"219-247": [-1106, -998]}}, {"id": 6489, "name": "Finland heart", "description": "A heart depicting the flag of Finland, a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["Suomi"]}, "path": {"233-245": [[-1144, -971], [-1146, -969], [-1142, -965], [-1138, -969], [-1140, -971]]}, "center": {"233-245": [-1142, -969]}}, {"id": 6490, "name": "Poland heart", "description": "A heart depicting the flag of Poland, a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Flag_of_Poland"], "subreddit": ["Polska", "poland"]}, "path": {"236-237": [[-1150, -974], [-1150, -972], [-1147, -968], [-1143, -972], [-1145, -974]]}, "center": {"236-237": [-1147, -972]}}, {"id": 6491, "name": "Tiny Keiki", "description": "Minimalist pixel art of Keiki Haniyasushin, The Sculptor God crafted by Utter Isolation, Final boss of Touhou 17 : Wily Beast and Weakest Creature", "links": {}, "path": {"226-249": [[1109, -71], [1118, -71], [1118, -61], [1109, -61]]}, "center": {"226-249": [1114, -66]}}, {"id": 6492, "name": "Heavenly Peach", "description": "Pixel art of a peach representing Tenshi Hinanawi, the main antagonist in Touhou Hisouten ~ Scarlet Weather Rhapsody. She is a celestial being from Heaven with the ability to manipulate earthquakes. Tenshi is commonly associated with peaches.\n\nThis peach was unknowingly built within the last hour next to her friend Shion Yorigami.", "links": {"subreddit": ["touhou"], "discord": ["apl"]}, "path": {"252-258": [[1264, 746], [1262, 744], [1266, 740], [1267, 740], [1271, 744], [1269, 746]]}, "center": {"252-258": [1267, 744]}}, -{"id": 6493, "name": "Small Takodachi", "description": "A mini pixel-art representing a \"takodachi\", the mascot Hololive talent Ninomae Ina'nis uses to represent her community", "links": {}, "path": {"165-258": [[-653, -317], [-656, -314], [-656, -308], [-650, -308], [-650, -315]]}, "center": {"165-258": [-653, -312]}}, -{"id": 6494, "name": "Gura's Trident", "description": "Trident associated with Hololive talent Gawr Gura", "links": {}, "path": {"142-258": [[-657, -315], [-665, -312], [-677, -311], [-677, -308], [-664, -308], [-657, -306], [-656, -310]]}, "center": {"142-258": [-660, -310]}}, -{"id": 6495, "name": "Finn", "description": "Finn, the main character of Adventure Time", "links": {"website": ["https://en.wikipedia.org/wiki/Adventure_Time"]}, "path": {"234-258": [[-1277, 29], [-1276, 29], [-1276, 30], [-1266, 30], [-1266, 29], [-1265, 29], [-1265, 35], [-1268, 38], [-1268, 47], [-1268, 48], [-1277, 48]]}, "center": {"234-258": [-1272, 35]}}, -{"id": 6496, "name": "Pea Shooter from Plants vs Zombies", "description": "The Pea Shooter plant from Plants vs Zombies", "links": {"website": ["https://en.wikipedia.org/wiki/Plants_vs._Zombies_(video_game)"]}, "path": {"243-258": [[-1369, 23], [-1368, 24], [-1367, 24], [-1366, 25], [-1366, 27], [-1365, 28], [-1365, 29], [-1364, 29], [-1363, 30], [-1364, 31], [-1365, 31], [-1364, 32], [-1365, 33], [-1366, 34], [-1366, 35], [-1362, 35], [-1361, 34], [-1360, 34], [-1359, 35], [-1357, 35], [-1357, 34], [-1359, 33], [-1360, 32], [-1363, 32], [-1363, 31], [-1360, 28], [-1359, 27], [-1358, 28], [-1357, 27], [-1357, 25], [-1358, 24], [-1359, 25], [-1360, 24], [-1361, 23], [-1364, 23], [-1365, 24], [-1366, 23], [-1367, 22], [-1368, 22]]}, "center": {"243-258": [-1362, 26]}}, -{"id": 6497, "name": "Club Independiente Santa Fe", "description": "", "links": {"subreddit": ["LosCardenales", "IndependienteSantaFe"]}, "path": {"250-258": [[-1292, 913], [-1279, 913], [-1278, 934], [-1285, 951], [-1291, 948], [-1293, 948]]}, "center": {"250-258": [-1285, 932]}}, -{"id": 6498, "name": "Elf of Era", "description": "Elf of Era(a. k. a. EOE) Group is a virtual idol girl group under Yuehua Entertainment.\nIt consists of 5 members: Tang Waner, Bai Luzao, An Minuo, Su Yumo, and Jiang Youen.\nThey will create positive energy for everyone through interactive live broadcasts, stage performances, and content creation.\n> Five passionate young girls dream of being the ghostly elves who sow happiness in this era. On the way of pursuing their dreams, no matter whether it is the stars or the wind and frost, they can't be stopped.", "links": {"website": ["https://space.bilibili.com/2018113152", "https://t.me/Eoesfamily"], "subreddit": ["EOEvtuber", "ElfOfEra"]}, "path": {"250-258": [[-175, 701], [-175, 729], [-153, 729], [-153, 701]]}, "center": {"250-258": [-164, 715]}}, -{"id": 6499, "name": "Central Alliance", "description": "A faction that formed in place 2022, it returned this year but it much smaller numbers. With only a couple fandoms taking part.\n\nCA is a parent faction, with many different fandoms coming together under one name. These child factions are called \"Branches\"\n\nThe most notable branches under CA include: \n\nAnimation Alliance (A branch specalizing in Cartoons)\nDestiny: The Game\nTria\nCritical Role\nFssh (A branch that makes little aquariums around the canvas)", "links": {"subreddit": ["theowlhouse", "amphibia", "infinitytrain", "tria", "destiny", "fssh"], "discord": ["R5NEDE49"]}, "path": {"250-258": [[-596, 973], [-597, 974], [-618, 997], [-620, 972], [-607, 972], [-597, 973], [-596, 996], [-619, 996], [-618, 996]]}, "center": {"250-258": [-612, 979]}}, -{"id": 6500, "name": "Nimona (minimona)", "description": "A small Nimona (referred to as \"Minimona\" by the people participating) made by r/Nimona.\nFrom the other Nimona description: Nimona is a fantasy graphic novel by ND Stevenson and animated film released by Netflix. It follows a shapeshifting teen who teams up with a knight framed for the murder of the queen. The franchise has a strong LGBTQ influence and following.", "links": {"subreddit": ["Nimona"]}, "path": {"178-258": [[-795, 821], [-782, 821], [-778, 837], [-797, 837]]}, "center": {"178-258": [-788, 829]}}, +{"id": 6493, "name": "Small Takodachi", "description": "A mini pixel-art representing a \"takodachi\", the mascot Hololive talent Ninomae Ina'nis uses to represent her community", "links": {}, "path": {"165-258, T": [[-653, -317], [-656, -314], [-656, -308], [-650, -308], [-650, -315]]}, "center": {"165-258, T": [-653, -312]}}, +{"id": 6494, "name": "Gura's Trident", "description": "Trident associated with Hololive talent Gawr Gura", "links": {}, "path": {"142-258, T": [[-657, -315], [-665, -312], [-677, -311], [-677, -308], [-664, -308], [-657, -306], [-656, -310]]}, "center": {"142-258, T": [-660, -310]}}, +{"id": 6495, "name": "Finn", "description": "Finn, the main character of Adventure Time", "links": {"website": ["https://en.wikipedia.org/wiki/Adventure_Time"]}, "path": {"234-258, T": [[-1277, 29], [-1276, 29], [-1276, 30], [-1266, 30], [-1266, 29], [-1265, 29], [-1265, 35], [-1268, 38], [-1268, 47], [-1268, 48], [-1277, 48]]}, "center": {"234-258, T": [-1272, 35]}}, +{"id": 6496, "name": "Pea Shooter from Plants vs Zombies", "description": "The Pea Shooter plant from Plants vs Zombies", "links": {"website": ["https://en.wikipedia.org/wiki/Plants_vs._Zombies_(video_game)"]}, "path": {"243-258, T": [[-1369, 23], [-1368, 24], [-1367, 24], [-1366, 25], [-1366, 27], [-1365, 28], [-1365, 29], [-1364, 29], [-1363, 30], [-1364, 31], [-1365, 31], [-1364, 32], [-1365, 33], [-1366, 34], [-1366, 35], [-1362, 35], [-1361, 34], [-1360, 34], [-1359, 35], [-1357, 35], [-1357, 34], [-1359, 33], [-1360, 32], [-1363, 32], [-1363, 31], [-1360, 28], [-1359, 27], [-1358, 28], [-1357, 27], [-1357, 25], [-1358, 24], [-1359, 25], [-1360, 24], [-1361, 23], [-1364, 23], [-1365, 24], [-1366, 23], [-1367, 22], [-1368, 22]]}, "center": {"243-258, T": [-1362, 26]}}, +{"id": 6497, "name": "Club Independiente Santa Fe", "description": "", "links": {"subreddit": ["LosCardenales", "IndependienteSantaFe"]}, "path": {"250-258, T": [[-1292, 913], [-1279, 913], [-1278, 934], [-1285, 951], [-1291, 948], [-1293, 948]]}, "center": {"250-258, T": [-1285, 932]}}, +{"id": 6498, "name": "Elf of Era", "description": "Elf of Era(a. k. a. EOE) Group is a virtual idol girl group under Yuehua Entertainment.\nIt consists of 5 members: Tang Waner, Bai Luzao, An Minuo, Su Yumo, and Jiang Youen.\nThey will create positive energy for everyone through interactive live broadcasts, stage performances, and content creation.\n> Five passionate young girls dream of being the ghostly elves who sow happiness in this era. On the way of pursuing their dreams, no matter whether it is the stars or the wind and frost, they can't be stopped.", "links": {"website": ["https://space.bilibili.com/2018113152", "https://t.me/Eoesfamily"], "subreddit": ["EOEvtuber", "ElfOfEra"]}, "path": {"250-258, T": [[-175, 701], [-175, 729], [-153, 729], [-153, 701]]}, "center": {"250-258, T": [-164, 715]}}, +{"id": 6499, "name": "Central Alliance", "description": "A faction that formed in place 2022, it returned this year but it much smaller numbers. With only a couple fandoms taking part.\n\nCA is a parent faction, with many different fandoms coming together under one name. These child factions are called \"Branches\"\n\nThe most notable branches under CA include: \n\nAnimation Alliance (A branch specalizing in Cartoons)\nDestiny: The Game\nTria\nCritical Role\nFssh (A branch that makes little aquariums around the canvas)", "links": {"subreddit": ["theowlhouse", "amphibia", "infinitytrain", "tria", "destiny", "fssh"], "discord": ["R5NEDE49"]}, "path": {"250-258, T": [[-596, 973], [-597, 974], [-618, 997], [-620, 972], [-607, 972], [-597, 973], [-596, 996], [-619, 996], [-618, 996]]}, "center": {"250-258, T": [-612, 979]}}, +{"id": 6500, "name": "Nimona (minimona)", "description": "A small Nimona (referred to as \"Minimona\" by the people participating) made by r/Nimona.\nFrom the other Nimona description: Nimona is a fantasy graphic novel by ND Stevenson and animated film released by Netflix. It follows a shapeshifting teen who teams up with a knight framed for the murder of the queen. The franchise has a strong LGBTQ influence and following.", "links": {"subreddit": ["Nimona"]}, "path": {"178-258, T": [[-795, 821], [-782, 821], [-778, 837], [-797, 837]]}, "center": {"178-258, T": [-788, 829]}}, {"id": 6501, "name": "Happy Wheels Logo (Abbreviated)", "description": "Made by the Happy Wheels Speedrunning community, this only lasted a couple hours before being eroded by other's work.", "links": {"discord": ["pkdSnJaasq"]}, "path": {"117-129": [[-1000, 157], [-991, 157], [-991, 166], [-1000, 166], [-1000, 157], [-990, 157], [-990, 164], [-990, 166], [-990, 164], [-990, 162], [-1000, 167], [-990, 167], [-1000, 163], [-989, 169], [-1000, 169], [-989, 157], [-989, 168], [-1000, 155], [-988, 155], [-988, 169], [-1000, 170], [-983, 170], [-983, 153], [-1000, 153]]}, "center": {"117-129": [-985, 156]}}, {"id": 6502, "name": "Denmark heart", "description": "A heart depicting the flag of Denmark, a country in Northern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark", "https://en.wikipedia.org/wiki/Flag_of_Denmark"], "subreddit": ["Denmark"]}, "path": {"240-243": [[-1126, -998], [-1128, -996], [-1124, -992], [-1120, -996], [-1122, -998]]}, "center": {"240-243": [-1124, -996]}}, {"id": 6503, "name": "Germany heart", "description": "A heart depicting the flag of Germany, a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placeDE"], "discord": ["placeDE"]}, "path": {"236-242": [[-1108, -971], [-1110, -969], [-1106, -965], [-1102, -969], [-1104, -971]]}, "center": {"236-242": [-1106, -969]}}, @@ -6284,11 +6284,11 @@ {"id": 6514, "name": "Nigeria heart", "description": "A heart depicting the flag of Nigeria, a country in Western Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Nigeria", "https://en.wikipedia.org/wiki/Flag_of_Nigeria"], "subreddit": ["Nigeria"]}, "path": {"206-239": [[-1114, -980], [-1116, -978], [-1112, -974], [-1108, -978], [-1110, -980]]}, "center": {"206-239": [-1112, -978]}}, {"id": 6515, "name": "Pyrenees", "description": "User U/danelnfm single handedly tried to make the Pyrenees on the meeting point of the flag of Spain and France.", "links": {"website": ["https://www.reddit.com/r/esPlace/comments/157qiyf/ayuda_pirineos/"], "subreddit": ["esPlace"]}, "path": {"161-163": [[877, -48], [884, -48], [884, -57], [884, -56], [876, -48]]}, "center": {"161-163": [882, -50]}}, {"id": 6516, "name": "Risk Flower", "description": "A flower made by the Risk Universalis community. It was created after the partition of artwork belonging to furry yiff/porn websitr e621.net and survived until Shotbow bots removed it immediately before the great whiteout", "links": {"website": ["https://e621.net"]}, "path": {"152-206": [[615, -640], [640, -639], [638, -631], [632, -631], [631, -624], [629, -610], [615, -611]]}, "center": {"152-206": [623, -630]}}, -{"id": 6517, "name": "Guatemala heart", "description": "A heart depicting the flag of Guatemala, a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Guatemala", "https://en.wikipedia.org/wiki/Flag_of_Guatemala"], "subreddit": ["guatemala"]}, "path": {"240-251": [[-1138, -980], [-1140, -978], [-1136, -974], [-1132, -978], [-1134, -980]], "235-239": [[-1132, -984], [-1134, -982], [-1134, -980], [-1138, -980], [-1140, -978], [-1136, -974], [-1133, -977], [-1130, -977], [-1126, -981], [-1126, -982], [-1128, -984]]}, "center": {"240-251": [-1136, -978], "235-239": [-1131, -981]}}, +{"id": 6517, "name": "Guatemala heart", "description": "A heart depicting the flag of Guatemala, a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Guatemala", "https://en.wikipedia.org/wiki/Flag_of_Guatemala"], "subreddit": ["guatemala"]}, "path": {"235-239": [[-1132, -984], [-1134, -982], [-1134, -980], [-1138, -980], [-1140, -978], [-1136, -974], [-1133, -977], [-1130, -977], [-1126, -981], [-1126, -982], [-1128, -984]], "240-251, T": [[-1138, -980], [-1140, -978], [-1136, -974], [-1132, -978], [-1134, -980]]}, "center": {"235-239": [-1131, -981], "240-251, T": [-1136, -978]}}, {"id": 6518, "name": "Intersex heart", "description": "A heart depicting the intersex pride flag. Intersex people are individuals born with any of several sex characteristics including chromosome patterns, gonads, or genitals that, according to the Office of the United Nations High Commissioner for Human Rights, \"do not fit typical binary notions of male or female bodies\".", "links": {"website": ["https://en.wikipedia.org/wiki/Intersex"]}, "path": {"226-245": [[-1158, -1000], [-1160, -999], [-1156, -995], [-1152, -999], [-1154, -1000]]}, "center": {"226-245": [-1156, -998]}}, {"id": 6519, "name": "Intersex heart", "description": "A heart depicting the intersex pride flag. Intersex people are individuals born with any of several sex characteristics including chromosome patterns, gonads, or genitals that, according to the Office of the United Nations High Commissioner for Human Rights, \"do not fit typical binary notions of male or female bodies\".", "links": {"website": ["https://en.wikipedia.org/wiki/Intersex"]}, "path": {"224-233": [[-1132, -1000], [-1134, -999], [-1130, -995], [-1126, -999], [-1128, -1000]]}, "center": {"224-233": [-1130, -998]}}, {"id": 6520, "name": "Lithuania heart", "description": "A heart depicting the flag of Lithuania, a country in Northeastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Flag_of_Lithuania"], "subreddit": ["lithuania"]}, "path": {"231-239": [[-1120, -983], [-1122, -981], [-1118, -977], [-1114, -981], [-1116, -983]]}, "center": {"231-239": [-1118, -981]}}, -{"id": 6521, "name": "Mexico heart", "description": "A heart depicting the flag of Mexico, a country in North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"215": [[-1132, -983], [-1134, -981], [-1130, -977], [-1132, -977], [-1134, -975], [-1130, -971], [-1126, -975], [-1128, -977], [-1130, -977], [-1126, -981], [-1128, -983]], "207-214": [[-1132, -983], [-1134, -981], [-1130, -977], [-1126, -981], [-1128, -983]], "216-258": [[-1132, -984], [-1134, -982], [-1134, -981], [-1130, -977], [-1126, -981], [-1126, -982], [-1128, -984], [-1130, -982]]}, "center": {"215": [-1130, -975], "207-214": [-1130, -981], "216-258": [-1130, -980]}}, +{"id": 6521, "name": "Mexico heart", "description": "A heart depicting the flag of Mexico, a country in North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "mexico"]}, "path": {"215": [[-1132, -983], [-1134, -981], [-1130, -977], [-1132, -977], [-1134, -975], [-1130, -971], [-1126, -975], [-1128, -977], [-1130, -977], [-1126, -981], [-1128, -983]], "207-214": [[-1132, -983], [-1134, -981], [-1130, -977], [-1126, -981], [-1128, -983]], "216-258, T": [[-1132, -984], [-1134, -982], [-1134, -981], [-1130, -977], [-1126, -981], [-1126, -982], [-1128, -984], [-1130, -982]]}, "center": {"215": [-1130, -975], "207-214": [-1130, -981], "216-258, T": [-1130, -980]}}, {"id": 6522, "name": "Demigirl heart", "description": "A heart depicting the demigirl pride flag. A demigirl is an individual who partially identifies as a woman.", "links": {"website": ["https://gender.fandom.com/wiki/Demigirl"]}, "path": {"226-236": [[-1102, -980], [-1104, -978], [-1100, -974], [-1096, -978], [-1098, -980]]}, "center": {"226-236": [-1100, -978]}}, {"id": 6523, "name": "Ukraine heart", "description": "A heart depicting the flag of Ukraine, a country in Eastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"227-235": [[-1144, -977], [-1146, -975], [-1142, -971], [-1138, -975], [-1140, -977]]}, "center": {"227-235": [-1142, -975]}}, {"id": 6524, "name": "Lesbian heart", "description": "A heart depicting the lesbian pride flag. Lesbian people are women attracted to other women.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"]}, "path": {"225-234": [[-1144, -983], [-1146, -981], [-1142, -977], [-1138, -981], [-1140, -983]]}, "center": {"225-234": [-1142, -981]}}, @@ -6300,31 +6300,31 @@ {"id": 6530, "name": "England heart", "description": "A heart depicting the flag of England, a country in the United Kingdom.", "links": {"website": ["https://en.wikipedia.org/wiki/England", "https://en.wikipedia.org/wiki/Flag_of_England"], "subreddit": ["england"]}, "path": {"219-223": [[-1144, -971], [-1146, -969], [-1142, -965], [-1138, -969], [-1140, -971]]}, "center": {"219-223": [-1142, -969]}}, {"id": 6531, "name": "France heart", "description": "A heart depicting the flag of France, a country in western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placeFR"], "discord": ["placeFR"]}, "path": {"211-227": [[-1138, -980], [-1140, -978], [-1136, -974], [-1132, -978], [-1134, -980]]}, "center": {"211-227": [-1136, -978]}}, {"id": 6532, "name": "Bisexual heart", "description": "A heart depicting the bisexual pride flag. Bisexual people are sexually attracted to both males and females.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality"]}, "path": {"207-235": [[-1108, -971], [-1110, -969], [-1106, -965], [-1102, -969], [-1104, -971]]}, "center": {"207-235": [-1106, -969]}}, -{"id": 6533, "name": "Among Us Crewmate", "description": "A crewmate from the popular game Among Us.", "links": {}, "path": {"250-258": [[-788, -947], [-788, -951], [-786, -951], [-786, -950], [-785, -950], [-785, -948], [-786, -948], [-786, -947], [-786, -948], [-787, -948], [-788, -948]]}, "center": {"250-258": [-787, -949]}}, -{"id": 6534, "name": "Among Us Crewmate", "description": "A crewmate from the popular game Among Us.", "links": {}, "path": {"250-258": [[-788, -946], [-788, -942], [-788, -943], [-787, -943], [-786, -943], [-786, -942], [-786, -943], [-785, -943], [-785, -945], [-786, -945], [-786, -946]]}, "center": {"250-258": [-787, -944]}}, -{"id": 6535, "name": "Triforce", "description": "The triforce symbol from the Zelda Series.", "links": {}, "path": {"250-258": [[-1050, -892], [-1070, -892], [-1069, -892], [-1069, -893], [-1068, -893], [-1068, -894], [-1067, -894], [-1067, -895], [-1066, -895], [-1066, -896], [-1065, -896], [-1065, -897], [-1064, -897], [-1064, -898], [-1063, -898], [-1063, -899], [-1062, -899], [-1061, -899], [-1061, -901], [-1060, -901], [-1060, -902], [-1060, -901], [-1059, -901], [-1060, -900], [-1058, -900], [-1058, -899], [-1057, -898], [-1051, -892]]}, "center": {"250-258": [-1060, -895]}}, -{"id": 6536, "name": "R/Chile", "description": "An advertisement for the subreddit\u0001r/Chile.", "links": {"subreddit": ["chile"]}, "path": {"250-258": [[-1049, -904], [-1049, -908], [-1024, -908], [-1024, -904]]}, "center": {"250-258": [-1036, -906]}}, -{"id": 6537, "name": "Minecraft Heart", "description": "A heart from the health bar in the popular game Minecraft.", "links": {}, "path": {"250-258": [[-1007, -937], [-1007, -938], [-1008, -938], [-1008, -939], [-1009, -939], [-1009, -940], [-1008, -940], [-1008, -941], [-1008, -940], [-1007, -940], [-1006, -940], [-1006, -941], [-1006, -940], [-1005, -940], [-1005, -939], [-1006, -939], [-1006, -938], [-1007, -938]]}, "center": {"250-258": [-1007, -939]}}, -{"id": 6538, "name": "Among Us Crewmate", "description": "A crewmate from the popular game Among Us.", "links": {}, "path": {"250-258": [[-778, -963], [-778, -962], [-778, -959], [-776, -959], [-776, -960], [-775, -960], [-775, -962], [-776, -962], [-776, -963], [-776, -962], [-777, -962], [-778, -962]]}, "center": {"250-258": [-777, -961]}}, -{"id": 6539, "name": "Minecraft Heart", "description": "A heart from the health bar in the popular game Minecraft.", "links": {}, "path": {"250-258": [[-1002, -937], [-1002, -938], [-1003, -938], [-1003, -939], [-1004, -939], [-1004, -940], [-1003, -941], [-1003, -940], [-1002, -940], [-1001, -940], [-1001, -941], [-1001, -940], [-1000, -940], [-1000, -939], [-1001, -939], [-1001, -938], [-1002, -938]]}, "center": {"250-258": [-1002, -939]}}, -{"id": 6540, "name": "Star", "description": "A star power up from the Mario series.", "links": {}, "path": {"250-258": [[-1407, -72], [-1407, -71], [-1405, -71], [-1405, -72], [-1404, -72], [-1404, -73], [-1402, -73], [-1402, -72], [-1401, -72], [-1401, -71], [-1399, -71], [-1399, -74], [-1400, -74], [-1400, -75], [-1399, -75], [-1399, -76], [-1398, -76], [-1398, -78], [-1400, -78], [-1400, -79], [-1401, -79], [-1401, -80], [-1402, -80], [-1402, -81], [-1403, -81], [-1404, -81], [-1404, -80], [-1405, -80], [-1405, -79], [-1406, -79], [-1406, -78], [-1407, -78], [-1408, -78], [-1408, -76], [-1407, -76], [-1407, -75], [-1406, -75], [-1406, -74], [-1407, -74], [-1407, -71]]}, "center": {"250-258": [-1403, -76]}}, -{"id": 6541, "name": "Argentina Heart", "description": "A heart depicting the flag of Argentina, a country in South America.", "links": {}, "path": {"250-258": [[-1139, -977], [-1140, -977], [-1140, -978], [-1140, -979], [-1139, -979], [-1139, -980], [-1134, -980], [-1133, -980], [-1133, -979], [-1132, -979], [-1132, -978], [-1132, -977], [-1133, -977], [-1133, -976], [-1134, -976], [-1134, -975], [-1135, -975], [-1135, -974], [-1136, -974], [-1137, -974], [-1137, -975], [-1138, -975], [-1138, -976], [-1139, -976]]}, "center": {"250-258": [-1136, -977]}}, -{"id": 6542, "name": "Among Us Crewmate US flag", "description": "A depiction of the US flag in the shape of an Among Us Crewmate.", "links": {}, "path": {"250-258": [[-1141, -996], [-1141, -1000], [-1143, -1000], [-1143, -999], [-1144, -999], [-1144, -998], [-1143, -998], [-1143, -996], [-1143, -997], [-1142, -997], [-1141, -997]]}, "center": {"250-258": [-1142, -998]}}, -{"id": 6543, "name": "Among Us Crewmate", "description": "A crewmate from the popular game Among Us.", "links": {}, "path": {"250-258": [[-1017, -933], [-1017, -935], [-1018, -935], [-1018, -936], [-1017, -936], [-1017, -937], [-1015, -937], [-1015, -933], [-1015, -934], [-1016, -934], [-1017, -934]]}, "center": {"250-258": [-1016, -935]}}, -{"id": 6544, "name": "Pikachu", "description": "Pikachu is the main character, and also one of the most popular/well-known pokemon in the pokemon series.", "links": {}, "path": {"250-258": [[-1473, -40], [-1474, -40], [-1474, -41], [-1478, -41], [-1478, -40], [-1479, -40], [-1479, -41], [-1480, -41], [-1480, -42], [-1481, -42], [-1481, -46], [-1480, -46], [-1480, -49], [-1479, -49], [-1479, -51], [-1479, -50], [-1474, -50], [-1473, -50], [-1473, -51], [-1472, -51], [-1472, -52], [-1470, -52], [-1470, -53], [-1470, -51], [-1471, -51], [-1471, -50], [-1472, -50], [-1472, -47], [-1472, -46], [-1471, -46], [-1470, -46], [-1470, -47], [-1469, -47], [-1469, -48], [-1468, -48], [-1468, -49], [-1466, -49], [-1466, -46], [-1467, -46], [-1467, -45], [-1468, -45], [-1468, -44], [-1469, -44], [-1469, -43], [-1470, -43], [-1470, -42], [-1471, -42], [-1471, -41], [-1472, -41], [-1472, -40]]}, "center": {"250-258": [-1476, -45]}}, -{"id": 6545, "name": "Among Us Crewmates", "description": "Two crewmates from the popular game Among Us shaking hands.", "links": {}, "path": {"250-258": [[-1008, -932], [-1008, -934], [-1009, -934], [-1009, -935], [-1008, -935], [-1008, -936], [-1006, -936], [-1006, -934], [-1003, -934], [-1003, -936], [-1001, -936], [-1001, -935], [-1000, -935], [-1000, -934], [-1001, -934], [-1001, -932], [-1001, -933], [-1002, -933], [-1003, -933], [-1003, -932], [-1003, -934], [-1006, -934], [-1006, -932], [-1006, -933], [-1007, -933]]}, "center": {"250-258": [-1007, -934]}}, -{"id": 6546, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258": [[-916, 871], [-916, 872], [-918, 872], [-918, 866], [-919, 866], [-918, 866], [-918, 865], [-916, 865], [-916, 864], [-915, 864], [-915, 865], [-914, 865], [-914, 866], [-913, 866], [-914, 867], [-914, 868], [-913, 868], [-913, 870], [-914, 870], [-914, 872], [-916, 872]]}, "center": {"250-258": [-916, 868]}}, -{"id": 6547, "name": "Minecraft Emerald", "description": "An emerald from the popular game Minecraft. It can be used to trade with villagers in said game.", "links": {"website": ["https://minecraft.fandom.com/wiki/Emerald"]}, "path": {"250-258": [[-915, 862], [-917, 862], [-917, 861], [-918, 861], [-918, 860], [-919, 860], [-919, 859], [-920, 859], [-920, 858], [-921, 858], [-921, 853], [-920, 853], [-920, 852], [-919, 852], [-919, 851], [-918, 851], [-918, 850], [-917, 850], [-917, 849], [-915, 849], [-915, 850], [-914, 850], [-914, 851], [-913, 851], [-913, 852], [-912, 852], [-912, 853], [-912, 854], [-911, 854], [-911, 857], [-912, 857], [-912, 859], [-913, 859], [-913, 860], [-914, 860], [-914, 861], [-915, 861]]}, "center": {"250-258": [-916, 856]}}, -{"id": 6548, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring.", "links": {}, "path": {"250-258": [[-1000, 880], [-1003, 880], [-1003, 878], [-1004, 878], [-1004, 875], [-1003, 875], [-1003, 874], [-999, 874], [-999, 880]]}, "center": {"250-258": [-1001, 877]}}, -{"id": 6549, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258": [[-987, 898], [-991, 899], [-991, 897], [-992, 897], [-992, 895], [-992, 894], [-991, 894], [-991, 892], [-992, 892], [-990, 892], [-990, 891], [-989, 891], [-989, 890], [-989, 891], [-988, 891], [-988, 892], [-986, 892], [-987, 892]]}, "center": {"250-258": [-989, 895]}}, -{"id": 6550, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258": [[-925, 869], [-929, 869], [-929, 867], [-930, 867], [-930, 862], [-929, 862], [-929, 861], [-928, 862], [-928, 860], [-926, 860], [-926, 862], [-924, 862], [-924, 863], [-925, 863]]}, "center": {"250-258": [-928, 865]}}, -{"id": 6551, "name": "Pikachu", "description": "Pikachu is an Electric-type mouse Pokémon from Generation I of Nintendo's Pokémon franchise. It first appeared in Japan in 1996 in the Pokémon Red and Green games, created by Satoshi Tajiri.", "links": {"website": ["https://[https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon)https://bulbapedia.bulbagarden.net/wiki/Pikachu](https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon)https://bulbapedia.bulbagarden.net/wiki/Pikachu)", "https://[https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon)](https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon))"]}, "path": {"250-258": [[-595, -929], [-596, -929], [-596, -930], [-600, -930], [-600, -929], [-601, -929], [-601, -930], [-602, -930], [-602, -931], [-603, -931], [-603, -935], [-602, -935], [-602, -939], [-603, -939], [-603, -941], [-602, -941], [-602, -940], [-601, -940], [-601, -939], [-595, -939], [-595, -940], [-594, -939], [-594, -941], [-593, -940], [-593, -939], [-594, -939], [-594, -935], [-591, -935], [-591, -936], [-590, -936], [-590, -935], [-591, -935], [-591, -934], [-592, -934], [-592, -933], [-593, -933], [-593, -931], [-594, -931], [-594, -930], [-595, -930]]}, "center": {"250-258": [-598, -934]}}, +{"id": 6533, "name": "Among Us Crewmate", "description": "A crewmate from the popular game Among Us.", "links": {}, "path": {"250-258, T": [[-788, -947], [-788, -951], [-786, -951], [-786, -950], [-785, -950], [-785, -948], [-786, -948], [-786, -947], [-786, -948], [-787, -948], [-788, -948]]}, "center": {"250-258, T": [-787, -949]}}, +{"id": 6534, "name": "Among Us Crewmate", "description": "A crewmate from the popular game Among Us.", "links": {}, "path": {"250-258, T": [[-788, -946], [-788, -942], [-788, -943], [-787, -943], [-786, -943], [-786, -942], [-786, -943], [-785, -943], [-785, -945], [-786, -945], [-786, -946]]}, "center": {"250-258, T": [-787, -944]}}, +{"id": 6535, "name": "Triforce", "description": "The triforce symbol from the Zelda Series.", "links": {}, "path": {"250-258, T": [[-1050, -892], [-1070, -892], [-1069, -892], [-1069, -893], [-1068, -893], [-1068, -894], [-1067, -894], [-1067, -895], [-1066, -895], [-1066, -896], [-1065, -896], [-1065, -897], [-1064, -897], [-1064, -898], [-1063, -898], [-1063, -899], [-1062, -899], [-1061, -899], [-1061, -901], [-1060, -901], [-1060, -902], [-1060, -901], [-1059, -901], [-1060, -900], [-1058, -900], [-1058, -899], [-1057, -898], [-1051, -892]]}, "center": {"250-258, T": [-1060, -895]}}, +{"id": 6536, "name": "R/Chile", "description": "An advertisement for the subreddit\u0001r/Chile.", "links": {"subreddit": ["chile"]}, "path": {"250-258, T": [[-1049, -904], [-1049, -908], [-1024, -908], [-1024, -904]]}, "center": {"250-258, T": [-1036, -906]}}, +{"id": 6537, "name": "Minecraft Heart", "description": "A heart from the health bar in the popular game Minecraft.", "links": {}, "path": {"250-258, T": [[-1007, -937], [-1007, -938], [-1008, -938], [-1008, -939], [-1009, -939], [-1009, -940], [-1008, -940], [-1008, -941], [-1008, -940], [-1007, -940], [-1006, -940], [-1006, -941], [-1006, -940], [-1005, -940], [-1005, -939], [-1006, -939], [-1006, -938], [-1007, -938]]}, "center": {"250-258, T": [-1007, -939]}}, +{"id": 6538, "name": "Among Us Crewmate", "description": "A crewmate from the popular game Among Us.", "links": {}, "path": {"250-258, T": [[-778, -963], [-778, -962], [-778, -959], [-776, -959], [-776, -960], [-775, -960], [-775, -962], [-776, -962], [-776, -963], [-776, -962], [-777, -962], [-778, -962]]}, "center": {"250-258, T": [-777, -961]}}, +{"id": 6539, "name": "Minecraft Heart", "description": "A heart from the health bar in the popular game Minecraft.", "links": {}, "path": {"250-258, T": [[-1002, -937], [-1002, -938], [-1003, -938], [-1003, -939], [-1004, -939], [-1004, -940], [-1003, -941], [-1003, -940], [-1002, -940], [-1001, -940], [-1001, -941], [-1001, -940], [-1000, -940], [-1000, -939], [-1001, -939], [-1001, -938], [-1002, -938]]}, "center": {"250-258, T": [-1002, -939]}}, +{"id": 6540, "name": "Star", "description": "A star power up from the Mario series.", "links": {}, "path": {"250-258, T": [[-1407, -72], [-1407, -71], [-1405, -71], [-1405, -72], [-1404, -72], [-1404, -73], [-1402, -73], [-1402, -72], [-1401, -72], [-1401, -71], [-1399, -71], [-1399, -74], [-1400, -74], [-1400, -75], [-1399, -75], [-1399, -76], [-1398, -76], [-1398, -78], [-1400, -78], [-1400, -79], [-1401, -79], [-1401, -80], [-1402, -80], [-1402, -81], [-1403, -81], [-1404, -81], [-1404, -80], [-1405, -80], [-1405, -79], [-1406, -79], [-1406, -78], [-1407, -78], [-1408, -78], [-1408, -76], [-1407, -76], [-1407, -75], [-1406, -75], [-1406, -74], [-1407, -74], [-1407, -71]]}, "center": {"250-258, T": [-1403, -76]}}, +{"id": 6541, "name": "Argentina Heart", "description": "A heart depicting the flag of Argentina, a country in South America.", "links": {}, "path": {"250-258, T": [[-1139, -977], [-1140, -977], [-1140, -978], [-1140, -979], [-1139, -979], [-1139, -980], [-1134, -980], [-1133, -980], [-1133, -979], [-1132, -979], [-1132, -978], [-1132, -977], [-1133, -977], [-1133, -976], [-1134, -976], [-1134, -975], [-1135, -975], [-1135, -974], [-1136, -974], [-1137, -974], [-1137, -975], [-1138, -975], [-1138, -976], [-1139, -976]]}, "center": {"250-258, T": [-1136, -977]}}, +{"id": 6542, "name": "Among Us Crewmate US flag", "description": "A depiction of the US flag in the shape of an Among Us Crewmate.", "links": {}, "path": {"250-258, T": [[-1141, -996], [-1141, -1000], [-1143, -1000], [-1143, -999], [-1144, -999], [-1144, -998], [-1143, -998], [-1143, -996], [-1143, -997], [-1142, -997], [-1141, -997]]}, "center": {"250-258, T": [-1142, -998]}}, +{"id": 6543, "name": "Among Us Crewmate", "description": "A crewmate from the popular game Among Us.", "links": {}, "path": {"250-258, T": [[-1017, -933], [-1017, -935], [-1018, -935], [-1018, -936], [-1017, -936], [-1017, -937], [-1015, -937], [-1015, -933], [-1015, -934], [-1016, -934], [-1017, -934]]}, "center": {"250-258, T": [-1016, -935]}}, +{"id": 6544, "name": "Pikachu", "description": "Pikachu is the main character, and also one of the most popular/well-known pokemon in the pokemon series.", "links": {}, "path": {"250-258, T": [[-1473, -40], [-1474, -40], [-1474, -41], [-1478, -41], [-1478, -40], [-1479, -40], [-1479, -41], [-1480, -41], [-1480, -42], [-1481, -42], [-1481, -46], [-1480, -46], [-1480, -49], [-1479, -49], [-1479, -51], [-1479, -50], [-1474, -50], [-1473, -50], [-1473, -51], [-1472, -51], [-1472, -52], [-1470, -52], [-1470, -53], [-1470, -51], [-1471, -51], [-1471, -50], [-1472, -50], [-1472, -47], [-1472, -46], [-1471, -46], [-1470, -46], [-1470, -47], [-1469, -47], [-1469, -48], [-1468, -48], [-1468, -49], [-1466, -49], [-1466, -46], [-1467, -46], [-1467, -45], [-1468, -45], [-1468, -44], [-1469, -44], [-1469, -43], [-1470, -43], [-1470, -42], [-1471, -42], [-1471, -41], [-1472, -41], [-1472, -40]]}, "center": {"250-258, T": [-1476, -45]}}, +{"id": 6545, "name": "Among Us Crewmates", "description": "Two crewmates from the popular game Among Us shaking hands.", "links": {}, "path": {"250-258, T": [[-1008, -932], [-1008, -934], [-1009, -934], [-1009, -935], [-1008, -935], [-1008, -936], [-1006, -936], [-1006, -934], [-1003, -934], [-1003, -936], [-1001, -936], [-1001, -935], [-1000, -935], [-1000, -934], [-1001, -934], [-1001, -932], [-1001, -933], [-1002, -933], [-1003, -933], [-1003, -932], [-1003, -934], [-1006, -934], [-1006, -932], [-1006, -933], [-1007, -933]]}, "center": {"250-258, T": [-1007, -934]}}, +{"id": 6546, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258, T": [[-916, 871], [-916, 872], [-918, 872], [-918, 866], [-919, 866], [-918, 866], [-918, 865], [-916, 865], [-916, 864], [-915, 864], [-915, 865], [-914, 865], [-914, 866], [-913, 866], [-914, 867], [-914, 868], [-913, 868], [-913, 870], [-914, 870], [-914, 872], [-916, 872]]}, "center": {"250-258, T": [-916, 868]}}, +{"id": 6547, "name": "Minecraft Emerald", "description": "An emerald from the popular game Minecraft. It can be used to trade with villagers in said game.", "links": {"website": ["https://minecraft.fandom.com/wiki/Emerald"]}, "path": {"250-258, T": [[-915, 862], [-917, 862], [-917, 861], [-918, 861], [-918, 860], [-919, 860], [-919, 859], [-920, 859], [-920, 858], [-921, 858], [-921, 853], [-920, 853], [-920, 852], [-919, 852], [-919, 851], [-918, 851], [-918, 850], [-917, 850], [-917, 849], [-915, 849], [-915, 850], [-914, 850], [-914, 851], [-913, 851], [-913, 852], [-912, 852], [-912, 853], [-912, 854], [-911, 854], [-911, 857], [-912, 857], [-912, 859], [-913, 859], [-913, 860], [-914, 860], [-914, 861], [-915, 861]]}, "center": {"250-258, T": [-916, 856]}}, +{"id": 6548, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring.", "links": {}, "path": {"250-258, T": [[-1000, 880], [-1003, 880], [-1003, 878], [-1004, 878], [-1004, 875], [-1003, 875], [-1003, 874], [-999, 874], [-999, 880]]}, "center": {"250-258, T": [-1001, 877]}}, +{"id": 6549, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258, T": [[-987, 898], [-991, 899], [-991, 897], [-992, 897], [-992, 895], [-992, 894], [-991, 894], [-991, 892], [-992, 892], [-990, 892], [-990, 891], [-989, 891], [-989, 890], [-989, 891], [-988, 891], [-988, 892], [-986, 892], [-987, 892]]}, "center": {"250-258, T": [-989, 895]}}, +{"id": 6550, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258, T": [[-925, 869], [-929, 869], [-929, 867], [-930, 867], [-930, 862], [-929, 862], [-929, 861], [-928, 862], [-928, 860], [-926, 860], [-926, 862], [-924, 862], [-924, 863], [-925, 863]]}, "center": {"250-258, T": [-928, 865]}}, +{"id": 6551, "name": "Pikachu", "description": "Pikachu is an Electric-type mouse Pokémon from Generation I of Nintendo's Pokémon franchise. It first appeared in Japan in 1996 in the Pokémon Red and Green games, created by Satoshi Tajiri.", "links": {"website": ["https://[https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon)https://bulbapedia.bulbagarden.net/wiki/Pikachu](https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon)https://bulbapedia.bulbagarden.net/wiki/Pikachu)", "https://[https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon)](https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon))"]}, "path": {"250-258, T": [[-595, -929], [-596, -929], [-596, -930], [-600, -930], [-600, -929], [-601, -929], [-601, -930], [-602, -930], [-602, -931], [-603, -931], [-603, -935], [-602, -935], [-602, -939], [-603, -939], [-603, -941], [-602, -941], [-602, -940], [-601, -940], [-601, -939], [-595, -939], [-595, -940], [-594, -939], [-594, -941], [-593, -940], [-593, -939], [-594, -939], [-594, -935], [-591, -935], [-591, -936], [-590, -936], [-590, -935], [-591, -935], [-591, -934], [-592, -934], [-592, -933], [-593, -933], [-593, -931], [-594, -931], [-594, -930], [-595, -930]]}, "center": {"250-258, T": [-598, -934]}}, {"id": 6552, "name": "Duner", "description": "Цветок из вселенной \"благословение природы\" . Над артом работал один человек. после того, как этот арт был разрушен. Дунер был перенесён чуть ниже, к копытам свити-бота.", "links": {"website": ["https://vk.com/away.php?to=https%3A%2F%2Ftwitter.com%2FGoatNisil%3Fs%3D09&cc_key="], "subreddit": ["dunertale"]}, "path": {"194-216": [[-364, 940], [-364, 939], [-364, 940], [-365, 940], [-366, 940], [-367, 940], [-367, 939], [-367, 938], [-367, 937], [-367, 936], [-367, 935], [-367, 934], [-367, 933], [-366, 933], [-365, 933], [-364, 933], [-363, 933], [-362, 933], [-360, 933], [-359, 933], [-358, 933], [-357, 934], [-357, 935], [-357, 937], [-357, 938], [-357, 940], [-357, 941], [-357, 943], [-367, 941], [-367, 942], [-367, 944], [-365, 944], [-363, 944], [-361, 944], [-363, 944], [-365, 944], [-363, 944], [-358, 944], [-357, 944], [-361, 933], [-367, 933], [-364, 933], [-365, 933], [-366, 933], [-365, 933], [-364, 933], [-363, 933], [-362, 933]]}, "center": {"194-216": [-365, 935]}}, -{"id": 6553, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258": [[-911, 901], [-911, 894], [-910, 894], [-910, 893], [-909, 893], [-909, 892], [-909, 893], [-908, 893], [-908, 894], [-906, 894], [-907, 894], [-907, 896], [-906, 896], [-906, 899], [-907, 899], [-907, 901]]}, "center": {"250-258": [-909, 897]}}, -{"id": 6554, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258": [[-890, 911], [-887, 911], [-887, 918], [-891, 918], [-891, 917], [-892, 917], [-892, 913], [-891, 913], [-891, 912], [-890, 913]]}, "center": {"250-258": [-889, 915]}}, -{"id": 6555, "name": "Poké Ball", "description": "A Poké Ball is a spherical device in the Pokémon games. It is used by Pokémon Trainers to catch wild Pokémon and store them in the player's inventory when not active. This red and white Poké Ball is the most basic and ubiquitous type of Poké Ball, and it is frequently used to represent the Pokémon series as a whole.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9_Ball"]}, "path": {"250-258": [[-603, -922], [-603, -924], [-604, -924], [-604, -925], [-605, -925], [-605, -926], [-607, -926], [-607, -925], [-608, -925], [-608, -924], [-609, -924], [-609, -922], [-608, -922], [-608, -921], [-606, -921], [-607, -920], [-605, -920], [-605, -921], [-604, -921], [-604, -922]]}, "center": {"250-258": [-606, -923]}}, -{"id": 6556, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258": [[-906, 864], [-910, 864], [-910, 862], [-911, 862], [-911, 858], [-910, 858], [-910, 856], [-908, 856], [-908, 857], [-907, 857], [-907, 858], [-906, 858]]}, "center": {"250-258": [-908, 860]}}, -{"id": 6557, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258": [[-909, 918], [-905, 918], [-905, 911], [-904, 911], [-905, 911], [-905, 910], [-909, 910], [-909, 911], [-910, 911], [-909, 911], [-909, 913], [-910, 913], [-910, 917], [-909, 917]]}, "center": {"250-258": [-908, 915]}}, +{"id": 6553, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258, T": [[-911, 901], [-911, 894], [-910, 894], [-910, 893], [-909, 893], [-909, 892], [-909, 893], [-908, 893], [-908, 894], [-906, 894], [-907, 894], [-907, 896], [-906, 896], [-906, 899], [-907, 899], [-907, 901]]}, "center": {"250-258, T": [-909, 897]}}, +{"id": 6554, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258, T": [[-890, 911], [-887, 911], [-887, 918], [-891, 918], [-891, 917], [-892, 917], [-892, 913], [-891, 913], [-891, 912], [-890, 913]]}, "center": {"250-258, T": [-889, 915]}}, +{"id": 6555, "name": "Poké Ball", "description": "A Poké Ball is a spherical device in the Pokémon games. It is used by Pokémon Trainers to catch wild Pokémon and store them in the player's inventory when not active. This red and white Poké Ball is the most basic and ubiquitous type of Poké Ball, and it is frequently used to represent the Pokémon series as a whole.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9_Ball"]}, "path": {"250-258, T": [[-603, -922], [-603, -924], [-604, -924], [-604, -925], [-605, -925], [-605, -926], [-607, -926], [-607, -925], [-608, -925], [-608, -924], [-609, -924], [-609, -922], [-608, -922], [-608, -921], [-606, -921], [-607, -920], [-605, -920], [-605, -921], [-604, -921], [-604, -922]]}, "center": {"250-258, T": [-606, -923]}}, +{"id": 6556, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258, T": [[-906, 864], [-910, 864], [-910, 862], [-911, 862], [-911, 858], [-910, 858], [-910, 856], [-908, 856], [-908, 857], [-907, 857], [-907, 858], [-906, 858]]}, "center": {"250-258, T": [-908, 860]}}, +{"id": 6557, "name": "Columbian Among Us", "description": "An Among us drawing themed around Colombia, having a colombian flag coloring and the typical colombian hatwear known as the Sombrero Voltiao.", "links": {}, "path": {"250-258, T": [[-909, 918], [-905, 918], [-905, 911], [-904, 911], [-905, 911], [-905, 910], [-909, 910], [-909, 911], [-910, 911], [-909, 911], [-909, 913], [-910, 913], [-910, 917], [-909, 917]]}, "center": {"250-258, T": [-908, 915]}}, {"id": 6558, "name": "Wales heart", "description": "A heart depicting the flag of Wales, a country in the United Kingdom.", "links": {"website": ["https://en.wikipedia.org/wiki/Wales", "https://en.wikipedia.org/wiki/Flag_of_Wales"], "subreddit": ["Wales"]}, "path": {"217-227": [[-1144, -995], [-1146, -993], [-1142, -989], [-1138, -993], [-1140, -995]]}, "center": {"217-227": [-1142, -993]}}, {"id": 6559, "name": "Colombia heart", "description": "A heart depicting the flag of Colombia, a country on the northwest coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"209-229": [[-1150, -986], [-1152, -984], [-1152, -983], [-1148, -979], [-1144, -983], [-1144, -984], [-1146, -986]]}, "center": {"209-229": [-1148, -983]}}, {"id": 6560, "name": "Brazil heart", "description": "A heart depicting the flag of Brazil, a country in South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Brazil", "https://en.wikipedia.org/wiki/Flag_of_Brazil"], "subreddit": ["brasil"]}, "path": {"222-230": [[-1120, -983], [-1122, -981], [-1118, -977], [-1114, -981], [-1116, -983]], "218-220": [[-1126, -986], [-1128, -984], [-1124, -980], [-1121, -980], [-1118, -977], [-1114, -981], [-1116, -983], [-1121, -983], [-1120, -984], [-1122, -986]], "204-217": [[-1126, -986], [-1128, -984], [-1124, -980], [-1120, -984], [-1122, -986]]}, "center": {"222-230": [-1118, -981], "218-220": [-1124, -983], "204-217": [-1124, -984]}}, @@ -6351,7 +6351,7 @@ {"id": 6584, "name": "Agender heart", "description": "A heart depicting the agender pride flag. Agender, also known as genderless, is an identity to describe someone that entirely lacks a gender or with complete genderlessness. It falls under the non-binary umbrella in which one is not male, female, neutral, xenic, outherine, or any other gender. They may identify most strongly as just an individual, rather than as any given gender.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Agender"]}, "path": {"223-224": [[-1154, -997], [-1156, -995], [-1152, -991], [-1148, -995], [-1150, -997]]}, "center": {"223-224": [-1152, -995]}}, {"id": 6582, "name": "Pansexual heart", "description": "A heart depicting the pansexual pride flag. Pansexual people are attracted to others regardless of sex or gender identity.", "links": {"website": ["https://en.wikipedia.org/wiki/Pansexuality", "https://en.wikipedia.org/wiki/Pansexual_flag"]}, "path": {"207-215": [[-1114, -974], [-1116, -972], [-1112, -968], [-1108, -972], [-1110, -974]]}, "center": {"207-215": [-1112, -972]}}, {"id": 6583, "name": "Argentina heart", "description": "A heart depicting the flag of Argentina, a country in the southern part of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["PlaceArg", "argentina", "Republica_Argentina"]}, "path": {"205-206": [[-1126, -980], [-1128, -978], [-1124, -974], [-1120, -978], [-1122, -980]]}, "center": {"205-206": [-1124, -978]}}, -{"id": 6581, "name": "Sync for Reddit", "description": "Sync for Reddit was a third-party client app for Reddit on Android. It was developed and maintained by u/ljdawson until it was shut down on June 30, 2023.", "links": {"subreddit": ["redditsync"]}, "path": {"184-258": [[-1313, 991], [-1307, 985], [-1304, 985], [-1304, 983], [-1305, 983], [-1311, 977], [-1318, 984], [-1321, 984], [-1321, 985], [-1315, 991]]}, "center": {"184-258": [-1312, 984]}}, +{"id": 6581, "name": "Sync for Reddit", "description": "Sync for Reddit was a third-party client app for Reddit on Android. It was developed and maintained by u/ljdawson until it was shut down on June 30, 2023.", "links": {"subreddit": ["redditsync"]}, "path": {"184-258, T": [[-1313, 991], [-1307, 985], [-1304, 985], [-1304, 983], [-1305, 983], [-1311, 977], [-1318, 984], [-1321, 984], [-1321, 985], [-1315, 991]]}, "center": {"184-258, T": [-1312, 984]}}, {"id": 6585, "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica"]}, "path": {"178-185": [[-1185, -920], [-1185, -913], [-1176, -913], [-1176, -920]]}, "center": {"178-185": [-1180, -916]}}, {"id": 6586, "name": "Flag of Jamaica", "description": "Jamaica is an island country in the Caribbean Sea.", "links": {"website": ["https://en.wikipedia.org/wiki/Jamaica", "https://en.wikipedia.org/wiki/Flag_of_Jamaica"]}, "path": {"174-179": [[-1184, -985], [-1184, -981], [-1185, -981], [-1185, -978], [-1177, -978], [-1177, -981], [-1178, -981], [-1178, -985]]}, "center": {"174-179": [-1181, -981]}}, {"id": 6587, "name": "Creeper", "description": "A creeper is an iconic hostile mob in the game Minecraft, a sandbox video game developed by Mojang Studios in Sweden. Creepers approach the player and explode.", "links": {"website": ["https://minecraft.fandom.com/wiki/Creeper", "https://en.wikipedia.org/wiki/Creeper_(Minecraft)"]}, "path": {"175-179": [[-1194, -947], [-1194, -938], [-1188, -938], [-1186, -941], [-1186, -945], [-1188, -947]]}, "center": {"175-179": [-1190, -942]}}, diff --git a/web/index.html b/web/index.html index 294e7cf7c..a687fbc83 100644 --- a/web/index.html +++ b/web/index.html @@ -1,7 +1,7 @@ @@ -11,8 +11,8 @@ The 2023 r/place Atlas - - + + @@ -22,11 +22,10 @@ - + - @@ -82,10 +81,10 @@ }, { "@type": "Organization", - "name": "Place Atlas", + "name": "Place Atlas Initiative", "alternateName": "r/placeAtlas2023", - "url": "https://github.com/placeAtlas", - "image": "http://2023.place-atlas.stefanocoding.me/_img/logo.png", + "url": "https://place-atlas.stefanocoding.me", + "image": "https://place-atlas.stefanocoding.me/assets/logo.png", "founder": { "@type": "Person", "@id": "#Codixer", @@ -114,14 +113,14 @@
-
- + Discord - + Reddit @@ -271,7 +273,7 @@
Atlas Entries List
- Code by Place Atlas. Source on GitHub. Site powered by Netlify. + AGPL-3.0 © Place Atlas Initiative and contributors. Powered by Netlify.
@@ -311,7 +313,7 @@
Timeline
-

Please read this guide for instructions.

+

Please read the contributing guide for instructions.


You can suggest new entries to the Atlas for art that isn't mapped yet, or update entries by editing it.

Click anywhere on the image to start drawing a shape. Switch between periods by adding a period, and/or seek through the timeline.

@@ -319,7 +321,7 @@
Timeline

Need Help?
-

You can ask for help on our Discord server!

+

You can ask for help on our Discord server!

@@ -340,7 +342,7 @@
Need Help?